1 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
3 maint: update for changes to gnulib's announce-gen.
4 * HACKING (Announce): RELEASE_TYPE=major must now be written
7 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
10 * NEWS (2.4.2): Set version and date. For the recent test suite
11 portability fixes, don't be so optimistic about their success
12 given the lack of feedback on the affected platforms.
14 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
16 tests: fix maintainer-xml-check for recent changes.
17 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
18 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
19 output file whose name conflicts with a previous output file
20 is now never generated.
22 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
24 portability: fix several issues with M4 subprocess.
26 M4's output pipe was not being drained upon fatal errors during
27 scan_skel. As a result, broken-pipe messages from M4 were seen
28 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
29 failure in the test suite. The problem was that, on platforms
30 where the default disposition for SIGPIPE is ignore instead of
31 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
32 then reported it. However, there's some sort of race condition,
33 because the new test group occasionally succeeded.
34 Reported by Albert Chin at
35 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
37 There were also problems with the test suite livelocking on
38 Tru64 5.1b. Reported by Didier Godefroy at
39 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
40 Switching to create_pipe_bidi suggested by Akim Demaille.
42 To attempt to solve both of these problems, switch to gnulib's
43 create_pipe_bidi and register M4 process as a slave. Along the
44 way, clean up file name conflict handling, which was affected by
45 the broken-pipe problem before the switch.
46 * NEWS (2.4.2): Document.
47 * THANKS (Didier Godefroy): Add.
48 * bootstrap.conf (gnulib_modules): Add pipe.
49 * gnulib: Update to latest to make sure we have all the latest
51 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
53 * po/POTFILES.in (lib/subpipe.c): Remove.
54 * src/files.c (compute_output_file_names): Update invocations
55 of output_file_name_check.
56 (output_file_name_check): In the case that the grammar file
57 would be overwritten, use complain instead of fatal, but replace
58 the output file name with /dev/null. Use the /dev/null solution
59 for the case of two conflicting output files as well because it
60 seems safer in case Bison one day tries to open both files at
62 * src/files.h (output_file_name_check): Update prototype.
63 * src/output.c (output_skeleton): Use create_pipe_bidi and
64 wait_subprocess. Assert that scan_skel completely drains the
66 * src/scan-skel.l (at_directive_perform): Update
67 output_file_name_check invocation.
68 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
69 grammar file actually isn't overwritten.
70 (Conflicting output files: -o foo.y): Update expected output.
71 * tests/skeletons.at (Fatal errors but M4 continues producing
72 output): New test group.
74 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
77 * HACKING (Release Procedure): Add reminder about keeping
78 POTFILES files up-to-date.
79 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
81 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
84 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
85 which is already defined in atconfig.
87 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
89 tests: fix missing include caught by g++ 4.4.1.
90 Reported by Tys Lefering.
91 * HACKING (Release checks): Add note about trying a recent GCC.
92 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
94 (_AT_DATA_EXPECT2_Y): Likewise.
96 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
98 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
100 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
102 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
103 * HACKING (Release Procedure): Update notes on copyright years.
104 * Makefile.am (update-package-copyright-year): New target rule.
105 * build-aux/update-package-copyright-year: New file.
106 * cfg.mk (update-copyright): Add update-package-copyright-year
109 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
111 * bootstrap: Import improvements from latest gnulib.
113 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
115 build: require Automake 1.11.1 to avoid a security flaw.
116 * HACKING (Release Procedure): Don't document Automake security
118 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
121 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
123 gnulib: update to latest.
125 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
127 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
129 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
131 Thank the developer of the initial push parser implementation.
132 This unfortunate oversight is several years old.
133 * THANKS (Odd Arild Olsen): Add.
135 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
137 Fix some comments concerning LR(0) versus LALR(1).
139 Stop equating LR(0) with nondeterminism and LALR(1) with
140 determinism. That is, if all states are consistent, then LR(0)
141 tables are deterministic. On the other hand, LALR(1) tables
142 might be nondeterministic before conflict resolution, and GLR
143 permits LALR(1) tables to remain nondeterministic.
144 * src/LR0.c, src/LR0.h: Here.
145 * src/lalr.c, src/lalr.h: Here.
146 * src/main.c (main): Here.
147 * src/state.c, src/state.h: Here.
149 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
152 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
154 maint: run "make update-copyright"
156 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
158 POSIX: complain if %prec's token was not defined.
159 * NEWS (2.5): Document.
160 * src/reader.c (grammar_rule_check): Convert warning to
162 * tests/input.at (%prec's token must be defined): Update.
164 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
166 POSIX: warn if %prec's token was not defined.
167 Reported by Florian Krohm at
168 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
169 * NEWS (2.4.2): Document.
170 * src/reader.c (grammar_rule_check): Implement.
171 (grammar_current_rule_prec_set): Add comments explaining that we
172 here assume a %prec identifier is a token, but we still manage
174 * tests/input.at (%prec's token must be defined): New test
177 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
179 * HACKING (Release Procedure): Recommend a secure automake.
181 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
183 portability: `<' and `>' are not always defined on addresses.
184 Specifically, don't sort objects by their memory addresses when
185 they're not allocated in the same array or other object. Though
186 I haven't found a test case where that fails on my platform, C
187 says the behavior is undefined.
188 * src/AnnotationList.c (AnnotationList__insertInto): Remove
189 FIXME. Use new id field of InadequacyList nodes rather than
190 their memory addresses when sorting.
191 (AnnotationList__compute_from_inadequacies): Add
192 inadequacy_list_node_count argument to pass to
193 InadequacyList__new_conflict.
194 * src/AnnotationList.h
195 (AnnotationList__compute_from_inadequacies): Update prototype
196 and documentation for new argument.
197 * src/InadequacyList.c (InadequacyList__new_conflict): Add
198 node_count argument and use it to assign a unique ID.
199 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
200 (InadequacyList): Add id field.
201 (InadequacyList__new_conflict): Update prototype and
202 documentation for new argument.
203 * src/ielr.c (ielr_compute_annotation_lists): Update
204 AnnotationList__compute_from_inadequacies invocation.
206 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
208 Fix handling of yychar manipulation in user semantic actions.
209 The problem was that yacc.c didn't always update the yychar
210 translation afterwards. However, other skeletons appear to be
211 fine. glr.c appears to already translate yychar before every
212 use. lalr1.cc does not define yychar and does not document its
213 replacement, yyla, for users. It does provide yyclearin, but
214 that does not manipulate yyla and thus requires no translation
215 update. In lalr1.java, yychar is out of scope during semantic
217 * NEWS (2.5): Document.
218 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
220 (yyparse, yypush_parse): Instead, translate before every use of
221 yytoken, and add comments explaining this approach.
222 * tests/actions.at (Destroying lookahead assigned by semantic
223 action): New test group checking that translation happens before
224 lookahead destructor calls at parser return. Previously,
225 incorrect destructors were called.
226 * tests/conflicts.at (parse.error=verbose and consistent
227 errors): New test group checking that translation happens at
228 syntax error detection before the associated verbose error
229 message and the associated lookahead destructor calls. While
230 the destructor call is fixed by this patch, the verbose error
231 message is currently incorrect due to another bug (see
232 comments in test group), so this is an expected failure for now.
234 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
236 YYFAIL: warn about uses and remove from lalr1.java.
237 * NEWS (2.5): Document.
238 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
239 and make it private. Update all uses.
240 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
242 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
245 * NEWS (2.4.2): Document deprecation and the phase-out plan.
246 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
248 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
249 YYFAIL from GCC cpp's -Wunused-macros.
250 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
252 (LocalWords): Remove YYFAIL.
254 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
257 * tests/c++.at (Syntax error discarding no lookahead): Don't
258 ignore stderr. Instead, eliminate remaining warnings.
260 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
262 lalr1.cc: don't discard non-existent lookahead on syntax error.
263 * data/lalr1.cc (parser::parse): Check yyempty first.
264 * tests/c++.at (Syntax error discarding no lookahead): New test
267 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
270 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
271 function, which is no longer used.
273 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
275 Add gcc's -Wundef to test suite and fix another warning from it.
276 * NEWS (2.4.2): Update description of -Wundef fix.
277 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
278 (WARN_CFLAGS_TEST): New substitution.
279 * data/glr.c: Avoid warning about __STRICT_ANSI__.
280 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
282 (NO_WERROR_CFLAGS): Likewise.
283 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
285 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
287 * data/yacc.c: Reformat m4 a little.
289 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
291 Document gcc -Wundef fix.
292 * NEWS (2.4.2): Here.
293 * THANKS (Jonathan Nieder): Add.
295 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
297 Simplify y.tab.c when location tracking is disabled.
298 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
299 tracking is not enabled. Instead, unconditionally define
300 YY_LOCATION_PRINT as a no-op for backward compatibility.
302 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
304 Avoid warnings from gcc -Wundef y.tab.c.
305 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
306 defined before using them.
307 * data/lalr1.cc: Likewise.
308 * data/yacc.c: Likewise.
310 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
312 autoconf: update to latest for fix of M4 detection.
313 Reported by Eric Blake.
314 * submodules/autoconf: Update.
316 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
318 portability: use -DGNULIB_POSIXCHECK.
319 Reported by Eric Blake. See discussions at
320 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
322 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
323 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
324 * bootstrap.conf (gnulib_modules): Add all the printf modules
325 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
326 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
327 (excluded_files): Remove m4/printf-posix.m4.
328 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
329 lib/libbison.a so gnulib libraries can be linked.
331 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
333 gnulib: update for fix of fprintf-posix, which we'll use soon.
334 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
335 targets so that gnulib's new arg-nonnull.h and link-warning.h
339 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
341 Enable assertion output and --disable-assert for configure.
342 * bootstrap.conf (gnulib_modules): Add assert module.
343 * src/system.h (aver): Define as assert, and summarize the
344 discussion on this issue.
346 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
348 Expand GLR acronym in summary of Bison.
349 Based on discussion with Akim Demaille starting at
350 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
351 * doc/bison.texinfo (Introduction): Here.
352 * src/getargs.c (usage): Here.
354 2009-10-03 Alex Rozenman <rozenman@gmail.com>
356 Document named references.
357 * doc/bison.texinfo (Actions): Add new example and xref to
358 Using Named References node.
359 (Using Named References): New node.
361 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
364 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
366 (Sbitset__isEmpty): Use Sbitset instead of char*.
367 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
368 instead of char. This helps to avoid casting errors.
369 (Sbitset__or): Use Sbitset instead of char*.
371 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
373 portability: don't assume 8-bit bytes.
374 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
375 * src/Sbitset.h (Sbitset__nbytes): Here.
376 (Sbitset__byteAddress): Here.
377 (Sbitset__bit_mask): Here.
378 (Sbitset__last_byte_mask): Here.
379 (Sbitset__ones): Here.
380 (SBITSET__FOR_EACH): Here.
382 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
384 portability: use va_start and va_end in the same function.
385 * src/complain.c (error_message): Move va_end from here...
386 (ERROR_MESSAGE): ... to here.
388 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
390 * data/bison.m4: Update comments for rename to muscle-tab.h.
392 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
395 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
396 replace all uses with UNIQSTR_CONCAT.
397 * src/uniqstr.c (uniqstr_vsprintf): New function.
398 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
399 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
402 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
404 * TODO (Complaint submessage indentation): New.
406 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
409 * src/parse-gram.y: Clean up sorting of declarations.
410 Use types to simplify %printer declarations where possible.
411 Provide %printer for BRACKETED_ID and symbol.prec.
412 * src/symtab.c: Whitespace change.
414 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
416 tests: skip tests of file names that platform does not support.
417 Reported by Michael Raskin at
418 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
419 * THANKS (Michael Raskin): Add.
420 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
421 to fail at least for file names containing ":" or "\".
423 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
425 yysyntax_error: avoid duplicate lookahead collection.
426 Except when memory reallocation is required, this change
427 eliminates the need to invoke yysyntax_error twice and thus to
428 repeat the collection of lookaheads. It also prepares for
429 future extensions that will make those repetitions more
430 expensive and that will require additional memory management in
431 yysyntax_error. Finally, it fixes an obscure bug already
432 exercised in the test suite.
433 * data/yacc.c (yysyntax_error): Add arguments for message
434 buffer variables stored in the parser. Instead of size, return
435 status similar to yyparse status but indicating success of
436 message creation. Other than the actual reallocation of the
437 message buffer, import and clean up memory management code
439 (yyparse, yypush_parse): ... here.
440 * tests/regression.at (parse.error=verbose overflow): No longer
443 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
445 yysyntax_error: test memory management more.
446 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
447 * tests/regression.at (parse.error=verbose and
448 YYSTACK_USE_ALLOCA): New test group.
449 (parse.error=verbose overflow): New test group that reveals an
450 obscure bug. Expected fail for now.
452 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
454 benchmarks: use %debug consistently among grammars.
455 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
456 %debug by default. It can affect the timings even if yydebug=0.
457 (generate_grammar_calc): For consistency with other grammars,
458 use YYDEBUG environment variable to set yydebug.
460 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
463 * src/symtab.c (symbol_pack): Here because every symbol's number
464 is always defined by this time.
466 2009-10-03 Alex Rozenman <rozenman@gmail.com>
468 Add additional space after periods in NEWS.
471 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
473 Use the correct conversion specifier for size_t.
474 Reported by Jim Meyering.
475 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
476 because Sbitset__Index is size_t.
477 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
479 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
481 tests: don't abuse AT_BISON_CHECK.
482 * tests/regression.at (parse-gram.y: LALR = IELR): Move
483 additional shell commands outside of AT_BISON_CHECK.
485 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
487 tests: check that parse-gram.y's IELR and LALR are identical.
488 * tests/atlocal.in (abs_top_srcdir): New shell variable.
489 * tests/regression.at (parse-gram.y: LALR = IELR): New test
492 2009-09-19 Alex Rozenman <rozenman@gmail.com>
494 Keep sub-messages aligned. Fix strings for translation.
495 * src/location.h (location_print): Add return value.
496 * src/location.c (location_print): Return number of printed
498 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
500 * src/complain.cpp (indent_ptr): New static variable.
501 (error_message, complain_at_indent, warn_at_indent): Implement
502 the alignment mechanism.
503 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
504 for translations. Use new alignment mechanism.
505 * tests/named-ref.at: Adjust test-cases.
506 * NEWS (2.5): Add an announcement about named references.
508 2009-09-17 Akim Demaille <demaille@gostai.com>
511 * doc/bison.texinfo: here.
512 Reported by Alex Rozenman.
514 2009-09-16 Akim Demaille <demaille@gostai.com>
516 doc: lalr1.cc and variants.
517 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
518 "variant" %define variables.
519 (C++ Semantic Values): Split into...
520 (C++ Unions, C++ Variants): these.
522 (C++ Parser Interface): Fix type names.
523 Document parser::syntax_error.
524 Document the fact that locations are not mandatory.
525 (C++ Scanner Interface): Split into...
526 (Split Symbols, Complete Symbols): these.
528 (Calc++ Parsing Driver): Use variants.
531 (Calc++ Parser): Declare all the tokens, no
532 longer accept raw characters.
534 Adjust types and printers.
536 (Calc++ Scanner): Use make_<SYMBOL> functions.
537 Use strerror in error message.
539 2009-09-16 Akim Demaille <demaille@gostai.com>
542 * doc/bison.texinfo: here.
544 2009-09-16 Akim Demaille <demaille@gostai.com>
546 doc: comment changes.
547 * doc/bison.texinfo: Comment changes.
549 2009-09-16 Akim Demaille <demaille@gostai.com>
551 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
552 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
553 constructor to take a token_type instead of the (internal) symbol
556 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
557 don't call yytranslate_ here.
559 2009-09-16 Akim Demaille <demaille@gostai.com>
562 * TODO (Figures): New.
564 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
566 tests: clean up push.at test group titles.
567 * tests/push.at: Remove "Push Parsing: " from test group titles
568 because these are already under the banner "Push Parsing Tests".
570 2009-09-12 Alex Rozenman <rozenman@gmail.com>
572 Provide an additional sub-message for clarity.
573 Add "symbol not found in production" error message when
574 an "invalid reference" is detected in named references
576 * src/scan-code.l: Update "invalid reference" case.
577 * tests/named-ref.at: Adjust test-cases.
579 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
581 Clean up yacc.c a little.
582 * data/yacc.c: Clean up M4 for readability, and make output
583 whitespace more consistent. For the main parse function
584 comment, instead of saying "yyparse or yypush_parse", say either
585 "yyparse" or "yypush_parse" depending on which it actually is.
587 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
589 Fix --enable-gcc-warnings.
590 * src/parse-gram.y (%printer <param>): Handle param_none.
592 2009-09-09 Akim Demaille <demaille@gostai.com>
594 lalr1.cc: syntax_error as exceptions.
595 It is common to use sort of factories in the user actions. These
596 factories may check some "syntactic" constraints that are not
597 enforced by the grammar itself. This is possible using YYERROR
598 within the action itself. Provide the user with a means to throw
599 a syntax_error exception.
601 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
602 Declare and define yy::parser::syntax_error.
603 * data/lalr1.cc: Include stdexcept.
604 (yy::parser::parse): Wrap the user action within a try/catch.
605 * data/glr.cc: Include stdexcept.
607 2009-09-09 Akim Demaille <demaille@gostai.com>
609 lalr1.cc: add missing "inline".
610 * data/c++.m4 (b4_public_types_define): Add missing inline to
611 implementations provided in headers.
613 2009-09-09 Akim Demaille <demaille@gostai.com>
615 %param: documentation.
616 * NEWS (2.6): Document %param, %lex-param, and %parse-param
618 * doc/bison.texinfo: Document that %lex-param and %parse-param
620 Changes some examples to demonstrate it.
621 (Calc++ Parser): Use %param.
623 2009-09-09 Akim Demaille <demaille@gostai.com>
627 2009-09-09 Akim Demaille <demaille@gostai.com>
630 * src/parse-gram.y (add_param): Scope changes.
632 2009-09-09 Akim Demaille <demaille@gostai.com>
634 %parse: support several arguments.
635 * src/parse-gram.y (current_param): New.
636 (param_type): Add param_none.
637 (params): New nonterminal.
640 2009-09-09 Akim Demaille <demaille@gostai.com>
644 2009-09-09 Akim Demaille <demaille@gostai.com>
647 Provide a means to factor lex-param and parse-param common
650 * src/parse-gram.y (param_type): New.
651 Define a %printer for it.
653 (%parse-param, %lex-param): Merge into...
654 (%parse): this new token.
655 Adjust the grammar to use it.
656 * src/scan-gram.l (RETURN_VALUE): New.
657 (RETURN_PERCENT_FLAG): Use it.
658 (RETURN_PERCENT_PARAM): New.
659 Use it to support %parse-param, %lex-param and %param.
661 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
664 * src/output.c: Don't include assert.h.
665 (output_skeleton): Use aver not assert.
666 * src/system.h (aver): In documentation of why, add links to
667 Paul Eggert's explanations in the mailing lists.
669 2009-09-05 Alex Rozenman <rozenman@gmail.com>
671 Use "Unresolved reference" error message when no symbols were found
672 in a symbolic reference resolution. Remove .expr and -expr from
673 the shown reference when the reference is unresolved.
674 * src/scan-code.l: Change the error message, adjust location columns,
675 rename variable "exact_mode" to "explicit_bracketing".
676 * tests/named-ref.at: Adjust existing tests and add a new one.
678 2009-09-04 Akim Demaille <demaille@gostai.com>
680 Adjust synclines in src/parse-gram.[ch].
681 * tests/bison.in: Do some magic (including working around issues
682 with ylwrap) when this wrapper is used to compile
685 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
687 Complain about unused %define variables and %code qualifiers.
688 * NEWS (2.5): Document.
689 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
690 * doc/bison.texinfo (Decl Summary): Document complaint, and
691 improve %define documentation a little otherwise.
692 * tests/input.at (Reject unused %code qualifiers): Update.
693 (%define errors): Update.
694 (%define, --define, --force-define): Update.
695 (%define backward compatibility): Update.
696 (Unused %define api.pure): Update.
697 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
699 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
701 Don't suppress warnings about unused parse.error.
702 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
703 %define variable parse.error unless b4_error_verbose_flag is
704 actually expanded in a skeleton.
706 2009-09-03 Akim Demaille <demaille@gostai.com>
708 * NEWS (2.4.2): Add "Internationalization" item.
710 2009-09-03 Akim Demaille <demaille@gostai.com>
712 bootstrap: fix/improve find_tool.
713 * bootstrap (find_tool): Improve error messages.
714 Fix typo about find_tool_names.
716 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
718 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
720 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
721 * src/scan-code.h (code_props_rule_action_init): Rename
722 named_ref arg to name so it doesn't shadow named_ref type. This
723 makes it consistent with the function definition in scan-code.l
726 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
728 %define: accept unquoted values.
729 * NEWS (2.5): Group all %define changes together, and document
730 this one. Remove quotes in IELR and canonical LR entry.
731 * doc/bison.texinfo: Remove quotes in most examples throughout.
732 (Decl Summary): Update %define documentation.
733 (Table of Symbols): Likewise.
734 * src/ielr.c (LrType): Update documentation.
735 * src/parse-gram.y (content.opt): Add production for ID.
736 * tests/actions.at: Remove quotes in most tests.
737 * tests/calc.at: Likewise.
738 * tests/existing.at: Likewise.
739 * tests/input.at: Likewise.
740 * tests/local.at: Likewise.
741 * tests/push.at: Likewise.
742 * tests/reduce.at: Likewise.
743 * tests/torture.at: Likewise.
745 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
747 %define lr.type: make values lowercase IDs.
748 That is, "LALR" => "lalr", "IELR" => "ielr", and
749 "canonical LR" => "canonical-lr".
750 * NEWS (2.5): Update documentation.
751 * doc/bison.texinfo (Decl Summary): Likewise.
752 * src/ielr.c (ielr): Use new values.
753 * src/ielr.h (ielr): Update documentation.
754 * src/reader.c (prepare_percent_define_front_end_variables): Use
755 and validate new values.
756 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
758 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
760 2009-08-27 Eric Blake <ebb9@byu.net>
762 scan-gram: avoid portability trap with ctype usage.
763 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
764 Avoid compiler warning.
766 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
768 tests: use perl for printing special sequences to files.
769 And skip tests if perl is not available. This is better than
770 playing tricks with shell portability. Suggested by Akim
772 * tests/input.at (Bad character literals): Use it here for
773 omitting final newlines.
774 (Bad escapes in literals): Use it here for special characters.
776 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
778 tests: show a use of %define lr.default-reductions "consistent"
779 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
780 prevents the omission of expected tokens for %error-verbose.
782 2009-08-26 Akim Demaille <demaille@gostai.com>
784 tests: portability fix.
785 * tests/input.at (Bad escapes in literals): Don't expect "echo
786 '\0'" to output \ then 0.
788 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
790 Actually handle the yytable zero value correctly this time.
791 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
792 zero values in the YYTABLE comments.
793 * data/glr.c (yytable_value_is_error): Don't check for zero
795 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
796 * data/yacc.c (yytable_value_is_error): Likewise.
797 * data/lalr1.java (yy_table_value_is_error_): Likewise.
798 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
799 * src/tables.h: In header comments, explain why it's useless to
800 check for a zero value in yytable.
802 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
804 More fixes related to last two patches.
805 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
806 comments: zero indicates syntax error not default action.
807 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
809 * data/glr.c (yyis_pact_ninf): Rename to...
810 (yypact_value_is_default): ... this.
811 (yyisDefaultedState): Update for rename.
812 (yyis_table_ninf): Rename to...
813 (yytable_value_is_error): ... this, and check for value zero
814 besides just YYTABLE_NINF.
815 (yygetLRActions): Check for default value from yypact. It
816 appears that this check is always performed before this function
817 is invoked, and so adding the check here is probably redundant.
818 However, the code may evolve after this subtlety is forgotten.
819 Also, update for rename to yytable_value_is_error. Because that
820 macro now checks for zero, a different but equivalent branch of
821 the if-then-else here is evaluated.
822 (yyreportSyntaxError): Update for rename to
823 yytable_value_is_error. The zero condition was mishandled
825 (yyrecoverSyntaxError): Update for renames. No behavioral
827 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
829 (yy_table_value_is_error_): New function.
830 (parse): Use new functions where possible. No behavioral
832 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
833 The zero condition was mishandled before.
834 * data/yacc.c (yyis_pact_ninf): Rename to...
835 (yypact_value_is_default): ... this.
836 (yyis_table_ninf): Rename to...
837 (yytable_value_is_error): ... this, and check for value zero
838 besides just YYTABLE_NINF.
839 (yysyntax_error): Update for rename to yytable_value_is_error.
840 The zero condition was mishandled before.
841 (yyparse): Update for renames. No behavioral changes.
842 * src/tables.h: Improve comments about yypact, yytable, etc.
843 more. Most importantly, say yytable value of zero means syntax
844 error not default action.
846 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
848 Fix %error-verbose for conflicts resolved by %nonassoc.
849 * NEWS (2.5): Document.
850 * data/glr.c (yyreportSyntaxError): Fix this by checking
852 * data/yacc.c (yysyntax_error): Likewise.
853 * data/lalr1.cc (yysyntax_error_): Fix this by checking
855 * data/lalr1.java (yysyntax_error): Likewise.
856 * tests/conflicts.at (%nonassoc and eof): Update expected output
859 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
861 Some code and documentation improvements.
862 * data/c.m4 (b4_table_value_equals): New macro to capture
864 * data/glr.c (yyis_pact_ninf): Use it here.
865 (yyis_table_ninf): Likewise.
866 (yyreportSyntaxError): Improve internal comments.
867 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
868 Use it everywhere possible.
869 (yyis_table_ninf): Likewise.
870 (yysyntax_error): Improve internal comments.
871 * data/lalr1.cc (yysyntax_error_): Likewise.
872 * data/lalr1.java (yysyntax_error): Likewise.
873 * src/tables.h: Improve comments about yypact, yytable, etc.
875 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
877 Use locale when quoting.
878 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
879 quote rather than implementing quoting here.
881 2009-08-20 Eric Blake <ebb9@byu.net>
883 Make previous patch more robust.
884 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
886 (output_skeleton): Use it.
887 Suggested by Akim Demaille.
889 Import latest m4/m4.m4.
890 * submodules/autoconf: Update to autoconf 2.64.
891 * configure.ac (M4_GNU_OPTION): New define.
892 * src/output.c (output_skeleton): Use it to resolve FIXME.
893 * NEWS: Mention this.
895 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
897 Fix complaints about escape sequences.
898 Discussed starting at
899 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
900 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
901 For a \0 and similar escape sequences meaning the null
902 character, report an invalid escape sequence instead of an
903 invalid null character because the latter does not actually
904 appear in the user's input.
905 In all escape sequence complaints, don't escape the initial
906 backslash, and don't quote when the sequence appears at the end
907 of the complaint line unless there's whitespace that quotearg
909 Consistently say "invalid" not "unrecognized".
910 Consistently prefer "empty character literal" over "extra
911 characters in character literal" warning for invalid escape
912 sequences; that is, consistently discard those sequences.
913 * tests/input.at (Bad escapes in literals): New.
915 2009-08-19 Akim Demaille <demaille@gostai.com>
918 * doc/bison.texinfo: Fix minor Texinfo errors.
920 2009-08-19 Akim Demaille <demaille@gostai.com>
922 tests: distcc compliance.
923 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
924 error messages from the output.
926 2009-08-19 Akim Demaille <demaille@gostai.com>
928 variables: simplify the upgrade of namespace into api.namespace.
930 This patch simplifies "variables: rename namespace as
931 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
932 Suggested by Joel E. Denny in
933 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
935 * src/muscle-tab.c (muscle_percent_variable_update): New.
936 (muscle_percent_define_insert): Use it in replacement of the
937 previous tr invocation.
938 Remove variable_tr, no longer needed.
939 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
941 * data/c++.m4: No longer handle namespace -> api.namespace.
942 * tests/input.at (%define backward compatibility): Check that
943 namespace is treated as api.namespace.
945 2009-08-19 Akim Demaille <demaille@gostai.com>
947 doc: %initial-action to initialize yylloc.
948 Reported by Bill Allombert.
949 * doc/bison.texinfo: Set fill-column to 76.
950 (Location Type): Document the use of %initial-action to initialize
953 2009-08-19 Akim Demaille <demaille@gostai.com>
955 lalr1.cc: use state_type.
956 * data/lalr1.cc (yysyntax_error_): Use state_type.
957 Move argument names into yy*.
959 2009-08-19 Akim Demaille <demaille@gostai.com>
961 lalr1.cc: get rid of yyparse's yystate.
962 yystate and yystack_[0].state are equal, keep only the latter.
963 The former was also used as a temporary variable to compute the
964 post-reduction state. Move this computation into an auxiliary
967 * data/glr.c (yyLRgotoState): Fuse variable definition and first
969 * data/lalr1.cc (yy_lr_goto_state_): New.
971 Replace remaining uses of yystate by yystate_[0].state.
974 2009-08-19 Akim Demaille <demaille@gostai.com>
976 lalr1.cc: destroy $$ when YYERROR is called.
977 * data/lalr1.cc (yyreduce): Compute the resulting state before
978 running the user action so that yylhs is a valid symbol.
979 (yyerrorlab): Since yylhs is complete (it knows its type), we can
980 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
981 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
983 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
985 maint: update for gnulib's recent update-copyright changes
987 * .x-update-copyright (COPYING): Add as it's no longer implied
988 when .x-update-copyright is present.
989 * cfg.mk (update-copyright-local): Remove, now ignored.
990 (update-copyright): Declare update-b4-copyright as a dependency.
992 2009-08-17 Akim Demaille <demaille@gostai.com>
994 build: require gettext 0.17.
996 Suggested by Bruno Haible.
997 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
998 * configure.ac: require gettext 0.17 to ensure compatibility with
1001 2009-08-17 Akim Demaille <demaille@gostai.com>
1003 build: lower gettext requirements.
1005 Bison was uselessly requiring the formatstring macros from
1006 gettext, which resulted in mo files not being installed on systems
1007 that perfectly supported Bison mo files. Lower the requirement.
1008 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1010 * configure.ac: Require need-ngettext instead of
1011 need-formatstring-macros.
1012 Reported by Martin Jabocs.
1013 Suggested by Bruno Haible.
1014 * INSTALL: Restructure.
1015 (Internationalization): New.
1017 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1019 maint: fix use of copyright year intervals.
1021 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1022 as now recommended in gnulib/NEWS.
1023 * build-aux/update-b4-copyright: Fix.
1024 * cfg.mk (update-copyright-env): Configure update-copyright.
1026 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1028 Make it easier to write deterministic tests.
1029 Continues Akim's work from his 2009-06-10 commits.
1030 * src/reader.c (check_and_convert_grammar): Don't add any
1031 symbols after the first symbols_do invocation.
1032 * src/symtab.c (symbols_sorted): New static global.
1033 (user_token_number_redeclaration): Update comments.
1034 (symbol_from_uniqstr): If a new symbol is being created, assert
1035 that symbols_sorted hasn't been allocated yet.
1036 (symbols_free): Free symbols_sorted.
1037 (symbols_cmp, symbols_cmp_qsort): New functions.
1038 (symbols_do): Sort symbol_table into symbols_sorted on first
1040 * tests/input.at (Numbered tokens): Recombine tests now that the
1041 output should be deterministic across multiple numbers.
1043 2009-08-12 Akim Demaille <demaille@gostai.com>
1045 tests: GCC 4.5 compliance.
1046 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1047 messages about #error.
1049 2009-08-12 Akim Demaille <demaille@gostai.com>
1051 build: fix the generation of the documentation.
1052 Some of our targets use "bison --help", but they can't depend on
1053 "bison" itself (to avoid additional requirements on the user), so
1054 they used to call "make src/bison" in the commands. Then
1055 concurrent builds may fail: one make might be aiming one of its
1056 jobs at compiling src/bison, and another job at generating the man
1057 page. If the latter is faster than the former, then we have two
1058 makes that concurrently try to compile src/bison.
1060 This might also be a more convincing explanation for the failure
1061 described in the patch "build: fix paths".
1063 * Makefile.am (SUFFIXES): Initialize.
1064 * build-aux/move-if-change: New, symlink to gnulib's.
1065 * build-aux/local.mk: Ship it.
1066 * doc/common.x: Remove, merged into...
1067 * doc/bison.x: here.
1068 * doc/local.mk (doc/bison.help): New.
1069 ($(CROSS_OPTIONS_TEXI)): Depend on it.
1071 (.x.1): Replace with...
1072 (doc/bison.1): this explicit, simpler, target.
1073 (common_dep): Remove, inlined where appropriate.
1074 (SUFFIXES, PREPATH): Remove, unused.
1076 2009-08-12 Akim Demaille <demaille@gostai.com>
1078 gnulib: improve prefixing.
1079 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
1080 change the value of...
1082 Adjust more variables.
1083 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
1085 (prefix): Also transform rules whose targets have slashes.
1086 Use $prefix liberally.
1087 Map @MKDIR_P@ to $(MKDIR_P).
1088 Prefix directories that are mkdir'd.
1090 2009-08-12 Akim Demaille <demaille@gostai.com>
1093 When using $(top_builddir) inconsistently, Make (including GNU
1094 Make) is sometimes confused. As a result it may want to build
1095 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1096 file, different names) concurrently, which, amusingly enough,
1099 ranlib lib/libbison.a
1100 ranlib lib/libbison.a
1101 make[2]: *** [lib/libbison.a] Segmentation fault
1105 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1108 2009-08-12 Akim Demaille <demaille@gostai.com>
1112 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1114 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1116 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1118 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1120 Miscellaneous code readability improvements.
1122 * src/reader.c (reader): Move %define front-end variable
1123 defaults and checking into...
1124 (prepare_percent_define_front_end_variables): ... this new
1127 * src/scan-gram.l (INITIAL): For consistency with string
1128 literals, don't store open quote on character literal. It's
1129 discarded before returning anyway.
1130 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1131 Make length test more readable, and make the character stored
1132 for an empty literal more obvious while consistent with the
1135 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1136 USER_NUMBER_HAS_STRING_ALIAS throughout.
1137 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1138 that is repeated in symtab.h. Improve argument names to make it
1139 clear which side of the symbol-string alias pair is which.
1140 (symbol_check_alias_consistency): Improve local variable names
1141 for the same purpose.
1142 * src/symtab.h (struct symbol): Make comments about aliases
1144 (symbol_make_alias): Improve comments and argument name.
1145 * src/output.c (token_definitions_output): Update for rename to
1146 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1148 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1150 Convert "misleading reference" messages to warnings.
1151 * src/scan-code.l: New function 'show_sub_messages', more
1153 * tests/named-ref.at: Adjust tests.
1155 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1157 maint: run "make update-copyright"
1159 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1161 maint: make update-b4-copyright easier to use
1162 * build-aux/update-b4-copyright: In warnings, report line
1163 numbers rather than character positions.
1164 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1165 that update-copyright runs it.
1168 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1170 maint: clean up update-b4-copyright code
1171 * build-aux/update-b4-copyright: Do not accept 2-digit
1172 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1173 Don't accept a `[' in a b4_copyright argument.
1174 Format code more consistently.
1175 Don't assume b4*copyright never occurs.
1177 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1179 maint: automate b4_copyright updates.
1180 * Makefile.am (update-b4-copyright): New target rule.
1181 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1182 * build-aux/update-b4-copyright: New.
1183 * data/yacc.c: Remove stray characters around b4_copyright
1186 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1188 maint: automate annual package-wide copyright-year update.
1189 * .x-update-copyright: New.
1190 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1191 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1192 update-copyright. Remove gnumakefile, which is implied by
1193 maintainer-makefile.
1194 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1196 * maint.mk: Remove, now copied from gnulib.
1197 * examples/extexi: Add missing "(C)" in copyright statement so
1198 update-copyright can recognize it.
1199 * src/LR0.h: Likewise.
1200 * src/print.h: Likewise.
1201 * src/print_graph.h: Likewise.
1202 * src/gram.c: Add missing comma in copyright statement.
1203 * src/gram.h: Likewise.
1205 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1207 Fix "make distcheck".
1208 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1211 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1213 Pacify "gcc -Wunused" for the input function from Flex.
1214 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1216 * src/scan-code.l: Add "%option noinput", which I cannot find in
1217 the Flex manual, but which Flex has supported since at least as
1218 far back as 2.5.4. However, if any of our developers still use
1219 Flex 2.5.4, they'll need to stop configuring with
1220 --enable-gcc-warnings because "%option noinput" didn't work
1221 correctly until Flex 2.5.6.
1222 * src/scan-gram.l: Likewise.
1223 * src/scan-skel.l: Likewise.
1225 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1227 Fix --enable-gcc-warnings problems.
1228 * src/reader.c: Adjust variable names.
1229 * src/scan-code.l: Fix prototypes and adjust names.
1230 * src/named-ref.c: Remove redundant "if".
1232 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1234 Fix a --enable-gcc-warnings problem.
1235 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1238 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1240 Warn about character literals not of length one.
1241 * NEWS (2.5): Document.
1242 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1244 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1245 * tests/input.at (Bad character literals): New test group.
1247 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1249 Fix some memory leaks.
1250 * src/named-ref.c: Add a pointer check (named_ref_free).
1251 * src/scan-code.l: New function (variant_table_free). Called in
1253 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1255 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1257 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1259 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1261 Some M4 cleanup in the testsuite.
1262 Suggested by Eric Blake at
1263 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1264 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1265 complicate the code by distinguishing between a missing value
1266 and an empty string value for an optional argument. This fix is
1267 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1268 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1269 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1270 arguments are not needed because of the following changes.
1272 Bison developers should use GNU M4 and should not use
1273 POSIXLY_CORRECT when building the test suite, so do not
1274 complicate the code by avoiding $10 and above.
1275 Do not quote an empty string value for an optional argument, and
1276 do not distinguish between a missing value and an empty string
1279 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1281 Revert unnecessary column realignment in --help output.
1282 Reported by Akim Demaille at
1283 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1284 * src/getargs.c (usage): Here.
1286 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1288 Alphabetical order in src/local.mk.
1289 * src/local.mk: Adjust.
1291 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1293 Style changes and factoring.
1294 * src/named-ref.h: Add comments.
1295 * src/parse-gram.y: Readability and style changes.
1296 * src/reader.c: Factoring: assign_named_ref function.
1297 * src/scan-code.l: Factoring and style changes. Rename
1298 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1299 Use "unsigned" type for variant index. Improve readablity.
1300 * src/scan-gram.l: Change error messages and add comments.
1301 * src/symlist.h: symbol_list_null: New function decl.
1302 * src/symlist.c: symbol_list_null: Implement here.
1303 * tests/named-refs.at: Adjust for new error messages.
1305 2009-06-29 Eric Blake <ebb9@byu.net>
1307 scan-code: avoid compiler warnings
1308 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1310 2009-06-29 Akim Demaille <demaille@gostai.com>
1312 build: avoid concurrent extraction of calc++.
1313 * examples/calc++/Makefile.am (calc.stamp): New.
1314 Depend on it to create the sources of calc++ so that concurrent
1315 builds don't launch several "extexi" in parallel.
1316 Not only this is inefficient, this also builds incorrect sources
1317 with several extractions mixed together.
1319 2009-06-29 Akim Demaille <demaille@gostai.com>
1322 * data/bison.m4: Move code related to specific variables after the
1323 definition of the variable-maintaining macros so that we don't
1324 "invoke" b4_percent_define_check_values before it is defined.
1326 2009-06-29 Akim Demaille <demaille@gostai.com>
1328 variables: parse.error
1330 Implement, document, and test the replacement of %error-verbose
1331 by %define parse.error "verbose".
1332 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1333 values of the parse.error variable.
1334 Make "simple" its default value.
1335 Check the valid values.
1336 * src/parse-gram.y: Use %define parse.error.
1337 (PERCENT_ERROR_VERBOSE): New token.
1339 * src/scan-gram.l: Support %error-verbose.
1341 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1342 %define error-verbose by that of %define parse.error.
1343 * NEWS: Document it.
1345 * tests/actions.at, tests/calc.at: Use parse.error instead of
1348 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1350 Implement support for named symbol references.
1351 * src/parse-gram.y: Add new syntax (named_ref.opt).
1352 * src/reader.c: Store named refs in symbol lists.
1353 * src/reader.h: New argument for symbol_append and
1354 action_append functions.
1355 * src/scan-code.h: Add new field (named_ref) into
1356 code_props data structure. Keeps named ref of midrule
1358 * src/scan-code.l: Support for named refs in semantic
1359 action code. New function 'parse_named_ref'.
1360 * src/scan-gram.l: Support bracketed id.
1361 * src/symlist.c: Store named refs in symbol lists.
1362 * src/symlist.h: New field in symbol list: named_ref.
1363 * src/named-ref.h: New file, a struct for named_ref.
1364 * src/named-ref.cp: New file, named_ref_new function.
1365 * src/local.mk: Add two new files.
1366 * tests/testsuite.at: Include new test group:
1367 * tests/named-refs.at: this new file.
1369 2009-06-25 Akim Demaille <demaille@gostai.com>
1371 hash: check insertion for memory exhaustion.
1372 * src/uniqstr.c (uniqstr_new): New.
1374 2009-06-24 Akim Demaille <demaille@gostai.com>
1376 variables: rename namespace as api.namespace.
1378 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1380 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1382 (b4_percent_define_use): New.
1383 Use it where applicable.
1384 * data/c++.m4: Replace uses of the variable "namespace" by
1386 Default the latter to the former.
1387 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1389 Document api.namespace.
1390 Use @samp to document %define uses, keep @code for identifiers.
1392 * tests/c++.at, tests/input.at: Test api.namespace instead of
1393 namespace. (The tests passed with namespace.)
1395 2009-06-11 Akim Demaille <demaille@gostai.com>
1398 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1399 * src/print-xml.c: Style changes.
1400 * tests/conflicts.at: Comment changes.
1402 2009-06-11 Akim Demaille <demaille@gostai.com>
1404 xml: beware of user strings used to give a %prec to rules.
1405 * tests/conflicts.at (%prec with user strings): New.
1406 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1409 2009-06-11 Akim Demaille <demaille@gostai.com>
1411 hash: check insertion for memory exhaustion.
1412 * src/muscle-tab.c (muscle_insert, muscle_grow)
1413 * src/state.c (state_hash_insert): Check the return value of
1416 2009-06-11 Akim Demaille <demaille@gostai.com>
1418 tests: honor TESTSUITEFLAGS in every check target.
1419 * tests/local.mk (RUN_TESTSUITE): New.
1420 (check-local, installcheck-local, maintainer-check-g++)
1421 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1423 2009-06-10 Akim Demaille <demaille@gostai.com>
1425 deterministic test suite.
1426 Some consistency checks on symbols are performed after all the
1427 symbols were read, by an iteration over the symbol table. This
1428 traversal is nondeterministic, which can be a problem for test
1431 Addresses another form of nondeterminism reported by Joel E. Denny.
1432 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1434 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1436 Use different file names for the three tests to make the
1439 2009-06-10 Akim Demaille <demaille@gostai.com>
1442 * gnulib: Update to latest.
1443 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1444 * m4/.gitignore: Regen.
1445 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1446 Call xalloc_die on hash_insert failures.
1447 Requested by the new __warn_unused_result__ attribute of
1450 2009-06-10 Akim Demaille <demaille@gostai.com>
1452 deterministic user-token-number redeclaration errors.
1453 Address nondeterminism reported by Joel E. Denny.
1454 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1456 * src/uniqstr.h: Comment changes.
1457 * src/location.h (boundary_cmp, location_cmp): New.
1458 * src/symtab.c (user_token_number_redeclaration): New.
1459 (symbol_translation): Use it.
1460 * tests/input.at (Numbered tokens): Adjust the expected output.
1462 2009-05-25 Akim Demaille <demaille@gostai.com>
1464 build: avoid ignored errors.
1465 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1466 errors, they pollute the output.
1468 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1470 Convert multiple variable definition warnings to complaints.
1471 * NEWS (2.5): Add a new entry for that change.
1472 * doc/bison.texinfo (Decl Summary): Update %define entry.
1473 (Bison Options): Update -D/--define/-F/--force-define entry.
1474 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1475 * src/muscle-tab.h (muscle_percent_define_insert): Update
1477 * tests/input.at (`%define errors'): Update.
1478 (`%define, --define, --force-define'): Update.
1480 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1482 -F/--force-define and relative %define/-D/--define priorities.
1483 * NEWS (2.5): Add documentation to -D/--define entry.
1484 * build-aux/cross-options.pl: Hard-code association of
1485 --force-define with %define.
1486 * doc/bison.texinfo (Decl Summary): In %define entry,
1487 cross-reference command-line options.
1488 (Bison Options): Add documentation to -D/--define entry.
1489 (Option Cross Key): Widen column for --force-define row.
1490 * src/getargs.c (usage): Document -F/--force-define. Realign
1492 (short_options, long_options, getargs): Parse -F/--force-define,
1493 and update muscle_percent_define_insert invocations.
1494 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1495 (muscle_percent_define_insert): Add argument with that type.
1496 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1497 -F/--force-define behavior and priorities.
1498 (muscle_percent_define_ensure): Update
1499 muscle_percent_define_insert invocation.
1500 * src/parse-gram.y (prologue_declaration): Update
1501 muscle_percent_define_insert invocations.
1502 * tests/input.at (`%define, --define'): Rename to...
1503 (`%define, --define, --force-define'): ... this and extend.
1505 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1507 Update some comments to make sense for -D.
1508 * data/bison.m4 (b4_check_user_names): In header comments, say
1509 "user occurrence" instead of "grammar occurrence".
1510 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1511 (muscle_percent_code_grow): Likewise just for consistency.
1513 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1515 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1517 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1519 Handle a trailing `:' in a user-supplied C++ namespace better.
1520 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1521 among the closing braces here. This fix might make the
1522 generated code easier to debug, but otherwise it should be
1523 insignificant because a trailing `:' is a C++ error already.
1525 2009-05-19 Akim Demaille <demaille@gostai.com>
1527 remove useless variable.
1528 * src/getargs.c (skeleton_arg): Remove now useless variable.
1529 Should help the compiler see that this printf-like call is sane.
1531 2009-05-15 Akim Demaille <demaille@gostai.com>
1533 Rename token.prefix as api.tokens.prefix.
1535 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1537 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1538 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1539 (token.prefix): Rename as...
1540 (api.tokens.prefix): this.
1542 2009-05-11 Akim Demaille <demaille@gostai.com>
1544 doc: use C++ headers.
1545 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1548 2009-05-11 Akim Demaille <demaille@gostai.com>
1551 * doc/bison.simple (Decl Summary): Document token.prefix.
1552 (Calc++ Parser): Various fixes.
1555 Introduce a macro TOKEN to shorten the code and make it more
1557 (Calc++ Scanner): Adjust.
1558 * NEWS (Variable token.prefix): New.
1560 2009-05-04 Akim Demaille <demaille@gostai.com>
1562 bison: catch bad symbol names.
1563 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1564 * tests/input.at: Adjust.
1566 2009-05-04 Akim Demaille <demaille@gostai.com>
1568 identifiers: dashes are letters.
1569 Dashes can now start identifiers (symbols and directives).
1571 * src/scan-gram.l ({letter}): Add dash.
1573 * tests/input.at (Symbols): Adjust.
1574 Remove stray comment.
1575 * tests/regression.at (Invalid inputs): Adjust error message.
1576 * doc/bison.texinfo (Symbols): Update.
1578 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1580 Declare %code to be a permanent feature.
1581 * NEWS (2.4.2): Here.
1582 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1584 (Decl Summary): Likewise.
1586 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1588 Convert underscores to dashes in some %define variable names.
1589 For now, just api.push-pull and lr.keep-unreachable-states.
1590 Maintain old names for backward compatibility.
1591 * NEWS (2.5): Document.
1592 * data/c.m4 (b4_identification): Update comment.
1593 * data/yacc.c: Update access.
1594 * doc/bison.texinfo: Update.
1595 * etc/bench.pl.in (bench_push_parser): Update use.
1596 * src/files.c (tr): Move to...
1597 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1598 think of a better place to expose it. My logic is that, for all
1599 uses of tr so far, command-line arguments can be involved, and
1600 getargs.h is already included.
1601 * src/main.c (main): Update access.
1602 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1603 variable names to new variable names before assigning value.
1604 * src/reader.c (reader): Update setting default.
1605 * tests/calc.at: Update uses.
1606 * tests/conflicts.at (Unreachable States After Conflict
1607 Resolution): Update use.
1608 * tests/input.at (%define enum variables): Update use.
1609 (%define backward compatibility): New test group.
1610 * tests/push.at: Update uses.
1611 * tests/reduce.at: Update uses.
1612 * tests/torture.at: Update uses.
1614 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1616 Set all front-end %define defaults in one place.
1617 * src/main.c (main): Move lr.keep_unreachable_states default...
1618 * src/reader.c (reader): ... to here.
1620 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1622 Rename lr.default_reductions to lr.default-reductions.
1624 * doc/bison.texinfo: Here.
1625 * src/lalr.c (initialize_LA): Here.
1626 * src/print.c (print_reductions): Here.
1627 * src/reader.c (reader): Here.
1628 * src/tables.c (action_row): Here.
1629 * tests/input.at (%define enum variables): Here.
1630 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1632 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1634 Pacify ./configure --enable-gcc-warnings.
1635 * tests/input.at (Symbols): Prototype yyerror and yylex.
1637 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1639 Document how `%define "var" "value"' is not M4-friendly.
1640 * src/parse-gram.y (variable): In comments here.
1642 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1644 Clean up recent patches a little.
1645 Reported by Akim Demaille.
1646 * doc/bison.texinfo (Understanding): Fix typos.
1647 * src/print.c (print_reductions): Don't use negated variable.
1649 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1651 List accepted values for a %define enum variable with an invalid value.
1652 Suggested by Akim Demaille at
1653 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1654 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1655 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1656 * tests/input.at (%define lr.default_reductions invalid values): Merge
1658 (%define enum variables): ... here, and update output.
1660 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1662 Rename "default rule" to "default reduction".
1663 This includes changing variable names in code, changing
1664 comments, and renaming %define lr.default_rules to %define
1665 lr.default_reductions.
1666 * NEWS (2.5): Update IELR documentation.
1667 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1669 * data/glr.c, data/lalr1.java: Sync copyright dates.
1670 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1671 and lr.type documentation. Make some other wording
1673 (Glossary): Adjust cross-references and Default Reduction
1675 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1676 Remove a confusing comment pointed out by Akim Demaille.
1677 (initialize_LA): Adjust code.
1678 * src/print-xml.c (print_reductions): Adjust code.
1679 * src/print.c (print_reductions): Adjust code.
1680 * src/reader.c (reader): Adjust code.
1681 * src/tables.c (action_row): Adjust code.
1682 (token_actions): Adjust code.
1683 * src/tables.h: Adjust YYDEFACT documentation.
1684 * tests/input.at (%define lr.default_rules invalid values):
1685 Rename test group to...
1686 (%define lr.default_reductions invalid values): ... this, and
1687 update grammar file and expected output.
1688 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1689 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1691 2009-04-21 Akim Demaille <demaille@gostai.com>
1693 tests: check the use of dashes and periods in symbols.
1694 * tests/input.at (Symbol): New test group.
1696 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1698 Document %define lr.type and lr.default_rules.
1699 * NEWS (2.5): Add an entry.
1700 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1701 besides just LALR(1) and GLR(1).
1702 * doc/bison.texinfo (Introduction): Likewise.
1703 (Language and Grammar): Bison is no longer limited to LALR(1)
1705 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1706 when trying to distinguish from GLR. Talk about LR(1) grammars
1707 rather than LALR(1) grammars.
1708 (Decl Summary): In %define api.push_pull entry, say it applies
1709 to deterministic parsers in C rather than LALR(1) parsers in C.
1710 Add lr.default_rules entry.
1712 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1714 (Generalized LR Parsing): Same changes as for the previous GLR
1716 (Memory Management): Say deterministic rather than LALR(1).
1717 (Understanding): Correct some bison output.
1718 Index discussion of "accepting state".
1719 Say deterministic rather than LALR(1).
1720 (Bison Options): In --yacc entry, say deterministic rather than
1722 In --report, --graph, and --xml entries, just don't mention
1724 (C++ Parsers): Say deterministic rather than LALR(1).
1725 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1726 (Glossary): Add Accepting State, Consistent State, Default Rule,
1727 and IELR(1) definitions.
1728 In Generalized LR (GLR) definition, make same changes as in
1729 previous GLR sections.
1730 In LALR(1) definition, say Bison uses LALR(1) by default rather
1731 than implying Bison is limited to LALR(1).
1732 (LocalWords): Add IELR.
1734 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1736 Finish implementing %define lr.type.
1737 Its value can be "LALR", "IELR", or "canonical LR".
1738 * lib/timevar.def (TV_IELR_PHASE1): New var.
1739 (TV_IELR_PHASE2): New var.
1740 (TV_IELR_PHASE3): New var.
1741 (TV_IELR_PHASE4): New var.
1742 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1743 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1744 Sbitset.h, ielr.h, and ielr.c.
1745 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1746 trace_types): Add trace_ielr.
1747 * src/lalr.h, src/lalr.c (ngotos): Export it.
1749 (goto_follows): ... this, update all uses, and export it.
1750 (set_goto_map): Export it.
1751 (map_goto): Export it.
1752 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1754 (initialize_LA): Export it. Move lookback allocation to...
1755 (lalr): ... here because, for canonical LR, initialize_LA must
1756 be invoked but lookback and much of the rest of LALR isn't
1758 * main.c (main): Instead of lalr, invoke ielr, which invokes
1760 * src/reader.c (reader): Default lr.type to "LALR".
1761 Default lr.default_rules to "accepting" if lr.type is "canonical
1762 LR". Leave the default as "all" otherwise.
1763 Check for a valid lr.type value.
1764 * src/state.h, src/state.c (struct state_list): Add state_list
1766 (state_new): Initialize state_list member to NULL.
1767 (state_new_isocore): New function, exported.
1768 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1769 exercises all values of lr.type.
1770 (GNU AWK Grammar): Rename test group to...
1771 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1772 AT_TEST_EXISTING_GRAMMAR.
1773 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1774 (GNU pic Grammar): Rename test group to...
1775 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1776 AT_TEST_EXISTING_GRAMMAR.
1777 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1778 all values of lr.type.
1779 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1780 (Lane Split): Likewise.
1781 (Complex Lane Split): Likewise.
1782 (Split During Added Lookahead Propagation): Likewise.
1784 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1786 Add new files for IELR and canonical LR implementation.
1787 * src/AnnotationList.c: New.
1788 * src/AnnotationList.h: New.
1789 * src/InadequacyList.c: New.
1790 * src/InadequacyList.h: New.
1791 * src/Sbitset.c: New.
1792 * src/Sbitset.h: New.
1796 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1798 Implement %define lr.default_rules.
1799 Its value describes the states that are permitted to contain
1800 default rules: "all", "consistent", or "accepting".
1801 * src/reader.c (reader): Default lr.default_rules to "all".
1802 Check for a valid lr.default_rules value.
1803 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1804 is "accepting", then only mark the accepting state as
1806 (initialize_LA): Tell state_lookahead_tokens_count whether
1807 lr.default_rules is "accepting".
1808 * src/tables.c (action_row): If lr.default_rules is not "all",
1809 then disable default rules in inconsistent states.
1810 * src/print.c (print_reductions): Use this opportunity to
1811 perform some assertions about whether lr.default_rules was
1813 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1814 helps with checking the parser tables for a grammar.
1815 * tests/input.at (%define lr.default_rules invalid values): New
1817 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1818 AT_TEST_TABLES_AND_PARSE.
1819 (`no %define lr.default_rules'): New test group generated by
1820 AT_TEST_LR_DEFAULT_RULES.
1821 (`%define lr.default_rules "all"'): Likewise.
1822 (`%define lr.default_rules "consistent"'): Likewise.
1823 (`%define lr.default_rules "accepting"'): Likewise.
1825 2009-04-20 Akim Demaille <demaille@gostai.com>
1829 2009-04-20 Akim Demaille <demaille@gostai.com>
1832 * src/output.c (token_definitions_output): Use symbol_id_get
1833 instead of duplicating its logic.
1834 * TODO (YYERRCODE): Extend.
1836 2009-04-20 Akim Demaille <demaille@gostai.com>
1838 variables: prefer error-verbose to error_verbose.
1839 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1840 instead of error_verbose.
1841 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1843 * doc/bison.texinfo: Promote %define error-verbose instead of
1845 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1847 2009-04-15 Akim Demaille <demaille@gostai.com>
1849 variables: accept dashes.
1850 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1852 * src/scan-gram.l ({id}): Also accept dashes after the initial
1854 ({directive}): Use {id}.
1855 * src/parse-gram.y: Comment and formatting changes.
1856 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1858 * src/complain.h, src/complain.c (yacc_at): New.
1859 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1861 * src/output.c (token_definitions_output): Do not #define token
1864 2009-04-20 Akim Demaille <demaille@gostai.com>
1866 Consistently refer to Yacc, not YACC.
1867 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1869 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1871 Pacify make maintainer-check-posix.
1872 * tests/input.at (%define, --define): Move bison command-line
1873 options before grammar file name.
1875 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1877 Document semicolon warnings.
1880 2009-04-14 Akim Demaille <demaille@gostai.com>
1882 variables: use `parse.assert' instead of `assert'.
1883 * TODO (assert): Remove.
1884 * data/bison.m4 (b4_assert_if): Replace with...
1885 (b4_parse_assert_if): this.
1886 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1887 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1889 2009-04-14 Akim Demaille <demaille@gostai.com>
1891 variables: use `parse.trace' instead of `debug'.
1892 * src/getargs.c (getargs): Map -t to %define trace.parse.
1893 * src/scan-gram.l (%debug): Map to %define trace.parse.
1894 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1895 names to `_' in macro names.
1896 (b4_debug_if): Replace with...
1897 (b4_parse_trace_if): this.
1898 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1899 * data/yacc.c: Adjust.
1900 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1901 Use @code to label the variable list.
1902 Document the variable parse.trace.
1903 (Tracing): Promote the parse.trace variable.
1904 * TODO: %printer is not documented.
1906 2009-04-14 Akim Demaille <demaille@gostai.com>
1909 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1910 (Table of Symbols): Remove duplicate entry for %debug.
1912 2009-04-10 Eric Blake <ebb9@byu.net>
1914 submodules: update to latest
1915 * submodules/autoconf: Use latest upstream Autoconf.
1917 2009-04-06 Eric Blake <ebb9@byu.net>
1919 Work around autoconf 2.63b bug in testsuite.
1920 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1921 autoconf bug related to # in test.
1923 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1925 * NEWS (2.5): New section. Describe new -D/--define feature.
1927 2009-04-06 Akim Demaille <demaille@gostai.com>
1930 * src/parse-gram.h, src/parse-gram.c: Regen.
1932 2009-04-06 Akim Demaille <demaille@gostai.com>
1934 rename muscle_tab.* as muscle-tab.* for consistency.
1935 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1936 * src/muscle-tab.h, src/muscle-tab.c: these.
1937 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1938 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1940 2009-04-06 Akim Demaille <demaille@gostai.com>
1942 Makefile: introduce $(BISON).
1943 * src/local.mk (BISON): New.
1946 2009-04-06 Akim Demaille <demaille@gostai.com>
1948 parser: handle %locations as %define locations.
1949 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1950 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1951 to set "locations" to true.
1952 * src/output.c (prepare): Don't output "locations".
1953 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1954 * src/parse-gram.y: It's no longer a token.
1956 * data/bison.m4 (b4_locations_if): Define it with
1957 b4_percent_define_if_define.
1958 * data/c.m4, data/glr.cc: Adjust.
1960 2009-04-06 Akim Demaille <demaille@gostai.com>
1963 * src/parse-gram.c: Regen.
1965 2009-04-06 Akim Demaille <demaille@gostai.com>
1967 muscle: factor the handling of obsolete of obsolete directives.
1968 Suggested by Joel E. Denny.
1970 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1971 New, extracted from...
1972 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1974 (prologue_declaration: "%<flag>"): Use
1975 muscle_percent_define_ensure.
1976 (%error-verbose, %pure-parser): No longer tokens.
1977 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1979 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1981 Fix options documentation.
1982 * build-aux/cross-options.pl: As in --help output, write optional
1983 arguments as [=ARG] not =[ARG].
1984 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1986 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1988 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1989 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1990 requirements for a correct m4 are stricter.
1991 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1992 * configure.ac: Update to use AC_PROG_GNU_M4.
1993 Reported by Eric Blake.
1995 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1997 Help with updating web manual.
1998 * HACKING: Incorporate instructions from gnulib/doc/README.
1999 * bootstrap.conf (gnulib_modules): Add gendocs.
2001 2009-04-03 Akim Demaille <demaille@gostai.com>
2004 * src/parse-gram.h, src/parse-gram.c: Regen.
2006 2009-04-03 Akim Demaille <demaille@gostai.com>
2008 Factor %FLAG at scan level.
2009 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2010 definitions and associated rules, replaced by....
2011 (PERCENT_FLAG): this new token type, and rule.
2012 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2013 Use it for %debug and %error-verbose.
2015 2009-04-03 Akim Demaille <demaille@gostai.com>
2018 * src/parse-gram.h, src/parse-gram.c: Regen.
2020 2009-04-03 Akim Demaille <demaille@gostai.com>
2022 Treat %debug as %define debug.
2023 * data/bison.m4 (b4_debug_if): New.
2024 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2025 * data/lalr1.java: Use it instead of b4_debug_flag.
2026 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2027 * src/output.c (prepare): Don't output it.
2028 * src/parse-gram.y: Treat %debug as %define debug.
2030 2009-04-03 Akim Demaille <demaille@gostai.com>
2032 Treat %error-verbose as %define error_verbose.
2033 This allows to pass -Derror_verbose on the command line. Better
2034 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2035 ERROR_VERBOSE being defined as false or true.
2036 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2037 on b4_percent_define_ifdef, for does not check the defined value,
2038 but only whether the symbol is defined, rely on
2039 b4_percent_define_flag_if, so that a value of "false" is processed
2041 If not defined, define the flag to "false".
2042 (b4_error_verbose_if): New.
2043 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2044 b4_error_verbose_flag.
2045 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2046 * src/output.c (prepare): Don't output it.
2047 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2049 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2051 Fix strange %define locations for default values.
2052 Reported by Akim Demaille at
2053 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2054 and discussed again starting at
2055 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2056 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2057 because location information is bogus.
2058 Use angle brackets to delimit fake file name because square brackets
2059 look like underexpanded m4. Choose a better fake file name.
2060 Use negative line numbers.
2061 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2062 * src/location.c (location_print): If line for a boundary is negative,
2063 only print that boundary's file name.
2064 * src/location.h: Document that.
2065 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2066 defaults): Update output.
2068 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2070 Pacify ./configure --enable-gcc-warnings.
2071 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
2072 in lib won't compile with it.
2073 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
2075 2009-03-31 Akim Demaille <demaille@gostai.com>
2077 bootstrap: --help to stdout.
2078 * bootstrap (usage): Don't send --help to stderr.
2079 Use a here doc instead of a long string.
2081 2009-03-31 Akim Demaille <demaille@gostai.com>
2083 bootstrap: README-hacking no longer exists
2084 * bootstrap (checkout_only_file): Set to HACKING.
2086 2009-03-26 Akim Demaille <demaille@gostai.com>
2088 doc: merge HACKING and README-hacking.
2089 Two files is confusing.
2090 Reported by Alexandre Duret-Lutz.
2092 * README-hacking: Merge into...
2093 * HACKING (Working from the repository): here.
2095 2009-03-26 Akim Demaille <demaille@gostai.com>
2097 doc: update README-hacking.
2098 * README-hacking: We now use git and git submodules.
2099 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2101 2009-03-26 Akim Demaille <demaille@gostai.com>
2103 lalr1.cc: avoid GCC 4.3 warnings.
2104 GCC 4.3 now warns about "a || b && c" and asks for explicit
2106 Reported by Alexandre Duret-Lutz.
2107 * data/location.cc: Update copyright years.
2108 (Position::operator==): Use parens to make precedence explicit.
2109 Compare lines and columns first, as they are more likely to be
2110 different, and they are faster to compare.
2112 2009-03-26 Akim Demaille <demaille@gostai.com>
2115 * gnulib: Update to latest.
2116 * src/local.mk (AM_CFLAGS): Move to...
2117 * Makefile.am: here.
2118 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2121 2009-03-02 Akim Demaille <demaille@gostai.com>
2125 2009-03-02 Akim Demaille <demaille@gostai.com>
2127 Share b4_yytranslate_define.
2128 * data/lalr1.cc (b4_yytranslate_define): Move to...
2129 * data/c++.m4: here.
2131 2009-03-02 Akim Demaille <demaille@gostai.com>
2133 Use locations in the variant example.
2134 Yes, this obfuscates the point of this example, variants only.
2135 But glr.cc cannot work (yet?) without locations. This change
2136 makes it easier to use this example with glr.cc.
2138 * examples/variant.yy (assert): %define it.
2139 (locations): Request them.
2140 (yylex): Bind the location to the stage.
2142 2009-03-02 Akim Demaille <demaille@gostai.com>
2144 Dub make_TOKEN as a public type interface.
2145 * data/c++.m4 (b4_symbol_constructor_declare)
2146 (b4_symbol_constructor_define): New empty stubs.
2147 (b4_public_types_declare, b4_public_types_define): Use them.
2148 * data/lalr1.cc (b4_symbol_constructor_declare)
2149 (b4_symbol_constructor_declare_)
2150 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2152 * data/variant.hh: here.
2153 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2155 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2156 b4_symbol_constructor_declare, as it is now done by
2157 b4_public_types_define and b4_public_types_declare.
2159 2009-03-02 Akim Demaille <demaille@gostai.com>
2161 Coding style changes.
2162 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2163 (b4_symbol_constructor_declarations)
2164 (b4_symbol_constructor_definition_)
2165 (b4_symbol_constructor_definitions)
2166 (b4_yytranslate_definition): Rename as...
2167 (b4_symbol_constructor_declare_)
2168 (b4_symbol_constructor_declare)
2169 (b4_symbol_constructor_define_)
2170 (b4_symbol_constructor_define)
2171 (b4_yytranslate_define): these.
2172 * data/variant.hh (b4_variant_definition): Rename as...
2173 (b4_variant_define): this.
2175 2009-03-02 Akim Demaille <demaille@gostai.com>
2177 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2178 * data/bison.m4 (b4_percent_define_if_define): New.
2179 * data/c++.m4 (b4_variant_if): Move to...
2180 * data/bison.m4: Here, using b4_percent_define_if_define.
2181 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2182 * data/bison.m4: Here, using b4_percent_define_if_define.
2184 2009-03-02 Akim Demaille <demaille@gostai.com>
2186 Dub symbol_type_base as a public type.
2187 * data/c++.m4 (b4_public_types_declare): Now define
2188 symbol_type_base and symbol_type.
2189 (b4_public_types_define): New.
2190 In both cases, the definitions are taken verbatim from lalr1.cc.
2191 * data/lalr1.cc: Adjust.
2193 2009-03-02 Akim Demaille <demaille@gostai.com>
2195 b4_public_types_declare.
2196 * data/c++.m4 (b4_public_types_declare): New.
2197 * data/glr.cc, data/lalr1.cc: Use it.
2199 2009-03-02 Akim Demaille <demaille@gostai.com>
2201 b4_semantic_type_declare.
2202 * data/c++.m4 (b4_semantic_type_declare): New.
2203 Factors and generalizes what was in glr.cc and lalr1.cc.
2204 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2206 * data/lalr1.cc, data/glr.cc: Use it.
2208 2009-02-26 Akim Demaille <demaille@gostai.com>
2211 * gnulib: Upgrade from master.
2212 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2215 2009-02-25 Akim Demaille <demaille@gostai.com>
2217 Remove useless arguments.
2218 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2221 2009-02-25 Akim Demaille <demaille@gostai.com>
2224 * data/lalr1.cc: here.
2226 2009-02-25 Akim Demaille <demaille@gostai.com>
2228 Fix glr.cc's debug level handling.
2229 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2230 glr.c which is used.
2231 (debug_level, set_debug_level): Adjust.
2233 2009-02-25 Akim Demaille <demaille@gostai.com>
2236 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2238 2009-02-25 Akim Demaille <demaille@gostai.com>
2241 * etc/bench.pl.in (generate_grammar_list): Consitently use
2242 location_type, not yy::location.
2244 2009-02-25 Akim Demaille <demaille@gostai.com>
2247 * data/lalr1.cc: here.
2249 2009-02-19 Akim Demaille <demaille@gostai.com>
2251 Make yyparser::error public.
2252 * data/lalr1.cc: here.
2253 There is no good reason to keep it private (and it is convenient
2254 to use it from the scanner for instance). It is already public in
2257 2009-02-19 Akim Demaille <demaille@gostai.com>
2260 * data/glr.cc: here.
2262 2009-02-19 Akim Demaille <demaille@gostai.com>
2264 Remove trailing blanks.
2265 The epilogue has its own ending \n, no need to add another.
2267 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2269 * data/glr.cc: dnl when extending the epilogue.
2270 Remove stray "private:".
2272 2009-02-19 Akim Demaille <demaille@gostai.com>
2275 * data/c.m4 (b4_c_function_decl): Here.
2277 2009-02-19 Akim Demaille <demaille@gostai.com>
2280 * data/lalr1.cc: here.
2282 2009-02-19 Akim Demaille <demaille@gostai.com>
2285 * data/variant.hh: New, extracted from...
2286 * data/lalr1.cc: here.
2288 * data/local.mk: Adjust.
2290 2009-02-19 Akim Demaille <demaille@gostai.com>
2292 Extract stack.hh from lalr1.cc.
2293 * data/stack.hh: New.
2294 * data/lalr1.cc: Extract from here.
2295 * data/local.mk: Adjust.
2297 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2299 Add reminder about uploading public key to keys.gnupg.net.
2300 * HACKING (Release Procedure): Here.
2302 2009-01-28 Akim Demaille <demaille@gostai.com>
2304 * NEWS: Update information about 2.4.1 and 2.4.2.
2306 2008-11-04 Akim Demaille <demaille@gostai.com>
2309 * NEWS: Use more outline-mode markup.
2310 Suggested by Jim Meyering.
2312 2009-01-08 Akim Demaille <demaille@gostai.com>
2314 Fix grep portability issues.
2315 Grep on Solaris does not support -q.
2316 Reported by Summum Bonum.
2318 * NEWS: Add a stub for 2.4.2.
2319 * THANKS: Add Summum Bonum.
2320 * tests/atlocal.in (EGREP): New.
2321 (CC, CXX, XSLTPROC): Make it possible to override them via
2323 * tests/java.at: Use $EGREP instead of egrep.
2324 Use AT_CHECK's ignore instead of grep's -q.
2326 2008-12-11 Akim Demaille <demaille@gostai.com>
2328 Pass the token type to yysyntax_error.
2329 * data/yacc.c (yysyntax_error): Take the transated token instead
2334 2008-12-11 Akim Demaille <demaille@gostai.com>
2337 * data/glr.c: Formatting changes.
2339 2008-12-11 Akim Demaille <demaille@gostai.com>
2341 Propagate i18n changes into glr.c.
2343 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2344 building the error message format dynamically.
2345 * data/lalr1.java: Formatting changes.
2347 2008-12-11 Akim Demaille <demaille@gostai.com>
2350 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2351 Solves problems when top_srcdir is an absolute path.
2352 Suggested by Eric Blake.
2353 * configure.ac: Require Autoconf 2.62.
2355 2008-12-11 Akim Demaille <demaille@gostai.com>
2357 Simplify the i18n of the error messages.
2358 * data/lalr1.cc: Comment changes.
2359 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2360 lalr1.cc instead of building dynamically the format string.
2362 2008-12-08 Akim Demaille <demaille@gostai.com>
2364 Fix portability issue in the test suite.
2365 * tests/local.at (AT_MATCHES_CHECK): New.
2366 Based on Perl instead of Sed. Sed has too many portability
2367 pitfalls, not ever Sed is GNU Sed.
2368 * tests/actions.at (Fix user actions without a trailing semicolon):
2371 2008-12-08 Akim Demaille <demaille@gostai.com>
2374 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2376 2008-12-08 Akim Demaille <demaille@gostai.com>
2378 Install autoconf as a submodule to get m4sugar.
2379 * .gitmodules: Add submodules/autoconf.
2380 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2381 submodules/autoconf.
2383 2008-12-08 Akim Demaille <demaille@gostai.com>
2385 Test token.prefix in all the skeletons.
2386 * data/java.m4 (b4_token_enum): Use the token.prefix.
2387 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2388 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2389 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2390 * tests/java.at: Comment changes.
2391 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2392 (Java parser class and package names): Add token.prefix check.
2394 2008-12-08 Akim Demaille <demaille@gostai.com>
2396 Fix regeneration of atconfig.
2397 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2398 remove it: now that there is no tests/Makefile.am, the top-level
2399 Makefile properly updates atconfig when needed.
2401 2008-12-07 Di-an Jan <dianj@freeshell.org>
2403 Implement the FIXME that ends an user action with a semicolon
2404 if it seems necessary.
2405 * src/scan-code.l (flex rules section): Flag cpp directive from
2406 any `#' to the first unescaped end-of-line. Semicolon is not
2407 needed after `;', `{', '}', or cpp directives and is needed after
2408 any other token (whitespaces and comments have no effect).
2409 * tests/actions.at (Fix user actions without a trailing semicolon):
2411 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2412 to make user actions complete statements.
2413 Adjust column numbers in error messages.
2414 * tests/regression.at (Fix user actions without a trailing semicolon):
2415 Remove. Covered by new test.
2417 2008-12-07 Akim Demaille <demaille@gostai.com>
2420 * gnulib: Update from master.
2422 2008-12-05 Eric Blake <ebb9@byu.net>
2424 Avoid compiler warning.
2425 * src/output.c (muscle_insert_item_number_table): Delete unused
2428 2008-12-02 Eric Blake <ebb9@byu.net>
2430 Build testsuite with newer autoconf.
2431 * tests/output.at (m4_expand): Don't override in newer autoconf,
2432 where the underlying implementation changed.
2433 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2434 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2435 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2436 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2437 since some of them contain unbalanced ')'.
2439 2008-12-01 Akim Demaille <demaille@gostai.com>
2441 Use b4_symbol for printers and destructors everywhere.
2442 * data/bison.m4 (b4_symbol_action_location): New.
2443 * data/c.m4 (b4_symbol_actions): Remove.
2444 Adjust all callers to use by b4_symbol_foreach and the corresponding
2445 b4_symbol_printer/destructor macro.
2446 * data/glr.cc: Adjust.
2447 * data/lalr1.java: Adjust the %destructor sanity check.
2448 * src/output.c (symbol_code_props_output): Remove, we no longer
2449 need the b4_symbol_printers/destructors tables.
2451 2008-12-01 Akim Demaille <demaille@gostai.com>
2453 Use b4_symbol_case_.
2454 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2457 2008-12-01 Akim Demaille <demaille@gostai.com>
2459 Move b4_symbol based macro to bison.m4.
2460 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2461 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2462 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2463 (b4_type_foreach): Move to...
2464 * data/bison.m4: Here.
2465 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2466 b4_symbol_value_template instead of b4_symbol_value.
2468 2008-12-01 Akim Demaille <demaille@gostai.com>
2470 b4_symbol/type_foreach.
2471 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2474 2008-12-01 Akim Demaille <demaille@gostai.com>
2476 Use the symbol properties to output the printer/destructor for lalr1.cc.
2477 Instead of defining complex list of tuples to define various
2478 properties of the symbols, we now prefer to define symbols as
2479 "structs" in m4: using the symbol key (its number), and the
2480 property name, b4_symbol gives it value. Use this to handle
2481 destructors and printers.
2483 * src/output.c (CODE_PROP): New.
2484 (prepare_symbol_definitions): Use it to define the printer and
2485 destructor related attributes of the symbols.
2486 * data/lalr1.cc (b4_symbol_actions): Rename as...
2487 (b4_symbol_action): this.
2488 Use b4_symbol instead of 6 arguments.
2489 (b4_symbol_printer, b4_symbol_destructor): New.
2490 Use them instead of b4_symbol_actions.
2492 2008-12-01 Akim Demaille <demaille@gostai.com>
2494 Avoid capturing variables too easily.
2495 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2496 v__ and p__ instead of v and p.
2498 2008-12-01 Akim Demaille <demaille@gostai.com>
2500 Remove spurious empty line before syncline.
2501 * data/bison.m4 (b4_syncline): Don't output an empty line before
2504 2008-11-26 Akim Demaille <demaille@gostai.com>
2506 Convert lib/Makefile.am into lib/local.mk.
2507 The real problem is rather gnulib.mk, which itself is extracted
2508 from a Makefile.am that gnulib expects to the "recursive". The
2509 tool prefix-gnulib-mk converts such a gnulib.mk to be
2510 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2512 * etc/prefix-gnulib-mk: New.
2513 * bootstrap (slurp): Use it to convert further gnulib.mk.
2514 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2516 * lib/Makefile.am: Rename as...
2517 * lib/local.mk: this.
2518 Adjust to be prefixed.
2519 * Makefile.am, configure.ac: Adjust.
2520 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2522 2008-11-26 Akim Demaille <demaille@gostai.com>
2525 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2526 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2527 Reported by Eric Blake.
2529 2008-11-26 Akim Demaille <demaille@gostai.com>
2531 Use b4_parser_tables_define in glr.cc.
2532 * data/glr.c: Use b4_parser_tables_define instead of defining the
2533 (deterministic integral) tables by hand.
2535 2008-11-26 Akim Demaille <demaille@gostai.com>
2537 Use b4_parser_tables_define in Java.
2538 * data/java.m4 (b4_typed_parser_table): Rename as...
2539 (b4_typed_parser_table_define): this, for consistency.
2540 Accept a comment as $4.
2542 (b4_integral_parser_table): Rename as...
2543 (b4_integral_parser_table_define): this.
2544 * data/lalr1.java: Adjust all uses.
2545 Use b4_parser_tables_define instead of generation by hand.
2547 2008-11-26 Akim Demaille <demaille@gostai.com>
2549 Prepare the convergence bw C style and Java table generation.
2550 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2551 (b4_tables_define): Rename as...
2552 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2553 (b4_parser_tables_define): these.
2554 * data/c.m4 (b4_table_define): Rename as...
2555 (b4_integral_parser_table_define): this.
2556 * data/lalr1.cc: Adjust.
2557 (b4_table_define, b4_table_declare): Rename as...
2558 (b4_integral_parser_table_define)
2559 (b4_integral_parser_table_declare): these.
2560 (yyrline_): Move the comment where it is actually used.
2561 * data/yacc.c: Adjust.
2562 (yyrline): Use b4_integral_parser_table_define.
2564 2008-11-26 Akim Demaille <demaille@gostai.com>
2567 * src/parse-gram.h, src/parse-gram.c: Regen.
2569 2008-11-26 Akim Demaille <demaille@gostai.com>
2571 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2572 * data/lalr1.cc (b4_tables_map): Move to...
2573 * data/bison.m4: here.
2574 Update the comment for yytable during the flight.
2575 (b4_tables_declare, b4_tables_define): New.
2576 * data/lalr1.cc: Use them.
2577 * data/c.m4 (b4_table_define): New.
2578 * data/yacc.c: Use b4_tables_define instead of output the tables
2580 * tests/regression.at (Web2c Actions): Adjust the expected output,
2581 the order of the tables changed.
2583 2008-11-26 Akim Demaille <demaille@gostai.com>
2585 Get rid of (yy)rhs and (yy)prhs.
2586 These tables are no longer needed in the parsers, and they don't seem to
2587 be useful. They are not documented either.
2589 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2590 Adjust the computation of (yy)r2.
2592 2008-11-26 Akim Demaille <demaille@gostai.com>
2594 Rule length is unsigned.
2595 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2597 2008-11-26 Akim Demaille <demaille@gostai.com>
2599 Get rid of lalr1-split.cc.
2600 It was no longer maintainer.
2602 * data/lalr1-split.cc: Remove.
2603 * etc/bench.pl.in (bench_fusion_parser): Remove.
2606 2008-11-26 Akim Demaille <demaille@gostai.com>
2608 Use yy* consistently.
2609 * data/glr.c: Now that yyrhs no longer exists as a global
2610 variable, rename local "rhs" variables into "yyrhs" for
2613 2008-11-25 Akim Demaille <demaille@gostai.com>
2615 Get rid of yyrhs and yyprhs in glr.c.
2616 * data/glr.c (yyrhs, yyprhs): Remove.
2617 Instead, use the state stack and yystos.
2619 2008-11-25 Akim Demaille <demaille@gostai.com>
2622 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2623 as an Autotest keyword.
2625 2008-11-25 Akim Demaille <demaille@gostai.com>
2627 Prefer TESTSUITE_FLAGS.
2628 TESTSUITEFLAGS is barely readable.
2630 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2631 for backward compatibility.
2632 Use the former instead of the latter.
2634 2008-11-25 Akim Demaille <demaille@gostai.com>
2636 Get rid of yyrhs and yyprhs in larl1.java.
2637 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2638 (yy_reduce_print): Rather, use yystos_ and the state stack.
2640 2008-11-25 Akim Demaille <demaille@gostai.com>
2644 2008-11-25 Akim Demaille <demaille@gostai.com>
2646 Get rid of yyrhs and yyprhs in yacc.c.
2647 They were used to get the symbol types, given a rule number, when
2648 displaying the top of the stack before a reduction. But the
2649 symbol type is available from the state stack. This has two be
2650 benefits: two tables less in the parser (making it smaller), and a
2651 more consistent use of the three stacks which will help to fuse
2654 * data/yacc.c (yyprhs, yyrhs): Remove.
2655 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2656 (yy_reduce_print): Take yyssp as argument.
2657 Use it, together with yystos, to get the symbol type.
2658 * tests/regression.at (Web2c Report): Remove these tables from the
2661 2008-11-25 Akim Demaille <demaille@gostai.com>
2664 The point is to factor the generation of the tables across skeletons.
2665 This is language dependant.
2667 * data/c.m4 (b4_comment_): New.
2668 Should be usable to define how to generate tables independently of
2670 (b4_c_comment): New.
2671 (b4_comment): Bounce to b4_c_comment.
2672 Now support $2 = [PREFIX] for indentation.
2673 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2674 there is no comment.
2675 Indent it properly when there is one.
2676 Output the ending semicolon.
2677 (b4_table_define): Space changes.
2678 Output the ending semicolon.
2679 (b4_tables_map): New.
2680 Use it twice instead of declaring and defining the (integral)
2683 2008-11-25 Akim Demaille <demaille@gostai.com>
2686 * data/lalr1.cc (b4_table_declare): New.
2687 Use it to declare the tables defined with b4_table_define.
2688 (b4_table_define): Declare a third arg to match b4_table_declare
2690 Move all the comments around invocations of b4_table_define into
2691 the invocations itselves.
2692 Move things around to have the order for declarations and
2695 2008-11-25 Akim Demaille <demaille@gostai.com>
2698 * data/lalr1.java: here.
2700 2008-11-25 Akim Demaille <demaille@gostai.com>
2702 b4_args is more general than only C++.
2703 * data/lalr1.cc (b4_args, _b4_args): Move to...
2704 * data/bison.m4: here.
2706 2008-11-21 Di-an Jan <dianj@freeshell.org>
2708 Implement no-XXX arguments for --warnings, --report, --trace.
2709 * src/getargs.c (flags_argmatch): Handles no-XXX.
2710 Fix typo in doxygen comment.
2712 2008-11-21 Akim Demaille <demaille@gostai.com>
2714 Display the changes in cross-options.texi.
2715 * build-aux/cross-options.pl ($sep): New, to separate items.
2716 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2719 2008-11-20 Di-an Jan <dianj@freeshell.org>
2721 Improves options in the manual.
2722 * doc/bison.texinfo (-g, -x): Add space before argument.
2723 (Option Cross Key): Implement FIXME: listing directives also.
2724 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2725 (Short Option): Special case -d. Put arguments inside @option.
2726 (Bison Directive): Add column, automatically extracted from
2727 src/scan-gram.l (actual name passed as the first argument)
2728 with special case for %define.
2729 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2730 to build-aux/cross-options.pl.
2731 * src/getargs.c (usage): Document limitations of cross-options.pl.
2732 * src/scan-gram.l: Likewise.
2734 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2736 Fix unexpanded macros in GLR defines file.
2737 Reported by Csaba Raduly at
2738 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2739 * THANKS (Csaba Raduly): Add.
2740 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2741 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2742 lexer in a separate module that includes the defines file.
2743 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2745 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2746 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2747 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2748 (AT_DATA_SOURCE_PROLOGUE): New.
2749 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2750 (AT_DATA_SOURCE): New.
2751 (AT_FULL_COMPILE): Extend to support an additional source file.
2753 2008-11-18 Akim Demaille <demaille@gostai.com>
2756 * TODO: More short term issues.
2758 2008-11-18 Akim Demaille <demaille@gostai.com>
2761 * src/parse-gram.h, src/parse-gram.c: Regen.
2763 2008-11-18 Akim Demaille <demaille@gostai.com>
2765 Use b4_subtract where possible.
2766 * data/lalr1.cc (b4_subtract): Move to...
2767 * data/bison.m4: here.
2768 * data/glr.c (b4_rhs_data): Use it.
2769 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2771 2008-11-18 Akim Demaille <demaille@gostai.com>
2773 Remove incorrect mode specification.
2774 * data/glr.cc: Don't pretend it's C code.
2776 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2778 Simplify last patch slightly.
2779 * src/getargs.c (getargs): Here.
2781 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2783 Fix last warning from --enable-gcc-warnings.
2784 * src/getargs.c (getargs): Don't assign const address to non-const
2787 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2789 Don't let maintainer-*-check targets force a version update.
2790 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2793 2008-11-17 Di-an Jan <dianj@freeshell.org>
2795 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2796 Align menus. Adjust word wrapping. Use node names for menu names.
2797 (Examples): Don't abbreviate node names.
2798 (LocalWords): Remove abbreviations.
2799 (Copying): Make description a sentence.
2800 (Java Action Features): Remove period to match the rest of menu.
2802 2008-11-17 Di-an Jan <dianj@freeshell.org>
2804 Handles several --enable-gcc-warnings.
2805 * src/getargs.c (command_line_location): Set parameters to void.
2806 * src/output.c (symbol_type_name_cmp): Make static.
2807 (symbols_by_type_name): Set parameters to void.
2808 (symbol_definitions_output): Remove unused parameter. Rename as...
2809 (prepare_symbol_definitions): this.
2810 (muscles_output): Move symbol_definitions_output to...
2811 (output): here as prepare_symbol_definitions.
2812 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
2813 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
2815 2008-11-17 Di-an Jan <dianj@freeshell.org>
2817 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2818 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2820 2008-11-16 Akim Demaille <demaille@gostai.com>
2822 Add missing $(EXEEXT).
2823 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2824 "src/bison$(EXEEXT)".
2825 Reported by Di-an Jan.
2827 2008-11-15 Akim Demaille <demaille@gostai.com>
2831 2008-11-15 Akim Demaille <demaille@gostai.com>
2834 * tests/input.at: here.
2836 2008-11-15 Akim Demaille <demaille@gostai.com>
2838 Remove duplicate header inclusion.
2841 2008-11-15 Akim Demaille <demaille@gostai.com>
2843 * src/parse-gram.h, src/parse-gram.c: Regen.
2845 2008-11-15 Akim Demaille <demaille@gostai.com>
2847 Support parametric types.
2849 There are two issues to handle: first scanning nested angle
2850 bracket pairs to support types such as std::pair< std::string,
2851 std::list<std::string> > >.
2853 Another issue is to address idiosyncracies of C++: do not glue two
2854 closing angle brackets together (otherwise it's operator>>), and
2855 avoid sticking blindly a TYPE to the opening <, as it can result
2856 in '<:' which is a digraph for '['.
2858 * src/scan-gram.l (brace_level): Rename as...
2861 Implement support for complex tags.
2864 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2865 (b4_symbol_variant): Leave space around types as parameters.
2866 * examples/variant.yy: Use nested template types and leading ::.
2867 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2869 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2870 * tests/c++.at: Test parametric types.
2872 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2875 This is not sufficient, but we test at least that the make_SYMBOL
2876 interface is not affected by token.prefix. A more general test
2877 will be implemented when the support of token.prefix is generalized
2880 * tests/c++.at: One more variant test, using token.prefix.
2882 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2884 Test the make_TOKEN interface.
2885 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2886 Factor the common code in yylex.
2887 Use it to test "%define lex_symbol".
2889 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2893 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2895 Simplify code for variants bench marks.
2896 * etc/bench.pl.in (&generate_grammar_list): Define and use
2898 Factor the common code in yylex.
2900 2008-11-15 Akim Demaille <demaille@gostai.com>
2902 Better error message.
2903 * bootstrap (find_tool): Fix the error message.
2905 2008-11-15 Akim Demaille <demaille@gostai.com>
2907 Update variant.yy to newest interface.
2908 * examples/variant.yy: Define lex_symbol.
2911 2008-11-15 Akim Demaille <demaille@gostai.com>
2913 Don't use locations in variant.yy.
2914 * examples/variant.yy: Adjust to not using locations.
2916 2008-11-15 Akim Demaille <demaille@gostai.com>
2919 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2920 comments for the license.
2922 2008-11-15 Akim Demaille <demaille@gostai.com>
2924 Remove tests/Makefile.am.
2925 * tests/Makefile.am: Rename as...
2926 * tests/local.mk: this.
2927 * Makefile.am, configure.ac: Adjust.
2928 * Makefile.am (DISTCLEANFILES): Define.
2929 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2930 Remove, we no longer need to bounce to the real targets.
2932 2008-11-15 Akim Demaille <demaille@gostai.com>
2936 2008-11-15 Akim Demaille <demaille@gostai.com>
2939 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2940 * djgpp/local.mk: this new file.
2942 2008-11-15 Akim Demaille <demaille@gostai.com>
2944 Remove doc/Makefile.am.
2945 * doc/Makefile.am: Rename as...
2946 * doc/local.mk: this.
2948 * Makefile.am, configure.ac: Adjust.
2949 * Makefile.am (MOSTLYCLEANFILES): New.
2950 * src/local.mk: Adjust.
2952 2008-11-15 Akim Demaille <demaille@gostai.com>
2954 Move sc_tight_scope into maint.mk.
2955 It does not work, and I don't know how it was supposed to work: it
2956 seems to be looking for sources in the build tree. I just moved
2957 it at a better place, fixing it is still required.
2959 * src/local.mk (echo): Remove.
2960 (sc_tight_scope): Move to...
2963 2008-11-15 Akim Demaille <demaille@gostai.com>
2966 * src/parse-gram.h, src/parse-gram.h: Regen.
2968 2008-11-15 Akim Demaille <demaille@gostai.com>
2970 Remove src/Makefile.am.
2971 * src/Makefile.am: Rename as...
2972 * src/local.mk: this.
2973 Prefix all the paths with src/.
2974 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2975 (AM_CPPFLAGS): Find find in builddir/src.
2976 (YACC): Move the flags into...
2978 * maint.mk (sc_tight_scope): Disable.
2979 It used to bounce to the version in src/Makefile.am which is now
2980 part of this very Makefile.
2981 * Makefile.am, configure.ac: Adjust.
2982 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2983 include "..." to find files "here": we are no longer in src/, so
2984 qualify the includes with src/.
2985 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2987 (.x.1): Adjust to be able to create src/foo from the top level
2988 Makefile, instead of going bounce to src/Makefile the creation of
2991 2008-11-15 Akim Demaille <demaille@gostai.com>
2993 Remove useless variable.
2994 * doc/Makefile.am (srcsrcdir): Remove.
2996 2008-11-15 Akim Demaille <demaille@gostai.com>
2998 Remove data/Makefile.am.
2999 * data/Makefile.am: Rename as...
3000 * data/local.mk: this.
3002 * Makefile.am, configure.ac: Adjust.
3004 2008-11-15 Akim Demaille <demaille@gostai.com>
3006 Remove etc/Makefile.am.
3007 * etc/Makefile.am: Rename as...
3008 * etc/local.mk: this.
3010 * Makefile.am, configure.ac: Adjust.
3012 2008-11-15 Akim Demaille <demaille@gostai.com>
3014 Remove examples/local.mk.
3015 examples/calc++/Makefile.am might be interesting to keep as is, since
3016 it is an example in itself.
3018 * examples/Makefile.am: Rename as...
3019 * examples/local.mk: this.
3021 * Makefile.am, configure.ac: Adjust.
3023 2008-11-15 Akim Demaille <demaille@gostai.com>
3025 Remove build-aux/Makefile.am.
3026 Recursive Makefiles are really way too slow, let's get rid of some of
3029 * build-aux/Makefile.am: Rename as...
3030 * build-aux/local.mk: this.
3032 * Makefile.am, configure.ac: Adjust.
3034 2008-11-15 Akim Demaille <demaille@gostai.com>
3036 Provide convenience constructors for locations and positions.
3037 * data/location.cc (position::position): Accept file, line and
3038 column as arguments with default values.
3039 Always qualify initial line and column literals as unsigned.
3040 (location::location): Provide convenience constructors.
3042 2008-11-15 Akim Demaille <demaille@gostai.com>
3044 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3046 Using template buys us nothing, and makes it uselessly complex to
3047 construct a symbol. Besides, it could not be generalized to other
3048 languages, while make_FOO would work in C/Java etc.
3050 * data/lalr1.cc (b4_symbol_): New.
3051 (b4_symbol): Use it.
3052 (b4_symbol_constructor_declaration_)
3053 (b4_symbol_constructor_definition_): Instead of generating
3054 specializations of an overloaded template function, just generate
3055 several functions whose names are forged from the token names
3056 without the token.prefix.
3057 (b4_symbol_constructor_declarations): Generate them for all the
3058 symbols, not just by class of symbol type, now that instead of
3059 specializing a function template by the token, we generate a
3060 function named after the token.
3061 (b4_symbol_constructor_specialization_)
3062 (b4_symbol_constructor_specializations): Remove.
3063 * etc/bench.pl.in: Adjust to this new API.
3065 2008-11-13 Akim Demaille <demaille@gostai.com>
3067 %define token.prefix.
3068 Provide a means to add a prefix to the name of the tokens as
3069 output in the generated files. Because of name clashes, it is
3070 good to have such a prefix such as TOK_ that protects from names
3071 such as EOF, FILE etc. But it clutters the grammar itself.
3073 * data/bison.m4 (token.prefix): Empty by default.
3074 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
3075 * data/lalr1.cc (b4_symbol): Ditto.
3077 2008-11-13 Akim Demaille <demaille@gostai.com>
3079 Compute at M4 time some of the subtractions.
3080 * data/lalr1.cc (b4_subtract): New.
3081 (b4_rhs_data): Use it.
3083 2008-11-13 Akim Demaille <demaille@gostai.com>
3086 This allows the user to get the type of a token returned by yylex.
3088 * data/lalr1.cc (symbol::token): New.
3089 (yytoknum_): Define when %define lex_symbol, independently of
3091 (yytoken_number_): Move into...
3092 (symbol::token): here, since that's the only use.
3093 The other one is YYPRINT which was not officially supported
3094 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3095 array under a different name (yytoknum).
3097 2008-11-13 Akim Demaille <demaille@gostai.com>
3100 * TODO (YYERRCODE): Mention the case of $undef.
3102 2008-11-13 Akim Demaille <demaille@gostai.com>
3105 * TODO (YYPRINT): New.
3107 2008-11-13 Akim Demaille <demaille@gostai.com>
3110 * data/lalr1.cc, data/yacc.c: Fix the description of the
3111 yytranslate and yytoknum tables.
3113 2008-11-13 Akim Demaille <demaille@gostai.com>
3115 Define make_symbol in the header.
3116 To reach good performances these functions should be inlined (yet
3117 this is to measure precisely). To this end they must be available
3120 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3121 location_type with the class name.
3122 Since will now be output in the header, declare "inline".
3123 No longer use b4_symbol_constructor_specializations, but
3124 b4_symbol_constructor_definitions in the header.
3125 Don't call it in the *.cc file.
3127 2008-11-13 Akim Demaille <demaille@gostai.com>
3129 Define yytranslate in the header for lex_symbol.
3130 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3131 into the header file when using %define lex_symbol.
3132 (yytranslate_): Declare inline.
3134 2008-11-13 Akim Demaille <demaille@gostai.com>
3136 Define the constructors of symbol_type in
3137 b4_symbol_constructor_definitions.
3138 The constructors are called by the make_symbol functions, which a
3139 forthcoming patch will move elsewhere. Hence the interest of
3140 putting them together.
3142 The stack_symbol_type does not need to be moved, it is used only
3145 * data/lalr1.cc: Move symbol_type and symbol_base_type
3146 constructors into...
3147 (b4_symbol_constructor_definitions): here.
3150 2008-11-13 Akim Demaille <demaille@gostai.com>
3152 Make it easier to move the definition of yytranslate_.
3153 Forthcoming changes will make it possible to use yytranslate_
3154 from outside the parser implementation file.
3156 * data/lalr1.cc (b4_yytranslate_definition): New.
3159 2008-11-13 Akim Demaille <demaille@gostai.com>
3161 Remove useless class specification.
3162 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3163 to refer to the class name to use a type defined by the class for
3164 arguments of member functions.
3166 2008-11-13 Akim Demaille <demaille@gostai.com>
3168 Finer input type for yytranslate.
3169 This patch is debatable: the tradition expects yylex to return an int
3170 which happens to correspond to token_number (which is an enum). This
3171 allows for instance to return characters (such as '*' etc.). But this
3172 goes against the stronger typing I am trying to have with the new
3173 lex interface which return a symbol_type. So in this case, feed
3174 yytranslate_ with a token_type.
3176 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3177 expect a token_type.
3179 2008-11-13 Akim Demaille <demaille@gostai.com>
3181 Honor lex-params in %define lex_symbol mode.
3182 * data/lalr1.cc: Use b4_lex_param.
3184 2008-11-13 Akim Demaille <demaille@gostai.com>
3187 * src/output.c (symbol_definitions_output): Rename symbol
3188 attributes type_name and has_type_name as type and has_type.
3189 * data/lalr1.cc: Adjust uses.
3191 2008-11-13 Akim Demaille <demaille@gostai.com>
3193 Use b4_type_names for the union type.
3194 The union used to compute the size of the variant used to iterate
3195 over the type of all the symbols, with a lot of redundancy. Now
3196 iterate over the lists of symbols having the same type-name.
3198 * data/lalr1.cc (b4_char_sizeof_): New.
3199 (b4_char_sizeof): Use it.
3200 Adjust to be called with a list of numbers instead of a single
3202 Adjust its caller for new-line issues.
3204 2008-11-13 Akim Demaille <demaille@gostai.com>
3206 Define the "identifier" of a symbol.
3207 Symbols may have several string representations, for instance if
3208 they have an alias. What I call its "id" is a string that can be
3209 used as an identifier. May not exist.
3211 Currently the symbols which have the "tag_is_id" flag set are
3212 those that don't have an alias. Look harder for the id.
3214 * src/output.c (is_identifier): Move to...
3215 * src/symtab.c (is_identifier): here.
3216 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3217 * src/output.c (symbol_definitions_output): Use it to define "id"
3219 Remove the definition of "tag_is_id".
3220 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3221 "tag_is_id" were used to produce code.
3222 We still use "tag" for documentation.
3224 2008-11-11 Akim Demaille <demaille@gostai.com>
3226 Locations are no longer required by lalr1.cc.
3227 * data/lalr1.cc (_b4_args, b4_args): New.
3228 Adjust all uses of locations to make them optional.
3229 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3230 (AT_CHECK_NAMESPACE): Check the use of locations.
3231 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3232 without locations with lalr1.cc.
3234 * tests/output.at: Check lalr1.cc with and without location
3236 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3237 Don't use locations.
3239 2008-11-11 Akim Demaille <demaille@gostai.com>
3242 * tests/local.at (AT_FULL_COMPILE): New.
3243 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3245 2008-11-11 Akim Demaille <demaille@gostai.com>
3247 Support parens in calc++.
3248 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3249 * examples/calc++/test (run): Check the expected output.
3253 2008-11-11 Akim Demaille <demaille@gostai.com>
3255 Simplify lalr1.cc since %defines is mandatory.
3256 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3258 2008-11-11 Akim Demaille <demaille@gostai.com>
3261 * TODO (yysyntax_error): New item.
3263 2008-11-11 Akim Demaille <demaille@gostai.com>
3266 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3269 2008-11-11 Akim Demaille <demaille@gostai.com>
3271 Support i18n of the parse error messages.
3272 * TODO (lalr1.cc/I18n): Remove.
3273 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3274 error messages, as done in yacc.c.
3275 Stay within the yy* pseudo namespace.
3277 2008-11-11 Akim Demaille <demaille@gostai.com>
3280 * TODO (single stack, yysyntax_error): New.
3282 2008-11-11 Akim Demaille <demaille@gostai.com>
3284 Make it possible to return a symbol_type from yylex.
3285 * data/lalr1.cc (b4_lex_symbol_if): New.
3286 (parse): When lex_symbol is defined, expected yylex to return the
3288 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3290 (bench_variant_parser): Exercise it.
3292 2008-11-11 Akim Demaille <demaille@gostai.com>
3294 Remove useless bench case.
3295 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3298 2008-11-11 Akim Demaille <demaille@gostai.com>
3300 Improve display of directives.
3301 * etc/bench.pl.in (parse_term): Don't add useless eol.
3303 2008-11-11 Akim Demaille <demaille@gostai.com>
3305 Use string_cast in the bench.
3306 * etc/bench.pl.in (generate_grammar_list): Define and use
3309 2008-11-11 Akim Demaille <demaille@gostai.com>
3311 Replace yychar with a Boolean.
3312 * data/lalr1.cc (parse::yychar): Replace by...
3313 (parse::yyempty): this.
3315 2008-11-11 Akim Demaille <demaille@gostai.com>
3320 2008-11-11 Akim Demaille <demaille@gostai.com>
3322 Let yytranslate handle the eof case.
3323 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3325 No longer expect yychar to be equal to yyeof_, rather, test the
3326 lookahead's (translated) kind.
3328 2008-11-11 Akim Demaille <demaille@gostai.com>
3330 yychar cannot be empty in yyerrlab.
3331 * TODO (yychar == yyempty_): New.
3332 * data/lalr1.cc: Remove the handling of this case.
3333 This eases forthcoming changes related to yychar and yytranslate.
3335 2008-11-11 Akim Demaille <demaille@gostai.com>
3337 Bench: syntactic sugar for %define/#define.
3338 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3339 (&bench_push_parser, bench_variant_parser): Use this feature.
3343 2008-11-11 Akim Demaille <demaille@gostai.com>
3345 Less memory pressure on the "list" bench.
3346 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3347 the values, to limit memory pressure.
3349 2008-11-11 Akim Demaille <demaille@gostai.com>
3351 Introduce make_symbol.
3352 make_symbol provides a means to construct a full symbol (kind,
3353 value, location) in a single shot. It is meant to be a Symbol
3354 constructor, parameterized by the symbol kind so that overloading
3355 would prevent incorrect kind/value pairs. Unfortunately
3356 parameterized constructors do not work well in C++ (unless the
3357 parameter also appears as an argument, which is not acceptable),
3358 hence the use of a function instead of a constructor.
3360 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3361 (b4_symbol_constructor_declarations)
3362 (b4_symbol_constructor_specialization_)
3363 (b4_symbol_constructor_specializations)
3364 (b4_symbol_constructor_definition_)
3365 (b4_symbol_constructor_definitions): New.
3366 Use them where appropriate to generate declaration, declaration of
3367 the specializations, and implementations of the templated
3368 overloaded function "make_symbol".
3369 (variant::variant): Always define a default ctor.
3370 Also provide a copy ctor.
3371 (symbol_base_type, symbol_type): New ctor overloads for value-less
3373 (symbol_type): Now public, so that functions such as yylex can use
3376 2008-11-11 Akim Demaille <demaille@gostai.com>
3378 Inform m4 whether a tag is a valid id.
3379 * src/output.c (is_identifier): New.
3380 (symbol_definitions_output): Use it to define tag_is_id.
3381 But maybe this should be done at m4 level?
3383 2008-11-11 Akim Demaille <demaille@gostai.com>
3385 Test 214 was failing: it greps with a pattern containing [ ]*
3386 which obviously meant to catch spaces and tabs, but contained only
3387 spaces. Tabulations in sources are a nuisance, so to simplify the
3388 matter, get rid of all the tabulations in the Java sources. The
3389 other skeletons will be treated equally later.
3391 * data/java.m4, data/lalr1.java: Untabify.
3392 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3393 tabulations are no longer generated.
3395 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
3397 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3398 * configure.ac: Adjust usage.
3399 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3400 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3401 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3403 2008-11-10 Di-an Jan <dianj@freeshell.org>
3405 Workaround Java's ``code too large'' problem for parser tables
3406 in most cases, by using one function per initialization.
3407 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3408 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3409 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3410 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3411 (yytname_): Use b4_typed_parser_table.
3412 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3413 ``code too large'' error.
3415 2008-11-10 Di-an Jan <dianj@freeshell.org>
3417 * NEWS: Document them.
3419 General Java skeleton improvements.
3420 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3421 using gcj < 4.3 in the testsuite, according to comments in
3422 gnulib/m4/javacomp.m4.
3423 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3424 location_type, position_type): Remove extraneous brackets from
3425 b4_percent_define_default.
3426 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3427 m4_define and m4_define_default.
3428 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3429 which marks the end of user code with appropriate syncline, like all
3430 the other skeletons.
3431 (b4_user_post_prologue): Add. Don't silently drop.
3433 (parse): Inline yylex.
3434 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3435 (%{...%}): Fix typo of %code imports.
3436 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3438 Support annotations on parser class with %define annotations.
3439 * data/lalr1.java (annotations): Add to parser class modifier.
3440 * doc/bison.texinfo (Java Parser Interface): Document
3441 %define annotations.
3442 (Java Declarations Summary): Document %define annotations.
3443 * tests/java.at (Java parser class modifiers): Test annotations.
3445 Do not generate code for %error-verbose unless requested.
3446 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3447 Make private. Make conditional on %error-verbose.
3448 (getErrorVerbose, setErrorVerbose): New.
3449 (yytnamerr_): Make conditional on %error-verbose.
3450 (yysyntax_error): Make some code conditional on %error-verbose.
3451 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3452 about %error-verbose having no effect.
3453 (getErrorVerbose, setErrorVerbose): Document.
3455 Move constants for token names to Lexer interface.
3456 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3457 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3458 (parse): Qualify EOF to Lexer.EOF.
3459 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3460 EOF and token names to Java Lexer Interface.
3461 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3463 Make yyerror public.
3464 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3465 (yyerror): Change to public. Add Javadoc comments. Use longer
3466 parameter names. Make the body rather than the declarator
3467 conditional on %locations.
3468 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3470 Allow user to add code to the constructor with %code init.
3471 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3472 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3473 Add %code init to the front of the constructor body.
3474 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3475 and %define init_throws.
3476 (Java Declarations Summary): Document %code init and
3477 %define init_throws.
3478 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3479 (Java constructor init and init_throws): Add tests.
3481 2008-11-10 Akim Demaille <demaille@gostai.com>
3484 * TODO (-D): is implemented.
3485 (associativity): Same precedence must have the same associativity.
3486 For instance, how can a * b / c be parsed if * is %left and / is
3488 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3490 2008-11-10 Akim Demaille <demaille@gostai.com>
3494 2008-11-10 Akim Demaille <demaille@gostai.com>
3496 More information about the symbols.
3497 * src/output.c (type_names_output): Document all the symbols,
3498 including those that don't have a type-name.
3499 (symbol_definitions_output): Define "is_token" and
3501 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3502 type-name, now that they are defined too in b4_type_names.
3504 2008-11-10 Akim Demaille <demaille@gostai.com>
3508 2008-11-10 Akim Demaille <demaille@gostai.com>
3510 Make parser::yytranslate static.
3511 Small speedup (1%) on the list grammar. And makes yytranslate_
3512 available in non member functions.
3514 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3517 2008-11-10 Akim Demaille <demaille@gostai.com>
3519 Avoid trailing spaces.
3520 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3521 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3522 they can be empty, and anyway this incorrectly indents the first
3525 2008-11-10 Akim Demaille <demaille@gostai.com>
3529 2008-11-10 Akim Demaille <demaille@gostai.com>
3531 Use "enum" for integral constants.
3532 This is just nicer to read, I observed no speedup.
3534 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3535 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3536 (yyuser_token_number_max_, yyundef_token_): Move into...
3537 (yytranslate_): here.
3539 2008-11-10 Akim Demaille <demaille@gostai.com>
3541 Shortcuts in bench directives.
3542 * etc/bench.pl.in (parse_dirs): New.
3544 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3545 Create the benches in "benches/".
3547 2008-11-10 Akim Demaille <demaille@gostai.com>
3550 * data/lalr1.cc: here.
3552 2008-11-10 Akim Demaille <demaille@gostai.com>
3554 Adjust verbose message to using emacs.
3555 * etc/bench.pl.in: Inform compilation-mode when we change the
3557 (generate_grammar_list): Recognize %define "variant" in addition
3560 2008-11-10 Akim Demaille <demaille@gostai.com>
3562 Classify symbols by type-name.
3563 * src/uniqstr.h (UNIQSTR_CMP): New.
3564 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3565 (type_names_output): New.
3566 (muscles_output): Use it.
3567 * data/lalr1.cc (b4_symbol_action_): Remove.
3568 (b4_symbol_case_, b4_type_action_): New.
3569 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3571 2008-11-10 Akim Demaille <demaille@gostai.com>
3573 Change the handling of the symbols in the skeletons.
3574 Before we were using tables which lines were the symbols and which
3575 columns were things like number, tag, type-name etc. It is was
3576 difficult to extend: each time a column was added, all the numbers had
3577 to be updated (you asked for colon $2, not for "tag"). Also, it was
3578 hard to filter these tables when only a subset of the symbols (say the
3579 tokens, or the nterms, or the tokens that have and external number
3580 *and* a type-name) was of interest.
3582 Now instead of monolithic tables, we define one macro per cell. For
3583 instance "b4_symbol(0, tag)" is a macro name which contents is
3584 self-decriptive. The macro "b4_symbol" provides easier access to
3587 * src/output.c (type_names_output): Remove.
3588 (symbol_numbers_output, symbol_definitions_output): New.
3589 (muscles_output): Call them.
3590 (prepare_symbols): Define b4_symbols_number.
3592 2008-11-10 Akim Demaille <demaille@gostai.com>
3595 * src/getargs.h, src/getargs.c (trace_muscle): New.
3596 (trace_types, trace_args): Support it.
3597 * src/output.c (output_skeleton): Use it.
3599 2008-11-10 Akim Demaille <demaille@gostai.com>
3602 * src/output.c (muscles_output): New, extracted from...
3603 (output_skeleton): here.
3606 2008-11-10 Akim Demaille <demaille@gostai.com>
3610 2008-11-10 Akim Demaille <demaille@gostai.com>
3612 Update the variant example.
3613 * examples/variant.yy: Formatting changes.
3616 2008-11-10 Akim Demaille <demaille@gostai.com>
3618 Support constructor with an argument.
3619 This improves the "list" bench by 2%.
3621 * data/lalr1.cc (variant::build): Add an overloaded version with
3623 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3625 2008-11-10 Akim Demaille <demaille@gostai.com>
3628 * tests/c++.at (AT_CHECK_VARIANTS): New.
3629 Use it with and without %define assert.
3631 2008-11-10 Akim Demaille <demaille@gostai.com>
3633 Add %precedence support.
3634 Unfortunately it is not possible to reuse the %prec directive. This
3635 is because to please POSIX, we do not require to end the rules with a
3636 semicolon. As a result,
3640 is ambiguous: either a rule which precedence is that of baz, or a rule,
3641 and then a declaration of the precedence of the token baz.
3643 * doc/bison.texinfo: Document %precedence.
3644 (Precedence Only): New.
3645 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3646 * src/conflicts.c (resolve_sr_conflict): Support it.
3647 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3649 * tests/calc.at: Use %precedence for NEG.
3650 * tests/conflicts.at (%precedence does not suffice)
3651 (%precedence suffices): New tests.
3653 2008-11-09 Akim Demaille <demaille@gostai.com>
3655 Make benches in a sub dirs.
3656 * etc/bench.pl.in ($dir): New.
3658 Check the use of constructors with an argument.
3659 (bench_variant_parser): Fix.
3661 2008-11-09 Akim Demaille <demaille@gostai.com>
3665 2008-11-09 Akim Demaille <demaille@gostai.com>
3669 2008-11-09 Akim Demaille <demaille@gostai.com>
3671 Require the generation of parse-gram.output.
3672 * src/Makefile.am (YACC): Pass --report=all.
3674 2008-11-09 Akim Demaille <demaille@gostai.com>
3678 2008-11-09 Akim Demaille <demaille@gostai.com>
3681 * TODO: Remove obsolete items.
3684 2008-11-09 Akim Demaille <demaille@gostai.com>
3687 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3688 (@token, $grammar, $bench): New.
3689 (generate_grammar_variant): Rename as...
3690 (generate_grammar_list): this.
3691 (generate_grammar): Adjust.
3692 (bench_grammar): Rename as...
3694 Use it in the various bench-marking routines.
3695 (-b, -g): New options.
3697 2008-11-09 Akim Demaille <demaille@gostai.com>
3699 Use a static hierarchy for symbols in the C++ parser.
3700 * data/lalr1.cc (symbol_base_type, symbol_type)
3701 (stack_symbol_type): Make it a static hierarchy.
3702 Adjust dependencies.
3704 2008-11-09 Akim Demaille <demaille@gostai.com>
3706 bench.pl -d, --directive.
3707 * etc/bench.pl.in (@directive): New.
3708 (&bench_grammar): Use it.
3709 (&bench_list_grammar): New, to provide access to the "variant"
3712 (getopts): Support -d, --directive.
3714 2008-11-09 Akim Demaille <demaille@gostai.com>
3716 Use inline for small operations.
3717 * data/lalr1.cc (symbol_base_type, symbol_type)
3718 (stack_symbol_type): Declare constructor and other operations as
3720 (yy_destroy_): Inline.
3722 2008-11-09 Akim Demaille <demaille@gostai.com>
3724 Introduce a hierarchy for symbols.
3725 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3726 (data_type): Rename as...
3727 (stack_symbol_type): this.
3728 Derive from symbol_base_type.
3729 (yy_symbol_value_print_): Merge into...
3730 (yy_symbol_print_): this.
3733 (yydestruct_): Rename as...
3734 (yy_destroy_): this.
3735 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3736 (parser::parse): yyla is now of symbol_type.
3737 Use its type member instead of yytoken.
3739 2008-11-09 Akim Demaille <demaille@gostai.com>
3741 Rename data_type and stack_symbol_type.
3742 * data/lalr1.cc (data_type): Rename as...
3743 (stack_symbol_type): this.
3745 2008-11-09 Akim Demaille <demaille@gostai.com>
3747 Handle semantic value and location together.
3748 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3749 yydata.value and yydata.location.
3750 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3751 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3754 (yydestruct_): New overload for a stack symbol.
3756 2008-11-09 Akim Demaille <demaille@gostai.com>
3758 Push a complete symbol, not connected parts.
3759 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3760 state, value and location.
3763 2008-11-09 Akim Demaille <demaille@gostai.com>
3765 Agregate yylval and yylloc.
3766 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3767 (parser::yyla): this.
3769 2008-11-09 Akim Demaille <demaille@gostai.com>
3771 Rely on the state stack to display reduction traces.
3772 To display rhs symbols before a reduction, we used information
3773 about the rule reduced, which required the tables yyrhs and
3774 yyprhs. Now use rely only on the state stack to get the same
3777 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3779 (parser::yyrhs_, parser::yyprhs_): Remove.
3780 (parser::yy_reduce_print_): Use the state stack.
3782 2008-11-09 Akim Demaille <demaille@gostai.com>
3784 Fuse yyval and yyloc into yylhs.
3785 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3787 (parse): Replace yyval and yyloc with yylhs.value and
3789 After a user action, compute yylhs.state earlier.
3790 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3793 2008-11-09 Di-an Jan <dianj@freeshell.org>
3795 Remove unused variable.
3796 * src/output.c (type_names_output): Remove unused variable sep.
3798 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
3800 Change tests/output.at quoting.
3801 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3802 expanding arguments.
3804 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3806 Don't add a semicolon to actions for %skeleton or %language.
3807 It breaks Java test cases as reported by Akim Demaille.
3808 * src/scan-code.l: Implement.
3810 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3812 Clean up %skeleton and %language priority implementation.
3813 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3814 remove static qualifier because others will soon need to see it.
3815 (language_prio): Likewise.
3816 (getargs): Use command_line_prio rather than 0.
3817 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3819 (skeleton_prio): Extern it.
3820 (language_prio): Extern it.
3821 * src/parse-gram.y: Use grammar_prio rather than 1.
3823 2008-11-07 Akim Demaille <demaille@gostai.com>
3825 Moving push traces into yypush_.
3826 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3829 2008-11-07 Akim Demaille <demaille@gostai.com>
3831 The single-stack C++ parser is now the standard one.
3832 * data/lalr1.cc: Rename as...
3833 * data/lalr1-split.cc: this.
3834 * data/lalr1-fusion.cc: Rename as...
3835 * data/lalr1.cc: this.
3836 * etc/bench.pl.in: Adjust.
3838 2008-11-07 Akim Demaille <demaille@gostai.com>
3840 Avoid empty-if warnings.
3841 Reported by Quentin Hocquet.
3843 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3844 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3846 2008-11-07 Akim Demaille <demaille@gostai.com>
3848 Pass command line location to skeleton_arg and language_argmatch.
3849 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3850 The location argument is now mandatory.
3851 Adjust all dependencies.
3852 (getargs): Use command_line_location.
3854 2008-11-07 Akim Demaille <demaille@gostai.com>
3857 * src/getargs.c (usage): Document -D.
3858 Fix help string for --locations.
3859 (command_line_location): New.
3860 (short_options, long_options, getargs): Support -D, --define.
3861 (getargs): Move -d support at the right place.
3862 * doc/bison.texinfo (Bison Options): Update.
3863 * tests/input.at (%define, --define): New.
3865 2008-11-07 Akim Demaille <demaille@gostai.com>
3867 Initialize the muscle table before parsing the command line.
3868 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3869 (getargs): Define file_name.
3870 * src/main.c (main): Initialize muscle_tab before calling
3872 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3873 its value is not available yet.
3875 2008-11-07 Akim Demaille <demaille@gostai.com>
3877 Locations without columns for command line arguments.
3878 * src/location.c (location_print): Don't display negative columns.
3879 * src/location.h: Document this.
3881 2008-11-07 Akim Demaille <demaille@gostai.com>
3884 * src/getargs.c (usage): Fix help string for -W.
3886 2008-11-07 Akim Demaille <demaille@gostai.com>
3888 Handle more general types of option arguments.
3889 * build-aux/cross-options.pl: The argument ends at the first
3890 space, not the first non-symbol character.
3891 Use @var for each word appearing the argument description.
3893 2008-11-07 Akim Demaille <demaille@gostai.com>
3895 Destroy the variants that remain on the stack in case of error.
3896 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3898 Display the value only if yymsg is nonnull.
3899 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3901 2008-11-07 Akim Demaille <demaille@gostai.com>
3903 Add "%define assert" to variants.
3904 This is used to help the user catch cases where some value gets
3905 ovewritten by a new one. This should not happen, as this will
3908 Unfortunately this uncovered a bug in the C++ parser itself: the
3909 lookahead value was not destroyed between two calls to yylex. For
3910 instance if the previous lookahead was a std::string, and then an int,
3911 then the value of the std::string was correctly taken (i.e., the
3912 lookahead was now an empty string), but std::string structure itself
3915 This is now done in variant::build(other&) (which is used to take the
3916 value of the lookahead): other is not only stolen from its value, it
3917 is also destroyed. This incurs a new performance penalty of a few
3918 percent, and union becomes faster again.
3920 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3921 (b4_variant_if): New.
3922 (variant::built): New.
3923 Use it whereever the status of the variant changes.
3924 * etc/bench.pl.in: Check the penalty of %define assert.
3926 2008-11-07 Akim Demaille <demaille@gostai.com>
3928 Use "%define variant" in bench.pl.
3929 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3930 just use %define variants.
3932 2008-11-07 Akim Demaille <demaille@gostai.com>
3935 * src/parse-gram.h, src/parse-gram.c: Regen.
3937 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3939 Fix user actions without a trailing semicolon.
3940 Reported by Sergei Steshenko at
3941 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3942 * THANKS (Sergei Steshenko): Add.
3943 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3944 * tests/regression.at (Fix user actions without a trailing semicolon):
3947 2008-11-04 Akim Demaille <demaille@gostai.com>
3949 Use b4_copyright_years.
3950 * data/yacc.c (b4_copyright_years): New.
3951 Fix its value according to the comments in the file.
3952 Use it and undefine it.
3954 2008-11-04 Akim Demaille <demaille@gostai.com>
3957 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3959 2008-11-04 Akim Demaille <demaille@gostai.com>
3962 * data/lalr1-fusion.cc: here.
3964 2008-11-04 Akim Demaille <demaille@gostai.com>
3966 Use strict on bench.pl.
3967 * etc/bench.pl.in (&run, &generate_grammar): New.
3968 Rename the grammar generating functions for consistency.
3969 Change the interface so that the list of benches to run is passed
3970 as (optionless) arguments.
3971 (&compile): Use &run.
3973 2008-11-04 Akim Demaille <demaille@gostai.com>
3975 Remove spurious initial empty lines.
3976 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3977 * data/yacc.c: End the @output lines with an @.
3979 2008-11-04 Akim Demaille <demaille@gostai.com>
3981 Improve the display of sizes.
3982 * etc/bench.p.in: Higher precision.
3983 Sort by decreasing size.
3985 2008-11-04 Akim Demaille <demaille@gostai.com>
3987 Don't memcpy C++ structures.
3988 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3990 (variant::build): New overload for
3991 copy-construction-that-destroys.
3992 (variant::swap): New.
3993 (parser::yypush_): Use it in variant mode.
3995 2008-11-04 Akim Demaille <demaille@gostai.com>
3997 Better defaults for bench.pl.
3998 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4000 Adjust &verbose uses.
4003 2008-11-04 Akim Demaille <demaille@gostai.com>
4005 Make variant.yy more complex.
4006 std::list cannot be copied via memcpy, they are more demanding than
4007 std::string. Use one std::list to strengthen the test.
4009 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4011 Create a list of strings, instead of a single large string.
4013 2008-11-04 Akim Demaille <demaille@gostai.com>
4016 * etc/bench.pl.in (--bench, $bench): New.
4018 2008-11-04 Akim Demaille <demaille@gostai.com>
4021 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4022 Define it after as().
4024 2008-11-04 Akim Demaille <demaille@gostai.com>
4027 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4029 2008-11-04 Akim Demaille <demaille@gostai.com>
4031 Issue missing synclines after user actions.
4032 * data/c.m4 (b4_case): Issue synclines on the output file.
4034 2008-11-04 Akim Demaille <demaille@gostai.com>
4036 Remove trailing empty line.
4037 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4040 2008-11-04 Akim Demaille <demaille@gostai.com>
4042 Fix output of copyright years.
4043 * data/bison.m4 (b4_copyright): Fix the indentation of the
4044 copyright year paragraph.
4045 Use b4_copyright_years when no years are given.
4046 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4047 (b4_copyright_years): New.
4050 2008-11-04 Akim Demaille <demaille@gostai.com>
4052 Avoid the spurious initial empty line.
4053 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4054 the end of @output request to suppress the empty line that
4057 2008-11-04 Akim Demaille <demaille@gostai.com>
4059 Remove parser::rhs_number_type.
4060 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4061 (yyrhs_): Use b4_table_define.
4063 2008-11-04 Akim Demaille <demaille@gostai.com>
4066 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4068 2008-11-04 Akim Demaille <demaille@gostai.com>
4070 Factor the declaration of the integer tables.
4071 * data/lalr1-fusion.cc (b4_table_define): New.
4074 2008-11-03 Akim Demaille <demaille@gostai.com>
4076 Fix indentation of tables in lalr1.cc
4077 * data/lalr1-fusion.cc: Fix the indentation.
4079 2008-11-03 Akim Demaille <demaille@gostai.com>
4081 Destroy the lhs symbols after reduction.
4082 * data/lalr1-fusion.cc (parse): After the user action, when in
4083 variant mode, destroy the lhs symbols.
4085 2008-11-03 Akim Demaille <demaille@gostai.com>
4087 Simplify yysyntax_error_ use.
4088 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4089 type, but make it unnamed in the declaration when it is not used.
4091 2008-11-03 Akim Demaille <demaille@gostai.com>
4093 Let yy::variant::build return an lvalue.
4094 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4097 2008-11-03 Akim Demaille <demaille@gostai.com>
4099 Define yy::variant only when needed.
4100 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4103 2008-11-03 Akim Demaille <demaille@gostai.com>
4105 Bench the three-stack lalr1.cc.
4106 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4109 2008-11-03 Akim Demaille <demaille@gostai.com>
4111 Fail on parse error in calc++.
4112 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4114 * examples/calc++/test ($me, $number, $exit, run): New.
4115 Use them to propagate errors to the exit status.
4117 2008-11-03 Akim Demaille <demaille@gostai.com>
4119 Don't specify the skeleton twice in the example.
4120 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4121 file does what is needed.
4123 2008-11-03 Akim Demaille <demaille@gostai.com>
4125 bench: Improve output.
4126 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4128 2008-11-03 Akim Demaille <demaille@gostai.com>
4130 bench: check impact of %debug on variants.
4131 * etc/bench.pl.in (variant_grammar): Fix the computation of
4133 Generate a grammar file that can work with or without %debug.
4134 Do use the @directive.
4135 (bench_variant_parser): Check impact of %debug.
4136 (@directives): Rename all the occurrences to...
4137 (@directive): this, for consistency.
4139 2008-11-03 Akim Demaille <demaille@gostai.com>
4141 bench: report the size too.
4142 * etc/bench.pl.in ($iterations): Defaults to -3.
4143 (&bench_grammar): Require hireswallclock.
4144 Compute and display the size of the result.
4147 2008-11-03 Akim Demaille <demaille@gostai.com>
4149 bench: More use of the verbosity level.
4150 * etc/bench.pl.in ($verbose, &verbose): New.
4152 More POD documentation.
4154 2008-11-03 Akim Demaille <demaille@gostai.com>
4156 bench.pl: a command line interface
4157 * etc/bench.pl.in: More doc.
4158 Some fixes in the documentation.
4159 ($cflags, $iterations, &help, &getopt): New.
4161 (&variant_grammar): Let the number of stages be 10 times what is
4164 2008-11-03 Akim Demaille <demaille@gostai.com>
4166 Bench the use of Boost.Variants.
4167 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4169 (&compile): Be ready to compile C++ parsers.
4170 (&bench_push_parser): Move debug information to the outermost
4172 * THANKS: Add Michiel De Wilde.
4174 2008-11-03 Akim Demaille <demaille@gostai.com>
4176 bench.pl: Pass directives as a list instead of as a string.
4177 * etc/bench.pl.in (&directives): New.
4178 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4180 (&triangular_grammar): Do use the directives (were ignored).
4181 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4184 2008-11-03 Akim Demaille <demaille@gostai.com>
4186 Improve genericity of bench.pl.
4187 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4189 (&bench_push_parser): New.
4192 2008-11-03 Akim Demaille <demaille@gostai.com>
4194 Add documentation to bench.pl.
4195 * etc/bench.pl.in: Comment changes.
4197 2008-11-03 Akim Demaille <demaille@gostai.com>
4199 Fuse the three stacks into a single one.
4201 In order to make it easy to perform benchmarks to ensure that
4202 there are no performance loss, lalr1.cc is forked into
4203 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4206 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4207 exercized by the test suite, the user must install a symbolic link
4208 from lalr1.cc to it.
4210 Instead of having three stacks (state, value, location), use a
4211 stack of triples. This considerably simplifies the code (and it
4212 will be easier not to require locations as currently does the C++
4213 parser), and also gives a 10% speedup according to
4214 etc/bench (probably mainly since memory allocation is done once
4215 instead of three times).
4217 Another motivation is to make it easier to destruct properly
4218 semantic values: now that they are bound to their state (hence
4219 symbol type) it will be easier to call the appropriate destructor.
4221 These changes should probably benefit the C parser too.
4223 * data/lalr1.cc: Copy as...
4224 * data/lalr1-fusion.cc: this new file.
4225 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4227 (state_stack_type, semantic_stack_type, location_stack_type)
4228 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4229 (data_type, stack_type, yystack_): New.
4230 (YYLLOC_DEFAULT, yypush_): Adjust.
4231 (yyerror_range): Now based on data_type, not location_type.
4233 2008-11-03 Akim Demaille <demaille@gostai.com>
4235 Push the state, value, and location at the same time.
4236 This is needed to prepare a forthcoming patch that fuses the three
4239 * data/lalr1.cc (parser::yypush_): New.
4240 (parser::yynewstate): Change the semantics: instead of arriving to
4241 this label when value and location have been pushed, but yystate
4242 is to be pushed on the state stack, now the three of them must
4243 have been pushed before. yystate still must be the new state.
4244 This allows to use yypush_ everywhere instead of individual
4245 handling of the stacks.
4247 2008-11-03 Akim Demaille <demaille@gostai.com>
4249 Prefer references to pointers.
4250 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4251 definition to use references instead of pointers.
4252 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4253 Take the value and location as references.
4256 2008-11-03 Akim Demaille <demaille@gostai.com>
4258 stack::size instead of stack::height.
4259 * data/lalr1.cc (stack::height): Rename as...
4260 (stack::size): this.
4261 Fix the output type.
4264 2008-11-03 Akim Demaille <demaille@gostai.com>
4266 Use variants to support objects as semantic values.
4267 This patch was inspired by work by Michiel De Wilde. But he used
4268 Boost variants which (i) requires Boost on the user side, (ii) is
4269 slow, and (iii) has useless overhead (the parser knows the type of
4270 the semantic value there is no reason to duplicate this
4271 information as Boost.Variants do).
4273 This implementation reserves a buffer large enough to store the
4274 largest objects. yy::variant implements this buffer. It was
4275 implemented with Quentin Hocquet.
4277 * src/output.c (type_names_output): New.
4278 (output_skeleton): Invoke it.
4279 * data/c++.m4 (b4_variant_if): New.
4280 (b4_symbol_value): If needed, provide a definition for variants.
4281 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4282 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4283 (b4_char_sizeof, yy::variant): New.
4284 (parser::parse): If variants are requested, define
4285 parser::union_type, parser::variant, change the definition of
4286 semantic_type, construct $$ before running the user action instead
4287 of performing a default $$ = $1.
4288 * examples/variant.yy: New.
4289 Based on an example by Michiel De Wilde.
4291 2008-11-03 Akim Demaille <demaille@gostai.com>
4293 Parameterize the extraction of semantic values.
4294 To make future changes easier, no longer rely on ".TYPE" being the
4295 way to get a semantic value.
4297 * data/c.m4 (b4_symbol_value): New.
4299 * data/c++.m4, data/yacc.c: Use it.
4300 * data/glr.c: Use b4_symbol_value.
4304 2008-11-03 Akim Demaille <demaille@gostai.com>
4306 Prepare easier M4 changes.
4307 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4310 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4312 Initiate further development.
4313 * NEWS: Create an empty section for new entries.
4314 * gnulib: Update submodule to HEAD.
4316 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4318 * NEWS: Version 2.4.
4320 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4322 Prepare for next release.
4323 * NEWS: Briefly mention changes since 2.3b.
4324 * README: Say GNU m4 1.4.6, which we've been requiring in release
4325 announcements already, not 1.4.3, which breaks the build.
4327 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4329 Say %language is experimental.
4330 We're thinking of extending it's effect on output file naming. See the
4332 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4333 * NEWS: Say it's experimental.
4334 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4335 recommend it over %skeleton for now.
4336 (Bison Options): Likewise.
4337 (C++ Bison Interface): Use %skeleton not %language.
4338 (Calc++ Parser): Use %skeleton not %language.
4339 * src/getargs.c (usage): Say it's experimental.
4341 2008-11-01 Di-an Jan <dianj@freeshell.org>
4342 Paolo Bonzini <bonzini@gnu.org>
4344 Support all Java parser class modifiers.
4345 * data/java.m4 (b4_percent_define_get3): New.
4346 (b4_final_if, b4_strictfp_if): New.
4347 * data/lalr1.java (final, strictfp, extends, implements): Support.
4348 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4350 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4351 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4352 (AT_CHECK_JAVA_GREP): New.
4353 (Java parser class modifiers): New test.
4354 (Java parser class extends and implements): New test.
4356 Model exception propagation better with throws and lex_throws.
4357 * data/java.m4 (b4_list2): New.
4358 (throws): Change default.
4359 * data/lalr1.java (yyaction): Add throws.
4360 (parse): Add lex_throws in addition to throws.
4361 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4362 * tests/java.at (Java throws specifications): New test.
4364 Improve documentation for Java parsers.
4365 * doc/bison.texinfo (Java Parsers): Add subsections.
4366 Don't quote first argument of %define.
4367 (Java Bison Interface): Document output files. Move documentation
4368 of parser class and merge into Java Parser Interface. Document
4369 features that error out. Document directives with no effect.
4370 Move note about Javadoc higher.
4371 (Java Semantic Values): Explicitly mention stype.
4372 Document that generic types cannot be used.
4373 (Java Location Values): Use @deftypeivar. Document constructors.
4374 Correct return value for toString.
4375 (Java Parser Interface): List undocumented constants/fields.
4376 Move documentation of fields added by %parse-param closer to list
4377 of members. Document that token names are added as fields.
4378 Document constructors accurately. Remove error method.
4379 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4380 Interface. Describe %code lexer and yylex accutately.
4381 Remove documentation that does not match the code.
4382 (Java Action Features): New.
4383 (Java Differences): Add reference. Add item on semantic values.
4384 Add note about @{ ... @}. Clarify %% epilogue placement.
4385 (Java Declarations Summary): New.
4388 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4389 (b4_remove_comma): Quote test argument.
4390 (b4_identification): Remove "bison" field.
4391 * tests/java.at (Java parser class and package names): New test.
4392 (Java %parse-param and %lex-param): New test.
4393 (Java stype, position_class and location_class): New test.
4395 2008-10-31 Di-an Jan <dianj@freeshell.org>
4397 * data/lalr1.jave: Update copyright years.
4398 (YYParser): Correct name of "generated from" file in Javadoc:
4399 use b4_file_name instead of @ofile@.
4400 (Location constructor): Correct Javadoc parameter name.
4401 (yylloc): Add missing opening m4 quote after b4_location_if.
4402 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4403 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4404 (YYParser constructor): Correct Javadoc parameter name.
4406 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4408 Always put auxiliary code files in the same dir as other output files.
4409 * src/files.c (compute_file_name_parts): When the user specifies
4410 --output but not --file-prefix, extract the directory prefix from the
4411 file prefix not from the grammar file name. This affects the location
4412 of files like location.hh generated by the C++ skeleton. The includes
4413 in the other output files require this fix.
4414 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4415 for expected output files.
4416 (Output files): Add a test for the above.
4418 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4420 * gnulib: Update submodule to HEAD.
4422 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4424 Update copyright year.
4425 * src/files.c: Here.
4427 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4429 Don't overwrite the input file.
4430 * src/files.c (output_file_name_check): Fatal error if using input file
4432 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4434 (Conflicting output files): Add test.
4436 2008-10-28 Akim Demaille <demaille@gostai.com>
4439 * data/lalr1.cc: Formatting changes.
4441 2008-10-28 Akim Demaille <demaille@gostai.com>
4443 Don't define debugging functions when !YYDEBUG.
4444 * data/lalr1.cc (debug_stream, set_debug_stream)
4445 (debug_level_type, debug_level, set_debug_level): Don't
4446 declare them when YYDEBUG is not defined.
4447 The implementation are already YYDEBUG-aware.
4449 2008-10-28 Akim Demaille <demaille@gostai.com>
4451 Prefer "continue" for empty loop bodies.
4452 * etc/bench.pl.in: Use "continue" instead of {}.
4454 2008-10-28 Akim Demaille <demaille@gostai.com>
4456 Space and comments changes.
4457 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4458 * data/c.m4, data/lalr1.cc: Space changes.
4460 2008-10-28 Akim Demaille <demaille@gostai.com>
4462 Make gnulib a submodule.
4464 * .gitmodules (gnulib): New.
4466 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4468 Fix yyerror_range for user-defined location type in C++. Reported by
4470 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4471 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4472 * THANKS (Georg Sauthoff): Add.
4474 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4476 Update several administrative files mainly to facilitate releasing.
4477 * HACKING (Administrivia): Make the git-merge-changelog notes more
4479 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4480 (Release Procedure): Update for git and add numerous details that were
4482 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4483 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4484 that announcements don't claim we bootstrapped with whatever bison
4485 happened to be in PATH. Add flex as a bootstrap tool.
4486 * Makefile.maint: Remove, previously replaced by maint.mk.
4487 * Makefile.cfg: Remove, and migrate settings to...
4488 * cfg.mk: ... here for the sake of `make announcement'.
4489 * bootstrap.conf (gnulib_modules): Add announce-gen.
4490 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4493 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4495 Small but important bugfixes for the Java skeleton.
4496 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4497 (yy_symbol_print): Call toString on yyvaluep.
4499 2008-08-29 Akim Demaille <demaille@gostai.com>
4501 Clarify UPDATED use.
4502 * doc/bison.texinfo: It refers to the last edition of this file,
4503 not to the release date of Bison.
4504 Reported by Joel E. Denny.
4506 2008-08-29 Akim Demaille <demaille@gostai.com>
4508 * README: Update FAQ pointer.
4509 Reported by Joel E. Denny.
4511 2008-08-27 Eric Blake <ebb9@byu.net>
4513 Resync m4sugar from autoconf.
4514 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4515 (m4_init): Adjust to latest m4.git changes.
4516 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4518 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4519 (_m4_list_cmp): Reduce side effects.
4521 2008-08-27 Akim Demaille <demaille@gostai.com>
4523 Check yyerrok in calc.at.
4524 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4525 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4528 2008-08-27 Akim Demaille <demaille@gostai.com>
4530 Support yyerrok in lalr1.cc.
4531 YYBACKUP is still to import back into lalr1.cc.
4532 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
4534 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4536 For maintainer-check*, don't recompile for a $(VERSION) update.
4538 (_is-dist-target): Override the one in GNUmakefile.
4539 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4541 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4543 Update for recent change to gnulib.
4544 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4547 2008-08-15 Eric Blake <ebb9@byu.net>
4549 Remaining m4sugar merge from autoconf.
4550 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4551 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4552 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4553 * src/output.c (output_skeleton): Tell m4 how to find it.
4555 Partial m4sugar merge from autoconf: m4_map.
4556 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4557 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4558 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4559 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4561 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4563 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4566 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4568 Keep .version and PACKAGE_VERSION in sync.
4569 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4570 dependency, and add comments justifying this in more detail. Discussed
4572 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4574 2008-08-06 Eric Blake <ebb9@byu.net>
4576 Partial m4sugar merge from autoconf: m4_shiftn.
4577 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4578 (m4_shift2, m4_shift3): New macros.
4579 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4580 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4581 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4582 * data/java.m4 (b4_remove_comma): Likewise.
4584 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4585 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4586 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4587 (m4_init): Consolidate wrapped text into single m4_wrap.
4588 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4591 2008-08-05 Eric Blake <ebb9@byu.net>
4593 Partial m4sugar merge from autoconf: builtins, version.m4.
4594 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4595 (m4_prepend): Remove, as it is unused and inherently quadratic,
4596 whereas m4_append is linear in newer m4.
4597 (m4_mkstemp): New builtin.
4598 (m4_symbols): Make rename conditional.
4599 (m4_version_prereq): Ensure fatal error if used in bison, which
4600 intentionally lacks version.m4.
4602 Fix comments in m4sugar.
4603 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4605 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4607 Update for recent .gitignore fix in Gnulib.
4608 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4609 anchored .gitignore entries.
4611 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4613 Set gnu or gnits strictness.
4614 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4615 development and gnits strictness for releases. Based on Eric Blake's
4617 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4619 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4621 * NEWS: Clarify documentation of %language.
4623 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4625 Support usage of git-merge-changelog.
4626 * .gitattributes: New.
4627 * HACKING: Document usage of git-merge-changelog.
4628 * bootstrap: Install git-merge-changelog entries in .git/config
4631 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4633 Remove remaining dependence on CVS Id keyword.
4634 * ChangeLog: For the sake of people still using CVS, don't use dollars
4636 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4638 * data/xslt/xml2dot.xsl: Likewise.
4639 * data/xslt/xml2text.xsl: Likewise.
4640 * data/xslt/xml2xhtml.xsl: Likewise.
4641 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4642 * doc/Makefile.am (neutralize): Remove, no longer needed.
4643 (.x.1): Don't use neutralize.
4644 (edit): Don't substitute for ID.
4645 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4647 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4649 Fix dependence on computed configure variables.
4650 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4651 $(top_srcdir)/configure.ac so that changes to computed variables, such
4652 as PACKAGE_VERSION, are seen.
4653 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4655 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4657 Update copyright dates for recent changes.
4658 * Makefile.am: Here.
4659 * src/Makefile.am: Here.
4660 * src/reduce.c: Here.
4661 * tests/reduce.at: Here.
4663 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4665 Use git-version-gen for version names between releases.
4666 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4667 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4668 * .prev-version: New.
4669 * .version.in: Remove.
4670 * ChangeLog: Remove the Id previously used for capturing the CVS
4672 * GNUmakefile: Remove, now copied from Gnulib.
4673 * Makefile.am: Add code suggested by comments in
4674 build-aux/git-version-gen.
4675 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4676 .prev-version, and .version.
4677 * NEWS (2.3b+): Rename to...
4678 (?.?): ... this because we're dropping the "+" version naming scheme,
4679 but, in general, we still can't be sure of our next release name.
4680 * bootstrap: Add a quick hack to remove from .gitignore the
4681 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4682 entry. This should really be fixed in gnulib instead.
4683 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4684 * configure.ac (AC_INIT): Set version name by invoking
4685 build-aux/git-version-gen.
4686 (AC_CONFIG_FILES): Remove .version, now generated by
4687 build-aux/git-version-gen.
4688 * maint.mk: New, copied from coreutils.
4689 * doc/.cvsignore (bison.1): Add.
4690 * doc/.gitignore (/bison.1): Add.
4691 * doc/bison.1: Remove, generated.
4692 * src/.cvsignore (revision.c): Remove.
4693 * src/.gitignore (/revision.c): Remove.
4694 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4695 (BUILT_SOURCES): Remove revision.c.
4696 (revision.c): Remove.
4697 * src/getargs.c (version): Don't print revision after the VERSION.
4698 * src/revision.h: Remove.
4700 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4702 Fix untranslatable composition of sentences. Reported by Goran
4704 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4705 * THANKS (Goran Uddeborg): Add.
4706 * src/reduce.c (reduce_print): Report the number of nonterminals and
4707 rules useless in the grammar in separate sentences.
4708 * tests/reduce.at (Useless Rules): Update output.
4709 (Reduced Automaton): Likewise.
4710 (Underivable Rules): Likewise.
4711 (Empty Language): Likewise.
4713 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4715 Fix some .gitignore and .cvsignore problems.
4716 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4717 (insert_vc_ignore): ... this new function, which prepends `/' to all
4718 .gitignore entries before passing them to insert_sorted_if_absent.
4719 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4720 .cvsignore files are maintained even though Bison developers run
4721 bootstrap while using Git.
4722 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4725 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4726 unneeded. Reported by Eric Blake.
4727 * lib/.gitignore (/*~): Add.
4728 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4729 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4731 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4733 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4735 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4736 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4737 * bootstrap.conf (gnulib_modules): Add unsetenv.
4738 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4739 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4741 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4742 the first argument because it may become position-dependent, and unset
4743 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4744 Add comments explaining these issues in more detail.
4746 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4748 Add .gitignore everywhere based on .cvsignore.
4750 * build-aux/.gitignore: New.
4751 * data/.gitignore: New.
4752 * doc/.gitignore: New.
4753 * etc/.gitignore: New.
4754 * examples/.gitignore: New.
4755 * examples/calc++/.gitignore: New.
4756 * lib/.gitignore: New.
4757 * m4/.gitignore: New.
4758 * po/.gitignore: New.
4759 * runtime-po/.gitignore: New.
4760 * src/.gitignore: New.
4761 * tests/.gitignore: New.
4763 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4765 * NEWS (2.3b+): New section, empty for now.
4766 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4768 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4770 * NEWS (2.3b): Update release date since there has been a delay in
4771 getting the announcements and tarballs out.
4773 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4775 * NEWS: Version 2.3b.
4776 * configure.ac (AC_INIT): Likewise.
4777 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4779 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4781 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4782 been doing it for years.
4783 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4784 (Release Procedure): Add FIXME about make alpha being unmaintained.
4786 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4788 * data/yacc.c: Reformat m4 a little for readability.
4789 * src/lalr.c (build_relations): Correct comment.
4791 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4793 DJGPP specific issue.
4794 * djgpp/config.sed: Fixes required to run configure scripts generated
4797 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4799 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4800 coordinator@translationproject.org.
4802 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4804 * THANKS: Add Eric Blake.
4806 2008-04-23 Eric Blake <ebb9@byu.net>
4808 Revert prior patch, by working around autoconf regression.
4809 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4810 ("Output file name: ("): Uncomment test.
4811 ("Output file name: )"): Likewise.
4812 Based on an idea from Noah Misch.
4814 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4816 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4817 2.61. Reported by Juan Manuel Guerrero at
4818 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4819 * tests/output.at ("Output file name: ("): Comment out test case for
4821 ("Output file name: )"): Likewise.
4823 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4825 * GNUmakefile: Update git-version-gen invocation so make dist
4828 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4830 Update to the current gnulib CVS repository, and fix trigraph handling
4832 * bootstrap: Update gnulib CVS repository URL.
4833 (symlink_to_dir): Encapsulate the code that guarantees the destination
4834 directory exists into...
4835 (check_dst_dir): ... this new function, and...
4836 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4837 fail when copying files into lib/uniwidth/.
4838 * src/output.c (prepare_symbols): When writing yytname muscles, where
4839 symbol names will be encoded in C-string literals, tell quotearg to
4840 escape trigraphs. This used to be the default in gnulib.
4841 * tests/regression.at (Token definitions): Because of the change in
4842 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4843 escapes trigraphs in symbol names. Thus, yytname no longer has
4844 trigraphs unnecessarily doubly escaped. Update test case output.
4845 Extend test case to be sure Bison's own error messages will no longer
4846 have trigraphs in symbol names unnecessarily escaped once.
4848 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4850 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4851 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4852 * .cvsignore: Add .version.
4854 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4855 * configure.ac (AC_CONFIG_FILES): Add .version.
4856 * build-aux/.cvsignore: Add git-version-gen.
4858 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4860 * NEWS (2.3a+): Mention that -g now takes an argument.
4861 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4862 consistency. Update the -g and -x entries now that they take
4863 arguments. Use brackets to indicate optional arguments.
4864 * src/getargs.c (usage): Explain the relationship between arguments of
4865 long and short options more completely. Document --defines and -d
4866 separately since the former takes an argument but, for POSIX Yacc, the
4868 (short_options): Let -W take an optional argument like --warnings.
4869 (getargs): Sort cases.
4871 2008-02-28 Akim Demaille <demaille@gostai.com>
4873 * doc/bison.texinfo: Fix a few typos.
4875 2008-02-28 Akim Demaille <akim@epita.fr>
4877 * doc/bison.texinfo (Bison Options): Document -W.
4878 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4880 2008-02-28 Akim Demaille <akim@epita.fr>
4882 * src/getargs.c (short_options): Split and sort for readability.
4883 -g and -x take optional arguments, just like their long options.
4884 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4886 Fix the handling of $opt which resulted in all the argument to be
4887 considered as optional.
4889 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4891 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4892 say its interface is experimental.
4893 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4895 (Bison Options): In the -L and --language entry, mention Java.
4896 (Java Bison Interface): Say the interface is experimental.
4897 * src/getargs.c (usage): Mention -L and --language.
4899 * NEWS (2.3a+): Say the push parsing interface is experimental.
4900 * doc/bison.texinfo (Push Decl): Likewise.
4901 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4902 (Push Parser Function): Likewise.
4903 (Pull Parser Function): Likewise.
4904 (Parser Create Function): Likewise.
4905 (Parser Delete Function): Likewise.
4906 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4907 yypull_parse, and yypush_parse entries.
4909 * NEWS (2.3a+): Mention XML support, and say the schema is
4911 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4912 * src/getargs.c (usage): Say the XML schema is experimental.
4914 * NEWS (2.3a+): Say option instead of flag.
4916 2008-02-21 Wojciech Polak <polak@gnu.org>
4918 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4921 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4923 Fix impure push parser compile error reported by Bob Rossi at
4924 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4925 * data/yacc.c: Clean up whitespace in the output a little.
4926 (yypstate_allocated): Define for impure push parsers regardless of
4927 whether the pull interface is also requested.
4928 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4929 check impure push parsers without the pull interface.
4931 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4932 yyerror takes arguments specified by %parse-param while yypstate_new
4934 * doc/bison.texinfo (Parser Create Function): Document that
4935 yypstate_new returns 0 for multiple impure parser instances.
4936 * tests/push.at (Push Parsing: Multiple impure instances): Update
4937 expected stderr output.
4939 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4941 * runtime-po/POTFILES.in (push.c): Remove.
4943 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4945 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4946 * data/push.c: Rename to...
4947 * data/yacc.c: ... this, overwriting it.
4948 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4949 `%push-pull-parser' -> `%define api.push_pull "both"'.
4950 Remove old yacc.c tests, and update push.c tests to yacc.c.
4952 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4954 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4955 `"%code top" blocks' instead of `%code "top" blocks'.
4956 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4957 Clean up whitespace in the output a little.
4959 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4961 Fix documentation problems reported by Tim Josling at
4962 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4963 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4964 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4965 integers. Explain the effect of literal string aliases on error
4966 messages. Copy token 0 documentation from the C++ skeleton
4969 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4971 Accept a token number in a %left, %right, or %nonassoc for POSIX
4972 conformance. Reported by Tim Josling at
4973 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4974 * NEWS (2.3a+): Mention.
4975 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4976 and code numbers are treated by precedence declarations.
4977 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4979 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4981 (symbol.prec): New, just like symbol but allows INT.
4982 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4984 * tests/regression.at (Token number in precedence declaration): New
4987 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4989 DJGPP specific issues.
4990 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4991 be changed. Copyright timestamp adjusted.
4992 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4993 be changed. Copyright timestamp adjusted.
4994 * djgpp/config.site: Copyright timestamp adjusted.
4995 * djgpp/config_h.sed: Copyright timestamp adjusted.
4996 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4997 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4998 filename translation list.
4999 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5000 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5001 files shall be created. Before trying to use the temp dir where the
5002 environment variable points to check that the dir really exists. If
5003 not default to the cwd as temp dir. Copyright timestamp adjusted.
5004 * djgpp/subpipe.h: Copyright timestamp adjusted.
5005 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5007 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5009 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5011 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5013 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5014 Problem reported by Claudio Saavedra in
5015 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5017 2008-01-05 Wojciech Polak <polak@gnu.org>
5019 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5020 document's title with the input grammar file name.
5022 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5024 Automate regression testing of the XML/XSLT implementation. Discussed
5026 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5027 * configure.ac (XSLTPROC): New substitution.
5028 * Makefile.am (maintainer-xml-check): New phony target invoking...
5029 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5030 invoking make maintainer-check with BISON_TEST_XML=1.
5031 * tests/atlocal.in (XSLTPROC): New.
5032 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5033 not to report reachable memory when Bison is expected to have a
5034 non-zero exit status and (2) to compare XML/XSLT output with --graph
5035 and --report=all output for every working grammar when
5037 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5038 (AT_BISON_CHECK_XML): New.
5039 (AT_QUELL_VALGRIND): New.
5040 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5041 (AT_CHECK): ... don't redefine this since this was the old way to
5043 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5044 AT_BISON_CHECK invocations.
5045 * tests/c++.at: Likewise.
5046 * tests/calc.at: Likewise.
5047 * tests/conflicts.at: Likewise.
5048 * tests/cxx-type.at: Likewise.
5049 * tests/existing.at: Likewise.
5050 * tests/glr-regression.at: Likewise.
5051 * tests/headers.at: Likewise.
5052 * tests/input.at: Likewise.
5053 * tests/java.at: Likewise.
5054 * tests/output.at: Likewise.
5055 * tests/push.at: Likewise.
5056 * tests/reduce.at: Likewise.
5057 * tests/regression.at: Likewise.
5058 * tests/sets.at: Likewise.
5059 * tests/skeletons.at: Likewise.
5060 * tests/synclines.at: Likewise.
5061 * tests/torture.at: Likewise.
5062 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5063 tends to hang xsltproc.
5064 (Big horizontal): Likewise.
5066 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5068 In XML output, remove redundant class attribute on symbol element.
5069 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
5070 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
5071 look up a symbol to determine whether it's a nonterminal or terminal.
5072 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
5073 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
5075 Add prec/assoc information to XML output.
5076 * src/gram.c (grammar_rules_print_xml): For each rule that has a
5077 %prec, add a percent_prec attribute.
5078 * src/print-xml.c (print_grammar): For each terminal that has a
5079 precedence or associativity, add a prec or assoc attribute.
5081 (xml_puts): Use xml_indent.
5082 (xml_printf): Use xml_indent.
5083 * src/print-xml.h (xml_indent): Prototype.
5085 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5086 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5088 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5090 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5091 (bison:ruleByNumber): ... this for clarity.
5092 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5093 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5094 (xsl:template match="reduction"): Update.
5095 (xsl:template match="item"): Update.
5096 (xsl:template match="reduction"): Update.
5098 In the XML output, don't print the list of rules where symbols appear.
5099 Compute it in XSLT instead. Discussed at
5100 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5101 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5102 (bison:ruleByRhs): New.
5103 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5105 (xsl:template match="terminal/rule"): Remove.
5106 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5108 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5110 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5111 bison:ruleByRhs and mode="number-link" for rule template.
5112 (xsl:template match="terminal/rule"): Remove.
5113 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5114 bison:ruleByRhs and mode="number-link" for rule template.
5115 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5117 (xsl:template match="rule" mode="number-link"): ... this.
5118 * src/print-xml.c (print_grammar): Don't print the list of rules.
5120 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5122 Don't let --report affect XML output; always print all information.
5124 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5125 * src/conflicts.c (log_resolution): Implement.
5126 * src/print-xml.c (print_core): Implement.
5127 (print_state): Implement.
5128 (print_xml): Implement.
5130 * NEWS (2.3a+): Fix quotes.
5131 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5132 don't let %verbose clear the list specified by --report.
5134 2007-11-26 Akim Demaille <akim@epita.fr>
5136 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5138 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5140 In the XML output, list useless and unused symbols and rules with the
5141 useful ones and add a "usefulness" attribute. Discussed starting at
5142 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5143 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5144 (grammar_rules_print_xml): Print all rules instead of just those
5145 useful in the grammar, and add a "usefulness" attribute.
5146 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5147 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5148 (print_grammar): Print all nonterminals instead of just useful ones,
5149 and add a "usefulness" attribute to nonterminals and terminals.
5150 (print_xml): Don't print a separate "reductions" or
5151 "rules-useless-in-parser" element.
5152 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5153 (reduce_xml): Remove.
5154 (reduce_token_unused_in_grammar): New.
5155 (reduce_nonterminal_useless_in_grammar): New.
5156 * src/reduce.h (reduce_xml): Remove prototype.
5157 (reduce_token_unused_in_grammar): Add prototype.
5158 (reduce_nonterminal_useless_in_grammar): Add prototype.
5159 * data/xslt/xml2text.xsl: Update for XML changes.
5160 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5161 * tests/reduce.at (Useless Terminals): Update output.
5162 (Useless Rules): Update output.
5163 (Reduced Automaton): Update output.
5165 Say "Terminals unused in grammar" instead of "Unused terminals".
5166 * NEWS (2.3a+): Update.
5167 * doc/bison.texinfo (Understanding): Update example output.
5168 * src/reduce.c (reduce_output): Implement.
5169 * data/xslt/xml2text.xsl: Implement.
5170 * data/xslt/xml2xhtml.xsl: Implement.
5172 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5174 Accept --report-file=FILE to override the default `.output' filename.
5175 * NEWS (2.3a+): Mention.
5176 * doc/bison.texinfo (Bison Options): Add an entry.
5177 * src/files.c (compute_output_file_names): Don't override
5178 spec_verbose_file if already set.
5179 * src/getargs.c (usage): Document --report-file.
5180 (REPORT_FILE_OPTION): New anonymous enum member.
5181 (long_options): Add entry for it.
5182 (getargs): Add case for it setting spec_verbose_file.
5184 * build-aux/cross-options.pl: Don't record a short option just because
5186 * doc/.cvsignore: Add yacc.1.
5188 2007-11-14 Akim Demaille <akim@epita.fr>
5190 * doc/yacc.1.in: New.
5191 * configure.ac, doc/Makefile.am: Adjust.
5192 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5194 Use AC_SUBST for assignments too.
5195 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5197 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5199 * src/gram.c: Remove comments that duplicate comments in gram.h.
5201 When reporting useless rules and nonterminals, say "useless in grammar"
5202 instead of "useless", and say "useless in parser" instead of "never
5203 reduced". Discussed starting at
5204 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5205 * NEWS (2.3a+): Mention this change.
5206 * data/xslt/xml2text.xsl: Update output text and expected input XML
5207 element names to match changes below.
5208 * data/xslt/xml2xhtml.xsl: Likewise.
5209 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5210 Contents: "Rules useless in parser due to conflicts".
5211 * doc/bison.texinfo (Decl Summary): Reword a little.
5212 (Understanding): Update example output for changes below.
5213 * src/gram.c: (rule_useful_p): Rename to...
5214 (rule_useful_in_grammar_p): ... this.
5215 (rule_useless_p): Rename to...
5216 (rule_useless_in_grammar_p): ... this.
5217 (rule_never_reduced_p): Rename to...
5218 (rule_useless_in_parser_p): ... this.
5219 (grammar_rules_print): Update for renames.
5220 (grammar_rules_print_xml): Update for renames.
5221 (grammar_rules_never_reduced_report): Rename to...
5222 (grammar_rules_useless_report): ... this since it is used for either
5223 kind of useless rule.
5224 * src/gram.h: Reword comments and update function names in prototypes.
5225 * src/main.c (main): Say "rule useless in parser due to conflicts".
5226 * src/print-xml.c (print_rules_never_reduced): Rename to...
5227 (print_rules_useless_in_parser): ... this, and rename output XML
5228 element "rules-never-reduced" to "rules-useless-in-parser".
5229 (print_xml): Update for rename.
5230 * src/print.c (print_results): Say "Rules useless in parser due to
5232 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5233 (nonterminals_reduce): Say "nonterminal useless in grammar".
5234 (reduce_output): Say "Nonterminals useless in grammar".
5235 Say "Rules useless in grammar".
5236 (reduce_xml): Rename output XML element "useless" to
5237 "useless-in-grammar".
5238 (reduce_print): Don't report the count of grammatically useless rules
5239 as "rules never reduced" just because %yacc is specified.
5240 In the correct report of this count, say nonterminal(s) and rule(s)
5241 "useless in grammar".
5242 * tests/conflicts.at (S/R in initial): Update expected output.
5243 (Defaulted Conflicted Reduction): Likewise.
5244 (Unreachable States After Conflict Resolution): Likewise.
5245 * tests/existing.at (GNU pic Grammar): Likewise.
5246 * tests/reduce.at (Useless Nonterminals): Likewise.
5247 (Useless Rules): Likewise.
5248 (Reduced Automaton): Likewise.
5249 (Underivable Rules): Likewise.
5250 (Empty Language): Likewise.
5252 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5254 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5255 here document and before the EOF so that BSD's implementation of Bourne
5256 shell doesn't parse the delimiter as part of the here document.
5257 * doc/.cvsignore: Add cross-options.texi.
5258 * src/getargs.c (usage): Add a blank line after the warning categories.
5260 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
5262 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5264 2007-11-05 Akim Demaille <akim@epita.fr>
5266 Remove Id: from bison.1.
5267 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5268 (perl -0777 -pi -e 's/\.PP\nId): New.
5269 (.x.1): Use it to ignore the version control revision.
5271 2007-11-05 Akim Demaille <demaille@gostai.com>
5273 * build-aux/Makefile.am: Ship cross-options.pl.
5274 * doc/Makefile.am: Always refer to cross-options.texi with
5276 (MAINTAINERCLEANFILES): Add it.
5278 2007-11-04 Akim Demaille <demaille@gostai.com>
5280 Generate the long/short option cross-table.
5281 * build-aux/cross-options.pl: New.
5282 * doc/Makefile.am (cross-options.texi): New.
5283 * doc/bison.texinfo: Use it.
5285 2007-11-04 Akim Demaille <demaille@gostai.com>
5287 Generate bison.1 using help2man.
5288 * doc/common.x, doc/bison.x: New.
5289 * doc/Makefile.am (bison.1, .x.1): New.
5290 The code is taken from autoconf-2.61/man/Makefile.am.
5291 * configure.ac: Look for help2man.
5293 2007-11-04 Akim Demaille <demaille@gostai.com>
5296 * src/getargs.c (usage): Document -W, make it clear that -d,
5297 -g and -x have optional arguments.
5299 2007-11-04 Akim Demaille <demaille@gostai.com>
5301 Find sha1sum when named gsha1sum.
5302 * bootstrap (find_tool): New.
5305 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5307 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5309 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5310 * NEWS (2.3a+): Mention.
5311 * data/bison.m4 (b4_pure_if): Don't define it here.
5312 * data/c.m4 (b4_identification): Depend on individual skeletons to
5313 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5314 values of the %define variables api.pure or api.push_pull. Define
5315 YYPURE, YYPUSH, and YYPULL accordingly.
5316 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5317 glr.cc has already defined b4_pure_flag.
5318 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5319 Remove YYPUSH and YYPULL since they're back in b4_identification again.
5320 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
5321 * doc/bison.texinfo (Pure Decl): Update.
5322 (Push Decl): Update.
5323 (Decl Summary): Add api.pure to %define entry.
5324 In %pure-parser entry, say it's deprecated and reference %define.
5325 (Pure Calling): Update.
5326 (Error Reporting): Update.
5327 (C++ Scanner Interface): Update.
5328 (How Can I Reset the Parser): Update.
5329 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5331 * src/getargs.c (pure_parser): Remove global variable.
5332 * src/getargs.h (pure_parser): Remove extern.
5333 * src/output.c (prepare): Don't define pure_flag muscle.
5334 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5335 wrapper around `%define api.pure'.
5336 * tests/calc.at (Simple LALR Calculator): Update.
5337 (Simple GLR Calculator): Update.
5338 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5340 (GLR: Resolve ambiguity, pure, locations): Update.
5341 (GLR: Merge conflicting parses, pure, no locations): Update.
5342 (GLR: Merge conflicting parses, pure, locations): Update.
5343 * tests/glr-regression.at (Uninitialized location when reporting
5345 * tests/input.at (Unused %define api.pure): New test case.
5346 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5347 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5348 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5350 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5352 %define push_pull -> %define api.push_pull. Discussed starting at
5353 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5354 * data/push.c: Expect the new name.
5355 * data/yacc.c: Likewise.
5356 * doc/bison.texinfo (Push Decl): Update.
5357 (Decl Summary): Update %define entry.
5358 (Push Parser Function): Update.
5359 (Pull Parser Function): Update.
5360 (Parser Create Function): Update.
5361 (Parser Delete Function): Update.
5362 * tests/calc.at (Simple LALR Calculator): Update.
5363 * tests/input.at (%define enum variables): Update.
5364 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5365 (Push Parsing: Multiple impure instances): Update.
5366 (Push Parsing: Unsupported Skeletons): Update.
5367 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5368 (Exploding the Stack Size with Malloc): Update.
5370 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5373 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5375 For the XML output's terminal element, rename @number to @token-number,
5376 and add @symbol-number. In the nonterminal element, rename @number to
5377 @symbol-number. Discussed starting at
5378 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5379 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5381 (xsl:template match="nonterminal"): Likewise.
5382 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5383 (xsl:template match="nonterminal"): Likewise.
5384 * src/print-xml.c (print_grammar): Implement.
5386 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5388 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5389 2007-10-11 change, the child elements here are items not rules.
5390 (xsl:template match="item"): New.
5391 (xsl:template match="rule"): Update for new reduced itemset.
5392 (xsl:template match="point"): Remove.
5393 (xsl:template match="empty"): For consistency with --graph, don't
5394 output "/* empty */".
5395 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5396 line-wrap, don't pass a negative value as first-line-length since this
5397 won't work with the following changes.
5398 (xsl:template name="line-wrap"): Simplify slightly.
5399 (xsl:template name="ws-search"): Eliminate recursion.
5400 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5401 set next to an item whose dot is not at the end of the RHS even if it
5402 happens to be associated with the same rule.
5404 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5406 Add %define lr.keep_unreachable_states.
5407 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5408 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5409 * src/main.c (main): Implement it.
5410 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5411 Extend to test it, and fix a typo.
5413 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5415 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
5416 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5417 the example .output text.
5418 * tests/regression.at (Extra lookahead sets in report): Improve wording
5421 2007-10-17 Wojciech Polak <polak@gnu.org>
5423 * src/print-xml.c (print_grammar): Renamed
5424 <terminal> and <nonterminal> attributes:
5425 "type" to "number" and "symbol" to "name".
5426 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5427 Use new attribute names.
5428 (xsl:template match="nonterminal"): Likewise.
5429 * data/xslt/xml2xhtml.xsl: Likewise.
5431 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5433 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5434 (Option Cross Key): Likewise.
5436 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5437 next to an item whose dot is not at the end of the RHS even if it
5438 happens to be associated with the same rule.
5439 * src/print.c (print_core): Likewise.
5440 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5441 (Resolved SR Conflicts): Update output.
5442 * tests/regression.at (Extra lookahead sets in report): New test case.
5444 2007-10-11 Wojciech Polak <polak@gnu.org>
5446 * src/print-xml.c (print_core): Remove item set
5448 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5449 Improve processing time. Suggested by Joel E. Denny.
5450 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5451 Write xsl:param "required" attribute as comment.
5452 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5453 (xsl:template match="rule"): Support new reduced itemset.
5454 (xsl:template match="point"): Remove.
5455 * data/xslt/xml2xhtml.xsl: Likewise.
5457 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5459 * src/getargs.c (version): Update copyright year.
5461 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5463 Make xml2dot.xsl and --graph produce the same output.
5464 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a ` '
5465 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5467 (xsl:template name="output-node"): Use the new escape template instead
5468 of the string-replace template directly.
5469 (xsl:template name="output-edge"): Likewise.
5470 (xsl:template name="escape"): New, escapes backslashes and newlines in
5471 addition to quotation marks.
5472 * src/graphviz.c (start_graph, output_node, output_edge): Add
5473 whitespace to output for legibility.
5475 Make xml2text.xsl and --report produce the same output, and remove the
5476 XML "conflicts" element since a conflict summary is easily extracted
5478 * data/xslt/bison.xsl: New.
5479 (xsl:template match="state" mode="bison:count-conflicts): New.
5480 * data/xslt/xml2text.xsl: Import bison.xsl.
5481 (xsl:template match="bison-xml-report"): Instead of styling the
5482 "conflicts" element, style the "automaton" element with mode
5483 "conflicts". Unlike the former, the latter lists S/R and R/R
5484 conflicts for a state on the same line.
5485 (xsl:template match="conflicts"): Remove.
5486 (xsl:template match="conflict"): Remove.
5487 (xsl:template match="terminal"): Line-wrap the list of rules in which
5488 the terminal is used.
5489 (xsl:template match="nonterminal"): Likewise for nonterminals.
5490 (xsl:template match="automaton" mode="conflicts"): New.
5491 (xsl:template match="state" mode="conflicts"): New.
5492 (xsl:template name="line-wrap"): New.
5493 (xsl:template name="ws-search"): New.
5494 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5495 (xsl:template match="bison-xml-report"): Instead of styling the
5496 "conflicts" element, style the "automaton" element with mode
5498 (xsl:template match="conflicts"): Remove.
5499 (xsl:template match="conflict"): Remove.
5500 (xsl:template match="automaton" mode="conflicts"): New.
5501 (xsl:template match="state" mode="conflicts): New.
5502 * src/conflicts.c (conflicts_output_xml): Remove.
5503 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5504 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5505 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5506 the corresponding XSLT is easier. Also, never wrap between a word and
5507 the comma that follows it.
5509 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5511 Improve C++ namespace support. Discussed starting at
5512 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5513 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5514 b4_namespace_close): New macros that interpret the %define variable
5515 "namespace" so its value can contain "::" to indicate nested
5517 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5519 * data/lalr1.cc (b4_namespace): Likewise.
5520 * data/location.cc (b4_namespace): Likewise.
5521 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5522 inside a new table in the general %define entry. Document `%define
5523 namespace' there as well. Point the %name-prefix entry to it since it
5524 explains it more completely in the case of C++.
5525 (C++ Bison Interface): Mention `%define namespace' instead of
5527 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5529 * tests/c++.at (Relative namespace references): New test case.
5530 (Absolute namespace references): New test case.
5531 (Syntactically invalid namespace references): New test case.
5532 * tests/input.at (C++ namespace reference errors): New test case.
5534 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5536 Add syncline support and location accessor to internal %define
5538 * data/bison.m4 (b4_percent_define_get_loc): New.
5539 (b4_percent_define_get_syncline): New.
5540 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5541 (b4_percent_define_default): Record defining location as line 1 rather
5542 than 0 for the sake of synchronizing #line's, and define
5543 b4_percent_define_syncline(VARIABLE).
5544 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5545 * src/muscle_tab.c (muscle_syncline_grow): New.
5546 (muscle_code_grow): Use muscle_syncline_grow.
5547 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5548 define b4_percent_define_syncline(VARIABLE).
5549 (muscle_percent_define_get_loc): New.
5550 (muscle_percent_define_get_syncline): New.
5551 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5552 remove some unused variables.
5553 (muscle_percent_define_default): Record defining location as line 1
5554 rather than 0 for the sake of synchronizing #line's, and define
5555 b4_percent_define_syncline(VARIABLE).
5556 (muscle_percent_define_check_values): Use
5557 muscle_percent_define_get_loc.
5558 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5559 (muscle_percent_define_get_syncline): Prototype.
5560 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5561 defaults): Update output for location change.
5562 (Complaining during macro argument expansion): Extend to test
5563 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5565 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5567 Fix some error-reporting macro bugs.
5568 * data/bison.m4 (b4_cat): New.
5569 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5570 to stdout so they don't become arguments to other macros. Update
5571 comments and add examples.
5572 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5574 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5575 after printing the error directive so that M4 doesn't report subsequent
5576 problems that are induced by this problem.
5577 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5578 instead of just in them. Recognize @\n in both places. Both expand to
5579 the empty string. Needed by b4_cat.
5580 * tests/skeletons.at (Complaining during macro argument expansion):
5582 (Fatal errors make M4 exit immediately): New test case.
5584 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5586 Implement --print-datadir.
5587 * src/getargs.c (usage): Mention.
5588 (PRINT_DATADIR_OPTION): New anonymous enum member.
5589 (long_options): Add entry for it.
5590 (getargs): Add case for it calling compute_pkgdatadir.
5591 * src/output.c (output_skeleton): Encapsulate data directory
5592 computation from here...
5593 (prepare): ... and from here...
5594 (compute_pkgdatadir): ... into this new function.
5595 * src/output.h (compute_pkgdatadir): Prototype.
5597 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5599 * src/print-xml.c (escape_bufs): New static global variable
5601 (xml_escape_n): ... the static local variable buf here.
5602 (print_xml): Free memory for escape_bufs.
5603 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5605 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5607 Replace `%push-parser' and `%push-pull-parser' with
5608 `%define push_pull "push"' and `%define push_pull "both"'.
5609 `%define push_pull "pull"' is the default.
5610 * doc/bison.texinfo (Push Decl, Push Parser Function,
5611 Pull Parser Function, Parser Create Function, Parser Delete Function):
5612 Update declarations.
5613 (Decl Summary, Table of Symbols): Replace %push-parser and
5614 %push-pull-parser entries with a %define push_pull entry.
5615 * data/bison.m4 (b4_percent_define_check_values): New macro.
5616 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5618 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5620 * data/push.c: ... to here and compute them from the value of the
5621 %define variable push_pull.
5622 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5623 parsing requests here...
5624 * data/yacc.c: ... hack this to switch to push.c any time
5625 b4_use_push_pull_flag or the %define variable push_pull is set. This
5626 will go away when we mv push.c yacc.c.
5627 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5628 push parsing is not supported since unused %define variables are
5630 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5631 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5632 comments for consistency with b4_percent_define_check_values.
5633 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5635 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5637 (prologue_declaration): Remove %push-parser and %push-pull-parser
5639 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5640 * tests/calc.at: Update declarations.
5641 * tests/input.at (%define enum variables): New test case.
5642 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5644 (Push Parsing: Multiple impure instances): Update declaration.
5645 (Push Parsing: Unsupported Skeletons): New test case.
5646 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5648 (Exploding the Stack Size with Malloc): Update declaration.
5650 2007-09-24 Wojciech Polak <polak@gnu.org>
5652 Add XSLT transformations.
5654 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5655 * data/xslt/xml2text.xsl: Transform XML into plain text.
5656 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5657 * data/Makefile.am (xsltdir): New variable.
5658 (dist_xslt_DATA): Add xslt/*.xsl files.
5660 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5662 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5663 Problem reported by Wojciech Polak.
5664 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5665 (xml_printf): Undo change I made on 21 September; that is,
5666 indent 2 spaces, not 1.
5668 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5670 Pacify ./configure --enable-gcc-warnings.
5671 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5672 `char const *' instead of `char *'.
5673 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5674 local variable `sep'.
5676 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5678 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5680 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5681 (xml_printf): Indent just 1 space for level.
5682 (e_char, xlate_char): Remove.
5683 (xml_escape_string): Rewrite to avoid undefined behavior (used
5684 storage that was freed from the stack).
5685 (xml_escape_n): Don't bother checking for subscript error.
5687 2007-09-21 Wojciech Polak <polak@gnu.org>
5689 Add Bison XML Automaton Report.
5691 Add support for an -x option to generate an XML report.
5692 It is not documented yet.
5693 * src/print-xml.c: New file.
5694 * src/print-xml.h: Likewise.
5695 * lib/timevar.def (TV_XML): New var.
5696 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5697 * src/conflicts.c: Include print-xml.h.
5698 (solved_conflicts_xml_obstack): New var.
5699 (log_resolution, conflicts_solve, conflicts_free):
5700 Add support for XML report.
5701 (conflicts_output_val): New function.
5702 * src/conflicts.h (conflicts_output_val): New decl.
5703 * src/files.c (spec_xml_file): New var.
5704 (compute_output_file_names, output_file_names_free): Add XML support.
5705 * src/files.h (spec_xml_file): New decl.
5706 * src/getargs.c (xml_flag): New var.
5707 (usage, short_options, long_options, getargs): Add XML support.
5708 * src/getargs.h (xml_flag): New decl.
5709 * src/gram.c: Include print-xml.h.
5710 (rule_lhs_print_xml, rule_rhs_print_xml):
5711 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5713 * src/gram.h: Declare external ones.
5714 * src/main.c: Include print-xml.h.
5715 (main): Add XML support.
5716 * src/reduce.c: Include print-xml.h.
5717 (reduce_xml): New function.
5718 * src/reduce.h: Declare it.
5719 * src/state.c: Include print-xml.h.
5720 (state_new): Add XML support.
5721 (state_rule_lookahead_tokens_print_xml): New function.
5722 * src/state.h: Declare it.
5723 (struct state): New member solved_conflicts_xml.
5724 * src/symtab.c (symbol_class_get_string): New function.
5725 * src/symtab.h: Declare it.
5727 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5729 * GNUmakefile: Switch to coreutils's version.
5730 * bootstrap: Likewise.
5731 * Makefile.cfg: Adjust to new GNUmakefile.
5732 * README-hacking: Likewise.
5736 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5737 Bruno Haible <bruno@clisp.org>
5739 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5740 and is a script that invokes bison. Tighten the code. Add comments.
5742 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5744 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5745 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5746 * doc/bison.texinfo (Decl Summary): Fix.
5747 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5748 * tests/input.at (Boolean %define variables): Update output.
5749 * tests/skeletons.at (%define boolean variables: invalid skeleton
5750 defaults): Rename to...
5751 (%define Boolean variables: invalid skeleton defaults): ... this and
5754 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5756 In impure push mode, don't allow more than one yypstate to be allocated
5757 since multiple impure parsers would corrupt yynerrs.
5758 * data/push.c (yypstate_allocated): New static global variable
5760 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5761 exhaustion if yypstate_allocated is 1, but still return 2.
5762 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5763 already 1. Otherwise, set it to 1.
5764 (yypstate_delete): Set it to 0.
5765 * tests/push.at (Push Parsing: Multiple impure instances): New test
5768 2007-08-17 Bob Rossi <bob@brasko.net>
5770 * doc/bison.texinfo (Push Decl): Document the push parser.
5771 (Table of Symbols): Ditto.
5773 (Decl Summary): Ditto.
5774 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5775 Parser Create Function, Parser Delete Function):
5776 Add new push parser symbols.
5777 (Table of Symbols): Document push-parser, push-pull-parser,
5778 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5780 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5783 * doc/gpl-3.0.texi: New file.
5784 * doc/gpl.texi: Remove.
5785 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5786 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5787 * README-hacking, TODO, bootstrap, bootstrap.conf:
5788 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5789 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5790 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5791 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5792 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5793 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5794 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5795 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5796 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5797 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5798 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5799 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5800 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5801 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5802 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5803 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5804 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5805 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5806 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5807 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5808 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5809 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5810 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5811 * src/complain.c, src/complain.h, src/conflicts.c:
5812 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5813 * src/files.h, src/flex-scanner.h, src/getargs.c:
5814 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5815 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5816 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5817 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5818 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5819 * src/print.c, src/print.h, src/print_graph.c:
5820 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5821 * src/reduce.h, src/relation.c, src/relation.h:
5822 * src/revision.h, src/scan-code.h, src/scan-code.l:
5823 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5824 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5825 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5826 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5827 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5828 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5829 * tests/existing.at, tests/glr-regression.at:
5830 * tests/headers.at, tests/input.at, tests/java.at:
5831 * tests/local.at, tests/output.at, tests/push.at:
5832 * tests/reduce.at, tests/regression.at, tests/sets.at:
5833 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5837 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5839 Get rid of broken %no-parser, -n, and --no-parser implementation and
5841 * TODO: Don't mention them.
5842 * doc/bison.1: Likewise.
5843 * doc/bison.texinfo (Decl Summary): Likewise.
5844 (Bison Options): Likewise.
5845 (Option Cross Key): Likewise.
5846 * src/getargs.c (no_parser_flag): Remove global variable.
5847 (usage): Don't print description of -n and --no-parser.
5848 (long_options): Remove --no-parser entry here.
5849 (getargs): Remove -n case in the switch here.
5850 * src/getargs.h (no_parser_flag): Remove extern.
5851 * tests/regression.at (Web2c Actions): Remove comment that mentions
5854 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5856 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5857 name user variables starting with `yy'. Just pass NULL instead of a
5858 dummy local &yylval to yypush_parse.
5859 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5862 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5864 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5865 true since it's then always used regardless of whether yyoverflow is
5866 defined. Reported by Christian Burger at
5867 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5868 * THANKS: Add Christian Burger.
5870 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5871 node names: say "Decl Summary" not "Bison Declaration Summary".
5873 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5875 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5876 determine whether this function has already complained about an invalid
5877 value for a %define boolean variable, don't check whether Bison has
5878 ever examined the value. As written, the check was a tautology.
5879 Instead, record and check for this complaint using a separate muscle.
5881 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5883 Fix push parsing memory leak reported by Brandon Lucia at
5884 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5885 * THANKS: Add Brandon Lucia.
5886 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5887 but the parse never completed and thus freed it.
5888 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5889 * tests/testsuite.at: Include push.at.
5890 * test/push.at: New.
5891 (Push Parsing: Memory Leak for Early Deletion): New test case.
5893 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5895 Improve handling of multiple S/R conflicts in the same state and of S/R
5896 conflicts involving multiple reductions.
5897 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5898 set for a state here or Bison will abort if it is reassigned on a
5899 later conflicted reduction in the same state.
5900 Similarly, don't finalize and assign the solved conflicts report here
5901 or it will be lost if it is reassigned on a later conflicted reduction
5903 (set_conflicts): Instead, assign them both here after all S/R conflicts
5904 in the state have been fully examined.
5905 * src/print.c (shift_set): Rename to...
5906 (no_reduce_set): ... this.
5907 (print_reductions): Update for rename, and add %nonassoc error action
5908 tokens to no_reduce_set so that, when printing the first remaining
5909 reduction on an error action token, the reduction is enclosed in
5911 (print_results): Update for rename.
5912 * tests/conflicts.at (Solved conflicts report for multiple reductions
5913 in a state): New test case.
5914 (%nonassoc error actions for multiple reductions in a state): New test
5917 * src/main.c (main): Don't depend on C99 features.
5919 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5921 * build-aux/.cvsignore: Add compile.
5922 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5925 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5927 * bootstrap (slurp): Create target directories that don't exist.
5928 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5930 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5932 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5934 * closure.c (closure): Likewise.
5935 * state.h (reductions): Comment sorting of rules.
5936 (state): Comment sorting of items.
5938 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5940 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5941 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5942 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5943 definition in order to avoid Gnulib headers since we don't use config.h
5945 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5946 rather than AT_DATA so that config.h is included.
5948 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5950 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5951 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5952 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5953 and so that YYFPRINTF is guaranteed to be defined here.
5955 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5957 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5959 (muscle_percent_define_check_values): ... this more helpful function.
5960 Again, it's not used yet, but it will be.
5961 * src/muscle_tab.h: Likewise.
5963 Improve some comments in parser table construction.
5964 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5965 (generate_states): Don't mention ruleset, which is internal to closure.
5966 * src/closure.c (closure): Explain sorting of core and itemset, which
5967 is required for this function to behave correctly.
5968 * src/closure.h (closure): Mention sorting.
5970 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5972 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5973 move the check for disabled transitions to an aver since conflict
5974 resolution hasn't happened yet.
5976 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5977 labels a state as inconsistent just because it has error transitions.
5978 The original form of this check appeared in revision 1.1 of lalr.c,
5979 which was committed on 1991-12-21. Now (at least), changing the
5980 consistency label on such a state appears to have no useful effect in
5981 any of the places it is examined, which I enumerate below. The key
5982 point to understanding each item in this enumeration is that a state
5983 with an error transition is labelled consistent in the first place only
5984 if it has no rules, so the check cannot matter for states that have
5985 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5986 to try to identify its conflicts, and a state must have *rules* to have
5987 conflicts. (2) Labelling a state as inconsistent will affect how
5988 action_row sets the default *rule* for the state. (3) Labelling a
5989 state as inconsistent will cause build_relations to add lookback edges
5990 to *rules* in that state.
5991 * src/state.h (struct state): Word the comment for member consistent
5994 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5996 Don't depend on C99 features.
5997 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5998 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5999 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6000 * src/state.c (state_mark_reachable_states): Fix for-loop.
6001 (state_remove_unreachable_states): Fix for-loop.
6003 Don't widen struct state with member reachable just to temporarily
6004 record reachability. Instead, use a local bitset.
6005 * src/state.h (struct state): Remove member.
6006 * src/state.c (state_new): Don't initialize it.
6007 (state_mark_reachable_states): Rename to...
6008 (state_record_reachable_states): ... this, and use bitset.
6009 (state_remove_unreachable_states): Use bitset.
6011 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6013 * src/Makefile.am (yacc): Quote target action commands properly so
6014 that the yacc script isn't corrupt. Reported by Hans Aberg at
6015 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6017 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6018 the case of pure parsers. Reported by Frans Englich at
6019 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6020 * THANKS: Add Frans Englich.
6022 * NEWS (2.3a+): In the %code entry, reference section `Bison
6023 Declaration Summary' from the manual now since the %code summary has
6025 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6026 in the rules section must be terminated by semicolons.
6028 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6030 Extend the front-end API for %define variables to more completely
6031 mirror the back-end. This will be useful in the future.
6032 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6033 Update comments to mention the new front-end counterparts of these
6035 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6036 for muscle_string_decode and muscle_location_decode.
6037 (muscle_string_decode): New static function.
6038 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6039 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6041 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6042 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6043 implementation more closely.
6044 (muscle_percent_define_invalid_value): New function.
6045 * src/muscle_tab.h (muscle_percent_define_get,
6046 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6049 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6051 * NEWS (2.3a+): Mention yesterday's state-removal change.
6052 (2.3a): Remove the %language entry, which was added after 2.3a.
6053 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6054 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6055 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6056 tests/existing.at: Update copyright date.
6058 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6060 If conflict resolution makes states unreachable, remove those states,
6061 report rules that are then unused, and don't report conflicts in those
6063 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6064 New global function.
6065 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6067 * src/main.c (main): After conflict resolution, remove the unreachable
6068 states and update all data structures that reference states by number.
6069 * src/state.c (state_new): Initialize each state's reachable member to
6071 (state_mark_reachable_states): New static function.
6072 (state_remove_unreachable_states): New global function.
6073 * src/state.h (struct state): Add member bool reachable.
6074 (state_remove_unreachable_states): Prototype.
6075 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6077 * tests/existing.at (GNU pic Grammar): Update test case output now that
6078 an unused rule is discovered.
6080 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6082 Minor code cleanup in parser table construction.
6083 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
6084 (new_itemsets, save_reductions): Update for rename to nitemset.
6085 * src/closure.c (nritemset): Rename to...
6086 (nitemset): ... this since the "r" appears to meaningless and isn't
6087 used in the comments.
6088 (closure): Update for rename.
6089 * src/closure.h (nritemset): Update extern to...
6090 (nitemset): ... this.
6091 * src/lalr.c (LA): Fix a typo in comments.
6092 * src/print.c (print_core): Update for rename to nitemset.
6093 * src/print_graph.c (print_graph): Likewise.
6094 * src/state.h: Fix some typos in header comments.
6096 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6098 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6099 still sticks to ASCII. Sorry!
6101 * README-hacking: New file, taken mostly from coreutils, with changes
6102 for Bison. Contains much of the contents of:
6103 * README-cvs: Remove.
6104 * bootstrap: Sync from gnulib.
6105 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6106 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6108 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6110 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6112 (Java Differences): Fix some typos.
6113 * THANKS: Add Sebastian Setzer.
6115 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
6117 * data/java.m4 (b4_single_class_if): Remove.
6118 (b4_abstract_if): Look at "%define abstract".
6120 (b4_union_name): Rename...
6121 (b4_yystype): ... to this. Map to "%define stype".
6122 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6123 b4_maybe_throws): Fix quoting.
6124 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6125 * data/lalr1.java (Lexer interface): Always define.
6126 (Lexer interface within parser class): Remove.
6127 (YYLexer class): New, used when "%code lexer" is present.
6128 (constructor): When "%code lexer" is used, pass %lex-param
6129 to the lexer constructor.
6130 (yylex, yyparse): Remove %lex-param from method invocations
6131 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6133 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6134 abstract". Rename "%define union_name" to "%define stype".
6135 Rename method names according to previous patch.
6136 (Java Scanner Interface): Describe "%code lexer" instead of
6137 "%pure-parser" and "%define single_class".
6138 (Java Differences): Mention "%code lexer".
6140 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6141 Include scanner here, using macros from tests/local.at.
6142 (AT_DATA_CALC_Y): Remove final argument.
6143 (_AT_CHECK_JAVA_CALC): Likewise.
6144 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6145 of %locations and %error-verbose.
6146 (main): Test with and without %lex-param.
6147 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6148 (AT_BISON_OPTION_POPDEFS): Pop it.
6150 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6152 DJGPP spefic issue. Inhibit the use of disallowed characters for
6153 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6154 and concern testsuite case 46.
6155 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6156 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6157 * djgpp/config.bat: Inhibit the use of disallowed characters.
6159 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6161 Miscellaneous %define and %code cleanup.
6162 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6163 values are interpreted.
6164 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6165 documentation a little more.
6166 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6167 muscle_percent_define_insert, muscle_percent_code_grow): New
6169 * src/muscle_tab.h (muscle_percent_define_insert,
6170 muscle_percent_code_grow): Prototype.
6171 * src/parse-gram.y (prologue_declaration): Use
6172 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6173 %define and %code directives.
6175 Make it easy to share %define boolean variables between the front-end
6176 and back-end. Though not used yet, this will be useful in the future.
6177 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6178 Bison uses of names rather than just skeleton uses of names.
6179 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6180 b4_percent_define_skeleton_variables(VARIABLE) to
6181 b4_percent_define_bison_variables(VARIABLE).
6182 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6183 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6184 b4_percent_code_bison_qualifiers(QUALIFIER).
6185 (b4_check_user_names_wrap): Update for renames.
6186 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6187 muscle_percent_define_default): New functions mimicking
6188 b4_percent_define_flag_if and b4_percent_define_default.
6190 For %define variables, report locations for invalid values and
6192 * data/bison.m4 (b4_percent_define_flag_if): Read
6193 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6195 (b4_percent_define_default): Save a special location in
6196 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6197 must later be reported as invalid.
6198 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6200 (muscle_percent_define_insert): Record the location of VARIABLE in
6201 muscle percent_define_loc(VARIABLE), and use it to report the previous
6202 location for a redefinition.
6203 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6204 (muscle_percent_define_default): Update like b4_percent_define_default.
6205 (muscle_grow_user_name_list): Rename to...
6206 (muscle_user_name_list_grow): ... this for consistency and use
6207 muscle_location_grow.
6208 * src/muscle_tab.h (muscle_location_grow): Prototype.
6209 * tests/input.at (%define errors): Update expected output.
6210 * tests/skeletons.at (%define boolean variables: invalid skeleton
6211 defaults): New test case.
6213 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6215 * src/print.c (lookahead_set, state_default_rule): Remove.
6216 (print_reductions): Replace state_default_rule invocation with
6217 equivalent use of yydefact, which was computed in token_actions in
6219 (print_results): Don't allocate lookahead_set.
6221 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
6223 * data/lalr1.java: Prefix all private members with yy.
6225 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6227 Use YYFPRINTF instead of fprintf where appropriate. Reported by
6228 Sebastien Fricker at
6229 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
6230 * THANKS: Add Sebastien Fricker.
6231 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6232 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6233 accept a variable number of arguments.
6235 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6237 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6239 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6241 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6242 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6243 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6245 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6247 Undo my 2007-02-07 change, switching back to the c-strcase module
6248 introduced in the 2007-02-03 change. Bruno Haible reported that
6249 the 2007-02-07 change would be dangerous in Turkish if we add a
6250 language whose name contains "i", since "i" is not lowercase "I"
6252 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6253 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6254 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6255 * m4/.cvsignore: Remove strcase.m4.
6256 * src/getargs.c: Revert 2007-02-07 change, as follows.
6257 Include c-strcase.h.
6258 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6260 2007-02-11 Bruno Haible <bruno@clisp.org>
6262 Enable the Java related testsuite tests when the only Java compiler
6263 found is a gcj < 4.3. Discussed at
6264 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6265 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6267 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6269 * data/Makefile.am: Update copyright date.
6270 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6271 yypstate_new returns NULL.
6272 (yypstate_new): Return NULL if malloc does.
6273 * src/reader.c (packgram): Move translation of rule actions from the
6274 beginning of packgram to...
6275 (check_and_convert_grammar): ... here right before packgram is invoked
6276 so it's easier to write more complete comments, and remove redundant
6279 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6281 As in semantic actions, make @$ in %initial-action, %destructor, and
6282 %printer imply %locations.
6283 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6285 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6286 (@$ in %initial-action implies %locations,
6287 @$ in %destructor implies %locations,
6288 @$ in %printer implies %locations): ... these new test cases.
6290 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6292 Undo most of the 2007-02-03 change, switching to the strcase module
6293 now that gnulib strcase has been fixed.
6294 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6295 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6296 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6297 * m4/.cvsignore: Add strcase.m4.
6298 * src/getargs.c: Revert 2007-02-03 change, as follows.
6299 Don't include c-strcase.h.
6300 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6301 strcasecmp has "unspecified behavior" outside the POSIX locale,
6302 but it works fine in practice if at least one argument is ASCII,
6303 as is the case in Bison.
6305 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
6307 * tests/java.at: Skip tests if only one of javac/java is present.
6308 Reported by Joel E. Denny.
6309 * tests/atlocal.in: Adjust copyright years.
6311 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
6313 * data/lalr1.java (Stack): Work around old verifiers that disallow
6314 access to the private fields of an inner class, from the outer class.
6315 We can make Stack's fields public because user code doesn't have access
6316 to the instance of Stack used by parse(). Reported by Paul Eggert.
6318 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6320 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6321 the right spot for these files?
6322 * bootstrap.conf (gnulib_modules): Add c-strcase.
6323 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6325 * src/getargs.c: Include c-strcase.h.
6326 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6327 to avoid unspecified behavior.
6329 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6331 * doc/bison.texinfo (Decl Summary): Correct typo.
6333 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
6335 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6336 Complain if the value does not match empty, "true" or "false".
6337 * data/c++.m4: Adjust default definitions of %define variables.
6338 * data/java.m4: Adjust default definitions of %define variables.
6339 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6341 * tests/input.at (Boolean %define variables): Test new behavior.
6343 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
6345 * NEWS: Mention java.
6346 * TODO: Remove things that are done.
6347 * bootstrap.conf: Add javacomp-script and javaexec-script.
6348 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6350 * data/Makefile.am: Add new files.
6351 * data/java-skel.m4: New.
6352 * data/java.m4: New.
6353 * data/lalr1.java: New.
6355 * doc/bison.texinfo: Put "A Complete C++ Example" under
6356 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6357 under Other Languages.
6359 * src/getargs.c (valid_languages): Add Java.
6360 * src/getargs.h (struct bison_language): Update size of string fields.
6362 * tests/Makefile.am: Add java.at.
6363 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6364 * tests/java.at: New.
6365 * tests/testsuite.at: Include it.
6367 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6370 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6371 at_directive_argv arguments so these no longer have to be global
6372 variables. Also, update the implementation for the following changes.
6373 (fail_for_at_directive_too_many_args,
6374 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6375 (at_directive_name): Remove as at_directive_argv[0] will be used for
6377 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6378 for the directive name.
6379 (at_directive_argc, at_directive_argv): Make these local within
6380 skel_lex instead of global.
6381 (INITIAL): Update directive start action for above changes.
6382 (SC_AT_DIRECTIVE_ARG): Rename to...
6383 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6384 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6385 (scan_skel): Move yylex_destroy to...
6386 (skel_scanner_free): ... here.
6387 * tests/skeletons.at (installed skeleton file name): Rename to...
6388 (installed skeleton file names): ... this.
6390 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6392 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6393 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6394 Summary" not "Directives".
6395 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6396 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6397 since the former is now the more complete one.
6398 (Prologue Alternatives): Likewise and do the same for %defines.
6399 (Table of Symbols): Add summary of %code, add summary of %define, and
6400 move full %code documentation to...
6401 (Decl Summary): ... here for consistency with other entries in these
6403 Move %define entry in order to keep this list alphabetized.
6404 Reword %define entry a little to put less emphasis on the skeleton
6405 concept, which most users shouldn't have to think about.
6407 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6409 Adjust to recent gnulib changes.
6410 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6411 Add string.h, string_.h, unistd_.h, wchar_.h.
6412 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6413 * src/system.h: Don't include <stpcpy.h>; this is now done by
6416 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
6418 Simplify implementation of unqualified %code, implement macros for
6419 uniform treatment of boolean %define flags. Document %define.
6420 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6421 b4_percent_code_ifdef): New.
6422 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6423 * data/c++.m4: Define default value for global_tokens_and_yystype.
6424 * data/glr.cc: Likewise.
6425 * data/location.cc: Use b4_percent_define_flag_if.
6427 * doc/bison.texinfo (Decl Summary): Document %define.
6429 * src/parse-gram.y (Unqualified %code): Change muscle name to
6431 (content.opt): Default to empty.
6433 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6435 Implement support for relative and absolute skeleton file names.
6436 Discussed starting at
6437 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6438 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6439 (Bison Options): Document in --skeleton entry.
6440 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6441 full_skeleton can't necessarily hold all of pkgdatadir.
6442 If the specified skeleton file name contains a `/', don't prepend
6444 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6445 file name contains a `/', prepend the grammar file directory.
6446 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6447 * skeletons.at: New file.
6448 (relative skeleton file names): New test case.
6449 (installed skeleton file names): New test case.
6450 * tests/testsuite.at: Include skeletons.at.
6452 * bootstrap: Update copyright to 2007.
6454 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
6456 * bootstrap: Remove occurrences of .#bootmp from the files.
6458 2007-01-17 Akim Demaille <akim@epita.fr>
6460 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6462 Use per-type %printer.
6464 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6466 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6467 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6468 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6469 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6470 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6471 tests/glr-regression.at, tests/input.at, tests/local.at,
6472 tests/output.at, tests/torture.at: Update copyright to 2007.
6474 2007-01-16 Akim Demaille <akim@epita.fr>
6476 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6478 (Calc++ Scanner): Exit with failure if we can't open the input
6480 Accept "-" standing for stdin.
6481 (Calc++ Top Level): Print the result only if the parsing was
6484 2007-01-16 Akim Demaille <akim@epita.fr>
6486 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6488 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
6489 and Joel E. Denny <jdenny@ces.clemson.edu>
6491 Clean up %define and %code implementation in M4 some. Most
6492 importantly, rename all related macros to be in the b4_percent_define
6493 and b4_percent_code namespaces. Also, complete support for `.' in
6494 %define variable names and %code qualifiers.
6495 * data/bison.m4 (b4_check_user_names): Check for special
6496 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6498 (b4_get_percent_define, b4_get_percent_code): Rename to...
6499 (b4_percent_define_get, b4_percent_code_get): ... these.
6500 Extend documentation with examples.
6501 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6502 b4_percent_define_skeleton_variables and
6503 b4_percent_code_skeleton_qualifiers.
6504 Expect any value for the %define variable `foo' to be stored in the
6505 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6506 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6507 expect any unqualified %code blocks to be stored in a macro named
6508 `b4_percent_code_unqualified'.
6509 Use m4_indir so that %define variable names and %code qualifiers can
6510 contain `.', which is allowed by the grammar parser.
6511 (b4_percent_define_default): New macro to set a default value for a
6513 (m4_wrap): Update wrapped code, and fix some underquoting.
6514 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6515 Expect grammar uses of %define variables and %code qualifiers to be
6516 defined in b4_percent_define_user_variables and
6517 b4_percent_code_user_qualifiers.
6518 * data/c++.m4: Use b4_percent_define_default rather than
6519 m4_define_default. Fix some underquoting. Skeleton usage of %define
6520 variable define_location_comparison now implies skeleton usage of
6521 %define variable filename_type.
6522 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6523 data/push.c, data/yacc.c: Update macro names.
6524 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6527 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6529 DJGPP specific issues.
6531 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6532 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6534 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6536 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6537 run parsers in all tests so that Valgrind is invoked during
6538 maintainer-check-valgrind.
6539 (Duplicate representation of merged trees): Free all semantic values.
6540 (Duplicated user destructor for lookahead): Likewise.
6542 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6544 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6545 command-line prefix.
6546 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6547 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6548 miss Valgrind messages.
6549 (Exploding the Stack Size with Malloc): Likewise.
6551 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6553 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6554 locals. Reported by Juan Manuel Guerrero at
6555 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6556 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6557 Fix some indentation also.
6558 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6559 explaining this issue.
6561 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
6562 and Joel E. Denny <jdenny@ces.clemson.edu>
6564 Simplify union and prologue handling, and escape union and lex/parse
6565 params with digraphs.
6566 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6567 values to the empty string since these are no longer guaranteed
6568 initialized by the front-end.
6569 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6570 braces around b4_user_stype since this is no longer done by the
6572 * src/files.c, src/files.h (pre_prologue_obstack,
6573 post_prologue_obstack): Remove.
6574 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6575 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6576 with digraphs. This fixes lex params and parse params.
6577 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6578 * src/output.c (prepare): Remove muscle insertion of the prologues.
6579 (output): Remove freeing of pre_prologue_obstack and
6580 post_prologue_obstack.
6581 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6582 than prologue_augment for prologue parsing so you don't need prologue
6584 (grammar_declaration): For %union RHS, use `braceless' instead of
6585 "{...}" so that braces are already stripped and code is escaped with
6587 * src/reader.c (prologue_augment): Remove.
6588 (reader): Remove initialization of pre_prologue_obstack and
6589 post_prologue_obstack.
6590 * src/reader.h (prologue_augment): Remove.
6592 * data/c.m4: Remove stray parenthesis.
6594 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6596 Remove quotes from variables names in %define directives and from
6597 qualifiers in %code directives, and restrict the characters that are
6598 allowed in them to M4-friendly ones. For %define, continue to support
6599 the quoted form as a deprecated feature. Discussed starting at
6600 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6601 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6603 * doc/bison.texinfo (Prologue Alternatives): Update.
6604 (Decl Summary): In %defines entry, update mention of `%code requires'
6605 and `%code provides'.
6606 (C++ Location Values): Update %define uses.
6607 (Calc++ Parser Interface): Likewise.
6608 (Calc++ Parser): Likewise, and update `%code requires' uses.
6609 (Table of Symbols): Update %code documentation.
6610 * src/parse-gram.y (prologue_declaration): For %define variables, use
6611 `variable' instead of `STRING'.
6612 (grammar_declaration): For %code qualifiers, use `ID' instead of
6614 (variable): New nonterminal that takes an `ID' or a `STRING'.
6615 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6617 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6618 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6619 (%define errors): Update %define uses.
6621 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6623 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6624 instead of muscle_insert for %define values so that M4-special
6625 characters are replaced with digraphs.
6626 * tests/input.at (%define errors): Extend to check weird values.
6628 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6630 Instead of having skeletons declare all valid %define variables and
6631 %code qualifiers, provide macros that retrieve the associated values
6632 and build these lists automatically. Thus Bison will now warn when a
6633 variable or qualifier is not used by the skeleton in the current
6634 invocation regardless of whether it might sometimes be used by that
6635 skeleton in other invocations. Also, move all %define value macros to
6636 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6637 form, which is replaced by %code.
6638 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6639 (b4_check_user_names): ... this, and change the series of valid name
6640 arguments to a single list argument for names used in the skeleton
6641 similar to the existing list argument for names used in the grammar.
6642 Warn instead of complaining.
6643 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6644 values and %code code, to format %code code properly, and to build
6645 lists of all %define variables and %code qualifiers used in the
6646 skeleton: b4_skeleton_percent_define_variables and
6647 b4_skeleton_percent_code_qualifiers.
6648 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6650 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6651 the skeleton names lists can finish building first. In place of
6652 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6653 expect the lists b4_user_percent_define_variables and
6654 b4_user_percent_code_qualifiers.
6655 * data/c++.m4: Where setting default values for b4_parser_class_name,
6656 b4_location_type, b4_filename_type, b4_namespace, and
6657 b4_define_location_comparison, update their names to the
6658 b4_percent_define_ namespace.
6659 * data/glr.c: Don't use b4_check_percent_define_variables and
6660 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6661 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6662 (b4_parser_class_name, b4_namespace): Define these using
6663 b4_get_percent_define for parser_class_name and namespace.
6664 * data/location.cc: Use b4_get_percent_define.
6665 * data/push.c: Don't use b4_check_percent_define_variables and
6666 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6667 * data/yacc.c: Likewise, and don't call m4_exit in
6668 b4_use_push_for_pull_if or m4_wrap code will never execute.
6669 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6671 (muscle_grow_user_name_list): ... this for consistency with the
6672 terminology used in bison.m4.
6673 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6674 %define variable names, and rename muscle used_percent_define_variables
6675 to user_percent_define_variables.
6676 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6677 user_percent_code_qualifiers.
6679 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6680 {CODE} form is no longer accepted.
6681 * tests/input.at (Reject bad %code qualifiers): Rename to...
6682 (Reject unused %code qualifiers): ... this, and update test output.
6683 (%define error): Update test output.
6685 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6687 Check for unrecognized %define variables similar to checking for
6688 unrecognized %code qualifiers. Check for redefined %define variables.
6689 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6691 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6692 (b4_check_percent_define_variables): New, also wraps it.
6693 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6694 variables using b4_check_percent_define_variables.
6695 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6696 all those exercised in the test suite and all those listed in the
6697 `Default values' section of c++.m4. Are there others?
6698 * data/push.c, data/yacc.c: Declare no valid %define variables.
6699 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6700 similar to muscle_find, but it works even when the muscle stores a
6702 (muscle_grow_used_name_list): New function for constructing the used
6703 name list muscles that b4_check_for_unrecognized_names requires.
6704 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6705 %define'd more than once. Define the b4_used_percent_define_variables
6706 muscle with muscle_grow_used_name_list.
6707 (grammar_declaration): Abbreviate %code code with
6708 muscle_grow_used_name_list.
6709 * tests/input.at (%define errors): New.
6711 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6713 Provide warn_at, complain_at, and fatal_at function callbacks to the
6714 skeletons, and use this for %code qualifier complaints.
6715 * data/bison.m4 (b4_error_at): New, invoked by...
6716 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6717 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6718 @fatal_at(...@) directives.
6719 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6720 qualifiers in b4_used_percent_code_qualifiers and to use
6722 * src/location.c, src/location.h (boundary_set_from_string): New global
6724 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6726 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6727 to b4_used_percent_code_qualifiers.
6728 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6730 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6731 (lineno): Rename to...
6732 (out_lineno): ... this so I don't misunderstand it again.
6733 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6734 here; these newlines are in the input but not the output file.
6735 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6736 (at_directive_perform): ... this new static function, and add handling
6737 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6739 * tests/input.at (Reject bad %code qualifiers): Update test output with
6740 locations and extend.
6742 * tests/output.at (Output file name: [, Output file name: ]): Remove
6743 bogus comment about these tests failing.
6745 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6747 Clean up b4_check_percent_code_qualifiers a little.
6748 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6749 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6750 documentation and add examples.
6751 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6754 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6756 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6757 unreliable -- especially when they're hidden inside another macro.
6758 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6759 data/c.m4: Remove m4_divert(-1).
6760 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6761 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6762 m4_divert_push(0) and m4_divert_pop(0).
6763 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
6764 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6765 pushed and popped by m4sugar, should be first on the stack.
6767 Provide warn, complain, and fatal function callbacks to the skeletons.
6768 This provides more flexibility than m4_fatal, improves the error
6769 message format, and captures messages for translation. Discussed
6771 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6772 * data/bison.m4 (b4_error): New, invoked by...
6773 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6774 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6775 directives. Because these M4 macros might be called when the current
6776 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6777 the previous removal of uses of m4_divert, which caused trouble.
6778 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6779 m4_fatal to report unrecognized %code qualifiers.
6780 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6781 push parser requests.
6782 * data/glr.c: Use b4_complain instead of m4_fatal to report
6783 non-deterministic push parser requests.
6784 Update @output usage to @output(...@) form.
6785 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6786 report missing %defines. Update @output usage to @output(...@) form.
6787 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6789 * src/main.c (main): Invoke skel_scanner_free.
6790 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6791 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6792 obstack_for_string from flex-scanner.h.
6793 (YY_DECL): Use to declare skel_lex static.
6794 (decode_at_digraphs): Remove; now handled in the new
6795 SC_AT_DIRECTIVE_ARG start condition.
6796 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6798 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6799 at_directive_argv): New static globals.
6800 (INITIAL): Use fail_for_invalid_at.
6801 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6802 recognize the start of a generalized `@directive(...@)' form and
6804 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6805 directive args (using the new obstack_for_string), to decode the
6806 contained @ diagraphs, and to perform the directive. It recognizes
6807 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6809 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6810 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6812 (scan_skel): Initialize obstack_for_string on the first call.
6813 (skel_scanner_free): New function to free obstack_for_string.
6814 * tests/input.at (Reject bad %code qualifiers): Update test output.
6816 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6818 Consolidate the 4 prologue alternative directives (%code, %requires,
6819 %provides, and %code-top) into a single %code directive with an
6820 optional qualifier field. Discussed at
6821 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6822 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6824 * doc/bison.texinfo (Prologue Alternatives): Update.
6825 (Decl Summary): Update to %code "requires" and %code "provides".
6826 (Calc++ Parser): Update to %code "requires".
6827 (Table of Symbols): Remove entries for %requires, %provides, and
6828 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6829 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6830 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6831 which are skeleton-specific.
6832 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6833 declare what %code qualifiers it supports and to complain if any other
6834 qualifiers were used in the grammar.
6835 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6836 and b4_user_code([b4_percent_code_provides]) in place of
6837 b4_user_requires and b4_user_provides.
6838 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6839 Add b4_user_code([b4_percent_code_top]) and
6840 b4_user_code([b4_percent_code]).
6841 Invoke b4_check_percent_code_qualifiers.
6842 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6843 PERCENT_REQUIRES): Remove.
6844 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6845 %requires. Rewrite the %code RHS as the unqualified form defining the
6846 muscle b4_percent_code. Add another RHS for the qualified %code form,
6847 which defines muscles of the form b4_percent_code_QUALIFIER and the
6848 b4_used_percent_code_qualifiers muscle.
6849 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6850 PERCENT_REQUIRES): Remove.
6851 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6852 %code "requires" and %code "provides".
6853 * tests/input.at (Reject bad %code qualifiers): New.
6855 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6857 Use the new code_props interface for destructors and printers.
6858 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6859 printer_location members, and change the type of the destructor and
6860 printer members to code_props.
6861 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6862 symbol_printer_get, semantic_type_destructor_set,
6863 semantic_type_printer_set, default_tagged_destructor_set,
6864 default_tagless_destructor_set, default_tagged_printer_set,
6865 default_tagless_printer_set): Use code_props in arguments and return
6866 types in place of char const * and location.
6867 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6868 since the locations are now contained in the return of
6869 symbol_destructor_get and symbol_printer_get.
6870 * src/output.c (symbol_destructors_output, symbol_printers_output):
6872 (symbol_code_props_output): ... this to eliminate duplicate code.
6873 (output_skeleton): Update to use symbol_code_props_output.
6874 * src/reader.c (symbol_should_be_used): Update use of
6875 symbol_destructor_get.
6876 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6877 Update uses of the various _destructor_set and _printer_set functions.
6878 * src/symtab.c: (default_tagged_destructor_location,
6879 default_tagless_destructor_location, default_tagged_printer_location,
6880 default_tagless_printer_location): Remove since we...
6881 (default_tagged_destructor, default_tagless_destructor,
6882 default_tagged_printer, default_tagless_printer): ... change the type
6883 of these to code_props.
6884 (symbol_new, semantic_type_new, symbol_destructor_set,
6885 semantic_type_destructor_set, symbol_destructor_get,
6886 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6887 symbol_check_alias_consistency, default_tagged_destructor_set,
6888 default_tagless_destructor_set, default_tagged_printer_set,
6889 default_tagless_printer_set): Update.
6890 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6891 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6893 (symbol_print): Use SYMBOL_CODE_PRINT.
6895 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6897 Use the new code_props interface for rule actions.
6898 * src/symlist.h (symbol_list): Replace action, action_location, and
6899 used members with a code_props action_props member.
6900 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6901 grammar_midrule_action, grammar_current_rule_merge_set,
6902 grammar_current_rule_symbol_append, packgram): Update.
6903 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6904 * src/scan-code.l (handle_action_dollar): Update.
6905 (translate_rule_action): Remove, no longer used.
6906 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6908 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6910 Use the new code_props interface in parse-gram.y.
6911 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6912 Update all uses of translate_* functions to use the new code_props
6913 interface and to use gram_scanner_last_string_free and
6914 code_scanner_last_string_free where possible.
6915 (grammar_declaration): symbol_list_destructor_set and
6916 symbol_list_printer_set now perform the translation, so don't do it
6917 here. Use gram_scanner_last_string_free where possible.
6918 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6919 translate_code): Remove, no longer used.
6920 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6921 symbol_list_printer_set): Perform code translation here rather than
6922 depending on the caller to do so.
6924 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6925 * src/scan-gram.h (gram_last_string): Remove declaration.
6926 * src/scan-gram.l (last_string): Declare it static.
6928 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6930 Encapsulate code properties and related functionality for the various
6931 destructors, printers, and actions into a code_props structure and
6932 interface. This patch merely implements code_props in scan-code.h and
6933 scan-code.l. Future patches will rewrite other modules to use it.
6934 Discussed starting at
6935 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6936 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6937 consistently initialize const structs that have an empty location
6939 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6940 to ensure consistency.
6941 * src/scan-code.h (code_props): New structure.
6942 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6943 function, macro, and const global variable for initializing a
6944 code_props with no code.
6945 (code_props_plain_init, code_props_symbol_action_init,
6946 code_props_rule_action_init, code_props_translate_code): The rest of
6947 the new code_props functional interface. Among other things, the init
6948 functions set the code_props kind field so that
6949 code_props_translate_code will know whether to behave like
6950 translate_symbol_action, translate_rule_action, or translate_code.
6951 These old translate functions must remain until all other modules are
6952 updated to use the new code_props interface.
6953 (code_scanner_last_string_free): New function similar to
6954 gram_scanner_last_string_free.
6955 (code_scanner_free): Add documentation.
6956 * src/scan-code.l: Implement the new interface.
6957 (code_lex): Make it static, add a code_props* argument, and remove the
6959 (last_string): New static global similar to the one in scan-gram.l.
6960 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6962 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6963 code_props since Bison may one day use this information for destructors
6965 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6966 (handle_action_dollar): Use symbol_list_n_get and set used flag
6967 directly since symbol_list_n_used_set is removed.
6968 (translate_action): Add a code_props* argument and remove the rule,
6969 action, and location arguments. Pass the code_props* on to code_lex.
6970 (translate_rule_action, translate_symbol_action, translate_code):
6971 Rewrite as wrappers around the new code_props interface.
6972 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6973 it would eventually need to break the encapsulation of code_props.
6975 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6977 * etc/.cvsignore: New.
6979 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6981 Add maintainer-push-check to run maintainer-check using push parsing in
6982 place of pull parsing where available.
6983 * Makefile.am (maintainer-push-check): New.
6984 * data/bison.m4 (b4_use_push_for_pull_if): New.
6985 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6986 appropriately based on their existing values.
6987 (yypush_parse): Don't print push-parser-specific diagnostics if push
6988 parsing is being used in place of pull parsing.
6989 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6991 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6992 variable, and insert b4_use_push_for_pull_flag into muscles.
6993 * tests/Makefile.am (maintainer-push-check): New.
6995 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6997 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6998 (whether successful or failed) so that yypush_parse can be invoked
6999 again to start a new parse using the same yypstate.
7000 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7001 check multiple yypull_parse invocations on the same yypstate. For pull
7002 mode, extend to check multiple yyparse invocations.
7003 (Exploding the Stack Size with Alloca): Extend to try with
7005 (Exploding the Stack Size with Malloc): Likewise.
7007 * tests/calc.at (Simple LALR Calculator): Don't specify
7008 %skeleton "push.c" since %push-pull-parser implies that now.
7009 * tests/headers.at (export YYLTYPE): Don't check for the push
7010 declarations. Otherwise, this test case can't be used to see if push
7011 mode can truly emulate pull mode.
7012 * tests/input.at (Torturing the Scanner): Likewise.
7013 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7014 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7015 AT_YACC_IF, which now includes the case of push mode since %skeleton
7016 need not be used for push mode. This will be more intuitive once
7017 push.c is renamed to yacc.c.
7019 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7021 For push mode, convert yyparse from a macro to a function, invoke yylex
7022 instead of passing a yylexp argument to yypull_parse, and don't
7023 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7024 Discussed starting at
7025 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7026 * data/bison.m4 (b4_pull_if): New.
7027 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7028 * data/push.c: Improve M4 quoting a little.
7029 (b4_generate_macro_args, b4_parenthesize): Remove.
7030 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7031 any time a pull parser is requested.
7032 Don't #define this as a wrapper around yypull_parse. Instead, when
7033 both push and pull are requested, make it a function that does that
7035 (yypull_parse): If there's a b4_prefix, #define this to
7036 b4_prefix[pull_parse] when both push and pull are requested.
7037 Don't define this as a function unless both push and pull are
7039 Remove the yylexp argument and hard-code yylex invocation instead.
7040 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7042 * src/getargs.c (pull_parser): New global initialized to true.
7043 * getargs.h (pull_parser): extern it.
7044 * src/output.c (prepare): Insert pull_flag muscle.
7045 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7046 (prologue_declaration): Set both push_parser and pull_parser = true for
7047 %push-pull-parser. Set push_parser = true and pull_parser = false for
7049 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7050 %push-parser since there's no backward-compatibility concern here.
7051 Scan %push-pull-parser.
7052 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7053 instead of %push-parser.
7054 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7055 prototype it in the module that calls yyparse.
7056 * tests/input.at (Torturing the Scanner): Likewise.
7057 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7059 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7061 Update etc/bench.pl. Optimize push mode a little (the yyn change
7062 deserves most of the credit).
7063 * Makefile.am (SUBDIRS): Add etc subdirectory.
7064 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7065 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7066 yytoken, yyval, and yyloc declarations to...
7067 (yyparse or yypush_parse): ... here to improve performance. For
7068 yypush_parse invocations after the first, be sure to assign yyn its old
7070 (yypstate_new): Don't bother initializing the yyresult field since the
7071 initial value isn't used.
7072 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
7073 remove the #define that, in push mode, set it to yyps->NAME.
7074 * etc/Makefile.am: New.
7075 * etc/bench.pl: Remove and build it instead from...
7076 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
7077 "tests/bison" from the build directory by default rather than just
7078 invoking "bison" from $PATH.
7079 (calc_grammar): Update push parser code: don't declare yylval globally,
7080 don't define yyparse_wrapper, and don't #define yyparse.
7081 (bench_grammar): Update to check all working combinations of yacc.c,
7082 push.c, impure, pure, pull, and push.
7084 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7086 For push mode, add pull wrappers around yypush_parse.
7087 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7088 (yypull_parse): New function wrapping yypush_parse.
7089 (yyparse): New #define wrapping yypull_parse.
7090 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7092 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7093 prototype yylex in the module that calls yyparse, and don't prototype
7094 yyparse there. Otherwise, the yyparse expansion won't compile.
7095 * tests/input.at (Torturing the Scanner): Likewise.
7097 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7099 Enable push parsers to operate in impure mode. Thus, %push-parser no
7100 longer implies %pure-parser. The point of this change is to move
7101 towards being able to test the push parser code by running the entire
7102 test suite as if %push-parser had been declared.
7103 * data/push.c (yypush_parse): For impure mode, remove the
7104 yypushed_char, yypushed_val, and yypushed_loc arguments.
7105 Instead, declare these as local variables initialized to the global
7106 yychar, yylval, and yylloc.
7107 For the first yypush_parse invocation only, restore the initial values
7108 of these global variables when it's time to read a token since they
7109 have been overwritten.
7110 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7112 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7113 %pure-parser along with %push-parser since this test case was designed
7114 for pure push parsers.
7115 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7116 (AT_YACC_OR_PUSH_IF): New.
7117 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7118 add a note that it's still wrong for some cases (as it has been for a
7120 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7121 %push-parser no longer implies %pure-parser.
7123 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7125 Remove some unnecessary differences between the pull parser code and
7126 the push parser code. This patch enables yynerrs in push mode.
7127 * data/push.c: Reformat M4 a little.
7128 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7129 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7130 because push mode is on. Instead, if pure mode is on, move yynerrs
7132 (b4_declare_parser_state_variables): ... here.
7133 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7134 to yyps->NAME so it can be used in yypush_parse.
7135 (yypush_parse): Don't omit uses of yynerrs in push mode.
7137 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7139 Fix bug such that the first pushed token's value and location are
7140 sometimes overwritten (sometimes by %initial-action) before being used.
7141 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7142 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7143 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7144 more closely mimic the pull parser logic.
7145 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7146 time to read a token, which is after any initialization of yylval and
7148 (gottoken): Rename label to...
7149 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7152 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7154 Rearrange initialization of the parser state variables so that the
7155 skeleton doesn't have to have a copy for pull mode and another for push
7156 mode. This patch also fixes at least a bug such that yylloc was not
7157 initialized (with b4_location_initial_line and
7158 b4_location_initial_column) upon calling yypush_parse. However, that
7159 initialization now overwrites the first token's location;
7160 %initial-action assigning @$ already did the same thing, and both bugs
7161 will be fixed in a later patch.
7162 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7163 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7164 yyss, yyvs, yyls, and yystacksize.
7165 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7166 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7168 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7169 yyps->NAME so it can be used in yypush_parse.
7170 (yyparse or yypush_parse): For yypush_parse, don't print the
7171 "Starting parse" diagnostic for invocations after the first.
7172 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7173 yypush_parse, only do it for the first invocation.
7174 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7175 initialization to occur in yypush_parse but only on the first
7178 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7180 * data/push.c: Add CPP guards around push parser declarations in both
7181 the header and the code file.
7182 In the code file, move the push parser declarations to the same place
7183 they appear in the header file.
7184 Clean up the M4 some, especially the inconsistent underquoting in
7185 some b4_c_function_def and b4_c_function_decl uses.
7187 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7189 Encapsulate the push parser state variables into an M4 macro so the
7190 push skeleton doesn't have to list them again for pull mode's yyparse.
7191 For push mode, remove yypush_parse's local equivalents of these
7192 variables to eliminate unnecessary copying between the two sets at
7193 run-time. This patch also fixes at least a bug related to multiple
7194 %initial-action invocations in push mode.
7195 * data/push.c (b4_declare_parser_variables): Rename to...
7196 (b4_declare_scanner_communication_variables): ... this for clarity and
7198 (b4_declare_yyparse_variables): Remove and move its contents to the one
7199 spot where it was invoked.
7200 (b4_declare_parser_state_variables): New macro containing the parser
7201 state variables required by push mode.
7202 (struct yypstate): Replace all fields but yynew with
7203 b4_declare_parser_state_variables.
7204 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7205 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7206 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7207 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7208 parser state variable declarations with
7209 b4_declare_parser_state_variables.
7210 Don't initialize parser state variables when calling yypush_parse since
7211 yypstate_new already does that.
7212 Invoke the user's initial action only upon the first yypush_parse
7214 Remove all code that copies between the local parser state variables
7217 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7219 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7220 prevent a name collision in a future patch where these names will
7221 sometimes be #define'd.
7222 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7223 since it no longer has the same name as the existing argument.
7224 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7226 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
7227 and Joel E. Denny <jdenny@ces.clemson.edu>
7229 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7230 that the argument is case-insensitive, and there's no `=' here.
7231 For the %skeleton entry, mention that %language is better.
7232 (Bison Options): Likewise for --language and --skeleton. Move the
7233 --skeleton entry so that the `Tuning the parser' section is sorted
7234 alphabetically on long options.
7235 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7236 %language directive in detail here; cross-reference the %language
7237 documentation instead.
7238 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7239 `%require "2.3b"' so that the example is always up-to-date.
7240 (Table of Symbols): Add entries for %language and %skeleton.
7241 * examples/extexi (normalize): Instead of replacing every %require
7242 argument with the current Bison version, just substitute for
7243 `@value{VERSION}'. This guarantees that we're testing what actually
7244 appears in the documentation.
7245 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7246 rather than `@VERSION@'.
7248 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7250 * NEWS: Reword the %language news a bit, and put it earlier.
7252 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7253 Rewrite to simplify the logic.
7254 (language_argmatch): Likewise.
7255 (program_name): We now own this var.
7256 * src/getargs.h (struct bison_language): Use char[] rather than
7259 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7261 * src/complain.c (program_name): Remove decl; no longer needed.
7262 * src/main.c (program_name): Remove; now belongs to getargs.
7264 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
7266 * NEWS: Document %language.
7268 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7270 * data/c-skel.m4, data/c++-skel.m4: New files.
7271 * data/glr.c: Complain on push parsers.
7273 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7275 (Decl Summary): Document %language and %skeleton.
7276 (Command line): Document -L.
7278 * examples/extexi: Rewrite %require directive.
7279 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7281 * src/files.c (compute_exts_from_gc): Look in language structure
7283 (compute_file_name_parts): Check whether .tab should be added.
7284 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7285 (language, skeleton_arg, language_argmatch): New.
7286 (long_options): Add --language.
7287 (getargs): Use skeleton_arg, add -L/--language.
7288 * src/getargs.h: Include location.h.
7289 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7290 * src/output.c (prepare): Pick default skeleton from struct language.
7291 Don't dispatch C skeletons here.
7292 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7293 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7294 * src/scan-gram.l ("%language"): New rule.
7296 * tests/calc.at: Test %skeleton and %language.
7297 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7298 (AT_GLR_IF): Look for %skeleton "glr.cc".
7299 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7300 (AT_YACC_IF): Reject %language.
7302 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7304 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7305 since it wasn't used; only the typedef name 'semantic_type' is needed.
7306 Also, omit trailing white space.
7308 * bootstrap: Sync from coreutils.
7309 (gnulib_extra_files): Add build-aux/announce.gen.
7310 (slurp): Adjust .gitignore files like .cvsignore files.
7311 * build-aux/announce-gen: Remove from CVS, since bootstrap
7314 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7316 Make %push-parser imply %pure-parser. This fixes several bugs; see
7317 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7318 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7320 * data/push.c: Don't bother testing b4_push_if when deciding whether
7321 to expand b4_declare_parser_variables globally.
7322 (yypush_parse): Likewise in here.
7324 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7325 (yy_reduce_print): Reformat M4 for readability.
7327 2006-12-15 Bob Rossi <bob@brasko.net>
7328 and Joel Denny <jdenny@ces.clemson.edu>
7330 * data/push.c (yypstate): Add typedef, and update all uses of
7331 struct yypstate to just yypstate.
7332 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7334 2006-12-14 Bob Rossi <bob@brasko.net>
7336 * data/push.c (yypush_parse): Declare prototype regardless of
7339 2006-12-14 Bob Rossi <bob@brasko.net>
7341 * data/push.c (yyparse): Remove the prototype and the #define when in
7344 2006-12-13 Bob Rossi <bob@brasko.net>
7346 * data/push.c (yypstate_init): Rename to...
7347 (yypstate_new): ... this and use b4_c_function_def.
7348 (yypstate_delete): New.
7349 (yypush_parse): Change parameters yynval and yynlloc to be const.
7350 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7351 yypstate_delete functions.
7353 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7355 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7356 strange test case titles. Reported by Bob Rossi.
7358 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7360 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7361 of potential ambiguities in GLR grammers.
7363 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7365 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7366 `bison ', use m4_index instead of m4_substr since chopping up a string
7367 containing M4-special characters causes problems here.
7369 Fix a couple of bugs related to special characters in user-specified
7370 file names, and make it easier for skeletons to compute output file
7371 names with the same file name prefix as Bison-computed output file
7373 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7374 b4_parser_file_name and b4_spec_defines_file instead of
7375 @output_parser_name@ and @output_header_name@, which are now redundant.
7376 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7377 b4_parser_file_name, b4_spec_defines_file, and the new
7378 @basename(FILENAME@) instead of @output_parser_name@ and
7379 @output_header_name@, which inappropriately escaped the file names as
7381 * src/files.c (all_but_ext): Remove static qualifier.
7382 (compute_output_file_names): Move `free (all_but_ext)' to...
7383 (output_file_names_free): ... here since all_but_ext is needed later.
7384 * src/files.h (all_but_ext): Extern.
7385 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7386 exactly what MUSCLE_INSERT_STRING used to do.
7387 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7388 characters are escaped properly.
7389 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7391 For pkgdatadir muscle, maintain previous functionality by using
7392 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7393 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7394 digraphs would never be expanded. Hopefully no one has M4-special
7395 characters in his Bison installation path.
7396 * src/scan-skel.l: Don't parse @output_header_name@ and
7397 @output_parser_name@ anymore since they're now redundant.
7398 In @output, use decode_at_digraphs.
7399 Parse a new @basename command that invokes last_component.
7400 (decode_at_digraphs): New.
7401 (BASE_QPUTS): Remove unused.
7402 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7403 (Output file name): New tests.
7405 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7407 Warn about output files that are generated by the skeletons and that
7408 conflict with other output files.
7409 * data/glr.c: Don't generate the header file here when glr.cc does.
7410 * src/files.c (file_names, file_names_count): New static globals.
7411 (compute_output_file_names): Invoke output_file_name_check for files
7412 not generated by the skeletons and remove existing checks.
7413 (output_file_name_check): New function that warns about conflicting
7415 (output_file_names_free): Free file_names.
7416 * src/files.h (output_file_name_check): Declare.
7417 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7419 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7420 (Conflicting output files): New tests.
7422 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7424 * doc/bison.texinfo: Fix a couple of typos.
7426 2006-12-08 Bob Rossi <bob@brasko.net>
7428 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7430 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7432 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7433 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7435 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7436 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7438 2006-12-07 Bob Rossi <bob@brasko.net>
7439 and Joel Denny <jdenny@ces.clemson.edu>
7441 * data/push.c (yypvarsinit): Change return type from void* to struct
7442 yypvars*. No longer cast to void* on return.
7443 (struct yypvars): Remove yylen since it need not be remembered between
7444 yypushparse invocations.
7445 (yypushparse): Don't copy between yylen and pv->yylen.
7447 2006-12-05 Bob Rossi <bob@brasko.net>
7449 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7450 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7451 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7452 (struct yypvars): Remove b4_declare_parser_variables.
7453 (yypvarsinit): Remove init code for removed variables.
7454 (global scope): Do not declare b4_declare_parser_variables if
7456 (yypushparse): Add b4_declare_parser_variables.
7457 Init new local variables, and remove init code for removed
7460 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7461 and yyparse for other modes.
7462 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7463 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7464 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7465 (AT_PURE_LEX_IF): True if pure or push parser.
7467 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7469 Document Yacc prologue alternatives and default %destructor's and
7470 %printer's as experimental. Don't mention Java yet. Discussed at
7471 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7472 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7473 (2.3a): Annotate this entry to say the old forms of these features were
7475 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
7476 Table of Symbols): Say they're experimental. Comment out any mention
7477 of Java (we'll want this back eventually).
7479 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7481 Support a file name argument to %defines. Deprecate `=' in
7482 %file-prefix, %name-prefix, and %output. Discussed at
7483 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7484 * NEWS (2.3a+): Mention.
7485 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
7486 form of %defines, and remove `=' from entries for %file-prefix,
7487 %name-prefix, and %output.
7488 * src/parse-gram.y (prologue_declaration): Implement.
7489 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7490 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7491 all but one occurrence of %name-prefix.
7492 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7493 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7494 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7495 occurrence of each of %file-prefix and %output. Add check for %defines
7497 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7498 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7499 Remove the `=' from %output.
7501 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7503 Don't escape $ in test case titles since Autoconf 2.61 now does that
7505 * tests/actions.at (Default %printer and %destructor are not for error
7506 or $undefined): Here.
7507 (Default %printer and %destructor are not for $accept): Here.
7508 * tests/input.at (Invalid $n and @n): Here.
7510 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7512 Rename <!> to <>. Discussed starting at
7513 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7514 * NEWS (2.3a+): Update.
7515 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
7517 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7518 * src/scan-gram.l (INITIAL): Implement.
7519 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7520 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7522 * tests/actions.at (Default tagless %printer and %destructor,
7523 Default tagged and per-type %printer and %destructor,
7524 Default %printer and %destructor are not for error or $undefined,
7525 Default %printer and %destructor are not for $accept,
7526 Default %printer and %destructor for mid-rule values): Update.
7527 * tests/input.at (Default %printer and %destructor redeclared,
7528 Unused values with default %destructor): Update.
7530 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7532 Don't let %prec take a nonterminal.
7533 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7535 * tests/input.at (%prec takes a token): New test checking that %prec
7536 won't take a nonterminal.
7538 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7540 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7541 it was double-quoted.
7542 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7543 grammar is maintained with Bison's highest standards.
7544 * src/getargs.c: Fix some typos in Doxygen comments.
7546 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7548 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7549 later. Reported by Paul Eggert in
7550 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7551 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7552 * src/scan-code.l (translate_action): Don't bother invoking
7553 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7554 (code_scanner_free): Instead of invoking
7555 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7557 * src/scan-gram.l (gram_scanner_free): Likewise.
7558 * src/scan-skel.l (scan_skel): Likewise.
7560 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7562 * src/files.c (tr): Change return type to void.
7563 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7564 has been called previously for the same key.
7565 (muscle_find): Return storage instead of value so that
7566 --enable-gcc-warnings doesn't produce warnings that the return discards
7567 const. aver that the value and storage are the same since storage
7568 could potentially be NULL when value is not.
7569 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7572 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7574 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7575 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7576 us a slightly cleaner distribution, and also works.
7577 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7580 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7581 and Paul Eggert <eggert@cs.ucla.edu>
7583 Don't let Bison leak memory except when it complains.
7584 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7585 (spec_defines_file, dir_prefix): Now char *, not const char *,
7586 since they are freed.
7587 * src/files.c: Likewise.
7588 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7590 (tr): Now operates in-place. All uses changed.
7591 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7593 (compute_file_name_parts, compute_output_file_names): Don't store
7594 read-only data in variables that will be freed.
7595 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7596 src_extension, and header_extension.
7597 (output_file_names_free): New public function to free
7598 spec_verbose_file, spec_graph_file, spec_defines_file,
7599 parser_file_name, and dir_prefix.
7600 * src/getargs.c (getargs): Don't store read-only data in variables that
7602 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7603 (which previously existed but was unused), and quotearg_free.
7604 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7605 * src/muscle_tab.c: Likewise.
7606 (muscle_entry): Make the value char const *,
7607 and add a new storage member that is char * and can be freed.
7608 (muscle_entry_free): New private function.
7609 (muscle_init): Use it instead of free.
7610 (muscle_insert, muscle_grow): Update and use new storage member.
7611 (muscle_code_grow): Free the string passed to muscle_grow
7612 since it's not needed anymore.
7613 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7614 add a new `char *code' member.
7615 ("{...}"): Declare semantic type as code.
7616 * src/scan-code.h (translate_rule_action):
7617 (translate_symbol_action, translate_code, translate_action): Return
7618 `char const *' rather than `char *' since external code should not free
7620 * src/scan-code.l: Likewise.
7621 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7622 which is "{...}" in the parser.
7623 * tests/Makefile.am (maintainer-check-valgrind): Set
7624 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7626 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7628 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7629 expecting a non-zero exit status sets --leak-check=summary and
7630 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7631 this case, and we don't want to hear about it.
7633 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7635 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7636 instead of from the template, to simplify configuration a bit.
7637 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7638 and m4/wint_t.m4, as they are needed with the latest gnulib.
7640 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7642 Disable unset/unused mid-rule value warnings by default, and recognize
7643 --warnings=midrule-values to enable them. Discussed starting at
7644 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7645 * NEWS (2.3a+): Mention.
7646 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7647 warnings): Add entry for midrule-values subargument.
7648 * src/reader.c (symbol_should_be_used): Don't return true just because
7649 the value is a set/used mid-rule value unless
7650 --warnings=midrule-values was specified.
7651 * tests/input.at (Unused values, Unused values before symbol
7652 declarations): Run tests with and without --warnings=midrule-values.
7654 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7655 than LIST_FREE directly.
7657 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7659 Finish implementing --warnings=error, which should not be implied by
7660 --warnings=all (or by its synonyms -W and --warnings without
7662 * src/complain.c (set_warning_issued): New function to report that
7663 warnings are being treated as errors and to record an error if so.
7665 (warn_at, warn): ... here.
7666 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7667 "error - warnings are errors" does not appear above "all - all of the
7669 (getargs): For -W and --warnings without subarguments, don't let
7670 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7671 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7673 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7675 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7676 empty subargument list. For example: `bison --warnings= parser.y'.
7678 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7680 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7681 the parser header file so that gcc doesn't warn.
7683 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7685 Split the default %destructor/%printer into two kinds: <*> and <!>.
7686 Discussed starting at
7687 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7688 * NEWS (2.3a+): Mention.
7689 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7690 previous change today related to mid-rules.
7691 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
7692 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
7693 (TYPE_TAG_ANY): Add as <*>.
7694 (TYPE_TAG_NONE): Add as <!>.
7695 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7697 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7698 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7699 * src/symlist.c (symbol_list_default_new): Split into tagged and
7701 (symbol_list_destructor_set, symbol_list_printer_set): Split
7702 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7703 SYMLIST_DEFAULT_TAGLESS.
7704 * src/symlist.h: Update symbol_list_default*_new prototypes.
7705 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7706 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7707 * src/symtab.c (default_destructor, default_destructor_location,
7708 default_printer, default_printer_location): Split each into tagged and
7710 (symbol_destructor_get, symbol_destructor_location_get,
7711 symbol_printer_get, symbol_printer_location_get): Implement tagged
7712 default and tagless default cases.
7713 (default_destructor_set, default_printer_set): Split each into tagged
7714 and tagless versions.
7715 * src/symtab.h: Update prototypes.
7716 * tests/actions.at (Default %printer and %destructor): Rename to...
7717 (Default tagless %printer and %destructor): ... this, and extend.
7718 (Per-type %printer and %destructor): Rename to...
7719 (Default tagged and per-type %printer and %destructor): ... this, and
7721 (Default %printer and %destructor for user-defined end token): Extend.
7722 (Default %printer and %destructor are not for error or $undefined):
7724 (Default %printer and %destructor are not for $accept): Update.
7725 (Default %printer and %destructor for mid-rule values): Extend.
7726 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7727 (Unused values with default %destructor): Extend.
7729 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7731 Don't apply the default %destructor/%printer to an unreferenced midrule
7733 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7734 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7735 like $@n instead of just @n so that the default %destructor/%printer
7736 logic doesn't see them as user-defined symbols.
7737 (symbol_is_dummy): Check for both forms of the name.
7738 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7739 name for which the midrule value is referenced in any action.
7740 * tests/actions.at (Default %printer and %destructor for mid-rule
7742 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7743 for change to dummy symbol names.
7745 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7747 Warn about unset midrule $$ if the corresponding $n is used.
7748 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7750 (packgram): Before invoking grammar_rule_check on any rule, make sure
7751 all actions have already been scanned in order to set `used' flags.
7752 Otherwise, checking that a midrule's $$ is set will not always work
7753 properly because the midrule check must forward-reference the midrule's
7755 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7758 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7760 More improvements to the documentation of the prologue alternatives:
7761 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7763 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7764 some text to clarify the relative importance of the new directives and
7765 to show how these directives may be viewed as code labels.
7767 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7769 Similar to the recently removed %before-header, add %code-top as the
7770 alternative to the pre-prologue. Mentioned at
7771 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7772 Also, let the prologue alternatives appear in the grammar section.
7773 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7774 (prologue_declaration): Move the existing prologue alternatives to...
7775 (grammar_declaration): ... here and add %code-top.
7776 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7778 Clean up and extend documentation for the prologue alternatives.
7779 * NEWS (2.3a+): Describe prologue alternatives.
7780 * doc/bison.texinfo (Prologue): Move discussion of prologue
7782 (Prologue Alternatives): ... this new section, and extend it to discuss
7783 all 4 directives in detail.
7784 (Table of Symbols): Clean up discussion of prologue alternatives and
7787 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7789 DJGPP specific issues.
7791 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7792 config.bat accordingly.
7793 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7794 * djgpp/config.site: Likewise.
7796 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
7798 Replace %*-header with %provides, %requires, %code. See discussion at
7799 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7801 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7802 (b4_user_start_header): Remove.
7803 * data/glr.c: Use new macros instead of b4_*start_header
7805 * data/glr.cc: Likewise.
7806 * data/lalr1.cc: Likewise.
7807 * data/push.c: Likewise.
7808 * data/yacc.c: Likewise.
7810 * doc/bison.texinfo: Remove %before-header, rename
7811 %{start,end,after}-header to %requires, %provides, %code.
7813 * src/parse-gram.y: Likewise (also rename token names accordingly).
7814 * src/scan-gram.l: Likewise.
7815 * tests/actions.at: Likewise.
7817 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7819 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7820 Problem reported by Joel E. Denny.
7822 2006-10-14 Jim Meyering <jim@meyering.net>
7824 (Sync from coreutils.)
7825 Work also when the working directory (with e.g. coreutils sources)
7826 is version controlled with git, rather than CVS.
7827 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7829 In messages and comments, say e.g., "checked-out sources",
7830 rather than "CVS sources".
7831 (version_controlled_file): New function. Work for git as well as
7832 for CVS. Don't use grep's -q option.
7833 (slurp): Call it here, in place of CVS-specific code.
7835 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7837 Fix testsuite for ./configure --enable-gcc-warnings:
7838 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7839 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7840 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7841 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7842 * test/regression.at (Diagnostic that expects two alternatives):
7845 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7847 * bootstrap.conf (gnulib_modules): Add config-h.
7848 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7849 worry about HAVE_CONFIG_H.
7850 * lib/abitset.c: Likewise.
7851 * lib/bitset.c: Likewise.
7852 * lib/bitset_stats.c: Likewise.
7853 * lib/bitsetv-print.c: Likewise.
7854 * lib/bitsetv.c: Likewise.
7855 * lib/ebitset.c: Likewise.
7856 * lib/get-errno.c: Likewise.
7857 * lib/lbitset.c: Likewise.
7858 * lib/subpipe.c: Likewise.
7859 * lib/timevar.c: Likewise.
7860 * lib/vbitset.c: Likewise.
7861 * lib/bitset.c: Include "bitset.h" first, to test interface.
7862 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7863 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7864 * lib/bitsetv.c: Include "bitsetv.h" first.
7865 * lib/get-errno.c: Include "get-errno.h" first.
7866 * m4/.cvsignore: Add config-h.m4.
7867 * tests/actions.at (Default %printer and %destructor for ...):
7868 Adjust expected line numbers in output to reflect removal of #if
7869 HAVE_CONFIG_H lines.
7870 * tests/glr-regression.at (Missed %merge type warnings when ...):
7872 * tests/regression.at (Braced code in declaration in rules section):
7874 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7875 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7876 Include <config.h> unconditionally.
7878 * bootstrap: Sync from coreutils, as follows:
7880 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7882 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7883 variable was sometimes used without being initialized. This
7884 messed up the installation of the INSTALL file in some cases.
7886 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7888 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7889 --copy. Inspired by a suggestion from Bruno Haible.
7891 2006-10-03 Jim Meyering <jim@meyering.net>
7893 * bootstrap: Undo last change to this file, since now gnulib-tool
7894 sticks with the automake default in generating dependencies.
7896 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7898 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7899 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7901 * doc/bison.1: Add copyright notice.
7903 * data/glr.c: Don't include <stdarg.h>; not used.
7905 * NEWS: The -g and --graph options now output graphs in Graphviz
7906 DOT format, not VCG format.
7907 * doc/bison.1: Likewise.
7908 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
7909 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7911 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
7912 * TODO: Remove Graphviz entry.
7913 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7914 remove vcg.c, vcg.h, vcg_defaults.h.
7915 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7916 * src/graphviz.c, src/graphviz.h: New files.
7917 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7918 * src/files.h: Make comment more generic.
7919 * src/main.c (main): Likewise.
7920 * src/print_graph.h: Likewise.
7921 * src/getargs.c (usage): Make usage description more generic.
7922 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7923 (static_graph, fgraph): Remove. All uses changed to pass
7924 arguments instead of sharing a static var.
7925 (print_core, print_actions, print_state, print_graph):
7926 Output graphviz format rather than VCG format.
7927 * tests/.cvsignore: Remove *.vcg; add *.dot.
7928 * tests/output.at: Expect *.dot files, not *.vcg files.
7930 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7931 accommodates the 2006-10-08 change.
7933 2006-10-11 Bob Rossi <bob@brasko.net>
7935 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7936 (b4_yyssa, b4_yyerror_range): New macros.
7937 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7938 (yypvarsinit): Remove init of removed fields.
7939 (yypushparse): Remove use of removed fields; use new macros instead.
7941 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7943 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7944 in a push parser. Reindent slightly to match yacc.c better.
7946 2006-10-11 Bob Rossi <bob@brasko.net>
7948 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7950 (yypvarsinit, yypushparse): Remove init of removed fields.
7951 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
7953 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7955 * THANKS: Add Paolo Bonzini and Bob Rossi.
7957 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
7959 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7960 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7961 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7962 b4_define_user_cde and uses): Remove.
7963 (b4_comment, b4_prefix, b4_sync_start): New.
7964 * data/bison.m4: New file, with most of the content removed from c.m4.
7965 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7966 * src/output.c (output_skeleton): Pass bison.m4.
7967 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7970 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7972 Fix test failure reported by Tom Lane in
7973 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7974 and try to make such failures easier to catch in the future.
7975 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7976 that's now the caller's responsibility.
7977 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7978 Set yychar = YYEOF if it's negative.
7979 * tests/actions.at (yylex): Abort if asked to read past EOF.
7980 * tests/conflicts.at (yylex): Likewise.
7981 * tests/cxx-type.at (yylex): Likewise.
7982 * tests/glr-regression.at (yylex): Likewise.
7983 * tests/input.at (yylex): Likewise.
7984 * tests/regression.at (yylex): Likewise.
7985 * tests/torture.at (yylex): Likewise.
7987 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7989 Fix problems with translating English-language diagnostics.
7990 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7991 respect to bison-runtime pot generation. The YY_ stuff
7992 wasn't being captured.
7993 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7994 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7995 * runtime-po/POTFILES.in: Add data/push.c.
7997 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7999 Merge bootstrap changes from coreutils.
8001 2006-09-28 Jim Meyering <jim@meyering.net>
8003 Automatically generated dependencies are important even
8004 when all of the sources in a directory come from gnulib.
8005 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8006 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8008 2006-09-23 Jim Meyering <jim@meyering.net>
8010 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8012 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8014 * bootstrap: Add support for --force.
8015 (usage): New function. Describe usage less tersely.
8016 (CVS_only_file): New var.
8018 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8020 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8021 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8022 Adjust white space and comments to match GNU style better.
8024 2006-09-20 Bob Rossi <bob@brasko.net>
8026 * data/push.c (yyresult_get): Remove function.
8027 (YYPUSH_MORE): Add #define.
8028 (yypushparse): Modify return value.
8030 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8032 * stamp-h.in: Remove; no longer needed.
8033 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8034 Remove config.h, config.hin, intl (no longer created).
8035 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8038 Sync bootstrap from coreutils, as follows:
8040 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8042 * bootstrap (symlink_to_gnulib): New function.
8043 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8044 to copies-of-gnulib.
8045 (cp_mark_as_generated, slurp, gnulib_files):
8046 Avoid making a copy if it's the same as the old version.
8047 (gnulib_files): Add support for this variable (used by Bison).
8049 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8051 * src/getargs.c (usage): Rework to use conventions similar to
8052 coreutils, to make translation a bit easier and the code a bit
8053 smaller. Problem reported by Tim Van Holder.
8055 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8057 Use some of gnulib's new modules, taken from coreutils.
8059 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8060 * bootstrap.conf: New file.
8061 (gnulib_modules): Add configmake, inttypes, unistd.
8062 (XGETTEXT_OPTIONS): Add complain, complain_at,
8063 fatal, fatal_at, warn, warn_at, unexpected_end.
8064 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8065 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8067 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8069 (GNULIB_AUTOCONF_SNIPPET): Remove.
8070 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
8072 * lib/.cvsignore: Add inttypes_.h.
8073 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
8074 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
8075 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
8076 no-longer-necessary initializations.
8077 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
8078 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
8079 use the unistd module.
8080 * src/system.h: Likewise.
8081 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
8082 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
8083 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
8084 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
8085 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8086 * src/system.h: Include inttypes.h unconditionally, now that we
8087 use the inttypes module. Don't bother to include stdint.h, since
8088 inttypes.h now does that for us.
8089 (LOCALEDIR): Remove, now that we use the configmake module.
8090 * src/getargs.c: Include configmake.h.
8091 * src/main.c: Likewise.
8092 * src/output.c: Likewise.
8093 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8094 not from $abs_top_builddir, since config.h moved.
8097 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8098 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8100 * src/parse-gram.y (symbol_declaration): Don't put statements
8101 before declarations; it's not portable to C89.
8102 * src/scan-code.l (handle_action_at): Likewise.
8104 * src/scan-code.l: Always initialize braces_level; the old code
8105 left it uninitialized and therefore had undefined behavior.
8107 Don't attempt to redefine 'assert', since it runs afoul of
8108 systems where standard headers (mistakenly) include <assert.h>.
8109 Instead, define and use our own alternative, called 'aver'.
8110 * src/reader.c: Don't include assert.h, since we no longer
8112 * src/scan-code.l: Likewise.
8113 * src/system.h (assert): Remove, replacing with....
8114 (aver): New function, taking a bool arg. All uses changed.
8115 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8116 not merely an integer.
8118 2006-09-15 Bob Rossi <bob@brasko.net>
8120 Add support for push parsing. Based on the original work of
8121 Odd Arild Olsen <oao@fibula.no>.
8122 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8123 * data/c.m4 (YYPUSH): New.
8124 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
8125 * data/push.c: New file.
8126 * src/getargs.c (push_parser): New var.
8127 * src/getargs.h (push_parser): New declaration.
8128 * src/output.c (prepare): Add macro insertion of `push_flag'.
8129 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8130 (prologue_declaration): Parse %push-parser.
8131 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8132 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8133 list of removed lines from the traces observed.
8134 (AT_CHECK_CALC_LALR): Added push parser tests.
8136 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8138 * NEWS: Version 2.3a.
8139 * configure.ac (AC_INIT): Likewise.
8141 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8142 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8143 due to header ordering dependencies. I don't know why the #define
8146 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8147 runtime cost when YYDEBUG is not defined, and so that some tests
8148 that used to fail now work. Problem and initial suggestion by
8150 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8151 * data/glr.cc (b4_parser_class_name):
8152 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8153 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8154 (yydebug_) [YYDEBUG]: New member.
8155 (yycdebug_): Now defined only if YYDEBUG.
8156 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8157 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8158 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8160 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8161 Define only if YYDEBUG.
8162 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8164 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8165 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8166 AT_CHECK_CALC_GLR_CC that are working now.
8168 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8170 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8171 We don't need them in glr.cc, and glr.c defines them.
8172 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8173 assumes that defining it to anything is the same as defining
8174 it to 1. Problem reported by Paolo Bonzini.
8176 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8178 * data/c.m4 (b4_null, b4_case): Define.
8179 * src/output.c (prepare_symbols): Use b4_null.
8180 (user_actions_output): Use b4_case.
8182 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8184 * data/glr.c (b4_shared_declarations): Put start-header first,
8185 before any #includes that we generate, so that feature-test
8186 macros work. Problem reported by Michael Deutschmann in
8187 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8188 * data/lalr1.cc: Likewise.
8189 * doc/bison.texinfo (Prologue): Document that feature-test macros
8190 should be defined before any Bison declarations.
8191 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8192 that depend on location.hh after, not before, Bison decls, since
8193 we now include location.hh after the first user prologue.
8195 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8196 Sander Brandenburg in
8197 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8198 Also, fix minor white space and comment issues.
8199 (Prologue): Mention that it's better to define feature-test macros
8200 before Bison declarations. Problem reported by Michael Deutschmann.
8202 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8204 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8205 This adjusts to recent gnulib changes.
8207 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8209 Finish implementation of per-type %destructor/%printer. Discussed
8211 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8213 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8214 * NEWS (2.3+): Add a description of this feature to the default
8215 %destructor/%printer description.
8216 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8217 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8218 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8219 list node contains a semantic type.
8220 * src/symtab.c, src/symtab.h: Extend with a table that associates
8221 semantic types with their %destructor's and %printer's.
8222 (semantic_type_from_uniqstr, semantic_type_get,
8223 semantic_type_destructor_set, semantic_type_printer_set): New functions
8224 composing the public interface of that table.
8225 (symbol_destructor_get, symbol_destructor_location_get,
8226 symbol_printer_get, symbol_printer_location_get): If there's no
8227 per-symbol %destructor/%printer, look up the per-type before trying
8229 * tests/actions.at (Per-type %printer and %destructor): New test case.
8230 * tests/input.at (Default %printer and %destructor redeclared):
8231 Extend to check that multiple occurrences of %symbol-default in a
8232 single %destructor/%printer declaration is an error.
8233 (Per-type %printer and %destructor redeclared, Unused values with
8234 per-type %destructor): New test cases.
8236 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8238 Require default %destructor/%printer to be declared using
8239 %symbol-default instead of an empty symbol list, and start working on
8240 new per-type %destructor/%printer. Discussed at
8241 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8242 * NEWS (2.3+): Add %symbol-default to example.
8243 * bison.texinfo (Freeing Discarded Symbols): Likewise.
8244 (Table of Symbols): Add entry for %symbol-default.
8245 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8246 (generic_symlist, generic_symlist_item): New nonterminals for creating
8247 a list in which each item is a symbol, semantic type, or
8249 (grammar_declaration): Use generic_symlist in %destructor and %printer
8250 declarations instead of symbols.1 or an empty list.
8251 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8252 for changes to symbol_list.
8253 * src/reader.c: Update for changes to symbol_list.
8254 * src/scan-code.l: Likewise.
8255 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8256 * src/symlist.c, src/symlist.h: Extend such that a list node may
8257 represent a semantic type or a %symbol-default in addition to just an
8258 ordinary symbol. Add switched functions for setting %destructor's and
8260 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8261 %destructor/%printer declarations.
8263 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8265 Whether the default %destructor/%printer applies to a particular symbol
8266 isn't a question of whether the user *declares* that symbol (in %token,
8267 for example). It's a question of whether the user by any means
8268 *defines* the symbol at all (by simply using a char token, for
8269 example). $end is defined by Bison whereas any other token with token
8270 number 0 is defined by the user. The error token is always defined by
8271 Bison regardless of whether the user declares it with %token, but we
8272 may one day let the user define error as a nonterminal instead.
8273 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8274 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8275 the meaning of "user-defined".
8276 * tests/actions.at (Default %printer and %destructor for user-declared
8277 end token): Rename to...
8278 (Default %printer and %destructor for user-defined end token): ...
8281 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8282 computation of whether to apply the default, don't maintain a list of
8283 every Bison-defined symbol. Instead, just check for a first character
8284 of '$', which a user symbol cannot have, and check for the error token.
8286 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8288 Don't apply the default %destructor or %printer to the error token,
8289 $undefined, or $accept. This change fits the general rule that the
8290 default %destructor and %printer are only for user-declared symbols,
8291 and it solves several difficulties that are described in the new test
8293 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8294 * tests/actions.at (Default %printer and %destructor are not for error
8295 or $undefined, Default %printer and %destructor are not for $accept):
8298 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8300 Allow %start after the first rule.
8301 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8302 when parsing the first rule.
8303 (check_and_convert_grammar): Search for it here after all grammar
8304 declarations have been parsed. Skip midrules, which have dummy LHS
8306 * src/symtab.c (symbol_is_dummy): New function.
8307 * src/symtab.h (symbol_is_dummy): Declare it.
8308 * tests/input.at (%start after first rule): New test.
8310 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8312 Redo some of the previous commit: add back the ability to use
8313 non-aliased/undeclared string literals since it might be useful to
8314 those declaring %token-table.
8315 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8316 commit: don't worry about complaints from symbols_pack.
8317 * src/symtab.c (symbol_new, symbol_class_set,
8318 symbol_check_alias_consistency): Undo changes in previous commit: count
8319 each string literal as a new symbol and token, assign it a symbol
8320 number, and don't complain about non-aliased string literals.
8321 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8322 and token counts but does still set aliased tokens to the same number,
8323 symbol_pack_processor now leaves empty slots in the symbols array.
8325 * tests/regression.at (Undeclared string literal): Remove test case
8326 added in previous commit since non-aliased string literals are allowed
8328 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8329 remove unnecessary string literal declarations.
8330 * tests/sets.at (Firsts): Likewise.
8332 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8334 Don't allow an undeclared string literal, but allow a string literal to
8335 be used before its declaration.
8336 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8337 symbols_pack complained.
8338 * src/symtab.c (symbol_new): Don't count a string literal as a new
8340 (symbol_class_set): Don't count a string literal as a new token, and
8341 don't assign it a symbol number since symbol_make_alias does that.
8342 (symbol_make_alias): It's not necessary to decrement the symbol and
8343 token counts anymore. Don't assume that an alias declaration occurs
8344 before any uses of the identifier or string, and thus don't assert that
8345 one of them has the highest symbol number so far.
8346 (symbol_check_alias_consistency): Complain if there's a string literal
8347 that wasn't declared as an alias.
8348 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8349 symbol_pack asserts that every token has been assigned a symbol number
8350 although undeclared string literals have not.
8351 * tests/regression.at (String alias declared after use, Undeclared
8352 string literal): New test cases.
8353 (Characters Escapes, Web2c Actions): Declare string literals as
8355 * tests/sets.at (Firsts): Likewise.
8357 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8359 In the grammar scanner, STRING_FINISH unclosed constructs and return
8360 them to the parser in order to improve error messages.
8361 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8362 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8363 * tests/input.at (Unclosed constructs): New test case.
8364 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8367 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8370 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8372 Handle string aliases for character tokens correctly.
8373 * src/symtab.c (symbol_user_token_number_set): If the token has an
8374 alias, check and set its alias's user token number instead of its own,
8375 which is set to indicate the alias. Previously, every occurrence of
8376 the character token in the grammar overwrote that alias indicator with
8378 * tests/input.at (String aliases for character tokens): New test.
8380 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8382 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8384 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8386 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8387 to prevent failures when building on older platforms.
8388 Check for autopoint failure.
8389 Set XGETTEXT_OPTIONS to values that check for C format strings,
8390 so that translators are warned about them (this also helps
8391 prevent core dumps).
8393 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8394 function, since it simplifies our code a bit.
8396 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8397 rather than -W, so we don't get bogus warnings about sign comparisons.
8398 Add -Wpointer-arith, since that warning is useful (it reports code
8399 that does not conform to C89 and that some compilers reject).
8400 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8401 since it's no longer needed.
8403 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8405 Clean up scanners a bit.
8406 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8407 definitions so gcc won't warn when obstack_for_string is unused.
8408 * src/scan-code.l: config.h and system.h are already #include'd by
8409 scan-code-c.c, so get rid of them here.
8410 * src/scan-gram.l: Likewise.
8411 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8412 definitions rather than duplicating the rest of it.
8413 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8415 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8417 Suppress signed/unsigned comparison warnings for yycheck.
8418 * data/c.m4 (b4_safest_int_type): New macro.
8419 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8420 a signed int type, cast it to b4_safest_int_type first.
8421 * data/yacc.c: Likewise.
8422 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8425 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8427 * doc/bison.texinfo: Fix some typos.
8429 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8431 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8432 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8434 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8435 the latest gnulib does this a different way.
8436 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8437 translation was patched, so stop omitting it.
8439 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8441 Enable declaration of default %printer/%destructor. Make the parser
8442 use these for all user-declared grammar symbols for which the user does
8443 not declare a specific %printer/%destructor. Thus, the parser uses it
8444 for token 0 if the user declares it but not if Bison generates it as
8445 $end. Discussed starting at
8446 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8447 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8449 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8450 * NEWS (2.3+): Mention.
8451 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8452 declare a %destructor for a mid-rule's semantic value. It's just
8453 impossible to declare one specific to it.
8454 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8455 code. Describe default %destructor form.
8456 * src/parse-gram.y (grammar_declaration): Parse default
8457 %printer/%destructor declarations.
8458 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8459 and symbol_destructor_location_get rather than accessing the destructor
8460 and destructor_location members of struct symbol.
8461 (symbol_printers_output): Likewise but for %printer's.
8462 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8464 * src/symtab.c (default_destructor, default_destructor_location,
8465 default_printer, default_printer_location): New static global
8466 variables to record the default %destructor and %printer.
8467 (symbol_destructor_get, symbol_destructor_location_get,
8468 symbol_printer_get, symbol_printer_location_get): New functions to
8469 compute the appropriate %destructor and %printer for a symbol.
8470 (default_destructor_set, default_printer_set): New functions to set the
8471 default %destructor and %printer.
8472 * src/symtab.h: Prototype all those new functions.
8473 * tests/actions.at (Default %printer and %destructor): New test to
8474 check that the right %printer and %destructor are called, that they're
8475 not called for $end, and that $$ and @$ work correctly.
8476 (Default %printer and %destructor for user-declared end token): New
8477 test to check that the default %printer and %destructor are called for
8478 a user-declared end token.
8479 * tests/input.at (Default %printer and %destructor redeclared, Unused
8480 values with default %destructor): New tests to check related grammar
8481 warnings and errors.
8483 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8485 Clean up handling of %destructor for the end token (token 0).
8486 Discussed starting at
8487 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8489 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8491 Make the skeletons consistent in how they pop the end token and invoke
8493 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8494 state, which has token number 0, since this would invoke the
8495 %destructor for the end token.
8496 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8497 until after shifting the end token, or else it won't be popped.
8498 * data/yacc.c (yyparse): Likewise.
8500 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8501 it's the end token. Upon termination, destroy an unshifted lookahead
8502 even when it's the end token.
8503 * data/lalr1.cc (yy::parser::parse): Likewise.
8504 * data/yacc.c (yyparse): Likewise.
8506 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8507 value warnings for the end token when the user gives the end token a
8510 * tests/actions.at (Printers and Destructors): Test all the above.
8512 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8514 Update to latest gnulib and gettext versions.
8515 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8517 (gnulib_files): Add m4/warning.m4. Don't worry about files
8518 overwritten by autopoint.
8519 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8520 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8522 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8523 so that we can remove the intl files at a better time.
8524 (intl_files_to_remove): Remove aclocal.m4, since it gets
8525 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8526 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8527 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8528 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8529 Remove datarootdir hack; no longer needed.
8530 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8531 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8532 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8534 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8535 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8537 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8539 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8540 it with --assume-autoconf='latest-stable'.
8542 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8544 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8545 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8547 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8548 those from muscle_tab.c since the old ones are misleading.
8550 2006-07-13 Akim Demaille <akim@epita.fr>
8552 Support %define "KEY" {VALUE}.
8553 * src/scan-code.h, src/scan-code.l (translate_action)
8554 (translate_rule_action, translate_symbol_action, translate_code):
8555 Return char *, not const char *.
8556 * src/parse-gram.y (declaration): Rename as...
8557 (prologue_declaration): this.
8558 (string_content): Remove this nonterminal, use STRING.
8559 (braceless, content, content.opt): New nonterminal.
8561 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8563 * src/scan-gram.l (getargs.h): Don't include it.
8565 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8567 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8568 rather than a for-loop that declares a local bool variable. This
8569 should work around a compatibility problem with a Cray x1e C++
8570 compiler reported by Hung Nguyen in
8571 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8572 The for-loop was introduced in the 2004-11-17 change but I don't
8573 know why it was needed.
8575 2006-07-12 Akim Demaille <akim@epita.fr>
8577 * data/c.m4: Comment changes.
8579 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
8581 * src/complain.c (error_message, ERROR_MESSAGE): New.
8583 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8584 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8586 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8588 * NEWS: Instead of %union, you can define and use your own union type
8589 YYSTYPE if your grammar contains at least one <type> tag.
8590 Your YYSTYPE need not be a macro; it can be a typedef.
8591 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8592 (Union Decl, Decl Summary): Document this.
8593 * data/glr.c (YYSTYPE): Implement this.
8594 * data/glr.cc (YYSTYPE): Likewise.
8595 * data/lalr1.cc (YYSTYPE): Likewise.
8596 * data/yacc.c (YYSTYPE): Likewise.
8597 * src/output.c (prepare): Output tag_seen_flag.
8598 * src/parse-gram.y (declaration, grammar_declaration):
8599 Use 'union_seen' rather than 'typed' to determine whether
8600 %union has been seen, since grammars can now be typed without
8602 (symbol_declaration, type.opt, symbol_def):
8603 Keep track of whether a tag has been seen.
8604 * src/reader.c (union_seen, tag_seen): New vars.
8606 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8607 * src/scan-code.l (untyped_var_seen): New variable.
8608 (handle_action_dollar): Adjust to above changes.
8609 (handle_action_dollar, handle_action_at):
8610 Improve overflow checking for outlandish numbers.
8611 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8612 avoid new diagnostics generated by above changes.
8613 * tests/regression.at (YYSTYPE typedef): Add test to check
8614 for type tags without %union.
8616 * src/symlist.c (symbol_list_length): Return int, not unsigned
8617 int, since callers expect int. This may need to get revisited
8618 once we have proper integer overflow checking.
8620 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8621 object is now static.
8623 * src/getargs.c (flags_argmatch): Return void, not int,
8624 to pacify ./configure --enable-gcc-warnings.
8626 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8627 since last_string is already defined to FLEX_PREFIX (last_string).
8629 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8631 Implement --warnings/-W.
8632 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8634 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8636 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8637 (warnings_args, warnings_types): New.
8638 (getargs, short_options, long_options): Accept -W/--warnings.
8639 Sort the options by alphabetical order, upper case letter right
8640 before its lower case.
8642 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8644 Change %merge result type clash warnings to errors. Discussed at
8645 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8646 * src/reader.c (record_merge_function_type): Use complain_at.
8647 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8648 declared later): Update test case results.
8650 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8652 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8653 to be in alphabetical order.
8654 (trace_args): Spelling fixes.
8656 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8658 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8659 so they don't collide with user-defined macros.
8660 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8661 this was never guaranteed, and now that we're using gnulib stdint,
8662 which defines int_fast16_t to long int, the problem is exposed.
8664 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8666 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8667 need the full POSIX semantics (and weren't implementing them
8670 Adjust to Autoconf 2.60 and today's gnulib.
8671 * bootstrap (gnulib_modules): Add stdint.
8672 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8673 no longer copies it.
8674 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8675 since stdint needs the former and wcwidth (which is now required
8676 by mbswidth) needs the latter.
8677 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8678 work around a compatibility glitch between gettext 0.14.6 and
8680 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8681 Do not check for uintptr_t, since new stdint module does the right
8683 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8684 Add stdint.h, stdint_.h, wcwidth.h.
8685 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8686 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8687 stdint.m4, wchar_t.m4, wcwidth.m4.
8688 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8689 usual order for ../lib/*.h files.
8690 (file_name_split): Use last_component, not base_name, to adjust
8692 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8693 for ../lib/*.h files.
8694 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8695 Define unconditionally, since we now assume the stdint module.
8696 * src/scan-skel.l: Include <dirname.h>.
8697 (BASE_QPUTS): Use last_component, not base_name.
8698 * src/system.h: Include <unlocked-io.h> in the usual order
8699 for ../lib/*.h files. Include <stdint.h> unconditionally,
8700 since we now use the stdint module.
8701 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8702 HAVE_UINTPTR_T, since we now use the stdint module.
8703 (base_name): Remove decl, since files now include <dirname.h>
8706 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8708 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8710 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8711 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8713 * tests/calc.at: Adjust.
8715 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8717 * data/c.m4 (b4_basename): New.
8718 (b4_syncline): Also output the location of its invocation (from
8720 (b4_user_action, b4_define_user_action, b4_user_actions)
8721 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8722 (b4_user_stype): New.
8723 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8725 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8727 In the grammar file, the first column is 1 not 0 on the first line as
8728 on every other line.
8729 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8730 * tests/input.at (Torturing the Scanner): Update output.
8732 * src/scan-gram.l (scanner_cursor): Declare it static.
8734 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8736 In warnings, say "previous declaration" rather than "first
8738 * src/symtab.c (redeclaration): Do that here.
8739 * src/reader.c (record_merge_function_type): In the case of a result
8740 type clash, report the previous declaration rather than the very first
8741 one in the grammar file.
8742 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8743 declared later): Add a third declaration to check this behavior.
8744 * tests/input.at (Incompatible Aliases): Update output.
8746 2006-06-27 Akim Demaille <akim@epita.fr>
8748 * doc/Doxyfile.in: New.
8749 * doc/Makefile.am: Use it.
8750 * src/lalr.h, src/symtab.h: Initial doxygenation.
8752 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8754 Don't miss %merge result type warnings just because the LHS types are
8755 declared after the %merge. This continues the effort of the previous
8757 * src/reader.c (get_merge_function): Don't set the merger type yet.
8758 (record_merge_function_type): New function for setting the merger type
8759 and checking for clashes.
8760 (grammar_current_rule_merge_set): Set the location of the %merge for
8762 (packgram): Invoke record_merge_function_type for each rule now that
8763 all symbol type declarations have been parsed.
8764 * src/reader.h (merger_list.type_declaration_location): New member
8765 storing the location of the first %merge from which the type for this
8766 merging function was derived.
8767 * src/symlist.h (symbol_list.merger_declaration_location): New member
8768 storing the location of a rule's %merge, if any.
8769 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8770 declared later): New test to catch the error fixed by the above patch.
8772 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8774 Get action warnings (grammar_rule_check) right even when symbol
8775 declarations appear after the rules. Discussed at
8776 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8778 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8779 Don't mistake the type of $$ in a midrule to be that of its parent
8781 * src/reader.c (grammar_current_rule_end): Don't invoke
8782 grammar_rule_check yet since not all symbol declarations may have been
8784 (grammar_midrule_action): Likewise.
8785 Don't record whether the midrule's $$ has been used yet since actions
8786 haven't been translated yet.
8787 Record the midrule's parent rule and its RHS index within the parent
8789 (grammar_current_rule_action_append): Don't translate the action yet
8790 since not all symbol declarations may have been parsed yet and, thus,
8791 warnings about types for $$, $n, @$, and @n can't be reported yet.
8792 (packgram): Translate the action and invoke grammar_rule_check now that
8793 all symbol declarations have been parsed.
8794 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8795 after parsing the entire grammar file, the symbol list here in the case
8796 of a midrule is actually the midrule's empty RHS, so reference its
8797 parent rule's RHS where necessary.
8798 On the other hand, now that you can already know it's a midrule, you
8799 aren't forced to think $$ has the same type as its parent rule's $$.
8800 (handle_action_at): In the case of a midrule, reference the parent rule
8802 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8804 (symbol_list_length): Now that this is invoked after all rules have
8805 been parsed, a NULL symbol (rather than a NULL symbol list node)
8806 terminates a rule. symbol_list_print already does this correctly.
8807 * src/symlist.h (symbol_list.midrule_parent_rule,
8808 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8809 remember their relationships with their parents.
8810 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8811 fixed by the above patch.
8812 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8814 (Unused values): ... this old test case and...
8815 (Unused values before symbol declarations): ... this new test case.
8816 This one is the same as `Unused values' except that all symbol
8817 declarations appear after the rules in order to catch the rest of the
8818 errors fixed by the above patch.
8820 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8823 * src/reader.c (current_rule): Declare it static since it's no longer
8824 used outside this file.
8825 (grammar_current_rule_action_append): Remove redundant arguments from
8826 translate_rule_action invocation.
8827 * src/reader.h (current_rule): Remove this unused extern.
8828 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8829 * src/scan-code.l (translate_rule_action): Likewise.
8831 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8833 Clean up yesterday's patch.
8834 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8836 * src/reader.c (grammar_current_rule_action_append): ... here for
8837 consistency with grammar_current_rule_symbol_append.
8838 * tests/regression.at (Braced code in declaration in rules section):
8839 Make yyerror and yylex static as usual.
8841 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8843 Fix bug that mistakes braced code in a declaration in the rules section
8844 to be a rule action. Mentioned at
8845 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8846 * src/scan-gram.l: Move midrule action detection from the start of the
8847 scanning of any braced code to...
8848 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8849 action. For readability, use $2 and @2 rather than the equivalent
8851 * tests/regression.at (Braced code in declaration in rules section):
8852 New test to catch the error fixed by the above patch.
8854 Work on code readability some.
8855 * src/scan-code.l (current_rule): Get rid of this misleading and
8856 redundant declaration: it's actually extern'ed in reader.h.
8857 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8858 translate_action): Add a rule argument and use it instead of the global
8860 (translate_rule_action): This already receives current_rule through an
8861 argument, so pass it on to translate_action instead of assigning
8862 current_rule to current_rule.
8863 (translate_symbol_action, translate_code): Pass rule = NULL to
8866 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8868 Rename %before-definitions to %start-header and %after-definitions to
8869 %end-header. Don't use these declarations to separate pre-prologue
8870 blocks from post-prologue blocks. Add new order-independent
8871 declarations %before-header and %after-header as alternatives to the
8872 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8873 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8874 * NEWS (2.3+): Update for these changes.
8875 * data/glr.c (b4_before_definitions): Update to...
8876 (b4_start_header): ... this.
8877 (b4_after_definitions): Update to...
8878 (b4_end_header): ... this.
8879 * data/glr.cc: Likewise.
8880 * data/lalr1.cc: Likewise.
8881 * data/yacc.c: Likewise.
8882 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8883 prologue blocks with %*-header declarations.
8884 (Calc++ Parser): Likewise.
8885 (Decl Summary): Update names.
8886 (Table of Symbols): Update description.
8887 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8888 (PERCENT_END_HEADER): ... this.
8889 (PERCENT_BEFORE_DEFINITIONS): Update to...
8890 (PERCENT_START_HEADER): ... this.
8891 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8892 (declaration): Update token names and m4 macro names.
8893 When parsing %end-header and %start-header, invoke translate_code
8894 before muscle_code_grow, and no longer set global booleans to remember
8895 whether these declarations have been seen.
8896 Parse new %after-header and %before-header.
8897 * src/reader.c (before_definitions, after_definitions): Remove.
8898 (prologue_augment): Accept a new bool argument to specify whether to
8899 augment the pre-prologue or post-prologue.
8900 * src/reader.h (before_definitions, after_definitions): Remove these
8902 (prologue_augment): Add new bool argument.
8903 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8904 (PERCENT_END_HEADER): ... this.
8905 (PERCENT_BEFORE_DEFINITIONS): Update to...
8906 (PERCENT_START_HEADER): ... this.
8907 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8908 * tests/actions.at (Printers and Destructors): Update names.
8910 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8912 Add comparison operators for C++ location classes. Discussed at
8913 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8914 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8915 declaration indicating whether filename_type has an operator==. If
8916 filename_type is `std::string', it defaults to `1', `0' otherwise.
8917 * data/location.cc: Iff b4_define_location_comparison is `1', add
8918 operator== and operator!= for class position and for class location.
8921 * src/scan-action.l: Remove unused file.
8922 * src/symtab.c (symbol_printer_set): Use printer_location not
8923 destructor_location.
8924 * src/symtab.h (struct symbol): Replace incorrect source comment for
8926 * tests/input.at (Incompatible Aliases): Update output with correct
8929 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8931 Don't put the pre-prologue in the header file. For the yacc.c code
8932 file and the glr.c header and code files, move the pre-prologue before
8933 the token definitions. Add new %before-definitions and
8934 %after-definitions to declare code that will go in both the header file
8935 and code file. Discussed at
8936 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8937 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8939 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8940 * NEWS (2.3+): Describe these changes.
8941 * data/glr.c (b4_pre_prologue): Move from within to before...
8942 (b4_shared_declarations): ... this.
8943 Add new b4_before_definitions before b4_token_enums.
8944 Add new b4_after_definitions at the end.
8945 * data/glr.cc (b4_pre_prologue): Replace with...
8946 (b4_before_definitions): ... this in the header file.
8947 (b4_after_definitions): New near the end of the header file.
8948 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8949 code file right before including the header file.
8950 (b4_before_definitions): New in the previous position of
8951 b4_pre_prologue in the header file.
8952 (b4_after_definitions): New near the end of the header file.
8953 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8954 (b4_token_enums_defines): In the code file, move to right before
8955 YYSTYPE for consistency with the header file.
8956 (b4_before_definitions): New right before b4_token_enums_defines in
8957 both the header and code file.
8958 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8959 header and code file.
8960 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8961 of prologues for %union dependencies.
8962 (Decl Summary): In %defines description, mention the effect of
8963 %before-definitions and %after-definitions on the header file.
8964 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8965 than in the pre-prologue so that make check succeeds.
8966 (Table of Symbols): Add entries for %before-definitions and
8968 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8969 %before-definitions.
8970 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8971 (declaration): Parse those declarations and append to
8972 b4_before_definitions and b4_after_definitions, respectively.
8973 * src/reader.c (before_definitions, after_definitions): New bools to
8974 track whether those declarations have been seen.
8975 (prologue_augment): Add to the post-prologue if %union,
8976 %before-definitions, or %after-definitions has been seen.
8977 * src/reader.h (before_definitions, after_definitions): New extern's.
8978 * src/scan-gram.l: Scan the new declarations.
8979 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8980 prologue block in a %before-definitions or a %after-definitions based
8981 on whether the %union is declared.
8982 * tests/regression.at (Early token definitions with --yacc, Early token
8983 definitions without --yacc): Move tests for token definitions into the
8984 post-prologue since token names are no longer defined in the
8987 2006-06-20 Akim Demaille <akim@epita.fr>
8989 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8990 (symbol_get): Use it.
8991 * src/parse-gram.y: Use it.
8993 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8995 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8996 build succeeds when configured with --enable-gcc-warnings.
8998 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9000 * src/parse-gram.y (char_name): New function.
9001 (CHAR, STRING, string_content): For %printer, properly escape.
9002 (ID): Prefer fputs to fprintf.
9003 (id): Reindent to be consistent with other rules.
9004 Properly quote char.
9006 The Translation Project changed its way of publishing translations
9007 to maintainers. I haven't received any responses to my request
9008 for supporting the old way, or for documenting the new way. I
9009 have modified 'bootstrap' to use screen scraping
9010 (in this case, HTML scraping). This is unreliable and inelegant,
9011 but I don't see any better way. Yuck.
9012 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9013 (get_translations): New function, which uses HTML scraping to
9014 deduce locations of latest translations.
9015 Use this function to grab both bison and bison-runtime .po files.
9016 Don't bother priming the pump for the runtime-po domain any more,
9017 as it's now translated better than bison is.
9019 2006-06-19 Akim Demaille <akim@epita.fr>
9021 * src/scan-gram.l: No longer "parse" things after `%union' until
9022 `{'. Rather, return a single "%union" token.
9023 No longer make symbols: return strings, and leave the conversion
9024 to symbols to the parser.
9025 (SC_PRE_CODE, token_type): Remove.
9026 * src/parse-gram.y (%union): New field `character'.
9029 (ID, ID_COLON): Now that the scanner no longer makes them
9030 identifiers, adjust all uses to invoke symbol_get.
9031 (id_colon): New, wraps the conversion from string to symbol.
9032 (%union): Accept a possible union_name.
9033 (symbol): Now can be a char.
9034 * data/c.m4 (b4_union_name): Leave a default value.
9035 * data/glr.c, data/yacc.c: Use it.
9037 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9039 For associating token numbers with token names for "yacc.c", don't use
9040 #define statements unless `--yacc' is specified; always use enum
9041 yytokentype. Most important discussions start at:
9042 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9043 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9045 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9046 * NEWS (2.3+): Mention.
9047 * data/c.m4 (b4_yacc_if): New.
9048 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9050 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9051 on token name definitions.
9052 * src/getargs.c (usage): Capitalize `Yacc' in English.
9053 * src/output.c (prepare): Define b4_yacc_flag.
9054 * tests/regression.at (Early token definitions): Test that tokens names
9055 are defined before the pre-prologue not just before the post-prologue.
9056 Remove this test case and copy to...
9057 (Early token definitions with --yacc): ... this to test #define's.
9058 (Early token definitions without --yacc): ... and this to test enums.
9060 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9062 * NEWS: Reword the post-2.3 change to not be so optimistic about
9063 removing the old "look-ahead" spelling.
9064 Update previous look-ahead/lookahead change reports.
9065 * REFERENCES: look-ahead -> lookahead (since that's
9066 what he actually wrote).
9067 * doc/refcard.tex: look ahead -> lookahead,
9068 look-ahead -> lookahead
9070 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
9072 For consistency, use `lookahead' instead of `look-ahead' or
9073 `look_ahead'. Discussed starting at
9074 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
9076 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
9077 * NEWS: For the next release, note the change to `--report'.
9078 * TODO, doc/bison.1: Update English.
9079 * doc/bison.texinfo: Update English.
9080 (Understanding Your Parser, Bison Options): Document as
9081 `--report=lookahead' rather than `--report=look-ahead'.
9082 * src/conflicts.c: Update English in comments.
9083 (lookahead_set): Rename from look_ahead_set.
9084 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
9085 (resolve_sr_conflict): Rename local look_ahead_tokens to
9086 lookahead_tokens, and update other uses.
9087 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9088 count_rr_conflicts, conflicts_free): Update uses.
9089 * src/getargs.c (report_args): Move "lookahead" before alternate
9091 (report_types): Update uses.
9092 (usage): For `--report' usage description, state `lookahead' spelling
9093 rather than `look-ahead'.
9094 * src/getargs.h (report.report_lookahead_tokens): Rename from
9095 report_look_ahead_tokens.
9096 * src/lalr.c: Update English in comments.
9097 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9098 (state_lookahead_tokens_count): Rename from
9099 state_look_ahead_tokens_count.
9100 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9101 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9102 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9104 Update English in output.
9105 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9106 * src/print.c: Update English in comments.
9107 (lookahead_set): Rename from look_ahead_set.
9108 (print_reduction): Rename argument lookahead_token from
9110 (print_core, state_default_rule, print_reductions, print_results):
9112 * src/print_graph.c: Update English in comments.
9113 (print_core): Update uses.
9114 * src/state.c: Update English in comments.
9115 (reductions_new): Update uses.
9116 (state_rule_lookahead_tokens_print): Rename from
9117 state_rule_look_ahead_tokens_print, and update other uses.
9118 * src/state.h: Update English in comments.
9119 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9120 (state_rule_lookahead_tokens_print): Rename from
9121 state_rule_look_ahead_tokens_print.
9122 * src/tables.c: Update English in comments.
9123 (conflict_row, action_row): Update uses.
9124 * tests/glr-regression.at
9125 (Incorrect lookahead during deterministic GLR,
9126 Incorrect lookahead during nondeterministic GLR): Rename
9127 print_look_ahead to print_lookahead.
9128 * tests/torture.at: Update English in comments.
9129 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9130 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9131 (Many lookahead tokens): Update uses.
9132 * data/glr.c: Update English in comments.
9133 * lalr1.cc: Likewise.
9135 * src/conflicts.h: Likewise.
9136 * src/lalr.h: Likewise.
9137 * src/main.c: Likewise.
9138 * src/output.c: Likewise.
9139 * src/parse-gram.c: Likewise.
9140 * src/tables.h: Likewise.
9141 * tests/calc.at: Likewise.
9143 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9145 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9147 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9149 * TODO: Add request from Nelson H. F. Beebe to be able to install
9150 Bison without installing the yacc script.
9152 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9154 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9155 and yytext if they're already #define'd.
9156 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9157 * src/scan-code-c.c: ... here.
9158 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9161 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9163 Get Bison to build again when configured with --enable-gcc-warnings.
9164 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9166 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9167 loc argument as it shadows a global.
9168 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9171 * src/.cvsignore: Add scan-code.c.
9173 2006-06-07 Akim Demaille <akim@epita.fr>
9175 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9177 * src/scan-code.l: here.
9178 * tests/input.at (Torturing the Scanner): Fix another location
9181 2006-06-07 Akim Demaille <akim@epita.fr>
9183 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9185 2006-06-06 Akim Demaille <akim@epita.fr>
9187 Extract the parsing of user actions from the grammar scanner.
9188 As a consequence, the relation between the grammar scanner and
9189 parser is much simpler. We can also split "composite tokens" back
9191 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9192 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9194 * src/location.h, src/location.c (add_column_width)
9195 (location_compute): these.
9196 Fix the column count: the initial column is 0.
9197 (location_print): Be robust to ending column being 0.
9198 * src/location.h (boundary_set): New.
9199 * src/main.c: Adjust to scanner_free being renamed as
9201 * src/output.c: Include scan-code.h.
9202 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9204 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9205 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9206 which is now, again, a separate token.
9207 Adjust all dependencies.
9208 Whereever actions with $ and @ are used, use translate_code.
9209 (action): Remove this nonterminal which is now useless.
9210 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9211 (grammar_current_rule_action_append): Use translate_code.
9212 (packgram): Bound check ruleno, itemno, and rule_length.
9213 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9214 (last_string, last_braced_code_loc, max_left_semantic_context)
9215 (scanner_initialize, scanner_free, scanner_last_string_free)
9216 (gram_out, gram_lineno, YY_DECL_): Move to...
9217 * src/scan-gram.h: this new file.
9218 (YY_DECL): Rename as...
9220 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9221 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9222 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9223 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9224 Move these declarations, and...
9225 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9227 * src/flex-scanner.h: this new file.
9228 * src/scan-gram.l (rule_length, rule_length_overflow)
9229 (increment_rule_length): Remove.
9230 (last_braced_code_loc): Rename as...
9231 (gram_last_braced_code_loc): this.
9232 Adjust to the changes of the parser.
9233 Move all the handling of $ and @ into...
9234 * src/scan-code.l: here.
9235 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9236 (handle_action_dollar, handle_action_at): Move to...
9237 * src/scan-code.l: here.
9238 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9239 scan-code.h, scan-code-c.c, scan-gram.h.
9240 (EXTRA_bison_SOURCES): Add scan-code.l.
9241 (BUILT_SOURCES): Add scan-code.c.
9242 (yacc): Be robust to white spaces.
9244 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9245 * tests/regression.at: Adjust the column numbers.
9246 * tests/regression.at: Adjust the error message.
9248 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9250 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9251 Use Akim's wording from
9252 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9254 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9256 Between Bison releases, manually append `+' to the previous Bison
9257 release number, and use that as a signal to automatically print the
9258 ChangeLog's CVS Id keyword from --version. Discussed starting at
9259 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9260 * ChangeLog: Add Id header.
9261 * configure.ac (AC_INIT): Append `+' to `2.3'.
9262 * src/.cvsignore: Add revision.c.
9263 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9264 (BUILT_SOURCES): Add revision.c.
9265 (revision.c): New target rule. This file defines a new global variable
9266 named revision. It initializes it with either the Id from ChangeLog
9267 or, if VERSION doesn't contain `+', with the empty string.
9268 * src/getargs.c (version): Print the value of revision.
9269 * src/revision.h: Extern revision.
9271 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9273 * NEWS: Version 2.3.
9274 * configure.ac (AC_INIT): Likewise.
9276 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9278 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9279 with no arguments, not as an object-like macro. This is for
9280 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9281 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9282 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9285 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9287 * src/getargs.c (usage): Back out yesterday's modification of the
9288 --help output so that we don't have to wait for translation before
9291 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9293 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9294 Problem reported by Akim Demaille.
9296 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9298 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9300 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9302 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9303 generated source code. Problem reported by Frans Englich in
9304 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9306 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9308 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9309 shell, not within 'make', so that 'make' by an ordinary builder
9310 (using GNU make) does not worry about configuring gzip. This also
9311 works around a bug reported independently by Keith Thompson and by
9312 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9313 stderr rather than stdout, messing up the build logs.
9315 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9317 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9318 to make sure that YYID will never be unused. This fixes a 'make
9319 maintainer-check' failure caused by the recent changes to the 'Trivial
9320 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9322 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9324 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9326 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9327 state before an empty RHS is always resolved here. Only the location
9328 of that state is guaranteed to be resolved, and that's enough. This
9329 fixes the remaining bug reported by Derek M. Jones in
9330 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9331 * tests/glr-regression.at (Uninitialized location when reporting
9332 ambiguity): Test the above case.
9333 Also, the embedded comments in this test case claim it checks the case
9334 of an empty RHS that has inherited the initial location. However, the
9335 corresponding LHS was already resolved, so yyresolveLocations didn't
9336 actually have reason to modify it. Fix this by forcing
9337 nondeterministic operation at the beginning of the parse.
9339 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9341 * data/c.m4 (b4_yy_symbol_print_generate):
9342 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9343 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9344 of the bugs reported today by Derek M Jones in
9345 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9346 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9347 defined to be a type name without parens or brackets.
9348 (Location Type): Similarly for YYLTYPE.
9349 * tests/regression.at (Trivial grammars): Put in a test for this
9350 bug that will be caught by 'make maintainer-check' (though not,
9351 alas, by 'make check' unless your compiler is picky).
9353 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9355 * NEWS: Version 2.2.
9356 * configure.ac (AC_INIT): Likewise.
9358 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9360 * data/glr.c (yyreportTree): Make room in yystates for the state
9361 preceding the RHS. This fixes the segmentation fault reported by Derek
9363 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9364 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9365 to the user. Reported for yyreportTree by Derek M. Jones later in the
9367 * THANKS: Add Derek M. Jones.
9368 Update my email address.
9369 Fix typo in Steve Murphy's name.
9371 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9373 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9374 checking against YYLAST that caused the parser to miss a potential
9375 alternative in its diagnostic.
9376 Problem reported by Maria Jose Moron Fernandez in
9377 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9378 * data/lalr1.cc (yysyntax_error_): Likewise.
9379 * data/yacc.c (yysyntax_error): Likewise.
9380 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9381 tokens, in case we run into an older C compiler.
9382 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9383 Use them to check for the off-by-one error fixed above.
9385 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9386 YYSIZE_T, not size_t.
9387 * tests/regression.at (Trivial grammars): New test, to catch
9388 the error fixed by the above patch.
9390 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9392 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9394 Reported by Steve Murphy.
9396 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9398 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9399 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9401 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9403 Implement --trace=m4.
9404 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9405 * src/output.c (output_skeleton): When set, pass -dV to m4.
9407 Factor the handling of flags in m4.
9408 * src/output.c (prepare): Rename the muscle names debug, defines,
9409 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9410 * data/c.m4: Adjust.
9411 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9412 Use b4_define_flag_if to define other b4_FLAG_if macros.
9413 (b4_location_if): As a consequence, rename as...
9414 (b4_locations_if): this, for consistency.
9415 Adjust all the skeletons.
9417 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9419 * etc/bench.pm: Shorten bench names.
9421 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9423 * src/output.h, src/output.c (error_verbose): Move to...
9424 * src/getargs.h, src/getargs.c: here.
9426 Adjust dependencies.
9428 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9430 * data/c.m4 (b4_copyright): Put the special exception for Bison
9431 skeletons here, so we don't have to put it in each skeleton. All
9432 uses changed. Suggested by Akim Demaille. Also, wrap the
9433 copyright notice, in case it is longer than 80 columns. Replace
9434 comma by newline after title.
9436 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9438 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9439 incompatibility, not a bug. Mention that it wasn't fixed as of
9442 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9444 * examples/extexi: Enforce the precedence of concatenation over
9446 Reported by Tommy Nordgren.
9448 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9450 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9451 with the member "token".
9452 Reported by Martin Nylin.
9454 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9456 * data/glr.c: Switch to Bison 2.2 special-exception language in
9457 the copyright notice. Use more-regular format for titles and
9459 * data/glr.cc: Likewise.
9460 * data/location.cc: Likewise.
9461 * data/yacc.cc: Likewise.
9462 * doc/bison.texinfo (Conditions): Document this.
9463 * NEWS: likewise. Upgrade version to 2.2.
9465 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
9467 * data/glr.cc: Remove dead code.
9469 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9471 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9472 that variable and the line breaks the bootstrap. Problem reported
9473 by Juan M. Guerrero.
9475 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9477 * doc/bison.texinfo (Multiple start-symbols): New.
9479 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9481 * etc/README, etc/bench.pl: New.
9483 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
9485 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9487 Reported by Mickael Labau.
9488 * tests/input.at (Torturing the Scanner): Test it.
9490 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9492 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9493 Problem reported by Bob Rossi.
9495 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9497 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9498 and didn't really work.
9499 For the index, use @ifnotinfo, not @iftex.
9500 Minor cleanups of spacing and terminology.
9502 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9504 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9505 of AT_NAME_PREFIX when %name-prefix is not used.
9507 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9509 Apply --prefix to C++ skeletons too: they change the namespace.
9510 The test suite already exercize these cases.
9511 * data/c++.m4 (b4_namespace): New.
9512 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9513 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9514 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9515 * doc/bison.texinfo: Document it.
9516 (Option Cross Key): Use @multitable in all formats. It looks
9517 nicer, even in TeX outputs.
9518 (Rules): Use the same code whatever the output type is.
9519 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9520 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9521 * tests/calc.at: Use it, instead of hard coding `yy'.
9523 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9525 * TODO: Remove dead items.
9527 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9529 * doc/FAQ: Remove, merged into...
9530 * doc/bison.texinfo (FAQ): this.
9531 * doc/Makefile.am (EXTRA_DIST): Adjust.
9533 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9535 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9537 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9538 * doc/bison.texinfo (Calc++ Scanner): Use it.
9540 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9542 Fix two nits reported by twlevo, plus one more that I discovered.
9544 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9545 this is the usual Bison style.
9546 * src/location.h (location_print): Likewise.
9548 * src/reader.h (token_name): Likewise.
9550 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9552 Fix some nits reported by twlevo.
9553 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9554 and "POSIX". Use more-modern syntax for URLs. Mention C++
9555 and ask for Java. Don't hardwire OS version numbers. Add
9557 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9558 * src/conflicts.c (solved_conflicts_obstack): Now static.
9560 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9562 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9563 page. Say "you can use it" not "you may use it" as on the web page;
9564 we're describing capabilities not granting permission.
9566 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9568 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9569 shadowing warnings. Use usual patter for iterating through RHS.
9570 * tests/glr-regression.at
9571 (Uninitialized location when reporting ambiguity):
9572 Modify yylex so that it uses its argument, rather than trying
9573 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9574 const char -> char const.
9576 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9577 Don't use tabs inside commands; it messes up 'ps'.
9578 Problem reported by twlevo.
9580 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9582 * tests/glr-regression.at (Uninitialized location when reporting
9583 ambiguity): New test case.
9584 * data/glr.c (yyresolveLocations): New function, which uses
9586 (yyresolveValue): Invoke yyresolveLocations before reporting an
9588 * doc/bison.texinfo (Default Action for Locations): Note
9589 YYLLOC_DEFAULT's usage for ambiguity locations.
9590 (GLR Semantic Actions): Cross-reference those notes.
9592 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9594 * tests/glr-regression.at (Leaked semantic values when reporting
9595 ambiguity): Remove unnecessary union and type declarations.
9596 (Leaked lookahead after nondeterministic parse syntax error): New test
9598 * data/glr.c (yyparse): Check for zero stacks remaining before
9599 attempting to shift the lookahead so that you don't lose it.
9601 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9603 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9604 * tests/glr-regression.at (Leaked semantic values when reporting
9605 ambiguity): New test case.
9606 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9607 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9608 now unnecessary yystackp parameter.
9609 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9610 destructors can be called.
9612 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9613 in existing testcases.
9615 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9617 Don't leak semantic values for parent RHS when a user action cuts the
9618 parser, and clean up related code a bit.
9619 * tests/glr-regression.at (Leaked merged semantic value if user action
9620 cuts parse): Rename to...
9621 (Leaked semantic values if user action cuts parse): ... this. Add check
9622 for leaked parent RHS values.
9623 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9624 between an unresolved state (non-empty chain of semantic options) and
9625 an incomplete one (signaled by an empty chain).
9626 (yyresolveStates): Document the interface. Move all manipulation of a
9627 successfully or unsuccessfully resolved yyGLRState to...
9628 (yyresolveValue): ... here so that yyresolveValue always leaves a
9629 yyGLRState with consistent data and thus is easier to understand.
9630 Remove the yyvalp and yylocp parameters since they are always just
9631 taken from the yys parameter. When reporting a discarded merged value
9632 in debugging output, note that it is incompletely merged. Document the
9634 (yyresolveAction): If resolving any of the RHS states fails, destroy
9635 them all rather than leaking them. Thus, as long as user actions are
9636 written to clean up the RHS correctly, yyresolveAction always cleans up
9637 the RHS of a semantic option. Document the interface.
9639 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9641 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9642 led to a segmentation fault in GNU Pascal. Problem reported
9645 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9647 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9648 mid-rule action inside a nonterminal symbol in order to declare a
9649 destructor for its semantic value.
9651 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9653 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9654 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9655 __cplusplus && ! defined _STDLIB_H && !
9656 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9657 defined free))]: Include <stdlib.h> rather than rolling our own
9658 declarations of malloc and free, to avoid problems with
9659 incompatible declarations (using 'throw') C++'s stdlib.h. This
9660 should fix Debian bug 340012
9661 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9662 reported by Guillaume Melquiond.
9664 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9666 * NEWS: Clarify symbols versus types in unused-value warnings.
9668 * configure.ac (AC_INIT): Bump version number.
9670 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9672 * NEWS: Version 2.1a.
9673 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9674 since C99 requires this.
9676 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9678 * m4/c-working.m4: New file.
9679 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9681 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9683 * Makefile.maint: Merge from coreutils.
9685 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9687 More portability fixes for problems summarized by Nelson H. F. Beebe.
9689 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9690 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9691 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9692 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9693 messes up because C++ code is compiled in 32-bit mode but linked
9696 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9698 More portability fixes for problems summarized by Nelson H. F. Beebe.
9700 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9701 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9703 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9704 nodist_PROGRAMS, since we don't need to actually compile the
9705 example if we're just doing a plain 'make'. This avoids bothering
9706 the installer unnecessarily about problems due to weird C++
9709 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9711 More portability fixes for problems summarized by Nelson H. F. Beebe.
9713 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9714 than #include "...", and compile with -I'.'. The old method was
9715 not portable, according to Posix and the C standard, and it does
9716 not work with Sun C 5.7, where previous #line directives affect
9717 the working directory used in later #include "..." directives.
9719 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9721 Various DJGGP specific issues in /djgpp
9723 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9725 More portability fixes for problems summarized by Nelson H. F. Beebe.
9727 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9728 '#include <map>' works and that you can apply ++ to iterators.
9730 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9732 Work around portability problems summarized by Nelson H. F. Beebe in
9733 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9735 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9736 that '#include <string>' works.
9738 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9739 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9740 "warning: sorry: semantics of inline function static data `const
9741 unsigned char translate_table[262]' are wrong (you'll wind up with
9744 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9745 or, xor to not_, and_, or_, and xor_, respectively. This works
9746 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9747 random system header somewhere that includes the equivalent of
9750 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9751 -E" works; it apparently doesn't work with PathScale EKO Compiler
9754 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9756 During deterministic GLR operation, user actions should be able to
9757 influence the parse by changing yychar. To make this easier to fix and
9758 to make glr.c easier to evolve in general, don't maintain yytoken in
9759 parallel with yychar; just compute yytoken when needed.
9760 * tests/glr-regression.at (Incorrect lookahead during deterministic
9761 GLR): Check that setting yychar in a user action has the intended
9763 * data/glr.c (yyGLRStack): Remove yytokenp member.
9764 (yyclearin): Don't set *yytokenp.
9765 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9766 yychar rather than *yytokenp to determine the current lookahead.
9767 Compute yytoken locally when needed.
9768 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9771 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9772 after `--report' documentation.
9774 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9776 * src/parse-gram.y (grammar_declaration): Location of printer
9777 symbol is @1, not list->location. Bug reported by twlevo.
9778 * tests/input.at (Incompatible Aliases): Adjust to above change.
9780 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9782 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9783 all the test at once. This makes the output easier to read in the
9786 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9787 got from <http://bro-ids.org/download.html>. The bug is that
9788 when two actions appeared in succession, the second one was
9789 scanned before the first one was added to the grammar rule
9790 as a midrule action. Bison then output the incorrect warning
9791 "parse.y:905.17-906.36: warning: unused value: $3".
9792 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9793 associated with a value.
9794 (rhs): Don't invoke grammar_current_rule_action_append.
9795 (action): Invoke it here instead.
9796 * src/reader.c (grammar_midrule_action): Now extern.
9797 (grammar_current_rule_action_append): Don't invoke
9798 grammar_midrule_action; that is now the scanner's job.
9799 * src/reader.h (last_string, last_braced_code_loc):
9800 (grammar_midrule_action): New decls.
9801 * src/scan-gram.l (last_string): Now extern, sigh.
9802 (last_braced_code_loc): New extern variable.
9803 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9804 rule already has an action.
9805 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9806 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9807 Add some tests to check that the above changes fixed the bug.
9809 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9811 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9812 All used changed. Check whether the symbol has a destructor,
9813 not whether it is typed.
9814 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9815 that the values are still reported as unused. All line numbers
9818 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9820 Work around a bug in bro 0.8, which underparenthesizes its
9821 definition of YYLLOC_DEFAULT.
9822 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9824 * data/lalr1.cc: Likewise.
9825 * data/yacc.cc: Likewise.
9827 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9829 Work around a bug in Pike 7.0, and give the Pike folks a
9830 better way to override the usual int widths.
9831 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9832 user can override the types.
9833 (short): #undef, to work around a bug in Pike 7.0.
9834 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9835 (union yyalloc.yyss): Use yytype_int16 rather than short.
9837 (yysigned_char): Remove.
9838 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9839 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9840 * tests/regression.at (Web2c Actions): Adjust to above changes.
9842 * src/reader.c (check_and_convert_grammar): New function.
9843 (reader): Close the input file even if something went wrong during
9844 parsing. Minor file descriptor leak reported by twlevo.
9846 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9847 to pacify gcc -Wswitch-default.
9848 * src/scan-gram.l (adjust_location): Use a default: break; case
9849 to pacify gcc -Wswitch-default.
9850 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9851 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9852 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9853 Move these decls to scan-skel.l, since they don't need to be
9855 * src/scan-skel.l: Accept the above decls.
9856 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9859 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9861 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9862 since we don't want to insist on a version number at the start
9863 of the changelog every time.
9864 * Makefile.maint: Sync from coreutils a bit better.
9865 (sc_trailing_blank): Renamed from sc_trailing_space.
9867 (sc_no_if_have_config_h, sc_require_config_h):
9868 (sc_prohibit_assert_without_use): New rules.
9869 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9870 (sc_dd_max_sym_length): Fix leading spaces in rule.
9871 (sc_system_h_headers): Prefix with @.
9872 (sc_useless_cpp_parens, m4-check): Output line numbers.
9873 (changelog-check): Allow version only in head.
9874 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9875 satisfy new Makefile.maint rule.
9876 * data/glr.c: Likewise.
9877 * data/glr.cc: Likewise.
9878 * data/lalr1.cc: Likewise.
9879 * data/yacc.c: Likewise.
9880 * lib/ebitsetv.c: Likewise.
9881 * lib/lbitset.c: Likewise.
9882 * lib/subpipe.c: Likewise.
9883 * lib/timevar.c: Likewise.
9884 * src/system.h: Likewise.
9885 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9886 * djgpp/Makefile.maint: Add copyright notice.
9887 * djgpp/README.in: Likewise.
9888 * djgpp/config.bat: Likewise.
9889 * djgpp/config.site: Likewise.
9890 * djgpp/config_h.sed: Likewise.
9891 * djgpp/djunpack.bat: Likewise.
9892 * djgpp/config.sed: Fix copyright notice to match standard format.
9893 * djgpp/subpipe.h: Likewise.
9894 * lib/bitsetv-print.c: Likewise.
9895 * lib/bitsetv.c: Likewise.
9896 * lib/subpipe.h: Likewise.
9897 * lib/timevar.c: Likewise.
9898 * lib/timevar.h: Likewise.
9899 * djgpp/subpipe.c: Use standard recipe for config.h.
9900 * lib/abitset.c: Likewise.
9901 * lib/bitset.c: Likewise.
9902 * lib/bitset_stats.c: Likewise.
9903 * lib/bitsetv-print.c: Likewise.
9904 * lib/bitsetv.c: Likewise.
9905 * lib/ebitsetv.c: Likewise.
9906 * lib/get-errno.c: Likewise.
9907 * lib/lbitset.c: Likewise.
9908 * lib/subpipe.c: Likewise.
9909 * lib/timevar.c: Likewise.
9910 * lib/vbitset.c: Likewise.
9911 * tests/local.at: Likewise.
9912 * src/scan-gram.l: Don't include verify.h, since system.h does
9914 * .x-sc_require_config_h: New file.
9915 * .x-sc_unmarked_diagnostics: New file.
9917 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9919 Be a bit more systematic about using 'abort'.
9920 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9921 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9922 Put 'default: abort ();' before some other case, to satisfy older
9924 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9925 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9926 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9927 * src/conflicts.c (resolve_sr_conflict): Likewise.
9928 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9929 (get_decision_str, get_orientation_str, get_node_alignment_str):
9930 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9931 (get_linestyle_str, get_arrowstyle_str): Likewise.
9932 * src/conflicts.c (resolve_sr_conflict):
9933 Use a default case rather than one for the one remaining enum
9934 value, to catch invalid enum values as well.
9935 * src/lalr.c (set_goto_map, map_goto):
9936 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9937 * src/nullable.c (nullable_compute, token_definitions_output):
9939 * src/reader.c (packgram, reader): Likewise.
9940 * src/state.c (transitions_to, state_new, state_reduction_find):
9942 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9943 (symbol_pack): Likewise.
9944 * src/tables.c (conflict_row, pack_vector): Likewise.
9945 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9946 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
9947 * src/system.h: Don't include <assert.h>.
9948 (assert): New macro.
9950 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9951 (Destructor Decl, Parser Function, Pure Calling):
9952 Describe rules for braces inside C code more carefully.
9954 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9956 Fix some porting glitches found by Nelson H. F. Beebe.
9957 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9958 compilers that don't understand that abort () does not return.
9959 * src/state.c (transitions_to): Likewise.
9960 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9961 that '#include <cstdlib>' works.
9962 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9963 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9964 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9965 for the benefit of some pre-C99 compilers.
9967 * bootstrap: Undo changes to gnulib files that autoreconf made.
9969 Minor fixups to get 'make maintainer-check' to work.
9970 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9971 with the new verify.h implementation.
9972 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9973 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9974 * data/yacc.c (YYUSE): Likewise.
9975 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9976 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9977 * src/parse-gram.y (declaration): Don't pass a string constant
9978 to a function that expects char *, since GCC might complain
9979 about the constant value.
9980 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9981 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9982 before #defining them.
9983 * tests/glr-regression.at
9984 (Incorrectly initialized location for empty right-hand side in GLR):
9985 In yyerror, use the msg arg.
9986 (Corrupted semantic options if user action cuts parse):
9987 (Incorrect lookahead during deterministic GLR):
9988 (Incorrect lookahead during nondeterministic GLR):
9989 Don't name a local var 'index'; it shadows string.h's 'index'.
9991 2006-01-19 Akim Demaille <akim@epita.fr>
9993 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9994 location, not just parts of it.
9996 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9998 * NEWS: Document the fact that multiple %unions are now allowed.
9999 * doc/bison.texinfo (Union Decl): Likewise.
10000 * TODO: This feature is now implemented, so remove it from
10003 * Makefile.maint: Merge with coreutils Makefile.maint.
10004 (CVS_LIST): Use build-aux version if available.
10005 (VERSION_REGEXP): New macro.
10006 (syntax-check-rules): Add sc_no_if_have_config_h,
10007 sc_prohibit_assert_without_use, sc_require_config_h,
10008 sc_useless_cpp_parens.
10009 (sc_obsolete_symbols): Check for O_NDELAY.
10010 (sc_dd_max_sym_length): Track coreutils.
10011 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10012 (sc_useless_cpp_parens): New rule.
10013 (news-date-check): Look for version or today's date.
10014 (changelog-check): Don't require version number near head.
10015 (copyright-check): Use current year instead of hardwiring 2005.
10016 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10017 (announcement): Add --gpg-key-ID.
10019 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10020 with "file system".
10022 Avoid undefined behavior that addressed just before the start of an
10023 array. Problem reported by twlevo.
10024 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10025 * src/lalr.c (build_relations): Rely on new sentinel.
10026 * src/gram.c (gram_free): Adjust to new sentinel.
10028 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10030 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10031 yylookaheadNeeds. All uses updated.
10032 (yysplitStack): Rename local yynewLookaheadStatuses to
10033 yynewLookaheadNeeds.
10034 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10035 GLR): In comments, change `lookahead status' to `lookahead need'.
10037 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10039 * data/glr.c (yysplitStack): A little stylistic rewrite.
10041 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10043 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10045 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10047 * doc/bison.texinfo: Fix some typos.
10048 (GLR Semantic Actions): New subsection discussing special
10049 considerations because GLR semantic actions might be deferred.
10050 (Actions): Mention look-ahead usage of yylval.
10051 (Actions and Locations): Mention look-ahead usage of yylloc.
10052 (Special Features for Use in Actions): Add YYEOF entry and mention it
10053 in the yychar entry.
10054 In the yychar entry, remove mention of the local yychar case (pure
10055 parser) since this is irrelevant information when writing semantic
10056 actions and since it's already discussed in `Table of Symbols' where
10057 yychar is otherwise described as an external variable.
10058 In the yychar entry, don't call it the `current' look-ahead since it
10059 isn't when semantic actions are deferred.
10060 In the yychar and yyclearin entries, add note about deferred semantic
10062 Add yylloc and yylval entries discussing look-ahead usage.
10063 (Look-Ahead Tokens): When discussing yychar, don't call it the
10064 `current' look-ahead, and do mention yylval and yylloc.
10065 (Error Recovery): Cross-reference `Action Features' when mentioning
10067 (Table of Symbols): In the yychar entry, don't call it the `current'
10069 In the yylloc and yylval entries, mention look-ahead usage.
10071 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
10073 * tests/glr-regression.at: Update copyright year to 2006.
10075 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10077 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
10078 use during nondeterministic operation to track which stacks have
10079 actually needed the current lookahead.
10080 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
10081 Allocate, deallocate, resize, and otherwise shuffle space for
10082 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
10083 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
10084 appropriately during nondeterministic operation.
10085 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10086 members to store the current lookahead to be used by the deferred
10088 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10089 from which the RHS is taken. Set the lookahead members of the new
10090 yySemanticOption according to the lookahead status for stack yyk.
10091 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10092 yyaddDeferredAction.
10093 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10094 members of yySemanticOption before invoking yyuserAction, and then set
10095 them back to their current values afterward.
10096 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10097 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10098 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10099 titles for consistency.
10100 (Leaked merged semantic value if user action cuts parse): In order to
10101 suppress lint warnings, use arguments in merge function, and assign
10102 char value < 128 in main.
10103 (Incorrect lookahead during deterministic GLR): New test case.
10104 (Incorrect lookahead during nondeterministic GLR): New test case.
10106 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10108 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
10109 !yyvaluep as signal that no semantic value is available to print.
10110 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10111 to print a semantic value.
10113 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10115 * tests/glr-regression.at: For consistency with my newer test cases,
10116 don't thank myself.
10118 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10120 * data/glr.c (yyresolveValue): When merging semantic options, if at
10121 least one user action succeeds but a later one cuts the parse, then
10122 destroy the semantic value before returning rather than leaking it.
10123 (yyresolveStates): If a user action cuts the parse and thus
10124 yyresolveValue fails, ignore the (unset) semantic value rather than
10125 corrupting the yyGLRState, and empty the semantic options list since
10126 the user actions should have called all necessary destructors.
10127 Simplify code with YYCHK.
10128 * tests/glr-regression.at (Corrupted semantic options if user action
10129 cuts parse): New test case.
10130 (Undesirable destructors if user action cuts parse): New test case.
10131 Before applying any of this patch, this test case never actually failed
10132 for me... but only because the corrupted semantic options usually
10134 (Leaked merged semantic value if user action cuts parse): New test
10137 2006-01-05 Akim Demaille <akim@epita.fr>
10139 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10141 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10143 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10144 _MSC_VER. Problem reported by Cenzato Marco.
10145 (b4_c_function_def): Use it.
10146 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10148 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10149 than rolling our own.
10151 2006-01-04 Akim Demaille <akim@epita.fr>
10153 Also warn about non-used mid-rule values.
10154 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10156 (symbol_list_new): Adjust.
10157 * src/reader.c (symbol_typed_p): New.
10158 (grammar_rule_check): Use it.
10159 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10161 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10163 * tests/actions.at (Exotic Dollars): Adjust.
10165 2006-01-04 Akim Demaille <akim@epita.fr>
10167 * src/reader.c (grammar_midrule_action): If $$ is set in a
10168 mid-rule, move the `used' bit to its lhs.
10169 * tests/input.at (Unused values): New.
10170 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10172 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10174 * doc/bison.texinfo (Bison Options): Say more accurately what
10176 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10177 about declarations in the grammar when in Yacc mode, as POSIX does
10178 not require a diagnostic when the grammar uses extensions.
10180 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10182 Warn about dubious constructions like "%token T T".
10183 Reported by twlevo.
10184 * src/symtab.h (struct symbol.declared): New member.
10185 * src/symtab.c (symbol_new): Initialize it to false.
10186 (symbol_class_set): New arg DECLARING, specifying whether
10187 this is a declaration that we want to warn about, if there
10188 is more than one of them. All uses changed.
10190 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10191 Allow multiple %union directives, whose contents concatenate.
10192 * src/parse-gram.y (grammar_declaration): Likewise.
10193 Use muscle_code_grow, so that we don't need stype_line any more.
10196 * src/muscle_tab.c (muscle_grow): Fix comment.
10198 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10199 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10200 Update copyright year to 2006.
10202 2006-01-03 Akim Demaille <akim@epita.fr>
10204 Have glr.cc pass (some of) the calc.at tests.
10205 * data/glr.cc (b4_parse_param_orig): New.
10206 (b4_parse_param): Improve its definition, and bound it more
10207 clearly in the skeleton.
10208 (b4_epilogue): Append, instead of prepending, in order to keep
10210 Simplify the generation of auxiliary functions: locations and
10211 purity are mandated.
10212 (b4_global_tokens_and_yystype): Honor it.
10213 * data/location.cc (c++.m4): Don't include it.
10214 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10216 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10218 Be sure to initialize the first position's filename.
10219 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10221 (AT_CHECK_CALC_GLR_CC): New.
10222 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10224 2006-01-02 Akim Demaille <akim@epita.fr>
10226 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10228 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
10229 * data/glr.cc: Do not include stack.hh.
10231 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10233 * data/glr.c: Reformat whitespace with tabs.
10234 (b4_lpure_formals): Remove this unused m4 macro.
10235 * tests/cxx-type.at: Reformat whitespace with tabs.
10236 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10237 since it's a member. Rename type to isNterm for clarity.
10239 2005-12-29 Akim <akim@sulaco.local>
10241 Let glr.cc catch up with symbol_value_print.
10242 * data/glr.cc (b4_yysymprint_generate): Replace by...
10243 (b4_yy_symbol_print_generate): this.
10244 (yy_symbol_print, yy_symbol_value_print): Declare them.
10246 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10248 * src/location.h (boundary): Note that a line or column equal
10249 to INT_MAX indicates an overflow.
10250 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10251 (rule_length_overflow, increment_rule_length, add_column_width):
10253 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10254 (<SC_BRACED_CODE>"}"):
10255 Use increment_rule_length rather than incrementing it by hand.
10256 (adjust_location, handle_syncline): Diagnose overflow.
10257 (handle_action_dollar, handle_action_at):
10258 Fix bug with monstrosities like $-2147483648.
10259 Remove now-unnecessary checks.
10260 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10261 (convert_ucn_to_byte): Verify assumptions.
10262 (handle_syncline): New arg LOC. All callers changed.
10263 Don't store through a value derived from char const * pointer.
10265 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10268 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10270 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10271 Remove unnecessary forward static decls.
10273 2005-12-27 Akim Demaille <akim@epita.fr>
10275 * src/reader.c (grammar_current_rule_check): Also check that $$
10277 Take the rule to check as argument, hence rename as...
10278 (grammar_rule_check): this.
10279 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10281 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10282 (grammar_midrule_action, grammar_symbol_append): Now static.
10283 * tests/torture.at (input): Don't rely on the default action
10284 being always performed.
10285 * tests/calc.at: "Set" $$ even when the action is "cut" with
10287 * tests/actions.at (Exotic Dollars): Instead of using unused
10288 values, check that the warning is issued.
10290 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10292 * NEWS: Improve wording for unused-value warnings.
10294 2005-12-22 Akim Demaille <akim@epita.fr>
10296 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10297 (b4_yysymprint_generate): Rename as...
10298 (b4_yy_symbol_print_generate): this.
10299 Generate yy_symbol_print instead of yysymprint.
10300 Generate also yy_symbol_value_print, and use it.
10302 2005-12-22 Akim Demaille <akim@epita.fr>
10304 * NEWS: Warn about unused values.
10305 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10307 (symbol_list_n_get, symbol_list_n_used_set): New.
10308 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10309 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10310 * src/reader.c (grammar_current_rule_check): Check that values are
10312 * src/symtab.c (symbol_print): Accept 0.
10313 * tests/existing.at: Remove the type information.
10315 Remove useless actions (beware of mid-rule actions: perl -000
10316 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10317 * tests/actions.at (Exotic Dollars): Use unused values.
10318 * tests/calc.at: Likewise.
10319 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10322 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10325 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10327 Undo 2005-12-01 tentative license wording change. The wording is
10328 still being reviewed by the lawyers, and we don't want to wait for
10329 them before publishing a test release. For now, revert to the
10331 * NEWS: Undo 2005-12-01 change.
10332 * data/glr.c: Revert to previous license wording.
10333 * data/glr.cc: Likewise.
10334 * data/lalr1.cc: Likewise.
10335 * data/location.cc: Likewise.
10336 * data/yacc.c: Likewise.
10338 * NEWS: Reword %destructor vs YYABORT etc.
10339 * data/glr.c: Use American spacing, for consistency.
10340 * data/glr.cc: Likewise.
10341 * data/lalr1.cc: Likewise.
10342 * data/yacc.c: Likewise.
10343 * data/yacc.c: Reformat comments slightly.
10344 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10345 for consistency. Fix some spelling errors and reword recently-included
10347 * tests/cxx-type.at: Cast results of malloc, for C++.
10349 2005-12-21 Joel E. Denny <address@hidden>
10351 * tests/cxx-type.at: Construct a tree, count the parents of shared
10352 nodes, and free each node once and only once. Previously, the memory
10353 for semantic values was leaked instead.
10355 2005-12-21 Joel E. Denny <address@hidden>
10357 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10358 (yylval, yylloc): If pure, #define to yystackp->yyval and
10359 yystackp->yyloc similar to yychar and yynerrs.
10360 (yyparse): If pure, remove local yylval and yylloc. Add local
10361 yystackp to accommodate pure definitions of yylval and yylloc.
10362 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10363 yylvalp and yyllocp to &yylval and &yylloc.
10364 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10365 namespace. Previously, nerrs and char were missing, but lval and lloc
10367 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10368 yylvalp and yyllocp parameters since, if pure, these are now always
10369 accessible through yystackp. If not pure, they are still accessible
10371 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10372 `if (YYID (N))' to pacify lint.
10374 2005-12-21 Akim Demaille <akim@epita.fr>
10376 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10377 destroy the RHS symbols of a rule.
10378 * data/yacc.c (yylen): Initialize to 0.
10379 Keep its value to the number of items to possibly shift.
10380 In particular, a regular successful parse that ends on YYFINAL by
10381 a (internal) YYACCEPT must not have yylen != 0.
10382 (yyerrorlab, yyreturn): Pop the RHS.
10383 Reorder a bit to emphasize the `shifting' bits of code.
10384 (YYPOPSTACK): Now accept a number of items to pop.
10385 * data/lalr1.cc: Likewise.
10386 * data/glr.c: Formatting changes.
10387 Use goto instead of fall through.
10388 * doc/bison.texinfo (Destructor Decl): Complete.
10390 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10392 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10393 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10394 * djgpp/config.bat: Replace every occurence of the file name
10395 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10396 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10397 * djgpp/config.sed: Replace every occurence of the file name
10398 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10399 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10400 * djgpp/djunpack.bat: DJGPP specific file.
10401 * djgpp/fnchange.lst: DJGPP specific file.
10402 * djgpp/README.in: Add new information about how to unpack the bison
10403 source on MSDOS and other systems which have 8.3 file name restrictions
10404 using djunpack.bat and fnchange.lst.
10406 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10408 * bootstrap (build_cvs_prefix): Remove; unused.
10409 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10410 when getting gnulib.
10412 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10414 * data/glr.c: Reorder typedef declarations for structs to match order
10415 of struct declarations.
10416 Rename yystack everywhere to yystackp except in yyparse where it's not
10418 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10420 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10421 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10422 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10425 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10427 * tests/sets.at (Accept): Fix typos in regular expression used to
10428 sed out the final state number.
10430 Work around portability problem on Solaris 10: flex-generated
10431 files include <stdio.h> before <config.h>, which messes up
10432 because the latter defines __EXTENSIONS__. Address the problem
10433 by creating two new little files that include <config.h> first,
10434 then include the flex-generated files. Rewrite everyone else
10435 to include <config.h> first, as well.
10436 * lib/timevar.c: Always include "config.h".
10437 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10438 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10439 (EXTRA_bison_SOURCES): New macro.
10440 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10441 * src/system.h: Don't include config.h.
10442 * src/LR0.c: Include <config.h> first.
10443 * src/assoc.c: Likewise.
10444 * src/closure.c: Likewise.
10445 * src/complain.c: Likewise.
10446 * src/conflicts.c: Likewise.
10447 * src/derives.c: Likewise.
10448 * src/files.c: Likewise.
10449 * src/getargs.c: Likewise.
10450 * src/gram.c: Likewise.
10451 * src/lalr.c: Likewise.
10452 * src/location.c: Likewise.
10453 * src/main.c: Likewise.
10454 * src/muscle_tab.c: Likewise.
10455 * src/nullable.c: Likewise.
10456 * src/output.c: Likewise.
10457 * src/parse-gram.y: Likewise.
10458 * src/print.c: Likewise.
10459 * src/print_graph.c: Likewise.
10460 * src/reader.c: Likewise.
10461 * src/reduce.c: Likewise.
10462 * src/relation.c: Likewise.
10463 * src/state.c: Likewise.
10464 * src/symlist.c: Likewise.
10465 * src/symtab.c: Likewise.
10466 * src/tables.c: Likewise.
10467 * src/uniqstr.c: Likewise.
10468 * src/vcg.c: Likewise.
10470 * src/parse-gram.y: Fix minor problems uncovered by lint.
10471 (current_lhs, current_lhs_location): Now static.
10472 (current_assoc): Remove unused variable.
10474 Cleanups so that Bison-generated parsers have less lint.
10475 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10476 Prepend /*ARGSUSED*/, for lint's sake.
10477 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10478 definition if 'lint' is defined.
10479 (YYID): New macro (or function, if lint).
10480 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10481 * data/yacc.c: Likewise.
10482 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10483 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10484 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10486 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10487 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10488 Use YYID(0) rather than 0, for lint.
10489 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10490 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10492 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10494 * tests/glr-regression.at
10495 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10496 Close memory leak reported by twlevo.
10498 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10500 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10502 (yyparse): Iterate another stack in order to call user destructors.
10503 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10505 (Duplicated user destructor for lookahead): This test now is expected
10508 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10510 * NEWS: Document the following change.
10511 * data/yacc.c: Say "parser skeleton" rather than "file", since
10512 it's no longer just a file.
10513 * data/glr.c: Grant a special exception for C GLR parsers, that
10514 reads like the already-existing exception for C LALR(1) parsers.
10515 * data/glr.cc: Likewise.
10516 * data/lalr1.cc: Likewise.
10517 * data/location.cc: Likewise.
10518 * data/yacc.c: Reword the "written by" statement to clarify that
10519 it was the parser skeleton, not the entire output file.
10520 * data/glr.c: Written by Paul Hilfinger.
10521 * data/glr.cc: Written by Akim Demaille.
10522 * data/lalr1.cc: Likewise.
10524 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10526 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10527 Fix typos in previous change that broke 'make check'.
10528 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10530 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10531 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10532 We can revert this once things settle down.
10534 * src/conflicts.c (conflicts_print): Don't print file name twice
10535 when %expect fails because there were no conflicts.
10536 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10538 * tests/conflicts.at (%expect not enough, %expect too much):
10539 (%expect with reduce conflicts): Adjust to new behavior.
10541 2005-11-18 Akim Demaille <akim@epita.fr>
10543 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10545 * NEWS: Document this.
10546 * doc/bison.texinfo (Expect Decl): Likewise.
10548 2005-11-16 Akim Demaille <akim@epita.fr>
10550 Generalize the display of semantic values and locations in traces.
10551 * data/glr.c (yy_reduce_print): Fix indices (again).
10552 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10554 * data/lalr1.cc (yyreduce_print): Rename as...
10555 (yy_reduce_print): this.
10556 Display values and locations.
10557 * data/yacc.c (yy_reduce_print): Likewise.
10558 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10559 (yysymprint): Move higher to be visible from yy_reduce_print).
10561 * tests/calc.at: Adjust the expected length of the traces.
10563 2005-11-14 Akim Demaille <akim@epita.fr>
10565 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10566 from 1 to N, while values and location start at 0.
10567 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10569 2005-11-14 Akim Demaille <akim@epita.fr>
10571 * data/glr.c (yy_reduce_print): Fix the $ number.
10573 2005-11-14 Akim Demaille <akim@epita.fr>
10575 "Use" parse parameters.
10576 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10577 * data/glr.c, data/glr.cc: Use them.
10578 * data/glr.c (YYUSE): Have a C++ definition that supports
10581 2005-11-14 Akim Demaille <akim@epita.fr>
10583 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10585 2005-11-14 Akim Demaille <akim@epita.fr>
10587 * data/glr.cc: New.
10588 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
10590 2005-11-12 Akim Demaille <akim@epita.fr>
10592 Let position and location be PODs.
10593 * data/location.cc (position::initialize, location::initialize): New.
10594 (position::position, location::location): Define only if
10595 b4_location_constructors is defined.
10596 * data/lalr1.cc (b4_location_constructors): Define it for backward
10598 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10600 2005-11-12 Akim Demaille <akim@epita.fr>
10602 * data/lalr1.cc: Move the body of the ctor and dtor into the
10603 parser file (instead of the header).
10604 Wrap the implementations in a "namespace yy".
10606 2005-11-12 Akim Demaille <akim@epita.fr>
10608 Have glr.c include its header file when created.
10609 * data/glr.c (b4_shared_declarations): New.
10610 Output them verbatim in the parser if !%defines, otherwise
10611 output then in the header file, and include it instead.
10613 2005-11-11 Akim Demaille <akim@epita.fr>
10615 * data/glr.c: Comment changes.
10617 2005-11-11 Akim Demaille <akim@epita.fr>
10619 When yydebug, report semantic and location values for reductions.
10620 * data/glr.c (yy_reduce_print): Report the semantic values and the
10622 (YY_REDUCE_PRINT): Adjust.
10623 (yyglrReduce): Use them.
10624 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10625 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10626 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10629 2005-11-10 Akim Demaille <akim@epita.fr>
10631 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10632 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10633 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10635 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10637 * m4/cxx.m4, examples/Makefile.am: Don't build
10638 examples/calc++ if no C++ compiler is available. (trivial change)
10640 2005-11-09 Akim Demaille <akim@epita.fr>
10642 * src/scan-skel.l: Use a couple of asserts.
10644 2005-11-03 Akim Demaille <akim@epita.fr>
10646 In some (weird) cases, the final state number is incorrect.
10647 Reported by Alexandre Duret-Lutz.
10648 * src/LR0.c (state_list_append): Remove the computation of
10650 (save_reductions): Do it here.
10651 (get_state): Alpha conversion.
10652 (generate_states): Use a for loop.
10653 * src/gram.h (item_number_is_rule_number)
10654 (item_number_is_symbol_number): New.
10655 * src/state.c: Use assert.
10656 * src/system.h: Include assert.h.
10657 * tests/sets.at (Accept): New.
10659 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10661 * data/glr.c (yyfill): Adjust comment.
10662 (yyresolveAction): Initialize default location properly
10663 for empty right-hand sides.
10664 (yydoAction): Ditto.
10665 Add comment explaining apparently dead code.
10666 * tests/glr-regression.at
10667 (Incorrectly initialized location for empty right-hand side in GLR):
10670 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10672 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10673 gnulib when interrupted. This fixes some race conditions and
10674 works around some portability problems (one noted by Paul
10677 2005-10-22 Akim <akim@epita.fr>
10679 * Makefile.cfg: Adjust to config -> build-aux.
10680 Reported by twledo.
10682 2005-10-21 Akim Demaille <akim@epita.fr>
10684 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10686 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10687 * data/yacc.c (b4_Pure_if): Rename as...
10688 (b4_yacc_pure_if): this.
10689 (YY_SYMBOL_PRINT, yyparse): Adjust.
10690 * doc/bison.texinfo: Formatting changes.
10692 2005-10-21 Akim Demaille <akim@epita.fr>
10694 Finish the transition config -> build-aux.
10695 * configure.ac, Makefile.am: Use build-aux.
10696 * config/prev-version, config/announce-gen, config/Makefile.am:
10698 * build-aux/prev-version, build-aux/announce-gen,
10699 * build-aux/Makefile.am: here.
10701 2005-10-14 Akim Demaille <akim@epita.fr>
10703 * examples/calc++/test: Use set -x only when VERBOSE.
10705 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10707 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10708 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10710 2005-10-13 Akim Demaille <akim@epita.fr>
10712 * src/scan-skel.l: Output the base name parts of the parser and
10714 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
10716 Use this to exercise C++ outputs in subdirs.
10717 Reported by Oleg Smolsky.
10719 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10721 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10722 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10723 Problem reported by John P. Hartmann.
10724 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10725 already defined it.
10727 2005-10-12 Akim Demaille <akim@epita.fr>
10729 * src/parse-gram.y (version_check): Exit 63 to please missing
10730 (stands for "version mismatch).
10731 * tests/input.at, doc/bison.texinfo: Adjust.
10733 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10735 Work around portability problems with Visual Age C compiler
10736 (xlc and xlC_r) reported by John P. Hartmann.
10737 * data/location.cc (initial_column, initial_line): Remove.
10738 All uses replaced by 0 and 1.
10739 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10740 that xlc complains about.
10741 * src/scan-skel.l (skel_wrap): Likewise.
10742 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
10744 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10745 __STDC_VERSION__. Use it everywhere instead of looking at
10746 __STDC__ and __cplusplus.
10748 2005-10-10 Akim Demaille <akim@epita.fr>
10750 * examples/calc++/test: Be quiet unless VERBOSE.
10752 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10754 * data/c.m4 (yydestruct, yysymprint):
10755 Use YYUSE instead of casting to void.
10756 * data/glr.c (YYUSE): New macro.
10757 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10758 Use it instead of rolling our own.
10759 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10761 Use /*CONSTCOND*/ to suppress lint warnings.
10762 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10763 (YY_STACK_PRINT): Use 'false' not '0'.
10764 (YYUSE): New macro.
10765 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10766 * data/yacc.c (YYUSE): New macro.
10767 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10768 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10769 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10772 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10773 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10775 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10777 Undo the parts of the unlocked-I/O change that substituted
10778 putc or puts for printf. This might hurt performance a bit,
10779 but some people prefer the printf style.
10780 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10781 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10782 All uses replaced by YYFPRINTF and YYDPRINTF.
10783 * data/yacc.c: Likewise.
10784 * lib/bitset.c (bitset_print): Likewise.
10785 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10787 * lib/lbitset.c (debug_lbitset): Likewise.
10788 * src/closure.c (print_firsts, print_fderives): Likewise.
10789 * src/gram.c (grammar_dump): Likewise.
10790 * src/lalr.c (look_ahead_tokens_print): Likewise.
10791 * src/output.c (escaped_output): Likewise.
10792 (user_actions_output): Break apart two printfs.
10793 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10794 * src/reduce.c (reduce_print): Likewise.
10795 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10796 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10798 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10799 Use assignments rather than casts-to-void to suppress
10800 unused-variable warnings. This pacifies 'lint'.
10801 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10802 unused-variable warnings.
10804 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10806 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10808 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10810 Use unlocked I/O for a minor performance improvement on hosts like
10811 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10812 is to use the gnlib unlocked-io module, and to prefer putc and
10813 puts to printf when either will work (since the latter doesn't
10814 come in an unlocked flavor).
10815 * bootstrap (gnulib_modules): Add unlocked-io.
10816 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10817 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10818 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10819 and similarly for puts and putc and printf.
10820 * data/yacc.c: Likewise.
10821 * lib/bitset.c (bitset_print): Likewise.
10822 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10823 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10825 * lib/lbitset.c (debug_lbitset): Likewise.
10826 * src/closure.c (print_firsts, print_fderives): Likewise.
10827 * src/gram.c (grammar_dump): Likewise.
10828 * src/lalr.c (look_ahead_tokens_print): Likewise.
10829 * src/output.c (escaped_output): Likewise.
10830 (user_actions_output): Coalesce two printfs.
10831 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
10832 * src/reduce.c (reduce_print): Likewise.
10833 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10834 * src/system.h: Include unlocked-io.h rather than stdio.h.
10836 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10837 this confuses xgettext.
10839 2005-10-02 Akim Demaille <akim@epita.fr>
10841 * bootstrap (gnulib_modules): Add strverscmp.
10842 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10843 * m4/.cvsignore: Add strverscmp.m4.
10844 * src/parse-gram.y (%require): New token, new rule.
10845 (version_check): New.
10846 * src/scan-gram.l (%require): Adjust.
10847 * tests/input.at (AT_REQUIRE): New.
10849 * doc/bison.texinfo (Require Decl): New.
10850 (Calc++ Parser): Use %require.
10852 2005-10-02 Akim Demaille <akim@epita.fr>
10854 * data/location.cc: New.
10856 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10857 Akim Demaille <akim@epita.fr>
10859 Make sure -odir/foo.cc creates dir/location.hh etc.
10860 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10861 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10862 (spec_defines_file): Now const.
10864 (short_base_name): Remove.
10865 * src/files.c: Adjust.
10866 (dirname.h): Include.
10867 (base_name): Don't prototype it.
10868 (finput): Remove, duplicates gram_in.
10869 (full_base_name, short_base_name): Replace by...
10870 (all_but_ext, all_but_tab_ext): these.
10871 (compute_base_names): Rename as...
10872 (compute_file_name_parts): this.
10873 Update to compute the new variables, including dir_prefix.
10874 Adjust dependencies.
10875 * src/output.c (prepare): Output them.
10876 * src/reader.c: Adjust to use gram_in, not finput.
10877 * src/scan-skel.l (@dir_prefix@): New.
10879 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10881 * lib/subpipe.c: New function end_of_output_subpipe() added
10882 to allow support for non-posix systems. This is a no-op function
10885 * lib/subpipe.h: New function end_of_output_subpipe() added
10886 to allow support for non-posix systems. This is a no-op function
10889 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10890 handle the lack of pipe/fork functionality on non-posix systems.
10892 * djgpp/Makefile.maint: DJGPP specific file.
10894 * djgpp/README.in: DJGPP specific file.
10896 * djgpp/config.bat: DJGPP specific configuration file.
10898 * djgpp/config.sed: DJGPP specific configuration file.
10900 * djgpp/config.site: DJGPP specific configuration file.
10902 * djgpp/config_h.sed: DJGPP specific configuration file.
10904 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10906 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10908 2005-10-02 Akim Demaille <akim@epita.fr>
10910 * data/location.cc: New, extract from...
10911 * data/lalr1.cc: here.
10912 (location.hh): Include it after the user prologue, in case the
10913 filename type is defined by the user.
10914 Forward declation location and position before the pre-prologue.
10915 (yyresult_): Rename as...
10916 (yyresult): this, it's a local variable, not an attribute.
10917 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10919 2005-10-01 Akim Demaille <akim@epita.fr>
10921 * examples/extexi: Restore the #line generation.
10923 2005-09-30 Akim Demaille <akim@epita.fr>,
10924 Alexandre Duret-Lutz <adl@gnu.org>
10926 Move the token type and YYSTYPE in the parser class.
10927 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10928 (parser::token): New, from the moved free definition of tokens.
10929 (parser::semantic_value): Now a full definition instead of an
10930 indirection to YYSTYPE.
10931 (b4_post_prologue): No longer included in the header file, but
10932 in the implementation file.
10933 * doc/bison.texi (C+ Language Interface): Update.
10934 * src/parse-gram.y: Support unary %define.
10935 * tests/actions.at: Define global_tokens_and_yystype for backward
10936 compatibility until we update the tests.
10937 * tests/calc.at: Idem.
10938 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10939 to simplify the code.
10941 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10943 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10944 Ah, the good old days! Problem reported by Peter Klein.
10945 * bootstrap (gnulib_modules): Add strerror, strtoul.
10946 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10947 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10949 2005-09-29 Akim Demaille <akim@epita.fr>
10951 * data/c.m4 (b4_error_verbose_if): New.
10952 * data/lalr1.cc: Use it.
10953 (YYERROR_VERBOSE_IF): Remove.
10954 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10955 parser members, replaced by...
10956 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10958 (yysyntax_error_): Takes the state number as argument.
10959 (yyreduce_print_): Use the argument yyrule, not the former
10962 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10964 * bootstrap (gnulib_modules): Add verify.
10965 * lib/.cvsignore: Add verify.h.
10966 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10967 * src/system.h (verify): Remove.
10968 Include verify.h instead.
10969 * src/tables.c (tables_generate): Use new API for 'verify'.
10971 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10973 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10974 local variables whose names begin with 'yy'.
10975 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10976 Trivial changes from Joel E. Denny.
10978 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10980 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10981 don't use alloca any more.
10983 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10984 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
10985 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
10986 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10987 to match yacc.c, to test more hosts.
10989 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10991 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10992 doesn't affect behavior.
10993 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10995 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10996 This works a bit better with glibc, if user code has already included
10998 * doc/bison.texinfo (Bison Parser): Document that users can't
10999 arbitrarily use malloc and free for other purposes. Document
11000 that <alloca.h> and <malloc.h> might be included.
11001 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11002 user must declare alloca.
11004 * HACKING (release): Forwarn the Translation Project about
11007 2005-09-20 Akim Demaille <akim@epita.fr>
11009 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11011 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11013 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11014 (YYSTACK_ALLOC_MAXIMUM): Use it.
11015 (yysyntax_error): New function.
11016 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11017 multiple syntax errors are reported, and alloca is being used.
11018 Instead, reallocate buffers twice as big each time, so that
11019 we waste at most half the allocated memory. Start with a small
11020 (128-byte) buffer that will suffice in most cases anyway.
11021 Use yysyntax_error to do most of the work.
11023 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11024 yynerrs is the number of errors reported, not the number of
11025 errors encountered.
11027 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11028 Mark it as expected to fail.
11029 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11030 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11031 Don't start user-code symbols with "yy", to avoid name space problems.
11033 2005-09-19 Akim Demaille <akim@epita.fr>
11035 Remove the traits, failed experiment.
11036 It never proved useful, and anyway because of the current
11037 definition, it was not possible to have several specialization of
11038 this traits, making it useless.
11039 * data/lalr1.cc (yy:traits): Remove.
11040 Inline its definitions in the parser class.
11042 2005-09-19 Akim Demaille <akim@epita.fr>
11044 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11045 least Mac OSX with a /usr/local install of gettext.
11047 2005-09-19 Akim Demaille <akim@epita.fr>
11049 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11050 and yytoken for similarity with the other skeletons.
11052 2005-09-19 Akim Demaille <akim@epita.fr>
11054 * NEWS, configure.ac: update version number to 2.1a.
11056 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11058 * NEWS: Version 2.1.
11060 * NEWS: Remove notice of yytname change, since it was never in an
11062 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11064 * src/output.c (prepare): Likewise.
11065 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11066 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11067 is not defined. This is an awful hack, but it's enough for now.
11068 All callers changed.
11069 * tests/glr-regression-at (make_value): Args are const pointers now,
11070 to avoid GCC warning.
11071 (Duplicated user destructor for lookahead): New test. Currently
11072 skipped. It fails on my host but I'm not sure it'll always fail.
11074 2005-09-16 Akim Demaille <akim@epita.fr>
11076 * src/symtab.h (struct symbol): Declare the printer and destructor
11077 as const, to avoid accidental calls to free.
11078 (symbol_destructor_set, symbol_printer_set): Adjust.
11079 * src/symtab.c: Adjust.
11081 2005-09-16 Akim Demaille <akim@epita.fr>
11083 * data/c.m4 (b4_token_enums): New.
11084 (b4_token_defines): Rename as...
11085 (b4_token_enums_defines): this.
11086 (b4_token_defines): New, output only the #defines.
11087 * data/yacc.c, data/glr.c: Adjust.
11088 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11089 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11092 2005-09-16 Akim Demaille <akim@epita.fr>
11094 * data/lalr1.cc (yylex_): Remove, inline its code.
11095 (yyreport_syntax_error_): Remove, replaced by...
11096 (yysyntax_error_): this which returns a string and leaves to the
11097 caller the call to the users' error function.
11098 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11099 Move from members of the parser object...
11100 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11101 to local variables of the parse function.
11103 2005-09-16 Akim Demaille <akim@epita.fr>
11105 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11106 since it's in Bison's name space.
11108 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11110 * data/glr.c (yyresolveValue): Add default case to pacify
11111 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11113 * NEWS: Document when yyparse started to return 2.
11114 * doc/bison.texinfo (Parser Function): Document when yyparse
11117 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11118 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11120 (class position): file_name -> filename (reverting). All uses changed.
11122 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11124 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11125 do anything if $@ exists. This reverts part of the 2005-07-07
11128 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11130 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11131 contains obsolete information and isn't worth distributing as a
11132 separate file anyway.
11133 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11134 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11135 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11136 (yyparse): Abort if user code uses longjmp to throw an unexpected
11139 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11141 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11142 Suggested by twlevo@xs4all.nl.
11144 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11145 This avoids a diagnostic from gcc -Wswitch-enum.
11146 Problem reported by twlevo@xs4all.nl.
11148 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11149 standards. Use "file name" or "file" or "name", depending on
11151 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11152 not to hack/foo.tab.c.
11153 (Calc++ Top Level): 2nd arg of main is not const.
11154 * data/glr.c: b4_filename -> b4_file_name.
11155 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11157 (class position): filename -> file_name. All uses changed.
11158 * data/yacc.c: b4_filename -> b4_file_name.
11159 * lib/bitset.h: filename -> file_name in local vars.
11160 * lib/bitset_stats.c: Likewise.
11161 * src/files.c: Likewise.
11162 * src/scan-skel.l ("@output ".*\n): Likewise.
11163 * src/files.c (file_name_split): Renamed from filename_split.
11164 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
11166 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11168 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11169 to accommodate latest gnulib.
11171 * tests/glr-regression.at (Duplicate representation of merged trees):
11172 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11174 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11177 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11179 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11180 All uses changed. Invoke user destructor after an error during a
11181 split parse (trivial change from Joel E. Denny).
11183 * tests/glr-regression.at
11184 (User destructor after an error during a split parse): New test case.
11185 Problem reported by Joel E. Denny in:
11186 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11188 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11190 * README-cvs: Give URLs for recommended tools.
11191 Mention Gzip version problem, and bootstrapping issues.
11192 Remove troubleshooting section, as it's somewhat obsolete.
11194 * bootstrap (no_cache): New var, to accommodate different wget
11195 variants. Use it instead of '-C off'. Problem reported by
11198 * data/glr.c (yydestroyStackItem): New function.
11199 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11200 debugging information. Problem reported by Joel E. Denny.
11202 2005-08-25 Akim Demaille <akim@epita.fr>
11204 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11206 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11208 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11209 Don't invoke destructor on unresolved entries.
11210 * tests/glr-regression.at
11211 (User destructor for unresolved GLR semantic value): New test case.
11212 Problem reported by Joel E. Denny in:
11213 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11215 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11217 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11219 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11220 lib-prefix.m4, po.m4.
11222 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11223 in yydestruct diagnostic, since it might not be an error.
11224 Problem reported by Joel Denny near end of
11225 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11226 * data/lalr1.cc (yyerturn): Likewise.
11227 * data/yacc.c (yyreturn): Likewise.
11228 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11230 * src/files.c: Remove obsolete FIXME comment.
11232 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11233 with the other templates, and to fix bogus run-on messages such
11234 as the one reported at the end of
11235 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11236 All callers changed to avoid the newline.
11237 (yyprocessOneStack): Output two lines rather than one, to accommodate
11238 the above change. This changes the debug output format slightly.
11240 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11241 reported by Joel E. Denny in
11242 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11244 * tests/glr-regression.at (Duplicate representation of merged trees):
11245 New test, from Joel E. Denny in:
11246 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11247 * THANKS: Add Joel E. Denny.
11249 * configure.ac (AC_INIT): Bump to 2.0c.
11251 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11253 * NEWS: Version 2.0b.
11255 * Makefile.am (SUBDIRS): Put examples before tests, so that
11256 "make check" doesn't finish with "All 1 tests passed".
11258 * tests/regression.at (Token definitions): Don't rely on
11259 AT_PARSER_CHECK for data that contains backslashes. It currently
11260 uses 'echo', and 'echo' isn't portable if its argument contains
11261 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11262 that the byte '\0xff' is not printable in the C locale; it is,
11263 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11264 not printable, so use '\0x81' to test.
11266 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11267 version of GCC, since the macro is used with non-GCC compilers.
11269 Fix core dump reported by Pablo De Napoli in
11270 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11271 * tests/regression.at (Invalid inputs with {}): New test.
11272 * src/parse-gram.y (token_name): Translate type before using
11275 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11276 the user's name space. All uses changed to __attribute__
11278 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11279 Add __attribute__ ((__noreturn__)).
11281 * etc/clcommit: Remove. We weren't using it, and it failed
11282 "make maintainer-distcheck".
11283 * Makefile.maint: Merge from coreutils.
11284 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11285 (syntax-check-rules): Change list of rules as described below.
11286 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11287 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11288 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11289 (sc_trailing_space): New rules.
11290 (sc_xalloc_h_in_src): Remove.
11291 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11292 (sc_space_tab, sc_error_exit_success, sc_changelog):
11293 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11294 (makefile-check, po-check, author_mark_check):
11295 (makefile_path_separator_check, copyright-check):
11296 Use grep -n, to make it easier to find violations.
11297 Use CVS_LIST and CVS_LIST_EXCEPT.
11298 (header_regexp, h_re): Remove.
11300 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11301 (my-distcheck): Use more-modern GCC flags.
11302 (signatures, %.asc): Remove.
11303 (rel-files, announcement): Remove signatures.
11304 Restore old updating code, even though we don't use it, so
11305 that we're the same as coreutils.
11306 (alpha, beta, major): Depend on news-date-check.
11307 Make the upload commands.
11309 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11310 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11311 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11312 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11313 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11314 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11315 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11316 * tests/sets.at: Likewise.
11318 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11319 we comment out the Autoconf version number.
11320 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11321 it's error-prone and "make maintainer-distcheck" rejects it.
11323 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11324 Indent calls to "error" to pacify "make maintainer-distcheck",
11325 when the calls are not intended to be translated.
11326 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11328 * src/Makefile.am (DEFS): Use +=, to pacify
11329 "make maintainer-distcheck".
11330 (bison_SOURCES): Add scan-skel.h.
11331 (sc_tight_scope): New rule, from coreutils.
11333 * src/files.c (src_extension, header_extension):
11334 Now static, not extern.
11335 * src/getargs.c (short_options): Likewise.
11336 * src/muscle_tab.c (muscle_table): Likewise.
11337 * src/parse-gram.y (current_class, current_type, current_prec):
11339 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11340 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11341 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11342 void, to avoid warning when NLS is disabled.
11343 * src/output.c: Include scan-skel.h.
11344 (scan_skel): Remove decl, since scan-skel.h does this.
11346 Indent calls to "error" to pacify "make maintainer-distcheck".
11347 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11348 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11349 "make maintainer-distcheck".
11350 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11351 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11352 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11353 (skel_lex_destroy, scan_skel): Move these decls to...
11354 * src/scan-skel.h: New file.
11355 * src/uniqstr.c (uniqstr_assert):
11356 Indent calls to "error" to pacify "make maintainer-distcheck".
11358 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11361 * tests/torture.at: Revamp to avoid misuse of atoi that
11362 "make maintainer-distcheck" complained about.
11364 * examples/extexi (message): Don't print a message more than once,
11365 and omit line-number decoration that makes Emacs compile think
11366 that informative messages are worth worrying about.
11368 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11370 * configure.ac: Update version number.
11372 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11374 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11375 autogenerated by the maintainer.
11376 * examples/calc++/.cvsignore: Add *.yy.
11378 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11379 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11380 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11382 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11384 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11385 from maintainer-distcheck about casting the argument of 'free'.
11387 * NEWS: Mention recent yytname changes.
11388 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11390 * bootstrap: For translations that have not yet been upgraded to
11391 the new runtime-po domain, prime the pump by extracting the
11392 relevant strings from the obsolete translations. This code can be
11393 removed once the bison-runtime domain has been translated by each
11396 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11397 now that token names are already quoted.
11399 Fix problem reported by Anthony Heading.
11400 * data/glr.c (YYTOKEN_TABLE): New macro.
11401 (yytname): Define if YYTOKEN_TABLE.
11402 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11403 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11404 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11405 * src/output.c (prepare_symbols): Output token_table_flag.
11407 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11409 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11410 again if the first call fails.
11412 * data/glr.c (yytnamerr): New function.
11413 (yyreportSyntaxError): Use it to dequote most string literals.
11414 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11415 with other skeletons. All uses changed.
11416 (yytnameerr_): New function.
11417 (yyreport_syntax_error): Use it to dequote most string literals.
11418 * data/yacc.c (yytnamerr): New function.
11419 (yyerrlab): Use it to decode most string literals.
11420 * doc/bison.texinfo (Decl Summary, Calling Convention):
11421 Clarify quoting convention of yytname.
11422 * src/output.c (prepare_symbols): Quote all names. This undoes
11423 the 2005-04-17 change, which is now accomplished (mostly) via
11424 changes in the parsers as described above.
11425 * tests/regression.at (Token definitions, Web2c Actions):
11426 Undo most 2005-04-17 change here, too.
11428 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11430 Fix more problems reported by twlevo@xs4all.nl.
11431 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11432 remove trailing spaces. This loses the exit status of ./types,
11433 and isn't needed since ./types shouldn't be emitting trailing
11435 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11436 as the stack isn't valid in that case.
11438 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11439 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11440 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11441 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11443 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11444 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11445 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11448 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11449 overly-picky compilers that reject 'char *foo = "bar";'.
11451 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11452 to FILE * parameter, not to stderr. This fixes a typo introduced
11453 in the 2005-07-12 change.
11455 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11456 warnings from GCC 4.
11458 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11459 (yyglrShiftDefer, yysplitStack):
11460 Remove unused parameters b4_pure_formals. All uses changed.
11461 (yyglrShift): Remove unused parameters b4_user_formals.
11463 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11465 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11467 Destructor cleanups and regularization among the three skeletons.
11468 * NEWS: Document the behavior changes.
11469 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11470 stack before failing, as the cleanup code will do it for us now.
11471 * data/lalr1.cc (yyerrlab): Likewise.
11472 * data/glr.c (yyparse): Pop everything off the stack before
11473 freeing it, so that destructors get called properly.
11474 * data/lalr1.cc (yyreturn): Likewise.
11475 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11476 This is more consistent.
11477 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11478 why destructors might be called. 1.875 -> 2.1.
11479 (Destructor Decl, Decl Summary, Table of Symbols):
11480 Some English-language cleanups for %destructor.
11481 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11482 Add output line for destructor of start symbol.
11483 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11484 because of that same extra output line.
11486 * NEWS: Document minor wording changes in diagnostics of
11487 Bison-generated parsers.
11488 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11489 Remove unused formals. All uses changed.
11490 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11491 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11492 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11493 Rename yyoverflowab to yyexhaustedlab.
11494 When memory exhaustion occurs during syntax-error reporting,
11495 report it separately rather than in a single diagnostic; this
11497 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11498 (Memory Exhausted): Renamed from Parser Stack Overflow.
11499 Revamp wording slightly to prefer "memory exhaustion".
11500 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11502 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11504 Add i18n support to the GLR skeleton. Partially fix the C++
11505 skeleton; a C++ expert needs to finish this. Remove debugging
11506 msgids; there's little point to having them translated, since they
11507 can be understood only by someone who can read the
11508 (English-language) source code.
11510 Generate runtime-po/bison-runtime.pot automatically, so that we
11511 don't have to worry about garbage getting in that file. We'll
11512 make sure after the next official release that old msgids don't
11514 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11516 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11517 Now auto-generated.
11518 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11519 Fix typos in explanations of the runtime file.
11520 * bootstrap: Change gettext keyword from YYI18N to YY_.
11521 Use standard Makefile.in.in in runtime-po, since we'll arrange
11522 for backward-compatible bison-runtime.po files in a different way.
11523 * data/glr.c (YY_): New macro, from yacc.c.
11524 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11525 Translate messages intended for users.
11526 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11527 the wording in the other skeletons. We don't know that the memory
11529 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11530 Use same method that yacc.c uses.
11531 Don't translate debugging messages.
11532 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11533 it doesn't work (yet), and requires C++ expertise to fix.
11534 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11535 Move defn to a more logical place, to be consistent with other
11537 Don't translate debugging messages.
11538 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11539 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11540 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11541 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11543 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11544 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11546 * tests/glr-regression.at (Badly Collapsed GLR States):
11548 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11549 yylex should return 0 at EOF rather than aborting.
11551 Improve tests for stack overflow in GLR parser.
11552 Problem reported by twlevo@xs4all.nl.
11553 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11555 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11556 can handle the problem.
11557 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11558 (yyparse): New local variable yyresult to record the result.
11559 Use result of setjmp to set it, rather than storing itinto
11561 (yyDone): Remove label.
11562 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11563 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11564 if YYABORT is used).
11565 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11566 yyparse status; put status > 1 into diagnostic.
11567 Check that status==2 works.
11568 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11569 Use exit status 3 for failure to open (which shouldn't happen).
11571 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11573 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11574 1 on syntax error; just let yyparse do its thing.
11575 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11576 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11577 (Exploding the Stack Size with Alloca):
11578 (Exploding the Stack Size with Malloc):
11579 Expect exit status 2, not 1, since the parser is supposed to blow
11580 its stack. Problem reported by twlevo@xs4all.nl.
11582 * data/glr.c (yyparse): Don't assume that the initial calls
11583 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11584 Print a stack-overflow message and fail instead.
11585 Initialize the line-number information before creating the stack,
11586 so that the stack-overflow message can report line zero safely.
11588 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11590 Fix problems reported by twlevo@xs4all.nl.
11591 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11592 (yyuserMerge): Provide a default case if b4_mergers is empty.
11593 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11594 * tests/glr-regression.at
11595 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11596 Add casts to pacify C++ compilers.
11597 * tests/glr-regression.at (Improper merging of GLR delayed action
11598 sets): Declare yylex before using it.
11599 * tests/Makefile.am (maintainer-check-g++): Fix a stray
11600 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11601 test for valgrind; valgrind is independent of g++.
11602 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11603 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11604 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11605 Use a destructor, so that we can expand the stack. Change
11606 YYSTYPE to char * so that we can free it. Cast result of malloc.
11608 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11610 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11611 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11613 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11615 * PACKAGING: New file, suggested by Bruno Haible and taken from
11616 similar wording in gettext's PACKAGING file.
11617 * NEWS: Mention PACKAGING.
11618 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11620 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11622 * NEWS: Document recent i18n improvements.
11623 * bootstrap: Get runtime translations into runtime-po.
11624 Create runtime-po files automatically, if possible.
11625 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11626 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11627 does not infringe on the user's name space.
11628 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11629 * doc/bison.texinfo (Internationalization): Revamp the English
11630 and Texinfo syntax a bit, to try to make it clearer.
11631 (Bison Options, Option Cross Key): Mention --print-localedir.
11632 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11633 YYENABLE_NLS. Quote a bit more.
11634 * runtime-po/.cvsignore: New file.
11635 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11636 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11637 * runtime-po/quot.sed: Likewise.
11638 * runtime-po/boldquot.sed: Likewise.
11639 * runtime-po/en@quot.header: Likewise.
11640 * runtime-po/en@boldquot.header: Likewise.
11641 * runtime-po/insert-header.sin: Likewise.
11642 * runtime-po/remove-potcdate.sin: Likewise.
11643 * runtime-po/Makevars: Likewise.
11644 * runtime-po/LINGUAS: Likewise.
11645 * runtime-po/de.po: Likewise; we will rely on the translation project
11646 to maintain this, so "bootstrap" should get it.
11647 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
11649 * src/main.c (main): Bind the bison-runtime domain, too.
11651 2005-07-12 Bruno Haible <bruno@clisp.org>
11653 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11654 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11655 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11656 * runtime-po: New directory.
11657 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11658 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11659 * runtime-po/Rules-quot: New file, copied from po/.
11660 * runtime-po/quot.sed: Likewise.
11661 * runtime-po/boldquot.sed: Likewise.
11662 * runtime-po/en@quot.header: Likewise.
11663 * runtime-po/en@boldquot.header: Likewise.
11664 * runtime-po/insert-header.sin: Likewise.
11665 * runtime-po/remove-potcdate.sin: Likewise.
11666 * runtime-po/Makevars: New file.
11667 * runtime-po/POTFILES.in: New file.
11668 * runtime-po/LINGUAS: New file.
11669 * runtime-po/bison-runtime.pot: New file.
11670 * runtime-po/de.po: New file.
11671 * m4/bison.m4: New file.
11672 * Makefile.am (SUBDIRS): Add runtime-po.
11673 (aclocaldir, aclocal_DATA): New variables.
11674 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11676 * src/getargs.c (usage): Document --print-localedir option.
11677 (PRINT_LOCALEDIR_OPTION): New enum item.
11678 (long_options): Add --print-localedir option.
11679 (getargs): Handle --print-localedir option.
11680 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11681 (Internationalization): New section.
11683 2005-07-12 Akim Demaille <akim@epita.fr>
11685 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11686 for consistency with the rest of the code.
11687 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11690 2005-07-12 Akim Demaille <akim@epita.fr>
11692 * src/parse-gram.y: Use %printer instead of YYPRINT.
11694 2005-07-12 Akim Demaille <akim@epita.fr>
11696 * src/symtab.h, src/symtab.c (symbol_print): New.
11697 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11698 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11700 2005-07-12 Akim Demaille <akim@epita.fr>
11702 * data/glr.c (b4_syncline): Fix (swap) the definitions of
11703 b4_at_dollar and b4_dollar_dollar.
11705 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11707 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11708 and Pennello's paper.
11710 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11712 * data/yacc.c (yyparse): Undo previous patch. Instead,
11713 set yylsp[0] and yyvsp[0] only if the initial action
11714 sets yylloc and yylval, respectively.
11716 * data/yacc.c (yyparse): In the initial action, set
11717 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11718 This avoids the use of undefined variables if the initial
11719 action does not set yylloc and/or yylval.
11721 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11723 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11724 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11725 Remove from CVS. These files are automatically generated.
11726 * examples/extexi: Clarify that this file is now part of Bison,
11727 not GNU M4, and that it works with any POSIX-compatible Awk.
11728 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11729 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11730 so that we also get calc++-parser.yy. Geneate it.
11731 Use $(AWK), not gawk, since any conforming Awk will do.
11732 Put comment before action, since older 'make' can't handle comment
11734 $(BUILT_SOURCES): List all built sources, not just some of them.
11735 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11736 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11737 $($(calc_sources_generated)): Remove unnecessary test for existence
11738 of target. (This had a shell syntax error anyway; a stray "x".)
11739 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11741 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11743 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11744 implied by the other modules.
11746 2005-07-06 Akim Demaille <akim@epita.fr>
11748 Bind examples/calc++ to the package.
11749 * examples/calc++/Makefile: Remove, replaced by...
11750 * examples/calc++/Makefile.am: ... this new file.
11751 * examples/calc++/test: Remove input.
11752 * examples/calc++/compile: Remove.
11753 * examples/Makefile.am: New.
11754 * configure.ac, Makefile.am: Adjust.
11755 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11757 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11759 * data/glr.c (yyFail): Drastically simplify; since the format argument
11760 never had any % directives, we can simply pass it to yyerror.
11761 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11762 be modified later, as that is the usual style in glr.c.
11763 Problems reported by Paul Hilfinger.
11765 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11766 and size overflow errors.
11767 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11768 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11769 (YYSIZEMAX): New macro.
11770 (yystpcpy): New function, taken from yacc.c.
11771 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11772 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11773 so that we don't have to maintain their signatures.
11774 (yyFail): Check for buffer overflow, by using vsnprintf rather
11775 than vsprintf. Allocate a bigger buffer if possible.
11776 Report an error if buffer allocation fails.
11777 (yyStackOverflow): New function.
11778 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11779 the initialization was successful. It might fail if storage was
11781 (yyexpandGLRStack): Add more checks for storage allocation failure.
11782 Use yyStackOverflow to report failures.
11783 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11784 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11785 Don't assume stack number fits in int.
11786 (yysplitStack): Check for storage allocation failure.
11787 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11788 can print diagnostics on storage allocation failure. All callers
11790 (yyresolveValue): Use yybool for boolean.
11791 (yyreportSyntaxError): Check for size-calculation overflow.
11792 This code is taken from yacc.c.
11793 (yyparse): Check for storage allocation errors when allocating
11796 2005-07-05 Akim Demaille <akim@epita.fr>
11798 Extract calc++ from the documentation.
11799 * doc/bison.texinfo (Calc++): Add the extraction marks.
11800 * examples/extexi: New, from the aborted GNU Programming 2E.
11801 Separate the different paragraph of a file with empty lines.
11802 * examples/Makefile: Use it to extract the whole calc++ example.
11804 2005-06-24 Akim Demaille <akim@epita.fr>
11806 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11809 2005-06-22 Akim Demaille <akim@epita.fr>
11811 * doc/bison.texinfo (C++ Language Interface): First stab.
11812 (C++ Parsers): Remove.
11814 2005-06-22 Akim Demaille <akim@epita.fr>
11816 * data/lalr1.cc (yylex_): Honor %lex-param.
11818 2005-06-22 Akim Demaille <akim@epita.fr>
11820 Start a set of simple examples.
11821 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11822 * examples/calc++/calc++-driver.hh,
11823 * examples/calc++/calc++-parser.yy,
11824 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11825 * examples/calc++/compile, examples/calc++/test: New.
11827 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11829 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11830 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11831 which stems from the 2005-05-27 patch.
11833 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11835 * data/glr.c: Modify treatment of unused parameters to permit use
11836 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11838 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11840 Fix infringement on user name space reported by Janos Zoltan Szabo.
11841 * data/yacc.c (yyparse): strlen -> yystrlen.
11843 2005-05-30 Akim Demaille <akim@epita.fr>
11845 * data/lalr1.cc (_): New.
11846 Translate the various messages.
11848 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11850 Fix infringement on user name space reported by Bruno Haible.
11851 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11852 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11853 the user's name space.
11854 (alloca): Include <stdlib.h> to get it, if it's not built in.
11855 (YYMALLOC, YYFREE): Define only if needed.
11856 (malloc, free): Declare, but only if needed, as this infringes on
11857 the user name space.
11859 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11861 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11862 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11864 * lib/ebitset.c (min, max): Undef before defining.
11865 * lib/vbitset.c (min, max): Likewise.
11866 * lib/subpipe.c (create_subpipe): Save local variables in case
11867 vfork clobbers them.
11869 2005-05-24 Bruno Haible <bruno@clisp.org>
11871 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11872 error message syntax used by gcc-4.0.
11874 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11876 * README: Mention m4 1.4.3. Remove obsolete advice about
11877 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11879 * bootstrap: Remove workaround for problem I encountered with
11880 gettext 0.14.1; it seems to be fixed now.
11882 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11884 * NEWS: Version 2.0a.
11886 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11887 the previous change.
11889 Various maintainer cleanups.
11890 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11891 conftest*, for benefit of CVS commands run at the same time as
11892 "configure". Add build-aux, since "bootstrap" now creates it and
11894 * Makefile.cfg (move_if_change): Remove.
11895 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11896 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11897 (po_repo, do-po-update, po-update, wget_files, get-targets):
11898 (config.guess-url_prefix, config.sub-url_prefix):
11899 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11900 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11901 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11903 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11904 this is now the recommended name.
11905 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11906 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11907 ylwrap. These files now go into build-aux.
11908 * config/move-if-change: Remove.
11909 * config/prev-version.txt: Bump from 1.75 to 2.0.
11911 * bootstrap: Add stdio-safer, unistd-safer modules.
11912 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11914 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11915 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11916 * lib/subpipe.c: Include "unistd-safer.h".
11917 (create_subpipe): Make sure all the newly-created
11918 file descriptors are > 2, so that diagnostics don't
11919 get sent down them (which might cause Bison to hang, in theory).
11920 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11921 * src/files.c (xfopen): Use fopen_safer, not fopen.
11923 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11924 yesterday's yacc.c fix.
11926 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11928 * data/glr.c, data/lalr1.cc: Update copyright date.
11930 Fix a destructor bug reported by Wolfgang Spraul in
11931 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11932 * data/yacc.c (yyabortlab): Don't call destructor, and
11933 don't set yychar to EMPTY.
11934 (yyoverflowlab): Don't call destructor.
11935 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11936 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11937 since we no longer output the message "discarding lookahead token
11940 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11942 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11943 fix a small glitch in debugging output.
11944 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11945 after YY_SYMBOL_PRINT where needed.
11947 (struct yyGLRState): Add some comments.
11948 (struct yySemanticOption): Add some comments.
11949 (union yyGLRStackItem): Add comment.
11951 (yymergeOptionSets): Correct this to properly perform the union,
11952 avoiding infinite reported by Michael Rosien.
11955 * tests/glr-regression.at: Add test for GLR merging error reported
11958 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11960 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11961 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11962 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11963 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11964 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11965 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11966 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11967 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11968 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11969 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11970 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11971 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11972 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11973 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11974 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11975 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11976 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11977 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11978 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11979 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11980 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11981 src/output.h, src/parse-gram.c, src/parse-gram.h,
11982 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11983 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11984 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11985 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11986 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11987 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11988 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11989 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11990 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11991 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11992 tests/reduce.at, tests/regression.at, tests/sets.at,
11993 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11994 Update FSF postal mail address.
11996 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11998 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11999 Problem reported by Ralf Menzel.
12001 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12003 * tests/actions.at: Test that stack overflow invokes destructors.
12004 From Marcus Holland-Moritz.
12005 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12007 (yyreturn): to here. That way, destructors are called properly
12008 even if the stack overflows, or the user calls YYACCEPT or
12009 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12010 (yyoverflowlab): Destroy the lookahead.
12012 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12014 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12016 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12018 * NEWS: Bison-generated C parsers no longer quote literal strings
12019 associated with tokens.
12020 * src/output.c (prepare_symbols): Don't escape strings,
12021 since users don't want to see C escapes.
12022 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12024 * tests/input.at (Torturing the Scanner): Likewise.
12025 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12027 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12029 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12030 the data size is known to be too small and we can't increase it.
12031 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12033 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12035 * src/parse-gram.y: Include quotearg.h.
12036 (string_as_id): Quote $1 before using it as a key, since the
12037 lexer no longer quotes it for us.
12038 (string_content): Don't strip quotes, since lexer no longer
12040 * src/scan-gram.l: Include quotearg.h.
12041 ("\""): Omit quote.
12042 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12043 a key, since the rest of the lexer doesn't quote it.
12044 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12045 * tests/regression.at (Token definitions): Check for backslashes
12048 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12049 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12050 (yyparse): Revamp code to generate long syntax error message, to
12051 make it easier to translate, and to avoid problems with arithmetic
12052 overflow. Change "virtual memory" to "memory" in diagnostic, since
12053 we don't know whether the memory is virtual.
12055 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12057 * NEWS: Bison-generated C parsers now use the _ macro to
12059 * data/yacc.c (_) [!defined _]: New macro.
12060 All English strings wrapped inside this macro.
12061 * doc/bison.texinfo (Bison Parser): Document _.
12062 * po/POTFILES.in: Include src/parse-gram.c, since it now
12063 includes translateable strings that parse-gram.y doesn't.
12065 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12067 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12068 reverting the 2004-10-11 change to this function.
12069 (symbol_check_alias_consistency): Don't call symbol_type_set
12070 if the type name is already correct.
12071 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
12073 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
12075 * tests/regression.at (Token definitions): Don't use a token named
12076 c, as that generates a "#define c ..." that runs afoul of buggy
12077 stdlib.h that uses the identifier c as a member of struct
12078 drand48_data. Problem reported by Horst Wente.
12080 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
12082 * bootstrap: Change translation URL from
12083 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
12084 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
12085 redirection glitches. Problem reported by twlevo@xs4all.nl.
12087 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12089 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12090 after operands; POSIX says this isn't portable for the c99 command.
12092 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12094 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12095 immediately if a data overrun has occurred; this may help us track
12096 down what may be a spurious failure on MacOS.
12098 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12100 Respond to problems reported by twlevo@xs4all.nl.
12102 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12104 * src/vcg.h: Comment fix.
12105 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12106 (G_CMAX): Change to -1 instead of INT_MAX.
12108 * data/yacc.c (yyparse): Omit spaces before #line.
12110 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12112 * src/tables.c (state_number_to_vector_number): Put it inside an
12113 "#if 0", since it's not currently used. Problem reported by
12116 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12118 * src/output.c (escaped_output): Renamed from
12119 escaped_file_name_output, since we now use it for symbol tags as
12120 well. All uses changed.
12121 (symbol_destructors_output, symbol_printers_output):
12122 Escape symbol tags too.
12123 Problem reported by Matyas Forstner in
12124 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12126 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12128 * src/output.c (user_actions_output, token_definitions_output,
12129 symbol_destructors_output, symbol_printers_output): Likewise.
12130 * src/reader.c (prologue_augment): Likewise.
12131 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12133 * src/vcg.c (output_edge): Don't quote linestyle arg.
12134 Problem reported by twlevo@xs4all.nl.
12136 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12138 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12139 example, reported by Derek M Jones. Also, make the example even
12140 more outrageous, to better illustrate how bad the problem is.
12142 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12144 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12145 putsym. Typo reported by Sebastian Piping.
12147 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12149 * doc/bison.texinfo (Language and Grammar): some -> same
12150 (Epilogue): int he -> in the
12151 Typos reported by Sebastian Piping via Justin Pence.
12153 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12155 * tests/glr-regression.at (Improper handling of embedded actions
12156 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12157 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12158 with dollar signs in test names.
12159 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12160 for a similar reason.
12162 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12164 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12165 wants to redefine G_VIEW.
12167 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12169 * src/vcg.c (get_view_str): Remove case for normal_view.
12170 Problem reported by twlevo@xs4all.nl.
12172 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12174 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12175 Problem reported by twlevo@xs4all.nl.
12177 * doc/bison.texinfo: Change @dircategory from "GNU programming
12178 tools" to "Software development". Requested by Richard Stallman
12181 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12183 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12184 Problem reported by twlevo@xs4all.nl.
12186 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12188 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12189 keyword; it's not needed with modern compilers, and it doesn't
12190 affect correctness with older compilers. Suggested by
12193 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12195 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12196 gcc -Wswitch-default.
12197 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12198 * data/yacc.c (yyparse): Likewise.
12200 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12202 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12203 already. Let config.h define any nonstandard values.
12205 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12207 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12208 for the benefit of slower hosts. Problem reported by
12209 Nelson H. F. Beebe.
12211 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12213 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12214 being defined and not used.
12215 * data/lalr1.cc (yyparse): Likewise.
12216 Use "if (false)" rather than "if (0)".
12218 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12220 * TODO: Mention that we should allow NUL bytes in tokens.
12222 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12224 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12225 Problem reported by Hans Aberg.
12227 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12229 * src/getargs.c (version): Happy new year; update overall
12230 program copyright date from 2004 to 2005.
12232 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12233 Problem reported by Hans Aberg.
12234 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12235 (Output file names.): Add a test for the case when standard output
12238 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12240 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12241 to fix an oversight in the Bison 2.0 manual.
12243 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12245 * NEWS: Version 2.0. Reformat the existing news items since
12246 1.875, so that related items are grouped together.
12247 * configure.ac (AC_INIT): Bump version to 2.0.
12248 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12250 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12251 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12252 otherwise, we're not testing alloca. Unfortunately there's no
12253 simple way to consult HAVE_ALLOCA here.
12255 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12258 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12259 hand. This avoids a warning about comparing int to size_t when
12260 GCC warnings are enabled.
12262 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12264 * NEWS: Bison-generated parsers no longer default to using the
12265 alloca function (when available) to extend the parser stack, due
12266 to widespread problems in unchecked stack-overflow detection.
12267 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12268 responsibility to set it to a positive value. This lets the user
12269 specify a value that is not a preprocessor constant.
12270 * data/yacc.c (YYMAXDEPTH): Likewise.
12271 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12272 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12273 to be a compile-time constant. However, explain the constraints on it.
12274 Also, explain the constraints on YYINITDEPTH.
12275 (Table of Symbols): Explain that alloca is no longer the default.
12276 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12279 * doc/bison.texinfo (Location Default Action): Mention that n must
12280 be zero when k is zero. Suggested by Frank Heckenbach.
12282 2004-12-22 Akim Demaille <akim@epita.fr>
12284 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12285 (parser::state_type, parser::semantic_type, parser::location_type):
12286 Private, not public.
12287 (parser::parse): Return ints, not bool.
12288 Returning a bool introduces a problem: 0 corresponds to false, and
12289 it seems weird to return false on success. Returning true changes
12290 the conventions for yyparse.
12291 Alternatively we could return void and send an exception.
12292 There is no clear consensus (yet?).
12293 (state_stack, semantic_stack, location_stack): Rename as...
12294 (state_stack_type, semantic_stack_type, location_stack_type): these.
12295 Private, not public.
12296 * tests/c++.at: New.
12297 * tests/testsuite.at, tests/Makefile.am: Adjust.
12299 2004-12-21 Akim Demaille <akim@epita.fr>
12301 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12303 2004-12-21 Akim Demaille <akim@epita.fr>
12305 Don't impose std::string for filenames.
12307 * data/lalr1.cc (b4_filename_type): New.
12308 (position::filename): Use it.
12309 (parser.hh): Move the inclusion of stack.hh and location.hh below
12310 the user code, so that needed headers for the filename type can be
12312 Forward declare them before the user code.
12313 * tests/Makefile.am (check-local, installcheck-local): Pass
12314 TESTSUITEFLAGS to the TESTSUITE.
12316 2004-12-20 Akim Demaille <akim@epita.fr>
12318 Use more STL like names: my_class instead of MyClass.
12320 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12321 (SemanticStack, SemanticType, StateStack, StateType)
12322 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12323 (Parser::value): Rename as...
12324 (location_stack, location_type, rhs_number_type, semantic_stack)
12325 (semantic_type, state_stack, state_type, token_number_type, stack)
12326 (slice, traits, parser::yylloc, parser::yylval): these.
12328 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12330 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12332 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12333 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12335 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12337 Remove uses of 'short int' and 'unsigned short int'. This raises
12338 some arbitrary limits. It uses more memory but nowadays that's
12339 not much of an issue.
12341 This change does not affect the generated parsers; that's a different
12342 task, as some users will want to conserve memory there.
12344 Ideally we should use size_t to represent all object counts, and
12345 something like ptrdiff_t to represent signed differences of object
12346 counts; but that will require more code-cleanup than I have the
12347 time to do right now.
12349 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12350 Use size_t, not int or short int, to count objects.
12351 * src/closure.c (nritemset, closure): Likewise.
12352 * src/closure.h (nritemset, closure): Likewise.
12353 * src/nullable.c (nullable_compute): Likewise.
12354 * src/print.c (print_core): Likewise.
12355 * src/print_graph.c (print_core): Likewise.
12356 * src/state.c (state_compare, state_hash): Likewise.
12357 * src/state.h (struct state): Likewise.
12358 * src/tables.c (default_goto, goto_actions): Likewise.
12360 * src/gram.h (rule_number, rule): Use int, not short int.
12361 * src/output.c (prepare_rules): Likewise.
12362 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12363 errs, reductions): Likewise.
12364 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12366 * src/tables.c (vector_number, tally, action_number,
12367 ACTION_NUMBER_MINIMUM): Likewise.
12368 * src/output.c (muscle_insert_short_int_table): Remove.
12370 2004-12-17 Akim Demaille <akim@epita.fr>
12372 * data/lalr1.cc: Extensive Doxygenation.
12373 (error_): Rename as...
12374 (error): this, since it is visible to the user.
12376 (Parser::message): Now an automatic variable from...
12377 (Parser::yyreport_syntax_error_): here.
12378 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12380 * tests/input.at: Escape $.
12382 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12384 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12385 Parenthesize rhs to avoid obscure problems with mistakes like
12386 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12387 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12388 b4_rhs_location): Likewise.
12389 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12390 b4_rhs_location): Likewise.
12392 2004-12-16 Akim Demaille <akim@epita.fr>
12394 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12395 yacc.c: be sure to stay within yycheck_.
12396 * tests/actions.at: Re-enable C++ tests.
12398 2004-12-16 Akim Demaille <akim@epita.fr>
12400 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12403 2004-12-16 Akim Demaille <akim@epita.fr>
12405 Use #define to handle the %name-prefix.
12407 * data/glr.c, data/yacc.c: Comment changes.
12408 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12409 so that one can refer to yylex in the parser file, and have it
12410 renamed, as is the case with other skeletons.
12412 2004-12-16 Akim Demaille <akim@epita.fr>
12414 Move lalr1.cc internals into yy*.
12416 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12417 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12418 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12419 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12420 (empty_, final_, terror_, errcode_, ntokens_)
12421 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12422 (looka_, ilooka_, error_range_, nerrs_):
12424 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12425 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12426 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12427 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12428 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12429 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12430 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12431 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12434 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12436 Fix some problems reported by twlevo at xs4all.
12437 * src/symtab.c (symbol_new): Report an error if the input grammar
12438 contains too many symbols. This is better than calling abort() later.
12439 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12440 (struct node, struct graph):
12441 Rename member expand to stretch. All uses changed.
12442 (struct graph): Remove member layoutalgorithm. All uses removed.
12443 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12444 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12446 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12448 2004-12-15 Akim Demaille <akim@epita.fr>
12450 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12451 Add more Doxygen comments.
12452 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12453 (report_syntax_error_, translate_): Rename as...
12454 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12455 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12457 2004-12-15 Akim Demaille <akim@epita.fr>
12459 * data/lalr1.cc (lex_): Rename as...
12461 Move the trace here.
12462 Take the %name-prefix into account.
12463 Reported by Alexandre Duret-Lutz.
12465 2004-12-15 Akim Demaille <akim@epita.fr>
12467 Simplify the C++ parser constructor.
12469 * data/lalr1.cc (debug_): Rename as...
12470 (yydebug_): so that the parser's internals are always in the yy*
12473 (b4_parse_param_decl): Remove the leading comma as it is now only
12474 called as unique argument list.
12475 (Parser::Parser): Remove the constructor accepting a location and
12476 an initial debugging level.
12477 Remove from the other ctor the argument for the debugging level.
12478 (debug_level_type, debug_level, set_debug_level): New.
12480 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12483 2004-12-15 Akim Demaille <akim@epita.fr>
12485 Remove b4_root related material: failure experiment
12486 (which goal was to allow to derive from a class).
12488 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12489 definitions and uses.
12491 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12493 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12494 not 2, since it's not portable to subtract 1 from the start of an
12495 array. The new item 0 is never set or used. All uses changed.
12497 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12498 the default definition of YYLLOC_DEFAULT. Problem reported
12499 by Frank Heckenbach.
12501 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12503 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12504 the normal case and one for the error case. Just use the
12505 first one uniformly. Problem reported by Frank Heckenbach.
12506 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12507 use exactly the same macro in both places.
12508 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12509 so that the normal-case YYRHSLOC works for the error case too.
12511 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12512 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12513 * doc/bison.texinfo (Location Default Action): Don't claim that
12514 we have an array of locations. Use the same macro for both glr
12515 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12518 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12520 * HACKING: Update email addresses to send announcements to.
12522 * configure.ac (AC_INIT): Bump version to 1.875f.
12524 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12526 * NEWS: Version 1.875e.
12527 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12529 * src/scan-skel.l: Include "complain.h", for "fatal".
12531 * src/relation.h (relation_print, relation_digraph):
12532 Relation sizes are of type relation_node, not size_t (this is
12533 merely a doc fix, since the two types are equivalent).
12534 (relation_transpose): Relation sizes are of type relation_node,
12536 * src/relation.c: Likewise.
12537 (top, infinity): Now of type relation_node, not int.
12538 (traverse, relation_transpose): Use relation_node, not int.
12540 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12541 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12542 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12544 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
12545 specifying whether the test should be skipped. Use it tp
12546 specify that the [%defines %skeleton "lalr1.cc"] tests currently
12547 fail on some hosts, and should be skipped.
12549 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12551 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12552 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12553 unless otherwise specified below.
12555 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12556 to allocate kernel_base, kernel_items, kernel_size, since
12557 they needn't be initialized to 0.
12558 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12559 * src/closure.c (new_closure): Likewise, for itemset.
12560 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12561 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12562 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12563 (build_relations): Likewise for edge, states1, includes.
12564 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12565 * src/reader.c (packgram): Likewise, for ritem, rules.
12566 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12567 * src/relation.c (relation_digraph): Likewise for VERTICES.
12568 (relation_transpose): Likewise for new_R, end_R.
12569 * src/symtab.c (symbols_token_translations_init): Likewise for
12570 token_translations.
12571 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12572 (token_actions): Likewise for yydefact, actrow, conflrow,
12574 (save_column): Likewise for froms[symno], tos[symno].
12575 (goto_actions): Likewise for state_count.
12576 (pack_table): Likewise for base, pos, check.
12577 (tables_generate): Likewise for width.
12579 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12580 for initial core. Just have a separate core, so we needn't worry
12581 about whether kernel_size and kernel_base are initialized.
12583 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12584 kernel_size, kernel_items): Remove unnecessary initialization.
12585 * src/conflicts.c (conflicts): Likewise.
12586 * src/derives.c (derives): Likewise.
12587 * src/muscle_tablc (muscle_insert): Likewise.
12588 * src/relation.c (relation_digraph): Likewise.
12589 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12590 conflrow, conflict_table, conflict_list, table, check):
12593 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12594 This is because all callers pass unsigned int.
12595 * src/closure.h (new_closure): Likewise.
12597 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12598 (build_relations): Initialize includes[i] in all cases.
12599 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12600 and rules[ruleno].precsym. Initialize members in order.
12601 * src/relation.c (relation_transpose): Always initialize new_R[i]
12603 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12605 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12606 conflict_list[0] was always 0, but now it isn't initialized.
12608 * src/table.c (table_grow): When conflict_table grew, the grown
12609 area wasn't cleared. Fix this.
12611 * lib/.cvsignore: Add strdup.c, strdup.h.
12612 * m4/.cvsignore: Add strdup.m4.
12614 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12616 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12617 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12618 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12619 ngotos + 1 without checking for overflow.
12620 (build_relations): Use END_NODE, not -1, to denote end of edges.
12621 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12622 build_relations): Use goto_number, not int, for goto numbers.
12623 * src/tables.c (save_column, default_goto): Likewise.
12625 2004-11-23 Akim Demaille <akim@epita.fr>
12627 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12628 of #defining from yystype.
12629 Don't typedef yystype, C++ does not need it.
12630 This lets it possible to forward declare it as union.
12632 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12634 * bootstrap (gnulib_modules): Add extensions.
12635 Problem reported by Jim Meyering.
12637 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12639 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12640 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12641 src/system.h, src/tables.c: XFREE -> free, to accommodate
12642 recent change to gnulib xalloc.h.
12643 Problem reported by Jim Meyering.
12645 2004-11-17 Akim Demaille <akim@epita.fr>
12647 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12649 2004-11-17 Akim Demaille <akim@epita.fr>,
12650 Alexandre Duret-Lutz <adl@gnu.org>
12652 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12654 (YYCDEBUG): Adjust.
12655 Use it instead of cdebug_.
12656 (Parser::debug_stream, Parser::set_debug_stream): New.
12657 (Parser::symprint_): Define cdebug_ for temporary backward
12659 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12662 2004-11-17 Akim Demaille <akim@epita.fr>
12664 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12665 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12666 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12667 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12669 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12671 * data/glr.c (yyloc_default): Remove; not used.
12672 Problem reported by Frank Heckenbach.
12674 2004-10-25 Akim Demaille <akim@epita.fr>
12676 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12677 Introduce another definition to address simple location arrays.
12678 (yyGLRStack): New member: yyerror_range.
12679 (yyrecoverSyntaxError, yyparse): Update it.
12680 (yyrecoverSyntaxError): Use it when shifting the error token to
12681 have an accurate range, equivalent to the one computed by both
12682 yacc.c and lalr1.cc.
12683 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12684 that column numbers start at column 0, as per GNU Coding
12685 Standards, the others tests, and the doc.
12686 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12687 Adjust to the above change (first column is 0).
12688 And adjust the location of the "<error>", now covering the whole
12691 2004-10-22 Akim Demaille <akim@epita.fr>
12692 and Paul Eggert <eggert@cs.ucla.edu>
12694 Remove some arbitrary limits on goto numbers and relations.
12695 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12696 initial values, since they're never used.
12697 (set_goto_map): ngotos is now unsigned, so test for overflow
12698 by seeing whether it wraps around to zero.
12699 * src/lalr.h (goto_number): Now size_t, not short int.
12700 (GOTO_NUMBER_MAXIMUM): Remove.
12701 * src/relation.c (relation_print, traverse, relation_transpose):
12702 Check for END_NODE rather than looking at sign.
12703 * src/relation.h (END_NODE): New macro.
12704 (relation_node): Now size_t, not short int.
12706 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12708 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12709 keyword, not an identifier. Problem reported by Baron Schwartz in
12710 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12712 2004-10-11 Akim Demaille <akim@epita.fr>
12714 * src/symtab.c (symbol_check_alias_consistency): Also check
12715 type names, destructors, and printers.
12716 Reported by Alexandre Duret-Lutz.
12717 Recode the handling of associativity and precedence in terms
12718 of symbol_precedence_set.
12719 Accept no redeclaration at all, not even equal to the previous
12721 (redeclaration): New.
12722 Use it to factor redeclaration complaints.
12723 (symbol_make_alias): Don't set the type of the alias, let
12724 symbol_check_alias_consistency do it as for other features.
12725 * src/symtab.h (symbol): Add new member prec_location, and
12727 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12728 * tests/input.at (Incompatible Aliases): New.
12730 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12732 .cvsignore fixes to accommodate gnulib changes,
12733 and the practice of naming build directories "_build".
12734 * .cvsignore: Add "_*". Sort.
12735 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12736 * m4/.cvsignore: Add "*_gl.m4".
12738 2004-10-06 Akim Demaille <akim@epita.fr>
12740 * src/parse-gram.y (add_param): Fix the truncation of trailing
12743 2004-10-05 Akim Demaille <akim@epita.fr>
12745 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12746 whether the reducion was empty or not. This leaves room to
12747 improve the use of YYLLOC_DEFAULT in such a case.
12748 lalr1.cc is still experimental, so changing this is acceptable.
12749 And finally, there are probably not many users who changed the
12750 handling of locations in GLR, so changing is admissible too.
12752 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12753 empty reduction, set @$ to an empty location ending the previously
12755 Adjust uses to make sure the code is triggered on empty
12757 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12758 expected output: empty reductions have empty locations.
12760 2004-09-29 Akim Demaille <akim@epita.fr>
12762 * data/lalr1.cc: Move towards a more standard C++ coding style
12763 for templates: Class < T > -> Class<T>.
12765 2004-09-29 Akim Demaille <akim@epita.fr>
12767 * data/lalr1.cc: Reinstall the former ctor, for sake of
12768 compatibility, but warn it will be removed.
12769 Move towards a more standard C++ coding style (i.e., type *var ->
12772 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12774 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12775 since it's less likely to work if NULs are involved in the future.
12777 2004-09-27 Akim Demaille <akim@epita.fr>
12779 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12781 2004-09-27 Akim Demaille <akim@epita.fr>
12783 * data/lalr1.cc (b4_parse_param_decl_1): New.
12784 (b4_parse_param_decl): Use it to have different names between attribute
12785 and argument names.
12786 (b4_cc_constructor_call): Likewise.
12788 2004-09-24 Akim Demaille <akim@epita.fr>
12790 * src/parse-gram.y (add_param): Strip the leading and trailing
12791 blanks from a formal argument declaration.
12792 (YY_LOCATION_PRINT): New.
12794 2004-09-24 Akim Demaille <akim@epita.fr>
12796 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12797 after the location.
12799 2004-09-24 Akim Demaille <akim@epita.fr>
12801 * doc/bison.texinfo (Table of Symbols): Sort.
12803 2004-09-21 Akim Demaille <akim@epita.fr>
12805 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12806 the useless parentheses.
12807 Suggested by Paul Eggert.
12809 2004-09-20 Akim Demaille <akim@epita.fr>
12811 Let the initial-action act on the look-ahead, and use it for the
12812 "initial push" (corresponding to an hypothetical beginning-of-file).
12813 And let lalr1.cc honor %initial-action.
12815 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12817 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12818 (Parser::Parser): Remove the ctor that used to initialize it.
12819 (Parser::parse): Like in the other skeletons, issue the "starting
12820 parse" message before any action.
12821 Honor %initial-action.
12822 Initialize the stacks with the lookahead.
12823 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12825 Push them in the stacks.
12826 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12828 2004-09-20 Akim Demaille <akim@epita.fr>
12830 * doc/bison.texinfo (Initial Action Decl): New.
12832 2004-09-20 Akim Demaille <akim@epita.fr>
12834 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12835 clearer criterion to define it.
12836 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12837 When reducing on an empty RHS, use the latest stacked location as
12839 yylloc is not always available.
12840 * data/glr.c: Likewise.
12841 Also, honor initial-actions.
12843 2004-09-20 Akim Demaille <akim@epita.fr>
12845 * data/yacc.c (YY_LOCATION_PRINT): New.
12846 Define when we know YYLTYPE's structure, i.e., when the default
12847 YYLLOC_DEFAULT is used.
12848 * data/c.m4 (b4_yysymprint_generate): Use it.
12849 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12850 value of the result.
12851 (error_start_): Replace with...
12852 (error_range_): this location array.
12853 This allows to replace code relying on the implementation of
12854 locations by portable code.
12855 * data/yacc.c (yylerrsp): Replace with...
12856 (yyerror_range): this.
12857 Every time a token is popped, update yyerror_range[0], to have an
12858 accurate location for the error token.
12859 * data/glr.c (YY_LOCATION_PRINT): New.
12860 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12861 deference a pointer.
12862 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12863 report the location in %printers.
12865 * src/scan-skel.l: Instead of abort, report error messages to ease
12866 understanding skeleton scanning failures.
12868 2004-09-16 Akim Demaille <akim@epita.fr>
12870 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12871 (iterator, const_iterator): these, to be more in the C++ spirit.
12872 Also, return reverse iterators so that when displaying the stack
12873 we display its bottom first.
12874 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12876 We should probably use vector here though.
12878 2004-09-16 Akim Demaille <akim@epita.fr>
12880 Have more complete shift traces.
12882 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12883 to report Shifts instead of ad hoc YYDPRINTF invocations,
12884 including for the error token.
12885 * data/lalr1.cc (symprint_): Output the location.
12886 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12887 output the location within the %printer.
12888 Activate GLR tests, at least to make sure they compile properly.
12889 They still don't pass though.
12890 * tests/calc.at: Adjust expect verbose output, since now "Entering
12891 state..." is on a different line than the "Shifting" message.
12893 2004-09-08 Akim Demaille <akim@epita.fr>
12895 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12896 Bison directive from the Bison file to the invocation of this
12897 macro, so that these directives are passed to
12898 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12899 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12900 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12901 the extra Bison directives instead of the whole series.
12902 Change the grammar so that there are recoverable errors, and
12903 unrecoverable errors. Now we can have the parser give up before
12904 consuming the whole input. As a result we now can observe that
12905 the lookahead is freed when needed.
12906 Change the parser source to parse argv[1] instead of a hard coded
12908 Simplify yylex, and give a value and location to EOF.
12909 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12910 passed directives already coded in the file.
12911 Add some tests to check the location of "error".
12912 For some tests, the C++ parser is correct, and not yacc.c.
12913 For other tests, they provide different, but unsatisfying, values,
12914 so keep the C++ value so that at least one parser is "correct"
12915 according to the test suite.
12916 (Actions after errors): Remove, this is subsumed by the
12917 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12919 2004-09-06 Akim Demaille <akim@epita.fr>
12921 * data/lalr1.cc: Adjust the indentation of the labels.
12922 (Parser::pop): New.
12925 2004-09-06 Akim Demaille <akim@epita.fr>
12927 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12928 argument, an informative message.
12929 Call YY_SYMBOL_PRINT.
12930 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12931 * data/lalr1.cc (destruct_): Likewise.
12932 In addition, no longer depend on b4_yysymprint_generate and
12933 b4_yydestruct_generate to generate these functions, do it "by
12936 2004-09-03 Akim Demaille <akim@epita.fr>
12938 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12939 invoked, yydestruct the lookahead.
12940 * tests/calc.at (Calculator $1): Update the expected lengths of
12941 traces: there is an added line for the discarded lookahead.
12942 * doc/bison.texinfo (Destructor Decl): Some rewording.
12943 Define "discarded" symbols.
12945 2004-09-02 Akim Demaille <akim@epita.fr>
12947 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12949 2004-09-02 Akim Demaille <akim@epita.fr>
12951 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12952 (YYDSYMPRINTF): Rename as...
12953 (YY_SYMBOL_PRINT): this.
12954 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12956 Use it instead of direct symprint_ calls.
12957 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12960 2004-09-02 Akim Demaille <akim@epita.fr>
12962 * data/lalr1.cc (b4_yysymprint_generate): New.
12963 (symprint_): New member function, defined when YYDEBUG.
12964 Use it consistently instead of token/nterm debugging output by
12966 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12967 %printer calls to use cdebug_ when using lalr1.cc.
12969 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12971 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12972 with #ifdef YYDEBUG.
12974 2004-08-26 Akim Demaille <akim@epita.fr>
12976 * doc/bison.texinfo (Implementing Loops): Rename as...
12977 (Implementing Gotos/Loops): this.
12979 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12981 Adjust to latest gnulib.
12982 * bootstrap (gnulib_modules): Add xalloc-die.
12983 Set LC_ALL=C so that file names sort consistently.
12984 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12985 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12986 uintmax_t.m4, ulonglong.m4.
12987 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12988 po.m4 since we are now using _gl.m4 instead.
12990 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12992 * src/scan-action.l: Remove. Scanning of semantic actions is
12993 handled in scan-gram.l.
12995 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12997 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12999 * src/location.h (struct): The file member is a uniqstr.
13000 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13002 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13004 Fix bug with non-%union parsers that have printers or destructors,
13005 which led to a Bison core dump. Reported by Peter Fales in
13006 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
13008 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13009 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13010 not to our own type.
13011 * src/output.c (symbol_destructors_output, symbol_printers_output):
13012 Don't assume %union.
13013 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13014 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13015 UNION-FLAG. All callers changed.
13016 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13017 Use type char, not unsigned int, when declaring an array of char;
13018 this lets us remove a cast.
13019 (Printers and Destructors): Add non-%union test cases.
13021 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13023 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13024 GLR writeups. E.g., avoid frenchspacing and the future tense,
13025 change "lookahead" to "look-ahead", and change "wrt" to "with
13028 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13030 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13031 New sections, split off from the GLR Parsers section. Put the new
13032 Simple GLR Parser near the start of the GLR section, for clarity.
13033 Rewrite connective text.
13035 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
13037 * doc/bison.texinfo (Simple GLR Parsers): New section.
13039 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13041 * NEWS, TODO, doc/bison.texinfo:
13042 Use "look-ahead" instead of "lookahead", to be consistent.
13043 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13044 while we're fixing "look-ahead".
13045 * src/conflicts.c (shift_set): Renamed from shiftset.
13046 (look_ahead_set): Renamed from lookaheadset.
13047 * src/print.c: Likewise.
13048 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13049 name for "lookahead".
13050 (report_types, usage): Likewise.
13051 * src/getargs.h (report_look_ahead_tokens): Renamed from
13053 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13054 compute_lookaheads.
13055 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13056 (look_ahead_tokens_print): Renamed from lookaheads_print.
13057 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13058 state_rule_lookaheads_print.
13059 * src/state.h: Likewise.
13060 (reductions.look_ahead_tokens): Renamed from lookaheads.
13061 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13062 AT_DATA_LOOKAHEADS_GRAMMAR.
13064 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13066 * README: Update location of patched M4 distribution.
13068 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13070 Don't assume the C++ compiler takes the same arguments as the C compiler
13072 * configure.ac (O0CXXFLAGS): New var.
13073 * tests/atlocal.in (CXXFLAGS): Use it.
13075 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
13077 Fix some "make check" problems with C++ reported by
13078 Albert Chin-A-Young for Tru64 C++ in this thread:
13079 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
13081 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
13082 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13083 Output to a .cc file for C++, not to a .c file.
13084 * tests/calc.at (AT_CHECK_CALC): Likewise.
13085 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13086 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13088 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13090 * tests/calc.at, tests/actions.at: Workaround for SGI
13091 C++ compiler. (trivial change)
13093 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13095 Spent a few hours checking out which prerequisite versions the
13096 current sources actually require. I went all the way back to
13097 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13098 a seemingly endless set of combinations of versions more recent
13099 than that. The bottom line is that the current sources require
13100 fairly recent versions of the build tools, and it'll be some work
13102 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13103 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13104 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13105 Add comments explaining why those particular versions are
13108 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13109 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
13110 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
13112 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13113 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13115 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13117 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13118 0.11.5. Suggested by Bruno Haible.
13119 * bootstrap: Remove gettext version checking.
13121 * doc/bison.texinfo (Decl Summary): Also mention that %union
13122 can depend on prerequisite types. Problem reported by Tim
13125 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13127 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13128 * README-alpha: Don't tell people not to package this.
13130 * bootstrap: Don't assume $(...) works; use `...` instead.
13131 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13134 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13135 put into the -d output file, and mention what to do if YYSTYPE is
13136 defined as a macro.
13138 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13140 Undo change made earlier today: it caused autopoint to not bring
13141 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13144 * bootstrap: Check that gettext version matches what's in
13145 configure.ac. Warn users to ignore robots.txt ERROR 404.
13146 * bootstrap: Undo today's earlier change (logged below).
13147 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
13149 The gettext version checking is causing more trouble than it's
13150 curing; remove it. Problem reported by Paul Hilfinger.
13152 * bootstrap: Issue a warning that one can expect a message
13153 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13154 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13156 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13158 Ensure that the C++ compiler used for testing actually works on a
13159 simple test program; if not, skip the C++-related tests. Problem
13160 reported by Vin Shelton in:
13161 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
13163 * m4/cxx.m4: New file.
13164 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13165 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13166 * tests/local.at (AT_COMPILE_CXX): Use it.
13168 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13170 * data/glr.c (yylloc): Output this macro even if locations are not
13171 being generated, as the GLR parser needs it even in that case.
13172 Problem reported by Troy A. Johnson
13173 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13175 * configure.ac (AC_INIT): Update to 1.875e.
13177 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13179 * NEWS: Version 1.875d.
13180 * configure.ac (AC_INIT): Likewise.
13181 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13183 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13184 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13185 lalr1.cc runs afoul of the first, and the last two are no longer
13186 supported by GCC 3.4.0.
13187 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13188 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13190 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13192 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13193 unsigned int, for compatibility with latest gnulib hash module.
13194 * src/state.c (state_hash, state_hasher): Likewise.
13195 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13196 * src/uniqstr.c (hash_uniqstr): Likewise.
13198 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13200 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13202 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13203 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13204 character and string literals.
13205 (unexpected_end): New function.
13206 (unexpected_eof): Use it.
13207 (unexpected_newline): New function.
13208 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13211 * NEWS: Document %expect-rr.
13213 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13214 Fix typo by replacing $1 with $option.
13215 Remove more 'intl'-related files.
13216 Don't DEFUN AM_INTL_SUBDIR twice.
13218 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13219 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13221 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13222 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13223 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13224 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13225 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13226 * src/.cvsignore: Add *.output.
13228 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13229 gets copied to the output file.
13231 2004-04-28 Paul Eggert <eggert@twinsun.com>
13233 Get files from the gnulib and po repositories, instead of relying
13234 on them being in our CVS. Upgrade to latest versions of gnulib
13237 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13238 * bootstrap: Bootstrap from gnulib and po repositories.
13239 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13240 * README-cvs: Document these changes. Remove version numbers from
13241 mentions of build tools, since they change so often. Mention Flex.
13243 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13244 (gl_USE_SYSTEM_EXTENSIONS): Add.
13245 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13246 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
13248 (AC_ISC_POSIX): Remove; we no longer support this
13249 ancient OS, as it gets in the way of latest Autoconf & gnulib.
13250 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13251 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13252 Do not check for C89 headers, except for locale.h which is used
13253 by the Yacc library and must port to K&R hosts.
13254 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13255 Do not check for C89 functions, except for setlocale which is
13256 used by the Yacc library.
13257 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13258 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13259 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13260 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13261 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13262 AM_GNU_GETTEXT): Remove; now done by:
13263 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13264 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13267 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13268 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13269 Define to empty, as gnulib.mk will do the rest for us.
13270 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13272 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13273 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13275 * src/files.c: Include gnulib's xstrndup.h.
13277 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13278 (REALLOC): Use xnrealloc, for likewise.
13279 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13280 (strnlen, memrchr): Remove decls; functions no longer used.
13281 Include <stpcpy.h>.
13283 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13284 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13285 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13286 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13287 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13288 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13289 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13290 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13291 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13292 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13293 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13294 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13295 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13296 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13297 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13298 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13299 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13300 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13301 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13302 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13303 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13304 Remove, as these files are now generated automatically
13305 by bootstrap or automake.
13307 * po/ChangeLog: Remove: all but one entry was a duplicate
13308 of this file, and I moved that 2000-11-02 entry here.
13310 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13311 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13312 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13313 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13314 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13315 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13316 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13317 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13318 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13319 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13320 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13322 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13323 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13324 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13325 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13326 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13327 * src/.cvsignore: Remove *_.c.
13330 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13331 support it. (The latest stable gzip doesn't.)
13333 2004-04-27 Paul Eggert <eggert@twinsun.com>
13335 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13336 case, as stos_ is now used by destructors due to the 2004-02-09
13339 Remove more K&R C support.
13340 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13341 * lib/subpipe.c (errno): Remove decl.
13342 Include <stdlib.h> unconditionally.
13343 (EXIT_FAILURE): Remove macro.
13344 * src/complain.c (vfprintf, strerror): Remove.
13345 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13347 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13348 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13349 (strchr, strspn, memchr): Remove decls.
13350 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13351 unconditionally. Do not declare perror.
13352 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13355 * src/complain.c (_): Remove useless defn, as system.h defines this.
13357 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13358 with latest obstack.h.
13359 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13360 to procedure types, as obstack.h now does that for us.
13361 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13363 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13364 so that this include file can stand alone.
13365 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13366 does this now. Include subpipe.h first after config.h, to
13367 test whether it can stand alone.
13369 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13370 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13371 unused declaration.
13373 * tests/synclines.at (%union synch line): Put a dummy member in
13374 the union, because empty unions aren't allowed in C. Caught
13377 2004-04-13 Jim Meyering <jim@meyering.net>
13379 * src/conflicts.c (conflicts_print): Correct format string typo:
13380 use `%%' to produce literal `%'. (trivial change)
13382 2004-03-30 Paul Eggert <eggert@twinsun.com>
13384 * src/getargs.c (version): Update copyright year to 2004.
13386 * data/c.m4 (b4_int_type): Use 'short int' rather than
13387 'short', and similarly for 'long', 'unsigned', etc.
13388 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13389 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13390 yy_yypstack, yydumpstack): Likewise.
13391 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13392 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13394 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13395 yy_stack_print, yyparse): Likewise.
13396 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13397 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13398 * lib/bitset.c (bitset_print): Likewise.
13399 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13400 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13401 * lib/bitsetv.c (bitsetv_dump): Likewise.
13402 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13403 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13405 * src/LR0.c (allocate_itemsets): Likewise.
13406 * src/gram.h (rule_number, rule): Likewise.
13407 * src/lalr.h (goto_number): Likewise.
13408 * src/nullable.c (nullable_compute): Likewise.
13409 * src/output.c (prepare_rules): Likewise.
13410 * src/relation.c (relation_print, relation_digraph): Likewise.
13411 * src/relation.h (relation_node): Likewise.
13412 * src/state.h (state_number, transitions, errs, reductions,
13413 struct state): Likewise.
13414 * src/symtab.h (symbol_number, struct symbol): Likewise.
13415 * src/tables.c (vector_number, tally, action_number,
13416 default_goto, goto_actions): Likewise.
13417 * tests/existing.at (GNU Cim Grammar): Likewise.
13418 * tests/regression.at (Web2c Actions): Likewise.
13420 * src/output.c (muscle_insert_short_int_table): Renamed from
13421 muscle_insert_short_table. All uses changed.
13423 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13425 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13426 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13427 Add %expect-rr rule.
13429 * src/scan-gram.l: Recognize %expect-rr.
13431 * src/conflicts.h (expected_sr_conflicts): Rename from
13432 expected_conflicts.
13433 (expected_rr_conflicts): Declare.
13435 * src/conflicts.c (expected_sr_conflicts): Rename from
13436 expected_conflicts.
13437 (expected_rr_conflicts): Define.
13438 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13440 Use expected_sr_conflicts in place of expected_conflicts.
13441 Warn if expected_rr_conflicts used in non-GLR parser.
13443 * doc/bison.texinfo: Add documentation for %expect-rr.
13445 2004-03-08 Paul Eggert <eggert@gnu.org>
13447 Add support for hex token numbers. Suggested by Odd Arild Olsen in
13448 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
13450 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13452 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13453 * src/scan-gram.l (scan_integer): New function.
13455 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13456 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13457 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13458 Say "long int", not "long", for uniformity with GNU style.
13460 2004-02-25 Paul Eggert <eggert@twinsun.com>
13462 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13463 compilers. This fixes a problem with Intel's C++ compiler being
13464 chatty, reported by Guido Trentalancia in
13465 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
13467 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13469 Support %destructor and merge error locations in lalr1.cc.
13471 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13472 (Parser::stos_): Define unconditionally.
13473 (Parser::destruct_): New method. Generate its body with
13474 b4_yydestruct_generate.
13475 (Parser::error_start_): New attribute.
13476 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13477 token which are discarded.
13478 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13479 error_start_ when erroneous token are discarded.
13480 (Parser::parse) <yyerrlab1>: Compute the location of the error
13481 token so that it covers all the discarded tokens.
13482 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13483 it can be called with `%skeleton "lalr1.cc"', and do that.
13485 2004-02-02 Paul Eggert <eggert@twinsun.com>
13487 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13488 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13489 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13490 There's no need to mention top_builddir since Automake does that
13492 (INCLUDES): Remove, as Automake says it's obsolescent.
13493 Contents migrated into AM_CPPFLAGS as described above.
13494 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13496 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13498 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13499 (yyreportSyntaxError): Handle case where lookahead token is
13502 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13504 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13505 resulting parsers are compilable with C++.
13507 2003-12-23 Paul Eggert <eggert@twinsun.com>
13509 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13510 * src/output.c (output_skeleton): Rename local var.
13511 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13512 Bison tokens, as this runs afoul of the 2003-10-07 change that
13513 disallowed NUL bytes in character constants or string literals.
13515 * tests/local.at: Require Autoconf 2.59's Autotest.
13516 * tests/testsuite.at: Don't include local.at, since we now assume
13517 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13519 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13520 multiple inclusion warnings.
13522 2003-12-02 Akim Demaille <akim@epita.fr>
13524 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13528 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13530 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13532 2003-10-07 Paul Eggert <eggert@twinsun.com>
13534 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13535 if testsuite doesn't exist.
13537 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13538 literals, unfortunately.
13539 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13540 Complain about NUL bytes in character constants or string literals.
13542 2003-10-05 Paul Eggert <eggert@twinsun.com>
13544 * NEWS: Don't document %no-default-prec, as it's still
13546 * doc/bison.texinfo: Document %no-default-prec only if
13547 the defaultprec flag is set. Normally it's not.
13549 2003-10-04 Paul Eggert <eggert@twinsun.com>
13551 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13552 non-modifiable lvalue, instead of a modifiable one.
13553 * doc/bison.texinfo (Actions): Document that $$ can
13554 be assigned to. Do not claim that $$ and $N are
13555 array element references: user code should not rely on this.
13557 2003-10-01 Paul Eggert <eggert@twinsun.com>
13559 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13560 (grammar_declaration): Use it.
13561 * src/scan-gram.l: New token %no-default-prec.
13562 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13563 * NEWS, doc/bison.texinfo: Document the above.
13565 2003-10-01 Akim Demaille <akim@epita.fr>
13567 VCG no longer supports long_straight_phase.
13569 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13570 * src/print_graph.c (print_graph): Adjust.
13572 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
13573 and Paul Eggert <eggert@twinsun.com>
13575 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13576 Table of Symbols): Document %default-prec.
13577 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13578 (grammar_declaration): Set default_prec on %default-prec.
13579 * src/scan-gram.l (%default-prec): New token.
13580 * src/reader.h (default_prec): New flag.
13581 * src/reader.c: Likewise.
13582 (packgram): Handle it.
13583 * tests/conflicts.at (%default-prec without %prec,
13584 %default-prec with %prec, %default-prec 1): New tests.
13586 2003-09-30 Paul Eggert <eggert@twinsun.com>
13588 * tests/testsuite.at: Include local.at, not input.at, fixing
13589 a typo in the 2003-08-25 patch.
13591 2003-08-27 Akim Demaille <akim@epita.fr>
13593 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13596 2003-08-26 Akim Demaille <akim@epita.fr>
13598 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13599 "<\#" to avoid magic from Gnus when posting parts of this script.
13601 2003-08-26 Akim Demaille <akim@epita.fr>
13603 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13604 (Parser::parse): here.
13605 Adjust: nerrs and errstatus is now replaced by...
13606 (Parser::nerrs_, Parser::errstatus_): New.
13608 2003-08-25 Akim Demaille <akim@epita.fr>
13610 * config/announce-gen, Makefile.cfg: New.
13611 * Makefile.am: Adjust.
13612 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13613 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13615 2003-08-25 Akim Demaille <akim@epita.fr>
13617 When reducing initial empty rules, Bison parser read an initial
13618 location that is not defined. This results in garbage, and that
13619 affects Bison's own parser. Therefore we need (i) to extend Bison
13620 to support a means to initialize this location, and (ii) to use
13621 this CVS Bison to fix CVS Bison's parser.
13623 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13625 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13626 * src/parse-gram.y: Adjust.
13627 (%initial-action): New.
13628 (%error-verbose): Since we require CVS Bison, there is no reason
13630 * src/scan-gram.l: Adjust.
13631 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13632 * data/yacc.c (yyparse): Use b4_initial_action.
13634 2003-08-25 Akim Demaille <akim@epita.fr>
13636 * doc/bison.texinfo: Don't promote stdout for error messages.
13638 2003-08-25 Akim Demaille <akim@epita.fr>
13640 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13641 From Alexandre Duret-Lutz.
13643 2003-08-25 Akim Demaille <akim@epita.fr>
13647 2003-08-25 Akim Demaille <akim@epita.fr>
13649 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13652 2003-08-25 Akim Demaille <akim@epita.fr>
13654 * data/lalr1.cc (Parser::reduce_print_): New.
13657 2003-08-25 Akim Demaille <akim@epita.fr>
13659 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13660 error recovery loops. This patch is based on
13661 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
13662 Also, augment the similarity between lalr1.cc and yacc.c.
13663 Note: the locations of error recovery rules are not correct yet.
13665 * data/lalr1.cc: Comment changes to augment the similarity between
13666 lalr1.cc and yacc.c.
13667 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13668 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13669 yyerrlab), when hitting EOF, pop the whole stack here instead of
13670 merely falling thru the default error handling mechanism.
13671 (yyerrorlab): New label, with the old contents of YYERROR,
13672 plus the following change: pop the stack of rhs corresponding
13673 to the production that invoked YYERROR. That is how Yacc
13674 behaves (required by POSIX).
13675 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13678 2003-08-25 Akim Demaille <akim@epita.fr>
13680 Tune local.at so that people can "autom4te -l autotest calc.at -o
13681 calc" for instance, to extract a sub test suite.
13683 * tests/testsuite.at: Move the initialization, Autotest version
13684 requirement, and AT_TESTED invocation into...
13685 * tests/local.at: here.
13686 * tests/testsuite.at: Include it for compatibility with Autoconf
13688 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13691 2003-08-04 Paul Eggert <eggert@twinsun.com>
13693 Rework code slightly to avoid gcc -Wtraditional warnings.
13694 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13695 The returned value is now stored in *YY0. All callers changed.
13696 * src/output.c (merge_output): Adjust to the above change.
13698 2003-07-26 Paul Eggert <eggert@twinsun.com>
13700 * data/glr.c (YYASSERT): New macro.
13701 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13702 yyresolveStates, yyprocessOneStack):
13703 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13704 Derived from a suggestion by Frank Heckenbach.
13706 2003-07-25 Paul Eggert <eggert@twinsun.com>
13708 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13709 for portability to K&R C (after ansi2knr, presumably). See
13710 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
13711 by Frank Heckenbach, though I have omitted the structure-initialization
13712 part of his glr-knr.diff patch since I recall that the Portable
13713 C Compiler didn't require that change.
13715 Let the user specify how to allocate and free memory.
13716 Derived from a suggestion by Frank Heckenbach in
13717 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
13718 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13719 All uses of free, malloc, realloc changed to use these macros,
13720 and unnecessary casts removed.
13721 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13723 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13725 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13726 use s.empty() rather than s == "" to test for empty string; see
13727 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
13730 2003-06-25 Akim Demaille <akim@epita.fr>
13732 * config/depcomp, config/install-sh: Update from masters.
13734 2003-06-20 Paul Eggert <eggert@twinsun.com>
13736 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13737 and return properly parenthesized result.
13738 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13739 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13740 Remove unnecessary parentheses from uses.
13741 * doc/bison.texinfo (Location Default Action): Describe the
13742 conventions for parentheses.
13744 2003-06-19 Paul Eggert <eggert@twinsun.com>
13746 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13747 yyreportTree): Do not assume that size_t is the same width as int,
13748 when printing sizes. Print sizes using an unsigned format.
13749 Problem reported by Frank Heckenbach in
13750 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
13752 Port to Forte Developer 7 C compiler.
13753 * data/glr.c (struct YYLTYPE): If locations are not being used,
13754 declare a single dummy member, as empty structs do not conform
13756 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13757 the Forte Developer 7 C compiler complains that end-of-loop
13758 code is not reached.
13760 2003-06-17 Paul Eggert <eggert@twinsun.com>
13762 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13763 avoid warnings from picky compilers about redefinition of PARAMS.
13765 2003-06-17 Paul Eggert <eggert@twinsun.com>
13769 * NEWS: Document 1.875b.
13771 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13772 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13773 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13774 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13775 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13776 per recent gettext manual's suggestion.
13777 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13778 Use prototypes, not old-style definitions.
13779 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13780 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13781 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13782 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13783 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13784 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13785 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13786 vbitset_or_and_cmp, vbitset_copy): Likewise.
13788 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13789 Do not include <stdlib.h>.
13790 (PARAMS): Define unconditionally for C89.
13791 (ATTRIBUTE_NORETURN): Remove.
13792 (ATTRIBUTE_UNUSED): Define unconditionally.
13794 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
13795 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
13796 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13797 * lib/vbitset.c, lib/vbitset.h: New files.
13798 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13799 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13802 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13803 `How Can I Reset @code{yyparse}', since texinfo does not allow
13804 arbitrary @ in node names.
13806 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13807 shouldn't be needed according to the gettext 0.12.1 documentation
13808 but which seem to be needed anyway: codeset.m4 glibc21.m4
13809 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
13810 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
13811 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
13813 * lib/.cvsignore: Add stdbool.h.
13814 * m4/.cvsignore: Add nls.m4, po.m4.
13816 Upgrade to CVS gnulib.
13817 * stdbool_.h: File renamed from stdbool.h.in.
13818 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13820 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13821 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13822 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13823 (MOSTLYCLEANFILES): New var.
13824 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13825 (stdbool.h): New rule.
13826 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13827 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13828 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13829 m4/quote.m4: Upgrade to today's gnulib.
13831 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13832 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13833 the tests right now.
13834 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13835 yyerror are declared before use; C99 requires this.
13837 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13839 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13841 (yyrecoverSyntaxError): Correct the logic for setting and testing
13843 Correct comment on handling EOF.
13844 Allow states with only a default reduction, rather than failing
13845 (I can't quite reconstruct why these were not allowed before).
13847 Fixes to avoid problem that $-N rules in GLR parsers can cause
13848 buffer overruns, corrupting state.
13850 * src/output.c (prepare_rules): Output max_left_semantic_context
13852 * src/reader.h (max_left_semantic_context): New variable declaration.
13853 * src/scan-gram.l (max_left_semantic_context): Define.
13854 (handle_action_dollar): Update max_left_semantic_context.
13855 * data/glr.c (YYMAXLEFT): New definition.
13856 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13857 (yyresolveAction): Ditto.
13859 Fixes to problems with location handling in GLR parsers reported by
13860 Frank Heckenbach (2003/06/05).
13862 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13863 (YYRHSLOC): Add parentheses, and define only if locations used.
13864 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13865 locations not used.
13866 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13867 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
13869 * tests/cxx-type.at: Exercise location information; update tests
13870 to differentiate output with and without locations.
13871 Remove forward declarations of yylex and yyerror---caused errors
13872 because default YYLTYPE not yet defined.
13873 Change semantic actions to compute strings, rather than printing
13874 them directly (to test proper passing of semantics values). Change
13875 output to prefix notation and update test data and expected results.
13876 (yylex): Track locations.
13877 (stmtMerge): Return value rather than printing, and include arguments
13880 2003-06-03 Paul Eggert <eggert@twinsun.com>
13882 Avoid warnings generated by GCC 2.95.4 when Bison is
13883 configured with --enable-gcc-warnings.
13884 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13885 yy::]b4_parser_class_name[::translate_,
13886 yy::Stack::operator[] (unsigned),
13887 yy::Stack::operator[] (unsigned) const,
13888 yy::Slice::operator[] (unsigned),
13889 yy::Slice::operator[] (unsigned) const):
13890 Rename local vars to avoid warnings.
13891 * tests/glr-regression.at (Improper handling of embedded actions
13892 and $-N in GLR parsers): Remove unused local variable from yylex.
13893 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13894 (void) as arg when not pure, since we now assume C89 when building
13895 Bison. Pacify GCC by using parameter.
13897 2003-06-02 Paul Eggert <eggert@twinsun.com>
13899 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13900 yy::Location::lines, yy::Location::columns): Rename arguments
13901 to avoid shadowing; this removes a warning generated by GCC 3.3.
13903 2003-06-01 Paul Eggert <eggert@twinsun.com>
13905 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13906 to g++, as GCC 3.3 complains if you do it.
13907 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13908 everything that WARNING_CFLAGS has, except omit warnings
13909 not suitable for C++.
13910 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13911 * tests/atlocal.in (CXXFLAGS): New var.
13912 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13914 Fix a GLR parser bug I reported in February; see
13915 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
13916 The problem was that GLR parsers did not conform to the C standard,
13917 because actions like { $1 = $2 + $3; } expanded to expressions
13918 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13919 to a local variable. The C standard says that expressions
13920 like (var = f ()) + (var = f ()) have undefined behavior.
13921 Another problem was that GCC sometimes issues warnings that
13922 yyfill and its parameters are unused.
13924 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13925 as possibly unused.
13926 (yyfill): New function.
13928 (yyuserAction): Change type of yynormal to bool, so that it matches
13929 the new yyfill signature. Mark it as possibly unused.
13932 Follow up on a bug I reported in February, where a Bison-generated
13933 parser can loop. Provide a test case and a fix for yacc.c. I
13934 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13935 The original bug report is in:
13936 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
13938 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13939 macro's size was becoming unwieldy.
13940 (yyerrlab): Do not discard an empty lookahead symbol, as this
13941 might destroy garbage.
13942 (yyerrorlab): New label, with the old contents of YYERROR,
13943 plus the following change: pop the stack of rhs corresponding
13944 to the production that invoked YYERROR. That is how Yacc
13945 behaves, and POSIX requires this behavior.
13946 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13947 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13948 Define 'alarm' to do nothing if unistd.h is not available.
13949 Add a new rule "exp: '-' error;" to test the above change to
13950 data/yacc.c. Use 'alarm' to abort any test taking longer than
13951 10 seconds, as it's probably looping.
13952 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13953 Also, the new yacc.c generates two fewer diagnostics for an
13956 2003-05-24 Paul Eggert <eggert@twinsun.com>
13958 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13959 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13960 This fixes a problem reported by John Bowman when the Compaq/HP
13961 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13962 -ansi -Wall -gall).
13963 * data/yacc.c (union yyalloc): Likewise.
13964 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
13966 Switch from 'int' to 'bool' where that makes sense.
13968 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13969 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13970 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13971 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13972 Return or accept bool, not int. All callers changed.
13973 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13974 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13975 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13976 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13977 bitset_or_and_cmp_): Likewise.
13978 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13979 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13980 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13981 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13982 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13983 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13984 bitset_stats_or_and_cmp): Likewise.
13985 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13986 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13987 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13988 ebitset_xor_cmp): Likewise.
13989 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13990 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13991 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13992 lbitset_xor_cmp): Likewise.
13993 * lib/bbitset.h: Include <stdbool.h>.
13994 (struct bitset_vtable): The following members now return bool, not
13995 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13996 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13998 * src/conflicts.c (count_rr_conflicts): Likewise.
13999 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14001 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14002 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14003 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14004 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14005 graph_flag): Likewise.
14006 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14007 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14008 graph_flag): Likewise.
14009 * src/output.c (error_verbose): Likewise.
14010 * src/output.h (error_verbose): Likewise.
14011 * src/reader.c (start_flag, typed): Likewise.
14012 * src/reader.h (typed): Likewise.
14013 * src/getargs.c (LOCATIONS_OPTION): New constant.
14014 (long_options, getargs): Use it.
14015 * src/lalr.c (build_relations): Use bool, not int.
14016 * src/nullable.c (nullable_compute): Likewise.
14017 * src/print.c (print_reductions): Likewise.
14018 * src/tables.c (action_row, pack_vector): Likewise.
14019 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14020 * src/output.c (prepare): Use it.
14021 * src/output.c (token_definitions_output,
14022 symbol_destructors_output, symbol_destructors_output): Use string,
14023 not boolean integer, to keep track of whether to output separator.
14024 * src/print_graph.c (print_core): Likewise.
14025 * src/state.c (state_rule_lookaheads_print): Likewise.
14027 * config/install-sh: Sync from automake 1.7.5.
14029 2003-05-14 Paul Eggert <eggert@twinsun.com>
14031 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14032 semicolon after a grammar declaration, in the interest of possible
14033 future changes to the Bison input language.
14034 Do not allow a stray semicolon at the start of the grammar.
14035 (rhses.1): Allow one or more semicolons after any rule, including
14036 just before "|" as required by POSIX.
14037 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14040 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14042 %parse-param support for lalr1.cc.
14044 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14045 b4_cc_constructor_calls, b4_cc_constructor_call,
14046 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14048 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14049 parse-param arguments.
14050 (yy::b4_parser_class_name): Declare instance variables to
14051 hold parse-param arguments.
14052 * tests/calc.at: s/value/semantic_value/ because value clashes
14053 with a member of yy::b4_parser_class_name. Adjust C++ code
14054 to handle %parse-param. Enable %parse-param test in C++.
14056 2003-05-12 Paul Eggert <eggert@twinsun.com>
14058 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14059 English a bit. Fix fclose typo. Change "const char" to "char
14060 const", and use ANSI C rather than K&R for "main". Suggest
14061 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14062 and suggest yy_switch_to_buffer.
14064 2003-05-05 Paul Eggert <eggert@twinsun.com>
14066 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14067 C89. This avoids a diagnostic on compilers that define __STDC__
14068 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
14069 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14071 2003-05-03 Paul Eggert <eggert@twinsun.com>
14073 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
14074 Do not overrun array bounds.
14075 This should fix a bug reported today by Olatunji Oluwabukunmi in
14076 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
14078 2003-04-29 Akim Demaille <akim@epita.fr>
14080 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
14081 * src/getargs.c, src/getargs.h: here, as bool, not int.
14082 (nondeterministic_parser): New.
14083 * src/parse-gram.y, src/scan-gram.l: Support
14084 %nondeterministic-parser.
14085 * src/output.c (prepare): Use nondeterministic_parser instead
14086 of glr_parser where appropriate.
14087 * src/tables.c (conflict_row, action_row, save_row)
14088 (token_actions, token_actions, pack_vector): Ditto.
14090 2003-04-29 Akim Demaille <akim@epita.fr>
14092 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14094 2003-04-29 Akim Demaille <akim@epita.fr>
14096 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14097 with %pure-parser and %locations to exercise the patch from Yakov
14100 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14102 * data/yacc.c: (b4_lex_param): Corrected for the case where
14103 %lex-param is provided and %pure-parser isn't.
14105 2003-04-27 Paul Eggert <eggert@twinsun.com>
14107 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
14108 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
14109 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14110 if it is not defined.
14111 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14113 2003-04-26 Paul Eggert <eggert@twinsun.com>
14115 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14116 Declare to be of type suitable for the ninf value itself, not of
14117 type suitable for the corresponding table, since the latter might
14118 be unsigned but the ninf value might be negative. This fixes a
14119 bug reported by Alexandre Duret-Lutz in
14120 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
14122 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14123 invokes it. We shouldn't invoke it twice because it will attempt
14124 to put error.o in the archive twice. This fixes a glitch reported
14125 by Martin Mokrejs in
14126 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14128 2003-04-21 Paul Eggert <eggert@twinsun.com>
14130 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14133 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14135 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14136 Fix obvious typo that results in uncompilable GLR parsers
14137 when both %pure-parser and %locations are used. (trivial change)
14139 2003-04-17 Paul Eggert <eggert@twinsun.com>
14141 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14142 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14143 Do not insert the expected token via unput, as this runs afoul
14144 of a POSIX-compatibility bug in flex 2.5.31.
14145 All uses changed to BEGIN the parent state,
14146 since we no longer insert the expected token via unput.
14147 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14148 that is no longer emitted after the above change.
14150 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14151 the first one. This change is from Paul Hilfinger, and it fixes
14152 regression reported by Werner Lemberg in
14153 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
14155 (resolve_sr_conflict): Don't invoke state_errs_set
14156 unless one or more tokens have been explicitly made errors.
14157 Otherwise, the above change causes Bison to abort.
14159 * tests/existing.at (GNU pic Grammar): New test case, taken from
14162 2003-03-31 Akim Demaille <akim@epita.fr>
14164 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14166 2003-03-31 Akim Demaille <akim@epita.fr>
14168 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14171 2003-03-31 Akim Demaille <akim@epita.fr>
14173 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14174 From Paul Hilfinger.
14176 2003-03-29 Akim Demaille <akim@epita.fr>
14178 * m4/error.m4: Do not put under dynamic conditions some code which
14179 expansion is under static control.
14181 2003-03-29 Akim Demaille <akim@epita.fr>
14183 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14185 2003-03-29 Akim Demaille <akim@epita.fr>
14187 * doc/bison.texinfo (Strings are Destroyed): New.
14189 2003-03-13 Paul Eggert <eggert@twinsun.com>
14191 * .cvsignore: Add configure.lineno.
14192 * src/.cvsignore: Add yacc.
14193 * tests/.cvsignore: Add testsuite.log.
14194 * doc/fdl.texi: Sync with latest FSF version.
14196 2003-03-12 Paul Eggert <eggert@twinsun.com>
14198 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14199 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14200 cursor, instead of leaving it undefined. This fixes a bug
14201 reported by Tim Van Holder in
14202 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
14203 * tests/input.at (Torturing the Scanner): Test the scanner on
14204 an empty input file, which was Tim Van Holder's test case.
14206 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14207 <sys/resource.h> can be included, include sys/time.h and
14208 sys/times.h first, if available. This works around the SunOS
14209 4.1.4 porting bug reported by Bruce Becker in
14210 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
14212 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14213 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14214 AC_HEADER_SYS_WAIT.
14216 Merge changes from gnulib. This was prompted because the CVS
14217 snapshot didn't build on Solaris 7 due to strnlen problems.
14219 These changes need to be merged back into gnulib:
14220 * lib/hash.c: Include <stdbool.h> unconditionally.
14221 * m4/onceonly.m4 (m4_quote): New macro.
14222 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14223 Quote AC_FOREACH variable-expansions properly.
14224 The 2003-01-03 obstack.h change also needs merging.
14225 {end of changes requiring merging}
14227 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14228 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14229 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14230 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14231 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14232 New files, imported from gnulib.
14233 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14236 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14237 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14240 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14242 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14243 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14244 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14245 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14246 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14247 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14248 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14249 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14250 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14251 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14252 (jm_PREREQ_ARGMATCH): Remove.
14253 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14254 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14256 * src/system.h: Include <stdbool.h> unconditionally.
14258 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14259 assuming at least C89 in the bitset code for some time now.
14261 2003-03-03 Akim Demaille <akim@epita.fr>
14265 2003-03-02 Akim Demaille <akim@epita.fr>
14267 * doc/bison.texinfo (Table of Symbols): Reactivate the
14268 documentation for %lex-param, and %parse-param.
14270 2003-03-02 Akim Demaille <akim@epita.fr>
14272 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14273 generate verbose error messages.
14274 Use the number of tokens as an upper bound in yytname, as it
14275 cannot be a non terminal.
14277 2003-03-02 Akim Demaille <akim@epita.fr>
14279 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14282 2003-03-02 Akim Demaille <akim@epita.fr>
14284 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14285 Use them to exercise yycheck overrun.
14286 Based on Andrew Suffield's grammar.
14288 2003-03-02 Akim Demaille <akim@epita.fr>
14290 Create tests/local.at for Bison generic testing macros.
14292 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14293 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14295 * tests/calc.at (AT_CHECK_CALC): Adjust.
14296 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14297 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14298 * tests/local.at: here.
14299 (AT_COMPILE_CXX): Tags the tests using it as c++.
14300 Ignore the test if CXX is not functional.
14302 2003-03-01 Paul Eggert <eggert@twinsun.com>
14304 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14305 not loc->end, since loc->end might contain garbage and this leads
14306 to undefined behavior on some platforms.
14307 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14308 depend on *loc, so that the reader doesn't give the the false
14309 impression that *loc is initialized.
14310 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14311 does not survive the return.
14313 2003-03-01 Akim Demaille <akim@epita.fr>
14315 * src/scan-gram.l (code_start): Always initialize it when entering
14316 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14317 yylex invocation. An alternative would be making it static, but
14318 then it starts with the second %%'s beginning, instead of its end.
14320 2003-02-28 Paul Eggert <eggert@twinsun.com>
14322 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14323 around a UnixWare 7.1.1 porting bug reported by John Hughes in
14324 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
14326 2003-02-26 Paul Eggert <eggert@twinsun.com>
14328 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14329 Remove Sequent/Pyramid discussion (nobody uses them any more).
14330 Merge VMS and MS-DOS discussion; these ports may well be dead
14331 but let's keep mentioning them for now. Put <> around email
14332 addresses. Add copyright notice.
14334 2003-02-24 Paul Eggert <eggert@twinsun.com>
14336 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14337 to avoid collision with flex use of yylineno.
14338 Problem reported by Bruce Lilly in
14339 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
14340 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14341 * data/yacc.c (yy_reduce_print): Likewise.
14343 * config/depcomp: Sync with Automake 1.7.3.
14345 2003-02-21 Akim Demaille <akim@epita.fr>
14347 * data/lalr1.cc: Use temporary variables instead of casts to
14348 change integer types.
14349 Suggested by Paul Eggert.
14351 2003-02-21 Akim Demaille <akim@epita.fr>
14353 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14354 to avoid confusions with lalr1.cc's notion of Position.
14355 Suggested by Paul Eggert.
14357 2003-02-20 Akim Demaille <akim@epita.fr>
14359 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14360 before initial_columns.
14361 (location.hh): Use consistent variable names when defining the
14363 Use "last" so that we subtract from Positions, not from unsigned.
14365 2003-02-20 Akim Demaille <akim@epita.fr>
14367 * data/lalr1.cc (position.hh): New subfile, including the extended
14368 and Doxygen'ed documentation of class Position.
14369 (location.hh): Use it.
14370 Document a` la Doxygen.
14371 With the help of Benoit Perrot.
14373 2003-02-20 Akim Demaille <akim@epita.fr>
14375 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14377 Redefine AT_YYERROR_SEES_LOC_IF using it.
14378 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14380 Don't use the location in yy::Parser::error_ and
14381 yy::Parser::print_ when not %locations.
14382 Activate more lalr1.cc tests.
14384 2003-02-19 Akim Demaille <akim@epita.fr>
14386 * data/lalr1.cc: When displaying a line number, be sure to make it
14389 2003-02-19 Akim Demaille <akim@epita.fr>
14391 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14393 (YYABORT, YYACCEPT, YYERROR): New.
14394 * tests/calc.at: Renable the lalr1.cc test.
14396 2003-02-19 Akim Demaille <akim@epita.fr>
14398 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14399 error recovery, mixing with/without pops and discarding of the
14402 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14404 2003-02-17 Paul Eggert <eggert@twinsun.com>
14406 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14407 * tests/testsuite.at (AT_COMPILE): Use them.
14408 This fixes the testsuite problem reported by Robert Lentz in
14409 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
14411 2003-02-12 Paul Eggert <eggert@twinsun.com>
14413 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14414 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
14415 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
14416 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14417 Check for malloc failure, for consistency with yacc.c.
14418 (yytname_size): Remove, for consistency with yacc.c.
14420 The bug still remains in data/lalr1.cc, as I didn't have time
14423 2003-02-06 Akim Demaille <akim@epita.fr>
14425 * configure.ac (GXX): Rename as...
14426 (CXX): this, to keep the original Autoconf semantics.
14428 * data/lalr1.cc: Fix b4_copyright invocations.
14429 If YYDEBUG is not defined, don't depend upon name_ being defined.
14430 (location.hh): Include string and iostream.
14431 (Position::filename): New member.
14432 (Position::Position ()): New.
14433 (operator<< (Position)): New.
14434 (operator- (Position, int)): New.
14435 (Location::first, Location::last): Rename as...
14436 (Location::begin, Location::end): these, to mock the conventional
14438 (operator<< (Location)): New.
14439 * tests/atlocal.in (CXX): New.
14440 * tests/testsuite.at (AT_COMPILE_CXX): New.
14441 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14442 locations in a more synthetic way.
14443 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14445 Adjust the C locations to match those from Emacs: first column is
14447 Change all the expected results.
14448 Conform to the GCS: simplify the locations when applicable.
14449 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14450 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14451 these CPP macros with the m4 macros new defined by...
14452 (AT_CHECK_PUSHDEFS): this, i.e.:
14453 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
14454 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
14456 (AT_CHECK_POPDEFS): Undefine them.
14457 (AT_CHECK_CALC_LALR1_CC): New.
14458 Use it for the first lalr1.cc test.
14460 2003-02-04 Akim Demaille <akim@epita.fr>
14462 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14463 Location as is defined.
14465 2003-02-04 Akim Demaille <akim@epita.fr>
14467 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14468 name_ being defined.
14470 2003-02-03 Paul Eggert <eggert@twinsun.com>
14472 * src/gram.h (start_symbol): Remove unused decl.
14474 Use more-consistent naming conventions for local vars.
14476 * src/derives.c (derives_compute): Change type of local var from
14477 int to rule_number.
14478 * src/gram.c (grammar_rules_partial_print): Likewise.
14479 * src/print.c (print_core): Likewise.
14480 * src/reduce.c (reduce_grammar_tables): Likewise.
14482 * src/gram.c (grammar_dump): Change name of item_number *
14483 local var from r to rp.
14484 * src/nullable.c (nullable_compute): Likewise.
14486 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14488 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14489 for symbol or symbol_number var.
14490 * src/reader.c (grammar_start_symbol_set): Likewise.
14491 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14493 * src/state.c (transitions_to): Likewise.
14494 * src/state.h: Likewise.
14495 * src/tables.c (symbol_number_to_vector_number): Likewise.
14497 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14500 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14503 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14506 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14507 Use str, not s, for char * var. Use ch, not c, for character var.
14508 Use size for size var.
14510 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14512 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14514 * src/uniqstr.h: Likewise.
14516 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14517 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14518 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14519 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14520 param to have same name as that of enum, so that we don't use
14521 "s" to stand for a non-state.
14523 2003-02-02 Akim Demaille <akim@epita.fr>
14525 * src/scan-skel.l: Scan more than one inert character per yylex
14528 2003-02-01 Paul Eggert <eggert@twinsun.com>
14532 * po/LINGUAS: Add ms.
14534 2003-01-30 Akim Demaille <akim@epita.fr>
14536 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14538 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14540 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14543 Changes in response to error report by S. Eken: GLR mode does not
14544 handle negative $ indices or $ indices in embedded rules correctly.
14545 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
14547 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14548 (b4_rhs_location): Ditto.
14549 (yyfill): New function to copy from stack tree into array
14551 (yyuserAction): Modify to allow incremental move of semantic values
14552 to rhs array when in GLR mode.
14553 Define YYFILL to use in user-defined actions to fill semantic array
14555 Remove dummy use of yystack, as there is now a guaranteed use.
14556 (yydoAction): Modify to allow incremental move of semantic values
14557 to rhs array when in GLR mode.
14558 (yyresolveAction): Ditto.
14559 (yyglrShiftDefer): Update comment.
14560 (yyresolveStates): Use X == NULL for pointers, not !X.
14561 (yyglrReduce): Ditto.
14562 (yydoAction): Ditto
14564 * tests/glr-regr1.at: Rename to ...
14565 * tests/glr-regression.at: Add new regression test for the problems
14566 described above (adapted from S. Eken).
14567 Update copyright notice.
14568 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14569 * tests/Makefile.am: Ditto.
14571 2003-01-28 Paul Eggert <eggert@twinsun.com>
14573 * data/lalr1.cc: Do not use @output_header_name@ unless
14574 b4_defines_flag is set. This fixes two bugs reported by
14576 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14577 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
14579 2003-01-21 Paul Eggert <eggert@twinsun.com>
14581 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14582 we don't need to worry about yyerrlab1 being reported as an
14583 "unused label" by non-GCC C compilers. The downside is that if
14584 locations are used then a couple of statements are duplicated each
14585 time YYERROR is invoked, but the upside is that the warnings
14587 (yyerrlab1): Move code to YERROR.
14588 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14589 This reverts some of the 2002-12-27 change.
14591 2003-01-17 Paul Eggert <eggert@twinsun.com>
14593 * src/output.c (symbol_printers_output): Fix typo that led
14594 to core dump. Problem reported by Antonio Rus in
14595 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
14597 2003-01-13 Akim Demaille <akim@epita.fr>,
14598 Quoc Peyrot <chojin@lrde.epita.fr>,
14599 Robert Anisko <anisko_r@lrde.epita.fr>
14601 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14602 when the stacks contain one element, as the loop would otherwise
14603 free the last state, and then use the top state (the one we just
14604 popped). This means that the initial elements will not be freed
14605 explicitly, as is the case in yacc.c; it is not a problem, as
14606 these elements have fake values.
14608 2003-01-11 Paul Eggert <eggert@twinsun.com>
14610 * NEWS: %expect-violations are now just warnings, reverting
14611 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14612 bootstrapping problem reported by Matthias Klose; see
14613 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
14614 * src/conflicts.c (conflicts_print): Likewise.
14615 * tests/conflicts.at (%expect not enough, %expect too much,
14616 %expect with reduce conflicts): Likewise.
14617 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14618 that the warning is enabled if the number of conflicts changes
14619 (not necessarily increases).
14621 * src/getargs.c (version): Update copyright year.
14623 2003-01-09 Akim Demaille <akim@epita.fr>
14625 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14627 2003-01-08 Paul Eggert <eggert@twinsun.com>
14629 * Makefile.maint (WGETFLAGS):
14630 New macro, containing "-C off" to disable proxy caches.
14631 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14632 (rel-check): Use $(WGET) instead of wget.
14634 2003-01-06 Paul Eggert <eggert@twinsun.com>
14636 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14637 the GLR paper of Scott, Johnstone and Hussain.
14639 2003-01-04 Paul Eggert <eggert@twinsun.com>
14641 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14642 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14643 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14644 (EXTRA_LIBRARIES): New var, for liby.a.
14645 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14646 (EXTRA_SCRIPTS): New var, for yacc.
14648 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14649 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14650 Problem reported by Nelson H. F. Beebe.
14652 2003-01-03 Paul Eggert <eggert@twinsun.com>
14654 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14655 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14656 when compiling Bison 1.875's `bitset bset = obstack_alloc
14657 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14659 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14660 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14661 grow to a huge size with typical invocation.
14663 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14664 Use the pattern recommended by Autoconf 2.57, except also protect
14665 against double-definition.
14666 * src/system.h: Likewise.
14667 Portability issues reported by Nelson H. F. Beebe.
14669 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14670 All uses changed. Provide a definition in both C and C++.
14671 (yytrue, yyfalse): Define even if defined (__cplusplus).
14673 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14674 Reported by Nelson H. F. Beebe.
14676 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14678 2003-01-02 Paul Eggert <eggert@twinsun.com>
14680 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14681 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14682 Bug reported by Nelson H. F. Beebe.
14684 2003-01-01 Paul Eggert <eggert@twinsun.com>
14688 2002-12-30 Paul Eggert <eggert@twinsun.com>
14690 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14692 (<INITIAL>","): Here. This causes stray "," to be treated
14695 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
14696 last brace in braced code when not in Yacc mode, for compatibility
14697 with Bison 1.35. This resurrects the 2001-12-15 patch to
14700 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14701 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14703 2002-12-28 Paul Eggert <eggert@twinsun.com>
14705 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14706 that of SYM's type. This fixes Debian bug 168069, reported by
14709 2002-12-28 Paul Eggert <eggert@twinsun.com>
14713 Switch back to the Yacc style of conflict reports, undoing some
14714 of the 2002-07-30 change.
14715 * doc/bison.texinfo (Understanding): Use Yacc style for
14716 conflict reports. Also, use new way of locating rules.
14717 * src/conflicts.c (conflict_report):
14718 Renamed from conflict_report_yacc, removing the old
14719 'conflict_report'. Translate the entire conflict report at once,
14720 so that we don't assume that "," has the same interpretation in
14722 (conflicts_output): Use Yacc-style conflict report for each state,
14723 instead of our more-complicated style.
14724 (conflicts_print): Use Yacc-style conflict report, except print
14725 the input file name when not emulating Yacc.
14726 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14727 Conflicted Reduction, %expect not enough, %expect too much,
14728 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14729 * tests/existing.at (GNU Cim Grammar): Likewise.
14730 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14732 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14733 fatal): Don't invoke fflush; it's not needed and it might even be
14734 harmful for stdout, as stdout might not be open.
14735 * src/reduce.c (reduce_print): Likewise.
14737 2002-12-27 Paul Eggert <eggert@twinsun.com>
14739 Fix a bug where error locations were not being recorded correctly.
14740 This problem was originally reported by Paul Hilfinger in
14741 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
14743 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14744 top of the location stack's error locations.
14745 (yyerrlab): Set it. When discarding a token, push its location
14746 onto yylerrsp so that we don't lose track of the error's end.
14747 (yyerrlab1): Now is only the target of YYERROR, so that we can
14748 properly record the location of the action that failed. For GCC
14749 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14750 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14751 (yyerrlab2): New label, which yyerrlab now falls through to.
14752 Compute the error's location by applying YYLLOC_DEFAULT to
14753 the locations of all the symbols that went into the error.
14754 * doc/bison.texinfo (Location Default Action): Mention that
14755 YYLLOC_DEFAULT is also invoked for syntax errors.
14756 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14757 Error locations include the locations of all the tokens that were
14758 discarded, not just the last token.
14760 2002-12-26 Paul Eggert <eggert@twinsun.com>
14762 * src/files.c: Include quote.h.
14763 (compute_output_file_names): Warn if we detect conflicting
14764 outputs to the same file. This should catch the misunderstanding
14765 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14767 * src/conflicts.c (conflicts_print): If the user specifies
14768 "%expect N", report an error if there are any reduce/reduce
14769 conflicts. This is what the manual says should happen.
14770 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14771 * tests/conflicts.at (%expect with reduce conflicts): New test.
14773 Don't use m4_include on relative file names, as it doesn't work as
14774 desired if there happens to be a file with that name under ".".
14776 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14777 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14778 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14779 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14780 * src/output.c (output_skeleton): Use full path names when
14781 specifying a file to include; don't rely on include path, as
14782 it's unreliable when the working file contains a file with
14785 2002-12-25 Paul Eggert <eggert@twinsun.com>
14787 Remove obsolete references to bison.simple and bison.hairy.
14788 Problem mentioned by Aubin Mahe in
14789 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
14790 * data/glr.c: Comment fix.
14791 * doc/bison.1: Remove references. Also, mention "yacc".
14793 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14796 * src/parse-gram.y (declaration): Use enum "report_states" rather
14797 than its numeric value 1.
14799 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14800 opening a new one. This fixes Debian bug 165349, reported by
14803 2002-12-24 Paul Eggert <eggert@twinsun.com>
14807 * Makefile.maint (cvs-update): Don't assume that the shell
14808 supports $(...), as Solaris sh doesn't.
14810 * src/parse-gram.y (lloc_default): Remove test for empty
14811 nonterminals at the end, since it didn't change the result.
14813 2002-12-24 Paul Eggert <eggert@twinsun.com>
14815 If the user does not define YYSTYPE as a macro, Bison now declares it
14816 using typedef instead of defining it as a macro. POSIX requires this.
14817 For consistency, YYLTYPE is also declared instead of defined.
14819 %union directives can now have a tag before the `{', e.g., the
14820 directive `%union foo {...}' now generates the C code
14821 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14822 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14823 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14824 instead of `yyltype'.
14826 `yystype' and `yyltype' are now obsolescent macros instead of being
14827 typedefs or tags; they are no longer documented and will be
14828 withdrawn in a future release.
14830 * data/glr.c (b4_location_type): Remove.
14831 (YYSTYPE): Renamed from yystype.
14832 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14833 (struct YYLTYPE): Renamed from struct yyltype.
14834 (YYLTYPE): Renamed from yyltype.
14835 (yyltype, yystype): New (and obsolescent) macros,
14836 for backward compatibility.
14837 * data/yacc.c: Likewise.
14839 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14840 does not specify a union tag. This is for compatibility with
14843 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14844 const *, since it is now modified by stripping surrounding { }.
14845 (current_braced_code): Remove.
14846 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14847 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14848 trailing " {...}". Now of type <chars>.
14849 (grammar_declaration): Adjust to bundled tokens.
14850 (code_content): Remove; stripping is now done by add_param.
14851 (print_token_value): Print contents of bundled tokens.
14852 (token_name): New function.
14854 * src/reader.h (braced_code, current_braced_code): Remove.
14855 (token_name): New decl.
14857 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14858 token_type, not braced_code code_kind. All uses changed.
14859 (SC_PRE_CODE): New state, for scanning after a keyword that
14860 has (or usually has) an immediately-following braced code.
14861 (token_type): New local var, to keep track of which token type
14862 to return when scanning braced code.
14863 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
14864 <INITIAL>"%parse-param", <INITIAL>"%printer",
14865 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14866 instead of returning a token type immediately.
14867 (<INITIAL>"{"): Set token type.
14868 (<SC_BRACED_CODE>"}"): Use it.
14869 (handle_action_dollar, handle_action_at): Now returns bool
14870 indicating success. Fail if ! current_rule; this prevents a core dump.
14871 (handle_symbol_code_dollar, handle_symbol_code_at):
14872 Remove; merge body into caller.
14873 (handle_dollar, handle_at): Complain in invalid contexts.
14875 * NEWS, doc/bison.texinfo: Document the above.
14876 * NEWS: Fix years and program names in copyright notice.
14878 2002-12-17 Paul Eggert <eggert@twinsun.com>
14880 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14881 Reporting, Table of Symbols): Omit mentions of %lex-param and
14882 %parse-param from the documentation for now.
14884 2002-12-15 Paul Eggert <eggert@twinsun.com>
14886 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14887 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14888 lookahead symbol, and which sets yychar in parser actions) and it
14889 disagreed with the Bison documentation. Bug
14890 reported by Andrew Walrond.
14892 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14893 as the caller now does that.
14894 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14895 (YYEMPTY): Parenthesize right hand side, since others use it.
14896 (yyparse): Don't assume that our generated code is the only code
14899 2002-12-13 Paul Eggert <eggert@twinsun.com>
14903 POSIX requires a "yacc" command.
14904 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14905 (MOSTLYCLEANFILES): Add yacc.
14907 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
14908 as an alias for bison y.
14910 * po/LINGUAS: Add da.
14912 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14913 problem with latest <getopt.h>.
14914 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14916 * doc/fdl.texi: Upgrade to 1.2.
14917 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14918 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14919 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14921 * config/install-sh: Sync with autotools.
14923 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
14924 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14925 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14926 locations are requested.
14927 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14928 locations are requested.
14930 2002-12-12 Paul Eggert <eggert@twinsun.com>
14932 Remove unportable casts and storage allocation tricks.
14933 While we're at it, remove almost all casts, since they
14934 usually aren't needed and are a sign of trouble.
14936 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14938 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14939 the pointer DSET returned by malloc; this isn't portable.
14940 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14941 Similarly for DERIVES.
14942 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14943 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14944 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14946 * src/derives.c (derives_compute): Do not bother invoking
14947 int_of_rule_number, since rule numbers are integers.
14949 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14950 rather than XMALLOC (char, N).
14952 * src/files.c (filename_split): Rewrite to avoid cast.
14954 * src/gram.h (symbol_number_as_item_number,
14955 item_number_as_symbol_number, rule_number_as_item_number,
14956 item_number_as_rule_number):
14957 Now inline functions rather than macros, to avoid casts.
14958 * src/state.h (state_number_as_int): Likewise.
14959 * src/tables.c (state_number_to_vector_number,
14960 symbol_number_to_vector_number): Likewise.
14962 * src/gram.h (int_of_rule_number): Remove; no longer used.
14964 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14965 since the resulting storage is always stored into.
14967 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14970 * src/muscle_tab.c (muscle_m4_output):
14971 Now inline. Return bool, not int.
14972 * src/state.c (state_compare): Likewise.
14973 * src/symtab.c (symbol_check_defined,
14974 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14975 hash_compare_symbol, hash_symbol):
14977 * src/uniqstr.c (uniqstr_print): Likewise.
14978 * src/muscle_tab.c (muscle_m4_output_processor):
14979 New function, to avoid casts.
14980 * src/state.c (state_comparator, stage_hasher): Likewise.
14981 * src/symtab.c (symbol_check_defined_processor,
14982 symbol_check_alias_consistency_processor, symbol_pack_processor,
14983 symbol_translation_processor, hash_symbol_comparator,
14984 hash_symbol_hasher): Likewise.
14985 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14986 * src/muscle_tab.c (muscles_m4_output):
14987 Use new functions instead of casting old functions unportably.
14988 * src/state.c (state_hash_new): Likewise.
14989 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14990 symbols_token_translations_init):
14992 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14994 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14995 var instead of casting to long, to avoid casts.
14996 (prepare_states): Use MALLOC rather than alloca, so that we don't
14997 have to worry about alloca.
14998 * src/state.c (state_hash_lookup): Likewise.
15000 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15001 local var instead of casting to unsigned char, to avoid casts.
15003 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15004 STATE_ALLOC): Remove.
15005 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15006 rather than calloc, and use offsetof to avoid allocating slightly
15008 (state_new): Initialize all members.
15010 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15012 * src/symtab.c (symbol_free): Remove; unused.
15013 (symbol_get): Remove cast in lhs of assignment.
15014 (symbols_do): Now static. Accept generic arguments, not
15015 hashing-related ones.
15017 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15018 (symbol_processor): Remove.
15019 (symbols_do): Remove decl; now static.
15021 * src/system.h (alloca): Remove; decl no longer needed.
15022 (<stddef.h>): Include, for offsetof.
15023 (<inttypes.>, <stdint.h>): Include if available.
15024 (uintptr_t): New type, if system lacks it.
15025 (CALLOC, MALLOC, REALLOC): New macros.
15026 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15029 * src/tables.c (table_size): Now int, to pacify GCC.
15030 (table_grow, table_ninf_remap): Use signed table size.
15031 (save_row): Don't bother initializing locals when not needed.
15032 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15033 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15035 * src/vcg.h: Correct misspellings.
15037 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15040 * src/getargs.c (getargs): Don't assume EOF == -1.
15042 2002-12-09 Paul Eggert <eggert@twinsun.com>
15044 Change identifier spellings to avoid collisions with names
15045 that are reserved by POSIX.
15047 Don't use names ending in _t, since POSIX reserves them.
15048 For consistency, remove _e and _s endings -- they're weren't
15049 needed to remove ambiguity. All uses changed.
15050 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15051 turn was just renamed from struniq_t.
15052 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15053 which in turn was just renamed from struniq_processor_t.
15054 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15055 in turn was renamed from hash_compare_struniq_t.
15056 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15057 (state_list): Renamed from state_list_t.
15058 * src/assoc.h (assoc): Renamed from assoc_t.
15059 * src/conflicts.c (enum conflict_resolution): Renamed from
15060 enum conflict_resolution_e.
15061 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15062 (rule_list): Renamed from rule_list_t.
15063 * src/getargs.h (enum trace): Renamed from enum trace_e.
15064 (enum report): Renamed from enum report_e.
15065 * src/gram.h (item_number): Renamed from item_number_t.
15066 (rule_number): Renamed from rule_number_t.
15067 (struct rule_s): Remove the "rule_s" part; not used.
15068 (rule): Renamed from rule_t.
15069 (rule_filter): Renamed from rule_filter_t.
15070 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
15071 (goto_list): Renamed from goto_list_t.
15072 * src/lalr.h (goto_number): Renamed from goto_number_t.
15073 * src/location.h (location): Renamed from location_t.
15074 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
15075 and moved here from:
15076 * src/muscle_tab.h (muscle_entry_t): here.
15077 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
15078 (rule_list): Renamed from rule_list_t.
15079 * src/print_graph.c (static_graph): Renamed from graph.
15080 * src/reader.h (braced_code): Renamed from braced_code_t.
15081 Remove brace_code_e tag.
15082 * src/relation.h (relation_node): Renamed from relation_node_t.
15083 (relation_nodes): Renamed from relation_nodes_t.
15084 (relation): Renamed from relation_t.
15085 * src/state.h (state_number): Renamed from state_number_t.
15086 (struct state): Renamed from struct state_s.
15087 (state): Renamed from state_t.
15088 (transitions): Renamed from transitions_t. Unused (and
15089 misspelled) transtion_s tag removed.
15090 (errs): Renamed from errs_t. Unused errs_s tag removed.
15091 (reductions): Renamed from reductions_t. Unused tag
15092 reductions_s removed.
15093 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15094 (struct symbol_list): Renamed from struct symbol_list_s.
15095 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15096 (struct symbol): Renamed from struct symbol_s.
15097 (symbol): Renamed from symbol_t.
15098 * src/tables.c (vector_number): Renamed from vector_number_t.
15099 (action_number): Renamed from action_t.
15100 * src/tables.h (base_number): Renamed from base_t.
15101 * src/vcg.h (enum color): Renamed from enum color_e.
15102 (enum textmode): Renamed from enum textmode_e.
15103 (enum shape): Renamed from enum shape_e.
15104 (struct colorentry): Renamed from struct colorentry_s.
15105 (struct classname): Renamed from struct classname_s.
15106 (struct infoname): Renamed from struct infoname_s.
15107 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15108 (enum decision): Renamed from enum decision_e.
15109 (enum orientation): Renamed from enum orientation_e.
15110 (enum alignment): Renamed from enum alignment_e.
15111 (enum arrow_mode): Renamed from enum arrow_mode_e.
15112 (enum crossing_type): Renamed from enum crossing_type_e.
15113 (enum view): Renamed from enum view_e.
15114 (struct node): Renamed from struct node_s.
15115 (node): Renamed from node_t.
15116 (enum linestyle): Renamed from enum linestyle_e.
15117 (enum arrowstyle): Renamed from enum arrowstyle_e.
15118 (struct edge): Renamed from struct edge.
15119 (edge): Renamed from edge_t.
15120 (struct graph): Renamed from struct graph_s.
15121 (graph): Renamed from graph_t.
15122 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15123 Rename value_t -> value.
15124 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15125 value_t_as_yystype -> value_as_yystype.
15127 Don't include <errno.h> in the mainstream code, since it
15128 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15129 * lib/get-errno.c, lib/get-errno.h: New files.
15130 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15132 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15133 * src/output.c (output_skeleton): Likewise.
15134 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15136 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15138 (handle_action_dollar, handle_action_at): Likewise.
15139 * src/system.h: Do not include <errno.h>.
15140 (TAB_EXT): Renamed from EXT_TAB.
15141 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15143 Avoid str[a-z]*, since <string.h> reserves that name space.
15144 Change all instances of "struniq" in names to "uniqstr", and
15145 likewise for "STRUNIQ" and "UNIQSTR".
15146 * src/uniqstr.c: Renamed from src/struniq.c.
15147 * src/uniqstr.h: Renamed from src/struniq.h.
15148 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15149 * src/files.c (strsuffix): Remove; unused.
15150 (concat2): Renamed from stringappend. Now static.
15151 * src/files.h (strsuffix, stringappend): Remove; unused.
15152 * src/parse-gram.y (<chars>): Renamed from <string>.
15153 (<uniqstr>): Renamed from <struniq>.
15154 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15155 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15156 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15157 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15158 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15159 (N_EXPAND): Renamed from N_STRETCH.
15161 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15162 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15163 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15165 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15166 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15167 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15168 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15169 (BASE_MAXIMUM): Renamed from BASE_MAX.
15170 (BASE_MINIMUM): Renamed from BASE_MIN.
15171 (ACTION_MAX): Remove; unused.
15172 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15173 Unnecessary casts removed from above defines.
15176 Fix misspelling in names.
15177 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15178 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15182 * lib/timevar.c (timevar_report): Renamed from time_report,
15183 for consistency with other names.
15184 * lib/timevar.h (timevar_report): New decl.
15185 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15188 Sort include-file uses.
15190 Reorder all include files under src to be in the order "system.h".
15191 then the ../lib include files in angle brackets (alphabetized),
15192 then the . include files in double-quotes (alphabetized). Fix
15193 dependency breakages encountered in this process, as follows:
15194 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15195 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15196 * src/state.h: Include "symtab.h".
15198 2002-12-08 Paul Eggert <eggert@twinsun.com>
15200 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15201 since this causes problems when __file__ contains character
15202 sequences like "@" that are treated specially by src/scan-skel.l.
15203 Instead, just use the file's basename. This fixes the bug
15204 reported by Martin Mokrejs in
15205 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
15207 2002-12-06 Paul Eggert <eggert@twinsun.com>
15209 Add support for rules that do not have trailing semicolons, as
15210 POSIX requires. Improve the quality of locations in Bison
15213 * src/location.c: Include <quotearg.h>.
15214 (empty_location): Now const.
15215 (location_print): New function. Follow the recommendation of the
15216 GNU Coding Standards for locations that span file boundaries.
15217 * src/location.h: Do not include <quotearg.h>; no longer needed.
15218 (boundary): New type.
15219 (location_t): Use it. This allows locations to span file boundaries.
15220 All member uses changed: file -> start.file or end.file (as needed),
15221 first_line -> start.line, first_column -> start.column,
15222 last_line -> end.line, last_column -> end.column.
15223 (equal_boundaries): New function.
15224 (LOCATION_RESET, LOCATION_STEP): Remove.
15225 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15226 (empty_location): Now const.
15227 (location_print): New decl.
15228 * src/parse-gram.y (lloc_default): New function, which handles
15229 empty locations more accurately.
15230 (YYLLOC_DEFAULT): Use it.
15231 (%token COLON): Remove.
15232 (%token ID_COLON): New token.
15234 (declarations, rules): Remove trailing semicolon.
15235 (declaration, rules_or_grammar_declaration):
15236 Allow empty (";") declaration.
15237 (symbol_def): Remove empty actions; no longer needed.
15238 (rules_or_grammar_declaration): Remove trailing semicolon.
15239 (semi_colon.opt): Remove.
15240 * src/reader.h: Include location.h.
15241 (scanner_cursor): New decl.
15242 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15244 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15246 (STEP): Remove. No longer needed, now that adjust_location does
15247 the work. All uses removed.
15248 (scanner_cursor): New var.
15249 (adjust_location): Renamed from extend_location. It now sets
15250 *loc and adjusts the scanner cursor. All uses changed.
15251 Don't bother testing for CR.
15252 (handle_syncline): Remove location arg; now updates scanner cursor.
15253 All callers changed.
15254 (unexpected_end_of_file): Now accepts start boundary of token or
15255 comment, not location. All callers changed. Update scanner cursor,
15257 (SC_AFTER_IDENTIFIER): New state.
15258 (context_state): Renamed from c_context. All uses changed.
15259 (id_loc, code_start, token_start): New local vars.
15260 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15261 processing of Yacc white space and equivalents here.
15262 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15263 instead of returning ID immediately, since we need to search for
15264 a subsequent colon.
15265 (<INITIAL>"'", "\""): Save token_start.
15266 (<INITIAL>"%{", "{", "%%"): Save code_start.
15267 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15268 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15269 BEGIN context_state at end, not INITIAL.
15270 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15271 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15272 Return correct token start.
15273 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15274 the start of a character, string or multiline comment is found.
15275 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15276 Reduction): Adjust reported locations to match the more-precise
15277 results now expected.
15278 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15279 * tests/reduce.at (Useless Rules, Reduced Automaton,
15280 Underivable Rules): Likewise.
15281 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15282 or "|"' now that so many other tokens are allowed by the new grammar.
15284 * src/complain.h (current_file): Remove duplicate decl;
15285 current_file is now owned by files.h.
15286 * src/complain.c, src/scan-gram.l: Include files.h.
15288 2002-12-06 Paul Eggert <eggert@twinsun.com>
15290 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15291 promotes to int; it might be unsigned int.
15292 * data/yacc.c (yy_reduce_print): Likewise.
15294 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15295 be #defined in the prologue, not in the Bison declarations.
15296 This fixes Debian Bug 102878, reported by Shaul Karl.
15298 2002-12-02 Paul Eggert <eggert@twinsun.com>
15300 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15301 * lib/strtoul.c: New file, from gnulib.
15302 This fixes a porting bug reported by Peter Klein in
15303 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
15305 2002-11-30 Paul Eggert <eggert@twinsun.com>
15307 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15308 and put only a forward declaration in the prologue. This is for
15309 consistency with the other scanner helper functions.
15311 Type clashes now generate warnings, not errors, since it
15312 appears that POSIX may allow some grammars with type clashes.
15313 * src/reader.c (grammar_current_rule_check): Warn about
15314 type clashes instead of complaining.
15315 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15317 Add Yacc library, since POSIX requires it.
15318 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15319 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15320 * lib/main.c, lib/yyerror.c: New files.
15322 gram_error can be static; it need not be extern.
15323 * src/reader.h (gram_error): Remove decl.
15324 * src/parse-gram.y (gram_error): Now static. Add static decl.
15325 (print_token_value): Omit parameter names from forward decl,
15328 2002-11-29 Paul Eggert <eggert@twinsun.com>
15330 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15331 be declared before being used. E.g., one should typically
15332 declare them in the prologue. Use GNU coding style in examples.
15333 Put "const" consistently after the type it modifies. Mention
15334 that C99 supports "inline". Mention that yyerror traditionally
15337 %parse-param and %lex-param now take just one argument, the
15338 declaration; the argument name is deduced from the declaration.
15340 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15341 Reporting, Table of Symbols): Document this.
15342 * src/parse-gram.y (add_param): New function.
15344 (declaration): Implement new rule for %parse-param and %lex-param.
15345 * src/scan-gram.l: "," now elicits a warning, rather than being
15346 a token; this is more compatible with byacc.
15347 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15349 2002-11-27 Paul Eggert <eggert@twinsun.com>
15351 Rename identifiers to avoid real and potential collisions.
15353 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15354 to avoid collision with lex macro described by Bruce Lilly in
15355 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15356 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15357 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15358 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15360 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15361 The name "yycontrol" violates the name space rules, and this stuff
15362 wasn't being used anyway.
15363 (input): Remove action; this stuff wasn't being used.
15364 (gram_error): Rename local variable yylloc -> loc.
15365 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15366 (YY_DECL): Don't use "yy" at start of local variables.
15367 All uses changed, e.g., yylloc -> loc.
15368 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15369 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15370 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15371 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15373 * src/parse-gram.y (gram_error): loc is now const *.
15374 * src/reader.h (gram_error): Likewise.
15376 2002-11-24 Paul Eggert <eggert@twinsun.com>
15380 * tests/actions.at (Actions after errors): Use an output format
15381 more similar to that of the Printers and Destructors test.
15382 Test the position of the ';' token too.
15383 (Printers and Destructors): Likewise.
15384 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15385 unnecessarily alarming people when the test fails.
15387 * data/yacc.c (yyerrlab1): Move this label down, so that the
15388 parser does not discard the lookahead token if the user code
15389 invokes YYERROR. This change is required for POSIX conformance.
15391 * lib/error.c: Sync with gnulib.
15393 2002-11-22 Paul Eggert <eggert@twinsun.com>
15395 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15396 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15397 * lib/xmalloc.c: Likewise.
15399 2002-11-20 Paul Eggert <eggert@twinsun.com>
15401 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15403 2002-11-20 Paul Eggert <eggert@twinsun.com>
15405 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15406 should use `if (! x) abort ();' rather than `assert (x);', and
15407 anyway it's one less thing to worry about configuring.
15409 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15410 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15411 and replace all instances of assert with abort.
15412 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15413 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15415 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15416 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15417 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15418 hash_find_entry, hash_rehash, hash_insert): Likewise.
15419 * src/conflicts.c (resolve_sr_conflict): Likewise.
15420 * src/lalr.c (set_goto_map, map_goto): Likewise.
15421 * src/nullable.c (nullable_compute): Likewise.
15422 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15423 * src/reader.c (packgram, reader): Likewise.
15424 * src/state.c (state_new, state_free, state_transitions_set,
15425 state_reduction_find): Likewise.
15426 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15427 symbol_pack): Likewise.
15428 * src/tables.c (conflict_row, pack_vector): Likewise.
15429 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15430 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15431 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15432 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15434 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15435 (ARGMATCH_CONSTRAINT): New macro.
15436 (ARGMATCH_ASSERT): Use it.
15438 * src/system.h (verify): New macro.
15439 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15440 rather than assert.
15441 * src/tables.c (tables_generate): Likewise.
15443 * src/struniq.c (struniq_assert): Now returns void, and aborts
15444 if the assertion is false.
15445 (struniq_assert_p): Remove.
15446 * src/struniq.h: Likewise.
15448 2002-11-18 Paul Eggert <eggert@twinsun.com>
15450 * data/glr.c (yygetLRActions): Replace `yyindex' with
15451 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15452 This fixes the regression with Sun ONE Studio 7 cc that I reported in
15453 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
15455 2002-11-18 Akim Demaille <akim@epita.fr>
15457 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15459 From Tim Van Holder.
15461 2002-11-17 Paul Eggert <eggert@twinsun.com>
15463 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15464 to "SyntaxError" for consistency with my 2002-11-15 change.
15466 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15467 not define to {}, since this breaks the common use of `YYDPRINTF
15468 ((...));' if a single statement is desired (e.g. before `else').
15469 Work around GCC warnings by surrounding corresponding calls with
15471 (yyhasResolvedValue): Remove unused function.
15472 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15474 (yyreportSyntaxError): Renamed from yyreportParseError.
15475 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15477 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15478 extern when possible. Remove unused initializations.
15480 2002-11-16 Akim Demaille <akim@epita.fr>
15482 Augment the similarity between GLR and LALR traces.
15484 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15485 (YY_REDUCE_PRINT): New.
15486 (yyparse): Use them.
15487 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15489 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15490 state reached after the reduction/recovery, since...
15491 (yyparse, yyprocessOneStack): Report the state we are entering in.
15493 2002-11-16 Akim Demaille <akim@epita.fr>
15495 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15496 Add support for --trace=skeleton.
15497 * src/scan-skel.l: %option debug.
15498 Scan strings of non-@ or \n instead of character by character.
15499 (scan_skel): Handle trace_skeleton.
15501 (@output_parser_name@, @output_header_name@): ``Restore'' their
15502 support (used to be M4 macros).
15503 * data/yacc.c: Quote larger chunks, a la glr.c.
15504 * data/lalr1.cc: Likewise.
15505 The header guards are no longer available, so use some other
15506 string than `YYLSP_NEEDED'.
15508 2002-11-16 Akim Demaille <akim@epita.fr>
15510 Make the ``Printers and Destructors'' test more verbose, taking
15511 `yacc.c''s behavior as (possibly wrong) reference.
15513 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15514 instead of fprint on stdout.
15515 Set and report the last_line of the symbols.
15516 Consistently display values and locations.
15518 2002-11-16 Paul Eggert <eggert@twinsun.com>
15520 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15522 2002-11-15 Paul Eggert <eggert@twinsun.com>
15524 * tests/actions.at (Actions after errors): New test case.
15526 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15527 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15528 tests/action.at, tests/calc.at, tests/conflicts.at,
15529 tests/cxx-type.at, tests/regression.at:
15530 "parse error" -> "syntax error" for POSIX compatibility.
15531 "parsing stack overflow..." -> "parser stack overflow" so
15532 that code matches Bison documentation.
15534 2002-11-15 Akim Demaille <akim@epita.fr>
15536 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15537 take two BRACED_CODE, not two string_content.
15538 Free the scanner's obstack when we are done.
15539 (code_content): New.
15540 * tests/calc.at: Adjust.
15541 * doc/bison.texinfo: Adjust.
15542 Also, make sure to include the `,' for these declarations.
15544 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15546 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15547 definition; avoids potential autoreconf problems.
15549 2002-11-15 Akim Demaille <akim@epita.fr>
15551 Always check the value returned by yyparse.
15553 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15554 returned by yyparse.
15555 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15557 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15558 returned by yyparse.
15560 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15562 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15565 2002-11-14 Paul Eggert <eggert@twinsun.com>
15567 * src/output.c (output_skeleton): Call xfopen instead of
15568 duplicating xfopen's body.
15570 Fix bugs reported by Nelson H. F. Beebe in
15571 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
15573 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15574 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15575 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15576 file twice in the grammar, as an extra check.
15578 * tests/input.at (Torturing the Scanner): Surround the
15579 backslash-newline tests with "#if 0", to make it less likely that
15580 we'll run into compiler bugs. Bring back solitary \ inside
15581 comment, but add a closing comment to work around HP C bug. Don't
15582 test backslash-newline in C character constant.
15584 2002-11-14 Akim Demaille <akim@epita.fr>
15586 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15587 status of the compiler.
15588 Calling `exit 1' is no longer needed.
15589 Reported by Nelson H. F. Beebe.
15591 2002-11-14 Akim Demaille <akim@epita.fr>
15593 * tests/atlocal.in (CPPFLAGS): We have config.h.
15594 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15596 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15597 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15598 * tests/regression.at, tests/torture.at: Use them for all the
15599 grammars that are to be compiled.
15600 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15601 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15602 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15604 2002-11-14 Akim Demaille <akim@epita.fr>
15606 * doc/bison.texinfo: Various formatting changes (alignments in
15607 samples, additional @group/@end group, GCS in samples.
15608 Use @deffn instead of simple @table to define the directives,
15609 macros, variables etc.
15611 2002-11-13 Paul Eggert <eggert@twinsun.com>
15613 Fix some bugs reported by Albert Chin-A-Young in
15614 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
15616 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
15617 -o c"; the HP C compiler chatters during compilation.
15618 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15619 * tests/headers.at (export YYLTYPE): Likewise.
15621 * tests/input.at (Torturing the Scanner): Remove lines containing
15622 solitary backslashes, as they tickle a bug in the HP C compiler.
15624 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15625 comments, since they're not portable. Use GNU coding style.
15627 2002-11-13 Akim Demaille <akim@epita.fr>
15629 * data/yacc.c: Leave bigger chunks of quoted text.
15630 (YYDSYMPRINTF): New.
15631 Use it to report symbol activities.
15632 * data/glr.c (YYDSYMPRINTF): New.
15635 2002-11-12 Paul Eggert <eggert@twinsun.com>
15639 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15640 (yyglrReduce): Return yyok, not 0.
15641 This should avoid the enumerated-type warnings reported
15642 by Nelson H. F. Beebe in
15643 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
15645 * lib/bbitset.h (BITSET_INLINE): Remove.
15646 * lib/bitset.h [! BITSET_INLINE]: Remove.
15647 (bitset_set, bitset_reset, bitset_test): Rename local vars
15648 to avoid shadowing warnings by GCC.
15650 * data/glr.c (inline): Remove #define. It's the user's
15651 responsibility to #define it away, just like 'const'.
15652 This fixes one of the bugs reported by Nelson H. F. Beebe in
15653 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
15655 * Makefile.maint (po-check): Scan .l and .y files instead of the
15656 .c and the .h files that they generate. This fixes the bug
15657 reported by Tim Van Holder in:
15658 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
15659 Look for N_ as well as for _. Try to avoid matching #define for
15661 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15662 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15663 * src/scan-gram.l: Revamp regular expressions so that " and '
15664 do not confuse xgettext.
15666 * src/struniq.h (struniq_new): Do not declare the return type
15667 to be 'const'; this violates the C standard.
15668 * src/struniq.c (struniq_new): Likewise.
15670 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15672 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15673 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15676 2002-11-12 Akim Demaille <akim@epita.fr>
15678 * Makefile.maint: Sync with Autoconf:
15679 (local_updates): New.
15681 2002-11-12 Akim Demaille <akim@epita.fr>
15683 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15685 2002-11-12 Akim Demaille <akim@epita.fr>
15687 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15690 2002-11-12 Akim Demaille <akim@epita.fr>
15692 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15695 2002-11-12 Akim Demaille <akim@epita.fr>
15697 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15698 Use it to test the GLR parser.
15700 2002-11-12 Akim Demaille <akim@epita.fr>
15702 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15704 * data/glr.c (yystos): New.
15705 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15706 (YYDSYMPRINT): New.
15707 (yyval): Don't define it, it is handled via M4.
15708 (yyrecoverParseError): Free verbosely the discarded symbols.
15709 * data/yacc.c (yysymprint): Remove, rather...
15710 (b4_yysymprint_generate): invoke.
15711 * data/c.m4 (b4_yysymprint_generate): New.
15712 Accept pointers as arguments, as opposed to the version from
15714 (b4_yydestruct_generate): Likewise.
15715 * tests/cations.at (Printers and Destructors): Use Bison directives
15716 instead of CPP macros.
15717 Don't rely on internal details.
15719 2002-11-12 Akim Demaille <akim@epita.fr>
15721 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15722 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15723 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15724 it against YYEMPTY and so forth), work on yytoken (i.e., set
15725 it to YYEMPTY etc.).
15726 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15727 (b4_symbol_actions): Remove.
15728 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15729 for 0, end-of-input.
15731 2002-11-12 Akim Demaille <akim@epita.fr>
15733 * doc/bison.texinfo (Destructor Decl): New.
15735 2002-11-12 Akim Demaille <akim@epita.fr>
15737 * src/tables.c (tables_generate): Use free for pointers that
15738 cannot be NULL, not XFREE.
15739 (pack_vector): Use assert, not fatal, for bound violations.
15740 * src/state.c (state_new): Likewise.
15741 * src/reader.c (reader): Likewise.
15742 * src/lalr.c (set_goto_map): Likewise.
15743 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
15746 2002-11-12 Akim Demaille <akim@epita.fr>
15748 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15750 * src/scan-gram.l (last_string): Is global to the file, not to
15752 * src/parse-gram.y (input): Don't append the epilogue here,
15753 (epilogue.opt): do it here, and free the scanner's obstack.
15754 * src/reader.c (epilogue_set): Rename as...
15755 (epilogue_augment): this.
15756 * data/c.m4 (b4_epilogue): Defaults to empty.
15758 2002-11-12 Akim Demaille <akim@epita.fr>
15760 * src/getargs.c (long_options): Remove duplicates.
15761 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15763 * doc/bison.rnh: Remove.
15764 * doc/bison.texinfo (VMS Invocation): Remove.
15766 2002-11-12 Akim Demaille <akim@epita.fr>
15768 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15769 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15771 Use struniq for symbols.
15773 * src/symtab.h (symbol_t): The tag member is a struniq.
15774 (symbol_type_set): Adjust.
15775 * src/symtab.c (symbol_new): Takes a struniq.
15776 (symbol_free): Don't free the tag member.
15777 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15778 (hash_compare_symbol, hash_symbol): these.
15779 Use the fact that tags as struniqs.
15780 (symbol_get): Use struniq_new.
15781 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15783 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15784 and type members are struniqs.
15785 * src/reader.c (get_merge_function)
15786 (grammar_current_rule_merge_set): Adjust.
15787 (TYPE, current_type): Are struniq.
15789 Use struniq for file names.
15791 * src/files.h, src/files.c (infile): Split into...
15792 (grammar_file, current_file): these.
15793 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15794 * src/reduce.c (reduce_print): Likewise.
15795 * src/getargs.c (getargs): Likewise.
15796 * src/complain.h, src/complain.c: Likewise.
15797 * src/main.c (main): Call struniqs_new early enough to use it for
15799 Don't free the input file name.
15801 2002-11-12 Akim Demaille <akim@epita.fr>
15803 * src/symtab.c (symbol_free): Remove dead deactivated code:
15804 type_name are properly removed.
15805 Don't use XFREE to free items that cannot be NULL.
15806 * src/struniq.h, src/struniq.c: New.
15807 * src/main.c (main): Initialize/free struniqs.
15808 * src/parse-gram.y (%union): Add astruniq member.
15810 * src/scan-gram.l (<{tag}>): Return a struniq.
15811 Free the obstack bit that used to store it.
15812 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15814 2002-11-11 Paul Eggert <eggert@twinsun.com>
15816 Revamp to fix many (but not all) of the C- and M4-related quoting
15817 problems. Among other things, this fixes the Bison bug reported
15818 by Jan Hubicka when processing the Bash grammar; see:
15819 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
15821 Use new @ escapes consistently. Represent brackets with @{ and @}
15822 rather than @<:@ and @:>@, since this works a bit better with dumb
15823 editors like vi. Represent @ with @@, since @ is now consistently
15824 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15825 __ofile__, to avoid unexpected expansions. Similarly, use @output
15826 rather than #output.
15828 * data/c.m4 (b4_copyright): Omit file name from comment, since
15829 the file name could contain "*/".
15830 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15831 be quoted. All uses changed.
15833 * data/glr.c: Use new @ escapes consistently.
15834 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15835 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15836 Remove, since they couldn't handle arbitrary characters in file
15838 * data/lalr1.cc: Likewise.
15839 * data/yacc.c: Likewise.
15841 * src/files.c (output_infix): Remove; all uses removed.
15842 * src/files.h: Likewise.
15844 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15845 mishandled funny characters in file names, and anyway it isn't
15847 * data/yacc.c: Likewise.
15848 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15850 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15851 * data/yacc.c: Likewise.
15853 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15855 (muscle_init): Quote filename as a C string.
15856 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15857 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15858 * src/output.c (escaped_file_name_output): New function.
15859 (prepare_symbols): Quote tokens for M4.
15860 (prepare): Don't insert output_infix, output_prefix,
15861 output_parser_name, output_header_name; this is now down by scan-skel.
15862 Insert skeleton as a C string.
15864 * src/output.c (user_actions_output, symbol_destructors_output,
15865 symbol_printers_output): Quote filenames for C and M4.
15866 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15868 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15869 escapes other than \\ and \'; this simplifies the code.
15870 (<SC_STRING>): Likewise, for \\ and \".
15871 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15872 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15873 Use new escapes @{ and @} for [ and ].
15875 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15876 them with auto vars.
15877 Switch to new escape scheme, where @ is the escape character uniformly.
15878 Abort if a stray escape character is found. Avoid unbounded input
15879 buffer when parsing non-escaped text.
15881 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15882 __oline__, #output, $@, and @{ do not have unintended meanings.
15884 2002-11-09 Paul Eggert <eggert@twinsun.com>
15886 Fix the test failure due to GCC warnings described in
15887 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
15888 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15889 evaluate to 0 if it's impossible for NINF to be in the respective
15891 (yygetLRActions, yyrecoverParseError): Use them.
15893 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15894 counted in the token inserted at end of file. Now takes
15895 location_t *, not location_t, so that the location can be
15896 adjusted. All uses changed.
15898 * tests/regression.at (Invalid inputs): Adjust wording in
15899 diagnostic to match the new behavior.
15901 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15902 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15903 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15904 abort ();'. This reduces the runtime of the "Many lookaheads"
15905 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15908 2002-11-07 Paul Eggert <eggert@twinsun.com>
15910 * src/parse-gram.y (CHARACTER): Remove unused token.
15913 * src/scan-gram.l: Remove stack option. We no longer use the
15914 stack, since the stack was never deeper than 1; instead, use the
15915 new auto var c_context to record the stacked value.
15917 Remove nounput option. At an unexpected end of file, we now unput
15918 the minimal input necessary to end cleanly; this simplifies the
15921 Avoid unbounded token sizes where this is easy.
15923 (unexpected_end_of_file): New function.
15924 Use it to systematize the error message on unexpected EOF.
15925 (last-string): Now auto, not static.
15926 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15927 (scanner_last_string_free): Remove; not used.
15928 (percent_percent_count): Move decl to just before use.
15929 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15930 not the (never otherwised-used) CHARACTER.
15932 2002-11-07 Akim Demaille <akim@epita.fr>
15934 Let yyerror always receive the msg as last argument, so that
15935 yyerror can be variadic.
15937 * data/yacc.c (b4_yyerror_args): New.
15938 Use it when calling yyerror.
15939 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15940 Use it when calling yyerror.
15941 * doc/bison.texinfo (Error Reporting): Adjust.
15942 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15943 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15945 2002-11-06 Akim Demaille <akim@epita.fr>
15947 #line should have quoted strings.
15948 Ideally, this should be done by m4_quotearg.
15950 * src/scan-skel.l: Include quotearg.h.
15952 * src/output.c (symbol_printers_output)
15953 (symbol_destructors_output): Quote the file name.
15955 2002-11-06 Akim Demaille <akim@epita.fr>
15957 * tests/regression.at (Invalid inputs): Adjust to the recent
15960 2002-11-06 Akim Demaille <akim@epita.fr>
15962 Restore --no-lines.
15963 Reported by Jim Kent.
15965 * data/c.m4 (b4_syncline): New.
15966 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15967 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15968 * src/output.c (user_actions_output): Likewise.
15969 (prepare): Define 'b4_synclines_flag'.
15970 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
15972 2002-11-06 Akim Demaille <akim@epita.fr>
15974 * src/main.c (main): Free `infile'.
15975 * src/scan-gram.l (handle_syncline): New.
15977 * src/output.c (user_actions_output, symbol_destructors_output)
15978 (symbol_printers_output): Use the location's file name, not
15980 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15982 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15984 * src/tables.c (matching_state): Don't allow states to match if
15985 either has GLR conflict entries.
15987 2002-11-05 Paul Eggert <eggert@twinsun.com>
15989 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15990 "integer out of range" rather than "invalid value".
15991 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15994 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15995 Also, remove one static variable in the scanner.
15997 * src/scan-gram.l (braces_level): Now auto, not static.
15998 Initialize to zero if the compiler is being picky.
15999 (INITIAL): Clear braces_level instead of incrementing it.
16000 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16001 as POSIX 1003.1-2001 requires.
16002 * src/system.h (IF_LINT): New macro, taken from coreutils.
16003 * configure.ac: Define "lint" if --enable-gcc-warnings.
16005 2002-11-05 Akim Demaille <akim@epita.fr>
16007 * src/scan-gram.l: When it starts with `%', complain about the
16008 whole directive, not just that `invalid character: %'.
16010 2002-11-04 Akim Demaille <akim@epita.fr>
16012 * Makefile.maint: Update from Autoconf.
16013 (update, cvs-update, po-update, do-po-update): New.
16015 2002-11-04 Akim Demaille <akim@epita.fr>
16017 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16019 Have yyerror `use' its arguments.
16020 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16021 returns true when location & yacc & pure & parse-param.
16022 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16024 2002-11-04 Akim Demaille <akim@epita.fr>
16026 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16028 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16031 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16034 2002-11-03 Paul Eggert <eggert@twinsun.com>
16036 * src/reader.c (get_merge_function, grammar_current_rule_check):
16037 Use consistent diagnostics for reporting type name clashes.
16038 Quote the types with <>, for consistency with Yacc.
16039 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16041 2002-11-03 Akim Demaille <akim@epita.fr>
16043 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16045 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16046 (b4_parse_param): Remove.
16047 Use b4_identification.
16048 Propagate b4_pure_args where needed to pass them to yyerror.
16049 * data/glr.m4 (b4_parse_param): Remove.
16050 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16051 (b4_lpure_formals): New.
16052 Use b4_identification.
16053 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16054 b4_user_formals and b4_user_args.
16055 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16056 (yyreportAmbiguity): When using a pure parser, also need
16057 the location, and the parse-params.
16059 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16060 When using a pure parser, also need the parse-params.
16062 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16063 (%pure-parser + %parse-param) LALR and GLR parsers.
16064 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16065 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16066 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16067 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16068 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16069 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
16070 * doc/bison.texinfo: Untabify the whole file.
16071 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
16072 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
16073 (Error Reporting): Adjust to these new directives.
16074 Document %error-verbose, deprecate YYERROR_VERBOSE.
16076 2002-11-03 Akim Demaille <akim@epita.fr>
16078 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
16079 AT_CHECK_CALC_GLR invocations to use % directives, instead of
16080 command line options.
16081 * tests/cxx-type.at: Formatting changes.
16083 2002-11-03 Paul Eggert <eggert@twinsun.com>
16085 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16086 to count columns correctly, and to check for invalid inputs.
16088 Use mbsnwidth to count columns correctly. Account for tabs, too.
16089 Include mbswidth.h.
16090 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16091 (extend_location): New function.
16092 (YY_LINES): Remove.
16094 Handle CRLF in C code rather than in Lex code.
16095 (YY_INPUT): New macro.
16096 (no_cr_read): New function.
16098 Scan UCNs, even though we don't fully handle them yet.
16099 (convert_ucn_to_byte): New function.
16101 Handle backslash-newline correctly in C code.
16102 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16103 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16105 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16106 Use {splice} wherever C allows backslash-newline.
16107 YY_STEP after space, newline, vertical-tab.
16108 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
16110 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16112 ({int}, handle_action_dollar, handle_action_at): Check for integer
16115 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16117 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16118 as well as \000. Check for UCHAR_MAX, not 255.
16119 Allow \x with an arbitrary positive number of digits, as in C.
16120 Check for overflow here.
16121 Allow \? and UCNs, for compatibility with C.
16123 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16124 with quote slot used by complain_at.
16126 * tests/input.at: Add tests for backslash-newline, m4 quotes
16127 in symbols, long literals, and funny escapes in strings.
16129 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16130 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16131 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16132 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16133 * m4/mbswidth.m4: New file, from GNU coreutils.
16135 * doc/bison.texinfo (Grammar Outline): Document // comments.
16136 (Symbols): Document that trigraphs have no special meaning in Bison,
16137 nor is backslash-newline allowed.
16138 (Actions): Document that trigraphs have no special meaning.
16140 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16143 2002-11-02 Paul Eggert <eggert@twinsun.com>
16145 * src/reader.c: Don't include quote.h; not needed.
16146 (get_merge_function): Reword warning to be consistent with
16147 type clash diagnostic in grammar_current_rule_check.
16149 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16150 bug in trigraph handling.
16152 * src/output.c (prepare_symbols): When printing token names,
16153 escape "[" as "@<:@" and likewise for "]".
16155 * src/system.h (errno): Remove declaration, as we are now
16156 assuming C89 or better, and C89 guarantees errno.
16158 2002-10-30 Paul Eggert <eggert@twinsun.com>
16160 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16161 Check for close failures.
16162 * src/files.h (xfclose): Return void, not int, since it always
16164 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16166 * src/output.c (output_skeleton): Use xfclose rather than fclose
16167 and ferror. xfclose now checks ferror.
16169 * data/glr.c (YYLEFTMOST_STATE): Remove.
16170 (yyreportTree): Use a stack-based leftmost state. This avoids
16171 our continuing battles with bogus warnings about initializers.
16173 2002-10-30 Akim Demaille <akim@epita.fr>
16175 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16178 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16180 * tests/glr-regr1.at: New test for reported regressions.
16181 * tests/testsuite.at: Add glr-regr1.at test.
16182 * tests/Makefile.am: Add glr-regr1.at test.
16184 2002-10-24 Paul Eggert <eggert@twinsun.com>
16188 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16189 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16190 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16191 Don't assume strdup exists; POSIX says its an XSI extension.
16192 Check for buffer overflow on input.
16194 2002-10-24 Akim Demaille <akim@epita.fr>
16196 * src/output.c (output_skeleton): Don't disable M4sugar comments
16197 too soon: it results in comments being expanded.
16198 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16201 2002-10-24 Akim Demaille <akim@epita.fr>
16203 * data/yacc.c (m4_int_type): New.
16204 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16205 char' as only yacc.c wants K&R portability.
16206 * data/glr.c (yysigned_char): Remove.
16207 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16208 Reported by Quoc Peyrot.
16210 2002-10-23 Paul Eggert <eggert@twinsun.com>
16212 * src/main.c (main): With --trace=time, report times even if a
16213 non-fatal error occurs. Formerly, the times were reported in some
16214 such cases but not in others.
16215 * src/reader.c (reader): Just return if a complaint has been issued,
16216 instead of exiting, so that 'main' can report times.
16218 2002-10-22 Akim Demaille <akim@epita.fr>
16220 * src/system.h: Include sys/types.
16221 Reported by Bert Deknuydt.
16223 2002-10-23 Paul Eggert <eggert@twinsun.com>
16225 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16226 Suggested by Art Haas.
16228 2002-10-22 Paul Eggert <eggert@twinsun.com>
16230 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16231 decl; not needed any more.
16232 * src/main.c (main): Use return to exit, undoing yesterday's change.
16233 The last OS that we could find where this wouldn't work is
16234 SunOS 3.5, and that's too old to worry about now.
16236 * data/glr.c (struct yyltype): Define members even when not
16237 doing locations. This is more consistent with yacc.c, and it
16238 works around the following bug reports:
16239 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16240 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
16242 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16243 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16244 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16246 2002-10-22 Akim Demaille <akim@epita.fr>
16248 * data/README: New.
16250 2002-10-21 Paul Eggert <eggert@twinsun.com>
16252 Be consistent about 'bool'; the old code used an enum in one
16253 module and an int in another, and this violates the C standard.
16254 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16255 * configure.ac (AC_HEADER_STDBOOL): Add.
16256 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16257 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16258 * src/symtab.c (hash_compare_symbol_t): Likewise.
16259 * src/system.h (bool, false, true): Use a definition consistent
16260 with ../lib/hash.c. All uses changed.
16262 * src/complain.c (warning_issued): Renamed from warn_message_count,
16263 so that we needn't worry about integer overflow (!).
16264 Now of type bool. All uses changed.
16265 (complaint_issued): Renamed from complain_message_count; likewise.
16267 * src/main.c (main): Use exit to exit with failure.
16269 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16270 rather than 1 and 0.
16271 * src/main.c (main): Likewise.
16272 * src/getargs.c (getargs): Likewise.
16273 * src/reader.c (reader): Likewise.
16275 * src/getarg.c (getargs): Remove duplicate code for
16276 "Try `bison --help'".
16278 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16279 What was that "2" for?
16281 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16282 * src/getargs.c (usage): Likewise.
16284 * src/getargs.c (getargs): When there are too few operands, report
16285 the last one. When there are too many, report the first extra
16286 one. This is how diffutils does it.
16288 2002-10-20 Paul Eggert <eggert@twinsun.com>
16290 Remove K&R vestiges.
16291 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16292 * src/complain.c (VA_START): Remove. Assume prototypes.
16293 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16294 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16295 fatal): Assume prototypes.
16296 * src/complain.h: Assume prototypes.
16297 * src/system.h (PARAMS): Remove.
16298 Include <limits.h> unconditionally, since it's guaranteeed even
16299 for a freestanding C89 compiler.
16300 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16301 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
16303 2002-10-20 Akim Demaille <akim@epita.fr>
16305 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16306 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16307 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16308 (yyresolveStates, yyresolveAction, yyresolveStack)
16309 (yyprocessOneStack): Use them.
16310 (yy_reduce_print): New.
16311 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16313 2002-10-20 Akim Demaille <akim@epita.fr>
16315 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16316 arguments and output `void'.
16317 (b4_c_function): Rename as...
16318 (b4_c_function_def): this.
16319 (b4_c_function_decl, b4_c_ansi_function_def)
16320 (b4_c_ansi_function_decl): New.
16321 Change the interpretation of the arguments: before `int, foo', now
16323 * data/yacc.c (yyparse): Prototype and define thanks to these.
16324 Adjust b4_c_function_def uses.
16325 * data/glr.c (yyparse): Likewise, but ANSI only.
16327 2002-10-20 Akim Demaille <akim@epita.fr>
16329 * src/output.c (prepare): Move the definition of `tokens_number',
16330 `nterms_number', `undef_token_number', `user_token_number_max'
16332 (prepare_tokens): Here.
16333 (prepare_tokens): Rename as...
16334 (prepare_symbols): this.
16335 (prepare): Move the definition of `rules_number' to...
16336 (prepare_rules): here.
16337 (prepare): Move the definition of `last', `final_state_number',
16338 `states_number' to...
16339 (prepare_states): here.
16340 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16342 2002-10-20 Akim Demaille <akim@epita.fr>
16344 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16346 2002-10-20 Akim Demaille <akim@epita.fr>
16348 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16351 2002-10-20 Akim Demaille <akim@epita.fr>
16353 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16354 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16356 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16358 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16359 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16362 2002-10-19 Paul Eggert <eggert@twinsun.com>
16364 Do not create a temporary file, as that involves security and
16365 cleanup headaches. Instead, use a pair of pipes.
16366 Derived from a suggestion by Florian Krohm.
16367 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16368 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16369 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16370 (BISON_PREREQ_SUBPIPE): Add.
16371 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16372 Add subpipe.h, subpipe.c.
16373 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16374 * po/POTFILES.in: Add lib/subpipe.c.
16375 * src/output.c: Include "subpipe.h".
16376 (m4_invoke): Remove decl.
16377 (scan_skel): New decl.
16378 (output_skeleton): Use pipe rather than temporary file for m4 input.
16379 Check that m4sugar.m4 is readable, to avoid deadlock.
16380 Check for pipe I/O error.
16381 * src/scan-skel.l (readpipe): Remove decl.
16382 (scan_skel): New function, to be used in place of m4_invoke.
16383 Read from stream rather than file.
16385 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16386 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16387 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16388 this generates a more-accurate value anyway.
16390 * lib/timevar.c (timervar_accumulate): Rename locals to
16391 avoid confusion with similarly-named more-global.
16392 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16394 * src/output.c (prepare): Use xstrdup to convert char const *
16395 to char *, to avoid GCC warning.
16397 2002-10-19 Akim Demaille <akim@epita.fr>
16399 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16400 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16401 Use them to have `calc.y' ready for %pure-parser.
16402 * data/yacc.c (YYLEX): Pass a yylex return type to
16403 b4_c_function_call.
16405 2002-10-19 Akim Demaille <akim@epita.fr>
16407 Prototype support of %lex-param and %parse-param.
16409 * src/parse-gram.y: Add the definition of the %lex-param and
16410 %parse-param tokens, plus their rules.
16411 Drop the `_' version of %glr-parser.
16413 * src/scan-gram.l (INITIAL): Scan them.
16414 * src/muscle_tab.c: Comment changes.
16415 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16416 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16417 (muscle_entry_s): The `value' member is no longer const.
16418 Adjust all dependencies.
16419 * src/muscle_tab.c (muscle_init): Adjust: use
16420 MUSCLE_INSERT_STRING.
16421 Initialize the obstack earlier.
16422 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16423 (muscle_pair_list_grow): New.
16424 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16425 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16426 * tests/calc.at: Use %locations, not --locations.
16427 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16429 2002-10-19 Akim Demaille <akim@epita.fr>
16431 * src/getargs.c (usage): Take status as argument and exit
16433 Report the traditional `Try ... --help' message when status != 0.
16434 (usage, version): Don't take a FILE * as arg, it is pointless.
16435 (getargs): When there is an incorrect number of arguments, make it
16436 an error, and report it GNUlically thanks to `usage ()'.
16438 2002-10-18 Paul Eggert <eggert@twinsun.com>
16440 * data/glr.c (yyreportParseError): Don't assume that sprintf
16441 yields the length of the printed string, as this is not true
16442 on SunOS 4.1.4. Reported by Peter Klein.
16444 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16445 * tests/conflicts.at (%nonassoc and eof): Likewise.
16446 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16448 2002-10-17 Akim Demaille <akim@epita.fr>
16450 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16451 * src/getargs.c (trace_types, trace_args): Adjust.
16452 * src/reader.c (grammar_current_rule_prec_set)
16453 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16454 Standardize error messages.
16455 And s/@prec/%prec/!
16456 (reader): Use trace_flag to enable scanner/parser debugging,
16457 instead of an adhoc scheme.
16458 * src/scan-gram.l: Remove trailing debugging code.
16460 2002-10-16 Paul Eggert <eggert@twinsun.com>
16462 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16465 * NEWS: Officially drop support for building Bison with K&R C,
16466 since it didn't work anyway and it's not worth worrying about.
16467 * Makefile.maint (wget_files): Remove ansi2knr.c.
16468 (ansi2knr.c-url_prefix): Remove.
16469 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16470 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16471 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16473 2002-10-15 Paul Eggert <eggert@twinsun.com>
16475 Stop using the "enum_" trick for K&R-style function definitions;
16476 it confused me, and I was the author! Instead, assume that people
16477 who want to use K&R C compilers (when using these modules in GCC,
16478 perhaps?) will run ansi2knr.
16480 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16481 All uses of "enum_" changed to "enum ".
16482 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16483 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16485 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16486 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16487 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16488 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16489 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16490 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16491 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16492 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16493 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16494 Use function prototypes; this removes the need for declaring
16495 static functions simply to provide their prototypes.
16496 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16497 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16498 bitset_count_, bitset_create, bitset_dump, bitset_first,
16499 bitset_free, bitset_init, bitset_last, bitset_next,
16500 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16501 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16502 bitset_print, bitset_release_memory, bitset_toggle_,
16503 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16504 debug_bitset): Likewise.
16505 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16506 * lib/bitset_stats.c (bitset_log_histogram_print,
16507 bitset_percent_histogram_print, bitset_stats_and,
16508 bitset_stats_and_cmp, bitset_stats_and_or,
16509 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16510 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16511 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16512 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16513 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16514 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16515 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16516 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16517 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16518 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16519 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16520 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16521 bitset_stats_zero): Likewise.
16522 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16523 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16524 bitsetv_dump, debug_bitsetv): Likewise.
16525 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16526 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16527 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16528 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16529 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16530 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16531 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16532 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16533 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16534 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16535 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16537 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16538 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16539 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16540 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16541 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16542 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16543 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16544 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16545 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16546 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16547 lbitset_xor_cmp, lbitset_zero): Likewise.
16549 2002-10-14 Akim Demaille <akim@epita.fr>
16553 2002-10-14 Akim Demaille <akim@epita.fr>
16555 * tests/Makefile.am (maintainer-check-posix): New.
16557 2002-10-14 Akim Demaille <akim@epita.fr>
16559 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16562 2002-10-14 Akim Demaille <akim@epita.fr>
16564 * src/tables.c (table_ninf_remap): base -> tab.
16565 Reported by Matt Rosing.
16567 2002-10-14 Paul Eggert <eggert@twinsun.com>
16569 * tests/action.at, tests/calc.at, tests/conflicts.at,
16570 tests/cxx-type.at, tests/headers.at, tests/input.at,
16571 tests/regression.at, tests/synclines.at, tests/torture.at:
16572 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16573 so that the tests still work even if POSIXLY_CORRECT is set.
16574 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
16576 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16577 for portability to K&R hosts. Fix typo: signed char is guaranteed
16578 only to 127, not to 128.
16579 * data/glr.c (yysigned_char): New type.
16580 * data/yacc.c (yysigned_char): Likewise.
16581 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16583 2002-10-13 Paul Eggert <eggert@twinsun.com>
16585 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16586 true due to limited range of data type" warning from GCC.
16588 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16589 by wrapping enum yytokentype's definition inside #ifndef
16590 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16592 2002-10-13 Akim Demaille <akim@epita.fr>
16594 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16595 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16597 2002-10-13 Akim Demaille <akim@epita.fr>
16599 * Makefile.maint: Update from Autoconf 2.54.
16600 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16602 2002-10-13 Akim Demaille <akim@epita.fr>
16604 * src/print.c (print_state): Separate the list of solved conflicts
16605 from the other items.
16606 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16608 2002-10-13 Akim Demaille <akim@epita.fr>
16610 Let nondeterministic skeletons be usable with deterministic
16613 With the patch, GAWK compiled by GCC without -O2 passes its test
16614 suite using a GLR parser driven by LALR tables. It fails with -O2
16615 because `struct stat' gives two different answers on my machine:
16616 88 (definition of an auto var) and later 96 (memset on this var).
16617 Hence the stack is badly corrumpted. The headers inclusion is to
16618 blame: if I move the awk.h inclusion before GLR's system header
16619 inclusion, the two struct stat have the same size.
16621 * src/tables.c (pack_table): Always create conflict_table.
16622 (token_actions): Always create conflict_list.
16623 * data/glr.c (YYFLAG): Remove, unused.
16625 2002-10-13 Akim Demaille <akim@epita.fr>
16627 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16629 (VALGRIND, GXX): New.
16630 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16631 * tests/bison.in: Run $PREBISON a pre-command.
16632 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16633 (maintainer-check-g++): New.
16634 * Makefile.am (maintainer-check): New.
16636 2002-10-13 Akim Demaille <akim@epita.fr>
16638 * data/glr.c: Formatting changes.
16639 Tweak some trace messages to match yacc.c's.
16641 2002-10-13 Akim Demaille <akim@epita.fr>
16643 GLR parsers sometimes raise parse errors instead of performing the
16645 Reported by Charles-Henry de Boysson.
16647 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
16648 check the length of the traces when %glr.
16649 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16651 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16653 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16654 (yyltype): Remove the yy prefix from the member names.
16655 (yytable): Complete its comment.
16656 (yygetLRActions): Map error action number from YYTABLE from
16658 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16659 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16660 not satisfying as we could compare an YYACTION computed from
16661 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16662 only value for error actions.
16663 (yyreportParseError): In verbose parse error messages, don't issue
16664 `error' in the list of expected tokens.
16665 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16666 next action to perform to match glr.c's decoding.
16667 (yytable): Complete its comment.
16669 2002-10-13 Paul Eggert <eggert@twinsun.com>
16671 Fix problem reported by Henrik Grubbstroem in
16672 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
16673 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16674 because the Bison parser reads the second action before reducing
16676 * src/scan-gram.l (rule_length): New static var.
16677 Use it to keep track of the rule length in the scanner, since
16678 we can't expect the parser to be in lock-step sync with the scanner.
16679 (handle_action_dollar, handle_action_at): Use this var.
16680 * tests/actions.at (Exotic Dollars): Test for the problem.
16682 2002-10-12 Paul Eggert <eggert@twinsun.com>
16684 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16685 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16686 Include <sys/time.h> when checking for clock_t and struct tms.
16687 Use same include order as source.
16688 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
16689 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
16691 * lib/timevar.c: Update copyright date and clarify comments.
16692 (get_time) [IN_GCC]: Keep the GCC version for reference.
16694 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16695 GCC version as of today, then merge Bison's changes.
16696 Change "GCC" to "Bison" in copyright notice. timevar.def's
16697 author is Akim, so change that too.
16699 * src/reader.c (grammar_current_rule_check):
16700 Don't worry about the default action if $$ is untyped.
16701 Prevents bogus warnings reported by Jim Gifford in
16702 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
16704 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16705 * data/glr.c, data/lalr1.cc, data/yacc.c:
16706 Output token definitions before the first part of user declarations.
16707 Fixes compatibility problem reported by Jim Gifford for kbd in
16708 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
16710 2002-10-11 Paul Eggert <eggert@twinsun.com>
16712 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16713 (yyparse): here. This undoes some of the 2002-07-25 change.
16714 Compatibility problem reported by Ralf S. Engelschall with
16715 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16717 2002-10-11 Akim Demaille <akim@epita.fr>
16719 * tests/regression.at Characters Escapes): New.
16720 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16722 Reported by Jan Nieuwenhuizen.
16724 2002-10-11 Akim Demaille <akim@epita.fr>
16728 2002-10-10 Paul Eggert <eggert@twinsun.com>
16730 Portability fixes for bitsets; this also avoids several GCC
16733 * lib/abitset.c: Include <stddef.h>, for offsetof.
16734 * lib/lbitset.c: Likewise.
16736 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16737 properly for vectors of objects. Do not assume that adding a
16738 header size to a multiple of a word size yields a value that is
16739 properly aligned for the whole union.
16740 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16742 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16743 unique names for structures.
16744 * lib/ebitset.c (ebitset_bytes): Likewise.
16745 * lib/lbitset.c (lbitset_bytes): Likewise.
16747 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16748 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16749 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16750 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16751 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16752 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16753 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16754 to improve the type-checking that GCC can do.
16755 * lib/bitset.c (bitset_op4_cmp): Likewise.
16756 * lib/bitset_stats.c (bitset_stats_count,
16757 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16758 bitset_stats_copy, bitset_stats_disjoint_p,
16759 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16760 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16761 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16762 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16763 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16764 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16765 bitset_stats_or_and_cmp): Likewise.
16766 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16767 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16768 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16769 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16771 * lib/abitset.h: Include bitset.h, not bbitset.h.
16772 * lib/ebitset.h: Likewise.
16773 * lib/lbitset.h: Likewise.
16775 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16776 All instances of parameters of type enum bitset_opts are now of
16777 type enum_bitset_opts, to conform to the C Standard, and similarly
16778 for enum_bitset_type.
16779 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16780 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16782 Do not use "struct bitset_struct" to mean different things in
16783 different modules. Not only is this confusing, it violates
16784 the C Standard, which requires that structure types in different
16785 modules must be compatible if one is to be passed to the other.
16786 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16787 All instances of "struct bitset_struct *" replaced with "bitset".
16788 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16789 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16790 struct lbitset_struct, struct bitset_stats_struct): New types.
16791 All uses of struct bitset_struct changed to union bitset_union,
16793 * lib/abitset.c (struct abitset_struct, abitset,
16794 struct bitset_struct): Remove.
16795 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16796 struct bitset_struct): Remove.
16797 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16798 bitset_struct): Remove.
16799 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16802 Do not call a function of type T using a call that assumes the
16803 function is of a different type U. Standard C requires that a
16804 function must be called with a type that is compatible with its
16806 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16808 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16810 * lib/ebitset.c (PFV): Remove.
16811 * lib/lbitset.c (PFV): Likewise.
16812 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16813 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16815 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16816 (ebitset_vtable): Use them.
16817 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16818 lbitset_xor): New functions.
16819 (lbitset_vtable): Use them.
16821 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16824 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16826 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16827 Use offsetof, for simplicity.
16829 2002-10-06 Paul Eggert <eggert@twinsun.com>
16831 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16832 the same width as int. This reapplies a hunk of the 2002-08-12 patch
16833 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
16834 which was inadvertently undone by the 2002-09-30 patch.
16835 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16836 the same width as int.
16838 2002-10-04 Paul Eggert <eggert@twinsun.com>
16842 * configure.ac (AC_INIT), NEWS: Increment version number.
16844 * doc/bison.texinfo: Minor spelling, grammar, and white space
16846 (Symbols): Mention that any negative value returned from yylex
16847 signifies end-of-input. Warn about negative chars. Mention
16848 the portable Standard C character set.
16850 The GNU coding standard says CFLAGS and YFLAGS are reserved
16851 for the installer to set.
16852 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16853 * src/Makefile.am (AM_CFLAGS): Likewise.
16854 (AM_YFLAGS): Renamed from YFLAGS.
16856 Fix some MAX and MIN problems.
16857 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16858 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16859 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16860 * src/reader.c (reader): Use it.
16862 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16863 POSIX 1003.1-2001 has removed fgrep.
16865 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16867 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16868 interpreted as signed.
16869 * lib/ebitset.c (ebitset_list): Fix bug.
16871 2002-10-01 Paul Eggert <eggert@twinsun.com>
16873 More fixes for 64-bit hosts and large bitsets.
16875 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16876 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16877 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16878 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16879 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16880 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16881 bitset_count_): Likewise.
16882 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16883 bitset_first, bitset_last): Likewise.
16884 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16885 bitset_stats_list_reverse, bitset_stats_size,
16886 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16888 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16889 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16890 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16891 bitsetv_reflexive_transitive_closure): Likewise.
16892 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16893 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16895 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16898 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16899 Use size_t, not unsigned int, to count bytes.
16900 * lib/abitset.h (abitset_bytes): Likewise.
16901 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16903 * lib/bitset.h (bitset_bytes): Likewise.
16904 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16905 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16906 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16907 * lib/ebitset.c (ebitset_bytes): Likewise.
16908 * lib/ebitset.h (ebitset_bytes): Likewise.
16909 * lib/lbitset.c (lbitset_bytes): Likewise.
16910 * lib/lbitset.h (lbitset_bytes): Likewise.
16912 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16913 abitset_subset_p, abitset_disjoint_p, abitset_and,
16914 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16915 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16916 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16917 abitset_or_and, abitset_or_and_cmp):
16918 Use bitset_windex instead of unsigned int.
16919 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16920 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16921 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16922 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16924 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
16926 * lib/bitset.c (bitset_print):
16927 Use proper printf formats for widths of integer types.
16928 * lib/bitset_stats.c (bitset_percent_histogram_print,
16929 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16930 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16931 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16932 * lib/lbitset.c (lbitset_bytes): Likewise.
16934 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16935 BITSET_SIZE_MAX): New macros.
16936 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16937 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16938 to BITSET_WINDEX_MAX.
16940 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16941 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16942 since we now return the bitset_bindex type (not int).
16944 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16945 when computing sizes.
16946 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16948 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16949 and avoid cast to unsigned.
16951 2002-09-30 Akim Demaille <akim@epita.fr>
16953 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16954 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16955 Updates from Michael Hayes.
16957 2002-09-30 Art Haas <ahaas@neosoft.com>
16959 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16961 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16964 2002-09-27 Akim Demaille <akim@epita.fr>
16968 2002-09-27 Akim Demaille <akim@epita.fr>
16970 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16971 (Because of AC_LIBSOURCE).
16973 2002-09-27 Akim Demaille <akim@epita.fr>
16975 Playing with Autoscan.
16977 * configure.ac: Remove the old LIBOBJ tweaks.
16978 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16979 * lib/strrchr.c: New.
16980 * lib/strtol.c: New, from the Coreutils 4.5.1.
16982 2002-09-27 Akim Demaille <akim@epita.fr>
16984 Playing with Autoscan.
16986 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16987 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16988 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16989 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16992 2002-09-24 Akim Demaille <akim@epita.fr>
16994 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16995 (Frequently Asked Questions, Parser Stack Overflow): New.
16997 2002-09-13 Akim Demaille <akim@epita.fr>
16999 Playing with autoscan.
17001 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17002 * src/files.c (skeleton_find): Remove, unused.
17003 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17004 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17006 2002-09-13 Akim Demaille <akim@epita.fr>
17008 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17009 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17011 2002-09-13 Akim Demaille <akim@epita.fr>
17013 * configure.ac: Require 2.54.
17014 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17015 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17016 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17017 Remove, provided by Autoconf macros.
17019 2002-09-12 Akim Demaille <akim@epita.fr>
17021 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17023 2002-09-12 Akim Demaille <akim@epita.fr>
17025 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17026 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17027 Reported by Martin Mokrejs.
17029 2002-09-10 Akim Demaille <akim@epita.fr>
17031 * src/parse-gram.y: Associate a human readable string to each
17033 * tests/regression.at (Invalid inputs): Adjust.
17035 2002-09-10 Gary V. Vaughan <gary@gnu.org>
17037 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17038 with an Autoconf-2.5x style configure.ac.
17040 2002-09-06 Paul Eggert <eggert@twinsun.com>
17042 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17043 exception applies only to yacc.c. This is a modification of a
17044 patch originally suggested by Akim Demaille.
17046 2002-09-06 Akim Demaille <akim@epita.fr>
17048 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17050 * data/yacc.c: here.
17052 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17054 (b4_ltype): Default to yy::Location from location.hh.
17056 2002-09-04 Jim Meyering <jim@meyering.net>
17058 * data/yacc.c: Guard the declaration of yytoknum also with
17059 `#ifdef YYPRINT', so it is declared only when used.
17061 2002-09-04 Akim Demaille <akim@epita.fr>
17063 * configure.in: Rename as...
17064 * configure.ac: this.
17067 2002-09-04 Akim Demaille <akim@epita.fr>
17069 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
17070 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
17071 translate maintainer only messages.
17073 2002-08-12 Paul Eggert <eggert@twinsun.com>
17077 * Makefile.am (SUBDIRS): Remove intl.
17078 (DISTCLEANFILES): Remove.
17079 * NEWS: Mention that GNU M4 is now required. Clarify what is
17080 meant by "larger grammars". Mention the pt_BR translation.
17081 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
17082 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
17083 Bump version from 0.11.2 to 0.11.5.
17084 (BISON_PREREQ_STAGE): Remove.
17085 (AM_GNU_GETTEXT): Use external gettext.
17086 (AC_OUTPUT): Remove intl/Makefile.
17088 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17090 * data/glr.c: Include string.h, for strlen.
17091 (yyreportParseError): Use size_t for yysize.
17092 (yy_yypstack): No longer nested inside yypstates, as nested
17093 functions are not portable. Do not assume size_t is the
17095 (yypstates): Do not assume that ptrdiff_t is the same width
17096 as int, and similarly for yyposn and YYINDEX.
17098 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17100 * lib/Makefile.am (INCLUDES): Do not include from the intl
17101 directory, which has been removed.
17102 * src/Makefile.am (INCLUDES): Likewise.
17104 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17105 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17108 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17109 * tests/Makefile.am (EXTRA_DIST): Likewise.
17111 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17112 Do not assume that bitset_windex is the same width as unsigned.
17114 * lib/abitset.c (abitset_unused_clear): Do not assume that
17115 bitset_word is the same width as int.
17116 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17117 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17118 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17119 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17120 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17122 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17123 portability to one's complement hosts!).
17124 * lib/ebitset.c (ebitset_op1): Likewise.
17125 * lib/lbitset.c (lbitset_op1): Likewise.
17127 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17128 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17129 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17130 Sync with fileutils.
17131 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17132 lib/gettext.h: Sync with diffutils.
17134 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17135 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17137 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17138 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17141 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17142 size_t; the old version tried to do this but casted improperly.
17143 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17144 (bitset_test): Now returns int, not unsigned long.
17146 * lib/bitset_stats.c: Include "gettext.h".
17148 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17149 name locals "index", as it generates unnecessary warnings on some
17150 hosts that have an "index" function.
17152 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17153 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17154 they need translation.
17155 * src/LR0.c (state_list_append, new_itemsets, get_state,
17156 append_states, generate_states): Likewise.
17157 * src/assoc.c (assoc_to_string): Likewise.
17158 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17159 * src/gram.c (grammar_dump): Likewise.
17160 * src/injections.c (injections_compute): Likewise.
17161 * src/lalr.c (lookaheads_print): Likewise.
17162 * src/relation.c (relation_transpose): Likewise.
17163 * src/scan-gram.l: Likewise.
17164 * src/tables.c (table_grow, pack_vector): Likewise.
17166 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17167 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17168 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17169 * m4/mbstate_t.m4: Sync with fileutils.
17170 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17172 * po/LINGUAS: Add pt_BR.
17173 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17174 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17176 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17178 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17180 * src/complain.c (strerror_r): Remove decl; not needed.
17181 (strerror): Use same pattern as ../lib/error.c.
17183 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17185 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17187 * src/main.c (main): Cast result of bindtextdomain and textdomain
17188 to void, to avoid a GCC warning when --disable-nls is in effect.
17190 * src/scan-gram.l: Use strings rather than escapes when possible,
17191 to minimize the number of warnings from xgettext.
17192 (handle_action_dollar, handle_action_at): Don't use isdigit,
17193 as it mishandles negative chars and it may not work as expected
17194 outside the C locale.
17196 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17197 this is a GCC extension and is not portable to other compilers.
17199 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17200 Do not include <ctype.h>; no longer needed.
17201 Do not include <malloc.h>; no longer needed (and generates
17202 warnings on OpenBSD 3.0).
17204 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17207 * tests/regression.at: Do not use 'cc -c input.c -o input';
17208 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17210 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17211 exit status as failure, not just exit status 1. Sun C exits
17212 with status 2 sometimes.
17214 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17215 Use it for the two large tests.
17217 2002-08-02 Akim Demaille <akim@epita.fr>
17219 * src/conflicts.c (conflicts_output): Don't output rules never
17220 reduced here, since anyway that computation doesn't work.
17221 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17222 (rule_useless_p, rule_never_reduced_p): New.
17223 (grammar_rules_partial_print): Use a filter instead of a range.
17224 Display the title only if needed.
17225 (grammar_rules_print): Adjust.
17226 (grammar_rules_never_reduced_report): New.
17227 * src/tables.c (action_row): Move the computation of rules never
17229 (token_actions): here.
17230 * src/main.c (main): Make the parser before making the report, so
17231 that rules never reduced are computed.
17232 Call grammar_rules_never_reduced_report.
17233 * src/print.c (print_results): Report rules never reduced.
17234 * tests/conflicts.at, tests/reduce.at: Adjust.
17236 2002-08-01 Akim Demaille <akim@epita.fr>
17238 Instead of attaching lookaheads and duplicating the rules being
17239 reduced by a state, attach the lookaheads to the reductions.
17241 * src/state.h (state_t): Remove the `lookaheads',
17242 `lookaheads_rule' member.
17243 (reductions_t): Add a `lookaheads' member.
17244 Use a regular array for the `rules'.
17245 * src/state.c (reductions_new): Initialize the lookaheads member
17247 (state_rule_lookaheads_print): Adjust.
17248 * src/state.h, src/state.c (state_reductions_find): New.
17249 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17250 (count_rr_conflicts): Adjust.
17251 * src/lalr.c (LArule): Remove.
17252 (add_lookback_edge): Adjust.
17253 (state_lookaheads_count): New.
17254 (states_lookaheads_initialize): Merge into...
17255 (initialize_LA): this.
17256 (lalr_free): Adjust.
17257 * src/main.c (main): Don't free nullable and derives too early: it
17258 is used by --verbose.
17259 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17261 2002-08-01 Akim Demaille <akim@epita.fr>
17263 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17265 (set_derives, free_derives): Rename as...
17266 (derives_compute, derives_free): this.
17267 Adjust all dependencies.
17268 * src/nullable.c (set_nullable, free_nullable): Rename as...
17269 (nullable_compute, nullable_free): these.
17270 (rule_list_t): Store rule_t *, not rule_number_t.
17271 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17272 pointers, instead of their numbers.
17273 * src/main.c (main): Call nullable_free, and derives_free earlier,
17274 as they were lo longer used.
17276 2002-08-01 Akim Demaille <akim@epita.fr>
17278 * lib/timevar.c (get_time): Include children time.
17279 * src/lalr.h (LA, LArule): Don't export them: used with the
17281 * src/lalr.c (LA, LArule): Static.
17282 * src/lalr.h, src/lalr.c (lalr_free): New.
17283 * src/main.c (main): Call it.
17284 * src/tables.c (pack_vector): Check whether loc is >= to the
17286 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17287 (tables_generate): do it, since that's also it which allocates
17289 Don't free LA and LArule, main does.
17291 2002-07-31 Akim Demaille <akim@epita.fr>
17293 Separate parser tables computation and output.
17295 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17296 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17297 (yydefgoto, yydefact, high): Move to...
17298 * src/tables.h, src/tables.c: here.
17299 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17300 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17301 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17302 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17303 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17304 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17305 (action_row, save_row, token_actions, save_column, default_goto)
17306 (goto_actions, sort_actions, matching_state, pack_vector)
17307 (table_ninf_remap, pack_table, prepare_actions): Move to...
17308 * src/tables.c: here.
17309 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17310 * src/output.c (token_actions, output_base, output_conflicts)
17311 (output_check): Merge into...
17312 (prepare_actions): this.
17313 (actions_output): Rename as...
17314 (user_actions_output): this.
17315 * src/main.c (main): Call tables_generate and tables_free.
17317 2002-07-31 Akim Demaille <akim@epita.fr>
17319 Steal GCC's --time-report support.
17321 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17322 stolen/adjusted from GCC.
17323 * m4/stage.m4: Remove time related checks.
17324 * m4/timevar.m4: New.
17325 * configure.in: Adjust.
17326 * src/system.h: Adjust to using timevar.h.
17327 * src/getargs.h, src/getargs.c: Support trace_time for
17329 * src/main.c (stage): Remove.
17330 (main): Replace `stage' invocations with timevar calls.
17331 * src/output.c: Insert pertinent timevar calls.
17333 2002-07-31 Akim Demaille <akim@epita.fr>
17335 Let --trace have arguments.
17337 * src/getargs.h (enum trace_e): New.
17338 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17339 (long_options, short_options): --trace/-T takes an optional
17341 Change all the uses of trace_flag to reflect the new flags.
17342 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17344 Strengthen `stage' portability.
17346 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17347 * configure.in: Use it.
17348 Don't check for malloc.h and sys/times.h.
17349 * src/system.h: Include them when appropriate.
17350 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17351 times and struct tms are available.
17353 2002-07-30 Akim Demaille <akim@epita.fr>
17355 In verbose parse error message, don't report `error' as an
17357 * tests/actions.at (Printers and Destructors): Adjust.
17358 * tests/calc.at (Calculator $1): Adjust.
17359 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17360 error message, do not report the parser accepts the error token in
17363 2002-07-30 Akim Demaille <akim@epita.fr>
17365 Normalize conflict related messages.
17367 * src/complain.h, src/complain.c (warn, complain): New.
17368 * src/conflicts.c (conflicts_print): Use them.
17369 (conflict_report_yacc): New, extracted from...
17370 (conflicts_print): here.
17371 * tests/conflicts.at, tests/existing.at: Adjust.
17373 2002-07-30 Akim Demaille <akim@epita.fr>
17375 Report rules which are never reduced by the parser: those hidden
17378 * src/LR0.c (save_reductions): Don't make the final state too
17379 different: save its reduction (accept) instead of having a state
17380 without any action (no shift or goto, no reduce).
17381 Note: the final state is now a ``regular'' state, i.e., the
17382 parsers now contain `reduce 0' as default reduction.
17383 Nevertheless, since they decide to `accept' when yystate =
17384 final_state, they still will not reduce rule 0.
17385 * src/print.c (print_actions, print_reduction): Adjust.
17386 * src/output.c (action_row): Track reduced rules.
17387 (token_actions): Report rules never reduced.
17388 * tests/conflicts.at, tests/regression.at: Adjust.
17390 2002-07-30 Akim Demaille <akim@epita.fr>
17392 `stage' was accidently included in a previous patch.
17393 Initiate its autoconfiscation.
17395 * configure.in: Look for malloc.h and sys/times.h.
17396 * src/main.c (stage): Adjust.
17397 Report only when trace_flag.
17399 2002-07-29 Akim Demaille <akim@epita.fr>
17401 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17403 (errs_t): symbol_t*, not symbol_number_t.
17404 (reductions_t): rule_t*, not rule_number_t.
17405 (FOR_EACH_SHIFT): New.
17406 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17407 * src/print.c, src/print_graph.c: Adjust.
17409 2002-07-29 Akim Demaille <akim@epita.fr>
17411 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17413 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17414 (endtoken, accept): these.
17415 * src/reader.c (reader): Set endtoken's default tag to "$end".
17416 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17417 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17420 2002-07-29 Akim Demaille <akim@epita.fr>
17422 * src/reduce.c (reduce_grammar): When the language is empty,
17423 complain about the start symbol, not the axiom.
17425 * tests/reduce.at (Empty Language): New.
17427 2002-07-26 Akim Demaille <akim@epita.fr>
17429 * src/reader.h, src/reader.c (gram_error): ... can't get
17430 yycontrol without making too strong assumptions on the parser
17432 * src/output.c (prepare_tokens): Use the real 0th value of
17433 token_translations instead of `0'.
17434 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17436 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17437 for the time being: %locations ought to provide it to yyerror.
17439 2002-07-25 Akim Demaille <akim@epita.fr>
17441 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17442 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17443 * tests/regression.at (Web2c Actions): Adjust.
17445 2002-07-25 Akim Demaille <akim@epita.fr>
17447 Stop storing rules from 1 to nrules + 1.
17449 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17450 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17451 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17452 Iterate from 0 to nrules.
17453 Use rule_number_as_item_number and item_number_as_rule_number.
17454 Adjust to `derive' now containing possibly 0.
17455 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17456 Handle the `- 1' part in rule numbers from/to item numbers.
17457 * src/conflicts.c (log_resolution): Fix the message which reversed
17459 * src/output.c (action_row): Initialize default_rule to -1.
17460 (token_actions): Adjust.
17461 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17463 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17465 2002-07-25 Akim Demaille <akim@epita.fr>
17467 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17468 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17469 (b4_c_knr_arg_decl): New.
17470 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17471 yyreport_parse_error.
17473 2002-07-25 Akim Demaille <akim@epita.fr>
17475 * data/yacc.c (yyreport_parse_error): New, extracted from...
17477 (yydestruct, yysymprint): Move above yyparse.
17480 2002-07-25 Akim Demaille <akim@epita.fr>
17482 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17484 (b4_sint_type, b4_uint_type): these.
17485 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17486 * tests/regression.at (Web2c Actions): Adjust.
17488 2002-07-25 Akim Demaille <akim@epita.fr>
17490 * src/gram.h (TIEM_NUMBER_MAX): New.
17491 (item_number_of_rule_number, rule_number_of_item_number): Rename
17493 (rule_number_as_item_number, item_number_as_rule_number): these.
17494 Adjust dependencies.
17495 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17496 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17497 (symbol_number_to_vector_number): New.
17498 (order): Of vector_number_t* type.
17499 (base_t, BASE_MAX, BASE_MIN): New.
17500 (froms, tos, width, pos, check): Of base_t type.
17501 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17502 (actrow): Of action_number_t type.
17503 (conflrow): Of unsigned int type.
17504 (table_ninf, base_ninf): New.
17505 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17506 (muscle_insert_int_table, muscle_insert_base_table)
17507 (muscle_insert_rule_number_table): New.
17508 (prepare_tokens): Output `toknum' as int_table.
17509 (action_row): Returns a rule_number_t.
17510 Use ACTION_MIN, not SHRT_MIN.
17511 (token_actions): yydefact is rule_number_t*.
17512 (table_ninf_remap): New.
17513 (pack_table): Use it for `base' and `table'.
17514 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17516 (YYPACT_NINF, YYTABLE_NINF): these.
17517 (yypact, yytable): Compute their types instead of hard-coded
17519 * tests/regression.at (Web2c Actions): Adjust.
17521 2002-07-19 Akim Demaille <akim@epita.fr>
17523 * src/scan-gram.l (id): Can start with an underscore.
17525 2002-07-16 Akim Demaille <akim@epita.fr>
17527 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17528 Adjust all former `associativity' dependencies.
17529 * src/symtab.c (symbol_new): Default associativity is `undef', not
17531 (symbol_check_alias_consistence): Adjust.
17533 2002-07-09 Akim Demaille <akim@epita.fr>
17535 * doc/bison.texinfo: Properly set the ``header'' part.
17536 Use @dircategory ``GNU programming tools'' as per Texinfo's
17540 2002-07-09 Akim Demaille <akim@epita.fr>
17542 * lib/quotearg.h: Protect against multiple inclusions.
17543 * src/location.h (location_t): Add a `file' member.
17544 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17545 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17546 `error_one_per_line' support.
17548 2002-07-09 Akim Demaille <akim@epita.fr>
17550 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17551 * src/reader.c (lineno): Remove.
17552 Adjust all dependencies.
17553 (get_merge_function): Take a location and use complain_at.
17554 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17555 * tests/regression.at (Invalid inputs, Mixing %token styles):
17558 2002-07-09 Akim Demaille <akim@epita.fr>
17560 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17561 recovery rule, and forbid extensions when --yacc.
17562 (gram_error): Use complain_at.
17563 * src/reader.c (reader): Exit if there were parse errors.
17565 2002-07-09 Akim Demaille <akim@epita.fr>
17567 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17568 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17569 Reported by R Blake <blakers@mac.com>.
17571 2002-07-09 Akim Demaille <akim@epita.fr>
17573 * data/yacc.c: Output the copyright notive in the header.
17575 2002-07-03 Akim Demaille <akim@epita.fr>
17577 * src/output.c (froms, tos): Are state_number_t.
17578 (save_column): sp, sp1, and sp2 are state_number_t.
17579 (prepare): Rename `final' as `final_state_number', `nnts' as
17580 `nterms_number', `nrules' as `rules_number', `nstates' as
17581 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17583 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17584 * data/lalr1.cc (nsym_): Remove, unused.
17586 2002-07-03 Akim Demaille <akim@epita.fr>
17588 * src/lalr.h, src/lalr.c (goto_number_t): New.
17589 * src/lalr.c (goto_list_t): New.
17591 * src/nullable.c (rule_list_t): New.
17593 * src/types.h: Remove.
17595 2002-07-03 Akim Demaille <akim@epita.fr>
17597 * src/closure.c (print_fderives): Use rule_rhs_print.
17598 * src/derives.c (print_derives): Use rule_rhs_print.
17599 (rule_list_t): New, replaces `shorts'.
17600 (set_derives): Add comments.
17601 * tests/sets.at (Nullable, Firsts): Adjust.
17603 2002-07-03 Akim Demaille <akim@epita.fr>
17605 * src/output.c (prepare_actions): Free `tally' and `width'.
17606 (prepare_actions): Allocate and free `order'.
17607 * src/symtab.c (symbols_free): Free `symbols'.
17608 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17609 * src/output.c (m4_invoke): Move to...
17610 * src/scan-skel.l: here.
17611 (<<EOF>>): Close yyout, and free its name.
17613 2002-07-03 Akim Demaille <akim@epita.fr>
17615 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17617 * src/LR0.c (new_state): Merge into...
17618 (state_list_append): this.
17619 (new_states): Merge into...
17620 (generate_states): here.
17621 (set_states): Don't ensure a proper `errs' state member here, do it...
17622 * src/conflicts.c (conflicts_solve): here.
17623 * src/state.h, src/state.c: Comment changes.
17624 (state_t): Rename member `shifts' as `transitions'.
17625 Adjust all dependencies.
17626 (errs_new): For consistency, also take the values as argument.
17627 (errs_dup): Remove.
17628 (state_errs_set): New.
17629 (state_reductions_set, state_transitions_set): Assert that no
17630 previous value was assigned.
17632 (states_free): Use it.
17633 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17634 temporary storage: use `errs' and `nerrs' as elsewhere.
17635 (set_conflicts): Allocate and free this `errs'.
17637 2002-07-02 Akim Demaille <akim@epita.fr>
17639 * lib/libiberty.h: New.
17640 * lib: Update the bitset implementation from upstream.
17641 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17642 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17643 * src/main.c: Adjust bitset stats calls.
17645 2002-07-01 Paul Eggert <eggert@twinsun.com>
17647 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17648 char, so that negative chars don't collide with $.
17650 2002-06-30 Akim Demaille <akim@epita.fr>
17652 Have the GLR tests be `warning' checked, and fix the warnings.
17654 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17655 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17656 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17657 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17658 (yyaddDeferredAction): static.
17659 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17660 (yyreportParseError): yyprefix is const.
17661 yytokenp is used only when verbose.
17662 (yy__GNUC__): Replace with __GNUC__.
17663 (yypdumpstack): yyi is size_t.
17664 (yypreference): Un-yy local variables and arguments, to avoid
17665 clashes with `yyr1'. Anyway, we are not in the user name space.
17666 (yytname_size): be an int, as is compared with ints.
17667 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17669 * tests/cxx-gram.at: Use quotation to protect $1.
17670 Use AT_COMPILE to enable warnings hunts.
17671 Prototype yylex and yyerror.
17673 Include `string.h', not `strings.h'.
17674 Produce and prototype stmtMerge only when used.
17675 yylex takes a location.
17677 2002-06-30 Akim Demaille <akim@epita.fr>
17679 We spend a lot of time in quotearg, in particular when --verbose.
17681 * src/symtab.c (symbol_get): Store a quoted version of the key.
17682 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17683 Adjust all callers.
17685 2002-06-30 Akim Demaille <akim@epita.fr>
17687 * src/state.h (reductions_t): Rename member `nreds' as num.
17688 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17689 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17691 2002-06-30 Akim Demaille <akim@epita.fr>
17693 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17694 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17695 (shifts_to): Rename as...
17696 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17697 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17698 (TRANSITION_IS_DISABLED, transitions_to): these.
17700 2002-06-30 Akim Demaille <akim@epita.fr>
17702 * src/print.c (print_shifts, print_gotos): Merge into...
17703 (print_transitions): this.
17704 (print_transitions, print_errs, print_reductions): Align the
17705 lookaheads columns.
17706 (print_core, print_transitions, print_errs, print_state,
17707 print_grammar): Output empty lines separator before, not after.
17708 (state_default_rule_compute): Rename as...
17709 (state_default_rule): this.
17710 * tests/conflicts.at (Defaulted Conflicted Reduction),
17711 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17712 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17714 2002-06-30 Akim Demaille <akim@epita.fr>
17716 Display items as we display rules.
17718 * src/gram.h, src/gram.c (rule_lhs_print): New.
17719 * src/gram.c (grammar_rules_partial_print): Use it.
17720 * src/print.c (print_core): Likewise.
17721 * tests/conflicts.at (Defaulted Conflicted Reduction),
17722 (Unresolved SR Conflicts): Adjust.
17723 (Unresolved SR Conflicts): Adjust and rename as...
17724 (Resolved SR Conflicts): this, as was meant.
17725 * tests/regression.at (Web2c Report): Adjust.
17727 2002-06-30 Akim Demaille <akim@epita.fr>
17729 * src/print.c (state_default_rule_compute): New, extracted from...
17730 (print_reductions): here.
17731 Pessimize, but clarify the code.
17732 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17734 2002-06-30 Akim Demaille <akim@epita.fr>
17736 * src/output.c (action_row): Let default_rule be always a rule
17739 2002-06-30 Akim Demaille <akim@epita.fr>
17741 * src/closure.c (print_firsts, print_fderives, closure):
17742 Use BITSET_EXECUTE.
17743 * src/lalr.c (lookaheads_print): Likewise.
17744 * src/state.c (state_rule_lookaheads_print): Likewise.
17745 * src/print_graph.c (print_core): Likewise.
17746 * src/print.c (print_reductions): Likewise.
17747 * src/output.c (action_row): Likewise.
17748 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17750 2002-06-30 Akim Demaille <akim@epita.fr>
17752 * src/print_graph.c: Use report_flag.
17754 2002-06-30 Akim Demaille <akim@epita.fr>
17756 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17758 * src/relation.h, src/relation.c (traverse, relation_digraph)
17759 (relation_print, relation_transpose): New.
17761 2002-06-30 Akim Demaille <akim@epita.fr>
17763 * src/state.h, src/state.c (shifts_to): New.
17764 * src/lalr.c (build_relations): Use it.
17766 2002-06-30 Akim Demaille <akim@epita.fr>
17768 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17769 (item_number_of_rule_number, rule_number_of_item_number): New.
17770 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17771 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17772 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17773 Propagate their use.
17774 Much remains to be done, in particular wrt `shorts' from types.h.
17776 2002-06-30 Akim Demaille <akim@epita.fr>
17778 * src/symtab.c (symbol_new): Initialize the `printer' member.
17780 2002-06-30 Akim Demaille <akim@epita.fr>
17782 * src/LR0.c (save_reductions): Remove, replaced by...
17783 * src/state.h, src/state.c (state_reductions_set): New.
17784 (reductions, errs): Rename as...
17785 (reductions_t, errs_t): these.
17786 Adjust all dependencies.
17788 2002-06-30 Akim Demaille <akim@epita.fr>
17790 * src/LR0.c (state_list_t, state_list_append): New.
17791 (first_state, last_state): Now symbol_list_t.
17792 (this_state): Remove.
17793 (new_itemsets, append_states, save_reductions): Take a state_t as
17795 (set_states, generate_states): Adjust.
17796 (save_shifts): Remove, replaced by...
17797 * src/state.h, src/state.c (state_shifts_set): New.
17798 (shifts): Rename as...
17800 Adjust all dependencies.
17801 * src/state.h (state_t): Remove the `next' member.
17803 2002-06-30 Akim Demaille <akim@epita.fr>
17805 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17808 2002-06-30 Akim Demaille <akim@epita.fr>
17810 Use hash.h for the state hash table.
17812 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17813 (allocate_storage): Use state_hash_new.
17814 (free_storage): Use state_hash_free.
17815 (new_state, get_state): Adjust.
17816 * src/lalr.h, src/lalr.c (states): Move to...
17817 * src/states.h (state_t): Remove the `link' member, no longer
17819 * src/states.h, src/states.c: here.
17820 (state_hash_new, state_hash_free, state_hash_lookup)
17821 (state_hash_insert, states_free): New.
17822 * src/states.c (state_table, state_compare, state_hash): New.
17823 * src/output.c (output_actions): Do not free states now, since we
17824 still need to know the final_state number in `prepare', called
17825 afterwards. Do it...
17826 * src/main.c (main): here: call states_free after `output'.
17828 2002-06-30 Akim Demaille <akim@epita.fr>
17830 * src/state.h, src/state.c (state_new): New, extracted from...
17831 * src/LR0.c (new_state): here.
17832 * src/state.h (STATE_ALLOC): Move to...
17833 * src/state.c: here.
17834 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17835 * src/state.h, src/state.c: here.
17837 2002-06-30 Akim Demaille <akim@epita.fr>
17839 * src/reader.c (gensym): Rename as...
17840 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17841 (getsym): Rename as...
17842 (symbol_get): this.
17844 2002-06-30 Akim Demaille <akim@epita.fr>
17846 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17847 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17848 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17849 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17851 2002-06-30 Akim Demaille <akim@epita.fr>
17853 Make the test suite pass with warnings checked.
17855 * tests/actions.at (Printers and Destructors): Improve.
17856 Avoid unsigned vs. signed issues.
17857 * tests/calc.at: Don't exercise the scanner here, do it...
17858 * tests/input.at (Torturing the Scanner): here.
17860 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17862 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
17863 reorganize first lines parallel to yacc.c.
17865 2002-06-28 Akim Demaille <akim@epita.fr>
17867 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17868 (b4_token_enum, b4_token_defines): New, factored from...
17869 * data/lalr1.cc, data/yacc.c, glr.c: here.
17871 2002-06-28 Akim Demaille <akim@epita.fr>
17873 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17875 * src/output.c (merger_output): static.
17877 2002-06-28 Akim Demaille <akim@epita.fr>
17879 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
17880 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17882 * src/output.c (save_row): Initialize all the variables to pacify GCC.
17884 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17886 Accumulated changelog for new GLR parsing features.
17888 * src/conflicts.c (count_total_conflicts): Change name to
17889 conflicts_total_count.
17890 * src/conflicts.h: Ditto.
17891 * src/output.c (token_actions): Use the new name.
17892 (output_conflicts): Change conflp => conflict_list_heads, and
17893 confl => conflict_list for better readability.
17894 * data/glr.c: Use the new names.
17895 * NEWS: Add self to GLR announcement.
17897 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17899 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17902 * data/bison.glr: Change name to glr.c
17903 * data/glr.c: Renamed from bison.glr.
17904 * data/Makefile.am: Add glr.c
17908 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
17909 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
17911 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17913 * data/bison.glr: Be sure to restore the
17914 current #line when returning to the skeleton contents after having
17915 exposed the input file's #line.
17917 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17919 * data/bison.glr: Bring up to date with changes to bison.simple.
17921 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17923 * data/bison.glr: Correct definitions that use b4_prefix.
17924 Various reformatting.
17925 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17926 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17927 yytokenp argument; now part of stack.
17928 (yychar): Define to behave as documented.
17929 (yyclearin): Ditto.
17931 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17933 * src/reader.h: Add declaration for free_merger_functions.
17935 * src/reader.c (merge_functions): New variable.
17936 (get_merge_function): New function.
17937 (free_merger_functions): New function.
17938 (readgram): Check for %prec that is not followed by a symbol.
17939 Handle %dprec and %merge declarations.
17940 (packgram): Initialize dprec and merger fields in rules array.
17942 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17943 conflict_list_cnt, conflict_list_free): New variables.
17944 (table_grow): Also grow conflict_table.
17945 (prepare_rules): Output dprec and merger tables.
17946 (conflict_row): New function.
17947 (action_row): Output conflict lists for GLR parser. Don't use
17948 default reduction in conflicted states for GLR parser so that there
17949 are spaces for the conflict lists.
17950 (save_row): Also save conflict information.
17951 (token_actions): Allocate conflict list.
17952 (merger_output): New function.
17953 (pack_vector): Pack conflict table, too.
17954 (output_conflicts): New function to output yyconflp and yyconfl.
17955 (output_check): Allocate conflict_tos.
17956 (output_actions): Output conflict tables, also.
17957 (output_skeleton): Output b4_mergers definition.
17958 (prepare): Output b4_max_rhs_length definition.
17959 Use 'bison.glr' as default skeleton for GLR parsers.
17961 * src/gram.c (glr_parser): New flag.
17962 (grammar_free): Call free_merger_functions.
17964 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17965 all pairs of conflicting reductions, rather than just all tokens
17966 causing conflicts. Needed to size conflict tables.
17967 (conflicts_output): Modify call to count_rr_conflicts for new
17969 (conflicts_print): Ditto.
17970 (count_total_conflicts): New function.
17972 * src/reader.h (merger_list): New type.
17973 (merge_functions): New variable.
17975 * src/lex.h (tok_dprec, tok_merge): New token types.
17977 * src/gram.h (rule_s): Add dprec and merger fields.
17978 (glr_parser): New flag.
17980 * src/conflicts.h (count_total_conflicts): New function.
17982 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17984 * doc/bison.texinfo (Generalized LR Parsing): New section.
17985 (GLR Parsers): New section.
17986 (Language and Grammar): Mention GLR parsing.
17987 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17988 Correct typo ("tge" -> "the").
17990 * data/bison.glr: New skeleton for GLR parsing.
17992 * tests/cxx-gram.at: New tests for GLR parsing.
17994 * tests/testsuite.at: Include cxx-gram.at.
17996 * tests/Makefile.am: Add cxx-gram.at.
17998 * src/parse-gram.y:
18000 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18002 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
18004 2002-06-27 Akim Demaille <akim@epita.fr>
18006 * src/options.h, src/options.c: Remove.
18007 * src/getargs.c (short_options, long_options): New.
18009 2002-06-27 Akim Demaille <akim@epita.fr>
18011 * data/bison.simple, data/bison.c++: Rename as...
18012 * data/yacc.c, data/lalr1.cc: these.
18013 * doc/bison.texinfo (Environment Variables): Remove.
18015 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18017 * src/getargs.c (report_argmatch): Initialize strtok().
18019 2002-06-20 Akim Demaille <akim@epita.fr>
18021 * data/bison.simple (b4_symbol_actions): New, replaces...
18022 (b4_symbol_destructor, b4_symbol_printer): these.
18023 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18024 user token numbers.
18026 2002-06-20 Akim Demaille <akim@epita.fr>
18028 * data/bison.simple (yydestructor): Rename as...
18029 (yydestruct): this.
18031 2002-06-20 Akim Demaille <akim@epita.fr>
18033 * src/symtab.h, src/symtab.c (symbol_type_set)
18034 (symbol_destructor_set, symbol_precedence_set): The location is
18036 Adjust all callers.
18038 2002-06-20 Akim Demaille <akim@epita.fr>
18040 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18042 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18044 * src/symtab.h, src/symtab.c (symbol_class_set)
18045 (symbol_user_token_number_set): Likewise.
18046 Adjust all callers.
18047 Promote complain_at.
18048 * tests/input.at (Type Clashes): Adjust.
18050 2002-06-20 Akim Demaille <akim@epita.fr>
18052 * data/bison.simple (YYLEX): Fix the declaration when
18055 2002-06-20 Akim Demaille <akim@epita.fr>
18057 * data/bison.simple (yysymprint): Don't print the token number,
18059 * tests/actions.at (Destructors): Rename as...
18060 (Printers and Destructors): this.
18061 Also exercise %printer.
18063 2002-06-20 Akim Demaille <akim@epita.fr>
18065 * data/bison.simple (YYDSYMPRINT): New.
18066 Use it to remove many of the #if YYDEBUG/if (yydebug).
18068 2002-06-20 Akim Demaille <akim@epita.fr>
18070 * src/symtab.h, src/symtab.c (symbol_t): printer and
18071 printer_location are new members.
18072 (symbol_printer_set): New.
18073 * src/parse-gram.y (PERCENT_PRINTER): New token.
18074 Handle its associated rule.
18075 * src/scan-gram.l: Adjust.
18076 (handle_destructor_at, handle_destructor_dollar): Rename as...
18077 (handle_symbol_code_at, handle_symbol_code_dollar): these.
18078 * src/output.c (symbol_printers_output): New.
18079 (output_skeleton): Call it.
18080 * data/bison.simple (yysymprint): New. Cannot be named yyprint
18081 since there are already many grammar files with a user `yyprint'.
18082 Replace the calls to YYPRINT to calls to yysymprint.
18083 * tests/calc.at: Adjust.
18084 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
18085 taking advantage of parser very internal details (stack size!).
18087 2002-06-20 Akim Demaille <akim@epita.fr>
18089 * src/scan-gram.l: Complete the scanner with the missing patterns
18091 Use `quote' and `symbol_tag_get' where appropriate.
18093 2002-06-19 Akim Demaille <akim@epita.fr>
18095 * tests/actions.at (Destructors): Augment to test locations.
18096 * data/bison.simple (yydestructor): Pass it the current location
18097 if locations are enabled.
18098 Prototype only when __STDC__ or C++.
18099 Change the argument names to move into the yy name space: there is
18102 2002-06-19 Akim Demaille <akim@epita.fr>
18104 * data/bison.simple (b4_pure_if): New.
18105 Use it instead of #ifdef YYPURE.
18107 2002-06-19 Akim Demaille <akim@epita.fr>
18109 * data/bison.simple (b4_location_if): New.
18110 Use it instead of #ifdef YYLSP_NEEDED.
18112 2002-06-19 Akim Demaille <akim@epita.fr>
18114 Prepare @$ in %destructor, but currently don't bind it in the
18115 skeleton, as %location use is not cleaned up yet.
18117 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18118 (handle_action_at): New.
18119 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18120 a braced_code_t and a location as additional arguments.
18121 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18122 unquote one when outputting `b4_dollar_dollar'.
18124 * data/bison.simple (b4_eval): Remove.
18125 (b4_symbol_destructor): Adjust.
18126 * tests/input.at (Invalid @n): Adjust.
18128 2002-06-19 Zack Weinberg <zack@codesourcery.com>
18130 * doc/bison.texinfo: Document ability to have multiple
18133 2002-06-18 Akim Demaille <akim@epita.fr>
18135 * src/files.c (compute_base_names): When computing the output file
18136 names from the input file name, strip the directory part.
18138 2002-06-18 Akim Demaille <akim@epita.fr>
18140 * data/bison.simple.new: Comment changes.
18141 Reported by Andreas Schwab.
18143 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18145 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18146 there are no `label `yyoverflowlab' defined but not used' warnings
18147 when yyoverflow is defined.
18149 2002-06-18 Akim Demaille <akim@epita.fr>
18151 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18153 (symbol_destructor_set): Adjust.
18154 * src/output.c (symbol_destructors_output): Output the destructor
18156 Output the symbol name.
18157 * data/bison.simple (b4_symbol_destructor): Adjust.
18159 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18160 and Akim Demaille <akim@epita.fr>
18162 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18163 what's left on the stack when the error recovery hits EOF.
18164 * tests/actions.at (Destructors): Complete to exercise this case.
18166 2002-06-17 Akim Demaille <akim@epita.fr>
18168 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18169 arguments is really empty, not only equal to `[]'.
18170 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18172 (symbol_destructor_set): New.
18173 * src/output.c (symbol_destructors_output): New.
18174 * src/reader.h (brace_code_t, current_braced_code): New.
18175 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18176 (handle_dollar): Rename as...
18177 (handle_action_dollar): this.
18178 (handle_destructor_dollar): New.
18179 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18180 (grammar_declaration): Use it.
18181 * data/bison.simple (yystos): Is always defined.
18182 (yydestructor): New.
18183 * tests/actions.at (Destructors): New.
18184 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18186 2002-06-17 Akim Demaille <akim@epita.fr>
18188 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18189 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18190 rule_length only when needed.
18191 * src/output.c (actions_output, token_definitions_output): Output
18193 * src/symtab.c: Don't access directly to the symbol tag, use
18195 * src/parse-gram.y: Use symbol_list_free.
18197 2002-06-17 Akim Demaille <akim@epita.fr>
18199 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18200 (symbol_list_prepend, get_type_name): Move to...
18201 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18202 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18203 Adjust all callers.
18204 (symbol_list_free): New.
18205 * src/scan-gram.l (handle_dollar): Takes a location.
18206 * tests/input.at (Invalid $n): Adjust.
18208 2002-06-17 Akim Demaille <akim@epita.fr>
18210 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18211 (symbol_list_prepend): New.
18212 * src/parse-gram.y (%union): `list' is a new member.
18213 (symbols.1): New, replaces...
18214 (terms_to_prec.1, nterms_to_type.1): these.
18215 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18216 Take a location as additional argument.
18217 Adjust all callers.
18219 2002-06-15 Akim Demaille <akim@epita.fr>
18221 * src/parse-gram.y: Move %token in the declaration section so that
18222 we don't depend upon CVS Bison.
18224 2002-06-15 Akim Demaille <akim@epita.fr>
18226 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18227 * src/print.c (print_core): Use it.
18229 2002-06-15 Akim Demaille <akim@epita.fr>
18231 * src/conflicts.c (log_resolution): Accept the rule involved in
18232 the sr conflicts instead of the lookahead number that points to
18234 (flush_reduce): Accept the current lookahead vector as argument,
18235 instead of the index in LA.
18236 (resolve_sr_conflict): Accept the current number of lookahead
18237 bitset to consider for the STATE, instead of the index in LA.
18238 (set_conflicts): Adjust.
18239 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18241 2002-06-15 Akim Demaille <akim@epita.fr>
18243 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18244 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18245 Adjust all dependencies.
18246 * src/lalr.c (initialize_lookaheads): Split into...
18247 (states_lookaheads_count, states_lookaheads_initialize): these.
18250 2002-06-15 Akim Demaille <akim@epita.fr>
18252 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18254 (grammar_rules_print): here.
18255 * src/reduce.c (reduce_output): Use it.
18256 * tests/reduce.at (Useless Rules, Reduced Automaton)
18257 (Underivable Rules): Adjust.
18259 2002-06-15 Akim Demaille <akim@epita.fr>
18261 Copy BYacc's nice way to report the grammar.
18263 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18265 Don't print the rules' location, it is confusing and useless.
18266 (rule_print): Use grammar_rhs_print.
18267 * src/print.c (print_grammar): Use grammar_rules_print.
18269 2002-06-15 Akim Demaille <akim@epita.fr>
18271 Complete and rationalize `useless thing' warnings.
18273 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18274 (symbol_tag_print): New.
18275 Use them everywhere in place of accessing directly the tag member.
18276 * src/gram.h, src/gram.c (rule_print): New.
18277 Use it where a rule used to be printed `by hand'.
18278 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18279 (reduce_grammar_tables): Report the useless rules.
18280 (reduce_print): Useless things are a warning, not an error.
18282 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18283 (Reduced Automaton, Underivable Rules): Adjust.
18284 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18285 * tests/conflicts.at (Unresolved SR Conflicts)
18286 (Solved SR Conflicts): Adjust.
18288 2002-06-15 Akim Demaille <akim@epita.fr>
18290 Let symbols have a location.
18292 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18294 Adjust all callers.
18295 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18296 Use location_t, not int.
18297 * src/symtab.c (symbol_check_defined): Take advantage of the
18299 * tests/regression.at (Invalid inputs): Adjust.
18301 2002-06-15 Akim Demaille <akim@epita.fr>
18303 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18304 (input): Don't try to initialize yylloc here, do it in the
18306 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18307 * src/gram.h (rule_t): Change line and action_line into location
18308 and action_location, of location_t type.
18309 Adjust all dependencies.
18310 * src/location.h, src/location.c (empty_location): New.
18311 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18312 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18313 (grammar_current_rule_symbol_append)
18314 (grammar_current_rule_action_append): Expect a location as argument.
18315 * src/reader.c (grammar_midrule_action): Adjust to attach an
18316 action's location as dummy symbol location.
18317 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18318 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18321 2002-06-14 Akim Demaille <akim@epita.fr>
18323 Grammar declarations may be found in the grammar section.
18325 * src/parse-gram.y (rules_or_grammar_declaration): New.
18326 (declarations): Each declaration may end with a semicolon, not
18328 (grammar_declaration): `"%union"'.
18329 (grammar): Branch to rules_or_grammar_declaration.
18331 2002-06-14 Akim Demaille <akim@epita.fr>
18333 * src/main.c (main): Invoke scanner_free.
18335 2002-06-14 Akim Demaille <akim@epita.fr>
18337 * src/output.c (m4_invoke): Extracted from...
18338 (output_skeleton): here.
18341 2002-06-14 Akim Demaille <akim@epita.fr>
18343 * src/parse-gram.y (directives, directive, gram)
18344 (grammar_directives, precedence_directives, precedence_directive):
18346 (declarations, declaration, grammar, grammar_declaration)
18347 (precedence_declaration, precedence_declarator): these.
18348 (symbol_declaration): New.
18350 2002-06-14 Akim Demaille <akim@epita.fr>
18352 * src/files.c (action_obstack): Remove, unused.
18353 (output_obstack): Remove it, and all its dependencies, as it is no
18355 * src/reader.c (epilogue_set): Build the epilogue in the
18357 * src/output.h, src/output.c (muscle_obstack): Move to...
18358 * src/muscle_tab.h, src/muscle_tab.h: here.
18359 (muscle_init): Initialize muscle_obstack.
18360 (muscle_free): New.
18361 * src/main.c (main): Call it.
18363 2002-06-14 Akim Demaille <akim@epita.fr>
18365 * src/location.h: New, extracted from...
18366 * src/reader.h: here.
18367 * src/Makefile.am (noinst_HEADERS): Merge into
18368 (bison_SOURCES): this.
18370 * src/parse-gram.y: Use location_t instead of Bison's.
18371 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18372 Use location_t instead of ints.
18374 2002-06-14 Akim Demaille <akim@epita.fr>
18376 * data/bison.simple, data/bison.c++: Be sure to restore the
18377 current #line when returning to the skeleton contents after having
18378 exposed the input file's #line.
18380 2002-06-12 Akim Demaille <akim@epita.fr>
18382 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18384 * tests/actions.at (Exotic Dollars): New.
18386 2002-06-12 Akim Demaille <akim@epita.fr>
18388 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18390 * tests/input.at (Torturing the Scanner): New.
18392 2002-06-11 Akim Demaille <akim@epita.fr>
18394 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18395 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18396 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18397 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18398 * src/reader.c (reader): Use it.
18400 2002-06-11 Akim Demaille <akim@epita.fr>
18402 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18403 Adjust all callers.
18404 (scanner_last_string_free): New.
18406 2002-06-11 Akim Demaille <akim@epita.fr>
18408 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18409 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18410 (last_string, YY_OBS_FREE): New.
18411 Use them when returning an ID.
18413 2002-06-11 Akim Demaille <akim@epita.fr>
18415 Have Bison grammars parsed by a Bison grammar.
18417 * src/reader.c, src/reader.h (prologue_augment): New.
18418 * src/reader.c (copy_definition): Remove.
18420 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18421 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18422 (grammar_current_rule_prec_set, grammar_current_rule_check)
18423 (grammar_current_rule_symbol_append)
18424 (grammar_current_rule_action_append): Export.
18425 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18426 (symbol_list_action_append): Remove.
18427 Hook the routines from reader.
18428 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18429 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18431 * src/reader.c (read_declarations): Remove, unused.
18433 * src/parse-gram.y: Handle the epilogue.
18434 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18435 (grammar_start_symbol_set): this.
18436 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18437 * src/reader.c (readgram): Remove, unused.
18438 (reader): Adjust to insert eoftoken and axiom where appropriate.
18440 * src/reader.c (copy_dollar): Replace with...
18441 * src/scan-gram.h (handle_dollar): this.
18442 * src/parse-gram.y: Remove `%thong'.
18444 * src/reader.c (copy_at): Replace with...
18445 * src/scan-gram.h (handle_at): this.
18447 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18450 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18453 * src/reader.h, src/reader.c (grammar_rule_end): New.
18455 * src/parse.y (current_type, current_class): New.
18456 Implement `%nterm', `%token' support.
18457 Merge `%term' into `%token'.
18458 (string_as_id): New.
18459 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18462 * src/parse-gram.y: Be sure to handle properly the beginning of
18465 * src/parse-gram.y: Handle %type.
18466 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18468 * src/parse-gram.y: More directives support.
18469 * src/options.c: No longer handle source directives.
18471 * src/parse-gram.y: Fix %output.
18473 * src/parse-gram.y: Handle %union.
18474 Use the prologue locations.
18475 * src/reader.c (parse_union_decl): Remove.
18477 * src/reader.h, src/reader.c (epilogue_set): New.
18478 * src/parse-gram.y: Use it.
18480 * data/bison.simple, data/bison.c++: b4_stype is now either not
18481 defined, then default to int, or to the contents of %union,
18482 without `union' itself.
18484 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18486 * src/output.c (actions_output): Don't output braces, as they are
18487 already handled by the scanner.
18489 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18490 characters to themselves.
18492 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18493 that the epilogue has a proper #line.
18495 * src/parse-gram.y: Handle precedence/associativity.
18497 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18499 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18500 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18501 at all to define terminals that cannot be emitted.
18503 * src/scan-gram.l: Escape M4 characters.
18505 * src/scan-gram.l: Working properly with escapes in user
18506 strings/characters.
18508 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18509 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18511 Use more modest sizes, as for the time being the parser does not
18512 release memory, and therefore the process swallows a huge amount
18515 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18516 stricter %token grammar.
18518 * src/symtab.h (associativity): Add `undef_assoc'.
18519 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18520 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18522 * tests/regression.at (Invalid %directive): Remove, as it is now
18524 (Invalid inputs): Adjust to the new error messages.
18525 (Token definitions): The new grammar doesn't allow too many
18528 * src/lex.h, src/lex.c: Remove.
18529 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18530 (copy_character, copy_string2, copy_string, copy_identifier)
18531 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18532 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18533 (parse_action): Remove.
18534 * po/POTFILES.in: Adjust.
18536 2002-06-11 Akim Demaille <akim@epita.fr>
18538 * src/reader.c (parse_action): Don't store directly into the
18539 rule's action member: return the action as a string.
18540 Don't require `rule_length' as an argument: compute it.
18541 (grammar_current_rule_symbol_append)
18542 (grammar_current_rule_action_append): New, eved out from
18544 Remove `action_flag', `rulelength', unused now.
18546 2002-06-11 Akim Demaille <akim@epita.fr>
18548 * src/reader.c (grammar_current_rule_prec_set).
18549 (grammar_current_rule_check): New, eved out from...
18551 Remove `xaction', `first_rhs': useless.
18552 * tests/input.at (Type clashes): New.
18553 * tests/existing.at (GNU Cim Grammar): Adjust.
18555 2002-06-11 Akim Demaille <akim@epita.fr>
18557 * src/reader.c (grammar_midrule_action): New, Eved out from
18560 2002-06-11 Akim Demaille <akim@epita.fr>
18562 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18564 (readgram): Use them as replacement of inlined code, crule and
18567 2002-06-11 Akim Demaille <akim@epita.fr>
18569 * src/reader.c (grammar_end, grammar_symbol_append): New.
18570 (readgram): Use them.
18571 Make the use of `p' as local as possible.
18573 2002-06-10 Akim Demaille <akim@epita.fr>
18575 GCJ's parser requires the tokens to be defined before the prologue.
18577 * data/bison.simple: Output the token definition before the user's
18579 * tests/regression.at (Braces parsing, Duplicate string)
18580 (Mixing %token styles): Check the output from bison.
18581 (Early token definitions): New.
18583 2002-06-10 Akim Demaille <akim@epita.fr>
18585 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18586 assigning twice the same user number to a token, so that we can
18588 * src/lex.c (lex): here.
18589 Also use `symbol_class_set' instead of hand written code.
18590 * src/reader.c (parse_assoc_decl): Likewise.
18592 2002-06-10 Akim Demaille <akim@epita.fr>
18594 * src/symtab.c, src/symtab.c (symbol_class_set)
18595 (symbol_user_token_number_set): New.
18596 * src/reader.c (parse_token_decl): Use them.
18597 Use a switch instead of ifs.
18598 Use a single argument.
18600 2002-06-10 Akim Demaille <akim@epita.fr>
18602 Remove `%thong' support as it is undocumented, unused, duplicates
18603 `%token's job, and creates useless e-mail traffic with people who
18604 want to know what it is, why it is undocumented, unused, and
18605 duplicates `%token's job.
18607 * src/reader.c (parse_thong_decl): Remove.
18608 * src/options.c (option_table): Remove "thong".
18609 * src/lex.h (tok_thong): Remove.
18611 2002-06-10 Akim Demaille <akim@epita.fr>
18613 * src/symtab.c, src/symtab.c (symbol_type_set)
18614 (symbol_precedence_set): New.
18615 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18616 (value_components_used): Remove, unused.
18618 2002-06-09 Akim Demaille <akim@epita.fr>
18620 Move symbols handling code out of the reader.
18622 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18623 (axiom): Move to...
18624 * src/symtab.h, src/symtab.c: here.
18626 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18627 * src/reader.c (startval): Rename as...
18628 * src/symtab.h, src/symtab.c (startsymbol): this.
18629 * src/reader.c: Adjust.
18631 * src/reader.c (symbol_check_defined, symbol_make_alias)
18632 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18633 (token_translations_init)
18635 * src/symtab.c: here.
18636 * src/reader.c (packsymbols): Move to...
18637 * src/symtab.h, src/symtab.c (symbols_pack): here.
18638 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18641 2002-06-03 Akim Demaille <akim@epita.fr>
18643 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18646 2002-06-03 Akim Demaille <akim@epita.fr>
18648 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18649 structs with non literals.
18650 * src/scan-skel.l: never-interactive.
18651 * src/conflicts.c (enum conflict_resolution_e): No trailing
18653 * src/getargs.c (usage): Split long literal strings.
18654 Reported by Hans Aberg.
18656 2002-05-28 Akim Demaille <akim@epita.fr>
18658 * data/bison.c++: Use C++ ostreams.
18659 (cdebug_): New member.
18661 2002-05-28 Akim Demaille <akim@epita.fr>
18663 * src/output.c (output_skeleton): Be sure to allocate enough room
18664 for `/' _and_ for `\0' in full_skeleton.
18666 2002-05-28 Akim Demaille <akim@epita.fr>
18668 * data/bison.c++: Catch up with bison.simple:
18669 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18670 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18671 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18672 and popping traces.
18674 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18676 * src/output.c (output_skeleton): Put an explicit path in front of
18677 the skeleton file name, rather than relying on the -I directory,
18678 to partially alleviate effects of having a skeleton file lying around
18679 in the current directory.
18681 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18683 * src/conflicts.c (log_resolution): Correct typo:
18684 obstack_printf should be obstack_fgrow1.
18686 2002-05-26 Akim Demaille <akim@epita.fr>
18688 * src/state.h (state_t): `solved_conflicts' is a new member.
18689 * src/LR0.c (new_state): Set it to 0.
18690 * src/conflicts.h, src/conflicts.c (print_conflicts)
18691 (free_conflicts, solve_conflicts): Rename as...
18692 (conflicts_print, conflicts_free, conflicts_solve): these.
18694 * src/conflicts.c (enum conflict_resolution_e)
18695 (solved_conflicts_obstack): New, used by...
18696 (log_resolution): this.
18697 Adjust to attach the conflict resolution to each state.
18698 Complete the description with the precedence/associativity
18700 (resolve_sr_conflict): Adjust.
18701 * src/print.c (print_state): Output its solved_conflicts.
18702 * tests/conflicts.at (Unresolved SR Conflicts)
18703 (Solved SR Conflicts): Exercise --report=all.
18705 2002-05-26 Akim Demaille <akim@epita.fr>
18707 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18708 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18709 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18710 (token_number_t, item_number_as_token_number)
18711 (token_number_as_item_number, muscle_insert_token_number_table):
18713 (symbol_number_t, item_number_as_symbol_number)
18714 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18715 these, since it is more appropriate.
18717 2002-05-26 Akim Demaille <akim@epita.fr>
18719 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18721 * data/bison.simple (yystos) [YYDEBUG]: New.
18722 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18724 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18726 2002-05-25 Akim Demaille <akim@epita.fr>
18728 * doc/bison.texinfo (Debugging): Split into...
18729 (Tracing): this new section, its former contents, and...
18730 (Understanding): this new section.
18731 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18733 (report_flag): this.
18734 Adjust all dependencies.
18735 (report_args, report_types, report_argmatch): New.
18736 (usage, getargs): Report/support -r, --report.
18738 (struct option_table_struct): Rename as..,
18739 (struct option_table_s): this.
18740 Rename the `set_flag' member to `flag' to match with getopt_long's
18742 * src/options.c (option_table): Split verbose into an entry for
18743 %verbose, and another for --verbose.
18744 Support --report/-r, so remove -r from the obsolete --raw.
18745 * src/print.c: Attach full item sets and lookaheads reports to
18746 report_flag instead of trace_flag.
18747 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18749 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18750 and Paul Eggert <eggert@twinsun.com>
18752 * data/bison.simple (yyparse): Correct error handling to conform to
18753 POSIX and yacc. Specifically, after syntax error is discovered,
18754 do not reduce further before shifting the error token.
18755 Clean up the code a bit by removing the labels yyerrdefault,
18756 yyerrhandle, yyerrpop.
18757 * NEWS: Document the above.
18759 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18761 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18762 type; it isn't always big enough, since it doesn't necessarily
18763 include non-terminals.
18764 (yytranslate): Expand definition of yy_token_number_type, so that
18765 the latter can be removed.
18766 (yy_token_number_type): Remove, only one use.
18767 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18768 don't use TokenNumberType as element type.
18770 * tests/regression.at: Modify expected output to agree with change
18771 to yyr1 and yytranslate.
18773 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18775 * src/reader.c (parse_action): Use copy_character instead of
18778 2002-05-13 Akim Demaille <akim@epita.fr>
18780 * tests/regression.at (Token definitions): Prototype yylex and
18783 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18785 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
18786 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18788 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18790 2002-05-07 Akim Demaille <akim@epita.fr>
18792 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18793 avoid GCC warnings.
18795 2002-05-07 Akim Demaille <akim@epita.fr>
18799 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18800 over the RHS of each rule.
18801 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18802 * src/state.h (state_t): Member `nitems' is unsigned short.
18803 * src/LR0.c (get_state): Adjust.
18804 * src/reader.c (packgram): Likewise.
18805 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18807 (muscle_insert_int_table): Remove, unused.
18808 (prepare_rules): Remove `max'.
18810 2002-05-06 Akim Demaille <akim@epita.fr>
18812 * src/closure.c (print_firsts): Display of the symbol tags.
18813 (bitmatrix_print): Move to...
18814 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18816 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18818 2002-05-06 Akim Demaille <akim@epita.fr>
18820 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18823 2002-05-06 Akim Demaille <akim@epita.fr>
18825 * src/LR0.c (new_state, get_state): Instead of using the global
18826 `kernel_size' and `kernel_base', have two new arguments:
18827 `core_size' and `core'.
18830 2002-05-06 Akim Demaille <akim@epita.fr>
18832 * src/reader.c (packgram): No longer end `ritem' with a 0
18833 sentinel: it is not used.
18835 2002-05-05 Akim Demaille <akim@epita.fr>
18837 New experimental feature: display the lookaheads in the report and
18840 * src/print (print_core): When --trace-flag, display the rules
18842 * src/print_graph.c (print_core): Likewise.
18843 Swap the arguments.
18846 2002-05-05 Akim Demaille <akim@epita.fr>
18848 * tests/torture.at (Many lookaheads): New test.
18850 2002-05-05 Akim Demaille <akim@epita.fr>
18852 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18853 (GENERATE_MUSCLE_INSERT_TABLE): this.
18854 (output_int_table, output_unsigned_int_table, output_short_table)
18855 (output_token_number_table, output_item_number_table): Replace with...
18856 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18857 (muscle_insert_short_table, muscle_insert_token_number_table)
18858 (muscle_insert_item_number_table): these.
18859 Adjust all callers.
18860 (prepare_tokens): Don't free `translations', since...
18861 * src/reader.h, src/reader.c (grammar_free): do it.
18863 * src/gram.h, src/gram.c (grammar_free): here.
18864 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18867 2002-05-05 Akim Demaille <akim@epita.fr>
18869 * src/output.c (output_unsigned_int_table): New.
18870 (prepare_rules): `i' is unsigned.
18871 `prhs', `rline', `r2' are unsigned int.
18872 Rename muscle `rhs_number_max' as `rhs_max'.
18873 Output muscles `prhs_max', `rline_max', and `r2_max'.
18875 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18876 to compute types instead of constant types.
18877 * tests/regression.at (Web2c Actions): Adjust.
18879 2002-05-04 Akim Demaille <akim@epita.fr>
18881 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18882 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18883 Adjust dependencies.
18884 * src/output.c (token_definitions_output): Be sure not to output a
18885 `#define 'a'' when fed with `%token 'a' "a"'.
18886 * tests/regression.at (Token definitions): New.
18888 2002-05-03 Paul Eggert <eggert@twinsun.com>
18890 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18893 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18895 * Makefile.am (SUBDIRS): Remove intl.
18896 (EXTRA_DIST): Add config/config.rpath.
18898 2002-05-03 Akim Demaille <akim@epita.fr>
18900 * data/bison.simple (m4_if): Don't output empty enums.
18901 And actually, output valid enum definitions :(.
18903 2002-05-03 Akim Demaille <akim@epita.fr>
18905 * configure.bat: Remove, completely obsolete.
18906 * Makefile.am (EXTRA_DIST): Adjust.
18907 Don't distribute config.rpath...
18908 * config/Makefile.am (EXTRA_DIST): Do it.
18910 2002-05-03 Akim Demaille <akim@epita.fr>
18912 * configure.in (GETTEXT_VERSION): New.
18913 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18915 2002-05-03 Akim Demaille <akim@epita.fr>
18917 * data/bison.simple (b4_token_enum): New.
18918 (b4_token_defines): Use it to output tokens both as #define and
18920 Suggested by Paul Eggert.
18921 * src/output.c (token_definitions_output): Don't output spurious
18924 2002-05-03 Akim Demaille <akim@epita.fr>
18926 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18928 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
18930 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18931 Update the stack class, give a try to deque as the default container.
18933 2002-05-02 Akim Demaille <akim@epita.fr>
18935 * data/bison.simple (yyparse): Do not implement @$ = @1.
18936 (YYLLOC_DEFAULT): Adjust to do it.
18937 * doc/bison.texinfo (Location Default Action): Fix.
18939 2002-05-02 Akim Demaille <akim@epita.fr>
18941 * src/reader.c (parse_braces): Merge into...
18942 (parse_action): this.
18944 2002-05-02 Akim Demaille <akim@epita.fr>
18946 * configure.in (ALL_LINGUAS): Remove.
18947 * po/LINGUAS, hr.po: New.
18949 2002-05-02 Akim Demaille <akim@epita.fr>
18951 Remove the so called hairy (semantic) parsers.
18953 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18954 * src/gram.h, src/gram.c (semantic_parser): Remove.
18955 (rule_t): Remove the guard and guard_line members.
18956 * src/lex.h (token_t): remove tok_guard.
18957 * src/options.c (option_table): Remove %guard and %semantic_parser
18959 * src/output.c, src/output.h (guards_output): Remove.
18961 (token_definitions_output): Don't output the `T'
18963 (output_skeleton): Don't output the guards.
18964 * src/files.c, src/files.c (attrsfile): Remove.
18965 * src/reader.c (symbol_list): Remove the guard and guard_line
18967 Adjust dependencies.
18968 (parse_guard): Remove.
18969 * data/bison.hairy: Remove.
18970 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18973 2002-05-02 Akim Demaille <akim@epita.fr>
18975 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18976 (parse_guard): Rename the formal argument `stack_offset' as
18977 `rule_length', which is more readable.
18979 (copy_at, copy_dollar): Instead of outputting the hard coded
18980 values of $$, $n and so forth, output invocation to b4_lhs_value,
18981 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
18982 Note: this patch partially drops `semantic-parser' support: it
18983 always does `rule_length - n', where semantic parsers ought to
18985 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18986 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18988 2002-05-02 Akim Demaille <akim@epita.fr>
18990 * configure.in (AC_INIT): Bump to 1.49b.
18991 (AM_INIT_AUTOMAKE): Short invocation.
18993 2002-05-02 Akim Demaille <akim@epita.fr>
18997 2002-05-01 Akim Demaille <akim@epita.fr>
18999 * src/skeleton.h: Remove.
19001 2002-05-01 Akim Demaille <akim@epita.fr>
19003 * src/skeleton.h: Fix the #endif.
19004 Reported by Magnus Fromreide.
19006 2002-04-26 Paul Eggert <eggert@twinsun.com>
19008 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19009 Define if we define YYSTYPE and YYLTYPE, respectively.
19010 (YYCOPY): Fix [] quoting problem in the non-GCC case.
19012 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
19014 * src/scan-skel.l: Postprocess quadrigraphs.
19016 * src/reader.c (copy_character): New function, used to output
19017 single characters while replacing `[' and `]' with quadrigraphs, to
19018 avoid troubles with M4 quotes.
19019 (copy_comment): Output characters with copy_character.
19020 (read_additionnal_code): Likewise.
19021 (copy_string2): Likewise.
19022 (copy_definition): Likewise.
19024 * tests/calc.at: Exercise M4 quoting.
19026 2002-04-25 Akim Demaille <akim@epita.fr>
19028 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19029 between `!' and the command.
19030 Reported by Paul Eggert.
19032 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
19034 * tests/calc.at: Exercise prologue splitting.
19036 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19037 `b4_post_prologue' instead of `b4_prologue'.
19039 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19041 (output): Free pre_prologue_obstack and post_prologue_obstack.
19042 * src/files.h, src/files.c (attrs_obstack): Remove.
19043 (pre_prologue_obstack, post_prologue_obstack): New.
19044 * src/reader.c (copy_definition): Add a parameter to specify the
19045 obstack to fill, instead of using attrs_obstack unconditionally.
19046 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19047 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19049 2002-04-23 Paul Eggert <eggert@twinsun.com>
19051 * data/bison.simple: Remove unnecessary commentary and white
19052 space differences from 1_29-branch.
19053 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19055 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19056 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19057 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19058 constructors or destructors.
19060 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19062 2002-04-23 Akim Demaille <akim@epita.fr>
19064 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19065 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19066 location with columns.
19067 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19068 All reported by Paul Eggert.
19070 2002-04-22 Akim Demaille <akim@epita.fr>
19072 * src/reduce.c (dump_grammar): Move to...
19073 * src/gram.h, src/gram.c (grammar_dump): here.
19074 Be sure to separate long item numbers.
19075 Don't read the members of a rule's prec if its nil.
19077 2002-04-22 Akim Demaille <akim@epita.fr>
19079 * src/output.c (table_size, table_grow): New.
19080 (MAXTABLE): Remove, replace uses with table_size.
19081 (pack_vector): Instead of dying when the table is too big, grow it.
19083 2002-04-22 Akim Demaille <akim@epita.fr>
19085 * data/bison.simple (yyr1): Its type is that of a token number.
19086 * data/bison.c++ (r1_): Likewise.
19087 * tests/regression.at (Web2c Actions): Adjust.
19089 2002-04-22 Akim Demaille <akim@epita.fr>
19091 * src/reader.c (token_translations_init): 256 is now the default
19092 value for the error token, i.e., it will be assigned another
19093 number if the user assigned 256 to one of her tokens.
19094 (reader): Don't force 256 to error.
19095 * doc/bison.texinfo (Symbols): Adjust.
19096 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19097 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19098 etc. instead of 10, 20, 30 (which was used to `jump' over error
19099 (256) and undefined (2)).
19101 2002-04-22 Akim Demaille <akim@epita.fr>
19103 Propagate more token_number_t.
19105 * src/gram.h (token_number_as_item_number)
19106 (item_number_as_token_number): New.
19107 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19108 Use it to create output_item_number_table and
19109 output_token_number_table.
19110 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19111 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19112 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19113 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19115 2002-04-22 Akim Demaille <akim@epita.fr>
19117 * src/output.h, src/output.c (get_lines_number): Remove.
19119 2002-04-19 Akim Demaille <akim@epita.fr>
19121 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19123 (Debugging): More details about enabling the debugging features.
19124 (Table of Symbols): Describe $$, $n, @$, and @n.
19125 Suggested by Tim Josling.
19127 2002-04-19 Akim Demaille <akim@epita.fr>
19129 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19131 2002-04-10 Akim Demaille <akim@epita.fr>
19133 * src/system.h: Rely on HAVE_LIMITS_H.
19134 Suggested by Paul Eggert.
19136 2002-04-09 Akim Demaille <akim@epita.fr>
19138 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19139 full stderr, and strip it according to the bison options, instead
19140 of composing the error message from different bits.
19141 This makes it easier to check for several error messages.
19142 Adjust all the invocations.
19143 Add an invocation exercising the error token.
19144 Add an invocation demonstrating a stupid error message.
19145 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19147 Error message are for stderr, not stdout.
19149 2002-04-09 Akim Demaille <akim@epita.fr>
19151 * src/gram.h, src/gram.c (error_token_number): Remove, use
19153 * src/reader.c (reader): Don't specify the user token number (2)
19154 for $undefined, as it uselessly prevents using it.
19155 * src/gram.h (token_number_t): Move to...
19156 * src/symtab.h: here.
19157 (state_t.number): Is a token_number_t.
19158 * src/print.c, src/reader.c: Use undeftoken->number instead of
19160 (Even though this 2 is not the same as above: the number of the
19161 undeftoken remains being 2, it is its user token number which
19163 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19164 `user_token_number_max'.
19165 Output `undef_token_number'.
19166 * data/bison.simple, data/bison.c++: Use them.
19167 Be sure to map invalid yylex return values to
19168 `undef_token_number'. This saves us from gratuitous SEGV.
19170 * tests/conflicts.at (Solved SR Conflicts)
19171 (Unresolved SR Conflicts): Adjust.
19172 * tests/regression.at (Web2c Actions): Adjust.
19174 2002-04-08 Akim Demaille <akim@epita.fr>
19176 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19178 Remove the duplicate `typedefs'.
19179 (RhsNumberType): Fix the declaration and various other typos.
19181 * data/bison.simple: Use __ofile__.
19182 * src/scan-skel.l: Handle __ofile__.
19184 2002-04-08 Akim Demaille <akim@epita.fr>
19186 * src/gram.h (item_number_t): New, the type of item numbers in
19187 RITEM. Note that it must be able to code symbol numbers as
19188 positive number, and the negation of rule numbers as negative
19190 Adjust all dependencies (pretty many).
19191 * src/reduce.c (rule): Remove this `short *' pointer: use
19193 * src/system.h (MINSHORT, MAXSHORT): Remove.
19194 Include `limits.h'.
19195 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19196 (shortcpy): Remove.
19197 (MAXTABLE): Move to...
19198 * src/output.c (MAXTABLE): here.
19199 (prepare_rules): Use output_int_table to output rhs.
19200 * data/bison.simple, data/bison.c++: Adjust.
19201 * tests/torture.at (Big triangle): Move the limit from 254 to
19203 * tests/regression.at (Web2c Actions): Ajust.
19205 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19206 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19207 passes, but produces negative #line number, once fixed, GCC is
19208 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19210 * src/state.h (state_h): Code input lines on ints, not shorts.
19212 2002-04-08 Akim Demaille <akim@epita.fr>
19214 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19215 and then the grammar.
19217 2002-04-08 Akim Demaille <akim@epita.fr>
19219 * src/system.h: No longer using strndup.
19221 2002-04-07 Akim Demaille <akim@epita.fr>
19223 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19224 * src/output.c (output_table_data): Return the longest number.
19225 (prepare_tokens): Output `token_number_max').
19226 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19228 Use them to define yy_token_number_type/TokenNumberType.
19229 Use this type for yytranslate.
19230 * tests/torture.at (Big triangle): Push the limit from 124 to
19232 * tests/regression.at (Web2c Actions): Adjust.
19234 2002-04-07 Akim Demaille <akim@epita.fr>
19236 * tests/torture.at (Big triangle): New.
19237 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19238 * tests/existing.at: here.
19240 2002-04-07 Akim Demaille <akim@epita.fr>
19242 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19244 Adjust dependencies.
19246 2002-04-07 Akim Demaille <akim@epita.fr>
19248 * src/reader.c: Normalize increments to prefix form.
19250 2002-04-07 Akim Demaille <akim@epita.fr>
19252 * src/reader.c, symtab.c: Remove debugging code.
19254 2002-04-07 Akim Demaille <akim@epita.fr>
19256 Rename all the `bucket's as `symbol_t'.
19258 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19259 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19260 * src/symtab.c, src/symtab.h (bucket): Rename as...
19262 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19263 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19264 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19265 (buckets_new, buckets_free, buckets_do): Rename as...
19266 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19267 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19268 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19269 (symbols_new, symbols_free, symbols_do): these.
19271 2002-04-07 Akim Demaille <akim@epita.fr>
19273 Use lib/hash for the symbol table.
19275 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19277 * src/lex.c (lex): Set the `number' member of new terminals.
19278 * src/reader.c (bucket_check_defined, bucket_make_alias)
19279 (bucket_check_alias_consistence, bucket_translation): New.
19280 (reader, grammar_free, readgram, token_translations_init)
19281 (packsymbols): Adjust.
19282 (reader): Number the predefined tokens.
19283 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19284 for predefined tokens.
19285 * src/symtab.h (bucket): Remove all the hash table related
19287 * src/symtab.c (symtab): Replace by...
19288 (bucket_table): this.
19289 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19290 (buckets_new, buckets_do): New.
19292 2002-04-07 Akim Demaille <akim@epita.fr>
19294 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19295 (start_symbol, max_user_token_number, semantic_parser)
19296 (error_token_number): Initialize.
19297 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19300 (errtoken, eoftoken, undeftoken, axiom): Extern.
19302 2002-04-07 Akim Demaille <akim@epita.fr>
19304 * src/gram.h (rule_s): prec and precsym are now pointers
19305 to the bucket giving the priority/associativity.
19306 Member `associativity' removed: useless.
19307 * src/reduce.c, src/conflicts.c: Adjust.
19309 2002-04-07 Akim Demaille <akim@epita.fr>
19311 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19312 Properly escape the symbols' TAG when outputting them.
19314 2002-04-07 Akim Demaille <akim@epita.fr>
19316 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19318 2002-04-07 Akim Demaille <akim@epita.fr>
19320 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19321 (LArule): this, which is an array to rule_t*.
19322 * src/print.c, src/conflicts.c: Adjust.
19324 2002-04-07 Akim Demaille <akim@epita.fr>
19326 * src/gram.h (rule_t): Rename `number' as `user_number'.
19327 `number' is a new member.
19328 Adjust dependencies.
19329 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19331 2002-04-07 Akim Demaille <akim@epita.fr>
19333 As a result of the previous patch, it is no longer needed
19334 to reorder ritem itself.
19336 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19338 2002-04-07 Akim Demaille <akim@epita.fr>
19340 Be sure never to walk through RITEMS, but use only data related to
19341 the rules themselves. RITEMS should be banished.
19343 * src/output.c (output_token_translations): Rename as...
19344 (prepare_tokens): this.
19345 In addition to `translate', prepare the muscles `tname' and
19346 `toknum', which were handled by...
19347 (output_rule_data): this.
19348 Remove, and move the remainder of its outputs into...
19349 (prepare_rules): this new routines, which also merges content from
19350 (output_gram): this.
19351 (prepare_rules): Be sure never to walk through RITEMS.
19352 (output_stos): Rename as...
19353 (prepare_stos): this.
19354 (output): Always invoke prepare_states, after all, just don't use it
19355 in the output if you don't need it.
19357 2002-04-07 Akim Demaille <akim@epita.fr>
19359 * src/LR0.c (new_state): Display `nstates' as the name of the
19360 newly created state.
19361 Adjust to initialize first_state and last_state if needed.
19362 Be sure to distinguish the initial from the final state.
19363 (new_states): Create the itemset of the initial state, and use
19365 * src/closure.c (closure): Now that the initial state has its
19366 items properly set, there is no need for a special case when
19367 creating `ruleset'.
19369 As a result, now the rule 0, reducing to $axiom, is visible in the
19370 outputs. Adjust the test suite.
19372 * tests/conflicts.at (Solved SR Conflicts)
19373 (Unresolved SR Conflicts): Adjust.
19374 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19375 * tests/conflicts.at (S/R in initial): New.
19377 2002-04-07 Akim Demaille <akim@epita.fr>
19379 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19380 the RHS of the rules.
19381 * src/output.c (output_gram): Likewise.
19383 2002-04-07 Akim Demaille <akim@epita.fr>
19385 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19387 Adjust all dependencies.
19388 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19389 `number' of the buckets too.
19390 * src/gram.h: Include `symtab.h'.
19391 (associativity): Move to...
19392 * src/symtab.h: here.
19393 No longer include `gram.h'.
19395 2002-04-07 Akim Demaille <akim@epita.fr>
19397 * src/gram.h, src/gram.c (rules_rhs_length): New.
19398 (ritem_longest_rhs): Use it.
19399 * src/gram.h (rule_t): `number' is a new member.
19400 * src/reader.c (packgram): Set it.
19401 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19402 the end of `rules', and count them out of `nrules'.
19403 (reduce_output, dump_grammar): Adjust.
19404 * src/print.c (print_grammar): It is no longer needed to check for
19405 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19406 * tests/reduce.at (Reduced Automaton): New test.
19408 2002-04-07 Akim Demaille <akim@epita.fr>
19410 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19411 lacking `+ 1' to nrules, Bison reported as useless a token if it
19412 was used solely to set the precedence of the last rule...
19414 2002-04-07 Akim Demaille <akim@epita.fr>
19416 * data/bison.c++, data/bison.simple: Don't output the current file
19417 name in #line, to avoid useless diffs between two identical
19418 outputs under different names.
19420 2002-04-07 Akim Demaille <akim@epita.fr>
19422 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19423 Normalize loops to using `< nrules + 1', not `<= nrules'.
19425 2002-04-07 Akim Demaille <akim@epita.fr>
19429 2002-04-07 Akim Demaille <akim@epita.fr>
19431 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19432 bucket.value as bucket.number.
19434 2002-04-07 Akim Demaille <akim@epita.fr>
19436 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19437 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19438 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19439 RHS, instead of being an index in RITEMS.
19441 2002-04-04 Paul Eggert <eggert@twinsun.com>
19443 * doc/bison.texinfo: Update copyright date.
19444 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19445 (Symbols): Warn about running Bison in one character set,
19446 but compiling and/or running in an incompatible one.
19447 Warn about character code 256, too.
19449 2002-04-03 Paul Eggert <eggert@twinsun.com>
19451 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19452 YYERROR_VERBOSE is nonzero, not whether it is defined.
19454 Merge changes from bison-1_29-branch.
19456 2002-03-20 Paul Eggert <eggert@twinsun.com>
19458 Merge fixes from Debian bison_1.34-1.diff.
19460 * configure.in (AC_PREREQ): 2.53.
19462 2002-03-20 Akim Demaille <akim@epita.fr>
19464 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19466 2002-03-19 Paul Eggert <eggert@twinsun.com>
19468 * src/bison.simple (YYCOPY): New macro.
19469 (YYSTACK_RELOCATE): Use it.
19470 Remove Type arg; no longer needed. All callers changed.
19471 (yymemcpy): Remove; no longer needed.
19473 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19474 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19476 2002-03-19 Akim Demaille <akim@epita.fr>
19478 Test and fix the #line outputs.
19480 * tests/atlocal.at (GCC): New.
19481 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
19482 (Prologue synch line, %union synch line, Postprologue synch line)
19483 (Action synch line, Epilogue synch line): New tests.
19484 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19485 * data/bison.simple, data/bison.c++: Use it.
19487 2002-03-19 Akim Demaille <akim@epita.fr>
19489 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19490 (Solved SR Conflicts, %expect not enough, %expect right)
19491 (%expect too much): Move to...
19492 * tests/conflicts.at: this new file.
19494 2002-03-19 Akim Demaille <akim@epita.fr>
19496 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19497 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19498 that we can move to enums for instance.
19499 * src/output.c (token_definitions_output): Output a list of
19500 `token-name, token-number' instead of the #define.
19501 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19503 2002-03-14 Akim Demaille <akim@epita.fr>
19505 Use Gettext 0.11.1.
19507 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
19509 * data/bison.c++: Make the user able to add members to the generated
19510 parser by subclassing.
19512 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
19514 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19516 Reported by Nicolas Tisserand and Nicolas Burrus.
19518 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19520 * src/reader.c: Warn about lacking semi-colons, do not complain.
19522 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19524 * data/bison.c++: Remove a debug line.
19526 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19528 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19529 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19530 provide a default implementation.
19532 2002-03-04 Akim Demaille <akim@epita.fr>
19534 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19535 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19536 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19537 * tests/semantic.at (Parsing Guards): Similarly.
19538 * src/reader.at (readgram): Complain if the last rule is not ended
19541 2002-03-04 Akim Demaille <akim@epita.fr>
19543 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19544 * src/closure.c: here.
19545 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19547 * src/warshall.h, src/warshall.c: Remove.
19548 * tests/sets.at (Broken Closure): Adjust.
19550 2002-03-04 Akim Demaille <akim@epita.fr>
19552 * src/output.c (output_skeleton): tempdir is const.
19553 bytes_read is unused.
19555 2002-03-04 Akim Demaille <akim@epita.fr>
19557 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19558 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19560 From Michael Hayes.
19562 2002-03-04 Akim Demaille <akim@epita.fr>
19564 * src/closure.c (closure): `r' is unused.
19566 2002-03-04 Akim Demaille <akim@epita.fr>
19568 * tests/sets.at (Broken Closure): Add the ending `;'.
19569 * src/reader.at (readgram): Complain if a rule is not ended with a
19572 2002-03-04 Akim Demaille <akim@epita.fr>
19574 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19575 (count_sr_conflicts): Use bitset_count.
19576 * src/reduce.c (inaccessable_symbols): Ditto.
19577 (bits_size): Remove.
19578 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19580 2002-03-04 Akim Demaille <akim@epita.fr>
19582 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19583 * src/reduce.c: Remove the `bitset_zero's following the
19584 `bitset_create's, as now it is performed by the latter.
19586 2002-03-04 Akim Demaille <akim@epita.fr>
19588 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19589 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19590 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19591 latest sources from Michael.
19593 2002-03-04 Akim Demaille <akim@epita.fr>
19595 * src/output.c (output): Don't free the grammar.
19596 * src/reader.c (grammar_free): New.
19597 * src/main.c (main): Call it and don't free symtab here.
19599 2002-03-04 Akim Demaille <akim@epita.fr>
19601 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19603 Reported by Benoit Perrot.
19605 2002-03-04 Akim Demaille <akim@epita.fr>
19607 Use bitset operations when possible, not loops over bits.
19609 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19611 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19612 * src/reduce.c (useless_nonterminals): Formatting changes.
19613 * src/warshall.c (TC): Use bitset_or.
19615 2002-03-04 Akim Demaille <akim@epita.fr>
19617 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19618 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19621 2002-03-04 Akim Demaille <akim@epita.fr>
19623 * src/lalr.c (F): Now a bitset*.
19624 Adjust all dependencies.
19626 2002-03-04 Akim Demaille <akim@epita.fr>
19628 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19629 Adjust all dependencies.
19631 2002-03-04 Akim Demaille <akim@epita.fr>
19633 * src/L0.c, src/LR0.h (nstates): Be size_t.
19634 Adjust comparisons (signed vs unsigned).
19635 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19637 Adjust all dependencies.
19639 2002-03-04 Akim Demaille <akim@epita.fr>
19641 * src/closure.c (firsts): Now, also a bitset.
19642 Adjust all dependencies.
19643 (varsetsize): Remove, now unused.
19644 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19646 2002-03-04 Akim Demaille <akim@epita.fr>
19648 * src/print.c: Convert to use bitset.h, not hand coded iterations
19651 2002-03-04 Akim Demaille <akim@epita.fr>
19653 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19655 2002-03-04 Akim Demaille <akim@epita.fr>
19657 * src/closure.c (ruleset): Be a bitset.
19658 (rulesetsize): Remove.
19660 2002-03-04 Akim Demaille <akim@epita.fr>
19662 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19663 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19664 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19665 * src/closure.c (fderives): Be an array of bitsets.
19667 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
19669 * data/bison.c++: Merge the two generated headers. Insert a copyright
19670 notice in each output file.
19672 2002-02-28 Akim Demaille <akim@epita.fr>
19674 * data/bison.c++: Copy the prologue of bison.simple to fetch
19675 useful M4 definitions, such as b4_header_guard.
19677 2002-02-25 Akim Demaille <akim@epita.fr>
19679 * src/getargs.c (version): Give the name of the authors, and use a
19680 translator friendly scheme for the bgr
19683 2002-02-25 Akim Demaille <akim@epita.fr>
19685 * src/output.c (header_output): Remove, now handled completely via
19688 2002-02-25 Akim Demaille <akim@epita.fr>
19690 * m4/m4.m4: New, from CVS Autoconf.
19691 * configure.in: Invoke it.
19692 * src/output.c (output_skeleton): Use its result instead of the
19695 2002-02-25 Akim Demaille <akim@epita.fr>
19697 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19699 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19700 * src/output.c (output_skeleton): Use mkstemp to create a real
19702 Move the filling of `skeleton' and its muscle to...
19704 (output): Move the definition of the prologue muscle to...
19706 * src/system.h (DEFAULT_TMPDIR): New.
19708 2002-02-14 Paul Eggert <eggert@twinsun.com>
19710 Remove the support for C++ namespace cleanliness; it was
19711 causing more problems than it was curing, since it didn't work
19712 properly on some nonstandard C++ compilers. This can wait
19713 for a proper C++ parser.
19715 * NEWS: Document this.
19716 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19717 of C++, as it's treated like C now.
19718 * src/bison.simple (YYSTD): Remove.
19719 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19720 Treat C++ just like Standard C instead of trying to support
19721 namespace cleanliness.
19723 2002-02-14 Akim Demaille <akim@epita.fr>
19725 * tests/regression.at (else): Adjust to Andreas' change.
19727 2002-02-14 Akim Demaille <akim@epita.fr>
19729 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19731 2002-02-13 Andreas Schwab <schwab@suse.de>
19733 * src/output.c (output_rule_data): Don't output NULL, it might
19734 not be defined yet.
19736 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
19738 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19739 (Copyright notice): Update.
19741 2002-02-11 Akim Demaille <akim@epita.fr>
19743 * tests/regression.at (%nonassoc and eof): Don't include
19744 nonportable headers.
19746 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
19748 * data/bison.c++: Correct error recovery. Make the user able to
19749 initialize the starting location.
19751 2002-02-07 Akim Demaille <akim@epita.fr>
19753 * tests/input.at: New.
19755 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19757 * data/bison.c++: Replace some direct m4 expansions by constants. Be
19758 more consistent when naming methods and variables. Put preprocessor
19759 directives around tables only needed for debugging.
19761 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19763 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19765 (yy::b4_name::parse): Use print_.
19767 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19769 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19771 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19773 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19775 (yy::b4_name::parse): Build verbose error messages, and use error_.
19777 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19779 * data/bison.c++: Fix m4 quoting in comments.
19781 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19783 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19784 not expanded by m4.
19786 2002-02-05 Akim Demaille <akim@epita.fr>
19788 * data/bison.c++: Adjust to the M4 back end.
19789 More is certainly needed.
19791 2002-02-05 Akim Demaille <akim@epita.fr>
19793 Give a try to M4 as a back end.
19795 * lib/readpipe.c: New, from wdiff.
19796 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19798 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19799 specific values. Now it is m4 that performs the lookup.
19800 * src/parse-skel.y: Remove.
19801 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19802 * src/output.c (actions_output, guards_output)
19803 (token_definitions_output): No longer keeps track of the output
19804 line number, hence remove the second argument.
19805 (guards_output): Check against the guard member of a rule, not the
19808 (output_skeleton): Don't look for the skeleton location, let m4 do
19810 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19812 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19813 (prepare): Given that for the time being changesyntax is not
19814 usable in M4, rename the muscles using `-' to `_'.
19815 Define `defines_flag', `output_parser_name' and `output_header_name'.
19816 * src/output.h (actions_output, guards_output)
19817 (token_definitions_output): Adjust prototypes.
19818 * src/scan-skel.l: Instead of scanning the skeletons, it now
19819 processes the output of m4: `__oline__' and `#output'.
19820 * data/bison.simple: Adjust to be used by M4(sugar).
19821 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19823 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19824 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19825 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19826 shamelessly stolen from CVS Autoconf.
19828 2002-02-05 Akim Demaille <akim@epita.fr>
19830 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19831 * configure.in: Check for the declarations of free and malloc.
19832 * src/muscle_tab.c: Adjust.
19834 2002-02-05 Akim Demaille <akim@epita.fr>
19836 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19837 which have no values.
19839 2002-02-05 Akim Demaille <akim@epita.fr>
19841 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19844 2002-01-29 Paul Eggert <eggert@twinsun.com>
19846 * src/bison.simple (YYSIZE_T): Do not define merely because
19847 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19848 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19850 2002-01-27 Akim Demaille <akim@epita.fr>
19852 Fix `%nonassoc and eof'.
19854 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19855 which were not properly copied! Replace
19856 memcpy (res->errs, src->errs, src->nerrs);
19858 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19860 * tests/regression.at (%nonassoc and eof): Adjust to newest
19861 Autotest: `.' is not in the PATH.
19863 2002-01-27 Akim Demaille <akim@epita.fr>
19865 * tests/sets.at (AT_EXTRACT_SETS): New.
19866 (Nullable): Use it.
19869 2002-01-26 Akim Demaille <akim@epita.fr>
19871 * tests/actions.at, tests/calc.at, tests/headers.at,
19872 * tests/torture.at: Adjust to the newest Autotest which no longer
19873 forces `.' in the PATH.
19875 2002-01-25 Akim Demaille <akim@epita.fr>
19877 * tests/regression.at (%nonassoc and eof): New.
19878 Suggested by Robert Anisko.
19880 2002-01-24 Akim Demaille <akim@epita.fr>
19882 Bison dumps core when trying to complain about broken input files.
19883 Reported by Cris van Pelt.
19885 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19886 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19888 (Invalid inputs): Strengthen: exercise parse_percent_token.
19890 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
19892 * src/Makefile.am: Add bison.c++.
19893 * src/bison.c++: New skeleton.
19895 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
19899 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19901 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19903 2002-01-20 Marc Autret <marc@gnu.org>
19905 * src/files.c (compute_output_file_names): Fix
19907 2002-01-20 Marc Autret <marc@gnu.org>
19909 * tests/output.at: New test.
19910 * src/files.c (compute_base_names): Don't map extensions when
19911 the YACC flag is set, use defaults.
19912 Reported by Evgeny Stambulchik.
19914 2002-01-20 Marc Autret <marc@gnu.org>
19916 * src/system.h: Need to define __attribute__ away for non-GCC
19917 compilers as well (i.e., the vendor C compiler).
19918 Suggested by Albert Chin-A-Young.
19920 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19922 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19923 canonical definition.
19924 * src/system.h: Use the canonical definition for PARAMS (avoids
19925 a conflict with the macro from lib/hash.h).
19927 2002-01-11 Akim Demaille <akim@epita.fr>
19929 * configure.in: Use AC_FUNC_STRNLEN.
19930 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
19932 2002-01-09 Akim Demaille <akim@epita.fr>
19934 * src/files.c, src/files.h (output_infix): New.
19935 (tab_extension): Remove.
19936 (compute_base_names): Compute the former, drop the latter.
19937 * src/output.c (prepare): Insert the muscles `output-infix', and
19939 * src/parse-skel.y (string, string.1): New.
19940 (section.header): Use it.
19941 (section.yacc): Remove.
19942 (prefix): Remove too.
19943 * src/scan-skel.l: Adjust.
19944 * src/bison.simple, src/bison.hairy: Adjust.
19946 2002-01-09 Akim Demaille <akim@epita.fr>
19948 * configure.in (WERROR_CFLAGS): Compute it.
19949 * src/Makefile.am (CFLAGS): Pass it.
19950 * tests/atlocal.in (CFLAGS): Idem.
19951 * src/files.c: Fix a few warnings.
19952 (get_extension_index): Remove, unused.
19954 2002-01-08 Akim Demaille <akim@epita.fr>
19956 * src/getargs.c (AS_FILE_NAME): New.
19957 (getargs): Use it to convert DOSish file names.
19958 * src/files.c (base_name): Rename as full_base_name to avoid
19959 clashes with `base_name ()'.
19960 (filename_split): New.
19961 (compute_base_names): N-th rewrite, using filename_split.
19963 2002-01-08 Akim Demaille <akim@epita.fr>
19965 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19966 New, stolen from the Fileutils 4.1.
19967 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19968 * configure.in: Check for the presence of memrchr, and of its
19971 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19973 * lib/hash.h (__P): Added definition for this macro.
19974 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19975 BUILT_SOURCES, to ensure they are generated first.
19976 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19977 %error-verbose to allow bootstrapping with bison 1.30x.
19979 2002-01-06 Akim Demaille <akim@epita.fr>
19981 * src/reader.c (parse_braces): Don't fetch the next char, the
19982 convention is to fetch on entry.
19983 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19984 'switch' without a following semicolon.
19985 * tests/regression.at (braces parsing): New.
19987 2002-01-06 Akim Demaille <akim@epita.fr>
19989 Bison is dead wrong in its RR conflict reports.
19991 * tests/torture.at (GNU Cim Grammar): New.
19992 * src/conflicts.c (count_rr_conflicts): Fix.
19994 2002-01-06 Akim Demaille <akim@epita.fr>
19996 Creating package.m4 from configure.ac causes too many problems.
19998 * tests/Makefile.am (package.m4): Create it by hand,
19999 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20001 2002-01-06 Akim Demaille <akim@epita.fr>
20003 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20006 2002-01-04 Paul Eggert <eggert@twinsun.com>
20008 * doc/bison.texinfo (Debugging):
20009 Remove YYSTDERR; it's no longer defined or used.
20010 Also, s/cstdio.h/cstdio/.
20012 2002-01-03 Akim Demaille <akim@epita.fr>
20014 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20016 2002-01-03 Akim Demaille <akim@epita.fr>
20018 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20019 tracing code to --trace, wait for a better --trace option, with
20022 2002-01-03 Akim Demaille <akim@epita.fr>
20024 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20025 The ISO C++ standard is extremely clear about it: stderr is
20026 considered a macro, not a regular symbol (see table 94 `Header
20027 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20028 Therefore std:: does not apply to it. It still does with fprintf.
20029 Also, s/cstdio.h/cstdio/.
20031 2002-01-03 Akim Demaille <akim@epita.fr>
20033 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20034 for non system headers.
20036 2002-01-02 Akim Demaille <akim@epita.fr>
20038 Equip the skeleton chain with location tracking, runtime trace,
20039 pure parser and scanner.
20041 * src/parse-skel.y: Request a pure parser, locations, and prefix
20043 (%union): Having several members with the same type does not help
20044 type mismatches, simplify.
20045 (YYPRINT, yyprint): New.
20046 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20047 (skel_error): this.
20049 * src/scan-skel.l: Adjust to these changes.
20050 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20051 (LOCATION_PRINT, skel_control_t): New.
20053 2001-12-30 Akim Demaille <akim@epita.fr>
20055 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20056 replace `gb' with BLANKS.
20057 * src/scan-skel.l: Adjust.
20059 2001-12-30 Akim Demaille <akim@epita.fr>
20061 * src/system.h: We don't need nor want bcopy.
20062 Throw away MS-DOS crap: we don't need getpid.
20063 * configure.in: We don't need strndup. It was even causing
20064 problems: because Flex includes the headers *before* us,
20065 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20067 * lib/xstrndup.c: New.
20068 * src/scan-skel.l: Use it.
20069 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
20070 * src/parse-skel.y: Use %directives instead of #defines.
20072 2001-12-30 Akim Demaille <akim@epita.fr>
20074 * src/skeleton.h: New.
20075 * src/output.c (output_parser, output_master_parser): Remove, dead
20077 * src/output.h (get_lines_number, actions_output, guards_output)
20078 (token_definitions_output): Prototype them.
20079 * src/parse-skel.y: Add the license notice.
20080 Include output.h and skeleton.h.
20081 (process_skeleton): Returns void, and takes a single parameter.
20082 * src/scan-skel.l: Add the license notice.
20083 Include skeleton.h.
20084 Don't use %option yylineno: it seems that then Flex imagines
20085 REJECT has been used, and therefore it won't reallocate its
20086 buffers (which makes no other sense to me than a bug). It results
20087 in warnings for `unused: yy_flex_realloc'.
20089 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
20091 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20092 (MUSCLE_INSERT_PREFIX): ...to there.
20093 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20094 (MUSCLE_INSERT_PREFIX): Move from here...
20096 * src/bison.hairy: Add a section directive. Put braces around muscle
20097 names. This parser skeleton is still broken, but Bison should not
20098 choke on a bad muscle 'syntax'.
20099 * src/bison.simple: Add a section directive. Put braces around muscle
20102 * src/files.h (strsuffix, stringappend): Add declarations.
20103 (tab_extension): Add declaration.
20104 (short_base_name): Add declaration.
20106 * src/files.c (strsuffix, stringappend): No longer static. These
20107 functions are used in the skeleton parser.
20108 (tab_extension): New.
20109 (compute_base_names): Use the computations done in this function
20110 to guess if the generated parsers should have '.tab' in their
20112 (short_base_name): No longer static.
20114 * src/output.c (output_skeleton): New.
20115 (output): Disable call to output_master_parser, and give a try to
20116 a new skeleton handling system.
20117 (guards_output, actions_output): No longer static.
20118 (token_definitions_output, get_lines_number): No longer static.
20120 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20122 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
20125 * src/parse-skel.y: New file.
20126 * src/scan-skel.l: New file.
20128 2001-12-29 Akim Demaille <akim@epita.fr>
20130 %name-prefix is broken.
20132 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20133 Adjust all dependencies.
20134 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20137 Renaming yylval but not yylloc is not consistent. Now we do.
20139 * src/bison.simple: Prefix yylloc if used.
20140 * doc/bison.texinfo (Decl Summary): Document that.
20142 2001-12-29 Akim Demaille <akim@epita.fr>
20144 * doc/bison.texinfo: Promote `%long-directive' over
20146 Remove all references to fixed-output-files, yacc is enough.
20148 2001-12-29 Akim Demaille <akim@epita.fr>
20150 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20151 user prologue. These are defaults.
20152 * tests/actions.at (Mid-rule actions): Make sure the user can
20153 define YYDEBUG and YYERROR_VERBOSE.
20155 2001-12-29 Akim Demaille <akim@epita.fr>
20157 * src/output.c (header_output): Don't forget to export YYLTYPE and
20159 * tests/headers.at (export YYLTYPE): New, make sure it does.
20160 * tests/regression.at (%union and --defines, Invalid CPP headers):
20162 * tests/headers.at: here.
20164 2001-12-29 Akim Demaille <akim@epita.fr>
20166 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20168 2001-12-29 Akim Demaille <akim@epita.fr>
20170 * tests/actions.at (Mid-rule actions): Output on a single line
20171 instead of several.
20173 2001-12-29 Akim Demaille <akim@epita.fr>
20175 * doc/bison.texinfo: Formatting changes.
20177 2001-12-29 Akim Demaille <akim@epita.fr>
20179 Don't store the token defs in a muscle, just be ready to output it
20180 on command. Now possible via `symbols'. Fixes a memory leak.
20182 * src/output.c (token_definitions_output): New.
20183 (output_parser, header_output): Use it.
20184 * src/reader.c (symbols_save): Remove.
20186 2001-12-29 Akim Demaille <akim@epita.fr>
20188 * src/bison.simple: Do not provide a default for YYSTYPE and
20189 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20192 2001-12-29 Akim Demaille <akim@epita.fr>
20194 Mid-rule actions are simply... ignored!
20196 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20197 the empty-rule associated to the dummy symbol, not to the host
20199 * tests/actions.at (Mid-rule actions): New.
20201 2001-12-29 Akim Demaille <akim@epita.fr>
20205 * src/reader.c (reader): Free grammar.
20207 2001-12-29 Akim Demaille <akim@epita.fr>
20211 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20212 since it allocates it for each state, although only one is needed.
20213 (allocate_storage): Do it here.
20215 2001-12-29 Akim Demaille <akim@epita.fr>
20217 * src/options.h, src/options.c (create_long_option_table): Rename
20219 (long_option_table_new): this, with a clearer prototype.
20220 (percent_table): Remove, unused,
20221 * src/getargs.c (getargs): Adjust.
20223 2001-12-29 Akim Demaille <akim@epita.fr>
20225 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20226 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20229 2001-12-29 Akim Demaille <akim@epita.fr>
20231 * src/lalr.c (build_relations): Rename `states' as `states1'.
20232 Sorry, I don't understand exactly what it is, no better name...
20234 2001-12-29 Akim Demaille <akim@epita.fr>
20236 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20237 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20238 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20241 2001-12-29 Akim Demaille <akim@epita.fr>
20243 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20246 2001-12-29 Akim Demaille <akim@epita.fr>
20248 * src/reader.c, src/reader.h (user_toknums): Remove.
20249 Adjust all users to use symbols[i]->user_token_number.
20251 2001-12-29 Akim Demaille <akim@epita.fr>
20253 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20254 Adjust all users to use symbols[i]->prec or ->assoc.
20256 2001-12-29 Akim Demaille <akim@epita.fr>
20258 * src/reader.c, src/reader.h (tags): Remove.
20259 Adjust all users to use symbols[i]->tag.
20261 2001-12-29 Akim Demaille <akim@epita.fr>
20263 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20265 * src/reader.c (packsymbols): Fill this table.
20267 * src/conflicts.c (resolve_sr_conflict): Adjust.
20268 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20270 Use symbols[i]->tag instead of tags[i].
20272 2001-12-29 Akim Demaille <akim@epita.fr>
20274 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20275 In addition, put a comment in there, to replace...
20276 * tests/regression.at (%union and C comments): Remove.
20278 2001-12-29 Akim Demaille <akim@epita.fr>
20280 * tests/regression.at (Web2c Actions): Blindly move the actual
20281 output as expected output. The contents *seem* right to me, but I
20282 can't pretend reading perfectly parser tables... Nonetheless, all
20283 the other tests pass correctly, the table look OK, even though the
20284 presence of `$axiom' is to be noted: AFAICS it is useless (but
20287 2001-12-29 Akim Demaille <akim@epita.fr>
20289 * src/reader.c (readgram): Don't add the rule 0 if there were no
20290 rules read. In other words, add it _after_ having performed
20291 grammar sanity checks.
20292 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20294 2001-12-29 Akim Demaille <akim@epita.fr>
20296 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20297 visible, and some states have now a different number.
20299 2001-12-29 Akim Demaille <akim@epita.fr>
20301 * src/reader.c (readgram): Bind the initial rule's lineno to that
20303 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20304 (Solved SR Conflicts): Adjust rule 0's line number.
20306 2001-12-29 Akim Demaille <akim@epita.fr>
20308 Fix the `GAWK Grammar' failure.
20310 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20311 the reductions of the first state which was mistakenly confused
20312 with the final state because precisely final_state was initialized
20314 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20315 now noticed by Bison.
20316 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20317 have a reduction on $default.
20319 2001-12-29 Akim Demaille <akim@epita.fr>
20321 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20323 * src/closure.c (print_closure): Likewise.
20324 * src/derives.c (print_derives): Likewise.
20325 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20328 2001-12-29 Akim Demaille <akim@epita.fr>
20330 * src/lalr.c (lookaheads_print): New.
20331 (lalr): Call it when --trace-flag.
20332 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20335 2001-12-29 Akim Demaille <akim@epita.fr>
20337 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20338 when walking through ritem, even via rule->rhs.
20339 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20340 (useful_production, useless_nonterminals): Likewise.
20341 (reduce_grammar_tables): Likewise, plus update nritems.
20342 * src/nullable.c (set_nullable): Likewise.
20343 * src/lalr.c (build_relations): Likewise.
20344 * tests/sets.at (Nullable): Adjust.
20345 Fortunately, now, the $axiom is no longer nullable.
20347 2001-12-29 Akim Demaille <akim@epita.fr>
20349 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20351 * src/gram.c (ritem_longest_rhs): Likewise.
20352 * src/reduce.c (nonterminals_reduce): Likewise.
20353 * src/print_graph.c (print_graph): Likewise.
20354 * src/output.c (output_rule_data): Likewise.
20355 * src/nullable.c (set_nullable): Likewise.
20357 2001-12-29 Akim Demaille <akim@epita.fr>
20359 * src/output.c: Comment changes.
20361 2001-12-27 Paul Eggert <eggert@twinsun.com>
20363 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20364 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20365 Sparc, as they were causing more porting problems than the
20366 (minor) performance improvement was worth.
20368 Also, catch up with 1.31's YYSTD.
20370 2001-12-27 Akim Demaille <akim@epita.fr>
20372 * src/output.c (output_gram): Rely on nritems, not the
20373 0-sentinel. See below.
20374 Use -1 as separator, not 0.
20375 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20376 Rely on -1 as separator in yyrhs, instead of 0.
20377 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20378 twice `Now at end of input', therefore there are two lines less to
20381 2001-12-27 Akim Demaille <akim@epita.fr>
20383 * tests/regression.at (Unresolved SR Conflicts):
20384 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20387 2001-12-27 Akim Demaille <akim@epita.fr>
20389 * src/LR0.c (new_state): Recognize the final state by the fact it
20390 is reached by eoftoken.
20391 (insert_start_shifting_state, insert_eof_shifting_state)
20392 (insert_accepting_state, augment_automaton): Remove, since now
20393 these states are automatically computed from the initial state.
20394 (generate_states): Adjust.
20395 * src/print.c: When reporting a rule number to the user, substract
20396 1, so that the axiom rule is rule 0, and the first user rule is 1.
20397 * src/reduce.c: Likewise.
20398 * src/print_graph.c (print_core): For the time being, just as for
20399 the report, depend upon --trace-flags to dump the full set of
20401 * src/reader.c (readgram): Once the grammar read, insert the rule
20402 0: `$axiom: START-SYMBOL $'.
20403 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20404 number of the states has changed (the final state is no longer
20405 necessarily the last), catch up.
20407 2001-12-27 Akim Demaille <akim@epita.fr>
20409 Try to make the use of the eoftoken valid. Given that its value
20410 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20411 is used instead of > 0 where appropriate, (ii), depend upon nritems
20412 instead of the 0-sentinel.
20414 * src/gram.h, src/gram.c (nritems): New.
20415 Expected to be duplication of nitems, but for the time being...
20416 * src/reader.c (packgram): Assert nritems and nitems are equal.
20417 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20418 * src/closure.c (print_closure, print_fderives): Likewise.
20419 * src/gram.c (ritem_print): Likewise.
20420 * src/print.c (print_core, print_grammar): Likewise.
20421 * src/print_graph.c: Likewise.
20423 2001-12-27 Akim Demaille <akim@epita.fr>
20425 * src/main.c (main): If there are complains after grammar
20426 reductions, then output the report anyway if requested, then die.
20427 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20428 * src/reader.c (eoftoken): New.
20429 (parse_token_decl): If the token being defined has value `0', it
20431 (packsymbols): No longer hack `tags' to insert `$' by hand.
20432 Be sure to preserve the value of the eoftoken.
20433 (reader): Make sure eoftoken is defined.
20434 Initialize nsyms to 0: now eoftoken is created just like the others.
20435 * src/print.c (print_grammar): Don't special case the eof token.
20436 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20437 lie anyway, albeit pleasant.
20438 * tests/calc.at: Exercise error messages with eoftoken.
20439 Change the grammar so that empty input is invalid.
20440 Adjust expectations.
20441 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20443 2001-12-27 Akim Demaille <akim@epita.fr>
20445 * configure.in: Check the protos of strchr ans strspn.
20446 Replace strchr if needed.
20447 * src/system.h: Provide the protos of strchr, strspn and memchr if
20449 * lib/strchr.c: New.
20450 * src/reader.c (symbols_save): Use strchr.
20452 2001-12-27 Akim Demaille <akim@epita.fr>
20454 * src/print.c, src/print_graph.c (escape): New.
20455 Use it to quote the TAGS outputs.
20456 * src/print_graph.c (print_state): Now errors are in red, and
20457 reductions in green.
20458 Prefer high to wide: output the state number on a line of its own.
20460 2001-12-27 Akim Demaille <akim@epita.fr>
20462 * src/state.h, src/state.c (reductions_new): New.
20463 * src/LR0.c (set_state_table): Let all the states have a
20464 `reductions', even if reduced to 0.
20465 (save_reductions): Adjust.
20466 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20467 * src/print.c (print_reductions, print_actions): Adjust.
20468 * src/output.c (action_row): Adjust.
20470 2001-12-27 Akim Demaille <akim@epita.fr>
20472 * src/state.h, src/state.c (errs_new, errs_dup): New.
20473 * src/LR0.c (set_state_table): Let all the states have an errs,
20474 even if reduced to 0.
20475 * src/print.c (print_errs, print_reductions): Adjust.
20476 * src/output.c (output_actions, action_row): Adjust.
20477 * src/conflicts.c (resolve_sr_conflict): Adjust.
20479 2001-12-27 Akim Demaille <akim@epita.fr>
20481 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20483 2001-12-27 Akim Demaille <akim@epita.fr>
20485 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20486 * src/print.c: here.
20487 (lookaheadset, shiftset): New, used as additional storage by
20489 (print_results): Adjust.
20490 (print_shifts, print_gotos, print_errs): New, extracted from...
20491 (print_actions): here.
20492 * src/print_graph.c (print_actions): Remove dead code.
20494 2001-12-27 Akim Demaille <akim@epita.fr>
20496 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20499 2001-12-27 Akim Demaille <akim@epita.fr>
20501 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20502 (build_relations): Adjust.
20504 2001-12-27 Akim Demaille <akim@epita.fr>
20506 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20509 2001-12-27 Akim Demaille <akim@epita.fr>
20511 * src/reader.c (packgram): Catch nitems overflows.
20513 2001-12-27 Akim Demaille <akim@epita.fr>
20515 * src/files.c, src/files.h (guard_obstack): Remove.
20516 * src/output.c (output): Adjust.
20517 * src/reader.c (parse_braces): New, factoring...
20518 (copy_action, copy_guard): these two which are renamed as...
20519 (parse_action, parse_guard): these.
20520 As a voluntary consequence, using braces around guards is now
20523 2001-12-27 Akim Demaille <akim@epita.fr>
20525 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20526 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20528 (symbol_list_new): Adjust.
20529 (copy_action): action_line is the first line, not the last.
20530 (copy_guard): Just as for actions, store the `action' only, not
20531 the switch/case/break flesh.
20532 Don't parse the user action that might follow the guard, let...
20533 (readgram): do it, i.e., now, there can be an action after a
20535 In other words the guard is just explicitly optional.
20536 (packgram): Adjust.
20537 * src/output.c (guards_output): New.
20538 (output_parser): Call it when needed.
20539 (output): Also free the guard and attrs obstacks.
20540 * src/files.c, src/files.h (obstack_save): Remove.
20541 (output_files): Remove.
20542 As a result, if one needs the former `.act' file, using an
20543 appropriate skeleton which requires actions and guards is now
20545 * src/main.c (main): Adjust.
20546 * tests/semantic.at: New.
20547 * tests/regression.at: Use `input.y' as input file name.
20548 Avoid 8+3 problems by requiring input.c when the test needs the
20551 2001-12-27 Akim Demaille <akim@epita.fr>
20553 * src/reader.c (symbol_list_new): Be sure to initialize all the
20556 2001-12-27 Akim Demaille <akim@epita.fr>
20558 All the hacks using a final pseudo state are now useless.
20560 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20561 * src/lalr.c (nLA): New.
20562 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20563 instead of lookaheadsp from the pseudo state (nstate + 1).
20565 2001-12-27 Akim Demaille <akim@epita.fr>
20567 * src/output.c (action_row, token_actions): Use a state_t instead
20568 of a integer, and nlookaheads instead of the following state's
20571 2001-12-27 Akim Demaille <akim@epita.fr>
20573 * src/conflicts.c (log_resolution, flush_shift)
20574 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20575 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20576 (conflicts_print, print_reductions): Use a state_t instead of an
20577 integer when referring to a state.
20578 As much as possible, depend upon nlookaheads, instead of the
20579 `lookaheadsp' member of the following state (since lookaheads of
20580 successive states are successive, the difference between state n + 1
20581 and n served as the number of lookaheads for state n).
20582 * src/lalr.c (add_lookback_edge): Likewise.
20583 * src/print.c (print_core, print_actions, print_state)
20584 (print_results): Likewise.
20585 * src/print_graph.c (print_core, print_actions, print_state)
20586 (print_graph): Likewise.
20587 * src/conflicts.h: Adjust.
20589 2001-12-27 Akim Demaille <akim@epita.fr>
20591 * src/bison.hairy: Formatting/comment changes.
20593 Remove `register' indications.
20594 Add plenty of `static'.
20596 2001-12-27 Akim Demaille <akim@epita.fr>
20598 * src/output.c (prepare): Drop the muscle `ntbase' which
20599 duplicates ntokens.
20600 * src/bison.simple: Formatting/comment changes.
20601 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20602 is an undocumented synonym.
20604 2001-12-22 Akim Demaille <akim@epita.fr>
20606 * src/output.c (output_table_data): Change the prototype to use
20607 `int' for array ranges: some invocations do pass an int, not a
20609 Reported by Wayne Green.
20611 2001-12-22 Akim Demaille <akim@epita.fr>
20613 Some actions of web2c.y are improperly triggered.
20614 Reported by Mike Castle.
20616 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20617 * tests/regression.at (Web2c): Rename as...
20618 (Web2c Report): this.
20619 (Web2c Actions): New.
20621 2001-12-22 Akim Demaille <akim@epita.fr>
20623 Reductions in web2c.y are improperly reported.
20624 Reported by Mike Castle.
20626 * src/conflicts.c (print_reductions): Fix.
20627 * tests/regression.at (Web2c): New.
20629 2001-12-18 Akim Demaille <akim@epita.fr>
20631 Some host fail on `assert (!"foo")', which expands to
20632 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20633 Reported by Nelson Beebee.
20635 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20636 `#define it_succeeded 0' and `assert (it_succeeded)'.
20638 2001-12-17 Marc Autret <autret_m@epita.fr>
20640 * src/bison.simple: Don't hard code the skeleton line and filename.
20641 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20642 New line counter 'skeleton_line' (skeleton-line muscle).
20644 2001-12-17 Paul Eggert <eggert@twinsun.com>
20646 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20647 YYDEBUG must be defined to a nonzero value.
20649 * src/bison.simple (yytname): Do not assume that the user defines
20650 YYDEBUG to a properly parenthesized expression.
20652 2001-12-17 Akim Demaille <akim@epita.fr>
20654 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20655 nlookaheads is a new member.
20657 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20658 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20661 2001-12-17 Akim Demaille <akim@epita.fr>
20663 * src/files.h, src/files.c (open_files, close_files): Remove.
20664 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20666 * src/reader.c (reader): Do it.
20668 2001-12-17 Akim Demaille <akim@epita.fr>
20670 * src/conflicts.c (print_reductions): Formatting changes.
20672 2001-12-17 Akim Demaille <akim@epita.fr>
20674 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20675 (flush_reduce): New.
20676 (resolve_sr_conflict): Adjust.
20678 2001-12-17 Akim Demaille <akim@epita.fr>
20680 * src/output.c (output_obstack): Be static and rename as...
20681 (format_obstack): this, to avoid any confusion with files.c's
20683 * src/reader.h (muscle_obstack): Move to...
20684 * src/output.h: here, since it's defined in output.c.
20686 2001-12-17 Akim Demaille <akim@epita.fr>
20688 * src/output.c (action_row, save_column, default_goto)
20689 (sort_actions, matching_state, pack_vector): Better variable
20692 2001-12-17 Akim Demaille <akim@epita.fr>
20694 * src/output.c: Various formatting changes.
20696 2001-12-17 Akim Demaille <akim@epita.fr>
20698 * src/files.c (output_files): Free the output_obstack.
20699 * src/main.c (main): Call print and print_graph conditionally.
20700 * src/print.c (print): Work unconditionally.
20701 * src/print_graph.c (print_graph): Work unconditionally.
20702 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20704 2001-12-16 Marc Autret <autret_m@epita.fr>
20706 * src/output.c (actions_output): Fix. When we use %no-lines,
20707 there is one less line per action.
20709 2001-12-16 Marc Autret <autret_m@epita.fr>
20711 * src/bison.simple: Remove a useless #line directive.
20712 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20713 * src/output.c (get_lines_number): New.
20714 (output_parser): Adjust, now takes care about the lines of a
20716 Fix line numbering.
20717 (actions_output): Computes the number of lines taken by actions.
20718 (output_master_parser): Insert new skeleton which is the name of
20719 the output parser file name.
20721 2001-12-15 Marc Autret <autret_m@epita.fr>
20723 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20725 2001-12-15 Marc Autret <autret_m@epita.fr>
20727 * src/output.c (output_gram): Keep track of the hairy one.
20729 2001-12-15 Akim Demaille <akim@epita.fr>
20731 Make `make distcheck' work.
20733 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20734 system.h which uses libgettext.h.
20736 2001-12-15 Akim Demaille <akim@epita.fr>
20738 * src/nullable.c (set_nullable): Useless rules must be skipped,
20739 otherwise, since we range over their symbols, we might look at a
20740 nonterminal which no longer ``exists'', i.e., it is not counted in
20741 `nvars', hence we overflow our arrays.
20743 2001-12-15 Akim Demaille <akim@epita.fr>
20745 The header can also be produced directly, without any obstack!
20748 * src/files.c, src/files.h (defines_obstack): Remove.
20749 (compute_header_macro): Global.
20750 (defines_obstack_save): Remove.
20751 * src/reader.c (parse_union_decl): No longer output to
20752 defines_obstack: its content can be found in the `stype' muscle
20754 (output_token_translations): Merge into...
20755 (symbols_output): this.
20757 (symbols_save): this.
20759 * src/output.c (header_output): New.
20762 2001-12-15 Akim Demaille <akim@epita.fr>
20764 * src/reader.c (parse_union_decl): Instead of handling two obstack
20765 simultaneously, use one to define the `stype' muscle, and use the
20766 value of the latter to fill defines_obstack.
20767 (copy_comment): Remove.
20768 (copy_comment2): Work for a single obstack.
20770 (copy_comment): this.
20772 2001-12-15 Akim Demaille <akim@epita.fr>
20774 * src/lex.c, src/lex.h (xgetc): No longer static.
20775 * src/reader.c (parse_union_decl): Revamp.
20777 2001-12-15 Akim Demaille <akim@epita.fr>
20779 Still making progress in separating Bison into (i) input, (ii)
20780 process, (iii) output: now we can directly output the parser file
20781 without using table_obstack at all.
20783 * src/files.c, src/files.h (table_obstack): Bye bye.
20784 (parser_file_name): New.
20785 * src/files.c (compute_output_file_names): Compute it.
20786 * src/output.c (actions_output, output_parser)
20787 (output_master_parser): To a file instead of an obstack.
20789 2001-12-15 Akim Demaille <akim@epita.fr>
20791 Attach actions to rules, instead of pre-outputting them to
20794 * src/gram.h (rule_t): action and action_line are new members.
20795 * src/reader.c (symbol_list): Likewise.
20796 (copy_action): Save the actions within the rule.
20797 (packgram): Save them in rule_table.
20798 * src/output.c (actions_output): New.
20799 (output_parser): Use it on `%%actions'.
20800 (output_rule_data): Don't free rule_table.
20802 (prepare): Don't save the `action' muscle.
20803 * src/bison.simple: s/%%action/%%actions/.
20805 2001-12-15 Akim Demaille <akim@epita.fr>
20807 * src/reader.c (copy_action): When --yacc, don't append a `;'
20808 to the user action: let it fail if lacking.
20809 Suggested by Arnold Robbins and Tom Tromey.
20811 2001-12-14 Akim Demaille <akim@epita.fr>
20813 * src/lex.c (literalchar): Simply return the char you decoded, non
20814 longer mess around with obstacks and int pointers.
20815 Adjust all callers.
20817 2001-12-14 Akim Demaille <akim@epita.fr>
20819 * src/lex.c (literalchar): Don't escape the special characters,
20820 just decode them, and keep them as char (before, eol was output as
20821 the 2 char string `\n' etc.).
20822 * src/output.c (output_rule_data): Use quotearg to output the
20825 2001-12-13 Paul Eggert <eggert@twinsun.com>
20827 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20828 Do not infringe on the global user namespace when using C++.
20829 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20830 All uses of `fprintf' and `stderr' changed.
20832 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20834 2001-12-13 Akim Demaille <akim@epita.fr>
20836 The computation of nullable is broken: it doesn't handle empty
20839 * tests/torture.at (GNU AWK Grammar): New.
20840 * tests/sets.at (Nullable): New.
20841 * src/nullable.c (set_nullable): Instead of blindly looping over
20842 `ritems', loop over the rules, and then over their rhs's.
20844 Work around Autotest bugs.
20846 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20847 frame, because Autotest understand lines starting with a `+' as
20848 traces from the shell. Then, they are not processed properly.
20849 Admittedly an Autotest bug, but we don't have time to wait for
20850 Autotest to catch up.
20851 * tests/regression.at (Broken Closure): Adjust to the new table
20854 * tests/sets.at: here.
20856 2001-12-13 Akim Demaille <akim@epita.fr>
20858 * src/closure.c (closure): Use nrules instead of playing tricks
20859 with BITS_PER_WORD.
20861 2001-12-13 Akim Demaille <akim@epita.fr>
20863 * src/print.c (print_actions): Output the handling of `$' as the
20864 traces do: shifting the token EOF. Before EOF was treated as a
20866 * tests/regression.at: Adjust some tests.
20867 * src/print_graph.c (print_core): Complete the set of items via
20868 closure. The next-to-final and final states are still unsatisfying,
20869 but that's to be addressed elsewhere.
20870 No longer output the rule numbers, but do output the state number.
20871 A single loop for the shifts + gotos is enough, but picked a
20872 distinct color for each.
20873 (print_graph): Initialize and finalize closure.
20875 2001-12-13 Akim Demaille <akim@epita.fr>
20877 * src/reader.c (readgram): Remove dead code, an strip useless
20879 (get_type): Remove, unused.
20881 2001-12-12 Akim Demaille <akim@epita.fr>
20883 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20884 on that of lib/error.c.
20886 2001-12-12 Akim Demaille <akim@epita.fr>
20888 Some hosts don't like `/' in includes.
20890 * src/system.h: Include libgettext.h without qualifying the path.
20891 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20894 2001-12-11 Marc Autret <autret_m@epita.fr>
20896 * src/output.c (output_parser): Remove useless muscle.
20898 2001-12-11 Marc Autret <autret_m@epita.fr>
20900 * src/bison.simple: Remove #line just before %%epilogue. It
20901 is now handled in ...
20902 * src/reader.c (read_additionnal_code): Add the output of a
20903 #line for the epilogue.
20905 2001-12-10 Marc Autret <autret_m@epita.fr>
20907 * src/reader.c (copy_definition): Re-use CPP-outed code which
20908 replace precedent remove.
20909 * src/bison.simple: Remove #line before %%prologue because
20910 %%input-line is wrong at this time.
20912 2001-12-10 Marc Autret <autret_m@epita.fr>
20914 * src/reader.c (symbols_output): Clean up.
20915 * src/output.c (output_gram, output): Clean up.
20917 2001-12-10 Akim Demaille <akim@epita.fr>
20919 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20920 * src/LR0.c (set_state_table): here.
20921 * src/lalr.c (lalr): Call it.
20923 2001-12-10 Akim Demaille <akim@epita.fr>
20925 * src/state.h (shifts): Remove the `number' member: shifts are
20926 attached to state, hence no longer need to be labelled with a
20929 2001-12-10 Akim Demaille <akim@epita.fr>
20931 Now that states have a complete set of members, the linked list of
20932 shifts is useless: just fill directly the state's shifts member.
20934 * src/state.h (shifts): Remove the `next' member.
20935 * src/LR0.c (first_state, last_state): Remove.
20936 Adjust the callers.
20937 (augment_automaton): Don't look for the shifts that must be added
20938 a shift on EOF: it is those of the state we looked for! But now,
20939 since shifts are attached, it is no longer needed to looking
20940 merely by its id: its number.
20942 2001-12-10 Akim Demaille <akim@epita.fr>
20944 * src/LR0.c (augment_automaton): Better variable locality.
20945 Remove an impossible branch: if there is a state corresponding to
20946 the start symbol being shifted, then there is shift for the start
20947 symbol from the initial state.
20949 2001-12-10 Akim Demaille <akim@epita.fr>
20951 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20952 only when appropriate: when insert_start_shifting_state' is not
20954 * tests/regression.at (Rule Line Numbers): Adjust.
20956 2001-12-10 Akim Demaille <akim@epita.fr>
20958 * src/LR0.c (augment_automaton): Now that all states have shifts,
20959 merge the two cases addition shifts to the initial state.
20961 2001-12-10 Akim Demaille <akim@epita.fr>
20963 * src/lalr.c (set_state_table): Move to...
20965 * src/lalr.c (lalr): Don't call it...
20966 * src/LR0.c (generate_states): do it.
20967 * src/LR0.h (first_state): Remove, only the table is used.
20969 2001-12-10 Akim Demaille <akim@epita.fr>
20971 * src/LR0.h (first_shift, first_reduction): Remove.
20972 * src/lalr.c: Don't use first_shift: find shifts through the
20975 2001-12-10 Akim Demaille <akim@epita.fr>
20977 * src/LR0.c: Attach shifts to states as soon as they are
20979 * src/lalr.c (set_state_table): Instead of assigning shifts to
20980 state, just assert that the mapping was properly done.
20982 2001-12-10 Akim Demaille <akim@epita.fr>
20984 * src/LR0.c (insert_start_shift): Rename as...
20985 (insert_start_shifting_state): this.
20986 (insert_eof_shifting_state, insert_accepting_state): New.
20987 (augment_automaton): Adjust.
20988 Better locality of the variables.
20989 When looking if the start_symbol is shifted from the initial
20990 state, using `while (... symbol != start_symbol ...)' sounds
20991 better than `while (... symbol < start_symbol ...)': If fail
20992 to see how the order between symbols could be relevant!
20994 2001-12-10 Akim Demaille <akim@epita.fr>
20996 * src/getargs.h: Don't declare `spec_name_prefix' and
20997 `spec_file_prefix', declared by src/files.h.
20998 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20999 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21000 * src/output.c (prepare): Adjust.
21001 * src/reader.c (symbols_output): Likewise.
21002 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21004 2001-12-10 Akim Demaille <akim@epita.fr>
21006 * src/muscle_tab.c (muscle_init): NULL is a better default than
21009 2001-12-10 Akim Demaille <akim@epita.fr>
21011 * src/reader.c (reader): Calling symbols_output once is enough.
21013 2001-12-10 Akim Demaille <akim@epita.fr>
21015 Now that states have a complete set of members, the linked list of
21016 reductions is useless: just fill directly the state's reductions
21019 * src/state.h (struct reductions): Remove member `number' and
21021 * src/LR0.c (first_reduction, last_reduction): Remove.
21022 (save_reductions): Don't link the new reductions, store them in
21024 * src/lalr.c (set_state_table): No need to attach reductions to
21025 states, it's already done.
21026 * src/output.c (output_actions): No longer free the shifts, then
21027 the reductions, then the states: free all the states and their
21030 2001-12-10 Akim Demaille <akim@epita.fr>
21032 * src/options.c (OPTN, DRTV, BOTH): New.
21033 (option_table): Use them.
21035 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21036 the job of system.h.
21037 * src/options.c: Don't include stdio.h and xalloc.h for the same
21040 2001-12-10 Akim Demaille <akim@epita.fr>
21042 * src/output.c (output, prepare): Make sure the values of the
21043 muscles `action' and `prologue' are 0-terminated.
21045 2001-12-10 Akim Demaille <akim@epita.fr>
21047 Clean up GCC warnings.
21049 * src/reader.c (copy_action): `buf' is not used.
21050 (parse_skel_decl): Be static.
21051 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21052 * src/options.h (create_long_option_table): Have a real prototype.
21053 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21054 (hash_delete_at): Return const void *.
21055 Adjust casts to preserve the const.
21057 2001-12-10 Akim Demaille <akim@epita.fr>
21059 * configure.in: Require 2.52g.
21060 M4 is not needed, but AUTOM4TE is.
21061 * m4/m4.m4: Remove.
21062 * tests/Makefile.am: Adjust.
21064 2001-12-10 Akim Demaille <akim@epita.fr>
21066 One structure for states is enough, even though theoretically
21067 there are LR(0) states and LALR(1) states.
21069 * src/lalr.h (state_t): Remove.
21070 (state_table): Be state_t **, not state_t *.
21071 * src/state.h (core, CORE_ALLOC): Rename as...
21072 (state_t, STATE_ALLOC): this.
21073 Add the LALR(1) members: shifts, reductions, errs.
21074 * src/LR0.c (state_table): Rename as...
21075 (state_hash): this, to avoid name clashes with the global
21077 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
21078 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
21080 2001-12-10 Akim Demaille <akim@epita.fr>
21082 Bison dumps core on bash.y.
21083 Reported by Pascal Bart.
21085 * src/warshall.c (bitmatrix_print): New.
21087 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
21088 j must be the outer loop.
21089 * tests/regression.at (Broken Closure): New.
21091 2001-12-05 Akim Demaille <akim@epita.fr>
21093 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21095 Reported by Peter Hamorsky.
21097 2001-12-05 Akim Demaille <akim@epita.fr>
21099 * src/conflicts.c (err_table): Remove.
21100 (resolve_sr_conflict): Adjust.
21101 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21103 (state_t.reductions, state_t.shifts): this.
21105 2001-12-05 Akim Demaille <akim@epita.fr>
21107 * src/reduce.c (reduce_grammar_tables): No longer disable the
21108 removal of useless rules via CPP but via `if (0)', so that the
21109 compiler still check the code is valid.
21110 For instance, it should have noticed `rline' no longer exists: use
21111 the `line' member of rule_t.
21112 * src/gram.c (dummy, rline): Remove, unused.
21114 2001-12-05 Akim Demaille <akim@epita.fr>
21116 * src/output.c (pack_vector): Use assert, not berror.
21117 * src/main.c (berror): Remove, unused.
21119 2001-12-05 Akim Demaille <akim@epita.fr>
21121 New experimental feature: if --verbose --trace output all the
21122 items of a state, not only its kernel.
21124 * src/print.c (print_core): If `trace_flag', then invoke closure
21125 before outputting the items of the state (print_core is no longer
21126 a correct name them).
21127 (print_results): Invoke new_closure/free_closure if needed.
21129 2001-12-05 Akim Demaille <akim@epita.fr>
21131 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21132 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21133 (nitemset): for consistency with the rest of the project.
21135 2001-12-05 Akim Demaille <akim@epita.fr>
21137 * src/closure.c (print_closure): Improve.
21138 (closure): Use it for printing input and output.
21140 2001-12-05 Akim Demaille <akim@epita.fr>
21142 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21143 indexed by nonterminals.
21145 2001-12-05 Akim Demaille <akim@epita.fr>
21147 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21149 * src/warshall.h: Remove accidental duplication of the content.
21151 2001-12-05 Akim Demaille <akim@epita.fr>
21153 * src/closure.c (set_fderives): De-obfuscate.
21155 2001-12-05 Akim Demaille <akim@epita.fr>
21157 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21159 2001-12-05 Akim Demaille <akim@epita.fr>
21161 * src/closure.c (set_firsts): De-obfuscate.
21163 2001-12-05 Akim Demaille <akim@epita.fr>
21165 * src/output.c (action_row): De-obfuscate
21166 using the good o' techniques: arrays not pointers, variable
21167 locality, BITISSET, RESETBIT etc.
21169 2001-12-05 Akim Demaille <akim@epita.fr>
21171 Pessimize the code to simplify it: from now on, all the states
21172 have a valid SHIFTS, which NSHIFTS is possibly 0.
21174 * src/LR0.c (shifts_new): Be global and move to..
21175 * src/state.c, src/state.h: here.
21176 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21177 * src/print_graph: Adjust.
21179 2001-12-05 Akim Demaille <akim@epita.fr>
21181 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21182 * src/conflicts.c: Use it.
21183 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21184 incorrectly ``simplified''.
21186 2001-12-05 Akim Demaille <akim@epita.fr>
21188 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21189 using the good o' techniques: arrays not pointers, variable
21190 locality, BITISSET, RESETBIT etc.
21192 2001-12-05 Akim Demaille <akim@epita.fr>
21194 * src/state.h (SHIFT_SYMBOL): New.
21195 * src/conflicts.c: Use it to deobfuscate.
21197 2001-12-05 Akim Demaille <akim@epita.fr>
21199 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21200 (print_reductions): De-obfuscate using the good o' techniques:
21201 arrays not pointers, variable locality, BITISSET.
21203 2001-12-05 Akim Demaille <akim@epita.fr>
21205 * src/conflicts.c (print_reductions): Arrays, not pointers.
21208 2001-12-05 Akim Demaille <akim@epita.fr>
21210 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21212 2001-12-05 Akim Demaille <akim@epita.fr>
21214 * src/conflicts.c (print_reductions): Improve variable locality.
21216 2001-12-05 Akim Demaille <akim@epita.fr>
21218 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21220 2001-12-05 Akim Demaille <akim@epita.fr>
21222 * src/conflicts.c (print_reductions): Improve variable locality.
21224 2001-12-05 Akim Demaille <akim@epita.fr>
21226 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21227 * src/lalr.c: Use them.
21229 2001-12-05 Akim Demaille <akim@epita.fr>
21231 * src/LR0.c (augment_automaton): Formatting changes.
21232 Better variable locality.
21234 2001-12-05 Akim Demaille <akim@epita.fr>
21236 * src/lalr.c (matrix_print): New.
21237 (transpose): Use it.
21238 Use arrays instead of pointers.
21240 2001-12-05 Akim Demaille <akim@epita.fr>
21242 * src/lalr.c (maxrhs): Move to...
21243 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21244 * src/lalr.c (build_relations): Adjust.
21246 2001-12-05 Akim Demaille <akim@epita.fr>
21248 * src/lalr.c (transpose): Free the memory allocated to the
21249 argument, as it is replaced by the results by the unique caller.
21250 (build_relations): Merely invoke transpose: it handles the memory
21252 Improve variable locality.
21253 Avoid variables used as mere abbreviations.
21254 (compute_lookaheads): Use arrays instead of pointers.
21256 2001-12-05 Akim Demaille <akim@epita.fr>
21258 * src/lalr.c (initialize_F): Improve variable locality.
21259 Avoid variables used as mere abbreviations.
21261 2001-12-05 Akim Demaille <akim@epita.fr>
21263 * src/derives.c (print_derives): Display the ruleno.
21264 * src/lalr.c (initialize_F, transpose): Better variable locality
21265 to improve readability.
21266 Avoid variables used as mere abbreviations.
21268 2001-12-05 Akim Demaille <akim@epita.fr>
21270 * src/lalr.c (traverse): Use arrays instead of pointers.
21272 2001-12-05 Akim Demaille <akim@epita.fr>
21274 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21275 the handling of squeue.
21276 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21278 2001-12-05 Akim Demaille <akim@epita.fr>
21280 Because useless nonterminals are now kept alive (instead of being
21281 `destroyed'), we now sometimes examine them, and store information
21282 related to them. Hence we need to know their number, and adjust
21283 memory allocations.
21285 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21287 * src/LR0.c (allocate_itemsets): The memory allocated to
21288 `symbol_count' was used for two different purpose: once to count
21289 the number of occurrences of each symbol, and later reassigned to
21290 `shift_symbol', containing the symbol that can be shifted from a
21292 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21294 (new_itemsets): Allocate `shift_symbol' here.
21295 (allocate_itemsets): symbol_count includes useless nonterminals.
21296 Make room for them.
21297 (free_storage): Use `free', not `XFREE', for pointers that cannot
21300 2001-12-05 Akim Demaille <akim@epita.fr>
21302 * src/nullable.c (set_nullable): Deobfuscate the handling of
21304 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21306 2001-12-05 Akim Demaille <akim@epita.fr>
21308 * src/gram.c, src/gram.h (ritem_print): New.
21309 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21310 (This useless function was defined only to work around VMS linkers
21311 that can't handle compilation units with variables only).
21312 * src/reduce.c (dump_grammar): Use it to trace the construction of
21315 2001-12-04 Paul Eggert <eggert@twinsun.com>
21317 * src/bison.simple (union yyalloc): Change member names
21318 to be the same as the stack names.
21319 (yyparse): yyptr is now union yyalloc *, not char *.
21320 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21321 and may generate better code on some machines.
21322 (yystpcpy): Use prototype if __STDC__ is defined, not just
21323 if __cplusplus is defined.
21325 2001-11-30 Akim Demaille <akim@epita.fr>
21327 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21328 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21329 Gettext doesn't compile cleanly, and dies with -Werror.
21330 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21331 Include WARNING_CFLAGS here.
21332 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21333 before being defined.
21335 2001-11-27 Paul Eggert <eggert@twinsun.com>
21337 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21338 First arg is int, not unsigned.
21339 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21340 (SIZE_MAX, UINT_MAX): New macros.
21341 (quotearg_n_options): Abort if N is negative.
21342 Avoid overflow check on hosts where size_t is 64 bits and int
21343 is 32 bits, as overflow is impossible there.
21344 Fix off-by-one typo that caused unnecessary reallocation.
21346 2001-11-29 Paul Eggert <eggert@twinsun.com>
21348 Name space cleanup in generated parser.
21350 * doc/bison.texinfo (Bison Parser): Discuss system headers
21351 and their effect on the user name space.
21353 * src/bison.simple:
21354 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21355 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21356 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21358 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21359 on user names when possible.
21361 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21362 Simplify test for whather <alloca.h> exists.
21364 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21366 (<stdio.h>): Include if YYDEBUG.
21368 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21369 ! defined (yyoverflow) && ! defined (yymemcpy).
21371 (yymemcpy, yyparse): Rename local variables as needed so that
21372 they all begin with 'yy'.
21374 (yystrlen, yystpcpy): New functions.
21376 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21379 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21380 instead of relying on string.h functions. Use YYSTACK_ALLOC
21381 and YYSTACK_FREE instead of malloc and free.
21383 2001-11-30 Akim Demaille <akim@epita.fr>
21385 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21386 before their first uses.
21387 (YYBISON, YYPURE): Move to the top of the output.
21389 2001-11-30 Akim Demaille <akim@epita.fr>
21391 * tests/reduce.at (Useless Nonterminals): Fix.
21393 2001-11-30 Akim Demaille <akim@epita.fr>
21395 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21396 if body instead of `;' to pacify GCC's warnings.
21398 2001-11-30 Akim Demaille <akim@epita.fr>
21400 Instead of mapping the LHS of unused rules to -1, keep the LHS
21401 valid, but flag the rules as invalid.
21403 * src/gram.h (rule_t): `useful' is a new member.
21404 * src/print.c (print_grammar): Adjust.
21405 * src/derives.c (set_derives): Likewise.
21406 * src/reader.c (packgram, reduce_output): Likewise.
21407 * src/reduce.c (reduce_grammar_tables): Likewise.
21408 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21410 2001-11-30 Akim Demaille <akim@epita.fr>
21412 * src/reduce.c (reduce_output): Formatting changes.
21413 * src/print.c (print_results, print_grammar): Likewise.
21414 * tests/regression.at (Rule Line Numbers)
21415 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21417 2001-11-30 Akim Demaille <akim@epita.fr>
21419 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21420 useless nonterminals, move them at the end of the symbol arrays.
21421 (reduce_output): Adjust.
21422 * tests/reduce.at (Useless Nonterminals): Adjust.
21424 2001-11-30 Akim Demaille <akim@epita.fr>
21426 * src/reduce.c: Various comment/formatting changes.
21427 (nonterminals_reduce): New, extracted from...
21428 (reduce_grammar_tables): here.
21429 (reduce_grammar): Call nonterminals_reduce.
21431 2001-11-29 Paul Eggert <eggert@twinsun.com>
21433 * src/bison.simple (YYSTACK_REALLOC): Remove.
21434 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21435 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21437 (union yyalloc): New type.
21438 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21439 an arbitrary restriction on hosts where size_t is wider than int.
21441 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21442 a parser stack overflow. Allocate just one block of memory for all
21443 three stacks, instead of allocating three blocks; this typically is
21444 faster and reduces fragmentation.
21446 Do not limit the number of items in the stack to a value that fits
21447 in 'int', as this is an arbitrary limit on hosts with 64-bit
21448 size_t and 32-bit int.
21450 2001-11-29 Marc Autret <autret_m@epita.fr>
21452 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21453 of defining YYERROR_VERBOSE.
21454 [AT_DATA]: $4 is now out of C declarations in the prologue.
21456 2001-11-28 Marc Autret <autret_m@epita.fr>
21458 * src/reader.c (parse_dquoted_param): New.
21459 (parse_skel_decl): Use it.
21460 * src/lex.h: Add its prototype.
21461 * src/lex.c (literalchar): Become not static.
21463 2001-11-28 Marc Autret <autret_m@epita.fr>
21465 * src/output.h: And put its extern declaration here.
21466 * src/output.c (error_verbose): Define here.
21467 (prepare): Echo name modification.
21468 * src/getargs.h: Clean its extern declaration.
21469 * src/getargs.c (error_verbose_flag): Remove.
21470 (getargs): Remove case 'e'.
21471 * src/options.c (option_table): 'error-verbose' is now seen as simple
21475 * src/reader.c (read_declarations): Remove case tok_include.
21476 (parse_include_decl): Remove.
21477 * src/lex.h (token_t): Remove tok_include.
21478 * src/options.c (option_table): 'include' is now a simple command line
21481 2001-11-28 Marc Autret <autret_m@epita.fr>
21483 * src/bison.simple: Adjust muscle names.
21484 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21485 * src/output.c (prepare): s/_/-/ for the muscles names.
21486 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21488 2001-11-28 Marc Autret <autret_m@epita.fr>
21490 * src/bison.simple: Fix debug.
21491 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21493 2001-11-28 Akim Demaille <akim@epita.fr>
21495 * src/LR0.c (shifts_new): New.
21496 (save_shifts, insert_start_shift, augment_automaton): Use it.
21498 2001-11-28 Akim Demaille <akim@epita.fr>
21500 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21503 2001-11-28 Akim Demaille <akim@epita.fr>
21505 * src/closure.c (closure): Instead of looping over word in array
21506 then bits in words, loop over bits in array.
21508 2001-11-28 Akim Demaille <akim@epita.fr>
21510 * src/closure.c (closure): No longer optimize the special case
21511 where all the bits of `ruleset[r]' are set to 0, to make the code
21514 2001-11-28 Akim Demaille <akim@epita.fr>
21516 * src/closure.c (closure): `r' and `c' are new variables, used to
21517 de-obfuscate accesses to RULESET and CORE.
21519 2001-11-28 Akim Demaille <akim@epita.fr>
21521 * src/reduce.c (reduce_print): Use ngettext.
21522 (dump_grammar): Improve the trace accuracy.
21524 2001-11-28 Akim Demaille <akim@epita.fr>
21526 * src/reduce.c (dump_grammar): Don't translate trace messages.
21528 2001-11-28 Akim Demaille <akim@epita.fr>
21530 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21531 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21532 as all tags are free'ed afterwards.
21533 From Enrico Scholz.
21535 2001-11-27 Paul Eggert <eggert@twinsun.com>
21537 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21538 use alloca when we didn't want to, and vice versa.
21540 2001-11-27 Marc Autret <autret_m@epita.fr>
21542 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21544 * src/output.c (prepare): Remove its update.
21546 2001-11-27 Marc Autret <autret_m@epita.fr>
21548 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21549 Use %error-verbose.
21551 2001-11-27 Marc Autret <autret_m@epita.fr>
21553 * src/bison.simple: Remove YYERROR_VERBOSE using.
21554 Use %%error_verbose.
21555 (yyparse): Likewise.
21556 * src/output.c (prepare): Give its final value.
21557 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21558 * src/getargs.h: Add its extern declaration.
21559 * src/getargs.c (error_verbose_flag): New int.
21560 (getargs): Update to catch new case.
21561 * src/options.c (option_table): 'error-verbose' is a new option.
21562 (shortopts): Update.
21564 2001-11-27 Akim Demaille <akim@epita.fr>
21566 * src/system.h: Use intl/libgettext.h.
21567 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21569 2001-11-27 Akim Demaille <akim@epita.fr>
21571 * tests/torture.at (Exploding the Stack Size with Malloc):
21572 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21574 2001-11-27 Akim Demaille <akim@epita.fr>
21576 * src/files.c: Include error.h.
21577 Reported by Hans Aberg.
21579 2001-11-26 Marc Autret <autret_m@epita.fr>
21581 * src/reader.c (parse_include_decl): New, not yet implemented.
21582 (read_declarations): Add case tok_include.
21583 * src/getargs.h (include): Add its extern definition.
21584 * src/getargs.c (include): New const char *.
21585 (getargs): Add case '-I'.
21586 * src/options.c (option_table): Add include as command line and
21588 * src/lex.h (token_t): Add tok_include.
21590 2001-11-26 Akim Demaille <akim@epita.fr>
21592 * src/reader.c (readgram): Make sure rules for mid-rule actions
21593 have a lineno equal to that of their host rule.
21594 Reported by Hans Aberg.
21595 * tests/regression.at (Rule Line Numbers): New.
21597 2001-11-26 Akim Demaille <akim@epita.fr>
21599 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21602 2001-11-26 Akim Demaille <akim@epita.fr>
21604 * src/complain.c, src/complain.h (error): Remove, provided by
21607 2001-11-26 Akim Demaille <akim@epita.fr>
21609 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21610 issue an error message.
21611 * tests/regression.at (Invalid %directive): New.
21612 Reported by Hans Aberg.
21614 2001-11-26 Akim Demaille <akim@epita.fr>
21616 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21617 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21619 2001-11-26 Akim Demaille <akim@epita.fr>
21621 * src/conflicts.c (conflicts_print): Don't complain at all when
21622 there are no reduce/reduce conflicts, and as many shift/reduce
21623 conflicts as expected.
21624 * tests/regression.at (%expect right): Adjust.
21626 2001-11-23 Akim Demaille <akim@epita.fr>
21628 * lib/alloca.c: Update, from fileutils.
21630 2001-11-23 Akim Demaille <akim@epita.fr>
21632 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21634 2001-11-23 Akim Demaille <akim@epita.fr>
21636 * src/system.h: Include alloca.h.
21637 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21639 2001-11-23 Akim Demaille <akim@epita.fr>
21641 * src/print_graph.c (print_actions): Remove `rule', unused.
21642 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21643 pacify GCC's signed < unsigned warnings.
21644 * src/closure.c (itemsetsize): Likewise.
21645 * src/reader.c (symbol_list_new): Static.
21647 2001-11-23 Akim Demaille <akim@epita.fr>
21649 Attaching lineno to buckets is stupid, since only one copy of each
21650 symbol is kept, only the line of the first occurrence is kept too.
21652 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21653 * src/reader.c (rline_allocated): Remove, unused.
21654 (symbol_list): Have a `line' member.
21655 (symbol_list_new): New.
21656 (readgram): Use it.
21657 * src/print.c (print_grammar): Output the rule line numbers.
21658 * tests/regression.at (Solved SR Conflicts)
21659 (Unresolved SR Conflicts): Adjust.
21660 Reported by Hans Aberg.
21662 2001-11-22 Marc Autret <autret_m@epita.fr>
21664 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21666 2001-11-22 Marc Autret <autret_m@epita.fr>
21668 * src/muscle_tab.c (muscle_init): Remove initialization of
21670 * src/output.c (output_master_parser): Do it here.
21672 2001-11-20 Akim Demaille <akim@epita.fr>
21675 * configure.in (ALL_LINGUAS): Adjust.
21676 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21677 longer contains strings to translate.
21679 2001-11-19 Akim Demaille <akim@epita.fr>
21681 * src/conflicts.c (conflicts_print): Add a missing \n.
21683 2001-11-19 Akim Demaille <akim@epita.fr>
21685 * src/nullable.c (nullable_print): New.
21686 (set_nullable): Call it when tracing.
21687 Better locality of variables.
21689 2001-11-19 Akim Demaille <akim@epita.fr>
21691 * src/print.c (print_actions): Better locality of variables.
21693 2001-11-19 Akim Demaille <akim@epita.fr>
21695 * src/derives.c (print_derives): Fix and enrich.
21696 * src/closure.c (print_fderives): Likewise.
21698 2001-11-19 Akim Demaille <akim@epita.fr>
21700 * src/closure.c (itemsetend): Remove, replaced with...
21701 (itemsetsize): new.
21703 2001-11-19 Akim Demaille <akim@epita.fr>
21705 * src/LR0.c (kernel_end): Remove, replaced with...
21706 (kernel_size): new.
21708 2001-11-19 Akim Demaille <akim@epita.fr>
21710 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21713 2001-11-19 Akim Demaille <akim@epita.fr>
21715 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21717 2001-11-19 Akim Demaille <akim@epita.fr>
21719 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21721 * src/LR0.c: Likewise.
21722 (allocate_itemsets): Use arrays instead of pointers to clarify.
21724 2001-11-19 Akim Demaille <akim@epita.fr>
21726 * src/getargs.c (statistics_flag): Replace with...
21728 (longopts): Accept --trace instead of --statistics.
21729 * src/getargs.h, src/options.c: Adjust.
21730 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21731 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21733 2001-11-19 Akim Demaille <akim@epita.fr>
21735 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
21736 pointers to clarify the code.
21737 (save_reductions, save_shifts): Factor common parts of alternatives.
21739 2001-11-19 Akim Demaille <akim@epita.fr>
21741 * src/LR0.c (new_state, get_state): Complete TRACE code.
21742 * src/closure.c: Include `reader.h' to get `tags', needed by the
21744 Rename the conditional DEBUG as TRACE.
21745 Output consistently TRACEs to stderr, not stdout.
21746 * src/derives.c: Likewise.
21747 * src/reduce.c: (inaccessable_symbols): Using if is better style
21749 Use `#if TRACE' instead of `#if 0' for tracing code.
21751 2001-11-19 Akim Demaille <akim@epita.fr>
21753 * src/system.h (LIST_FREE, shortcpy): New.
21754 * src/LR0.c: Use them.
21755 * src/output.c (free_itemsets, free_reductions, free_shifts):
21756 Remove, replaced by LIST_FREE.
21758 2001-11-19 Akim Demaille <akim@epita.fr>
21760 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21761 (REDUCTIONS_ALLOC): New.
21762 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21765 2001-11-19 Akim Demaille <akim@epita.fr>
21767 * src/LR0.c (new_state): Complete trace code.
21768 * src/nullable.c (set_nullable): Don't translate traces.
21770 2001-11-19 Akim Demaille <akim@epita.fr>
21772 * src/print_graph.c (print_core): Better locality of variables.
21773 * src/print.c (print_core): Likewise.
21775 2001-11-19 Akim Demaille <akim@epita.fr>
21777 * src/vcg.c: You do the output, so you are responsible of the
21778 handling of VCG syntax, in particular: use quotearg.
21779 * src/print_graph.c: Don't.
21780 (print_actions): Don't output the actions as part of the nodes,
21781 since that's the job of the edges.
21782 (print_state): Don't output by hand: fill the node description,
21783 and ask for its output.
21785 2001-11-19 Akim Demaille <akim@epita.fr>
21787 * src/bison.simple (yyparse): When verbosely reporting an error,
21788 no longer put additional quotes around token names.
21789 * tests/calc.at: Adjust.
21791 2001-11-19 Akim Demaille <akim@epita.fr>
21793 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21794 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21795 * src/output.c: Adjust.
21797 2001-11-19 Akim Demaille <akim@epita.fr>
21799 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21801 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21803 2001-11-19 Akim Demaille <akim@epita.fr>
21805 * src/gram.h (rule_t): New.
21807 (rrhs, rlhs): Remove, part of state_t.
21808 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21809 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21810 * src/reader.c, src/reduce.c: Adjust.
21812 2001-11-19 Akim Demaille <akim@epita.fr>
21814 * src/reader.c (symbols_output): New, extracted from...
21815 (packsymbols): Here.
21818 2001-11-19 Akim Demaille <akim@epita.fr>
21820 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21821 (maxrhs): this new function.
21823 2001-11-19 Akim Demaille <akim@epita.fr>
21825 * src/lalr.c (F): New macro to access the variable F.
21828 2001-11-19 Akim Demaille <akim@epita.fr>
21830 * src/lalr.h (LA): New macro to access the variable LA.
21831 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21832 * src/lalr.c: Adjust.
21834 2001-11-19 Akim Demaille <akim@epita.fr>
21836 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21837 (set_state_table): handle the `lookaheads' members.
21839 2001-11-19 Akim Demaille <akim@epita.fr>
21841 * src/lalr.h (lookaheads): Removed array, whose contents is now
21843 (state_t): this structure.
21844 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21847 2001-11-19 Akim Demaille <akim@epita.fr>
21849 * src/lalr.h (consistent): Removed array, whose contents is now
21851 (state_t): this structure.
21852 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21855 2001-11-19 Akim Demaille <akim@epita.fr>
21857 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21858 contents are now members of...
21859 (state_t): this structure.
21860 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21863 2001-11-19 Akim Demaille <akim@epita.fr>
21865 * src/lalr.h (state_t): New.
21866 (state_table): Be a state_t * instead of a core **.
21867 (accessing_symbol): Remove, part of state_t.
21868 * src/lalr.c: Adjust.
21869 (set_accessing_symbol): Merge into...
21870 (set_state_table): this.
21871 * src/print_graph.c, src/conflicts.c: Adjust.
21873 2001-11-14 Akim Demaille <akim@epita.fr>
21875 * tests/calc.at, tests/output.at, tests/regression.at,
21876 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21877 now the tests are run in private dirs, therefore AC_CLEANUP and
21878 family can be simplified to 0-ary.
21879 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21880 use abs. path to find config.h.
21881 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21882 stderr, there can be way too much random noise.
21883 Instead pass -Werror to GCC and rely on the exit status.
21884 Reported by Wolfram Wagner.
21886 2001-11-14 Akim Demaille <akim@epita.fr>
21888 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21889 defined only if yyoverflow is defined, to avoid `warning: unused
21891 Reported by The Test Suite.
21893 2001-11-14 Akim Demaille <akim@epita.fr>
21895 * src/print.c: Include reduce.h.
21896 Reported by Hans Aberg.
21898 2001-11-14 Akim Demaille <akim@epita.fr>
21900 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21901 Revert a previous patch: these are really const.
21902 * src/conflicts.c (conflict_report): Additional useless pair of
21903 braces to pacify GCC's warnings for `if () if () {} else {}'.
21904 * src/lex.c (parse_percent_token): Replace equal_offset with
21907 Be sure to strdup `arg' when used, since there is no reason for
21908 token_buffer not to change.
21910 2001-11-14 Akim Demaille <akim@epita.fr>
21912 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21914 * src/main.c (main): Use them.
21915 Suggested by Hans Aberg.
21917 2001-11-12 Akim Demaille <akim@epita.fr>
21919 * src/system.h (ngettext): Now that we use ngettext, be sure to
21920 provide a default definition when NLS are not used.
21922 2001-11-12 Akim Demaille <akim@epita.fr>
21924 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21925 Use @kbd to denote user input.
21926 (Language and Grammar): ANSIfy the example.
21927 Adjust its layout for info/notinfo.
21928 (Location Tracking Calc): Output error messages to stderr.
21929 Output locations in a more GNUtically correct way.
21930 Fix a couple of Englishos.
21931 Adjust @group/@end group pairs.
21933 2001-11-12 Akim Demaille <akim@epita.fr>
21935 %expect was not functioning at all.
21937 * src/conflicts.c (expected_conflicts): Set to -1.
21938 (conflict_report): Use ngettext.
21939 (conflicts_print): Check %expect and make its violation an error.
21940 * doc/bison.texinfo (Expect Decl): Adjust.
21941 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21942 * tests/regression.at (%expect not enough, %expect right)
21943 (%expect too much): New.
21945 2001-11-12 Akim Demaille <akim@epita.fr>
21947 * tests/regression.at (Conflicts): Rename as...
21948 (Unresolved SR Conflicts): this.
21949 (Solved SR Conflicts): New.
21951 2001-11-12 Akim Demaille <akim@epita.fr>
21953 * src/reduce.c (print_results): Rename as...
21954 (reduce_output): This.
21955 Output to OUT, passed as argument, instead of output_obstack.
21956 (dump_grammar): Likewise.
21957 (reduce_free): New.
21959 (reduce_grammar): No longer call reduce_output, since...
21960 * src/print.c (print_results): do it.
21961 * src/main.c (main): Call reduce_free;
21963 2001-11-12 Akim Demaille <akim@epita.fr>
21965 * src/conflicts.c (print_reductions): Accept OUT as argument.
21966 Output to it, not to output_obstack.
21967 * src/print.c (print_actions): Adjust.
21969 2001-11-12 Akim Demaille <akim@epita.fr>
21971 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21972 the result instead of using...
21973 (src_total, rrc_total, src_count, rrc_count): Remove.
21974 (any_conflicts): Remove.
21975 (print_conflicts): Split into...
21976 (conflicts_print, conflicts_output): New.
21977 * src/conflicts.h: Adjust.
21978 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
21979 * src/print.c (print_grammar): Issue `\n' between two rules.
21980 * tests/regression.at (Conflicts): New.
21981 Reported by Tom Lane.
21983 2001-11-12 Akim Demaille <akim@epita.fr>
21985 * tests/regression.at (Invalid input): Remove, duplicate with
21986 ``Invalid input: 1''.
21988 2001-11-12 Akim Demaille <akim@epita.fr>
21990 * tests/torture.at (AT_DATA_STACK_TORTURE)
21991 (Exploding the Stack Size with Alloca)
21992 (Exploding the Stack Size with Malloc): New.
21994 2001-11-12 Akim Demaille <akim@epita.fr>
21996 * src/bison.simple (YYSTACK_REALLOC): New.
21997 (yyparse) [!yyoverflow]: Use it and free the old stack.
21998 Reported by Per Allansson.
22000 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
22002 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22003 define CPP macro, which substitute YYSTYPE by yystype.
22004 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22005 with yyltype/YYLTYPE. This allows inclusion of the generated
22006 header within the parser if the compiler, such as GGC, accepts
22007 multiple equivalent #defines.
22010 2001-11-05 Akim Demaille <akim@epita.fr>
22012 * src/reader.c (symbols_output): New, extracted from...
22013 (packsymbols): here.
22016 2001-11-05 Akim Demaille <akim@epita.fr>
22018 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22020 2001-11-05 Akim Demaille <akim@epita.fr>
22022 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22025 2001-11-05 Akim Demaille <akim@epita.fr>
22027 * src/options.h (struct option_table_struct): set_flags is void*.
22028 * src/options.c (longopts): Support `--output' and `%output'.
22030 * src/lex.h (tok_setopt): Remove, replaced with...
22031 (tok_intopt, tok_stropt): these new guys.
22032 * src/lex.c (getopt.h): Not needed.
22033 (token_buffer, unlexed_token_buffer): Not const.
22034 (percent_table): Promote `-' over `_' in directive names.
22035 Active `%name-prefix', `file-prefix', and `output'.
22036 (parse_percent_token): Accept possible arguments to directives.
22037 Promote `-' over `_' in directive names.
22039 2001-11-04 Akim Demaille <akim@epita.fr>
22041 * doc/bison.texinfo (Decl Summary): Split the list into
22042 `directives for grammars' and `directives for bison'.
22044 Add description of `%name-prefix', `file-prefix', and `output'.
22045 Promote `-' over `_' in directive names.
22046 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22047 Simplify the description of `--name-prefix'.
22048 Promote `-' over `_' in directive names.
22049 Promote `--output' over `--output-file'.
22050 Fix the description of `--defines'.
22051 * tests/output.at: Exercise %file-prefix and %output.
22053 2001-11-02 Akim Demaille <akim@epita.fr>
22055 * doc/refcard.tex: Update.
22057 2001-11-02 Akim Demaille <akim@epita.fr>
22059 * src/symtab.h (SUNDEF): New.
22060 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22061 stand for `uninitialized', instead of 0.
22062 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22063 * src/lex.c (lex): Adjust.
22065 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22067 Let yylex return it instead of a plain 0.
22068 Reported by Dick Streefland.
22070 2001-11-02 Akim Demaille <akim@epita.fr>
22072 * tests/regression.at (Mixing %token styles): New test.
22074 2001-11-02 Akim Demaille <akim@epita.fr>
22076 * src/reader.c (parse_thong_decl): Formatting changes.
22077 (token_translations_init): New, extracted from...
22078 (packsymbols): Here.
22081 2001-11-01 Akim Demaille <akim@epita.fr>
22083 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
22084 Check that `9foo.y' produces correct cpp guards.
22085 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22089 2001-11-01 Akim Demaille <akim@epita.fr>
22091 * tests/regression.at (Invalid input: 2): New.
22092 * src/lex.c (unlexed_token_buffer): New.
22093 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22097 2001-11-01 Akim Demaille <akim@epita.fr>
22099 * tests/calc.at: Catch up with 1.30.
22100 * configure.in: Bump to 1.49a.
22101 Adjust to newer Autotest.
22103 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
22105 * src/conflicts.c: Move global variables rrc_total and src_total ...
22106 (print_conflicts): here.
22107 * src/output.c (output): Free global variable user_toknums.
22108 * src/lex.c (token_obstack): Become static.
22110 2001-10-18 Akim Demaille <akim@epita.fr>
22112 * tests/atlocal.in (GCC): Add.
22113 * tests/calc.at: s/m4_match/m4_bmatch/.
22114 s/m4_patsubst/m4_bpatsubst/.
22115 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22116 * configure.in: AC_SUBST(GCC).
22118 2001-10-14 Marc Autret <autret_m@epita.fr>
22120 * src/options.c (create_long_option_table): Fix.
22122 2001-10-10 Akim Demaille <akim@epita.fr>
22124 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22126 2001-10-04 Akim Demaille <akim@epita.fr>
22128 * src/reader.c (parse_union_decl): Push the caracters in
22129 union_obstack, not attrs_obstack.
22131 2001-10-04 Akim Demaille <akim@epita.fr>
22133 Merge in the branch 1.29.
22135 * src/reader.c (packsymbols): Use a temporary obstack for
22136 `%%tokendef', since output_stack is already used elsewhere.
22138 2001-10-02 Akim Demaille <akim@epita.fr>
22142 2001-10-02 Akim Demaille <akim@epita.fr>
22146 2001-10-02 Akim Demaille <akim@epita.fr>
22148 * tests/regression.at (Invalid CPP headers): New.
22149 From Alexander Belopolsky.
22150 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22152 2001-10-02 Akim Demaille <akim@epita.fr>
22154 * tests/regression.at (Invalid input): New.
22155 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22158 2001-10-02 Akim Demaille <akim@epita.fr>
22160 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22162 2001-10-02 Akim Demaille <akim@epita.fr>
22164 * src/output.c (output_parser): Assert `skeleton'.
22165 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22169 2001-10-01 Marc Autret <autret_m@epita.fr>
22171 * src/lex.h: Echo modifications.
22172 * src/lex.c (unlex): Parameter is now token_t.
22175 2001-10-01 Marc Autret <autret_m@epita.fr>
22177 * src/main.c: Include lex.h.
22180 2001-09-29 Akim Demaille <akim@epita.fr>
22182 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22184 2001-09-28 Akim Demaille <akim@epita.fr>
22186 * tests/testsuite.at: Update to newer Autotest.
22187 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22189 2001-09-27 Akim Demaille <akim@epita.fr>
22191 Position independent wrapper.
22193 * tests/bison: Remove.
22194 * tests/bison.in: New.
22195 * configure.in: Adjust.
22197 2001-09-27 Paul Eggert <eggert@twinsun.com>
22199 Port quotearg fixes from tar 1.13.24.
22201 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22203 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22204 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22206 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22207 * m4/mbrtowc.m4: New file.
22208 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22209 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22211 2001-09-27 Akim Demaille <akim@epita.fr>
22215 2001-09-27 Akim Demaille <akim@epita.fr>
22219 2001-09-25 Akim Demaille <akim@epita.fr>
22221 * src/system.h: Include `xalloc.h'.
22222 Remove it from the C files.
22223 * src/files.c (output_files): Free the obstacks.
22224 * src/lex.c (init_lex): Rename as...
22227 * src/main.c (main): Use it.
22229 2001-09-24 Marc Autret <autret_m@epita.fr>
22231 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22232 to output informations in fout (FILE*).
22233 (open_graph, close_graph): Likewise.
22234 (output_graph, output_edge, output_node): Likewise.
22235 * src/vcg.h: Update function prototypes.
22236 * src/print_graph.c (print_graph): Open output graph file.
22237 (print_actions): Adjust.
22238 * src/files.h: Remove extern declaration.
22239 * src/files.c: Remove graph_obstack declaration.
22240 (open_files): Remove graph_obstack initialization.
22241 (output_files): Remove graph_obstack saving.
22243 2001-09-24 Marc Autret <autret_m@epita.fr>
22245 * src/files.c (compute_output_file_names): Fix.
22247 2001-09-24 Marc Autret <autret_m@epita.fr>,
22248 Akim Demaille <akim@epita.fr>
22250 * src/reader.c (reader): Remove call to free_symtab ().
22251 * src/main.c (main): Call it here.
22253 * src/conflicts.c (initialize_conflicts): Rename as...
22254 (solve_conflicts): this.
22255 * src/print.c (print_core, print_actions, print_state)
22256 (print_grammar): Dump to a file instead a `output_obstack'.
22257 (print_results): Dump `output_obstack', and then proceed with the
22259 * src/files.c (compute_output_file_names, close_files): New.
22260 (output_files): Adjust.
22261 * src/main.c (main): Adjust.
22263 2001-09-23 Marc Autret <autret_m@epita.fr>
22265 * src/files.c (compute_header_macro): Computes header macro name
22266 from spec_defines_file when given.
22268 2001-09-23 Marc Autret <autret_m@epita.fr>
22270 * src/files.c (output_files): Add default extensions.
22272 2001-09-22 Akim Demaille <akim@epita.fr>
22274 * src/conflicts.c (finalize_conflicts): Rename as...
22275 (free_conflicts): this.
22277 2001-09-22 Akim Demaille <akim@epita.fr>
22279 * src/gram.c (gram_free): Rename back as...
22281 (output_token_translations): Free `token_translations'.
22282 * src/symtab.c (free_symtab): Free the tag field.
22284 2001-09-22 Akim Demaille <akim@epita.fr>
22286 Remove `translations' as it is always set to true.
22288 * src/gram.h: Adjust.
22289 * src/reader.c (packsymbols, parse_token_decl): Adjust
22290 * src/print.c (print_grammar): Adjust.
22291 * src/output.c (output_token_translations): Adjust.
22292 * src/lex.c (lex): Adjust.
22293 * src/gram.c: Be sure the set pointers to NULL.
22294 (dummy): Rename as...
22297 2001-09-22 Akim Demaille <akim@epita.fr>
22299 * configure.in: Invoke AM_LIB_DMALLOC.
22300 * src/system.h: Use dmalloc.
22301 * src/LR0.c: Be sure to have pointers initialized to NULL.
22302 (allocate_itemsets): Allocate kernel_items only if needed.
22304 2001-09-22 Akim Demaille <akim@epita.fr>
22306 * configure.in: Bump to 1.29b.
22307 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22308 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22309 need xmalloc.c in calc.y.
22312 2001-09-21 Akim Demaille <akim@epita.fr>
22315 * Makefile.maint, config/config.guess, config/config.sub,
22316 * config/missing: Update from masters.
22317 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22319 * configure.in (ALL_LINGUAS): Add `tr'.
22321 2001-09-21 Akim Demaille <akim@epita.fr>
22323 * tests/Makefile.am (package.m4): Move to...
22324 ($(srcdir)/$(TESTSUITE)): here.
22326 2001-09-20 Akim Demaille <akim@epita.fr>
22328 * src/complain.c: No longer try to be standalone: use system.h.
22329 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22330 * src/complain.h: Likewise.
22331 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22332 Remove the unused variable `n'.
22333 From Albert Chin-A-Young.
22335 2001-09-18 Marc Autret <autret_m@epita.fr>
22337 * doc/bison.1: Update.
22338 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22340 (Option Cross Key): Update.
22343 2001-09-18 Marc Autret <autret_m@epita.fr>
22345 * tests/regression.at: New test (comment in %union).
22347 2001-09-18 Marc Autret <autret_m@epita.fr>
22349 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22351 Reported by Keith Browne.
22353 2001-09-18 Marc Autret <autret_m@epita.fr>
22355 * tests/output.at: Add tests for --defines and --graph.
22357 2001-09-18 Marc Autret <autret_m@epita.fr>
22359 * tests/output.at: Removes tests of %{header,src}_extension features.
22361 2001-09-18 Akim Demaille <akim@epita.fr>
22363 * tests/Makefile.am (package.m4): New.
22364 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22365 (_AT_CHECK_CALC_ERROR): Likewise.
22366 Factor the `, ' part of verbose error messages.
22368 2001-09-18 Marc Autret <autret_m@epita.fr>
22370 * src/getargs.c (longopts): Declare --defines and --graph as options
22371 with optional arguments.
22372 * src/files.h: Add extern declarations.
22373 * src/files.c (spec_graph_file, spec_defines_file): New.
22374 (output_files): Update.
22375 Remove CPP-outed code.
22377 2001-09-18 Marc Autret <autret_m@epita.fr>
22379 Turn off %{source,header}_extension feature.
22381 * src/files.c (compute_exts_from_gf): Update.
22382 (compute_exts_from_src): Update.
22383 (output_files): CPP-out useless code.
22384 * src/files.h: Remove {header,source}_extension extern declarations.
22385 * src/reader.c (parse_dquoted_param): CPP-out.
22386 (parse_header_extension_decl): Remove.
22387 (parse_source_extension_decl): Remove.
22388 (read_declarations): Remove cases tok_{hdrext,srcext}.
22389 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22390 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22392 2001-09-10 Akim Demaille <akim@epita.fr>
22394 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22395 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22396 (AT_CHECK_OUTPUT): this.
22397 Merely check ls' exit status, its output is useless.
22399 2001-09-10 Akim Demaille <akim@epita.fr>
22401 * tests/calc.at: Use m4_match.
22402 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22404 2001-09-10 Marc Autret <autret_m@epita.fr>,
22405 Akim Demaille <akim@epita.fr>
22407 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22409 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22411 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22412 * src/lex.h: Adjust prototype.
22413 (token_t): Add `tok_undef'.
22414 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22415 (parse_percent_token): Now returns token_t.
22416 Add default statement in switch.
22417 (lex): Separate `c' as an input variable, from the token_t result
22419 (unlexed): Is a token_t.
22421 2001-09-10 Akim Demaille <akim@epita.fr>
22423 * configure.in: Bump to 1.29a.
22425 2001-09-07 Akim Demaille <akim@epita.fr>
22429 2001-08-30 Akim Demaille <akim@epita.fr>
22431 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22432 * m4/atconfig.m4: Remove.
22433 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22434 * tests/bison: New.
22435 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22436 m4_if, m4_patsubst, and m4_regexp.
22437 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22438 `input' file instead of echo.
22440 2001-08-29 Akim Demaille <akim@epita.fr>
22444 2001-08-29 Akim Demaille <akim@epita.fr>
22448 2001-08-29 Paul Eggert <eggert@twinsun.com>
22450 * src/bison.simple (yyparse): Don't take the address of an
22451 item before the start of an array, as that doesn't conform to
22454 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22456 * doc/bison.texinfo (Location Tracking Calc): New node.
22458 2001-08-29 Paul Eggert <eggert@twinsun.com>
22460 * src/output.c (output): Do not define const, as this now
22461 causes more problems than it cures.
22463 2001-08-29 Akim Demaille <akim@epita.fr>
22465 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22467 Be sure to tag the `detailmenu'.
22469 2001-08-29 Akim Demaille <akim@epita.fr>
22471 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22472 download in a tmp dir.
22474 2001-08-28 Marc Autret <autret_m@epita.fr>
22476 * config/depcomp: New file.
22478 2001-08-28 Marc Autret <autret_m@epita.fr>
22480 * doc/bison.1 (mandoc): Adjust.
22481 From Juan Manuel Guerrero.
22483 2001-08-28 Marc Autret <autret_m@epita.fr>
22485 * src/print_graph.c (print_state): Fix.
22487 2001-08-27 Marc Autret <autret_m@epita.fr>
22489 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22491 Echo modifications to the functions prototypes.
22492 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22494 2001-08-27 Marc Autret <autret_m@epita.fr>
22496 * src/vcg.c: Include `xalloc.h'.
22497 (add_colorentry): New.
22498 (add_classname): New.
22499 (add_infoname): New.
22500 * src/vcg.h: Add new prototypes.
22502 2001-08-27 Akim Demaille <akim@epita.fr>
22504 * Makefile.maint: Sync. again with CVS Autoconf.
22506 2001-08-27 Akim Demaille <akim@epita.fr>
22508 * Makefile.maint: Formatting changes.
22509 (po-update, cvs-update, update): New targets.
22512 2001-08-27 Akim Demaille <akim@epita.fr>
22514 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22515 * Makefile.maint: Sync. with CVS Autoconf.
22517 2001-08-27 Marc Autret <autret_m@epita.fr>
22519 * src/vcg.h (struct infoname_s): New.
22520 (struct colorentry_s): New.
22521 (graph_s): New fields {vertical,horizontal}_order in structure.
22522 Add `infoname' field.
22523 Add `colorentry' field;
22524 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22525 (G_HORIZONTAL_ORDER): New.
22527 (G_COLORENTRY): New.
22528 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22529 Add output of `infoname'.
22530 Add output of `colorentry'.
22532 2001-08-27 Marc Autret <autret_m@epita.fr>
22534 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22535 This one shadowed a global parameter.
22537 2001-08-24 Marc Autret <autret_m@epita.fr>
22539 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22540 instead of `unsigned'.
22541 (print_state): Do not call obstack_object_size () in obstack_grow ()
22542 to avoid macro variables shadowing.
22544 2001-08-23 Marc Autret <autret_m@epita.fr>
22546 * src/lex.c (percent_table): Typo: s/naem/name/.
22548 Normalize new options declarations.
22550 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22552 * tests/suite.at: Exercise %header_extension and %source_extension.
22554 2001-08-16 Marc Autret <autret_m@epita.fr>
22556 * src/reader.c (parse_dquoted_param): New.
22557 (parse_header_extension_decl): Use it.
22558 (parse_source_extension_decl): Likewise.
22560 2001-08-16 Marc Autret <autret_m@epita.fr>
22562 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22563 (get_xxxx_str): Use assert () instead of complain ().
22564 Remove return invokations in default cases.
22565 (get_decision_str): Modify default behaviour. Remove second argument.
22566 Echo modifications on calls.
22567 (output_graph): Fix.
22569 2001-08-16 Marc Autret <autret_m@epita.fr>
22571 * src/getargs.c (usage): Update with ``-g, --graph''.
22573 2001-08-16 Marc Autret <autret_m@epita.fr>
22575 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22576 (Option Cross Key): Likewise.
22577 * doc/bison.1: Update.
22579 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
22581 * src/output.c (output_master_parser): Don't finish action_obstack.
22582 (output_parser): Don't care about the muscle action, here.
22583 (prepare): Copy the action_obstack in the action muscle.
22584 (output): Free action_obstack.
22586 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22588 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22589 will contain `%union' declaration.
22590 (parse_union_decl): Delete #line directive output.
22591 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22592 informations about %union.
22593 (parse_union_decl): Copy the union_obstack in the muscle stype.
22594 * src/bison.simple: Add new #line directive.
22595 Add typdef %%stype YYSTYPE.
22597 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22599 * src/bison.simple: Add new `#line' directive.
22601 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
22603 * src/bison.simple: New `#line' directive.
22604 * src/output.c (output_parser): Support new dynamic muscle input_line.
22606 2001-09-22 Marc Autret <autret_m@epita.fr>
22608 * src/output.c (output_master_parser): New.
22609 (output_parser): Be more re-entrant.
22611 2001-09-21 Marc Autret <autret_m@epita.fr>
22613 * src/reader.c (copy_definition, parse_union_decl): Update and use
22615 (copy_action): Likewise.
22616 Use obstack_1grow ().
22617 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22619 2001-09-21 Marc Autret <autret_m@epita.fr>
22621 * src/options.c (option_table): Adjust.
22622 * src/lex.c (parse_percent_token): Fix.
22624 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22626 * src/options.c (symtab.h): Include it, need by lex.h.
22628 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22630 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22631 is now an option_table_struct*.
22632 (option_strcmp): New function option_strcmp.
22633 (parse_percent_token): Call option_strcmp.
22634 * src/getargs.c (xalloc.h, options.h): Include it.
22635 (getargs): Call create_long_option_table.
22636 (getargs): Free longopts at the end of the function.
22637 (shortopts): Move in options.c.
22638 * src/options.c (create_long_option_table): New function. Convert
22639 information from option_table to option structure.
22640 * src/reader.c (options.h): Include it.
22642 * src/Makefile.am: Adjust.
22643 * src/options.c (option_table): Create from longopts and percent_table.
22644 * src/getargs.c (longopts): Delete.
22645 * src/lex.c (struct percent_table_struct): Delete.
22646 (percent_table): Delete.
22647 (options.h): Include it.
22648 * src/options.c: Create.
22649 * src/options.h: Create.
22650 Declare enum opt_access_e.
22651 Define struct option_table_struct.
22653 2001-09-20 Marc Autret <autret_m@epita.fr>
22655 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22658 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
22660 * src/bison.simple: s/%%filename/%%skeleton.
22661 * src/muscle_tab.c (getargs.h): Include it.
22662 (muscle_init): Insert new muscle skeleton.
22664 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
22666 * src/output.c (output_parser): Delete unused variable actions_dumped.
22668 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
22670 * src/output.c (output): Delete call to reader_output_yylsp.
22671 * src/reader.c (reader): Likewise.
22672 * src/reader.h: Delete declaration of reader_output_yylsp.
22674 2001-09-02 Marc Autret <autret_m@epita.fr>
22676 * src/reader.c: Include muscle_tab.h.
22677 (parse_union_decl): Update.
22678 (parse_macro_decl): Rename parse_muscle_decl.
22679 Update to use renamed functions and variable.
22680 (read_declarations, copy_action, read_additionnal_code, : Updated
22681 with correct variables and functions names.
22682 (packsymbols, reader): Likewise.
22684 * src/reader.h (muscle_obstack): Extern declaration update.
22686 * src/output.c: Include muscle_tab.h
22687 In all functions using macro_insert, change by using muscle_insert ().
22688 (macro_obstack): Rename muscle_obstack.
22689 Echo modifications in the whole file.
22690 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22691 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22692 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22694 * src/muscle_tab.h: Update double inclusion macros.
22695 (macro_entry_s): Rename muscle_entry_s.
22698 * src/muscle_tab.c: Include muscle_tab.h.
22699 Rename macro_tabble to muscle_table.
22700 (mhash1, mhash2, mcmp): Use muscle_entry.
22701 (macro_init): Rename muscle_init. Update.
22702 (macro_insert): Rename muscle_insert. Update.
22703 (macro_find): Rename muscle_find. Update.
22705 * src/main.c: Include muscle_tab.h.
22706 (main): Call muscle_init ().
22707 * src/Makefile.am (bison_SOURCES): Echo modifications.
22709 2001-09-02 Marc Autret <autret_m@epita.fr>
22711 Now the files macro_tab.[ch] are named muscle_tab.[ch].
22713 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22715 2001-09-02 Marc Autret <autret_m@epita.fr>
22717 * src/macrotab.c, src/macrotab.h: Remove.
22719 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
22721 * src/reader.c (copy_guard): Use muscle to specify the `#line'
22724 2001-09-01 Marc Autret <autret_m@epita.fr>
22726 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22727 to an explicit value to activate the feature. We do it here.
22729 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22731 * src/output.c (prepare): Delete the `filename' muscule insertion.
22732 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22733 (parse_union_decl): Likewise.
22734 * src/macrotab.c (macro_init): Initialize filename by infile.
22736 2001-08-31 Marc Autret <autret_m@epita.fr>
22738 * src/bison.simple (YYLSP_NEEDED): New definition.
22739 * src/output.c (prepare): Add macro insertion of `locations_flag'
22741 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22743 * src/output.c (prepare): Delete insertion of previous muscles,
22744 and insert the `prefix' muscles.
22745 * src/macrotab.c (macro_init): Likewise.
22746 (macro_init): Initialization prefix directive by `yy'.
22747 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
22748 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22749 yylval, yydebug, yyerror, yynerrs and yyparse.
22750 New directive `#define' to substitute yydebug, ... with option
22753 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22755 * src/main.c (main): Standardize.
22756 * src/output.c (output_table_data, output_parser): Likewise.
22757 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22759 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22761 * src/reader.c (read_additionnal_code): Rename %%user_code to
22763 * src/output.c (output): Rename %%declarations to %%prologue.
22764 * src/bison.simple: Echo modifications.
22766 2001-08-31 Marc Autret <autret_m@epita.fr>
22768 * src/reader.c (readgram): CleanUp.
22769 (output_token_defines): Likewise.
22770 (packsymbols): Likewise.
22771 (reader): Likewise.
22772 * src/output.c (output): CPP-out useless code.
22774 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22776 * src/reader.c (reader): Delete obsolete call to function
22777 output_trailers and output_headers.
22778 * src/output.h: Remove obsolete functions prototypes of output_headers
22779 and output_trailers.
22781 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
22783 * src/main.c: Include macrotab.h.
22784 * src/macrotab.h (macro_entry_s): Constify fields.
22785 Adjust functions prototypes.
22786 * src/macrotab.c (macro_insert): Constify key and value.
22787 (macro_find): Constify key.
22788 (macro_insert): Include 'xalloc.h'
22789 (macro_insert): Use XMALLOC.
22790 (macro_find): Constify return value.
22791 * src/output.c (output_table_data): Rename table to table_data.
22792 (output_parser): Constify macro_key, macro_value.
22794 2001-08-30 Marc Autret <autret_m@epita.fr>
22796 * src/reader.c (parse_skel_decl): New.
22797 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
22798 * src/lex.h (token_t): New token `tok_skel'.
22799 * src/lex.c (percent_table): Add skeleton option entry.
22802 2001-08-29 Marc Autret <autret_m@epita.fr>
22804 * src/bison.simple: Add %%user_code directive at the end.
22805 * src/reader.c (read_additionnal_code): New.
22807 * src/output.c (output_program): Remove.
22810 2001-08-28 Marc Autret <autret_m@epita.fr>
22812 * src/output.c (output_actions): Clean up.
22813 (output_gram): CPP-out useless code.
22814 * src/reader.c (reader): Clean up, CPP-out useless code.
22816 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
22818 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
22820 * src/bison.simple: Add `%%definitions'.
22822 2001-08-28 Marc Autret <autret_m@epita.fr>
22824 * config/depcomp: New file.
22826 2001-08-27 Paul Eggert <eggert@twinsun.com>
22828 * src/bison.simple (yyparse): Don't take the address of an
22829 item before the start of an array, as that doesn't conform to
22832 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22834 * src/output.c (output): Remove the initialization of the macro
22835 obstack. It was done too late here.
22837 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22839 (reader): Initialize the macro obstack here, since we need it to grow
22840 '%define' directives.
22842 * src/reader.h: Declare the macro obstack as extern.
22844 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22846 * src/output.c (output_parser): Fix. Store single '%' characters in
22847 the output obstack instead of throwing them away.
22849 2001-08-27 Akim Demaille <akim@epita.fr>
22851 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22853 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22855 * lib/Makefile.am: Adjust.
22857 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22859 * src/bison.simple: Update and add '%%' directives.
22861 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22863 * src/reader.c (reader): Remove calls to 'output_headers' and
22864 'output_trailers'. Remove some C output.
22865 (readgram): Disable a piece of code that was writing a default
22866 definition for 'YYSTYPE'.
22867 (reader_output_yylsp): Remove.
22868 (packsymbols): Output token defintions to a macro.
22869 (copy_definition): Disable C output.
22871 * src/reader.c (parse_macro_decl): New function used to parse macro
22873 (copy_string2): Put the body of copy_string into this new function.
22874 Add a parameter to let the caller choose whether he wants to copy the
22875 string delimiters or not.
22876 (copy_string): Be a simple call to copy_string2 with the last argument
22878 (read_declarations): Add case for macro definition.
22879 (copy_identifier): New.
22880 (parse_macro_decl): Read macro identifiers using copy_identifier
22883 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22885 * src/output.c (prepare): Add prefixed names.
22886 (output_parser): Output semantic actions.
22887 (output_parser): Fix bug on '%%line' directives.
22889 * src/output.c (output_headers): Remove. The C code printed by this
22890 function should now be in the skeletons.
22891 (output_trailers): Remove.
22892 (output): Disable call to 'reader_output_yylsp'.
22893 (output_rule_data): Do not output tables to the table obstack.
22895 * src/output.c: Remove some C dedicated output.
22896 Improve the use of macro and output obstacks.
22897 (output_defines): Remove.
22899 * src/output.c (output_token_translations): Associate 'translate'
22900 table with a macro. No output to the table obstack.
22901 (output_gram): Same for 'rhs' and 'prhs'.
22902 (output_stos): Same for 'stos'.
22903 (output_rule_data): Same for 'r1' and 'r2'.
22904 (token_actions): Same for 'defact'.
22905 (goto_actions): Same for 'defgoto'.
22906 (output_base): Same for 'pact' and 'pgoto'.
22907 (output_table): Same for 'table'.
22908 (output_check): Same for 'check'.
22910 * src/output.c (output_table_data): New function.
22911 (output_short_table): Remove.
22912 (output_short_or_char_table): Remove.
22914 * src/output.c (output_parser): Replace most of the skeleton copy code
22915 with something new. Skeletons are now processed character by character
22916 rather than line by line, and Bison looks for '%%' macros. This is the
22917 first step in making Bison's output process (a lot) more flexible.
22918 (output_parser): Use the macro table.
22920 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22922 * src/main.c (main): Initialize the macro table.
22924 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22926 * src/lex.c (percent_table): Add tok_define.
22927 * src/lex.h: Add tok_define.
22929 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22931 * src/macrotab.c: New file.
22932 * src/macrotab.h: New file.
22933 * src/Makefile.am: Update.
22935 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22937 * lib/hash.c: New file.
22938 * lib/hash.h: New file.
22939 * lib/Makefile.am: Update.
22941 2001-08-15 Akim Demaille <akim@epita.fr>
22945 2001-08-15 Marc Autret <autret_m@epita.fr>
22947 * src/reader.c (readgram): Indent output macro YYSTYPE.
22948 (packsymbols): Likewise.
22949 (output_token_defines): Likewise.
22950 * src/files.c: Standardize.
22951 (compute_header_macro): New.
22952 (defines_obstack_save): New. Use compute_header_macro.
22953 (output_files): Update. Use defines_obstack_save.
22955 2001-08-15 Akim Demaille <akim@epita.fr>
22957 * doc/bison.texinfo (Table of Symbols): Document
22958 YYSTACK_USE_ALLOCA.
22960 2001-08-15 Akim Demaille <akim@epita.fr>
22962 * missing: Update from CVS Automake.
22963 * config/config.guess, config/config.sub, config/texinfo.tex:
22964 Update from gnu.org.
22966 2001-08-15 Akim Demaille <akim@epita.fr>
22968 * Makefile.maint: Sync with CVS Autoconf.
22970 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
22972 * doc/bison.texinfo: Include GNU Free Documentation License from
22974 * doc/fdl.texi: Add to package.
22976 2001-08-14 Marc Autret <autret_m@epita.fr>
22978 Turn on %{source,header}_extension features.
22980 * src/lex.c (percent_table): Un-CPP out header_extension and
22982 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
22983 (compute_exts_from_src): Remove conditions. It restores priorities
22986 2001-08-14 Marc Autret <autret_m@epita.fr>
22988 * src/files.c (compute_base_names): Add extensions computing when
22989 `--file-prefix' used.
22990 Standardize function calls.
22992 2001-08-13 Marc Autret <autret_m@epita.fr>
22994 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
22995 defining it (defined but null disables alloca).
22997 2001-08-13 Marc Autret <autret_m@epita.fr>
22999 * src/bison.simple (_yy_memcpy): CPP reformat.
23001 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
23003 * tests/atconfig.in (CPPFLAGS): Fix.
23005 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
23007 * doc/bison.texinfo: Include GNU General Public License from
23009 * doc/gpl.texi: Add to package.
23011 2001-08-10 Marc Autret <autret_m@epita.fr>
23013 * src/print_graph.h: Fix.
23014 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23016 2001-08-10 Akim Demaille <akim@epita.fr>
23018 * src/system.h: Provide default declarations for stpcpy, strndup,
23021 2001-08-10 Robert Anisko <anisko_r@epita.fr>
23023 * doc/bison.texinfo (Locations): Update @$ stuff.
23025 2001-08-09 Robert Anisko <anisko_r@epita.fr>
23027 * src/bison.simple (YYLLOC_DEFAULT): Update.
23030 2001-08-08 Marc Autret <autret_m@epita.fr>
23032 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
23033 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23034 Reported by Fabrice Bauzac.
23036 2001-08-08 Marc Autret <autret_m@epita.fr>
23038 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23039 * src/vcg.c (output_node): Fix.
23040 * src/vcg.h: Cleanup.
23041 * src/print_graph.c: Add comments.
23042 (node_output_size): New global variable. Simplify the formatting of
23043 the VCG graph output.
23044 (print_actions): Unused code is now used. It notifies the final state
23045 and no action states in the VCG graph. It also give the reduce actions.
23046 The `shift and goto' edges are red and the `go to state' edges are
23048 Get the current node name and node_obstack by argument.
23049 (node_obstack): New variable.
23050 (print_state): Manage node_obstack.
23051 (print_core): Use node_obstack given by argument.
23052 A node is not only computed here but in print_actions also.
23053 (print_graph): CPP out useless code instead of commenting it.
23055 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
23057 * tests/atconfig.in (CPPFLAGS): Fix.
23059 2001-08-07 Akim Demaille <akim@epita.fr>
23061 * src/print_graph.c (quote): New.
23062 (print_core): Use it.
23064 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
23066 * src/vcg.c (complain.h): Include it.
23067 Unepitaize `return' invocations.
23068 [NDEBUG] (main): Remove.
23069 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
23070 * src/files.c (open_files): Initialize graph_obstack.
23071 * src/print_graph.c (print_actions): CPP out useless code.
23072 (print_core): Don't output the last `\n' in labels.
23074 * src/files.c (output_files): Output the VCG file.
23075 * src/main.c (main): Invoke print_graph ();
23077 2001-08-06 Marc Autret <autret_m@epita.fr>
23079 Automaton VCG graph output.
23080 Using option ``-g'' or long option ``--graph'', you can generate
23081 a gram_filename.vcg file containing a VCG description of the LALR (1)
23082 automaton of your grammar.
23084 * src/main.c: Call to print_graph() function.
23085 * src/getargs.h: Update.
23086 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23087 (graph_flag): New flag.
23088 (longopts): Update.
23089 (getargs): Add case `g'.
23090 * src/files.c (graph_obstack): New obstack struct.
23091 (open_files): Initialize new obstack.
23092 (output_files): Saves graph_obstack if required.
23093 * src/files.h (graph_obstack): New extern declaration.
23094 * src/Makefile.am: Add new source files.
23096 2001-08-06 Marc Autret <autret_m@epita.fr>
23098 * src/print_graph.c, src/print_graph.h (graph): New.
23099 * src/vcg.h: New file.
23100 * src/vcg.c: New file, VCG graph handling.
23102 2001-08-06 Marc Autret <autret_m@epita.fr>
23104 Add of %source_extension and %header_extension which specify
23105 the source or/and the header output file extension.
23107 * src/files.c (compute_base_names): Remove initialisation of
23108 src_extension and header_extension.
23109 (compute_exts_from_gf): Update.
23110 (compute_exts_from_src): Update.
23111 (output_files): Update.
23112 * src/reader.c (parse_header_extension_decl): New.
23113 (parse_source_extension_decl): New.
23114 (read_declarations): New case statements for the new tokens.
23115 * src/lex.c (percent_table): Add entries for %source_extension
23116 and %header_extension.
23117 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23119 2001-08-06 Marc Autret <autret_m@epita.fr>
23121 * configure.in: Bump to 1.28c.
23122 * doc/bison.texinfo: Texinfo thingies.
23124 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
23126 * tests/atconfig.in (CPPFLAGS): Add.
23127 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23129 2001-08-03 Akim Demaille <akim@epita.fr>
23133 2001-08-03 Akim Demaille <akim@epita.fr>
23135 * tests/Makefile.am (check-local): Ship testsuite.
23136 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23137 Include `string.h'.
23139 2001-08-03 Akim Demaille <akim@epita.fr>
23141 * configure.in: Try using -Wformat when compiling.
23143 2001-08-03 Akim Demaille <akim@epita.fr>
23145 * configure.in: Bump to 1.28b.
23147 2001-08-03 Akim Demaille <akim@epita.fr>
23149 * src/complain.c: Adjust strerror_r portability issues.
23151 2001-08-03 Akim Demaille <akim@epita.fr>
23155 2001-08-03 Akim Demaille <akim@epita.fr>
23157 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23158 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23159 * src/getargs.c: Include complain.h.
23160 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23161 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23163 2001-08-03 Akim Demaille <akim@epita.fr>
23165 * src/reader.c (readgram): Display hidden chars in error messages.
23167 2001-08-03 Akim Demaille <akim@epita.fr>
23169 Update to gettext 0.10.39.
23171 2001-08-03 Akim Demaille <akim@epita.fr>
23173 * lib/strspn.c: New.
23175 2001-08-01 Marc Autret <autret_m@epita.fr>
23177 * doc/bison.texinfo: Update.
23178 * doc/bison.1 (mandoc): Update.
23179 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23180 * src/files.c: Support output files extensions computing.
23181 (src_extension): New static variable.
23182 (header_extension): New static variable.
23183 (tr): New function.
23184 (get_extension_index): New function, gets the index of an extension
23185 filename in a string.
23186 (compute_exts_from_gf): New function, computes extensions from the
23187 grammar file extension.
23188 (compute_exts_from_src): New functions, computes extensions from the
23189 C source file extension, file given by ``-o'' option.
23190 (compute_base_names): Update.
23191 (output_files): Update.
23193 2001-08-01 Robert Anisko <anisko_r@epita.fr>
23195 * doc/bison.texi: Document @$.
23196 (Locations): New section.
23198 2001-07-18 Akim Demaille <akim@epita.fr>
23200 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23201 * config/prev-version.txt, config/move-if-change: New.
23202 * Makefile.am: Adjust.
23204 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
23206 * src/bison.simple (yyparse): Suppress warning `comparaison
23207 between signed and unsigned'.
23209 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
23211 * src/getargs.h (raw_flag): Remove.
23212 * src/getargs.c: Die on `-r'/`--raw'.
23213 * src/lex.c (parse_percent_token): Die on `%raw'.
23214 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23215 * tests/calc.at: Suppress test with option `--raw'.
23217 2001-07-14 Akim Demaille <akim@epita.fr>
23220 * configure.in: Require Autoconf 2.50.
23221 Update to gettext 0.10.38.
23223 2001-03-16 Akim Demaille <akim@epita.fr>
23225 * doc/bison.texinfo: ANSIfy the examples.
23227 2001-03-16 Akim Demaille <akim@epita.fr>
23229 * getargs.c (skeleton): New variable.
23230 (longopts): --skeleton is a new option.
23231 (shortopts, getargs): -S is a new option.
23232 * getargs.h: Declare skeleton.
23233 * output.c (output_parser): Use it.
23235 2001-03-16 Akim Demaille <akim@epita.fr>
23237 * m4/strerror_r.m4: New.
23238 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23239 * lib/error.h, lib/error.c: Update.
23241 2001-03-16 Akim Demaille <akim@epita.fr>
23243 * src/getargs.c (longopts): Clean up.
23245 2001-02-21 Akim Demaille <akim@epita.fr>
23247 * src/reader.c (gensym): `gensym_count' is your own.
23248 Use a static buf to create the symbol name, as token_buffer is no
23251 2001-02-08 Akim Demaille <akim@epita.fr>
23253 * src/conflicts.c (conflict_report): Be sure not to append to res
23254 between two calls, which could happen if both first sprintf were
23255 skipped, but not the first cp += strlen.
23257 2001-02-08 Akim Demaille <akim@epita.fr>
23259 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23260 New, from fileutils 4.0.37.
23261 * configure.in: Require Autoconf 2.49c. I took some time before
23262 making this decision. This is the only way out for portability
23263 issues in Bison, it would mean way too much duplicate effort to
23264 import in Bison features implemented in 2.49c since 2.13.
23265 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23267 2001-02-02 Akim Demaille <akim@epita.fr>
23269 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
23270 * lib/xalloc.h, lib/xmalloc.c: Update.
23272 2001-01-19 Akim Demaille <akim@epita.fr>
23274 Get rid of the ad hoc handling of token_buffer in the scanner: use
23277 * src/lex.c (token_obstack): New.
23278 (init_lex): Initialize it. No longer call...
23279 (grow_token_buffer): this. Remove it.
23280 Adjust all the places which used it to use the obstack.
23282 2001-01-19 Akim Demaille <akim@epita.fr>
23284 * src/lex.h: Rename all the tokens:
23285 s/\bENDFILE\b/tok_eof/g;
23286 s/\bIDENTIFIER\b/tok_identifier/g;
23288 Let them be enums, not #define, to ease debugging.
23289 Adjust all the code.
23291 2001-01-18 Akim Demaille <akim@epita.fr>
23293 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23294 * src/lex.c (maxtoken, grow_token_buffer): Static.
23296 2001-01-18 Akim Demaille <akim@epita.fr>
23298 Since we now use obstacks, more % directives can be enabled.
23300 * src/lex.c (percent_table): Also accept `%yacc',
23301 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23303 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23304 instead of returning a token.
23305 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23306 * src/reader.c (read_declarations): Adjust.
23307 * src/files.c (open_files): Don't call `compute_base_names', don't
23308 compute `attrsfile' since they depend upon data which might be
23309 *in* the input file now.
23310 (output_files): Do it here.
23311 * src/output.c (output_headers): Document the fact that this patch
23312 introduces a guaranteed SEGV for semantic parsers.
23313 * doc/bison.texinfo: Document them.
23314 * tests/suite.at: Exercise these %options.
23316 2000-12-20 Akim Demaille <akim@epita.fr>
23318 Also handle the output file (--verbose) with obstacks.
23320 * files.c (foutput): Remove.
23321 (output_obstack): New.
23322 Adjust all dependencies.
23323 * src/conflicts.c: Return a string.
23324 * src/system.h (obstack_grow_string): Rename as...
23325 (obstack_sgrow): this. Be ready to work with non literals.
23326 (obstack_fgrow4): New.
23328 2000-12-20 Akim Demaille <akim@epita.fr>
23330 * src/files.c (open_files): Fix the computation of short_base_name
23331 in the case of `-o foo.tab.c'.
23333 2000-12-20 Akim Demaille <akim@epita.fr>
23335 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23336 (copy_dollar): Now that everything uses obstacks, get rid of the
23339 2000-12-20 Akim Demaille <akim@epita.fr>
23341 * src/files.c (open_files): Actually the `.output' file is based
23342 on the short_base_name, not base_name.
23343 * tests/suite.at (Checking output file names): Adjust.
23345 2000-12-20 Akim Demaille <akim@epita.fr>
23347 * src/bison.s1: Remove, we now use directly...
23348 * src/bison.simple: this.
23349 * src/Makefile.am: Use pkgdata instead of data.
23351 2000-12-20 Akim Demaille <akim@epita.fr>
23353 * src/files.c (guard_obstack): New.
23354 (open_files): Initialize it.
23355 (output_files): Dump it...
23356 * src/files.h: Export it.
23357 * src/reader.c (copy_guard): Use it.
23359 2000-12-19 Akim Demaille <akim@epita.fr>
23361 * src/files.c (outfile, defsfile, actfile): Removed as global
23363 (open_files): Don't compute them.
23364 (output_files): Adjust.
23365 (base_name, short_base_name): Be global.
23366 Adjust dependencies.
23368 2000-12-19 Akim Demaille <akim@epita.fr>
23370 * src/files.c (strsuffix): New.
23371 (stringappend): Be just like strcat but allocate.
23372 (base_names): Eve out from open_files.
23373 Try to simplify the rather hairy computation of base_name and
23375 (open_files): Use it.
23376 * tests/suite.at (Checking output file names): New test.
23378 2000-12-19 Akim Demaille <akim@epita.fr>
23380 * src/system.h (obstack_grow_literal_string): Rename as...
23381 (obstack_grow_string): this.
23382 * src/output.c (output_parser): Recognize `%% actions' instead of
23384 * src/bison.s1: s/$/%% actions/.
23385 * src/bison.hairy: Likewise.
23387 2000-12-19 Akim Demaille <akim@epita.fr>
23389 * src/output.c (output_parser): Compute the `#line' lines when
23391 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23392 Suggested by Hans Aberg.
23394 2000-12-19 Akim Demaille <akim@epita.fr>
23396 Let the handling of the skeleton files be local to the procedures
23399 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23401 (fparser, open_extra_files): Remove.
23402 (open_files, output_files): Don't take care of fparser.
23403 * src/files.h: Adjust.
23404 * src/output.c (output_parser): Open and close the file to the
23406 * src/reader.c (read_declarations): When %semantic_parser, open
23409 2000-12-19 Akim Demaille <akim@epita.fr>
23411 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23412 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23414 2000-12-19 Akim Demaille <akim@epita.fr>
23416 * src/files.c (open_files): Yipee! We no longer need all the code
23417 looking for `/tmp' since we have no tmp file.
23419 2000-12-19 Akim Demaille <akim@epita.fr>
23421 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23423 * src/files.c (open_files): Less dependency on MSDOS etc.
23425 2000-12-14 Akim Demaille <akim@epita.fr>
23427 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23428 Provide a default definition.
23429 Use it when executing the default @ action.
23430 * src/reader.c (reader_output_yylsp): No longer include
23431 `timestamp' and `text' in the default YYLTYPE.
23433 2000-12-12 Akim Demaille <akim@epita.fr>
23435 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23436 (copy_guard): Quote the file names.
23437 Reported by Laurent Mascherpa.
23439 2000-12-12 Akim Demaille <akim@epita.fr>
23441 * src/output.c (output_headers, output_program, output): Be sure
23442 to escape special characters when outputting filenames.
23443 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23444 (output_headers): Don't depend on them, Use ACTSTR.
23446 2000-11-17 Akim Demaille <akim@epita.fr>
23448 * lib/obstack.h: Formatting changes.
23449 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23450 prevents type checking.
23451 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23452 cast the value to (void *): assigning a `foo *' to a `void *'
23454 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23455 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23458 2000-11-17 Akim Demaille <akim@epita.fr>
23460 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23462 (suite.m4, regression.m4, calc.m4): these.
23463 * tests/atgeneral.m4: Update from CVS Autoconf.
23465 2000-11-17 Akim Demaille <akim@epita.fr>
23467 * tests/regression.m4 (%union and --defines): New test,
23468 demonstrating a current bug in the obstack implementation.
23470 2000-11-17 Akim Demaille <akim@epita.fr>
23472 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23474 Use them to declare the variables which are global or local to
23477 2000-11-17 Akim Demaille <akim@epita.fr>
23479 * acconfig.h: Remove, no longer used.
23481 2000-11-07 Akim Demaille <akim@epita.fr>
23483 * src: s/Copyright (C)/Copyright/g.
23485 2000-11-07 Akim Demaille <akim@epita.fr>
23487 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23489 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23491 2000-11-07 Akim Demaille <akim@epita.fr>
23493 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23494 Merge in a single CPP if/else.
23496 2000-11-07 Akim Demaille <akim@epita.fr>
23498 * src/output.c (output): Remove useless variables.
23499 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23500 argument `data' for consistency with the prototypes.
23501 Qualify it `const'.
23502 (obstack_copy, obstack_copy0): Rename the second argument as
23503 `address' for consistency. Qualify it `const'.
23504 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23505 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23506 `const' their input argument (`data' or `address').
23507 Adjust the corresponding macros to include `const' in casts.
23509 2000-11-03 Akim Demaille <akim@epita.fr>
23511 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23512 s/PFILE1/BISON_HAIRY/.
23513 Adjust dependencies.
23515 2000-11-03 Akim Demaille <akim@epita.fr>
23517 For some reason, this was not applied.
23519 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23520 `unlink': it's no longer used.
23522 2000-11-03 Akim Demaille <akim@epita.fr>
23524 * src/files.c (skeleton_find): New function, eved out of...
23525 (open_files, open_extra_files): here.
23527 2000-11-03 Akim Demaille <akim@epita.fr>
23529 Don't use `atexit'.
23531 * src/files.c (obstack_save): New function.
23532 (done): Rename as...
23533 (output_files): this.
23534 Use `obstack_save'.
23535 * src/main.c (main): Don't use `atexit' to register `done', since
23536 it no longer has to remove tmp files, just call `output_files'
23537 when there are no errors.
23539 2000-11-02 Akim Demaille <akim@epita.fr>
23541 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23542 `unlink': it's no longer used.
23543 * src/files.h: Formatting changes.
23545 2000-11-02 Akim Demaille <akim@epita.fr>
23547 Remove the last uses of mktemp and unlink/delete.
23549 * src/files.c (fdefines, ftable): Removed.
23550 (defines_ostack, table_obstack): New.
23551 Adjust dependencies of the former into uses of the latter.
23552 * src/output.c (output_short_or_char_table, output_short_table):
23553 Convert to using obstacks.
23554 * src/reader.c (copy_comment2): Accept one FILE * and two
23556 (output_token_defines, reader_output_yylsp): Use obstacks.
23557 * src/system.h (obstack_fgrow3): New.
23558 * po/POTFILES.in: Adjust.
23560 2000-11-01 Akim Demaille <akim@epita.fr>
23562 Change each use of `fattrs' into a use of `attrs_obstack'.
23564 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23565 * src/files.c (fattrs): Remove.
23566 (attrs_obstack): New.
23567 Adjust all dependencies.
23568 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23570 2000-11-01 Akim Demaille <akim@epita.fr>
23572 Introduce obstacks.
23573 Change each use of `faction' into a use of `action_obstack'.
23575 * lib/obstack.h, lib/obstack.c: New files.
23576 * src/files.c (faction): Remove.
23577 (action_obstack): New.
23578 Adjust all dependencies.
23580 2000-10-20 Akim Demaille <akim@epita.fr>
23582 * lib/quote.h (PARAMS): New macro. Use it.
23584 2000-10-16 Akim Demaille <akim@epita.fr>
23586 * src/output.c (output_short_or_char_table): New function.
23587 (output_short_table, output_token_translations): Use it.
23588 (goto_actions): Use output_short_table.
23590 2000-10-16 Akim Demaille <akim@epita.fr>
23592 * src/symtab.c (bucket_new): New function.
23595 * src/output.c (output_short_table): New argument to display the
23596 comment associated with the table.
23597 Adjust dependencies.
23598 (output_gram): Use it.
23599 (output_rule_data): Nicer output layout for YYTNAME.
23601 2000-10-16 Akim Demaille <akim@epita.fr>
23603 * src/lex.c (read_typename): New function.
23605 * src/reader.c (copy_dollar): Likewise.
23607 2000-10-16 Akim Demaille <akim@epita.fr>
23609 * src/reader.c (copy_comment2): Expect the input stream to be on
23610 the `/' which is suspected to open a comment, instead of being
23611 called after `//' or `/*' was read.
23612 (copy_comment, copy_definition, parse_union_decl, copy_action)
23613 (copy_guard): Adjust.
23615 2000-10-16 Akim Demaille <akim@epita.fr>
23617 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23618 `read_signed_integer'.
23620 2000-10-16 Akim Demaille <akim@epita.fr>
23622 * src/reader.c (copy_dollar): New function.
23623 (copy_guard, copy_action): Use it.
23625 2000-10-16 Akim Demaille <akim@epita.fr>
23627 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23628 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23629 New files, from Fileutils 4.0.27.
23630 * src/main.c (printable_version): Remove.
23631 * src/lex.c, src/reader.c: Use `quote'.
23633 2000-10-04 Akim Demaille <akim@epita.fr>
23635 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23637 2000-10-04 Akim Demaille <akim@epita.fr>
23639 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23641 2000-10-04 Akim Demaille <akim@epita.fr>
23643 When a literal string is used to define two different tokens,
23644 `bison -v' segfaults.
23645 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23647 * tests/regression.m4: New file.
23648 Include the core of the sample provided by Piotr Gackiewicz.
23649 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23652 2000-10-04 Akim Demaille <akim@epita.fr>
23654 * src/reader.c (parse_expect_decl): Keep `count' within the size
23658 2000-10-02 Paul Eggert <eggert@twinsun.com>
23660 * bison.s1 (yyparse): Assign the default value
23661 unconditionally, to avoid a GCC warning and make the parser a
23664 2000-10-02 Akim Demaille <akim@epita.fr>
23666 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23669 2000-10-02 Akim Demaille <akim@epita.fr>
23671 * src/derives.c, src/print.c, src/reduce.c: To ease the
23672 translation, move some `\n' out of the translated strings.
23674 2000-10-02 Akim Demaille <akim@epita.fr>
23676 The location tracking mechanism is precious for parse error
23677 messages. Nevertheless, it is enabled only when `@n' is used in
23678 the grammar, which is a different issue (you can use it in error
23679 message, but not in the grammar per se). Therefore, there should
23680 be another means to enable it.
23682 * src/getargs.c (getargs): Support `--locations'.
23683 (usage): Report it.
23684 * src/getargs.h (locationsflag): Export it.
23685 * src/lex.c (percent_table): Support `%locations'.
23686 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23687 with `locationsflag'.
23688 * doc/bison.texinfo: Document `--locations' and `%locations'.
23690 * tests/calc.m4: Test it.
23692 For regularity of the names, replace each
23693 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23694 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23695 In addition replace each `flag' with `_flag'.
23697 2000-10-02 Akim Demaille <akim@epita.fr>
23699 Also test parse error messages, including with YYERROR_VERBOSE.
23701 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23703 Use it to check the computations.
23704 Use it to check `nonassoc' is honored.
23705 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23706 `--yyerror-verbose'.
23707 (_AT_CHECK_CALC): Adjust to this option.
23708 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23710 2000-10-02 Akim Demaille <akim@epita.fr>
23712 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23713 the latter demonstrates a flaw in the handling of non debugging
23714 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23715 was used in order to simplify:
23731 unfortunately this leads to a CPP conflict when
23732 `--name-prefix=foo' is used since it produces `#define yydebug
23735 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23736 (YYDPRINTF): New macro.
23738 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23740 Also test `--verbose', `--defines' and `--name-prefix'.
23742 2000-10-02 Akim Demaille <akim@epita.fr>
23744 Improve the readability of the produced parsers.
23746 * src/bison.s1: Formatting changes.
23747 Improve the comment related to the `$' mark.
23748 (yydefault): Don't fall through to `yyresume': `goto' there.
23749 * src/output.c (output_parser): When the `$' is met, skip the end
23751 New variable, `number_of_dollar_signs', to check there's exactly
23752 one `$' in the parser skeleton.
23754 2000-10-02 Akim Demaille <akim@epita.fr>
23756 * lib/xstrdup.c: New file, from the fileutils.
23757 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23758 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23759 instead of strlen + xmalloc + strcpy.
23760 * src/symtab.c (copys): Remove, use xstrdup instead.
23762 2000-10-02 Akim Demaille <akim@epita.fr>
23764 * src/gram.h (associativity): New enum type which replaces the
23765 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23766 `right_assoc', `left_assoc' and `non_assoc'.
23767 Adjust all dependencies.
23768 * src/reader.c: Formatting changes.
23769 (LTYPESTR): Don't define it, use it as a literal in
23770 `reader_output_yylsp'.
23771 * src/symtab.h (symbol_class): New enum type which replaces the
23772 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23773 `sunknown', `stoken and `snterm'.
23775 2000-10-02 Akim Demaille <akim@epita.fr>
23777 * src/getargs.c (fixed_outfiles): Rename as...
23778 (yaccflag): for consistency and accuracy.
23779 Adjust dependencies.
23781 2000-10-02 Akim Demaille <akim@epita.fr>
23783 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23784 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23785 difficult and introduced a lot of core dump. It turns out that
23786 Bison used an implementation of `xmalloc' based on `calloc', and
23787 at various places it does depend upon the initialization to 0. I
23788 have not tried to isolate the pertinent places, and all the former
23789 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23790 someone should address this issue.
23792 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23793 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23795 Adjust dependencies.
23796 * src/warshall.h: New file.
23799 2000-10-02 Akim Demaille <akim@epita.fr>
23801 Various anti-`extern in *.c' changes.
23803 * src/system.h: Include `assert.h'.
23805 2000-10-02 Akim Demaille <akim@epita.fr>
23807 * src/state.h (nstates, final_state, first_state, first_shift)
23808 (first_reduction): Move their exportation from here...
23809 * src/LR0.h: to here.
23810 Adjust dependencies.
23811 * src/getargs.c (statisticsflag): New variable.
23812 Add support for `--statistics'.
23813 Adjust dependencies.
23815 Remove a lot of now useless `extern' statements in most files.
23817 2000-10-02 Akim Demaille <akim@epita.fr>
23819 * src/LR0.h: New file.
23822 2000-10-02 Akim Demaille <akim@epita.fr>
23824 * src/print.h: New file.
23826 * src/print.c: Formatting and ordering changes.
23827 (verbose, terse): Replace with...
23828 (print_results): this new function.
23829 Adjust dependencies.
23831 2000-10-02 Akim Demaille <akim@epita.fr>
23833 * src/conflicts.c (conflict_report): New function.
23834 (conflict_log, verbose_conflict_log): Replace with...
23835 (print_conflicts): this function.
23836 Adjust dependencies.
23837 * src/conflicts.h: New file.
23838 Propagate its inclusion.
23840 2000-10-02 Akim Demaille <akim@epita.fr>
23842 * src/nullable.h: New file.
23843 Propagate its inclusion.
23844 * src/nullable.c: Formatting changes.
23846 2000-10-02 Akim Demaille <akim@epita.fr>
23848 * src/reduce.h: New file.
23849 Propagate its inclusion.
23850 * src/reduce.c: Topological sort and other formatting changes.
23851 (bool, TRUE, FALSE): Move their definition to...
23852 * src/system.h: here.
23854 2000-10-02 Akim Demaille <akim@epita.fr>
23856 * src/files.c: Formatting changes.
23857 (tryopen, tryclose, openfiles): Rename as...
23858 (xfopen, xfclose, open_files): this.
23859 (stringappend): static.
23860 * src/files.h: Complete the list of exported symbols.
23863 2000-10-02 Akim Demaille <akim@epita.fr>
23865 * src/reader.h: New file.
23866 Propagate its use instead of tedious list of `extern' and
23868 * src/reader.c: Formatting changes, topological sort,
23871 2000-10-02 Akim Demaille <akim@epita.fr>
23873 * src/lex.h: Prototype `lex.c' exported functions.
23874 * src/reader.c: Adjust.
23875 * src/lex.c: Formatting changes.
23876 (safegetc): Rename as...
23879 2000-10-02 Akim Demaille <akim@epita.fr>
23881 * src/lalr.h: New file.
23882 Propagate its inclusion instead of prototypes and `extern'.
23883 * src/lalr.c: Formatting changes, topological sorting etc.
23885 2000-10-02 Akim Demaille <akim@epita.fr>
23887 * src/output.c (token_actions): Introduce a temporary array,
23888 YYDEFACT, that makes it possible for this function to use
23889 output_short_table.
23891 2000-10-02 Akim Demaille <akim@epita.fr>
23893 `user_toknums' is output as a `short[]' in `output.c', while it is
23894 defined as a `int[]' in `reader.c'. For consistency with the
23895 other output tables, `user_toknums' is now defined as a table of
23898 * src/reader.c (user_toknums): Be a short table instead of an int
23900 Adjust dependencies.
23902 Factor the short table outputs.
23904 * src/output.c (output_short_table): New function.
23905 * src/output.c (output_gram, output_stos, output_rule_data)
23906 (output_base, output_table, output_check): Use it.
23908 2000-10-02 Akim Demaille <akim@epita.fr>
23910 * src/output.c (output): Topological sort of the functions, in
23911 order to get rid of the `static' prototypes.
23912 No longer use `register'.
23913 * src/output.h: New file.
23914 Propagate its inclusion in files explicitly prototyping functions
23917 2000-09-21 Akim Demaille <akim@epita.fr>
23919 * src/atgeneral.m4: Update from Autoconf.
23921 2000-09-21 Akim Demaille <akim@epita.fr>
23923 * src/closure.h: New file.
23924 * src/closure.c: Formatting changes, topological sort over the
23925 functions, use of closure.h.
23926 (initialize_closure, finalize_closure): Rename as...
23927 (new_closure, free_closure): these. Adjust dependencies.
23928 * src/LR0.c: Formatting changes, topological sort, use of
23930 (initialize_states): Rename as...
23931 (new_states): this.
23932 * src/Makefile.am (noinst_HEADERS): Adjust.
23934 2000-09-20 Akim Demaille <akim@epita.fr>
23936 * src/acconfig.h: Don't protect config.h against multiple
23938 Don't define PARAMS.
23939 * src/system.h: Define PARAMS.
23940 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23941 purpose of config.h. system.h must not try to fix wrong
23942 definitions in config.h.
23944 2000-09-20 Akim Demaille <akim@epita.fr>
23946 * src/derives.h: New file.
23947 * src/main.c, src/derives.h: Use it.
23948 Formatting changes.
23949 * src/Makefile.am (noinst_HEADERS): Adjust.
23951 2000-09-20 Akim Demaille <akim@epita.fr>
23953 * tests/atgeneral.m4: Update from Autoconf.
23954 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23955 (AT_CHECK_CALC): New macros.
23956 Use these macros to test bison with options `', `--raw',
23957 `--debug', `--yacc', `--yacc --debug'.
23959 2000-09-19 Akim Demaille <akim@epita.fr>
23961 * src/output.c: Formatting changes.
23962 * src/machine.h: Remove, leaving its contents in...
23963 * src/system.h: here.
23965 Adjust all dependencies on stdio.h and machine.h.
23966 * src/getargs.h: New file.
23967 Let all `extern' declarations about getargs.c be replaced with
23968 inclusion of `getargs.h'.
23969 * src/Makefile.am (noinst_HEADERS): Adjust.
23971 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23973 (yyerror): Returns void, not int.
23974 * doc/bison.texinfo: Formatting changes.
23976 2000-09-19 Akim Demaille <akim@epita.fr>
23978 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23981 2000-09-18 Akim Demaille <akim@epita.fr>
23983 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23984 * src/Makefile.am (INCLUDES): Don't.
23985 Be ready to fetch headers in lib/.
23987 2000-09-18 Akim Demaille <akim@epita.fr>
23989 * doc/bison.texinfo: Update the copyright.
23990 ANSIfy and GNUify the examples.
23991 Remove the old menu.
23993 2000-09-18 Akim Demaille <akim@epita.fr>
23995 First set of tests: use the `calc' example from the documentation.
23997 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23998 is defined only when YYDEBUG is.
23999 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24000 * src/files.c (tryopen, tryclose): Formatting changes.
24001 Move to the top and be static.
24002 * src/reader.c (read_signed_integer): Likewise.
24003 * tests/calc.m4: New file.
24004 * Makefile.am, suite.m4: Adjust.
24005 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24007 2000-09-18 Akim Demaille <akim@epita.fr>
24009 Add support for an Autotest test suite for Bison.
24011 * m4/m4.m4, m4/atconfig.m4: New files.
24012 * m4/Makefile.am (EXTRA_DIST): Adjust.
24013 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24015 * src/getargs.c: Display a more standard --version message.
24016 * src/reader.c (reader): Formatting changes.
24017 No longer depend upon VERSION_STRING.
24018 * configure.in: No longer use `dnl'.
24019 Set up the test suite and the new directory `tests/.
24020 (VERSION_STRING): Remove.
24022 2000-04-14 Akim Demaille <akim@epita.fr>
24024 * src/reader.c (copy_comment2): New function, same as former
24025 `copy_comment', but outputs into two FILE *.
24026 (copy_comment): Use it.
24027 (parse_union_decl): Use it.
24028 (get_type, parse_start_decl): Use the same `invalid' message.
24029 (parse_start_decl, parse_union_decl): Use the same `multiple'
24031 (parse_union_decl, copy_guard, copy_action): Use the same
24032 `unmatched' message.
24033 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24035 2000-03-31 Akim Demaille <akim@epita.fr>
24037 * src/files.c (tryopen, tryclose): Move to the top.
24040 2000-03-31 Akim Demaille <akim@epita.fr>
24042 * src/main.c (main): Don't call `done', exit does it.
24044 2000-03-31 Akim Demaille <akim@epita.fr>
24046 * allocate.c: s/return (foo)/return foo/.
24047 * lalr.c: Likewise.
24049 * output.c: Likewise.
24050 * reader.c: Likewise.
24051 * symtab.c: Likewise.
24052 * vmsgetargs.c: Likewise.
24054 2000-03-31 Akim Demaille <akim@epita.fr>
24056 Clean up the error reporting functions.
24058 * src/report.c: New file.
24059 * src/report.h: Likewise.
24060 * src/Makefile.am: Adjust.
24061 * m4/error.m4: New file.
24062 * m4/Makefile.am: Adjust.
24063 * configure.in (jm_PREREQ_ERROR): Call it.
24064 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24066 (fatal, fatals): Remove. All callers use complain.c::fatal.
24067 (warn, warni, warns, warnss, warnss): Remove. All callers use
24068 complain.c::complain.
24069 (toomany): Remove, use fatal instead.
24070 * src/files.c (done): No argument, use complain_message_count.
24071 * src/main.c (main): Register `done' to `atexit'.
24073 * src/getargs.c (usage): More `fputs', less `fprintf'.
24075 2000-03-28 Akim Demaille <akim@epita.fr>
24077 * lib/: New directory.
24078 * Makefile.am (SUBDIRS): Adjust.
24079 * configure.in: Adjust.
24080 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
24082 * src/alloca.c: Moved to lib/.
24083 * src/getopt.c: Likewise.
24084 * src/getopt1.c: Likewise.
24085 * src/getopt.h: Likewise.
24086 * src/ansi2knr.c: Likewise.
24087 * src/ansi2knr.1: Likewise.
24088 * src/Makefile.am: Adjust.
24089 * lib/Makefile.am: New file.
24091 2000-03-28 Akim Demaille <akim@epita.fr>
24093 * src/getargs.c (usage): Refresh the help message.
24095 2000-03-17 Akim Demaille <akim@epita.fr>
24097 * src/getopt1.c: Updated from textutils 2.0e
24098 * src/getopt.c: Likewise.
24099 * src/getopt.h: Likewise.
24101 2000-03-17 Akim Demaille <akim@epita.fr>
24103 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24104 the file name, not the whole `#line LINE FILE'.
24106 2000-03-17 Akim Demaille <akim@epita.fr>
24108 On syntax errors, report the token on which we choked.
24110 * src/bison.s1 (yyparse): In the label yyerrlab, when
24111 YYERROR_VERBOSE, add yychar in msg.
24113 2000-03-17 Akim Demaille <akim@epita.fr>
24115 * src/reader.c (copy_at): New function.
24116 (copy_guard): Use it.
24117 (copy_action): Use it.
24119 2000-03-17 Akim Demaille <akim@epita.fr>
24121 Be kind to translators, save some useless translations.
24123 * src/main.c (banner): New function.
24124 (fatal_banner): Use it.
24125 (warn_banner): Use it.
24127 2000-03-17 Akim Demaille <akim@epita.fr>
24129 * src/reader.c (copy_definition): Use copy_string and
24130 copy_comment. Removed now unused `match', `ended',
24132 (copy_comment, copy_string): Moved, to be visible from
24135 2000-03-17 Akim Demaille <akim@epita.fr>
24137 * src/reader.c (copy_string): Declare `static inline'. No
24138 problems with inline, since it is checked by configure.
24139 (copy_comment): Likewise.
24141 2000-03-17 Akim Demaille <akim@epita.fr>
24143 * src/reader.c (packsymbols): Formatting changes.
24145 2000-03-17 Akim Demaille <akim@epita.fr>
24147 * src/reader.c (copy_comment): New function, factored out from:
24148 (copy_action): Use it. Removed now unused `match', `ended',
24150 (copy_guard): Likewise.
24152 2000-03-17 Akim Demaille <akim@epita.fr>
24154 * src/reader.c (copy_string): New function, factored out from:
24155 (copy_action): Use it.
24156 (copy_guard): Likewise.
24158 2000-03-17 Akim Demaille <akim@epita.fr>
24160 Change the handling of @s so that they behave exactly like $s.
24161 There is now a pseudo variable @$ (readble and writable), location
24162 of the lhs of the rule (by default ranging from the location of
24163 the first symbol of the rhs, to the location of the last symbol,
24164 or, if the rhs is empty, YYLLOC).
24166 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24168 (yyparse): When providing a default semantic action, provide a
24169 default location action.
24170 (after the $): No longer change `*YYLSP', just stack YYLOC the
24171 same way you stack YYVAL.
24172 * src/reader.c (read_declarations): Use warns.
24173 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24174 (copy_action, case '@'): Likewise.
24175 Use a standard error message, to save useless work from
24178 2000-03-17 Akim Demaille <akim@epita.fr>
24180 * src/bison.s1: Formatting and cosmetics changes.
24181 * src/reader.c: Likewise.
24182 Update the Copyright notice.
24184 2000-03-17 Akim Demaille <akim@epita.fr>
24186 * src/bison.s1 (#line): All set to `#line' only, since the
24187 Makefile now handles them.
24189 2000-03-16 Akim Demaille <akim@epita.fr>
24191 * src/output.c (output_rule_data): Output the documentation of
24192 some of the tables.
24193 (Copyright notice): Update.
24194 Formatting changes.
24196 2000-03-16 Akim Demaille <akim@epita.fr>
24198 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24199 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24200 One `#if YYDEBUG' remains, since it uses variables which are
24201 defined only if `YYDEBUG != 0'.
24203 2000-03-16 Akim Demaille <akim@epita.fr>
24205 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24206 and related variables so that the similarities are highlighted.
24208 2000-03-16 Akim Demaille <akim@epita.fr>
24210 * src/bison.s1: Properly indent CPP directives.
24212 2000-03-16 Akim Demaille <akim@epita.fr>
24214 * src/bison.s1: Properly indent the `alloca' CPP section.
24216 2000-03-16 Akim Demaille <akim@epita.fr>
24218 Do not hard code values of directories in `configure.in'.
24219 Update the `configure' tool chain.
24221 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24223 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24224 (AC_OUTPUT): Add m4/Makefile.
24225 Bump to bison 1.28a, 1.29 has never been released.
24226 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24227 handled via src/Makefile.am.
24228 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24229 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24231 * Makefile.am (SUBDIRS): Add m4.
24232 (ACLOCAL_AM_FLAGS): New variable.
24233 (AUTOMAKE_OPTIONS): Add check-news.
24234 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24235 the proper line number and file name.
24236 (DEFS): Propagate the location of bison library files and of the
24238 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24240 * acinclude.m4: Remove, replaced by the directory m4.
24241 * m4/Makefile.am (EXTRA_DIST): New variable.
24242 * m4/gettext.m4: New file, from the fileutils.
24243 * m4/lcmessage.m4: Likewise
24244 * m4/progtest.m4: Likewise.
24245 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24247 2000-03-10 Akim Demaille <akim@epita.fr>
24250 Formatting changes of various comments.
24251 Respect the GNU coding standards at various places.
24252 Don't use `_()' when no translation is needed.
24254 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24257 OS/2 honors TMPDIR environment variable.
24259 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24261 * doc/bison.texinfo: Tweaked spelling and grammar.
24263 Removed reference to price of printed copy.
24264 Mention BISON_SIMPLE and BISON_HAIRY.
24266 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24268 * configure.in, NEWS:
24269 Bison 1.29 released.
24271 1999-10-27 Jesse Thilo <jthilo@gnu.org>
24273 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24274 Added reference card.
24276 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24278 * po/ru.po: Added Russian translation.
24280 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24282 * configure.in: Added Russian translation.
24284 1999-07-06 Jesse Thilo <jthilo@gnu.org>
24286 * configure.in, NEWS, README:
24287 Released version 1.28.
24289 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24292 Squashed redefinition warning on some systems.
24294 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24295 Have configure build version string instead of relying on ANSI string
24298 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24300 * po/POTFILES.in: Got rid of version.c.
24302 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24304 * acconfig.h, configure.in:
24305 Have configure build version string instead of relying on ANSI string
24308 1999-06-08 Jesse Thilo <jthilo@gnu.org>
24311 Dropped mention of `+' for long-named options.
24313 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24315 * src/files.c: Added <unistd.h> for unlink().
24317 * src/Makefile.am, src/system.h:
24320 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24322 * README: Added a FAQ list.
24324 * configure.in, acconfig.h:
24327 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24329 * doc/FAQ, doc/Makefile.am:
24332 1999-05-19 Jesse Thilo <jthilo@gnu.org>
24334 * src/alloc.h, src/symtab.h, src/version.c:
24335 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24337 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24339 * src/.cvsignore, src/Makefile.am:
24340 Reorganized: sources in `src', documentation in `doc'.
24342 * src/lex.c (literalchar):
24343 fixed the code for escaping double quotes (thanks
24346 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24348 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24349 Adjusted paths to reflect directory reorganization.
24351 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24353 * doc/.cvsignore, doc/Makefile.am:
24354 Reorganized: sources in `src', documentation in `doc'.
24356 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24359 Updated AC_INIT file to reflect directory reorganization.
24361 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24362 Reorganized: sources in `src', documentation in `doc'.
24364 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24367 Don't declare calloc() and realloc() if not necessary.
24369 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24371 * configure.in, acconfig.h, acinclude.m4:
24372 Don't declare calloc() and realloc() if not necessary.
24374 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24376 * po/.cvsignore: Added i18n support.
24378 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24380 * acconfig.h, configure.in, Makefile.am:
24381 Added i18n support.
24383 1999-03-22 Jesse Thilo <jthilo@gnu.org>
24385 * src/bison.s1: Fixed #line numbers.
24387 1999-03-15 Jesse Thilo <jthilo@gnu.org>
24389 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24390 Added PO files from Translation Project.
24392 1999-03-03 Jesse Thilo <jthilo@gnu.org>
24395 Added support for non-ANSI compilers (ansi2knr).
24397 1999-02-16 Jesse Thilo <jthilo@gnu.org>
24399 * configure.in: Bumped version number to 1.27.
24402 Added `bison.simple' to list of files removed by `make distclean'.
24404 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24406 * src/files.c, src/files.h:
24407 Defined locations of parser files in config.h instead of Makefile.
24409 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24411 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24412 Defined locations of parser files in config.h instead of Makefile.
24414 1999-02-09 Jesse Thilo <jthilo@gnu.org>
24417 Removed inappropriate use of $< macro.
24419 1999-02-05 Jesse Thilo <jthilo@gnu.org>
24421 * po/Makefile.in.in, po/POTFILES.in:
24422 Add `po' directory skeleton.
24424 1999-01-27 Jesse Thilo <jthilo@gnu.org>
24426 * README: Document help-bison list.
24428 * configure.in: Add check for mkstemp().
24430 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24432 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24433 Hush a few compiler warnings.
24436 Add tryclose(), which verifies that fclose was successful.
24437 Hush a couple of compiler warnings.
24439 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24441 * Makefile.am, OChangeLog:
24442 ChangeLog is now automatically generated. Include the old version as
24445 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24447 * 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:
24448 Update FSF address.
24450 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24452 * doc/bison.texinfo: Fix formatting glitch.
24454 * doc/bison.texinfo: Update FSF address.
24456 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24458 * acconfig.h: Update FSF address.
24460 1999-01-08 Jesse Thilo <jthilo@gnu.org>
24463 Don't define PACKAGE here, since config.h defines it.
24465 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24467 * src/reader.c: Update copyright date.
24470 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24471 favor of output directly to stderr (avoids buffer overruns).
24473 * src/reader.c: Some checks for premature EOF.
24475 * 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:
24476 Use prototypes if the compiler understands them.
24478 * src/files.c: Honor TMPDIR on Unix hosts.
24479 Use prototypes if the compiler understands them.
24482 Fix a couple of buffer overrun bugs.
24483 Use prototypes if the compiler understands them.
24485 * src/system.h: Include unistd.h and ctype.h.
24486 Use #ifdef instead of #if for NLS symbols.
24488 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24490 * doc/bison.texinfo:
24491 Delete comment "consider using @set for edition number, etc..." since
24492 we now are doing so.
24494 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24497 Use prototypes if the compiler understands them.
24499 * NEWS: Document 1.26 highlights.
24501 * Makefile.am: Require Automake 1.3 or later.
24504 Use prototypes if the compiler understands them.
24506 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24509 Use VERSION symbol from automake for version number.
24511 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24513 * acconfig.h, configure.in, version.cin:
24514 Use VERSION symbol from automake for version number.
24516 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24519 Distribute original version of simple parser (bison.s1), not built
24520 version (bison.simple).
24522 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24524 * doc/bison.texinfo: Add info dir entry.
24526 * doc/bison.texinfo:
24527 Let automake put version number into documentation.
24529 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24531 * src/bison.cld, src/build.com, src/vmshlp.mar:
24532 Add non-RCS files from /gd/gnu/bison.
24534 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24537 Document the BISON_HAIRY and BISON_SIMPLE variables.
24539 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24541 * src/version.c: Build version.c automatically.
24544 Fix token numbering (used to start at 258, not 257).
24546 * src/system.h: Include config.h.
24548 * src/getargs.c: Update bug report address.
24550 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24551 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24553 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24556 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24558 * configure.in, version.cin:
24559 Build version.c automatically.
24561 * AUTHORS: Add AUTHORS file.
24563 * README: Update bug report address.
24566 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24568 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24569 Add automake stuff.
24571 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24573 * doc/bison.texinfo: Clean up some formatting.
24575 1998-05-05 Richard Stallman <rms@gnu.org>
24577 * doc/bison.texinfo:
24578 Explain better why to make a pure parser.
24580 1998-01-05 Richard Stallman <rms@gnu.org>
24582 * src/files.c (openfiles):
24583 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24584 find a temporary directory, if possible. Do not unlink files while
24587 1997-08-25 Richard Stallman <rms@gnu.org>
24589 * src/reader.c (stack_offset;):
24590 Change some warni to warns.
24592 * src/lex.c (literalchar): Use warns, not warni.
24594 1997-06-28 Richard Stallman <rms@gnu.org>
24596 * src/bison.s1: Add a Bison version comment.
24598 * src/main.c (fatal, warn, berror):
24601 1997-06-28 Richard Stallman <rms@gnu.org>
24603 * Makefile.in (bison_version): New variable.
24604 (dist): Use that variable.
24605 (bison.s1): Substitute the Bison version into bison.simple.
24607 * bison.simple: Add a Bison version comment.
24609 1997-06-18 Richard Stallman <rms@gnu.org>
24611 * src/main.c (fatal, warn, berror):
24612 Make error messages standard.
24613 (toomany): Improve error message text.
24615 * 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:
24616 new.h renamed to alloc.h.
24618 1997-06-18 Richard Stallman <rms@gnu.org>
24620 * Makefile.in: new.h renamed to alloc.h.
24622 1997-05-24 Richard Stallman <rms@gnu.org>
24624 * src/lex.c (literalchar):
24625 Fix the code for escaping \, " and '.
24627 (lex): Avoid trouble when there are many chars
24628 to discard in a char literal with just several chars in it.
24630 1997-05-17 Richard Stallman <rms@gnu.org>
24633 Use malloc, if using alloca is troublesome.
24634 (YYSTACK_USE_ALLOCA): New flag macro.
24635 Define it for some systems and compilers.
24636 (YYSTACK_ALLOC): New macro.
24637 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24638 If it was malloc'd, free it.
24640 1997-05-17 Richard Stallman <rms@gnu.org>
24643 Use malloc, if using alloca is troublesome.
24644 (YYSTACK_USE_ALLOCA): New flag macro.
24645 Define it for some systems and compilers.
24646 (YYSTACK_ALLOC): New macro.
24647 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24648 If it was malloc'd, free it.
24650 1997-04-23 Richard Stallman <rms@gnu.org>
24653 (alloca) [__hpux]: Always define as __builtin_alloca.
24655 1997-04-23 Richard Stallman <rms@gnu.org>
24658 (alloca) [__hpux]: Always define as __builtin_alloca.
24660 1997-04-22 Richard Stallman <rms@gnu.org>
24663 [__hpux]: Include alloca.h (right for HPUX 10)
24664 instead of declaring alloca (right for HPUX 9).
24666 * src/bison.s1 (__yy_memcpy):
24667 Declare arg `count' as unsigned int.
24668 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24670 1997-04-22 Richard Stallman <rms@gnu.org>
24673 [__hpux]: Include alloca.h (right for HPUX 10)
24674 instead of declaring alloca (right for HPUX 9).
24676 * bison.simple (__yy_memcpy):
24677 Declare arg `count' as unsigned int.
24678 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24680 1997-01-03 Richard Stallman <rms@gnu.org>
24682 * src/allocate.c: [__STDC__ or _MSC_VER]:
24683 Declare calloc and realloc to return void *.
24685 1997-01-02 Richard Stallman <rms@gnu.org>
24688 [_MSC_VER]: Include stdlib.h and process.h.
24689 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24691 * src/main.c (main): Return FAILURE as a value.
24692 (printable_version): Declare arg as int, not char.
24694 1997-01-02 Richard Stallman <rms@gnu.org>
24696 * Makefile.in (dist):
24697 Explicitly check for symlinks, and copy them.
24699 1996-12-19 Richard Stallman <rms@gnu.org>
24702 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24704 1996-12-18 Paul Eggert <eggert@gnu.org>
24706 * src/bison.s1 (yyparse):
24707 If __GNUC__ and YYPARSE_PARAM are both defined,
24708 declare yyparse to have a void * argument.
24710 1996-12-18 Paul Eggert <eggert@gnu.org>
24712 * bison.simple (yyparse):
24713 If __GNUC__ and YYPARSE_PARAM are both defined,
24714 declare yyparse to have a void * argument.
24716 1996-12-17 Richard Stallman <rms@gnu.org>
24718 * src/reduce.c (nbits): Add some casts.
24720 1996-08-12 Richard Stallman <rms@gnu.org>
24722 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24724 1996-08-12 Richard Stallman <rms@gnu.org>
24726 * bison.simple: Test _MSDOS as well as _MSDOS_.
24728 1996-07-31 Richard Stallman <rms@gnu.org>
24731 [__sun && __i386]: Include alloca.h.
24733 1996-07-31 Richard Stallman <rms@gnu.org>
24736 [__sun && __i386]: Include alloca.h.
24738 1996-07-30 Richard Stallman <rms@gnu.org>
24740 * src/bison.s1: Comment change.
24742 * src/bison.s1: Test _MSDOS_, not MSDOS.
24744 1996-07-30 Richard Stallman <rms@gnu.org>
24746 * bison.simple: Comment change.
24748 * bison.simple: Test _MSDOS_, not MSDOS.
24750 1996-06-01 Richard Stallman <rms@gnu.org>
24752 * 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:
24753 Insert `_' macro around many string constants.
24756 Insert `_' macro around many string constants.
24758 (main): Call setlocale, bindtextdomain and textdomain.
24760 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24761 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24762 [ENABLE_NLS]: Include libintl.h.
24763 [ENABLE_NLS] (gettext): Define.
24764 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24765 (N_, PACKAGE, LOCALEDIR): New macros.
24767 1996-06-01 Richard Stallman <rms@gnu.org>
24769 * POTFILES.in: New file.
24771 * Makefile.in (allocate.o):
24772 Define target explicitly.
24774 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24775 (LDFLAGS): Set to @LDFLAGS@.
24776 (configure): Run autoconf only if preceding `cd' succeeds.
24777 (bison.s1): Redirect output to temporary file then move the
24778 temporary to the target, rather than redirecting directly to bison.s1.
24779 (clean): Remove config.status and config.log.
24780 (distclean): Don't remove config.status here.
24782 1996-05-12 Richard Stallman <rms@gnu.org>
24785 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24787 1996-05-12 Richard Stallman <rms@gnu.org>
24790 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24792 1996-05-11 Richard Stallman <rms@gnu.org>
24794 * src/bison.s1 (__yy_memcpy):
24795 Really reorder the args, as was supposedly done on Feb 14 1995.
24796 (yyparse): Calls changed accordingly.
24798 1996-05-11 Richard Stallman <rms@gnu.org>
24800 * Makefile.in (dist): Don't use $(srcdir).
24802 * bison.simple (__yy_memcpy):
24803 Really reorder the args, as was supposedly done on Feb 14 1995.
24804 (yyparse): Calls changed accordingly.
24806 1996-01-27 Richard Stallman <rms@gnu.org>
24808 * src/output.c (output_rule_data):
24809 Test YYERROR_VERBOSE in the conditional
24810 around the definition of ttyname.
24812 1995-12-29 Richard Stallman <rms@gnu.org>
24815 Fix line numbers in #line commands.
24817 1995-12-29 Richard Stallman <rms@gnu.org>
24820 Fix line numbers in #line commands.
24822 1995-12-27 Richard Stallman <rms@gnu.org>
24824 * src/bison.s1 (YYPARSE_PARAM_DECL):
24825 In C++, make it always null.
24826 (YYPARSE_PARAM_ARG): New macro.
24827 (yyparse): Use YYPARSE_PARAM_ARG.
24829 1995-12-27 Richard Stallman <rms@gnu.org>
24831 * bison.simple (YYPARSE_PARAM_DECL):
24832 In C++, make it always null.
24833 (YYPARSE_PARAM_ARG): New macro.
24834 (yyparse): Use YYPARSE_PARAM_ARG.
24836 1995-11-29 Richard Stallman <rms@gnu.org>
24838 * doc/bison.texinfo:
24839 Describe literal string tokens, %raw, %no_lines, %token_table.
24841 1995-11-29 Daniel Hagerty <hag@gnu.org>
24843 * doc/bison.texinfo: Fixed update date
24845 1995-10-16 Richard Stallman <rms@gnu.org>
24847 * src/version.c: Version 1.25.
24849 1995-10-16 Richard Stallman <rms@gnu.org>
24851 * NEWS: *** empty log message ***
24853 1995-10-16 Richard Stallman <rms@gnu.org>
24855 * doc/bison.1, doc/bison.rnh:
24858 1995-10-15 Richard Stallman <rms@gnu.org>
24860 * src/vmsgetargs.c, src/getargs.c:
24861 Added -n, -k, and -raw switches.
24862 (noparserflag, toknumflag, rawtoknumflag): New variables.
24864 * src/symtab.h (SALIAS):
24865 New #define for adding aliases to %token.
24866 (struct bucket): Added `alias' field.
24868 * src/reduce.c (reduce_grammar):
24869 Revise error message.
24870 (print_notices): Remove final `.' from error message.
24872 * src/reader.c (reader_output_yylsp):
24874 (readgram): Use `#if 0' around code that accepted %command
24875 inside grammar rules: The documentation doesn't allow it,
24876 and it will fail since the %command processors scan for the next %.
24877 (parse_token_decl): Extended the %token
24878 declaration to allow a multi-character symbol as an alias.
24879 (parse_thong_decl): New function.
24880 (read_declarations): Added %thong declarations.
24881 (read_declarations): Handle NOOP to deal with allowing
24882 % declarations as another means to specify the flags.
24883 (readgram): Allow %prec prior to semantics embedded in a rule.
24884 (skip_to_char, read_declarations, copy_definition)
24885 (parse_token_decl, parse_start_decl, parse_type_decl)
24886 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24887 (get_type_name, copy_guard, copy_action, readgram)
24888 (get_type, packsymbols): Revised most error messages.
24889 Changed `fatal' to `warnxxx' to avoid aborting for error.
24890 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24891 (read_declarations): Improve the error message for
24892 an invalid character. Do not abort.
24893 (read_declarations, copy_guard, copy_action): Use
24894 printable_version to avoid unprintable characters in printed output.
24895 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24896 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24897 Allow the type of a non-terminal can be given
24898 more than once, as long as all specifications give the same type.
24901 (output_headers, output_trailers, output, output_gram)
24902 (output_rule_data): Implement noparserflag variable.
24903 Implement toknumflag variable.
24904 (output): Call reader_output_yylsp to output LTYPESTR.
24906 * src/main.c (main):
24907 If reader sees an error, don't process the grammar.
24908 (fatals): Updated to not use VARARGS1.
24909 (printable_version, int_to_string, warn, warni, warns, warnss)
24910 (warnsss): New error reporting functions. Avoid abort for error.
24913 Added THONG and NOOP for alias processing.
24914 Added SETOPT for the new code that allows setting options with %flags.
24917 Include getopt.h. Add some extern decls.
24918 (safegetc): New function to deal with EOF gracefully.
24919 (literalchar); new function to deal with reading \ escapes.
24920 (lex): Use literalchar.
24921 (lex): Implemented "..." tokens.
24922 (literalchar, lex, parse_percent_token): Made tokenbuffer
24923 always contain the token. This includes growing the token
24924 buffer while reading an integer.
24925 (parse_percent_token): Replaced if-else statement with percent_table.
24926 (parse_percent_token): Added % declarations as another
24927 way to specify the flags -n, -l, and -r. Also added hooks for
24928 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24929 major changes to files.c.
24930 (lex) Retain in the incoming stream a character following
24932 (skip_white_space, lex): Revised most error messages
24933 and changed fatal to warn to avoid aborting.
24934 (percent_table): Added %thong declarations.
24936 * src/gram.h: Comment changes.
24938 * src/files.c (openfiles, open_extra_files, done):
24940 and actfile file. Handle noparserflag. Both for -n switch.
24942 * src/conflicts.c (resolve_sr_conflict):
24943 Remove use of alloca.
24945 1995-06-01 Jim Meyering <meyering@gnu.org>
24947 * doc/bison.texinfo: *** empty log message ***
24949 1995-05-06 Richard Stallman <rms@gnu.org>
24951 * src/bison.s1: Comment change.
24953 1995-05-06 Richard Stallman <rms@gnu.org>
24955 * bison.simple: Comment change.
24957 1995-05-03 Richard Stallman <rms@gnu.org>
24959 * src/version.c: Version now 1.24.
24961 * src/bison.s1: Change distribution terms.
24963 * src/version.c: Version now 1.23.
24965 1995-05-03 Richard Stallman <rms@gnu.org>
24967 * doc/bison.texinfo:
24968 Rewrite "Conditions for Using Bison".
24969 Update version to 1.24.
24971 1995-05-03 Richard Stallman <rms@gnu.org>
24973 * bison.simple: Change distribution terms.
24975 1995-02-23 Richard Stallman <rms@gnu.org>
24977 * src/files.c: Test __VMS_POSIX as well as VMS.
24979 1995-02-14 Jim Meyering <meyering@gnu.org>
24981 * src/bison.s1 (__yy_memcpy):
24982 Renamed from __yy_bcopy to avoid
24983 confusion. Reverse FROM and TO arguments to be consistent with
24986 1995-02-14 Jim Meyering <meyering@gnu.org>
24988 * bison.simple (__yy_memcpy):
24989 Renamed from __yy_bcopy to avoid
24990 confusion. Reverse FROM and TO arguments to be consistent with
24993 1994-11-10 David J. MacKenzie <djm@gnu.org>
24999 * Makefile.in (DISTFILES): Include NEWS.
25001 * Makefile.in (DISTFILES):
25002 Include install-sh, not install.sh.
25004 * configure.in: Update to Autoconf v2 macro names.
25006 1994-10-05 David J. MacKenzie <djm@gnu.org>
25008 * Makefile.in: fix typo
25010 * Makefile.in (prefix, exec_prefix):
25011 Let configure set them.
25013 1994-09-28 David J. MacKenzie <djm@gnu.org>
25015 * Makefile.in: Set datadir to $(prefix)/share.
25017 1994-09-15 Richard Stallman <rms@gnu.org>
25020 Update copyright notice and GPL version.
25022 1994-09-15 Richard Stallman <rms@gnu.org>
25025 Update copyright notice and GPL version.
25027 1994-07-12 Richard Stallman <rms@gnu.org>
25029 * src/reduce.c, src/reader.c:
25032 1994-05-05 David J. MacKenzie <djm@gnu.org>
25034 * Makefile.in: entered into RCS
25036 1994-03-26 Richard Stallman <rms@gnu.org>
25038 * src/bison.s1: entered into RCS
25040 1994-03-26 Richard Stallman <rms@gnu.org>
25042 * bison.simple: entered into RCS
25044 1994-03-25 Richard Stallman <rms@gnu.org>
25046 * src/main.c: entered into RCS
25048 1994-03-24 Richard Stallman <rms@gnu.org>
25050 * src/conflicts.c: entered into RCS
25052 1994-01-02 Richard Stallman <rms@gnu.org>
25054 * Makefile.in: *** empty log message ***
25056 1993-11-21 Richard Stallman <rms@gnu.org>
25058 * src/bison.s1: *** empty log message ***
25060 1993-11-21 Richard Stallman <rms@gnu.org>
25062 * doc/bison.texinfo: entered into RCS
25064 * doc/bison.texinfo: *** empty log message ***
25066 1993-11-21 Richard Stallman <rms@gnu.org>
25068 * bison.simple: *** empty log message ***
25070 1993-10-25 David J. MacKenzie <djm@gnu.org>
25072 * doc/bison.texinfo: *** empty log message ***
25074 1993-10-19 Richard Stallman <rms@gnu.org>
25076 * src/bison.s1: *** empty log message ***
25078 1993-10-19 Richard Stallman <rms@gnu.org>
25080 * bison.simple: *** empty log message ***
25082 1993-10-14 Richard Stallman <rms@gnu.org>
25084 * src/bison.s1: *** empty log message ***
25086 1993-10-14 Richard Stallman <rms@gnu.org>
25088 * bison.simple: *** empty log message ***
25090 1993-09-14 David J. MacKenzie <djm@gnu.org>
25092 * doc/bison.texinfo: *** empty log message ***
25094 1993-09-13 Noah Friedman <friedman@gnu.org>
25096 * Makefile.in: *** empty log message ***
25098 1993-09-10 Richard Stallman <rms@gnu.org>
25100 * src/conflicts.c: *** empty log message ***
25102 * src/system.h: entered into RCS
25104 1993-09-10 Richard Stallman <rms@gnu.org>
25106 * doc/bison.1: entered into RCS
25108 1993-09-06 Noah Friedman <friedman@gnu.org>
25110 * src/version.c: entered into RCS
25112 1993-09-06 Noah Friedman <friedman@gnu.org>
25114 * Makefile.in: *** empty log message ***
25116 1993-07-30 David J. MacKenzie <djm@gnu.org>
25118 * Makefile.in: *** empty log message ***
25120 1993-07-24 Richard Stallman <rms@gnu.org>
25122 * src/bison.s1: *** empty log message ***
25124 1993-07-24 Richard Stallman <rms@gnu.org>
25126 * bison.simple: *** empty log message ***
25128 1993-07-08 David J. MacKenzie <djm@gnu.org>
25130 * Makefile.in: *** empty log message ***
25132 1993-07-04 Richard Stallman <rms@gnu.org>
25134 * src/bison.s1: *** empty log message ***
25136 1993-07-04 Richard Stallman <rms@gnu.org>
25138 * bison.simple: *** empty log message ***
25140 1993-06-26 David J. MacKenzie <djm@gnu.org>
25142 * src/getargs.c: entered into RCS
25144 1993-06-26 David J. MacKenzie <djm@gnu.org>
25146 * doc/bison.texinfo: *** empty log message ***
25148 * doc/bison.1: New file.
25150 1993-06-25 Richard Stallman <rms@gnu.org>
25152 * src/getargs.c: New file.
25154 1993-06-16 Richard Stallman <rms@gnu.org>
25156 * src/bison.s1: *** empty log message ***
25158 1993-06-16 Richard Stallman <rms@gnu.org>
25160 * bison.simple: *** empty log message ***
25162 1993-06-03 Richard Stallman <rms@gnu.org>
25164 * src/bison.s1: New file.
25166 1993-06-03 Richard Stallman <rms@gnu.org>
25168 * doc/bison.texinfo: *** empty log message ***
25170 1993-06-03 Richard Stallman <rms@gnu.org>
25172 * bison.simple: New file.
25174 1993-05-19 Richard Stallman <rms@gnu.org>
25176 * doc/bison.texinfo: New file.
25178 1993-05-07 Noah Friedman <friedman@gnu.org>
25180 * Makefile.in: *** empty log message ***
25182 1993-04-28 Noah Friedman <friedman@gnu.org>
25184 * src/reader.c: *** empty log message ***
25186 1993-04-23 Noah Friedman <friedman@gnu.org>
25188 * src/alloc.h: entered into RCS
25190 1993-04-20 David J. MacKenzie <djm@gnu.org>
25192 * src/version.c: *** empty log message ***
25194 * src/files.c, src/allocate.c:
25197 * src/reader.c: *** empty log message ***
25199 * src/lex.c: entered into RCS
25201 * src/conflicts.c: New file.
25203 * src/symtab.c: entered into RCS
25205 * src/alloc.h: New file.
25207 * src/LR0.c: entered into RCS
25209 1993-04-18 Noah Friedman <friedman@gnu.org>
25211 * src/reader.c: New file.
25213 * src/version.c: *** empty log message ***
25215 1993-04-18 Noah Friedman <friedman@gnu.org>
25217 * Makefile.in: *** empty log message ***
25219 1993-04-17 Noah Friedman <friedman@gnu.org>
25221 * Makefile.in: *** empty log message ***
25223 1993-04-15 Richard Stallman <rms@gnu.org>
25225 * src/main.c, src/files.c:
25228 1993-04-15 Noah Friedman <friedman@gnu.org>
25230 * configure.in: entered into RCS
25232 * configure.in: *** empty log message ***
25234 * configure.in: New file.
25236 1993-04-14 Richard Stallman <rms@gnu.org>
25238 * Makefile.in: New file.
25240 1993-04-13 Richard Stallman <rms@gnu.org>
25242 * src/version.c: New file.
25244 1993-03-25 Richard Stallman <rms@gnu.org>
25246 * src/output.c: entered into RCS
25248 1992-09-25 Richard Stallman <rms@gnu.org>
25250 * configure.bat: entered into RCS
25252 1992-06-22 Richard Stallman <rms@gnu.org>
25254 * src/vmsgetargs.c: entered into RCS
25256 1992-06-22 Richard Stallman <rms@gnu.org>
25258 * doc/bison.rnh: entered into RCS
25260 1992-04-20 David J. MacKenzie <djm@gnu.org>
25262 * README: entered into RCS
25264 1992-01-22 Richard Stallman <rms@gnu.org>
25266 * src/machine.h: entered into RCS
25268 1991-12-21 Richard Stallman <rms@gnu.org>
25270 * src/lalr.c, src/closure.c:
25273 1991-12-20 Richard Stallman <rms@gnu.org>
25275 * src/state.h: entered into RCS
25277 1991-12-18 Richard Stallman <rms@gnu.org>
25279 * src/print.c, src/nullable.c, src/derives.c:
25282 1991-11-03 David J. MacKenzie <djm@gnu.org>
25284 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25287 1988-09-09 Richard Stallman <rms@gnu.org>
25289 * src/bison.hairy: entered into RCS
25291 1987-12-16 Richard Stallman <rms@gnu.org>
25293 * REFERENCES: entered into RCS
25298 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
25301 Copying and distribution of this file, with or without
25302 modification, are permitted provided the copyright notice and this
25303 notice are preserved.