1 2010-03-25 Akim Demaille <demaille@gostai.com>
3 tests: fix 250: parse.error=verbose overflow.
4 * tests/regression.at (parse.error=verbose overflow): Avoid the
5 double inclusion of stdlib.h as it triggers hard errors.
7 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
9 portability: fix for BSD make.
10 Reported by Johan van Selst at
11 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
12 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
13 this dependency list as in package.m4's target rule.
15 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
17 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
18 Reported by Johan van Selst at
19 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
21 * THANKS (Johan van Selst): Add.
22 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
23 targets so that gnulib's new c++defs.h is matched.
24 * gnulib: Update to latest.
26 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
28 maint: update for changes to gnulib's announce-gen.
29 * HACKING (Announce): RELEASE_TYPE=major must now be written
32 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
35 * NEWS (2.4.2): Set version and date. For the recent test suite
36 portability fixes, don't be so optimistic about their success
37 given the lack of feedback on the affected platforms.
39 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
41 tests: fix maintainer-xml-check for recent changes.
42 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
43 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
44 output file whose name conflicts with a previous output file
45 is now never generated.
47 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
49 portability: fix several issues with M4 subprocess.
51 M4's output pipe was not being drained upon fatal errors during
52 scan_skel. As a result, broken-pipe messages from M4 were seen
53 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
54 failure in the test suite. The problem was that, on platforms
55 where the default disposition for SIGPIPE is ignore instead of
56 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
57 then reported it. However, there's some sort of race condition,
58 because the new test group occasionally succeeded.
59 Reported by Albert Chin at
60 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
62 There were also problems with the test suite livelocking on
63 Tru64 5.1b. Reported by Didier Godefroy at
64 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
65 Switching to create_pipe_bidi suggested by Akim Demaille.
67 To attempt to solve both of these problems, switch to gnulib's
68 create_pipe_bidi and register M4 process as a slave. Along the
69 way, clean up file name conflict handling, which was affected by
70 the broken-pipe problem before the switch.
71 * NEWS (2.4.2): Document.
72 * THANKS (Didier Godefroy): Add.
73 * bootstrap.conf (gnulib_modules): Add pipe.
74 * gnulib: Update to latest to make sure we have all the latest
76 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
78 * po/POTFILES.in (lib/subpipe.c): Remove.
79 * src/files.c (compute_output_file_names): Update invocations
80 of output_file_name_check.
81 (output_file_name_check): In the case that the grammar file
82 would be overwritten, use complain instead of fatal, but replace
83 the output file name with /dev/null. Use the /dev/null solution
84 for the case of two conflicting output files as well because it
85 seems safer in case Bison one day tries to open both files at
87 * src/files.h (output_file_name_check): Update prototype.
88 * src/output.c (output_skeleton): Use create_pipe_bidi and
89 wait_subprocess. Assert that scan_skel completely drains the
91 * src/scan-skel.l (at_directive_perform): Update
92 output_file_name_check invocation.
93 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
94 grammar file actually isn't overwritten.
95 (Conflicting output files: -o foo.y): Update expected output.
96 * tests/skeletons.at (Fatal errors but M4 continues producing
97 output): New test group.
99 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
102 * HACKING (Release Procedure): Add reminder about keeping
103 POTFILES files up-to-date.
104 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
106 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
109 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
110 which is already defined in atconfig.
112 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
114 tests: fix missing include caught by g++ 4.4.1.
115 Reported by Tys Lefering.
116 * HACKING (Release checks): Add note about trying a recent GCC.
117 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
119 (_AT_DATA_EXPECT2_Y): Likewise.
121 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
123 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
125 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
127 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
128 * HACKING (Release Procedure): Update notes on copyright years.
129 * Makefile.am (update-package-copyright-year): New target rule.
130 * build-aux/update-package-copyright-year: New file.
131 * cfg.mk (update-copyright): Add update-package-copyright-year
134 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
136 * bootstrap: Import improvements from latest gnulib.
138 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
140 build: require Automake 1.11.1 to avoid a security flaw.
141 * HACKING (Release Procedure): Don't document Automake security
143 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
146 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
148 gnulib: update to latest.
150 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
152 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
154 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
156 Thank the developer of the initial push parser implementation.
157 This unfortunate oversight is several years old.
158 * THANKS (Odd Arild Olsen): Add.
160 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
162 Fix some comments concerning LR(0) versus LALR(1).
164 Stop equating LR(0) with nondeterminism and LALR(1) with
165 determinism. That is, if all states are consistent, then LR(0)
166 tables are deterministic. On the other hand, LALR(1) tables
167 might be nondeterministic before conflict resolution, and GLR
168 permits LALR(1) tables to remain nondeterministic.
169 * src/LR0.c, src/LR0.h: Here.
170 * src/lalr.c, src/lalr.h: Here.
171 * src/main.c (main): Here.
172 * src/state.c, src/state.h: Here.
174 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
177 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
179 maint: run "make update-copyright"
181 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
183 POSIX: complain if %prec's token was not defined.
184 * NEWS (2.5): Document.
185 * src/reader.c (grammar_rule_check): Convert warning to
187 * tests/input.at (%prec's token must be defined): Update.
189 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
191 POSIX: warn if %prec's token was not defined.
192 Reported by Florian Krohm at
193 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
194 * NEWS (2.4.2): Document.
195 * src/reader.c (grammar_rule_check): Implement.
196 (grammar_current_rule_prec_set): Add comments explaining that we
197 here assume a %prec identifier is a token, but we still manage
199 * tests/input.at (%prec's token must be defined): New test
202 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
204 * HACKING (Release Procedure): Recommend a secure automake.
206 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
208 portability: `<' and `>' are not always defined on addresses.
209 Specifically, don't sort objects by their memory addresses when
210 they're not allocated in the same array or other object. Though
211 I haven't found a test case where that fails on my platform, C
212 says the behavior is undefined.
213 * src/AnnotationList.c (AnnotationList__insertInto): Remove
214 FIXME. Use new id field of InadequacyList nodes rather than
215 their memory addresses when sorting.
216 (AnnotationList__compute_from_inadequacies): Add
217 inadequacy_list_node_count argument to pass to
218 InadequacyList__new_conflict.
219 * src/AnnotationList.h
220 (AnnotationList__compute_from_inadequacies): Update prototype
221 and documentation for new argument.
222 * src/InadequacyList.c (InadequacyList__new_conflict): Add
223 node_count argument and use it to assign a unique ID.
224 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
225 (InadequacyList): Add id field.
226 (InadequacyList__new_conflict): Update prototype and
227 documentation for new argument.
228 * src/ielr.c (ielr_compute_annotation_lists): Update
229 AnnotationList__compute_from_inadequacies invocation.
231 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
233 Fix handling of yychar manipulation in user semantic actions.
234 The problem was that yacc.c didn't always update the yychar
235 translation afterwards. However, other skeletons appear to be
236 fine. glr.c appears to already translate yychar before every
237 use. lalr1.cc does not define yychar and does not document its
238 replacement, yyla, for users. It does provide yyclearin, but
239 that does not manipulate yyla and thus requires no translation
240 update. In lalr1.java, yychar is out of scope during semantic
242 * NEWS (2.5): Document.
243 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
245 (yyparse, yypush_parse): Instead, translate before every use of
246 yytoken, and add comments explaining this approach.
247 * tests/actions.at (Destroying lookahead assigned by semantic
248 action): New test group checking that translation happens before
249 lookahead destructor calls at parser return. Previously,
250 incorrect destructors were called.
251 * tests/conflicts.at (parse.error=verbose and consistent
252 errors): New test group checking that translation happens at
253 syntax error detection before the associated verbose error
254 message and the associated lookahead destructor calls. While
255 the destructor call is fixed by this patch, the verbose error
256 message is currently incorrect due to another bug (see
257 comments in test group), so this is an expected failure for now.
259 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
261 YYFAIL: warn about uses and remove from lalr1.java.
262 * NEWS (2.5): Document.
263 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
264 and make it private. Update all uses.
265 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
267 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
270 * NEWS (2.4.2): Document deprecation and the phase-out plan.
271 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
273 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
274 YYFAIL from GCC cpp's -Wunused-macros.
275 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
277 (LocalWords): Remove YYFAIL.
279 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
282 * tests/c++.at (Syntax error discarding no lookahead): Don't
283 ignore stderr. Instead, eliminate remaining warnings.
285 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
287 lalr1.cc: don't discard non-existent lookahead on syntax error.
288 * data/lalr1.cc (parser::parse): Check yyempty first.
289 * tests/c++.at (Syntax error discarding no lookahead): New test
292 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
295 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
296 function, which is no longer used.
298 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
300 Add gcc's -Wundef to test suite and fix another warning from it.
301 * NEWS (2.4.2): Update description of -Wundef fix.
302 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
303 (WARN_CFLAGS_TEST): New substitution.
304 * data/glr.c: Avoid warning about __STRICT_ANSI__.
305 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
307 (NO_WERROR_CFLAGS): Likewise.
308 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
310 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
312 * data/yacc.c: Reformat m4 a little.
314 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
316 Document gcc -Wundef fix.
317 * NEWS (2.4.2): Here.
318 * THANKS (Jonathan Nieder): Add.
320 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
322 Simplify y.tab.c when location tracking is disabled.
323 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
324 tracking is not enabled. Instead, unconditionally define
325 YY_LOCATION_PRINT as a no-op for backward compatibility.
327 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
329 Avoid warnings from gcc -Wundef y.tab.c.
330 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
331 defined before using them.
332 * data/lalr1.cc: Likewise.
333 * data/yacc.c: Likewise.
335 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
337 autoconf: update to latest for fix of M4 detection.
338 Reported by Eric Blake.
339 * submodules/autoconf: Update.
341 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
343 portability: use -DGNULIB_POSIXCHECK.
344 Reported by Eric Blake. See discussions at
345 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
347 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
348 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
349 * bootstrap.conf (gnulib_modules): Add all the printf modules
350 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
351 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
352 (excluded_files): Remove m4/printf-posix.m4.
353 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
354 lib/libbison.a so gnulib libraries can be linked.
356 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
358 gnulib: update for fix of fprintf-posix, which we'll use soon.
359 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
360 targets so that gnulib's new arg-nonnull.h and link-warning.h
364 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
366 Enable assertion output and --disable-assert for configure.
367 * bootstrap.conf (gnulib_modules): Add assert module.
368 * src/system.h (aver): Define as assert, and summarize the
369 discussion on this issue.
371 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
373 Expand GLR acronym in summary of Bison.
374 Based on discussion with Akim Demaille starting at
375 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
376 * doc/bison.texinfo (Introduction): Here.
377 * src/getargs.c (usage): Here.
379 2009-10-03 Alex Rozenman <rozenman@gmail.com>
381 Document named references.
382 * doc/bison.texinfo (Actions): Add new example and xref to
383 Using Named References node.
384 (Using Named References): New node.
386 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
389 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
391 (Sbitset__isEmpty): Use Sbitset instead of char*.
392 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
393 instead of char. This helps to avoid casting errors.
394 (Sbitset__or): Use Sbitset instead of char*.
396 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
398 portability: don't assume 8-bit bytes.
399 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
400 * src/Sbitset.h (Sbitset__nbytes): Here.
401 (Sbitset__byteAddress): Here.
402 (Sbitset__bit_mask): Here.
403 (Sbitset__last_byte_mask): Here.
404 (Sbitset__ones): Here.
405 (SBITSET__FOR_EACH): Here.
407 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
409 portability: use va_start and va_end in the same function.
410 * src/complain.c (error_message): Move va_end from here...
411 (ERROR_MESSAGE): ... to here.
413 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
415 * data/bison.m4: Update comments for rename to muscle-tab.h.
417 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
420 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
421 replace all uses with UNIQSTR_CONCAT.
422 * src/uniqstr.c (uniqstr_vsprintf): New function.
423 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
424 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
427 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
429 * TODO (Complaint submessage indentation): New.
431 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
434 * src/parse-gram.y: Clean up sorting of declarations.
435 Use types to simplify %printer declarations where possible.
436 Provide %printer for BRACKETED_ID and symbol.prec.
437 * src/symtab.c: Whitespace change.
439 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
441 tests: skip tests of file names that platform does not support.
442 Reported by Michael Raskin at
443 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
444 * THANKS (Michael Raskin): Add.
445 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
446 to fail at least for file names containing ":" or "\".
448 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
450 yysyntax_error: avoid duplicate lookahead collection.
451 Except when memory reallocation is required, this change
452 eliminates the need to invoke yysyntax_error twice and thus to
453 repeat the collection of lookaheads. It also prepares for
454 future extensions that will make those repetitions more
455 expensive and that will require additional memory management in
456 yysyntax_error. Finally, it fixes an obscure bug already
457 exercised in the test suite.
458 * data/yacc.c (yysyntax_error): Add arguments for message
459 buffer variables stored in the parser. Instead of size, return
460 status similar to yyparse status but indicating success of
461 message creation. Other than the actual reallocation of the
462 message buffer, import and clean up memory management code
464 (yyparse, yypush_parse): ... here.
465 * tests/regression.at (parse.error=verbose overflow): No longer
468 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
470 yysyntax_error: test memory management more.
471 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
472 * tests/regression.at (parse.error=verbose and
473 YYSTACK_USE_ALLOCA): New test group.
474 (parse.error=verbose overflow): New test group that reveals an
475 obscure bug. Expected fail for now.
477 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
479 benchmarks: use %debug consistently among grammars.
480 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
481 %debug by default. It can affect the timings even if yydebug=0.
482 (generate_grammar_calc): For consistency with other grammars,
483 use YYDEBUG environment variable to set yydebug.
485 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
488 * src/symtab.c (symbol_pack): Here because every symbol's number
489 is always defined by this time.
491 2009-10-03 Alex Rozenman <rozenman@gmail.com>
493 Add additional space after periods in NEWS.
496 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
498 Use the correct conversion specifier for size_t.
499 Reported by Jim Meyering.
500 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
501 because Sbitset__Index is size_t.
502 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
504 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
506 tests: don't abuse AT_BISON_CHECK.
507 * tests/regression.at (parse-gram.y: LALR = IELR): Move
508 additional shell commands outside of AT_BISON_CHECK.
510 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
512 tests: check that parse-gram.y's IELR and LALR are identical.
513 * tests/atlocal.in (abs_top_srcdir): New shell variable.
514 * tests/regression.at (parse-gram.y: LALR = IELR): New test
517 2009-09-19 Alex Rozenman <rozenman@gmail.com>
519 Keep sub-messages aligned. Fix strings for translation.
520 * src/location.h (location_print): Add return value.
521 * src/location.c (location_print): Return number of printed
523 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
525 * src/complain.cpp (indent_ptr): New static variable.
526 (error_message, complain_at_indent, warn_at_indent): Implement
527 the alignment mechanism.
528 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
529 for translations. Use new alignment mechanism.
530 * tests/named-ref.at: Adjust test-cases.
531 * NEWS (2.5): Add an announcement about named references.
533 2009-09-17 Akim Demaille <demaille@gostai.com>
536 * doc/bison.texinfo: here.
537 Reported by Alex Rozenman.
539 2009-09-16 Akim Demaille <demaille@gostai.com>
541 doc: lalr1.cc and variants.
542 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
543 "variant" %define variables.
544 (C++ Semantic Values): Split into...
545 (C++ Unions, C++ Variants): these.
547 (C++ Parser Interface): Fix type names.
548 Document parser::syntax_error.
549 Document the fact that locations are not mandatory.
550 (C++ Scanner Interface): Split into...
551 (Split Symbols, Complete Symbols): these.
553 (Calc++ Parsing Driver): Use variants.
556 (Calc++ Parser): Declare all the tokens, no
557 longer accept raw characters.
559 Adjust types and printers.
561 (Calc++ Scanner): Use make_<SYMBOL> functions.
562 Use strerror in error message.
564 2009-09-16 Akim Demaille <demaille@gostai.com>
567 * doc/bison.texinfo: here.
569 2009-09-16 Akim Demaille <demaille@gostai.com>
571 doc: comment changes.
572 * doc/bison.texinfo: Comment changes.
574 2009-09-16 Akim Demaille <demaille@gostai.com>
576 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
577 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
578 constructor to take a token_type instead of the (internal) symbol
581 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
582 don't call yytranslate_ here.
584 2009-09-16 Akim Demaille <demaille@gostai.com>
587 * TODO (Figures): New.
589 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
591 tests: clean up push.at test group titles.
592 * tests/push.at: Remove "Push Parsing: " from test group titles
593 because these are already under the banner "Push Parsing Tests".
595 2009-09-12 Alex Rozenman <rozenman@gmail.com>
597 Provide an additional sub-message for clarity.
598 Add "symbol not found in production" error message when
599 an "invalid reference" is detected in named references
601 * src/scan-code.l: Update "invalid reference" case.
602 * tests/named-ref.at: Adjust test-cases.
604 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
606 Clean up yacc.c a little.
607 * data/yacc.c: Clean up M4 for readability, and make output
608 whitespace more consistent. For the main parse function
609 comment, instead of saying "yyparse or yypush_parse", say either
610 "yyparse" or "yypush_parse" depending on which it actually is.
612 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
614 Fix --enable-gcc-warnings.
615 * src/parse-gram.y (%printer <param>): Handle param_none.
617 2009-09-09 Akim Demaille <demaille@gostai.com>
619 lalr1.cc: syntax_error as exceptions.
620 It is common to use sort of factories in the user actions. These
621 factories may check some "syntactic" constraints that are not
622 enforced by the grammar itself. This is possible using YYERROR
623 within the action itself. Provide the user with a means to throw
624 a syntax_error exception.
626 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
627 Declare and define yy::parser::syntax_error.
628 * data/lalr1.cc: Include stdexcept.
629 (yy::parser::parse): Wrap the user action within a try/catch.
630 * data/glr.cc: Include stdexcept.
632 2009-09-09 Akim Demaille <demaille@gostai.com>
634 lalr1.cc: add missing "inline".
635 * data/c++.m4 (b4_public_types_define): Add missing inline to
636 implementations provided in headers.
638 2009-09-09 Akim Demaille <demaille@gostai.com>
640 %param: documentation.
641 * NEWS (2.6): Document %param, %lex-param, and %parse-param
643 * doc/bison.texinfo: Document that %lex-param and %parse-param
645 Changes some examples to demonstrate it.
646 (Calc++ Parser): Use %param.
648 2009-09-09 Akim Demaille <demaille@gostai.com>
652 2009-09-09 Akim Demaille <demaille@gostai.com>
655 * src/parse-gram.y (add_param): Scope changes.
657 2009-09-09 Akim Demaille <demaille@gostai.com>
659 %parse: support several arguments.
660 * src/parse-gram.y (current_param): New.
661 (param_type): Add param_none.
662 (params): New nonterminal.
665 2009-09-09 Akim Demaille <demaille@gostai.com>
669 2009-09-09 Akim Demaille <demaille@gostai.com>
672 Provide a means to factor lex-param and parse-param common
675 * src/parse-gram.y (param_type): New.
676 Define a %printer for it.
678 (%parse-param, %lex-param): Merge into...
679 (%parse): this new token.
680 Adjust the grammar to use it.
681 * src/scan-gram.l (RETURN_VALUE): New.
682 (RETURN_PERCENT_FLAG): Use it.
683 (RETURN_PERCENT_PARAM): New.
684 Use it to support %parse-param, %lex-param and %param.
686 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
689 * src/output.c: Don't include assert.h.
690 (output_skeleton): Use aver not assert.
691 * src/system.h (aver): In documentation of why, add links to
692 Paul Eggert's explanations in the mailing lists.
694 2009-09-05 Alex Rozenman <rozenman@gmail.com>
696 Use "Unresolved reference" error message when no symbols were found
697 in a symbolic reference resolution. Remove .expr and -expr from
698 the shown reference when the reference is unresolved.
699 * src/scan-code.l: Change the error message, adjust location columns,
700 rename variable "exact_mode" to "explicit_bracketing".
701 * tests/named-ref.at: Adjust existing tests and add a new one.
703 2009-09-04 Akim Demaille <demaille@gostai.com>
705 Adjust synclines in src/parse-gram.[ch].
706 * tests/bison.in: Do some magic (including working around issues
707 with ylwrap) when this wrapper is used to compile
710 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
712 Complain about unused %define variables and %code qualifiers.
713 * NEWS (2.5): Document.
714 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
715 * doc/bison.texinfo (Decl Summary): Document complaint, and
716 improve %define documentation a little otherwise.
717 * tests/input.at (Reject unused %code qualifiers): Update.
718 (%define errors): Update.
719 (%define, --define, --force-define): Update.
720 (%define backward compatibility): Update.
721 (Unused %define api.pure): Update.
722 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
724 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
726 Don't suppress warnings about unused parse.error.
727 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
728 %define variable parse.error unless b4_error_verbose_flag is
729 actually expanded in a skeleton.
731 2009-09-03 Akim Demaille <demaille@gostai.com>
733 * NEWS (2.4.2): Add "Internationalization" item.
735 2009-09-03 Akim Demaille <demaille@gostai.com>
737 bootstrap: fix/improve find_tool.
738 * bootstrap (find_tool): Improve error messages.
739 Fix typo about find_tool_names.
741 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
743 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
745 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
746 * src/scan-code.h (code_props_rule_action_init): Rename
747 named_ref arg to name so it doesn't shadow named_ref type. This
748 makes it consistent with the function definition in scan-code.l
751 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
753 %define: accept unquoted values.
754 * NEWS (2.5): Group all %define changes together, and document
755 this one. Remove quotes in IELR and canonical LR entry.
756 * doc/bison.texinfo: Remove quotes in most examples throughout.
757 (Decl Summary): Update %define documentation.
758 (Table of Symbols): Likewise.
759 * src/ielr.c (LrType): Update documentation.
760 * src/parse-gram.y (content.opt): Add production for ID.
761 * tests/actions.at: Remove quotes in most tests.
762 * tests/calc.at: Likewise.
763 * tests/existing.at: Likewise.
764 * tests/input.at: Likewise.
765 * tests/local.at: Likewise.
766 * tests/push.at: Likewise.
767 * tests/reduce.at: Likewise.
768 * tests/torture.at: Likewise.
770 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
772 %define lr.type: make values lowercase IDs.
773 That is, "LALR" => "lalr", "IELR" => "ielr", and
774 "canonical LR" => "canonical-lr".
775 * NEWS (2.5): Update documentation.
776 * doc/bison.texinfo (Decl Summary): Likewise.
777 * src/ielr.c (ielr): Use new values.
778 * src/ielr.h (ielr): Update documentation.
779 * src/reader.c (prepare_percent_define_front_end_variables): Use
780 and validate new values.
781 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
783 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
785 2009-08-27 Eric Blake <ebb9@byu.net>
787 scan-gram: avoid portability trap with ctype usage.
788 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
789 Avoid compiler warning.
791 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
793 tests: use perl for printing special sequences to files.
794 And skip tests if perl is not available. This is better than
795 playing tricks with shell portability. Suggested by Akim
797 * tests/input.at (Bad character literals): Use it here for
798 omitting final newlines.
799 (Bad escapes in literals): Use it here for special characters.
801 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
803 tests: show a use of %define lr.default-reductions "consistent"
804 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
805 prevents the omission of expected tokens for %error-verbose.
807 2009-08-26 Akim Demaille <demaille@gostai.com>
809 tests: portability fix.
810 * tests/input.at (Bad escapes in literals): Don't expect "echo
811 '\0'" to output \ then 0.
813 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
815 Actually handle the yytable zero value correctly this time.
816 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
817 zero values in the YYTABLE comments.
818 * data/glr.c (yytable_value_is_error): Don't check for zero
820 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
821 * data/yacc.c (yytable_value_is_error): Likewise.
822 * data/lalr1.java (yy_table_value_is_error_): Likewise.
823 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
824 * src/tables.h: In header comments, explain why it's useless to
825 check for a zero value in yytable.
827 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
829 More fixes related to last two patches.
830 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
831 comments: zero indicates syntax error not default action.
832 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
834 * data/glr.c (yyis_pact_ninf): Rename to...
835 (yypact_value_is_default): ... this.
836 (yyisDefaultedState): Update for rename.
837 (yyis_table_ninf): Rename to...
838 (yytable_value_is_error): ... this, and check for value zero
839 besides just YYTABLE_NINF.
840 (yygetLRActions): Check for default value from yypact. It
841 appears that this check is always performed before this function
842 is invoked, and so adding the check here is probably redundant.
843 However, the code may evolve after this subtlety is forgotten.
844 Also, update for rename to yytable_value_is_error. Because that
845 macro now checks for zero, a different but equivalent branch of
846 the if-then-else here is evaluated.
847 (yyreportSyntaxError): Update for rename to
848 yytable_value_is_error. The zero condition was mishandled
850 (yyrecoverSyntaxError): Update for renames. No behavioral
852 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
854 (yy_table_value_is_error_): New function.
855 (parse): Use new functions where possible. No behavioral
857 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
858 The zero condition was mishandled before.
859 * data/yacc.c (yyis_pact_ninf): Rename to...
860 (yypact_value_is_default): ... this.
861 (yyis_table_ninf): Rename to...
862 (yytable_value_is_error): ... this, and check for value zero
863 besides just YYTABLE_NINF.
864 (yysyntax_error): Update for rename to yytable_value_is_error.
865 The zero condition was mishandled before.
866 (yyparse): Update for renames. No behavioral changes.
867 * src/tables.h: Improve comments about yypact, yytable, etc.
868 more. Most importantly, say yytable value of zero means syntax
869 error not default action.
871 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
873 Fix %error-verbose for conflicts resolved by %nonassoc.
874 * NEWS (2.5): Document.
875 * data/glr.c (yyreportSyntaxError): Fix this by checking
877 * data/yacc.c (yysyntax_error): Likewise.
878 * data/lalr1.cc (yysyntax_error_): Fix this by checking
880 * data/lalr1.java (yysyntax_error): Likewise.
881 * tests/conflicts.at (%nonassoc and eof): Update expected output
884 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
886 Some code and documentation improvements.
887 * data/c.m4 (b4_table_value_equals): New macro to capture
889 * data/glr.c (yyis_pact_ninf): Use it here.
890 (yyis_table_ninf): Likewise.
891 (yyreportSyntaxError): Improve internal comments.
892 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
893 Use it everywhere possible.
894 (yyis_table_ninf): Likewise.
895 (yysyntax_error): Improve internal comments.
896 * data/lalr1.cc (yysyntax_error_): Likewise.
897 * data/lalr1.java (yysyntax_error): Likewise.
898 * src/tables.h: Improve comments about yypact, yytable, etc.
900 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
902 Use locale when quoting.
903 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
904 quote rather than implementing quoting here.
906 2009-08-20 Eric Blake <ebb9@byu.net>
908 Make previous patch more robust.
909 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
911 (output_skeleton): Use it.
912 Suggested by Akim Demaille.
914 Import latest m4/m4.m4.
915 * submodules/autoconf: Update to autoconf 2.64.
916 * configure.ac (M4_GNU_OPTION): New define.
917 * src/output.c (output_skeleton): Use it to resolve FIXME.
918 * NEWS: Mention this.
920 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
922 Fix complaints about escape sequences.
923 Discussed starting at
924 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
925 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
926 For a \0 and similar escape sequences meaning the null
927 character, report an invalid escape sequence instead of an
928 invalid null character because the latter does not actually
929 appear in the user's input.
930 In all escape sequence complaints, don't escape the initial
931 backslash, and don't quote when the sequence appears at the end
932 of the complaint line unless there's whitespace that quotearg
934 Consistently say "invalid" not "unrecognized".
935 Consistently prefer "empty character literal" over "extra
936 characters in character literal" warning for invalid escape
937 sequences; that is, consistently discard those sequences.
938 * tests/input.at (Bad escapes in literals): New.
940 2009-08-19 Akim Demaille <demaille@gostai.com>
943 * doc/bison.texinfo: Fix minor Texinfo errors.
945 2009-08-19 Akim Demaille <demaille@gostai.com>
947 tests: distcc compliance.
948 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
949 error messages from the output.
951 2009-08-19 Akim Demaille <demaille@gostai.com>
953 variables: simplify the upgrade of namespace into api.namespace.
955 This patch simplifies "variables: rename namespace as
956 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
957 Suggested by Joel E. Denny in
958 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
960 * src/muscle-tab.c (muscle_percent_variable_update): New.
961 (muscle_percent_define_insert): Use it in replacement of the
962 previous tr invocation.
963 Remove variable_tr, no longer needed.
964 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
966 * data/c++.m4: No longer handle namespace -> api.namespace.
967 * tests/input.at (%define backward compatibility): Check that
968 namespace is treated as api.namespace.
970 2009-08-19 Akim Demaille <demaille@gostai.com>
972 doc: %initial-action to initialize yylloc.
973 Reported by Bill Allombert.
974 * doc/bison.texinfo: Set fill-column to 76.
975 (Location Type): Document the use of %initial-action to initialize
978 2009-08-19 Akim Demaille <demaille@gostai.com>
980 lalr1.cc: use state_type.
981 * data/lalr1.cc (yysyntax_error_): Use state_type.
982 Move argument names into yy*.
984 2009-08-19 Akim Demaille <demaille@gostai.com>
986 lalr1.cc: get rid of yyparse's yystate.
987 yystate and yystack_[0].state are equal, keep only the latter.
988 The former was also used as a temporary variable to compute the
989 post-reduction state. Move this computation into an auxiliary
992 * data/glr.c (yyLRgotoState): Fuse variable definition and first
994 * data/lalr1.cc (yy_lr_goto_state_): New.
996 Replace remaining uses of yystate by yystate_[0].state.
999 2009-08-19 Akim Demaille <demaille@gostai.com>
1001 lalr1.cc: destroy $$ when YYERROR is called.
1002 * data/lalr1.cc (yyreduce): Compute the resulting state before
1003 running the user action so that yylhs is a valid symbol.
1004 (yyerrorlab): Since yylhs is complete (it knows its type), we can
1005 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
1006 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
1008 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
1010 maint: update for gnulib's recent update-copyright changes
1012 * .x-update-copyright (COPYING): Add as it's no longer implied
1013 when .x-update-copyright is present.
1014 * cfg.mk (update-copyright-local): Remove, now ignored.
1015 (update-copyright): Declare update-b4-copyright as a dependency.
1017 2009-08-17 Akim Demaille <demaille@gostai.com>
1019 build: require gettext 0.17.
1021 Suggested by Bruno Haible.
1022 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1023 * configure.ac: require gettext 0.17 to ensure compatibility with
1026 2009-08-17 Akim Demaille <demaille@gostai.com>
1028 build: lower gettext requirements.
1030 Bison was uselessly requiring the formatstring macros from
1031 gettext, which resulted in mo files not being installed on systems
1032 that perfectly supported Bison mo files. Lower the requirement.
1033 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1035 * configure.ac: Require need-ngettext instead of
1036 need-formatstring-macros.
1037 Reported by Martin Jabocs.
1038 Suggested by Bruno Haible.
1039 * INSTALL: Restructure.
1040 (Internationalization): New.
1042 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1044 maint: fix use of copyright year intervals.
1046 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1047 as now recommended in gnulib/NEWS.
1048 * build-aux/update-b4-copyright: Fix.
1049 * cfg.mk (update-copyright-env): Configure update-copyright.
1051 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1053 Make it easier to write deterministic tests.
1054 Continues Akim's work from his 2009-06-10 commits.
1055 * src/reader.c (check_and_convert_grammar): Don't add any
1056 symbols after the first symbols_do invocation.
1057 * src/symtab.c (symbols_sorted): New static global.
1058 (user_token_number_redeclaration): Update comments.
1059 (symbol_from_uniqstr): If a new symbol is being created, assert
1060 that symbols_sorted hasn't been allocated yet.
1061 (symbols_free): Free symbols_sorted.
1062 (symbols_cmp, symbols_cmp_qsort): New functions.
1063 (symbols_do): Sort symbol_table into symbols_sorted on first
1065 * tests/input.at (Numbered tokens): Recombine tests now that the
1066 output should be deterministic across multiple numbers.
1068 2009-08-12 Akim Demaille <demaille@gostai.com>
1070 tests: GCC 4.5 compliance.
1071 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1072 messages about #error.
1074 2009-08-12 Akim Demaille <demaille@gostai.com>
1076 build: fix the generation of the documentation.
1077 Some of our targets use "bison --help", but they can't depend on
1078 "bison" itself (to avoid additional requirements on the user), so
1079 they used to call "make src/bison" in the commands. Then
1080 concurrent builds may fail: one make might be aiming one of its
1081 jobs at compiling src/bison, and another job at generating the man
1082 page. If the latter is faster than the former, then we have two
1083 makes that concurrently try to compile src/bison.
1085 This might also be a more convincing explanation for the failure
1086 described in the patch "build: fix paths".
1088 * Makefile.am (SUFFIXES): Initialize.
1089 * build-aux/move-if-change: New, symlink to gnulib's.
1090 * build-aux/local.mk: Ship it.
1091 * doc/common.x: Remove, merged into...
1092 * doc/bison.x: here.
1093 * doc/local.mk (doc/bison.help): New.
1094 ($(CROSS_OPTIONS_TEXI)): Depend on it.
1096 (.x.1): Replace with...
1097 (doc/bison.1): this explicit, simpler, target.
1098 (common_dep): Remove, inlined where appropriate.
1099 (SUFFIXES, PREPATH): Remove, unused.
1101 2009-08-12 Akim Demaille <demaille@gostai.com>
1103 gnulib: improve prefixing.
1104 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
1105 change the value of...
1107 Adjust more variables.
1108 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
1110 (prefix): Also transform rules whose targets have slashes.
1111 Use $prefix liberally.
1112 Map @MKDIR_P@ to $(MKDIR_P).
1113 Prefix directories that are mkdir'd.
1115 2009-08-12 Akim Demaille <demaille@gostai.com>
1118 When using $(top_builddir) inconsistently, Make (including GNU
1119 Make) is sometimes confused. As a result it may want to build
1120 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1121 file, different names) concurrently, which, amusingly enough,
1124 ranlib lib/libbison.a
1125 ranlib lib/libbison.a
1126 make[2]: *** [lib/libbison.a] Segmentation fault
1130 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1133 2009-08-12 Akim Demaille <demaille@gostai.com>
1137 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1139 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1141 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1143 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1145 Miscellaneous code readability improvements.
1147 * src/reader.c (reader): Move %define front-end variable
1148 defaults and checking into...
1149 (prepare_percent_define_front_end_variables): ... this new
1152 * src/scan-gram.l (INITIAL): For consistency with string
1153 literals, don't store open quote on character literal. It's
1154 discarded before returning anyway.
1155 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1156 Make length test more readable, and make the character stored
1157 for an empty literal more obvious while consistent with the
1160 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1161 USER_NUMBER_HAS_STRING_ALIAS throughout.
1162 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1163 that is repeated in symtab.h. Improve argument names to make it
1164 clear which side of the symbol-string alias pair is which.
1165 (symbol_check_alias_consistency): Improve local variable names
1166 for the same purpose.
1167 * src/symtab.h (struct symbol): Make comments about aliases
1169 (symbol_make_alias): Improve comments and argument name.
1170 * src/output.c (token_definitions_output): Update for rename to
1171 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1173 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1175 Convert "misleading reference" messages to warnings.
1176 * src/scan-code.l: New function 'show_sub_messages', more
1178 * tests/named-ref.at: Adjust tests.
1180 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1182 maint: run "make update-copyright"
1184 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1186 maint: make update-b4-copyright easier to use
1187 * build-aux/update-b4-copyright: In warnings, report line
1188 numbers rather than character positions.
1189 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1190 that update-copyright runs it.
1193 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1195 maint: clean up update-b4-copyright code
1196 * build-aux/update-b4-copyright: Do not accept 2-digit
1197 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1198 Don't accept a `[' in a b4_copyright argument.
1199 Format code more consistently.
1200 Don't assume b4*copyright never occurs.
1202 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1204 maint: automate b4_copyright updates.
1205 * Makefile.am (update-b4-copyright): New target rule.
1206 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1207 * build-aux/update-b4-copyright: New.
1208 * data/yacc.c: Remove stray characters around b4_copyright
1211 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1213 maint: automate annual package-wide copyright-year update.
1214 * .x-update-copyright: New.
1215 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1216 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1217 update-copyright. Remove gnumakefile, which is implied by
1218 maintainer-makefile.
1219 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1221 * maint.mk: Remove, now copied from gnulib.
1222 * examples/extexi: Add missing "(C)" in copyright statement so
1223 update-copyright can recognize it.
1224 * src/LR0.h: Likewise.
1225 * src/print.h: Likewise.
1226 * src/print_graph.h: Likewise.
1227 * src/gram.c: Add missing comma in copyright statement.
1228 * src/gram.h: Likewise.
1230 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1232 Fix "make distcheck".
1233 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1236 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1238 Pacify "gcc -Wunused" for the input function from Flex.
1239 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1241 * src/scan-code.l: Add "%option noinput", which I cannot find in
1242 the Flex manual, but which Flex has supported since at least as
1243 far back as 2.5.4. However, if any of our developers still use
1244 Flex 2.5.4, they'll need to stop configuring with
1245 --enable-gcc-warnings because "%option noinput" didn't work
1246 correctly until Flex 2.5.6.
1247 * src/scan-gram.l: Likewise.
1248 * src/scan-skel.l: Likewise.
1250 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1252 Fix --enable-gcc-warnings problems.
1253 * src/reader.c: Adjust variable names.
1254 * src/scan-code.l: Fix prototypes and adjust names.
1255 * src/named-ref.c: Remove redundant "if".
1257 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1259 Fix a --enable-gcc-warnings problem.
1260 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1263 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1265 Warn about character literals not of length one.
1266 * NEWS (2.5): Document.
1267 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1269 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1270 * tests/input.at (Bad character literals): New test group.
1272 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1274 Fix some memory leaks.
1275 * src/named-ref.c: Add a pointer check (named_ref_free).
1276 * src/scan-code.l: New function (variant_table_free). Called in
1278 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1280 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1282 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1284 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1286 Some M4 cleanup in the testsuite.
1287 Suggested by Eric Blake at
1288 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1289 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1290 complicate the code by distinguishing between a missing value
1291 and an empty string value for an optional argument. This fix is
1292 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1293 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1294 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1295 arguments are not needed because of the following changes.
1297 Bison developers should use GNU M4 and should not use
1298 POSIXLY_CORRECT when building the test suite, so do not
1299 complicate the code by avoiding $10 and above.
1300 Do not quote an empty string value for an optional argument, and
1301 do not distinguish between a missing value and an empty string
1304 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1306 Revert unnecessary column realignment in --help output.
1307 Reported by Akim Demaille at
1308 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1309 * src/getargs.c (usage): Here.
1311 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1313 Alphabetical order in src/local.mk.
1314 * src/local.mk: Adjust.
1316 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1318 Style changes and factoring.
1319 * src/named-ref.h: Add comments.
1320 * src/parse-gram.y: Readability and style changes.
1321 * src/reader.c: Factoring: assign_named_ref function.
1322 * src/scan-code.l: Factoring and style changes. Rename
1323 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1324 Use "unsigned" type for variant index. Improve readablity.
1325 * src/scan-gram.l: Change error messages and add comments.
1326 * src/symlist.h: symbol_list_null: New function decl.
1327 * src/symlist.c: symbol_list_null: Implement here.
1328 * tests/named-refs.at: Adjust for new error messages.
1330 2009-06-29 Eric Blake <ebb9@byu.net>
1332 scan-code: avoid compiler warnings
1333 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1335 2009-06-29 Akim Demaille <demaille@gostai.com>
1337 build: avoid concurrent extraction of calc++.
1338 * examples/calc++/Makefile.am (calc.stamp): New.
1339 Depend on it to create the sources of calc++ so that concurrent
1340 builds don't launch several "extexi" in parallel.
1341 Not only this is inefficient, this also builds incorrect sources
1342 with several extractions mixed together.
1344 2009-06-29 Akim Demaille <demaille@gostai.com>
1347 * data/bison.m4: Move code related to specific variables after the
1348 definition of the variable-maintaining macros so that we don't
1349 "invoke" b4_percent_define_check_values before it is defined.
1351 2009-06-29 Akim Demaille <demaille@gostai.com>
1353 variables: parse.error
1355 Implement, document, and test the replacement of %error-verbose
1356 by %define parse.error "verbose".
1357 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1358 values of the parse.error variable.
1359 Make "simple" its default value.
1360 Check the valid values.
1361 * src/parse-gram.y: Use %define parse.error.
1362 (PERCENT_ERROR_VERBOSE): New token.
1364 * src/scan-gram.l: Support %error-verbose.
1366 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1367 %define error-verbose by that of %define parse.error.
1368 * NEWS: Document it.
1370 * tests/actions.at, tests/calc.at: Use parse.error instead of
1373 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1375 Implement support for named symbol references.
1376 * src/parse-gram.y: Add new syntax (named_ref.opt).
1377 * src/reader.c: Store named refs in symbol lists.
1378 * src/reader.h: New argument for symbol_append and
1379 action_append functions.
1380 * src/scan-code.h: Add new field (named_ref) into
1381 code_props data structure. Keeps named ref of midrule
1383 * src/scan-code.l: Support for named refs in semantic
1384 action code. New function 'parse_named_ref'.
1385 * src/scan-gram.l: Support bracketed id.
1386 * src/symlist.c: Store named refs in symbol lists.
1387 * src/symlist.h: New field in symbol list: named_ref.
1388 * src/named-ref.h: New file, a struct for named_ref.
1389 * src/named-ref.cp: New file, named_ref_new function.
1390 * src/local.mk: Add two new files.
1391 * tests/testsuite.at: Include new test group:
1392 * tests/named-refs.at: this new file.
1394 2009-06-25 Akim Demaille <demaille@gostai.com>
1396 hash: check insertion for memory exhaustion.
1397 * src/uniqstr.c (uniqstr_new): New.
1399 2009-06-24 Akim Demaille <demaille@gostai.com>
1401 variables: rename namespace as api.namespace.
1403 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1405 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1407 (b4_percent_define_use): New.
1408 Use it where applicable.
1409 * data/c++.m4: Replace uses of the variable "namespace" by
1411 Default the latter to the former.
1412 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1414 Document api.namespace.
1415 Use @samp to document %define uses, keep @code for identifiers.
1417 * tests/c++.at, tests/input.at: Test api.namespace instead of
1418 namespace. (The tests passed with namespace.)
1420 2009-06-11 Akim Demaille <demaille@gostai.com>
1423 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1424 * src/print-xml.c: Style changes.
1425 * tests/conflicts.at: Comment changes.
1427 2009-06-11 Akim Demaille <demaille@gostai.com>
1429 xml: beware of user strings used to give a %prec to rules.
1430 * tests/conflicts.at (%prec with user strings): New.
1431 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1434 2009-06-11 Akim Demaille <demaille@gostai.com>
1436 hash: check insertion for memory exhaustion.
1437 * src/muscle-tab.c (muscle_insert, muscle_grow)
1438 * src/state.c (state_hash_insert): Check the return value of
1441 2009-06-11 Akim Demaille <demaille@gostai.com>
1443 tests: honor TESTSUITEFLAGS in every check target.
1444 * tests/local.mk (RUN_TESTSUITE): New.
1445 (check-local, installcheck-local, maintainer-check-g++)
1446 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1448 2009-06-10 Akim Demaille <demaille@gostai.com>
1450 deterministic test suite.
1451 Some consistency checks on symbols are performed after all the
1452 symbols were read, by an iteration over the symbol table. This
1453 traversal is nondeterministic, which can be a problem for test
1456 Addresses another form of nondeterminism reported by Joel E. Denny.
1457 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1459 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1461 Use different file names for the three tests to make the
1464 2009-06-10 Akim Demaille <demaille@gostai.com>
1467 * gnulib: Update to latest.
1468 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1469 * m4/.gitignore: Regen.
1470 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1471 Call xalloc_die on hash_insert failures.
1472 Requested by the new __warn_unused_result__ attribute of
1475 2009-06-10 Akim Demaille <demaille@gostai.com>
1477 deterministic user-token-number redeclaration errors.
1478 Address nondeterminism reported by Joel E. Denny.
1479 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1481 * src/uniqstr.h: Comment changes.
1482 * src/location.h (boundary_cmp, location_cmp): New.
1483 * src/symtab.c (user_token_number_redeclaration): New.
1484 (symbol_translation): Use it.
1485 * tests/input.at (Numbered tokens): Adjust the expected output.
1487 2009-05-25 Akim Demaille <demaille@gostai.com>
1489 build: avoid ignored errors.
1490 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1491 errors, they pollute the output.
1493 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1495 Convert multiple variable definition warnings to complaints.
1496 * NEWS (2.5): Add a new entry for that change.
1497 * doc/bison.texinfo (Decl Summary): Update %define entry.
1498 (Bison Options): Update -D/--define/-F/--force-define entry.
1499 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1500 * src/muscle-tab.h (muscle_percent_define_insert): Update
1502 * tests/input.at (`%define errors'): Update.
1503 (`%define, --define, --force-define'): Update.
1505 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1507 -F/--force-define and relative %define/-D/--define priorities.
1508 * NEWS (2.5): Add documentation to -D/--define entry.
1509 * build-aux/cross-options.pl: Hard-code association of
1510 --force-define with %define.
1511 * doc/bison.texinfo (Decl Summary): In %define entry,
1512 cross-reference command-line options.
1513 (Bison Options): Add documentation to -D/--define entry.
1514 (Option Cross Key): Widen column for --force-define row.
1515 * src/getargs.c (usage): Document -F/--force-define. Realign
1517 (short_options, long_options, getargs): Parse -F/--force-define,
1518 and update muscle_percent_define_insert invocations.
1519 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1520 (muscle_percent_define_insert): Add argument with that type.
1521 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1522 -F/--force-define behavior and priorities.
1523 (muscle_percent_define_ensure): Update
1524 muscle_percent_define_insert invocation.
1525 * src/parse-gram.y (prologue_declaration): Update
1526 muscle_percent_define_insert invocations.
1527 * tests/input.at (`%define, --define'): Rename to...
1528 (`%define, --define, --force-define'): ... this and extend.
1530 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1532 Update some comments to make sense for -D.
1533 * data/bison.m4 (b4_check_user_names): In header comments, say
1534 "user occurrence" instead of "grammar occurrence".
1535 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1536 (muscle_percent_code_grow): Likewise just for consistency.
1538 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1540 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1542 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1544 Handle a trailing `:' in a user-supplied C++ namespace better.
1545 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1546 among the closing braces here. This fix might make the
1547 generated code easier to debug, but otherwise it should be
1548 insignificant because a trailing `:' is a C++ error already.
1550 2009-05-19 Akim Demaille <demaille@gostai.com>
1552 remove useless variable.
1553 * src/getargs.c (skeleton_arg): Remove now useless variable.
1554 Should help the compiler see that this printf-like call is sane.
1556 2009-05-15 Akim Demaille <demaille@gostai.com>
1558 Rename token.prefix as api.tokens.prefix.
1560 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1562 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1563 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1564 (token.prefix): Rename as...
1565 (api.tokens.prefix): this.
1567 2009-05-11 Akim Demaille <demaille@gostai.com>
1569 doc: use C++ headers.
1570 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1573 2009-05-11 Akim Demaille <demaille@gostai.com>
1576 * doc/bison.simple (Decl Summary): Document token.prefix.
1577 (Calc++ Parser): Various fixes.
1580 Introduce a macro TOKEN to shorten the code and make it more
1582 (Calc++ Scanner): Adjust.
1583 * NEWS (Variable token.prefix): New.
1585 2009-05-04 Akim Demaille <demaille@gostai.com>
1587 bison: catch bad symbol names.
1588 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1589 * tests/input.at: Adjust.
1591 2009-05-04 Akim Demaille <demaille@gostai.com>
1593 identifiers: dashes are letters.
1594 Dashes can now start identifiers (symbols and directives).
1596 * src/scan-gram.l ({letter}): Add dash.
1598 * tests/input.at (Symbols): Adjust.
1599 Remove stray comment.
1600 * tests/regression.at (Invalid inputs): Adjust error message.
1601 * doc/bison.texinfo (Symbols): Update.
1603 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1605 Declare %code to be a permanent feature.
1606 * NEWS (2.4.2): Here.
1607 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1609 (Decl Summary): Likewise.
1611 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1613 Convert underscores to dashes in some %define variable names.
1614 For now, just api.push-pull and lr.keep-unreachable-states.
1615 Maintain old names for backward compatibility.
1616 * NEWS (2.5): Document.
1617 * data/c.m4 (b4_identification): Update comment.
1618 * data/yacc.c: Update access.
1619 * doc/bison.texinfo: Update.
1620 * etc/bench.pl.in (bench_push_parser): Update use.
1621 * src/files.c (tr): Move to...
1622 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1623 think of a better place to expose it. My logic is that, for all
1624 uses of tr so far, command-line arguments can be involved, and
1625 getargs.h is already included.
1626 * src/main.c (main): Update access.
1627 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1628 variable names to new variable names before assigning value.
1629 * src/reader.c (reader): Update setting default.
1630 * tests/calc.at: Update uses.
1631 * tests/conflicts.at (Unreachable States After Conflict
1632 Resolution): Update use.
1633 * tests/input.at (%define enum variables): Update use.
1634 (%define backward compatibility): New test group.
1635 * tests/push.at: Update uses.
1636 * tests/reduce.at: Update uses.
1637 * tests/torture.at: Update uses.
1639 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1641 Set all front-end %define defaults in one place.
1642 * src/main.c (main): Move lr.keep_unreachable_states default...
1643 * src/reader.c (reader): ... to here.
1645 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1647 Rename lr.default_reductions to lr.default-reductions.
1649 * doc/bison.texinfo: Here.
1650 * src/lalr.c (initialize_LA): Here.
1651 * src/print.c (print_reductions): Here.
1652 * src/reader.c (reader): Here.
1653 * src/tables.c (action_row): Here.
1654 * tests/input.at (%define enum variables): Here.
1655 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1657 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1659 Pacify ./configure --enable-gcc-warnings.
1660 * tests/input.at (Symbols): Prototype yyerror and yylex.
1662 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1664 Document how `%define "var" "value"' is not M4-friendly.
1665 * src/parse-gram.y (variable): In comments here.
1667 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1669 Clean up recent patches a little.
1670 Reported by Akim Demaille.
1671 * doc/bison.texinfo (Understanding): Fix typos.
1672 * src/print.c (print_reductions): Don't use negated variable.
1674 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1676 List accepted values for a %define enum variable with an invalid value.
1677 Suggested by Akim Demaille at
1678 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1679 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1680 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1681 * tests/input.at (%define lr.default_reductions invalid values): Merge
1683 (%define enum variables): ... here, and update output.
1685 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1687 Rename "default rule" to "default reduction".
1688 This includes changing variable names in code, changing
1689 comments, and renaming %define lr.default_rules to %define
1690 lr.default_reductions.
1691 * NEWS (2.5): Update IELR documentation.
1692 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1694 * data/glr.c, data/lalr1.java: Sync copyright dates.
1695 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1696 and lr.type documentation. Make some other wording
1698 (Glossary): Adjust cross-references and Default Reduction
1700 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1701 Remove a confusing comment pointed out by Akim Demaille.
1702 (initialize_LA): Adjust code.
1703 * src/print-xml.c (print_reductions): Adjust code.
1704 * src/print.c (print_reductions): Adjust code.
1705 * src/reader.c (reader): Adjust code.
1706 * src/tables.c (action_row): Adjust code.
1707 (token_actions): Adjust code.
1708 * src/tables.h: Adjust YYDEFACT documentation.
1709 * tests/input.at (%define lr.default_rules invalid values):
1710 Rename test group to...
1711 (%define lr.default_reductions invalid values): ... this, and
1712 update grammar file and expected output.
1713 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1714 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1716 2009-04-21 Akim Demaille <demaille@gostai.com>
1718 tests: check the use of dashes and periods in symbols.
1719 * tests/input.at (Symbol): New test group.
1721 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1723 Document %define lr.type and lr.default_rules.
1724 * NEWS (2.5): Add an entry.
1725 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1726 besides just LALR(1) and GLR(1).
1727 * doc/bison.texinfo (Introduction): Likewise.
1728 (Language and Grammar): Bison is no longer limited to LALR(1)
1730 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1731 when trying to distinguish from GLR. Talk about LR(1) grammars
1732 rather than LALR(1) grammars.
1733 (Decl Summary): In %define api.push_pull entry, say it applies
1734 to deterministic parsers in C rather than LALR(1) parsers in C.
1735 Add lr.default_rules entry.
1737 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1739 (Generalized LR Parsing): Same changes as for the previous GLR
1741 (Memory Management): Say deterministic rather than LALR(1).
1742 (Understanding): Correct some bison output.
1743 Index discussion of "accepting state".
1744 Say deterministic rather than LALR(1).
1745 (Bison Options): In --yacc entry, say deterministic rather than
1747 In --report, --graph, and --xml entries, just don't mention
1749 (C++ Parsers): Say deterministic rather than LALR(1).
1750 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1751 (Glossary): Add Accepting State, Consistent State, Default Rule,
1752 and IELR(1) definitions.
1753 In Generalized LR (GLR) definition, make same changes as in
1754 previous GLR sections.
1755 In LALR(1) definition, say Bison uses LALR(1) by default rather
1756 than implying Bison is limited to LALR(1).
1757 (LocalWords): Add IELR.
1759 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1761 Finish implementing %define lr.type.
1762 Its value can be "LALR", "IELR", or "canonical LR".
1763 * lib/timevar.def (TV_IELR_PHASE1): New var.
1764 (TV_IELR_PHASE2): New var.
1765 (TV_IELR_PHASE3): New var.
1766 (TV_IELR_PHASE4): New var.
1767 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1768 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1769 Sbitset.h, ielr.h, and ielr.c.
1770 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1771 trace_types): Add trace_ielr.
1772 * src/lalr.h, src/lalr.c (ngotos): Export it.
1774 (goto_follows): ... this, update all uses, and export it.
1775 (set_goto_map): Export it.
1776 (map_goto): Export it.
1777 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1779 (initialize_LA): Export it. Move lookback allocation to...
1780 (lalr): ... here because, for canonical LR, initialize_LA must
1781 be invoked but lookback and much of the rest of LALR isn't
1783 * main.c (main): Instead of lalr, invoke ielr, which invokes
1785 * src/reader.c (reader): Default lr.type to "LALR".
1786 Default lr.default_rules to "accepting" if lr.type is "canonical
1787 LR". Leave the default as "all" otherwise.
1788 Check for a valid lr.type value.
1789 * src/state.h, src/state.c (struct state_list): Add state_list
1791 (state_new): Initialize state_list member to NULL.
1792 (state_new_isocore): New function, exported.
1793 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1794 exercises all values of lr.type.
1795 (GNU AWK Grammar): Rename test group to...
1796 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1797 AT_TEST_EXISTING_GRAMMAR.
1798 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1799 (GNU pic Grammar): Rename test group to...
1800 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1801 AT_TEST_EXISTING_GRAMMAR.
1802 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1803 all values of lr.type.
1804 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1805 (Lane Split): Likewise.
1806 (Complex Lane Split): Likewise.
1807 (Split During Added Lookahead Propagation): Likewise.
1809 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1811 Add new files for IELR and canonical LR implementation.
1812 * src/AnnotationList.c: New.
1813 * src/AnnotationList.h: New.
1814 * src/InadequacyList.c: New.
1815 * src/InadequacyList.h: New.
1816 * src/Sbitset.c: New.
1817 * src/Sbitset.h: New.
1821 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1823 Implement %define lr.default_rules.
1824 Its value describes the states that are permitted to contain
1825 default rules: "all", "consistent", or "accepting".
1826 * src/reader.c (reader): Default lr.default_rules to "all".
1827 Check for a valid lr.default_rules value.
1828 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1829 is "accepting", then only mark the accepting state as
1831 (initialize_LA): Tell state_lookahead_tokens_count whether
1832 lr.default_rules is "accepting".
1833 * src/tables.c (action_row): If lr.default_rules is not "all",
1834 then disable default rules in inconsistent states.
1835 * src/print.c (print_reductions): Use this opportunity to
1836 perform some assertions about whether lr.default_rules was
1838 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1839 helps with checking the parser tables for a grammar.
1840 * tests/input.at (%define lr.default_rules invalid values): New
1842 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1843 AT_TEST_TABLES_AND_PARSE.
1844 (`no %define lr.default_rules'): New test group generated by
1845 AT_TEST_LR_DEFAULT_RULES.
1846 (`%define lr.default_rules "all"'): Likewise.
1847 (`%define lr.default_rules "consistent"'): Likewise.
1848 (`%define lr.default_rules "accepting"'): Likewise.
1850 2009-04-20 Akim Demaille <demaille@gostai.com>
1854 2009-04-20 Akim Demaille <demaille@gostai.com>
1857 * src/output.c (token_definitions_output): Use symbol_id_get
1858 instead of duplicating its logic.
1859 * TODO (YYERRCODE): Extend.
1861 2009-04-20 Akim Demaille <demaille@gostai.com>
1863 variables: prefer error-verbose to error_verbose.
1864 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1865 instead of error_verbose.
1866 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1868 * doc/bison.texinfo: Promote %define error-verbose instead of
1870 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1872 2009-04-15 Akim Demaille <demaille@gostai.com>
1874 variables: accept dashes.
1875 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1877 * src/scan-gram.l ({id}): Also accept dashes after the initial
1879 ({directive}): Use {id}.
1880 * src/parse-gram.y: Comment and formatting changes.
1881 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1883 * src/complain.h, src/complain.c (yacc_at): New.
1884 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1886 * src/output.c (token_definitions_output): Do not #define token
1889 2009-04-20 Akim Demaille <demaille@gostai.com>
1891 Consistently refer to Yacc, not YACC.
1892 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1894 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1896 Pacify make maintainer-check-posix.
1897 * tests/input.at (%define, --define): Move bison command-line
1898 options before grammar file name.
1900 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1902 Document semicolon warnings.
1905 2009-04-14 Akim Demaille <demaille@gostai.com>
1907 variables: use `parse.assert' instead of `assert'.
1908 * TODO (assert): Remove.
1909 * data/bison.m4 (b4_assert_if): Replace with...
1910 (b4_parse_assert_if): this.
1911 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1912 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1914 2009-04-14 Akim Demaille <demaille@gostai.com>
1916 variables: use `parse.trace' instead of `debug'.
1917 * src/getargs.c (getargs): Map -t to %define trace.parse.
1918 * src/scan-gram.l (%debug): Map to %define trace.parse.
1919 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1920 names to `_' in macro names.
1921 (b4_debug_if): Replace with...
1922 (b4_parse_trace_if): this.
1923 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1924 * data/yacc.c: Adjust.
1925 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1926 Use @code to label the variable list.
1927 Document the variable parse.trace.
1928 (Tracing): Promote the parse.trace variable.
1929 * TODO: %printer is not documented.
1931 2009-04-14 Akim Demaille <demaille@gostai.com>
1934 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1935 (Table of Symbols): Remove duplicate entry for %debug.
1937 2009-04-10 Eric Blake <ebb9@byu.net>
1939 submodules: update to latest
1940 * submodules/autoconf: Use latest upstream Autoconf.
1942 2009-04-06 Eric Blake <ebb9@byu.net>
1944 Work around autoconf 2.63b bug in testsuite.
1945 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1946 autoconf bug related to # in test.
1948 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1950 * NEWS (2.5): New section. Describe new -D/--define feature.
1952 2009-04-06 Akim Demaille <demaille@gostai.com>
1955 * src/parse-gram.h, src/parse-gram.c: Regen.
1957 2009-04-06 Akim Demaille <demaille@gostai.com>
1959 rename muscle_tab.* as muscle-tab.* for consistency.
1960 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1961 * src/muscle-tab.h, src/muscle-tab.c: these.
1962 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1963 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1965 2009-04-06 Akim Demaille <demaille@gostai.com>
1967 Makefile: introduce $(BISON).
1968 * src/local.mk (BISON): New.
1971 2009-04-06 Akim Demaille <demaille@gostai.com>
1973 parser: handle %locations as %define locations.
1974 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1975 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1976 to set "locations" to true.
1977 * src/output.c (prepare): Don't output "locations".
1978 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1979 * src/parse-gram.y: It's no longer a token.
1981 * data/bison.m4 (b4_locations_if): Define it with
1982 b4_percent_define_if_define.
1983 * data/c.m4, data/glr.cc: Adjust.
1985 2009-04-06 Akim Demaille <demaille@gostai.com>
1988 * src/parse-gram.c: Regen.
1990 2009-04-06 Akim Demaille <demaille@gostai.com>
1992 muscle: factor the handling of obsolete of obsolete directives.
1993 Suggested by Joel E. Denny.
1995 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1996 New, extracted from...
1997 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1999 (prologue_declaration: "%<flag>"): Use
2000 muscle_percent_define_ensure.
2001 (%error-verbose, %pure-parser): No longer tokens.
2002 * src/scan-gram.l (pure-parser): Return as a %<flag>.
2004 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2006 Fix options documentation.
2007 * build-aux/cross-options.pl: As in --help output, write optional
2008 arguments as [=ARG] not =[ARG].
2009 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2011 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2013 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2014 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2015 requirements for a correct m4 are stricter.
2016 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
2017 * configure.ac: Update to use AC_PROG_GNU_M4.
2018 Reported by Eric Blake.
2020 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2022 Help with updating web manual.
2023 * HACKING: Incorporate instructions from gnulib/doc/README.
2024 * bootstrap.conf (gnulib_modules): Add gendocs.
2026 2009-04-03 Akim Demaille <demaille@gostai.com>
2029 * src/parse-gram.h, src/parse-gram.c: Regen.
2031 2009-04-03 Akim Demaille <demaille@gostai.com>
2033 Factor %FLAG at scan level.
2034 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2035 definitions and associated rules, replaced by....
2036 (PERCENT_FLAG): this new token type, and rule.
2037 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2038 Use it for %debug and %error-verbose.
2040 2009-04-03 Akim Demaille <demaille@gostai.com>
2043 * src/parse-gram.h, src/parse-gram.c: Regen.
2045 2009-04-03 Akim Demaille <demaille@gostai.com>
2047 Treat %debug as %define debug.
2048 * data/bison.m4 (b4_debug_if): New.
2049 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2050 * data/lalr1.java: Use it instead of b4_debug_flag.
2051 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2052 * src/output.c (prepare): Don't output it.
2053 * src/parse-gram.y: Treat %debug as %define debug.
2055 2009-04-03 Akim Demaille <demaille@gostai.com>
2057 Treat %error-verbose as %define error_verbose.
2058 This allows to pass -Derror_verbose on the command line. Better
2059 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2060 ERROR_VERBOSE being defined as false or true.
2061 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2062 on b4_percent_define_ifdef, for does not check the defined value,
2063 but only whether the symbol is defined, rely on
2064 b4_percent_define_flag_if, so that a value of "false" is processed
2066 If not defined, define the flag to "false".
2067 (b4_error_verbose_if): New.
2068 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2069 b4_error_verbose_flag.
2070 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2071 * src/output.c (prepare): Don't output it.
2072 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2074 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2076 Fix strange %define locations for default values.
2077 Reported by Akim Demaille at
2078 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2079 and discussed again starting at
2080 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2081 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2082 because location information is bogus.
2083 Use angle brackets to delimit fake file name because square brackets
2084 look like underexpanded m4. Choose a better fake file name.
2085 Use negative line numbers.
2086 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2087 * src/location.c (location_print): If line for a boundary is negative,
2088 only print that boundary's file name.
2089 * src/location.h: Document that.
2090 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2091 defaults): Update output.
2093 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2095 Pacify ./configure --enable-gcc-warnings.
2096 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
2097 in lib won't compile with it.
2098 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
2100 2009-03-31 Akim Demaille <demaille@gostai.com>
2102 bootstrap: --help to stdout.
2103 * bootstrap (usage): Don't send --help to stderr.
2104 Use a here doc instead of a long string.
2106 2009-03-31 Akim Demaille <demaille@gostai.com>
2108 bootstrap: README-hacking no longer exists
2109 * bootstrap (checkout_only_file): Set to HACKING.
2111 2009-03-26 Akim Demaille <demaille@gostai.com>
2113 doc: merge HACKING and README-hacking.
2114 Two files is confusing.
2115 Reported by Alexandre Duret-Lutz.
2117 * README-hacking: Merge into...
2118 * HACKING (Working from the repository): here.
2120 2009-03-26 Akim Demaille <demaille@gostai.com>
2122 doc: update README-hacking.
2123 * README-hacking: We now use git and git submodules.
2124 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2126 2009-03-26 Akim Demaille <demaille@gostai.com>
2128 lalr1.cc: avoid GCC 4.3 warnings.
2129 GCC 4.3 now warns about "a || b && c" and asks for explicit
2131 Reported by Alexandre Duret-Lutz.
2132 * data/location.cc: Update copyright years.
2133 (Position::operator==): Use parens to make precedence explicit.
2134 Compare lines and columns first, as they are more likely to be
2135 different, and they are faster to compare.
2137 2009-03-26 Akim Demaille <demaille@gostai.com>
2140 * gnulib: Update to latest.
2141 * src/local.mk (AM_CFLAGS): Move to...
2142 * Makefile.am: here.
2143 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2146 2009-03-02 Akim Demaille <demaille@gostai.com>
2150 2009-03-02 Akim Demaille <demaille@gostai.com>
2152 Share b4_yytranslate_define.
2153 * data/lalr1.cc (b4_yytranslate_define): Move to...
2154 * data/c++.m4: here.
2156 2009-03-02 Akim Demaille <demaille@gostai.com>
2158 Use locations in the variant example.
2159 Yes, this obfuscates the point of this example, variants only.
2160 But glr.cc cannot work (yet?) without locations. This change
2161 makes it easier to use this example with glr.cc.
2163 * examples/variant.yy (assert): %define it.
2164 (locations): Request them.
2165 (yylex): Bind the location to the stage.
2167 2009-03-02 Akim Demaille <demaille@gostai.com>
2169 Dub make_TOKEN as a public type interface.
2170 * data/c++.m4 (b4_symbol_constructor_declare)
2171 (b4_symbol_constructor_define): New empty stubs.
2172 (b4_public_types_declare, b4_public_types_define): Use them.
2173 * data/lalr1.cc (b4_symbol_constructor_declare)
2174 (b4_symbol_constructor_declare_)
2175 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2177 * data/variant.hh: here.
2178 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2180 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2181 b4_symbol_constructor_declare, as it is now done by
2182 b4_public_types_define and b4_public_types_declare.
2184 2009-03-02 Akim Demaille <demaille@gostai.com>
2186 Coding style changes.
2187 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2188 (b4_symbol_constructor_declarations)
2189 (b4_symbol_constructor_definition_)
2190 (b4_symbol_constructor_definitions)
2191 (b4_yytranslate_definition): Rename as...
2192 (b4_symbol_constructor_declare_)
2193 (b4_symbol_constructor_declare)
2194 (b4_symbol_constructor_define_)
2195 (b4_symbol_constructor_define)
2196 (b4_yytranslate_define): these.
2197 * data/variant.hh (b4_variant_definition): Rename as...
2198 (b4_variant_define): this.
2200 2009-03-02 Akim Demaille <demaille@gostai.com>
2202 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2203 * data/bison.m4 (b4_percent_define_if_define): New.
2204 * data/c++.m4 (b4_variant_if): Move to...
2205 * data/bison.m4: Here, using b4_percent_define_if_define.
2206 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2207 * data/bison.m4: Here, using b4_percent_define_if_define.
2209 2009-03-02 Akim Demaille <demaille@gostai.com>
2211 Dub symbol_type_base as a public type.
2212 * data/c++.m4 (b4_public_types_declare): Now define
2213 symbol_type_base and symbol_type.
2214 (b4_public_types_define): New.
2215 In both cases, the definitions are taken verbatim from lalr1.cc.
2216 * data/lalr1.cc: Adjust.
2218 2009-03-02 Akim Demaille <demaille@gostai.com>
2220 b4_public_types_declare.
2221 * data/c++.m4 (b4_public_types_declare): New.
2222 * data/glr.cc, data/lalr1.cc: Use it.
2224 2009-03-02 Akim Demaille <demaille@gostai.com>
2226 b4_semantic_type_declare.
2227 * data/c++.m4 (b4_semantic_type_declare): New.
2228 Factors and generalizes what was in glr.cc and lalr1.cc.
2229 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2231 * data/lalr1.cc, data/glr.cc: Use it.
2233 2009-02-26 Akim Demaille <demaille@gostai.com>
2236 * gnulib: Upgrade from master.
2237 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2240 2009-02-25 Akim Demaille <demaille@gostai.com>
2242 Remove useless arguments.
2243 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2246 2009-02-25 Akim Demaille <demaille@gostai.com>
2249 * data/lalr1.cc: here.
2251 2009-02-25 Akim Demaille <demaille@gostai.com>
2253 Fix glr.cc's debug level handling.
2254 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2255 glr.c which is used.
2256 (debug_level, set_debug_level): Adjust.
2258 2009-02-25 Akim Demaille <demaille@gostai.com>
2261 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2263 2009-02-25 Akim Demaille <demaille@gostai.com>
2266 * etc/bench.pl.in (generate_grammar_list): Consitently use
2267 location_type, not yy::location.
2269 2009-02-25 Akim Demaille <demaille@gostai.com>
2272 * data/lalr1.cc: here.
2274 2009-02-19 Akim Demaille <demaille@gostai.com>
2276 Make yyparser::error public.
2277 * data/lalr1.cc: here.
2278 There is no good reason to keep it private (and it is convenient
2279 to use it from the scanner for instance). It is already public in
2282 2009-02-19 Akim Demaille <demaille@gostai.com>
2285 * data/glr.cc: here.
2287 2009-02-19 Akim Demaille <demaille@gostai.com>
2289 Remove trailing blanks.
2290 The epilogue has its own ending \n, no need to add another.
2292 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2294 * data/glr.cc: dnl when extending the epilogue.
2295 Remove stray "private:".
2297 2009-02-19 Akim Demaille <demaille@gostai.com>
2300 * data/c.m4 (b4_c_function_decl): Here.
2302 2009-02-19 Akim Demaille <demaille@gostai.com>
2305 * data/lalr1.cc: here.
2307 2009-02-19 Akim Demaille <demaille@gostai.com>
2310 * data/variant.hh: New, extracted from...
2311 * data/lalr1.cc: here.
2313 * data/local.mk: Adjust.
2315 2009-02-19 Akim Demaille <demaille@gostai.com>
2317 Extract stack.hh from lalr1.cc.
2318 * data/stack.hh: New.
2319 * data/lalr1.cc: Extract from here.
2320 * data/local.mk: Adjust.
2322 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2324 Add reminder about uploading public key to keys.gnupg.net.
2325 * HACKING (Release Procedure): Here.
2327 2009-01-28 Akim Demaille <demaille@gostai.com>
2329 * NEWS: Update information about 2.4.1 and 2.4.2.
2331 2008-11-04 Akim Demaille <demaille@gostai.com>
2334 * NEWS: Use more outline-mode markup.
2335 Suggested by Jim Meyering.
2337 2009-01-08 Akim Demaille <demaille@gostai.com>
2339 Fix grep portability issues.
2340 Grep on Solaris does not support -q.
2341 Reported by Summum Bonum.
2343 * NEWS: Add a stub for 2.4.2.
2344 * THANKS: Add Summum Bonum.
2345 * tests/atlocal.in (EGREP): New.
2346 (CC, CXX, XSLTPROC): Make it possible to override them via
2348 * tests/java.at: Use $EGREP instead of egrep.
2349 Use AT_CHECK's ignore instead of grep's -q.
2351 2008-12-11 Akim Demaille <demaille@gostai.com>
2353 Pass the token type to yysyntax_error.
2354 * data/yacc.c (yysyntax_error): Take the transated token instead
2359 2008-12-11 Akim Demaille <demaille@gostai.com>
2362 * data/glr.c: Formatting changes.
2364 2008-12-11 Akim Demaille <demaille@gostai.com>
2366 Propagate i18n changes into glr.c.
2368 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2369 building the error message format dynamically.
2370 * data/lalr1.java: Formatting changes.
2372 2008-12-11 Akim Demaille <demaille@gostai.com>
2375 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2376 Solves problems when top_srcdir is an absolute path.
2377 Suggested by Eric Blake.
2378 * configure.ac: Require Autoconf 2.62.
2380 2008-12-11 Akim Demaille <demaille@gostai.com>
2382 Simplify the i18n of the error messages.
2383 * data/lalr1.cc: Comment changes.
2384 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2385 lalr1.cc instead of building dynamically the format string.
2387 2008-12-08 Akim Demaille <demaille@gostai.com>
2389 Fix portability issue in the test suite.
2390 * tests/local.at (AT_MATCHES_CHECK): New.
2391 Based on Perl instead of Sed. Sed has too many portability
2392 pitfalls, not ever Sed is GNU Sed.
2393 * tests/actions.at (Fix user actions without a trailing semicolon):
2396 2008-12-08 Akim Demaille <demaille@gostai.com>
2399 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2401 2008-12-08 Akim Demaille <demaille@gostai.com>
2403 Install autoconf as a submodule to get m4sugar.
2404 * .gitmodules: Add submodules/autoconf.
2405 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2406 submodules/autoconf.
2408 2008-12-08 Akim Demaille <demaille@gostai.com>
2410 Test token.prefix in all the skeletons.
2411 * data/java.m4 (b4_token_enum): Use the token.prefix.
2412 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2413 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2414 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2415 * tests/java.at: Comment changes.
2416 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2417 (Java parser class and package names): Add token.prefix check.
2419 2008-12-08 Akim Demaille <demaille@gostai.com>
2421 Fix regeneration of atconfig.
2422 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2423 remove it: now that there is no tests/Makefile.am, the top-level
2424 Makefile properly updates atconfig when needed.
2426 2008-12-07 Di-an Jan <dianj@freeshell.org>
2428 Implement the FIXME that ends an user action with a semicolon
2429 if it seems necessary.
2430 * src/scan-code.l (flex rules section): Flag cpp directive from
2431 any `#' to the first unescaped end-of-line. Semicolon is not
2432 needed after `;', `{', '}', or cpp directives and is needed after
2433 any other token (whitespaces and comments have no effect).
2434 * tests/actions.at (Fix user actions without a trailing semicolon):
2436 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2437 to make user actions complete statements.
2438 Adjust column numbers in error messages.
2439 * tests/regression.at (Fix user actions without a trailing semicolon):
2440 Remove. Covered by new test.
2442 2008-12-07 Akim Demaille <demaille@gostai.com>
2445 * gnulib: Update from master.
2447 2008-12-05 Eric Blake <ebb9@byu.net>
2449 Avoid compiler warning.
2450 * src/output.c (muscle_insert_item_number_table): Delete unused
2453 2008-12-02 Eric Blake <ebb9@byu.net>
2455 Build testsuite with newer autoconf.
2456 * tests/output.at (m4_expand): Don't override in newer autoconf,
2457 where the underlying implementation changed.
2458 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2459 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2460 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2461 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2462 since some of them contain unbalanced ')'.
2464 2008-12-01 Akim Demaille <demaille@gostai.com>
2466 Use b4_symbol for printers and destructors everywhere.
2467 * data/bison.m4 (b4_symbol_action_location): New.
2468 * data/c.m4 (b4_symbol_actions): Remove.
2469 Adjust all callers to use by b4_symbol_foreach and the corresponding
2470 b4_symbol_printer/destructor macro.
2471 * data/glr.cc: Adjust.
2472 * data/lalr1.java: Adjust the %destructor sanity check.
2473 * src/output.c (symbol_code_props_output): Remove, we no longer
2474 need the b4_symbol_printers/destructors tables.
2476 2008-12-01 Akim Demaille <demaille@gostai.com>
2478 Use b4_symbol_case_.
2479 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2482 2008-12-01 Akim Demaille <demaille@gostai.com>
2484 Move b4_symbol based macro to bison.m4.
2485 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2486 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2487 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2488 (b4_type_foreach): Move to...
2489 * data/bison.m4: Here.
2490 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2491 b4_symbol_value_template instead of b4_symbol_value.
2493 2008-12-01 Akim Demaille <demaille@gostai.com>
2495 b4_symbol/type_foreach.
2496 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2499 2008-12-01 Akim Demaille <demaille@gostai.com>
2501 Use the symbol properties to output the printer/destructor for lalr1.cc.
2502 Instead of defining complex list of tuples to define various
2503 properties of the symbols, we now prefer to define symbols as
2504 "structs" in m4: using the symbol key (its number), and the
2505 property name, b4_symbol gives it value. Use this to handle
2506 destructors and printers.
2508 * src/output.c (CODE_PROP): New.
2509 (prepare_symbol_definitions): Use it to define the printer and
2510 destructor related attributes of the symbols.
2511 * data/lalr1.cc (b4_symbol_actions): Rename as...
2512 (b4_symbol_action): this.
2513 Use b4_symbol instead of 6 arguments.
2514 (b4_symbol_printer, b4_symbol_destructor): New.
2515 Use them instead of b4_symbol_actions.
2517 2008-12-01 Akim Demaille <demaille@gostai.com>
2519 Avoid capturing variables too easily.
2520 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2521 v__ and p__ instead of v and p.
2523 2008-12-01 Akim Demaille <demaille@gostai.com>
2525 Remove spurious empty line before syncline.
2526 * data/bison.m4 (b4_syncline): Don't output an empty line before
2529 2008-11-26 Akim Demaille <demaille@gostai.com>
2531 Convert lib/Makefile.am into lib/local.mk.
2532 The real problem is rather gnulib.mk, which itself is extracted
2533 from a Makefile.am that gnulib expects to the "recursive". The
2534 tool prefix-gnulib-mk converts such a gnulib.mk to be
2535 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2537 * etc/prefix-gnulib-mk: New.
2538 * bootstrap (slurp): Use it to convert further gnulib.mk.
2539 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2541 * lib/Makefile.am: Rename as...
2542 * lib/local.mk: this.
2543 Adjust to be prefixed.
2544 * Makefile.am, configure.ac: Adjust.
2545 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2547 2008-11-26 Akim Demaille <demaille@gostai.com>
2550 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2551 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2552 Reported by Eric Blake.
2554 2008-11-26 Akim Demaille <demaille@gostai.com>
2556 Use b4_parser_tables_define in glr.cc.
2557 * data/glr.c: Use b4_parser_tables_define instead of defining the
2558 (deterministic integral) tables by hand.
2560 2008-11-26 Akim Demaille <demaille@gostai.com>
2562 Use b4_parser_tables_define in Java.
2563 * data/java.m4 (b4_typed_parser_table): Rename as...
2564 (b4_typed_parser_table_define): this, for consistency.
2565 Accept a comment as $4.
2567 (b4_integral_parser_table): Rename as...
2568 (b4_integral_parser_table_define): this.
2569 * data/lalr1.java: Adjust all uses.
2570 Use b4_parser_tables_define instead of generation by hand.
2572 2008-11-26 Akim Demaille <demaille@gostai.com>
2574 Prepare the convergence bw C style and Java table generation.
2575 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2576 (b4_tables_define): Rename as...
2577 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2578 (b4_parser_tables_define): these.
2579 * data/c.m4 (b4_table_define): Rename as...
2580 (b4_integral_parser_table_define): this.
2581 * data/lalr1.cc: Adjust.
2582 (b4_table_define, b4_table_declare): Rename as...
2583 (b4_integral_parser_table_define)
2584 (b4_integral_parser_table_declare): these.
2585 (yyrline_): Move the comment where it is actually used.
2586 * data/yacc.c: Adjust.
2587 (yyrline): Use b4_integral_parser_table_define.
2589 2008-11-26 Akim Demaille <demaille@gostai.com>
2592 * src/parse-gram.h, src/parse-gram.c: Regen.
2594 2008-11-26 Akim Demaille <demaille@gostai.com>
2596 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2597 * data/lalr1.cc (b4_tables_map): Move to...
2598 * data/bison.m4: here.
2599 Update the comment for yytable during the flight.
2600 (b4_tables_declare, b4_tables_define): New.
2601 * data/lalr1.cc: Use them.
2602 * data/c.m4 (b4_table_define): New.
2603 * data/yacc.c: Use b4_tables_define instead of output the tables
2605 * tests/regression.at (Web2c Actions): Adjust the expected output,
2606 the order of the tables changed.
2608 2008-11-26 Akim Demaille <demaille@gostai.com>
2610 Get rid of (yy)rhs and (yy)prhs.
2611 These tables are no longer needed in the parsers, and they don't seem to
2612 be useful. They are not documented either.
2614 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2615 Adjust the computation of (yy)r2.
2617 2008-11-26 Akim Demaille <demaille@gostai.com>
2619 Rule length is unsigned.
2620 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2622 2008-11-26 Akim Demaille <demaille@gostai.com>
2624 Get rid of lalr1-split.cc.
2625 It was no longer maintainer.
2627 * data/lalr1-split.cc: Remove.
2628 * etc/bench.pl.in (bench_fusion_parser): Remove.
2631 2008-11-26 Akim Demaille <demaille@gostai.com>
2633 Use yy* consistently.
2634 * data/glr.c: Now that yyrhs no longer exists as a global
2635 variable, rename local "rhs" variables into "yyrhs" for
2638 2008-11-25 Akim Demaille <demaille@gostai.com>
2640 Get rid of yyrhs and yyprhs in glr.c.
2641 * data/glr.c (yyrhs, yyprhs): Remove.
2642 Instead, use the state stack and yystos.
2644 2008-11-25 Akim Demaille <demaille@gostai.com>
2647 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2648 as an Autotest keyword.
2650 2008-11-25 Akim Demaille <demaille@gostai.com>
2652 Prefer TESTSUITE_FLAGS.
2653 TESTSUITEFLAGS is barely readable.
2655 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2656 for backward compatibility.
2657 Use the former instead of the latter.
2659 2008-11-25 Akim Demaille <demaille@gostai.com>
2661 Get rid of yyrhs and yyprhs in larl1.java.
2662 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2663 (yy_reduce_print): Rather, use yystos_ and the state stack.
2665 2008-11-25 Akim Demaille <demaille@gostai.com>
2669 2008-11-25 Akim Demaille <demaille@gostai.com>
2671 Get rid of yyrhs and yyprhs in yacc.c.
2672 They were used to get the symbol types, given a rule number, when
2673 displaying the top of the stack before a reduction. But the
2674 symbol type is available from the state stack. This has two be
2675 benefits: two tables less in the parser (making it smaller), and a
2676 more consistent use of the three stacks which will help to fuse
2679 * data/yacc.c (yyprhs, yyrhs): Remove.
2680 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2681 (yy_reduce_print): Take yyssp as argument.
2682 Use it, together with yystos, to get the symbol type.
2683 * tests/regression.at (Web2c Report): Remove these tables from the
2686 2008-11-25 Akim Demaille <demaille@gostai.com>
2689 The point is to factor the generation of the tables across skeletons.
2690 This is language dependant.
2692 * data/c.m4 (b4_comment_): New.
2693 Should be usable to define how to generate tables independently of
2695 (b4_c_comment): New.
2696 (b4_comment): Bounce to b4_c_comment.
2697 Now support $2 = [PREFIX] for indentation.
2698 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2699 there is no comment.
2700 Indent it properly when there is one.
2701 Output the ending semicolon.
2702 (b4_table_define): Space changes.
2703 Output the ending semicolon.
2704 (b4_tables_map): New.
2705 Use it twice instead of declaring and defining the (integral)
2708 2008-11-25 Akim Demaille <demaille@gostai.com>
2711 * data/lalr1.cc (b4_table_declare): New.
2712 Use it to declare the tables defined with b4_table_define.
2713 (b4_table_define): Declare a third arg to match b4_table_declare
2715 Move all the comments around invocations of b4_table_define into
2716 the invocations itselves.
2717 Move things around to have the order for declarations and
2720 2008-11-25 Akim Demaille <demaille@gostai.com>
2723 * data/lalr1.java: here.
2725 2008-11-25 Akim Demaille <demaille@gostai.com>
2727 b4_args is more general than only C++.
2728 * data/lalr1.cc (b4_args, _b4_args): Move to...
2729 * data/bison.m4: here.
2731 2008-11-21 Di-an Jan <dianj@freeshell.org>
2733 Implement no-XXX arguments for --warnings, --report, --trace.
2734 * src/getargs.c (flags_argmatch): Handles no-XXX.
2735 Fix typo in doxygen comment.
2737 2008-11-21 Akim Demaille <demaille@gostai.com>
2739 Display the changes in cross-options.texi.
2740 * build-aux/cross-options.pl ($sep): New, to separate items.
2741 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2744 2008-11-20 Di-an Jan <dianj@freeshell.org>
2746 Improves options in the manual.
2747 * doc/bison.texinfo (-g, -x): Add space before argument.
2748 (Option Cross Key): Implement FIXME: listing directives also.
2749 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2750 (Short Option): Special case -d. Put arguments inside @option.
2751 (Bison Directive): Add column, automatically extracted from
2752 src/scan-gram.l (actual name passed as the first argument)
2753 with special case for %define.
2754 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2755 to build-aux/cross-options.pl.
2756 * src/getargs.c (usage): Document limitations of cross-options.pl.
2757 * src/scan-gram.l: Likewise.
2759 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2761 Fix unexpanded macros in GLR defines file.
2762 Reported by Csaba Raduly at
2763 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2764 * THANKS (Csaba Raduly): Add.
2765 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2766 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2767 lexer in a separate module that includes the defines file.
2768 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2770 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2771 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2772 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2773 (AT_DATA_SOURCE_PROLOGUE): New.
2774 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2775 (AT_DATA_SOURCE): New.
2776 (AT_FULL_COMPILE): Extend to support an additional source file.
2778 2008-11-18 Akim Demaille <demaille@gostai.com>
2781 * TODO: More short term issues.
2783 2008-11-18 Akim Demaille <demaille@gostai.com>
2786 * src/parse-gram.h, src/parse-gram.c: Regen.
2788 2008-11-18 Akim Demaille <demaille@gostai.com>
2790 Use b4_subtract where possible.
2791 * data/lalr1.cc (b4_subtract): Move to...
2792 * data/bison.m4: here.
2793 * data/glr.c (b4_rhs_data): Use it.
2794 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2796 2008-11-18 Akim Demaille <demaille@gostai.com>
2798 Remove incorrect mode specification.
2799 * data/glr.cc: Don't pretend it's C code.
2801 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2803 Simplify last patch slightly.
2804 * src/getargs.c (getargs): Here.
2806 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2808 Fix last warning from --enable-gcc-warnings.
2809 * src/getargs.c (getargs): Don't assign const address to non-const
2812 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2814 Don't let maintainer-*-check targets force a version update.
2815 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2818 2008-11-17 Di-an Jan <dianj@freeshell.org>
2820 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2821 Align menus. Adjust word wrapping. Use node names for menu names.
2822 (Examples): Don't abbreviate node names.
2823 (LocalWords): Remove abbreviations.
2824 (Copying): Make description a sentence.
2825 (Java Action Features): Remove period to match the rest of menu.
2827 2008-11-17 Di-an Jan <dianj@freeshell.org>
2829 Handles several --enable-gcc-warnings.
2830 * src/getargs.c (command_line_location): Set parameters to void.
2831 * src/output.c (symbol_type_name_cmp): Make static.
2832 (symbols_by_type_name): Set parameters to void.
2833 (symbol_definitions_output): Remove unused parameter. Rename as...
2834 (prepare_symbol_definitions): this.
2835 (muscles_output): Move symbol_definitions_output to...
2836 (output): here as prepare_symbol_definitions.
2837 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
2838 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
2840 2008-11-17 Di-an Jan <dianj@freeshell.org>
2842 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2843 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2845 2008-11-16 Akim Demaille <demaille@gostai.com>
2847 Add missing $(EXEEXT).
2848 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2849 "src/bison$(EXEEXT)".
2850 Reported by Di-an Jan.
2852 2008-11-15 Akim Demaille <demaille@gostai.com>
2856 2008-11-15 Akim Demaille <demaille@gostai.com>
2859 * tests/input.at: here.
2861 2008-11-15 Akim Demaille <demaille@gostai.com>
2863 Remove duplicate header inclusion.
2866 2008-11-15 Akim Demaille <demaille@gostai.com>
2868 * src/parse-gram.h, src/parse-gram.c: Regen.
2870 2008-11-15 Akim Demaille <demaille@gostai.com>
2872 Support parametric types.
2874 There are two issues to handle: first scanning nested angle
2875 bracket pairs to support types such as std::pair< std::string,
2876 std::list<std::string> > >.
2878 Another issue is to address idiosyncracies of C++: do not glue two
2879 closing angle brackets together (otherwise it's operator>>), and
2880 avoid sticking blindly a TYPE to the opening <, as it can result
2881 in '<:' which is a digraph for '['.
2883 * src/scan-gram.l (brace_level): Rename as...
2886 Implement support for complex tags.
2889 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2890 (b4_symbol_variant): Leave space around types as parameters.
2891 * examples/variant.yy: Use nested template types and leading ::.
2892 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2894 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2895 * tests/c++.at: Test parametric types.
2897 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2900 This is not sufficient, but we test at least that the make_SYMBOL
2901 interface is not affected by token.prefix. A more general test
2902 will be implemented when the support of token.prefix is generalized
2905 * tests/c++.at: One more variant test, using token.prefix.
2907 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2909 Test the make_TOKEN interface.
2910 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2911 Factor the common code in yylex.
2912 Use it to test "%define lex_symbol".
2914 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2918 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2920 Simplify code for variants bench marks.
2921 * etc/bench.pl.in (&generate_grammar_list): Define and use
2923 Factor the common code in yylex.
2925 2008-11-15 Akim Demaille <demaille@gostai.com>
2927 Better error message.
2928 * bootstrap (find_tool): Fix the error message.
2930 2008-11-15 Akim Demaille <demaille@gostai.com>
2932 Update variant.yy to newest interface.
2933 * examples/variant.yy: Define lex_symbol.
2936 2008-11-15 Akim Demaille <demaille@gostai.com>
2938 Don't use locations in variant.yy.
2939 * examples/variant.yy: Adjust to not using locations.
2941 2008-11-15 Akim Demaille <demaille@gostai.com>
2944 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2945 comments for the license.
2947 2008-11-15 Akim Demaille <demaille@gostai.com>
2949 Remove tests/Makefile.am.
2950 * tests/Makefile.am: Rename as...
2951 * tests/local.mk: this.
2952 * Makefile.am, configure.ac: Adjust.
2953 * Makefile.am (DISTCLEANFILES): Define.
2954 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2955 Remove, we no longer need to bounce to the real targets.
2957 2008-11-15 Akim Demaille <demaille@gostai.com>
2961 2008-11-15 Akim Demaille <demaille@gostai.com>
2964 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2965 * djgpp/local.mk: this new file.
2967 2008-11-15 Akim Demaille <demaille@gostai.com>
2969 Remove doc/Makefile.am.
2970 * doc/Makefile.am: Rename as...
2971 * doc/local.mk: this.
2973 * Makefile.am, configure.ac: Adjust.
2974 * Makefile.am (MOSTLYCLEANFILES): New.
2975 * src/local.mk: Adjust.
2977 2008-11-15 Akim Demaille <demaille@gostai.com>
2979 Move sc_tight_scope into maint.mk.
2980 It does not work, and I don't know how it was supposed to work: it
2981 seems to be looking for sources in the build tree. I just moved
2982 it at a better place, fixing it is still required.
2984 * src/local.mk (echo): Remove.
2985 (sc_tight_scope): Move to...
2988 2008-11-15 Akim Demaille <demaille@gostai.com>
2991 * src/parse-gram.h, src/parse-gram.h: Regen.
2993 2008-11-15 Akim Demaille <demaille@gostai.com>
2995 Remove src/Makefile.am.
2996 * src/Makefile.am: Rename as...
2997 * src/local.mk: this.
2998 Prefix all the paths with src/.
2999 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
3000 (AM_CPPFLAGS): Find find in builddir/src.
3001 (YACC): Move the flags into...
3003 * maint.mk (sc_tight_scope): Disable.
3004 It used to bounce to the version in src/Makefile.am which is now
3005 part of this very Makefile.
3006 * Makefile.am, configure.ac: Adjust.
3007 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
3008 include "..." to find files "here": we are no longer in src/, so
3009 qualify the includes with src/.
3010 * doc/Makefile.am (PREPATH): No longer include the top_builddir
3012 (.x.1): Adjust to be able to create src/foo from the top level
3013 Makefile, instead of going bounce to src/Makefile the creation of
3016 2008-11-15 Akim Demaille <demaille@gostai.com>
3018 Remove useless variable.
3019 * doc/Makefile.am (srcsrcdir): Remove.
3021 2008-11-15 Akim Demaille <demaille@gostai.com>
3023 Remove data/Makefile.am.
3024 * data/Makefile.am: Rename as...
3025 * data/local.mk: this.
3027 * Makefile.am, configure.ac: Adjust.
3029 2008-11-15 Akim Demaille <demaille@gostai.com>
3031 Remove etc/Makefile.am.
3032 * etc/Makefile.am: Rename as...
3033 * etc/local.mk: this.
3035 * Makefile.am, configure.ac: Adjust.
3037 2008-11-15 Akim Demaille <demaille@gostai.com>
3039 Remove examples/local.mk.
3040 examples/calc++/Makefile.am might be interesting to keep as is, since
3041 it is an example in itself.
3043 * examples/Makefile.am: Rename as...
3044 * examples/local.mk: this.
3046 * Makefile.am, configure.ac: Adjust.
3048 2008-11-15 Akim Demaille <demaille@gostai.com>
3050 Remove build-aux/Makefile.am.
3051 Recursive Makefiles are really way too slow, let's get rid of some of
3054 * build-aux/Makefile.am: Rename as...
3055 * build-aux/local.mk: this.
3057 * Makefile.am, configure.ac: Adjust.
3059 2008-11-15 Akim Demaille <demaille@gostai.com>
3061 Provide convenience constructors for locations and positions.
3062 * data/location.cc (position::position): Accept file, line and
3063 column as arguments with default values.
3064 Always qualify initial line and column literals as unsigned.
3065 (location::location): Provide convenience constructors.
3067 2008-11-15 Akim Demaille <demaille@gostai.com>
3069 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3071 Using template buys us nothing, and makes it uselessly complex to
3072 construct a symbol. Besides, it could not be generalized to other
3073 languages, while make_FOO would work in C/Java etc.
3075 * data/lalr1.cc (b4_symbol_): New.
3076 (b4_symbol): Use it.
3077 (b4_symbol_constructor_declaration_)
3078 (b4_symbol_constructor_definition_): Instead of generating
3079 specializations of an overloaded template function, just generate
3080 several functions whose names are forged from the token names
3081 without the token.prefix.
3082 (b4_symbol_constructor_declarations): Generate them for all the
3083 symbols, not just by class of symbol type, now that instead of
3084 specializing a function template by the token, we generate a
3085 function named after the token.
3086 (b4_symbol_constructor_specialization_)
3087 (b4_symbol_constructor_specializations): Remove.
3088 * etc/bench.pl.in: Adjust to this new API.
3090 2008-11-13 Akim Demaille <demaille@gostai.com>
3092 %define token.prefix.
3093 Provide a means to add a prefix to the name of the tokens as
3094 output in the generated files. Because of name clashes, it is
3095 good to have such a prefix such as TOK_ that protects from names
3096 such as EOF, FILE etc. But it clutters the grammar itself.
3098 * data/bison.m4 (token.prefix): Empty by default.
3099 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
3100 * data/lalr1.cc (b4_symbol): Ditto.
3102 2008-11-13 Akim Demaille <demaille@gostai.com>
3104 Compute at M4 time some of the subtractions.
3105 * data/lalr1.cc (b4_subtract): New.
3106 (b4_rhs_data): Use it.
3108 2008-11-13 Akim Demaille <demaille@gostai.com>
3111 This allows the user to get the type of a token returned by yylex.
3113 * data/lalr1.cc (symbol::token): New.
3114 (yytoknum_): Define when %define lex_symbol, independently of
3116 (yytoken_number_): Move into...
3117 (symbol::token): here, since that's the only use.
3118 The other one is YYPRINT which was not officially supported
3119 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3120 array under a different name (yytoknum).
3122 2008-11-13 Akim Demaille <demaille@gostai.com>
3125 * TODO (YYERRCODE): Mention the case of $undef.
3127 2008-11-13 Akim Demaille <demaille@gostai.com>
3130 * TODO (YYPRINT): New.
3132 2008-11-13 Akim Demaille <demaille@gostai.com>
3135 * data/lalr1.cc, data/yacc.c: Fix the description of the
3136 yytranslate and yytoknum tables.
3138 2008-11-13 Akim Demaille <demaille@gostai.com>
3140 Define make_symbol in the header.
3141 To reach good performances these functions should be inlined (yet
3142 this is to measure precisely). To this end they must be available
3145 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3146 location_type with the class name.
3147 Since will now be output in the header, declare "inline".
3148 No longer use b4_symbol_constructor_specializations, but
3149 b4_symbol_constructor_definitions in the header.
3150 Don't call it in the *.cc file.
3152 2008-11-13 Akim Demaille <demaille@gostai.com>
3154 Define yytranslate in the header for lex_symbol.
3155 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3156 into the header file when using %define lex_symbol.
3157 (yytranslate_): Declare inline.
3159 2008-11-13 Akim Demaille <demaille@gostai.com>
3161 Define the constructors of symbol_type in
3162 b4_symbol_constructor_definitions.
3163 The constructors are called by the make_symbol functions, which a
3164 forthcoming patch will move elsewhere. Hence the interest of
3165 putting them together.
3167 The stack_symbol_type does not need to be moved, it is used only
3170 * data/lalr1.cc: Move symbol_type and symbol_base_type
3171 constructors into...
3172 (b4_symbol_constructor_definitions): here.
3175 2008-11-13 Akim Demaille <demaille@gostai.com>
3177 Make it easier to move the definition of yytranslate_.
3178 Forthcoming changes will make it possible to use yytranslate_
3179 from outside the parser implementation file.
3181 * data/lalr1.cc (b4_yytranslate_definition): New.
3184 2008-11-13 Akim Demaille <demaille@gostai.com>
3186 Remove useless class specification.
3187 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3188 to refer to the class name to use a type defined by the class for
3189 arguments of member functions.
3191 2008-11-13 Akim Demaille <demaille@gostai.com>
3193 Finer input type for yytranslate.
3194 This patch is debatable: the tradition expects yylex to return an int
3195 which happens to correspond to token_number (which is an enum). This
3196 allows for instance to return characters (such as '*' etc.). But this
3197 goes against the stronger typing I am trying to have with the new
3198 lex interface which return a symbol_type. So in this case, feed
3199 yytranslate_ with a token_type.
3201 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3202 expect a token_type.
3204 2008-11-13 Akim Demaille <demaille@gostai.com>
3206 Honor lex-params in %define lex_symbol mode.
3207 * data/lalr1.cc: Use b4_lex_param.
3209 2008-11-13 Akim Demaille <demaille@gostai.com>
3212 * src/output.c (symbol_definitions_output): Rename symbol
3213 attributes type_name and has_type_name as type and has_type.
3214 * data/lalr1.cc: Adjust uses.
3216 2008-11-13 Akim Demaille <demaille@gostai.com>
3218 Use b4_type_names for the union type.
3219 The union used to compute the size of the variant used to iterate
3220 over the type of all the symbols, with a lot of redundancy. Now
3221 iterate over the lists of symbols having the same type-name.
3223 * data/lalr1.cc (b4_char_sizeof_): New.
3224 (b4_char_sizeof): Use it.
3225 Adjust to be called with a list of numbers instead of a single
3227 Adjust its caller for new-line issues.
3229 2008-11-13 Akim Demaille <demaille@gostai.com>
3231 Define the "identifier" of a symbol.
3232 Symbols may have several string representations, for instance if
3233 they have an alias. What I call its "id" is a string that can be
3234 used as an identifier. May not exist.
3236 Currently the symbols which have the "tag_is_id" flag set are
3237 those that don't have an alias. Look harder for the id.
3239 * src/output.c (is_identifier): Move to...
3240 * src/symtab.c (is_identifier): here.
3241 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3242 * src/output.c (symbol_definitions_output): Use it to define "id"
3244 Remove the definition of "tag_is_id".
3245 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3246 "tag_is_id" were used to produce code.
3247 We still use "tag" for documentation.
3249 2008-11-11 Akim Demaille <demaille@gostai.com>
3251 Locations are no longer required by lalr1.cc.
3252 * data/lalr1.cc (_b4_args, b4_args): New.
3253 Adjust all uses of locations to make them optional.
3254 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3255 (AT_CHECK_NAMESPACE): Check the use of locations.
3256 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3257 without locations with lalr1.cc.
3259 * tests/output.at: Check lalr1.cc with and without location
3261 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3262 Don't use locations.
3264 2008-11-11 Akim Demaille <demaille@gostai.com>
3267 * tests/local.at (AT_FULL_COMPILE): New.
3268 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3270 2008-11-11 Akim Demaille <demaille@gostai.com>
3272 Support parens in calc++.
3273 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3274 * examples/calc++/test (run): Check the expected output.
3278 2008-11-11 Akim Demaille <demaille@gostai.com>
3280 Simplify lalr1.cc since %defines is mandatory.
3281 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3283 2008-11-11 Akim Demaille <demaille@gostai.com>
3286 * TODO (yysyntax_error): New item.
3288 2008-11-11 Akim Demaille <demaille@gostai.com>
3291 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3294 2008-11-11 Akim Demaille <demaille@gostai.com>
3296 Support i18n of the parse error messages.
3297 * TODO (lalr1.cc/I18n): Remove.
3298 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3299 error messages, as done in yacc.c.
3300 Stay within the yy* pseudo namespace.
3302 2008-11-11 Akim Demaille <demaille@gostai.com>
3305 * TODO (single stack, yysyntax_error): New.
3307 2008-11-11 Akim Demaille <demaille@gostai.com>
3309 Make it possible to return a symbol_type from yylex.
3310 * data/lalr1.cc (b4_lex_symbol_if): New.
3311 (parse): When lex_symbol is defined, expected yylex to return the
3313 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3315 (bench_variant_parser): Exercise it.
3317 2008-11-11 Akim Demaille <demaille@gostai.com>
3319 Remove useless bench case.
3320 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3323 2008-11-11 Akim Demaille <demaille@gostai.com>
3325 Improve display of directives.
3326 * etc/bench.pl.in (parse_term): Don't add useless eol.
3328 2008-11-11 Akim Demaille <demaille@gostai.com>
3330 Use string_cast in the bench.
3331 * etc/bench.pl.in (generate_grammar_list): Define and use
3334 2008-11-11 Akim Demaille <demaille@gostai.com>
3336 Replace yychar with a Boolean.
3337 * data/lalr1.cc (parse::yychar): Replace by...
3338 (parse::yyempty): this.
3340 2008-11-11 Akim Demaille <demaille@gostai.com>
3345 2008-11-11 Akim Demaille <demaille@gostai.com>
3347 Let yytranslate handle the eof case.
3348 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3350 No longer expect yychar to be equal to yyeof_, rather, test the
3351 lookahead's (translated) kind.
3353 2008-11-11 Akim Demaille <demaille@gostai.com>
3355 yychar cannot be empty in yyerrlab.
3356 * TODO (yychar == yyempty_): New.
3357 * data/lalr1.cc: Remove the handling of this case.
3358 This eases forthcoming changes related to yychar and yytranslate.
3360 2008-11-11 Akim Demaille <demaille@gostai.com>
3362 Bench: syntactic sugar for %define/#define.
3363 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3364 (&bench_push_parser, bench_variant_parser): Use this feature.
3368 2008-11-11 Akim Demaille <demaille@gostai.com>
3370 Less memory pressure on the "list" bench.
3371 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3372 the values, to limit memory pressure.
3374 2008-11-11 Akim Demaille <demaille@gostai.com>
3376 Introduce make_symbol.
3377 make_symbol provides a means to construct a full symbol (kind,
3378 value, location) in a single shot. It is meant to be a Symbol
3379 constructor, parameterized by the symbol kind so that overloading
3380 would prevent incorrect kind/value pairs. Unfortunately
3381 parameterized constructors do not work well in C++ (unless the
3382 parameter also appears as an argument, which is not acceptable),
3383 hence the use of a function instead of a constructor.
3385 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3386 (b4_symbol_constructor_declarations)
3387 (b4_symbol_constructor_specialization_)
3388 (b4_symbol_constructor_specializations)
3389 (b4_symbol_constructor_definition_)
3390 (b4_symbol_constructor_definitions): New.
3391 Use them where appropriate to generate declaration, declaration of
3392 the specializations, and implementations of the templated
3393 overloaded function "make_symbol".
3394 (variant::variant): Always define a default ctor.
3395 Also provide a copy ctor.
3396 (symbol_base_type, symbol_type): New ctor overloads for value-less
3398 (symbol_type): Now public, so that functions such as yylex can use
3401 2008-11-11 Akim Demaille <demaille@gostai.com>
3403 Inform m4 whether a tag is a valid id.
3404 * src/output.c (is_identifier): New.
3405 (symbol_definitions_output): Use it to define tag_is_id.
3406 But maybe this should be done at m4 level?
3408 2008-11-11 Akim Demaille <demaille@gostai.com>
3410 Test 214 was failing: it greps with a pattern containing [ ]*
3411 which obviously meant to catch spaces and tabs, but contained only
3412 spaces. Tabulations in sources are a nuisance, so to simplify the
3413 matter, get rid of all the tabulations in the Java sources. The
3414 other skeletons will be treated equally later.
3416 * data/java.m4, data/lalr1.java: Untabify.
3417 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3418 tabulations are no longer generated.
3420 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
3422 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3423 * configure.ac: Adjust usage.
3424 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3425 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3426 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3428 2008-11-10 Di-an Jan <dianj@freeshell.org>
3430 Workaround Java's ``code too large'' problem for parser tables
3431 in most cases, by using one function per initialization.
3432 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3433 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3434 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3435 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3436 (yytname_): Use b4_typed_parser_table.
3437 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3438 ``code too large'' error.
3440 2008-11-10 Di-an Jan <dianj@freeshell.org>
3442 * NEWS: Document them.
3444 General Java skeleton improvements.
3445 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3446 using gcj < 4.3 in the testsuite, according to comments in
3447 gnulib/m4/javacomp.m4.
3448 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3449 location_type, position_type): Remove extraneous brackets from
3450 b4_percent_define_default.
3451 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3452 m4_define and m4_define_default.
3453 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3454 which marks the end of user code with appropriate syncline, like all
3455 the other skeletons.
3456 (b4_user_post_prologue): Add. Don't silently drop.
3458 (parse): Inline yylex.
3459 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3460 (%{...%}): Fix typo of %code imports.
3461 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3463 Support annotations on parser class with %define annotations.
3464 * data/lalr1.java (annotations): Add to parser class modifier.
3465 * doc/bison.texinfo (Java Parser Interface): Document
3466 %define annotations.
3467 (Java Declarations Summary): Document %define annotations.
3468 * tests/java.at (Java parser class modifiers): Test annotations.
3470 Do not generate code for %error-verbose unless requested.
3471 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3472 Make private. Make conditional on %error-verbose.
3473 (getErrorVerbose, setErrorVerbose): New.
3474 (yytnamerr_): Make conditional on %error-verbose.
3475 (yysyntax_error): Make some code conditional on %error-verbose.
3476 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3477 about %error-verbose having no effect.
3478 (getErrorVerbose, setErrorVerbose): Document.
3480 Move constants for token names to Lexer interface.
3481 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3482 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3483 (parse): Qualify EOF to Lexer.EOF.
3484 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3485 EOF and token names to Java Lexer Interface.
3486 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3488 Make yyerror public.
3489 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3490 (yyerror): Change to public. Add Javadoc comments. Use longer
3491 parameter names. Make the body rather than the declarator
3492 conditional on %locations.
3493 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3495 Allow user to add code to the constructor with %code init.
3496 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3497 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3498 Add %code init to the front of the constructor body.
3499 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3500 and %define init_throws.
3501 (Java Declarations Summary): Document %code init and
3502 %define init_throws.
3503 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3504 (Java constructor init and init_throws): Add tests.
3506 2008-11-10 Akim Demaille <demaille@gostai.com>
3509 * TODO (-D): is implemented.
3510 (associativity): Same precedence must have the same associativity.
3511 For instance, how can a * b / c be parsed if * is %left and / is
3513 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3515 2008-11-10 Akim Demaille <demaille@gostai.com>
3519 2008-11-10 Akim Demaille <demaille@gostai.com>
3521 More information about the symbols.
3522 * src/output.c (type_names_output): Document all the symbols,
3523 including those that don't have a type-name.
3524 (symbol_definitions_output): Define "is_token" and
3526 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3527 type-name, now that they are defined too in b4_type_names.
3529 2008-11-10 Akim Demaille <demaille@gostai.com>
3533 2008-11-10 Akim Demaille <demaille@gostai.com>
3535 Make parser::yytranslate static.
3536 Small speedup (1%) on the list grammar. And makes yytranslate_
3537 available in non member functions.
3539 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3542 2008-11-10 Akim Demaille <demaille@gostai.com>
3544 Avoid trailing spaces.
3545 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3546 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3547 they can be empty, and anyway this incorrectly indents the first
3550 2008-11-10 Akim Demaille <demaille@gostai.com>
3554 2008-11-10 Akim Demaille <demaille@gostai.com>
3556 Use "enum" for integral constants.
3557 This is just nicer to read, I observed no speedup.
3559 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3560 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3561 (yyuser_token_number_max_, yyundef_token_): Move into...
3562 (yytranslate_): here.
3564 2008-11-10 Akim Demaille <demaille@gostai.com>
3566 Shortcuts in bench directives.
3567 * etc/bench.pl.in (parse_dirs): New.
3569 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3570 Create the benches in "benches/".
3572 2008-11-10 Akim Demaille <demaille@gostai.com>
3575 * data/lalr1.cc: here.
3577 2008-11-10 Akim Demaille <demaille@gostai.com>
3579 Adjust verbose message to using emacs.
3580 * etc/bench.pl.in: Inform compilation-mode when we change the
3582 (generate_grammar_list): Recognize %define "variant" in addition
3585 2008-11-10 Akim Demaille <demaille@gostai.com>
3587 Classify symbols by type-name.
3588 * src/uniqstr.h (UNIQSTR_CMP): New.
3589 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3590 (type_names_output): New.
3591 (muscles_output): Use it.
3592 * data/lalr1.cc (b4_symbol_action_): Remove.
3593 (b4_symbol_case_, b4_type_action_): New.
3594 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3596 2008-11-10 Akim Demaille <demaille@gostai.com>
3598 Change the handling of the symbols in the skeletons.
3599 Before we were using tables which lines were the symbols and which
3600 columns were things like number, tag, type-name etc. It is was
3601 difficult to extend: each time a column was added, all the numbers had
3602 to be updated (you asked for colon $2, not for "tag"). Also, it was
3603 hard to filter these tables when only a subset of the symbols (say the
3604 tokens, or the nterms, or the tokens that have and external number
3605 *and* a type-name) was of interest.
3607 Now instead of monolithic tables, we define one macro per cell. For
3608 instance "b4_symbol(0, tag)" is a macro name which contents is
3609 self-decriptive. The macro "b4_symbol" provides easier access to
3612 * src/output.c (type_names_output): Remove.
3613 (symbol_numbers_output, symbol_definitions_output): New.
3614 (muscles_output): Call them.
3615 (prepare_symbols): Define b4_symbols_number.
3617 2008-11-10 Akim Demaille <demaille@gostai.com>
3620 * src/getargs.h, src/getargs.c (trace_muscle): New.
3621 (trace_types, trace_args): Support it.
3622 * src/output.c (output_skeleton): Use it.
3624 2008-11-10 Akim Demaille <demaille@gostai.com>
3627 * src/output.c (muscles_output): New, extracted from...
3628 (output_skeleton): here.
3631 2008-11-10 Akim Demaille <demaille@gostai.com>
3635 2008-11-10 Akim Demaille <demaille@gostai.com>
3637 Update the variant example.
3638 * examples/variant.yy: Formatting changes.
3641 2008-11-10 Akim Demaille <demaille@gostai.com>
3643 Support constructor with an argument.
3644 This improves the "list" bench by 2%.
3646 * data/lalr1.cc (variant::build): Add an overloaded version with
3648 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3650 2008-11-10 Akim Demaille <demaille@gostai.com>
3653 * tests/c++.at (AT_CHECK_VARIANTS): New.
3654 Use it with and without %define assert.
3656 2008-11-10 Akim Demaille <demaille@gostai.com>
3658 Add %precedence support.
3659 Unfortunately it is not possible to reuse the %prec directive. This
3660 is because to please POSIX, we do not require to end the rules with a
3661 semicolon. As a result,
3665 is ambiguous: either a rule which precedence is that of baz, or a rule,
3666 and then a declaration of the precedence of the token baz.
3668 * doc/bison.texinfo: Document %precedence.
3669 (Precedence Only): New.
3670 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3671 * src/conflicts.c (resolve_sr_conflict): Support it.
3672 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3674 * tests/calc.at: Use %precedence for NEG.
3675 * tests/conflicts.at (%precedence does not suffice)
3676 (%precedence suffices): New tests.
3678 2008-11-09 Akim Demaille <demaille@gostai.com>
3680 Make benches in a sub dirs.
3681 * etc/bench.pl.in ($dir): New.
3683 Check the use of constructors with an argument.
3684 (bench_variant_parser): Fix.
3686 2008-11-09 Akim Demaille <demaille@gostai.com>
3690 2008-11-09 Akim Demaille <demaille@gostai.com>
3694 2008-11-09 Akim Demaille <demaille@gostai.com>
3696 Require the generation of parse-gram.output.
3697 * src/Makefile.am (YACC): Pass --report=all.
3699 2008-11-09 Akim Demaille <demaille@gostai.com>
3703 2008-11-09 Akim Demaille <demaille@gostai.com>
3706 * TODO: Remove obsolete items.
3709 2008-11-09 Akim Demaille <demaille@gostai.com>
3712 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3713 (@token, $grammar, $bench): New.
3714 (generate_grammar_variant): Rename as...
3715 (generate_grammar_list): this.
3716 (generate_grammar): Adjust.
3717 (bench_grammar): Rename as...
3719 Use it in the various bench-marking routines.
3720 (-b, -g): New options.
3722 2008-11-09 Akim Demaille <demaille@gostai.com>
3724 Use a static hierarchy for symbols in the C++ parser.
3725 * data/lalr1.cc (symbol_base_type, symbol_type)
3726 (stack_symbol_type): Make it a static hierarchy.
3727 Adjust dependencies.
3729 2008-11-09 Akim Demaille <demaille@gostai.com>
3731 bench.pl -d, --directive.
3732 * etc/bench.pl.in (@directive): New.
3733 (&bench_grammar): Use it.
3734 (&bench_list_grammar): New, to provide access to the "variant"
3737 (getopts): Support -d, --directive.
3739 2008-11-09 Akim Demaille <demaille@gostai.com>
3741 Use inline for small operations.
3742 * data/lalr1.cc (symbol_base_type, symbol_type)
3743 (stack_symbol_type): Declare constructor and other operations as
3745 (yy_destroy_): Inline.
3747 2008-11-09 Akim Demaille <demaille@gostai.com>
3749 Introduce a hierarchy for symbols.
3750 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3751 (data_type): Rename as...
3752 (stack_symbol_type): this.
3753 Derive from symbol_base_type.
3754 (yy_symbol_value_print_): Merge into...
3755 (yy_symbol_print_): this.
3758 (yydestruct_): Rename as...
3759 (yy_destroy_): this.
3760 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3761 (parser::parse): yyla is now of symbol_type.
3762 Use its type member instead of yytoken.
3764 2008-11-09 Akim Demaille <demaille@gostai.com>
3766 Rename data_type and stack_symbol_type.
3767 * data/lalr1.cc (data_type): Rename as...
3768 (stack_symbol_type): this.
3770 2008-11-09 Akim Demaille <demaille@gostai.com>
3772 Handle semantic value and location together.
3773 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3774 yydata.value and yydata.location.
3775 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3776 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3779 (yydestruct_): New overload for a stack symbol.
3781 2008-11-09 Akim Demaille <demaille@gostai.com>
3783 Push a complete symbol, not connected parts.
3784 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3785 state, value and location.
3788 2008-11-09 Akim Demaille <demaille@gostai.com>
3790 Agregate yylval and yylloc.
3791 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3792 (parser::yyla): this.
3794 2008-11-09 Akim Demaille <demaille@gostai.com>
3796 Rely on the state stack to display reduction traces.
3797 To display rhs symbols before a reduction, we used information
3798 about the rule reduced, which required the tables yyrhs and
3799 yyprhs. Now use rely only on the state stack to get the same
3802 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3804 (parser::yyrhs_, parser::yyprhs_): Remove.
3805 (parser::yy_reduce_print_): Use the state stack.
3807 2008-11-09 Akim Demaille <demaille@gostai.com>
3809 Fuse yyval and yyloc into yylhs.
3810 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3812 (parse): Replace yyval and yyloc with yylhs.value and
3814 After a user action, compute yylhs.state earlier.
3815 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3818 2008-11-09 Di-an Jan <dianj@freeshell.org>
3820 Remove unused variable.
3821 * src/output.c (type_names_output): Remove unused variable sep.
3823 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
3825 Change tests/output.at quoting.
3826 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3827 expanding arguments.
3829 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3831 Don't add a semicolon to actions for %skeleton or %language.
3832 It breaks Java test cases as reported by Akim Demaille.
3833 * src/scan-code.l: Implement.
3835 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3837 Clean up %skeleton and %language priority implementation.
3838 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3839 remove static qualifier because others will soon need to see it.
3840 (language_prio): Likewise.
3841 (getargs): Use command_line_prio rather than 0.
3842 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3844 (skeleton_prio): Extern it.
3845 (language_prio): Extern it.
3846 * src/parse-gram.y: Use grammar_prio rather than 1.
3848 2008-11-07 Akim Demaille <demaille@gostai.com>
3850 Moving push traces into yypush_.
3851 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3854 2008-11-07 Akim Demaille <demaille@gostai.com>
3856 The single-stack C++ parser is now the standard one.
3857 * data/lalr1.cc: Rename as...
3858 * data/lalr1-split.cc: this.
3859 * data/lalr1-fusion.cc: Rename as...
3860 * data/lalr1.cc: this.
3861 * etc/bench.pl.in: Adjust.
3863 2008-11-07 Akim Demaille <demaille@gostai.com>
3865 Avoid empty-if warnings.
3866 Reported by Quentin Hocquet.
3868 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3869 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3871 2008-11-07 Akim Demaille <demaille@gostai.com>
3873 Pass command line location to skeleton_arg and language_argmatch.
3874 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3875 The location argument is now mandatory.
3876 Adjust all dependencies.
3877 (getargs): Use command_line_location.
3879 2008-11-07 Akim Demaille <demaille@gostai.com>
3882 * src/getargs.c (usage): Document -D.
3883 Fix help string for --locations.
3884 (command_line_location): New.
3885 (short_options, long_options, getargs): Support -D, --define.
3886 (getargs): Move -d support at the right place.
3887 * doc/bison.texinfo (Bison Options): Update.
3888 * tests/input.at (%define, --define): New.
3890 2008-11-07 Akim Demaille <demaille@gostai.com>
3892 Initialize the muscle table before parsing the command line.
3893 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3894 (getargs): Define file_name.
3895 * src/main.c (main): Initialize muscle_tab before calling
3897 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3898 its value is not available yet.
3900 2008-11-07 Akim Demaille <demaille@gostai.com>
3902 Locations without columns for command line arguments.
3903 * src/location.c (location_print): Don't display negative columns.
3904 * src/location.h: Document this.
3906 2008-11-07 Akim Demaille <demaille@gostai.com>
3909 * src/getargs.c (usage): Fix help string for -W.
3911 2008-11-07 Akim Demaille <demaille@gostai.com>
3913 Handle more general types of option arguments.
3914 * build-aux/cross-options.pl: The argument ends at the first
3915 space, not the first non-symbol character.
3916 Use @var for each word appearing the argument description.
3918 2008-11-07 Akim Demaille <demaille@gostai.com>
3920 Destroy the variants that remain on the stack in case of error.
3921 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3923 Display the value only if yymsg is nonnull.
3924 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3926 2008-11-07 Akim Demaille <demaille@gostai.com>
3928 Add "%define assert" to variants.
3929 This is used to help the user catch cases where some value gets
3930 ovewritten by a new one. This should not happen, as this will
3933 Unfortunately this uncovered a bug in the C++ parser itself: the
3934 lookahead value was not destroyed between two calls to yylex. For
3935 instance if the previous lookahead was a std::string, and then an int,
3936 then the value of the std::string was correctly taken (i.e., the
3937 lookahead was now an empty string), but std::string structure itself
3940 This is now done in variant::build(other&) (which is used to take the
3941 value of the lookahead): other is not only stolen from its value, it
3942 is also destroyed. This incurs a new performance penalty of a few
3943 percent, and union becomes faster again.
3945 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3946 (b4_variant_if): New.
3947 (variant::built): New.
3948 Use it whereever the status of the variant changes.
3949 * etc/bench.pl.in: Check the penalty of %define assert.
3951 2008-11-07 Akim Demaille <demaille@gostai.com>
3953 Use "%define variant" in bench.pl.
3954 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3955 just use %define variants.
3957 2008-11-07 Akim Demaille <demaille@gostai.com>
3960 * src/parse-gram.h, src/parse-gram.c: Regen.
3962 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3964 Fix user actions without a trailing semicolon.
3965 Reported by Sergei Steshenko at
3966 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3967 * THANKS (Sergei Steshenko): Add.
3968 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3969 * tests/regression.at (Fix user actions without a trailing semicolon):
3972 2008-11-04 Akim Demaille <demaille@gostai.com>
3974 Use b4_copyright_years.
3975 * data/yacc.c (b4_copyright_years): New.
3976 Fix its value according to the comments in the file.
3977 Use it and undefine it.
3979 2008-11-04 Akim Demaille <demaille@gostai.com>
3982 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3984 2008-11-04 Akim Demaille <demaille@gostai.com>
3987 * data/lalr1-fusion.cc: here.
3989 2008-11-04 Akim Demaille <demaille@gostai.com>
3991 Use strict on bench.pl.
3992 * etc/bench.pl.in (&run, &generate_grammar): New.
3993 Rename the grammar generating functions for consistency.
3994 Change the interface so that the list of benches to run is passed
3995 as (optionless) arguments.
3996 (&compile): Use &run.
3998 2008-11-04 Akim Demaille <demaille@gostai.com>
4000 Remove spurious initial empty lines.
4001 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
4002 * data/yacc.c: End the @output lines with an @.
4004 2008-11-04 Akim Demaille <demaille@gostai.com>
4006 Improve the display of sizes.
4007 * etc/bench.p.in: Higher precision.
4008 Sort by decreasing size.
4010 2008-11-04 Akim Demaille <demaille@gostai.com>
4012 Don't memcpy C++ structures.
4013 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
4015 (variant::build): New overload for
4016 copy-construction-that-destroys.
4017 (variant::swap): New.
4018 (parser::yypush_): Use it in variant mode.
4020 2008-11-04 Akim Demaille <demaille@gostai.com>
4022 Better defaults for bench.pl.
4023 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4025 Adjust &verbose uses.
4028 2008-11-04 Akim Demaille <demaille@gostai.com>
4030 Make variant.yy more complex.
4031 std::list cannot be copied via memcpy, they are more demanding than
4032 std::string. Use one std::list to strengthen the test.
4034 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4036 Create a list of strings, instead of a single large string.
4038 2008-11-04 Akim Demaille <demaille@gostai.com>
4041 * etc/bench.pl.in (--bench, $bench): New.
4043 2008-11-04 Akim Demaille <demaille@gostai.com>
4046 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4047 Define it after as().
4049 2008-11-04 Akim Demaille <demaille@gostai.com>
4052 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4054 2008-11-04 Akim Demaille <demaille@gostai.com>
4056 Issue missing synclines after user actions.
4057 * data/c.m4 (b4_case): Issue synclines on the output file.
4059 2008-11-04 Akim Demaille <demaille@gostai.com>
4061 Remove trailing empty line.
4062 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4065 2008-11-04 Akim Demaille <demaille@gostai.com>
4067 Fix output of copyright years.
4068 * data/bison.m4 (b4_copyright): Fix the indentation of the
4069 copyright year paragraph.
4070 Use b4_copyright_years when no years are given.
4071 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4072 (b4_copyright_years): New.
4075 2008-11-04 Akim Demaille <demaille@gostai.com>
4077 Avoid the spurious initial empty line.
4078 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4079 the end of @output request to suppress the empty line that
4082 2008-11-04 Akim Demaille <demaille@gostai.com>
4084 Remove parser::rhs_number_type.
4085 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4086 (yyrhs_): Use b4_table_define.
4088 2008-11-04 Akim Demaille <demaille@gostai.com>
4091 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4093 2008-11-04 Akim Demaille <demaille@gostai.com>
4095 Factor the declaration of the integer tables.
4096 * data/lalr1-fusion.cc (b4_table_define): New.
4099 2008-11-03 Akim Demaille <demaille@gostai.com>
4101 Fix indentation of tables in lalr1.cc
4102 * data/lalr1-fusion.cc: Fix the indentation.
4104 2008-11-03 Akim Demaille <demaille@gostai.com>
4106 Destroy the lhs symbols after reduction.
4107 * data/lalr1-fusion.cc (parse): After the user action, when in
4108 variant mode, destroy the lhs symbols.
4110 2008-11-03 Akim Demaille <demaille@gostai.com>
4112 Simplify yysyntax_error_ use.
4113 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4114 type, but make it unnamed in the declaration when it is not used.
4116 2008-11-03 Akim Demaille <demaille@gostai.com>
4118 Let yy::variant::build return an lvalue.
4119 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4122 2008-11-03 Akim Demaille <demaille@gostai.com>
4124 Define yy::variant only when needed.
4125 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4128 2008-11-03 Akim Demaille <demaille@gostai.com>
4130 Bench the three-stack lalr1.cc.
4131 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4134 2008-11-03 Akim Demaille <demaille@gostai.com>
4136 Fail on parse error in calc++.
4137 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4139 * examples/calc++/test ($me, $number, $exit, run): New.
4140 Use them to propagate errors to the exit status.
4142 2008-11-03 Akim Demaille <demaille@gostai.com>
4144 Don't specify the skeleton twice in the example.
4145 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4146 file does what is needed.
4148 2008-11-03 Akim Demaille <demaille@gostai.com>
4150 bench: Improve output.
4151 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4153 2008-11-03 Akim Demaille <demaille@gostai.com>
4155 bench: check impact of %debug on variants.
4156 * etc/bench.pl.in (variant_grammar): Fix the computation of
4158 Generate a grammar file that can work with or without %debug.
4159 Do use the @directive.
4160 (bench_variant_parser): Check impact of %debug.
4161 (@directives): Rename all the occurrences to...
4162 (@directive): this, for consistency.
4164 2008-11-03 Akim Demaille <demaille@gostai.com>
4166 bench: report the size too.
4167 * etc/bench.pl.in ($iterations): Defaults to -3.
4168 (&bench_grammar): Require hireswallclock.
4169 Compute and display the size of the result.
4172 2008-11-03 Akim Demaille <demaille@gostai.com>
4174 bench: More use of the verbosity level.
4175 * etc/bench.pl.in ($verbose, &verbose): New.
4177 More POD documentation.
4179 2008-11-03 Akim Demaille <demaille@gostai.com>
4181 bench.pl: a command line interface
4182 * etc/bench.pl.in: More doc.
4183 Some fixes in the documentation.
4184 ($cflags, $iterations, &help, &getopt): New.
4186 (&variant_grammar): Let the number of stages be 10 times what is
4189 2008-11-03 Akim Demaille <demaille@gostai.com>
4191 Bench the use of Boost.Variants.
4192 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4194 (&compile): Be ready to compile C++ parsers.
4195 (&bench_push_parser): Move debug information to the outermost
4197 * THANKS: Add Michiel De Wilde.
4199 2008-11-03 Akim Demaille <demaille@gostai.com>
4201 bench.pl: Pass directives as a list instead of as a string.
4202 * etc/bench.pl.in (&directives): New.
4203 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4205 (&triangular_grammar): Do use the directives (were ignored).
4206 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4209 2008-11-03 Akim Demaille <demaille@gostai.com>
4211 Improve genericity of bench.pl.
4212 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4214 (&bench_push_parser): New.
4217 2008-11-03 Akim Demaille <demaille@gostai.com>
4219 Add documentation to bench.pl.
4220 * etc/bench.pl.in: Comment changes.
4222 2008-11-03 Akim Demaille <demaille@gostai.com>
4224 Fuse the three stacks into a single one.
4226 In order to make it easy to perform benchmarks to ensure that
4227 there are no performance loss, lalr1.cc is forked into
4228 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4231 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4232 exercized by the test suite, the user must install a symbolic link
4233 from lalr1.cc to it.
4235 Instead of having three stacks (state, value, location), use a
4236 stack of triples. This considerably simplifies the code (and it
4237 will be easier not to require locations as currently does the C++
4238 parser), and also gives a 10% speedup according to
4239 etc/bench (probably mainly since memory allocation is done once
4240 instead of three times).
4242 Another motivation is to make it easier to destruct properly
4243 semantic values: now that they are bound to their state (hence
4244 symbol type) it will be easier to call the appropriate destructor.
4246 These changes should probably benefit the C parser too.
4248 * data/lalr1.cc: Copy as...
4249 * data/lalr1-fusion.cc: this new file.
4250 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4252 (state_stack_type, semantic_stack_type, location_stack_type)
4253 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4254 (data_type, stack_type, yystack_): New.
4255 (YYLLOC_DEFAULT, yypush_): Adjust.
4256 (yyerror_range): Now based on data_type, not location_type.
4258 2008-11-03 Akim Demaille <demaille@gostai.com>
4260 Push the state, value, and location at the same time.
4261 This is needed to prepare a forthcoming patch that fuses the three
4264 * data/lalr1.cc (parser::yypush_): New.
4265 (parser::yynewstate): Change the semantics: instead of arriving to
4266 this label when value and location have been pushed, but yystate
4267 is to be pushed on the state stack, now the three of them must
4268 have been pushed before. yystate still must be the new state.
4269 This allows to use yypush_ everywhere instead of individual
4270 handling of the stacks.
4272 2008-11-03 Akim Demaille <demaille@gostai.com>
4274 Prefer references to pointers.
4275 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4276 definition to use references instead of pointers.
4277 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4278 Take the value and location as references.
4281 2008-11-03 Akim Demaille <demaille@gostai.com>
4283 stack::size instead of stack::height.
4284 * data/lalr1.cc (stack::height): Rename as...
4285 (stack::size): this.
4286 Fix the output type.
4289 2008-11-03 Akim Demaille <demaille@gostai.com>
4291 Use variants to support objects as semantic values.
4292 This patch was inspired by work by Michiel De Wilde. But he used
4293 Boost variants which (i) requires Boost on the user side, (ii) is
4294 slow, and (iii) has useless overhead (the parser knows the type of
4295 the semantic value there is no reason to duplicate this
4296 information as Boost.Variants do).
4298 This implementation reserves a buffer large enough to store the
4299 largest objects. yy::variant implements this buffer. It was
4300 implemented with Quentin Hocquet.
4302 * src/output.c (type_names_output): New.
4303 (output_skeleton): Invoke it.
4304 * data/c++.m4 (b4_variant_if): New.
4305 (b4_symbol_value): If needed, provide a definition for variants.
4306 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4307 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4308 (b4_char_sizeof, yy::variant): New.
4309 (parser::parse): If variants are requested, define
4310 parser::union_type, parser::variant, change the definition of
4311 semantic_type, construct $$ before running the user action instead
4312 of performing a default $$ = $1.
4313 * examples/variant.yy: New.
4314 Based on an example by Michiel De Wilde.
4316 2008-11-03 Akim Demaille <demaille@gostai.com>
4318 Parameterize the extraction of semantic values.
4319 To make future changes easier, no longer rely on ".TYPE" being the
4320 way to get a semantic value.
4322 * data/c.m4 (b4_symbol_value): New.
4324 * data/c++.m4, data/yacc.c: Use it.
4325 * data/glr.c: Use b4_symbol_value.
4329 2008-11-03 Akim Demaille <demaille@gostai.com>
4331 Prepare easier M4 changes.
4332 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4335 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4337 Initiate further development.
4338 * NEWS: Create an empty section for new entries.
4339 * gnulib: Update submodule to HEAD.
4341 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4343 * NEWS: Version 2.4.
4345 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4347 Prepare for next release.
4348 * NEWS: Briefly mention changes since 2.3b.
4349 * README: Say GNU m4 1.4.6, which we've been requiring in release
4350 announcements already, not 1.4.3, which breaks the build.
4352 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4354 Say %language is experimental.
4355 We're thinking of extending it's effect on output file naming. See the
4357 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4358 * NEWS: Say it's experimental.
4359 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4360 recommend it over %skeleton for now.
4361 (Bison Options): Likewise.
4362 (C++ Bison Interface): Use %skeleton not %language.
4363 (Calc++ Parser): Use %skeleton not %language.
4364 * src/getargs.c (usage): Say it's experimental.
4366 2008-11-01 Di-an Jan <dianj@freeshell.org>
4367 Paolo Bonzini <bonzini@gnu.org>
4369 Support all Java parser class modifiers.
4370 * data/java.m4 (b4_percent_define_get3): New.
4371 (b4_final_if, b4_strictfp_if): New.
4372 * data/lalr1.java (final, strictfp, extends, implements): Support.
4373 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4375 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4376 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4377 (AT_CHECK_JAVA_GREP): New.
4378 (Java parser class modifiers): New test.
4379 (Java parser class extends and implements): New test.
4381 Model exception propagation better with throws and lex_throws.
4382 * data/java.m4 (b4_list2): New.
4383 (throws): Change default.
4384 * data/lalr1.java (yyaction): Add throws.
4385 (parse): Add lex_throws in addition to throws.
4386 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4387 * tests/java.at (Java throws specifications): New test.
4389 Improve documentation for Java parsers.
4390 * doc/bison.texinfo (Java Parsers): Add subsections.
4391 Don't quote first argument of %define.
4392 (Java Bison Interface): Document output files. Move documentation
4393 of parser class and merge into Java Parser Interface. Document
4394 features that error out. Document directives with no effect.
4395 Move note about Javadoc higher.
4396 (Java Semantic Values): Explicitly mention stype.
4397 Document that generic types cannot be used.
4398 (Java Location Values): Use @deftypeivar. Document constructors.
4399 Correct return value for toString.
4400 (Java Parser Interface): List undocumented constants/fields.
4401 Move documentation of fields added by %parse-param closer to list
4402 of members. Document that token names are added as fields.
4403 Document constructors accurately. Remove error method.
4404 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4405 Interface. Describe %code lexer and yylex accutately.
4406 Remove documentation that does not match the code.
4407 (Java Action Features): New.
4408 (Java Differences): Add reference. Add item on semantic values.
4409 Add note about @{ ... @}. Clarify %% epilogue placement.
4410 (Java Declarations Summary): New.
4413 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4414 (b4_remove_comma): Quote test argument.
4415 (b4_identification): Remove "bison" field.
4416 * tests/java.at (Java parser class and package names): New test.
4417 (Java %parse-param and %lex-param): New test.
4418 (Java stype, position_class and location_class): New test.
4420 2008-10-31 Di-an Jan <dianj@freeshell.org>
4422 * data/lalr1.jave: Update copyright years.
4423 (YYParser): Correct name of "generated from" file in Javadoc:
4424 use b4_file_name instead of @ofile@.
4425 (Location constructor): Correct Javadoc parameter name.
4426 (yylloc): Add missing opening m4 quote after b4_location_if.
4427 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4428 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4429 (YYParser constructor): Correct Javadoc parameter name.
4431 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4433 Always put auxiliary code files in the same dir as other output files.
4434 * src/files.c (compute_file_name_parts): When the user specifies
4435 --output but not --file-prefix, extract the directory prefix from the
4436 file prefix not from the grammar file name. This affects the location
4437 of files like location.hh generated by the C++ skeleton. The includes
4438 in the other output files require this fix.
4439 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4440 for expected output files.
4441 (Output files): Add a test for the above.
4443 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4445 * gnulib: Update submodule to HEAD.
4447 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4449 Update copyright year.
4450 * src/files.c: Here.
4452 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4454 Don't overwrite the input file.
4455 * src/files.c (output_file_name_check): Fatal error if using input file
4457 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4459 (Conflicting output files): Add test.
4461 2008-10-28 Akim Demaille <demaille@gostai.com>
4464 * data/lalr1.cc: Formatting changes.
4466 2008-10-28 Akim Demaille <demaille@gostai.com>
4468 Don't define debugging functions when !YYDEBUG.
4469 * data/lalr1.cc (debug_stream, set_debug_stream)
4470 (debug_level_type, debug_level, set_debug_level): Don't
4471 declare them when YYDEBUG is not defined.
4472 The implementation are already YYDEBUG-aware.
4474 2008-10-28 Akim Demaille <demaille@gostai.com>
4476 Prefer "continue" for empty loop bodies.
4477 * etc/bench.pl.in: Use "continue" instead of {}.
4479 2008-10-28 Akim Demaille <demaille@gostai.com>
4481 Space and comments changes.
4482 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4483 * data/c.m4, data/lalr1.cc: Space changes.
4485 2008-10-28 Akim Demaille <demaille@gostai.com>
4487 Make gnulib a submodule.
4489 * .gitmodules (gnulib): New.
4491 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4493 Fix yyerror_range for user-defined location type in C++. Reported by
4495 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4496 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4497 * THANKS (Georg Sauthoff): Add.
4499 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4501 Update several administrative files mainly to facilitate releasing.
4502 * HACKING (Administrivia): Make the git-merge-changelog notes more
4504 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4505 (Release Procedure): Update for git and add numerous details that were
4507 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4508 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4509 that announcements don't claim we bootstrapped with whatever bison
4510 happened to be in PATH. Add flex as a bootstrap tool.
4511 * Makefile.maint: Remove, previously replaced by maint.mk.
4512 * Makefile.cfg: Remove, and migrate settings to...
4513 * cfg.mk: ... here for the sake of `make announcement'.
4514 * bootstrap.conf (gnulib_modules): Add announce-gen.
4515 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4518 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4520 Small but important bugfixes for the Java skeleton.
4521 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4522 (yy_symbol_print): Call toString on yyvaluep.
4524 2008-08-29 Akim Demaille <demaille@gostai.com>
4526 Clarify UPDATED use.
4527 * doc/bison.texinfo: It refers to the last edition of this file,
4528 not to the release date of Bison.
4529 Reported by Joel E. Denny.
4531 2008-08-29 Akim Demaille <demaille@gostai.com>
4533 * README: Update FAQ pointer.
4534 Reported by Joel E. Denny.
4536 2008-08-27 Eric Blake <ebb9@byu.net>
4538 Resync m4sugar from autoconf.
4539 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4540 (m4_init): Adjust to latest m4.git changes.
4541 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4543 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4544 (_m4_list_cmp): Reduce side effects.
4546 2008-08-27 Akim Demaille <demaille@gostai.com>
4548 Check yyerrok in calc.at.
4549 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4550 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4553 2008-08-27 Akim Demaille <demaille@gostai.com>
4555 Support yyerrok in lalr1.cc.
4556 YYBACKUP is still to import back into lalr1.cc.
4557 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
4559 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4561 For maintainer-check*, don't recompile for a $(VERSION) update.
4563 (_is-dist-target): Override the one in GNUmakefile.
4564 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4566 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4568 Update for recent change to gnulib.
4569 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4572 2008-08-15 Eric Blake <ebb9@byu.net>
4574 Remaining m4sugar merge from autoconf.
4575 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4576 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4577 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4578 * src/output.c (output_skeleton): Tell m4 how to find it.
4580 Partial m4sugar merge from autoconf: m4_map.
4581 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4582 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4583 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4584 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4586 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4588 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4591 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4593 Keep .version and PACKAGE_VERSION in sync.
4594 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4595 dependency, and add comments justifying this in more detail. Discussed
4597 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4599 2008-08-06 Eric Blake <ebb9@byu.net>
4601 Partial m4sugar merge from autoconf: m4_shiftn.
4602 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4603 (m4_shift2, m4_shift3): New macros.
4604 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4605 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4606 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4607 * data/java.m4 (b4_remove_comma): Likewise.
4609 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4610 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4611 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4612 (m4_init): Consolidate wrapped text into single m4_wrap.
4613 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4616 2008-08-05 Eric Blake <ebb9@byu.net>
4618 Partial m4sugar merge from autoconf: builtins, version.m4.
4619 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4620 (m4_prepend): Remove, as it is unused and inherently quadratic,
4621 whereas m4_append is linear in newer m4.
4622 (m4_mkstemp): New builtin.
4623 (m4_symbols): Make rename conditional.
4624 (m4_version_prereq): Ensure fatal error if used in bison, which
4625 intentionally lacks version.m4.
4627 Fix comments in m4sugar.
4628 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4630 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4632 Update for recent .gitignore fix in Gnulib.
4633 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4634 anchored .gitignore entries.
4636 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4638 Set gnu or gnits strictness.
4639 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4640 development and gnits strictness for releases. Based on Eric Blake's
4642 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4644 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4646 * NEWS: Clarify documentation of %language.
4648 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4650 Support usage of git-merge-changelog.
4651 * .gitattributes: New.
4652 * HACKING: Document usage of git-merge-changelog.
4653 * bootstrap: Install git-merge-changelog entries in .git/config
4656 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4658 Remove remaining dependence on CVS Id keyword.
4659 * ChangeLog: For the sake of people still using CVS, don't use dollars
4661 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4663 * data/xslt/xml2dot.xsl: Likewise.
4664 * data/xslt/xml2text.xsl: Likewise.
4665 * data/xslt/xml2xhtml.xsl: Likewise.
4666 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4667 * doc/Makefile.am (neutralize): Remove, no longer needed.
4668 (.x.1): Don't use neutralize.
4669 (edit): Don't substitute for ID.
4670 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4672 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4674 Fix dependence on computed configure variables.
4675 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4676 $(top_srcdir)/configure.ac so that changes to computed variables, such
4677 as PACKAGE_VERSION, are seen.
4678 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4680 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4682 Update copyright dates for recent changes.
4683 * Makefile.am: Here.
4684 * src/Makefile.am: Here.
4685 * src/reduce.c: Here.
4686 * tests/reduce.at: Here.
4688 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4690 Use git-version-gen for version names between releases.
4691 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4692 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4693 * .prev-version: New.
4694 * .version.in: Remove.
4695 * ChangeLog: Remove the Id previously used for capturing the CVS
4697 * GNUmakefile: Remove, now copied from Gnulib.
4698 * Makefile.am: Add code suggested by comments in
4699 build-aux/git-version-gen.
4700 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4701 .prev-version, and .version.
4702 * NEWS (2.3b+): Rename to...
4703 (?.?): ... this because we're dropping the "+" version naming scheme,
4704 but, in general, we still can't be sure of our next release name.
4705 * bootstrap: Add a quick hack to remove from .gitignore the
4706 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4707 entry. This should really be fixed in gnulib instead.
4708 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4709 * configure.ac (AC_INIT): Set version name by invoking
4710 build-aux/git-version-gen.
4711 (AC_CONFIG_FILES): Remove .version, now generated by
4712 build-aux/git-version-gen.
4713 * maint.mk: New, copied from coreutils.
4714 * doc/.cvsignore (bison.1): Add.
4715 * doc/.gitignore (/bison.1): Add.
4716 * doc/bison.1: Remove, generated.
4717 * src/.cvsignore (revision.c): Remove.
4718 * src/.gitignore (/revision.c): Remove.
4719 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4720 (BUILT_SOURCES): Remove revision.c.
4721 (revision.c): Remove.
4722 * src/getargs.c (version): Don't print revision after the VERSION.
4723 * src/revision.h: Remove.
4725 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4727 Fix untranslatable composition of sentences. Reported by Goran
4729 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4730 * THANKS (Goran Uddeborg): Add.
4731 * src/reduce.c (reduce_print): Report the number of nonterminals and
4732 rules useless in the grammar in separate sentences.
4733 * tests/reduce.at (Useless Rules): Update output.
4734 (Reduced Automaton): Likewise.
4735 (Underivable Rules): Likewise.
4736 (Empty Language): Likewise.
4738 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4740 Fix some .gitignore and .cvsignore problems.
4741 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4742 (insert_vc_ignore): ... this new function, which prepends `/' to all
4743 .gitignore entries before passing them to insert_sorted_if_absent.
4744 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4745 .cvsignore files are maintained even though Bison developers run
4746 bootstrap while using Git.
4747 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4750 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4751 unneeded. Reported by Eric Blake.
4752 * lib/.gitignore (/*~): Add.
4753 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4754 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4756 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4758 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4760 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4761 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4762 * bootstrap.conf (gnulib_modules): Add unsetenv.
4763 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4764 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4766 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4767 the first argument because it may become position-dependent, and unset
4768 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4769 Add comments explaining these issues in more detail.
4771 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4773 Add .gitignore everywhere based on .cvsignore.
4775 * build-aux/.gitignore: New.
4776 * data/.gitignore: New.
4777 * doc/.gitignore: New.
4778 * etc/.gitignore: New.
4779 * examples/.gitignore: New.
4780 * examples/calc++/.gitignore: New.
4781 * lib/.gitignore: New.
4782 * m4/.gitignore: New.
4783 * po/.gitignore: New.
4784 * runtime-po/.gitignore: New.
4785 * src/.gitignore: New.
4786 * tests/.gitignore: New.
4788 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4790 * NEWS (2.3b+): New section, empty for now.
4791 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4793 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4795 * NEWS (2.3b): Update release date since there has been a delay in
4796 getting the announcements and tarballs out.
4798 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4800 * NEWS: Version 2.3b.
4801 * configure.ac (AC_INIT): Likewise.
4802 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4804 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4806 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4807 been doing it for years.
4808 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4809 (Release Procedure): Add FIXME about make alpha being unmaintained.
4811 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4813 * data/yacc.c: Reformat m4 a little for readability.
4814 * src/lalr.c (build_relations): Correct comment.
4816 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4818 DJGPP specific issue.
4819 * djgpp/config.sed: Fixes required to run configure scripts generated
4822 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4824 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4825 coordinator@translationproject.org.
4827 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4829 * THANKS: Add Eric Blake.
4831 2008-04-23 Eric Blake <ebb9@byu.net>
4833 Revert prior patch, by working around autoconf regression.
4834 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4835 ("Output file name: ("): Uncomment test.
4836 ("Output file name: )"): Likewise.
4837 Based on an idea from Noah Misch.
4839 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4841 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4842 2.61. Reported by Juan Manuel Guerrero at
4843 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4844 * tests/output.at ("Output file name: ("): Comment out test case for
4846 ("Output file name: )"): Likewise.
4848 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4850 * GNUmakefile: Update git-version-gen invocation so make dist
4853 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4855 Update to the current gnulib CVS repository, and fix trigraph handling
4857 * bootstrap: Update gnulib CVS repository URL.
4858 (symlink_to_dir): Encapsulate the code that guarantees the destination
4859 directory exists into...
4860 (check_dst_dir): ... this new function, and...
4861 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4862 fail when copying files into lib/uniwidth/.
4863 * src/output.c (prepare_symbols): When writing yytname muscles, where
4864 symbol names will be encoded in C-string literals, tell quotearg to
4865 escape trigraphs. This used to be the default in gnulib.
4866 * tests/regression.at (Token definitions): Because of the change in
4867 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4868 escapes trigraphs in symbol names. Thus, yytname no longer has
4869 trigraphs unnecessarily doubly escaped. Update test case output.
4870 Extend test case to be sure Bison's own error messages will no longer
4871 have trigraphs in symbol names unnecessarily escaped once.
4873 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4875 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4876 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4877 * .cvsignore: Add .version.
4879 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4880 * configure.ac (AC_CONFIG_FILES): Add .version.
4881 * build-aux/.cvsignore: Add git-version-gen.
4883 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4885 * NEWS (2.3a+): Mention that -g now takes an argument.
4886 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4887 consistency. Update the -g and -x entries now that they take
4888 arguments. Use brackets to indicate optional arguments.
4889 * src/getargs.c (usage): Explain the relationship between arguments of
4890 long and short options more completely. Document --defines and -d
4891 separately since the former takes an argument but, for POSIX Yacc, the
4893 (short_options): Let -W take an optional argument like --warnings.
4894 (getargs): Sort cases.
4896 2008-02-28 Akim Demaille <demaille@gostai.com>
4898 * doc/bison.texinfo: Fix a few typos.
4900 2008-02-28 Akim Demaille <akim@epita.fr>
4902 * doc/bison.texinfo (Bison Options): Document -W.
4903 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4905 2008-02-28 Akim Demaille <akim@epita.fr>
4907 * src/getargs.c (short_options): Split and sort for readability.
4908 -g and -x take optional arguments, just like their long options.
4909 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4911 Fix the handling of $opt which resulted in all the argument to be
4912 considered as optional.
4914 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4916 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4917 say its interface is experimental.
4918 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4920 (Bison Options): In the -L and --language entry, mention Java.
4921 (Java Bison Interface): Say the interface is experimental.
4922 * src/getargs.c (usage): Mention -L and --language.
4924 * NEWS (2.3a+): Say the push parsing interface is experimental.
4925 * doc/bison.texinfo (Push Decl): Likewise.
4926 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4927 (Push Parser Function): Likewise.
4928 (Pull Parser Function): Likewise.
4929 (Parser Create Function): Likewise.
4930 (Parser Delete Function): Likewise.
4931 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4932 yypull_parse, and yypush_parse entries.
4934 * NEWS (2.3a+): Mention XML support, and say the schema is
4936 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4937 * src/getargs.c (usage): Say the XML schema is experimental.
4939 * NEWS (2.3a+): Say option instead of flag.
4941 2008-02-21 Wojciech Polak <polak@gnu.org>
4943 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4946 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4948 Fix impure push parser compile error reported by Bob Rossi at
4949 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4950 * data/yacc.c: Clean up whitespace in the output a little.
4951 (yypstate_allocated): Define for impure push parsers regardless of
4952 whether the pull interface is also requested.
4953 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4954 check impure push parsers without the pull interface.
4956 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4957 yyerror takes arguments specified by %parse-param while yypstate_new
4959 * doc/bison.texinfo (Parser Create Function): Document that
4960 yypstate_new returns 0 for multiple impure parser instances.
4961 * tests/push.at (Push Parsing: Multiple impure instances): Update
4962 expected stderr output.
4964 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4966 * runtime-po/POTFILES.in (push.c): Remove.
4968 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4970 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4971 * data/push.c: Rename to...
4972 * data/yacc.c: ... this, overwriting it.
4973 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4974 `%push-pull-parser' -> `%define api.push_pull "both"'.
4975 Remove old yacc.c tests, and update push.c tests to yacc.c.
4977 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4979 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4980 `"%code top" blocks' instead of `%code "top" blocks'.
4981 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4982 Clean up whitespace in the output a little.
4984 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4986 Fix documentation problems reported by Tim Josling at
4987 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4988 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4989 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4990 integers. Explain the effect of literal string aliases on error
4991 messages. Copy token 0 documentation from the C++ skeleton
4994 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4996 Accept a token number in a %left, %right, or %nonassoc for POSIX
4997 conformance. Reported by Tim Josling at
4998 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4999 * NEWS (2.3a+): Mention.
5000 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
5001 and code numbers are treated by precedence declarations.
5002 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
5004 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
5006 (symbol.prec): New, just like symbol but allows INT.
5007 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
5009 * tests/regression.at (Token number in precedence declaration): New
5012 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5014 DJGPP specific issues.
5015 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
5016 be changed. Copyright timestamp adjusted.
5017 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
5018 be changed. Copyright timestamp adjusted.
5019 * djgpp/config.site: Copyright timestamp adjusted.
5020 * djgpp/config_h.sed: Copyright timestamp adjusted.
5021 * djgpp/djunpack.bat: Copyright timestamp adjusted.
5022 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
5023 filename translation list.
5024 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5025 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5026 files shall be created. Before trying to use the temp dir where the
5027 environment variable points to check that the dir really exists. If
5028 not default to the cwd as temp dir. Copyright timestamp adjusted.
5029 * djgpp/subpipe.h: Copyright timestamp adjusted.
5030 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5032 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5034 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5036 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5038 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5039 Problem reported by Claudio Saavedra in
5040 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5042 2008-01-05 Wojciech Polak <polak@gnu.org>
5044 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5045 document's title with the input grammar file name.
5047 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5049 Automate regression testing of the XML/XSLT implementation. Discussed
5051 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5052 * configure.ac (XSLTPROC): New substitution.
5053 * Makefile.am (maintainer-xml-check): New phony target invoking...
5054 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5055 invoking make maintainer-check with BISON_TEST_XML=1.
5056 * tests/atlocal.in (XSLTPROC): New.
5057 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5058 not to report reachable memory when Bison is expected to have a
5059 non-zero exit status and (2) to compare XML/XSLT output with --graph
5060 and --report=all output for every working grammar when
5062 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5063 (AT_BISON_CHECK_XML): New.
5064 (AT_QUELL_VALGRIND): New.
5065 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5066 (AT_CHECK): ... don't redefine this since this was the old way to
5068 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5069 AT_BISON_CHECK invocations.
5070 * tests/c++.at: Likewise.
5071 * tests/calc.at: Likewise.
5072 * tests/conflicts.at: Likewise.
5073 * tests/cxx-type.at: Likewise.
5074 * tests/existing.at: Likewise.
5075 * tests/glr-regression.at: Likewise.
5076 * tests/headers.at: Likewise.
5077 * tests/input.at: Likewise.
5078 * tests/java.at: Likewise.
5079 * tests/output.at: Likewise.
5080 * tests/push.at: Likewise.
5081 * tests/reduce.at: Likewise.
5082 * tests/regression.at: Likewise.
5083 * tests/sets.at: Likewise.
5084 * tests/skeletons.at: Likewise.
5085 * tests/synclines.at: Likewise.
5086 * tests/torture.at: Likewise.
5087 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5088 tends to hang xsltproc.
5089 (Big horizontal): Likewise.
5091 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5093 In XML output, remove redundant class attribute on symbol element.
5094 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
5095 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
5096 look up a symbol to determine whether it's a nonterminal or terminal.
5097 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
5098 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
5100 Add prec/assoc information to XML output.
5101 * src/gram.c (grammar_rules_print_xml): For each rule that has a
5102 %prec, add a percent_prec attribute.
5103 * src/print-xml.c (print_grammar): For each terminal that has a
5104 precedence or associativity, add a prec or assoc attribute.
5106 (xml_puts): Use xml_indent.
5107 (xml_printf): Use xml_indent.
5108 * src/print-xml.h (xml_indent): Prototype.
5110 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5111 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5113 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5115 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5116 (bison:ruleByNumber): ... this for clarity.
5117 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5118 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5119 (xsl:template match="reduction"): Update.
5120 (xsl:template match="item"): Update.
5121 (xsl:template match="reduction"): Update.
5123 In the XML output, don't print the list of rules where symbols appear.
5124 Compute it in XSLT instead. Discussed at
5125 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5126 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5127 (bison:ruleByRhs): New.
5128 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5130 (xsl:template match="terminal/rule"): Remove.
5131 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5133 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5135 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5136 bison:ruleByRhs and mode="number-link" for rule template.
5137 (xsl:template match="terminal/rule"): Remove.
5138 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5139 bison:ruleByRhs and mode="number-link" for rule template.
5140 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5142 (xsl:template match="rule" mode="number-link"): ... this.
5143 * src/print-xml.c (print_grammar): Don't print the list of rules.
5145 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5147 Don't let --report affect XML output; always print all information.
5149 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5150 * src/conflicts.c (log_resolution): Implement.
5151 * src/print-xml.c (print_core): Implement.
5152 (print_state): Implement.
5153 (print_xml): Implement.
5155 * NEWS (2.3a+): Fix quotes.
5156 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5157 don't let %verbose clear the list specified by --report.
5159 2007-11-26 Akim Demaille <akim@epita.fr>
5161 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5163 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5165 In the XML output, list useless and unused symbols and rules with the
5166 useful ones and add a "usefulness" attribute. Discussed starting at
5167 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5168 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5169 (grammar_rules_print_xml): Print all rules instead of just those
5170 useful in the grammar, and add a "usefulness" attribute.
5171 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5172 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5173 (print_grammar): Print all nonterminals instead of just useful ones,
5174 and add a "usefulness" attribute to nonterminals and terminals.
5175 (print_xml): Don't print a separate "reductions" or
5176 "rules-useless-in-parser" element.
5177 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5178 (reduce_xml): Remove.
5179 (reduce_token_unused_in_grammar): New.
5180 (reduce_nonterminal_useless_in_grammar): New.
5181 * src/reduce.h (reduce_xml): Remove prototype.
5182 (reduce_token_unused_in_grammar): Add prototype.
5183 (reduce_nonterminal_useless_in_grammar): Add prototype.
5184 * data/xslt/xml2text.xsl: Update for XML changes.
5185 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5186 * tests/reduce.at (Useless Terminals): Update output.
5187 (Useless Rules): Update output.
5188 (Reduced Automaton): Update output.
5190 Say "Terminals unused in grammar" instead of "Unused terminals".
5191 * NEWS (2.3a+): Update.
5192 * doc/bison.texinfo (Understanding): Update example output.
5193 * src/reduce.c (reduce_output): Implement.
5194 * data/xslt/xml2text.xsl: Implement.
5195 * data/xslt/xml2xhtml.xsl: Implement.
5197 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5199 Accept --report-file=FILE to override the default `.output' filename.
5200 * NEWS (2.3a+): Mention.
5201 * doc/bison.texinfo (Bison Options): Add an entry.
5202 * src/files.c (compute_output_file_names): Don't override
5203 spec_verbose_file if already set.
5204 * src/getargs.c (usage): Document --report-file.
5205 (REPORT_FILE_OPTION): New anonymous enum member.
5206 (long_options): Add entry for it.
5207 (getargs): Add case for it setting spec_verbose_file.
5209 * build-aux/cross-options.pl: Don't record a short option just because
5211 * doc/.cvsignore: Add yacc.1.
5213 2007-11-14 Akim Demaille <akim@epita.fr>
5215 * doc/yacc.1.in: New.
5216 * configure.ac, doc/Makefile.am: Adjust.
5217 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5219 Use AC_SUBST for assignments too.
5220 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5222 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5224 * src/gram.c: Remove comments that duplicate comments in gram.h.
5226 When reporting useless rules and nonterminals, say "useless in grammar"
5227 instead of "useless", and say "useless in parser" instead of "never
5228 reduced". Discussed starting at
5229 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5230 * NEWS (2.3a+): Mention this change.
5231 * data/xslt/xml2text.xsl: Update output text and expected input XML
5232 element names to match changes below.
5233 * data/xslt/xml2xhtml.xsl: Likewise.
5234 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5235 Contents: "Rules useless in parser due to conflicts".
5236 * doc/bison.texinfo (Decl Summary): Reword a little.
5237 (Understanding): Update example output for changes below.
5238 * src/gram.c: (rule_useful_p): Rename to...
5239 (rule_useful_in_grammar_p): ... this.
5240 (rule_useless_p): Rename to...
5241 (rule_useless_in_grammar_p): ... this.
5242 (rule_never_reduced_p): Rename to...
5243 (rule_useless_in_parser_p): ... this.
5244 (grammar_rules_print): Update for renames.
5245 (grammar_rules_print_xml): Update for renames.
5246 (grammar_rules_never_reduced_report): Rename to...
5247 (grammar_rules_useless_report): ... this since it is used for either
5248 kind of useless rule.
5249 * src/gram.h: Reword comments and update function names in prototypes.
5250 * src/main.c (main): Say "rule useless in parser due to conflicts".
5251 * src/print-xml.c (print_rules_never_reduced): Rename to...
5252 (print_rules_useless_in_parser): ... this, and rename output XML
5253 element "rules-never-reduced" to "rules-useless-in-parser".
5254 (print_xml): Update for rename.
5255 * src/print.c (print_results): Say "Rules useless in parser due to
5257 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5258 (nonterminals_reduce): Say "nonterminal useless in grammar".
5259 (reduce_output): Say "Nonterminals useless in grammar".
5260 Say "Rules useless in grammar".
5261 (reduce_xml): Rename output XML element "useless" to
5262 "useless-in-grammar".
5263 (reduce_print): Don't report the count of grammatically useless rules
5264 as "rules never reduced" just because %yacc is specified.
5265 In the correct report of this count, say nonterminal(s) and rule(s)
5266 "useless in grammar".
5267 * tests/conflicts.at (S/R in initial): Update expected output.
5268 (Defaulted Conflicted Reduction): Likewise.
5269 (Unreachable States After Conflict Resolution): Likewise.
5270 * tests/existing.at (GNU pic Grammar): Likewise.
5271 * tests/reduce.at (Useless Nonterminals): Likewise.
5272 (Useless Rules): Likewise.
5273 (Reduced Automaton): Likewise.
5274 (Underivable Rules): Likewise.
5275 (Empty Language): Likewise.
5277 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5279 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5280 here document and before the EOF so that BSD's implementation of Bourne
5281 shell doesn't parse the delimiter as part of the here document.
5282 * doc/.cvsignore: Add cross-options.texi.
5283 * src/getargs.c (usage): Add a blank line after the warning categories.
5285 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
5287 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5289 2007-11-05 Akim Demaille <akim@epita.fr>
5291 Remove Id: from bison.1.
5292 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5293 (perl -0777 -pi -e 's/\.PP\nId): New.
5294 (.x.1): Use it to ignore the version control revision.
5296 2007-11-05 Akim Demaille <demaille@gostai.com>
5298 * build-aux/Makefile.am: Ship cross-options.pl.
5299 * doc/Makefile.am: Always refer to cross-options.texi with
5301 (MAINTAINERCLEANFILES): Add it.
5303 2007-11-04 Akim Demaille <demaille@gostai.com>
5305 Generate the long/short option cross-table.
5306 * build-aux/cross-options.pl: New.
5307 * doc/Makefile.am (cross-options.texi): New.
5308 * doc/bison.texinfo: Use it.
5310 2007-11-04 Akim Demaille <demaille@gostai.com>
5312 Generate bison.1 using help2man.
5313 * doc/common.x, doc/bison.x: New.
5314 * doc/Makefile.am (bison.1, .x.1): New.
5315 The code is taken from autoconf-2.61/man/Makefile.am.
5316 * configure.ac: Look for help2man.
5318 2007-11-04 Akim Demaille <demaille@gostai.com>
5321 * src/getargs.c (usage): Document -W, make it clear that -d,
5322 -g and -x have optional arguments.
5324 2007-11-04 Akim Demaille <demaille@gostai.com>
5326 Find sha1sum when named gsha1sum.
5327 * bootstrap (find_tool): New.
5330 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5332 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5334 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5335 * NEWS (2.3a+): Mention.
5336 * data/bison.m4 (b4_pure_if): Don't define it here.
5337 * data/c.m4 (b4_identification): Depend on individual skeletons to
5338 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5339 values of the %define variables api.pure or api.push_pull. Define
5340 YYPURE, YYPUSH, and YYPULL accordingly.
5341 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5342 glr.cc has already defined b4_pure_flag.
5343 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5344 Remove YYPUSH and YYPULL since they're back in b4_identification again.
5345 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
5346 * doc/bison.texinfo (Pure Decl): Update.
5347 (Push Decl): Update.
5348 (Decl Summary): Add api.pure to %define entry.
5349 In %pure-parser entry, say it's deprecated and reference %define.
5350 (Pure Calling): Update.
5351 (Error Reporting): Update.
5352 (C++ Scanner Interface): Update.
5353 (How Can I Reset the Parser): Update.
5354 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5356 * src/getargs.c (pure_parser): Remove global variable.
5357 * src/getargs.h (pure_parser): Remove extern.
5358 * src/output.c (prepare): Don't define pure_flag muscle.
5359 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5360 wrapper around `%define api.pure'.
5361 * tests/calc.at (Simple LALR Calculator): Update.
5362 (Simple GLR Calculator): Update.
5363 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5365 (GLR: Resolve ambiguity, pure, locations): Update.
5366 (GLR: Merge conflicting parses, pure, no locations): Update.
5367 (GLR: Merge conflicting parses, pure, locations): Update.
5368 * tests/glr-regression.at (Uninitialized location when reporting
5370 * tests/input.at (Unused %define api.pure): New test case.
5371 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5372 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5373 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5375 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5377 %define push_pull -> %define api.push_pull. Discussed starting at
5378 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5379 * data/push.c: Expect the new name.
5380 * data/yacc.c: Likewise.
5381 * doc/bison.texinfo (Push Decl): Update.
5382 (Decl Summary): Update %define entry.
5383 (Push Parser Function): Update.
5384 (Pull Parser Function): Update.
5385 (Parser Create Function): Update.
5386 (Parser Delete Function): Update.
5387 * tests/calc.at (Simple LALR Calculator): Update.
5388 * tests/input.at (%define enum variables): Update.
5389 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5390 (Push Parsing: Multiple impure instances): Update.
5391 (Push Parsing: Unsupported Skeletons): Update.
5392 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5393 (Exploding the Stack Size with Malloc): Update.
5395 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5398 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5400 For the XML output's terminal element, rename @number to @token-number,
5401 and add @symbol-number. In the nonterminal element, rename @number to
5402 @symbol-number. Discussed starting at
5403 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5404 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5406 (xsl:template match="nonterminal"): Likewise.
5407 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5408 (xsl:template match="nonterminal"): Likewise.
5409 * src/print-xml.c (print_grammar): Implement.
5411 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5413 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5414 2007-10-11 change, the child elements here are items not rules.
5415 (xsl:template match="item"): New.
5416 (xsl:template match="rule"): Update for new reduced itemset.
5417 (xsl:template match="point"): Remove.
5418 (xsl:template match="empty"): For consistency with --graph, don't
5419 output "/* empty */".
5420 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5421 line-wrap, don't pass a negative value as first-line-length since this
5422 won't work with the following changes.
5423 (xsl:template name="line-wrap"): Simplify slightly.
5424 (xsl:template name="ws-search"): Eliminate recursion.
5425 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5426 set next to an item whose dot is not at the end of the RHS even if it
5427 happens to be associated with the same rule.
5429 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5431 Add %define lr.keep_unreachable_states.
5432 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5433 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5434 * src/main.c (main): Implement it.
5435 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5436 Extend to test it, and fix a typo.
5438 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5440 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
5441 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5442 the example .output text.
5443 * tests/regression.at (Extra lookahead sets in report): Improve wording
5446 2007-10-17 Wojciech Polak <polak@gnu.org>
5448 * src/print-xml.c (print_grammar): Renamed
5449 <terminal> and <nonterminal> attributes:
5450 "type" to "number" and "symbol" to "name".
5451 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5452 Use new attribute names.
5453 (xsl:template match="nonterminal"): Likewise.
5454 * data/xslt/xml2xhtml.xsl: Likewise.
5456 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5458 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5459 (Option Cross Key): Likewise.
5461 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5462 next to an item whose dot is not at the end of the RHS even if it
5463 happens to be associated with the same rule.
5464 * src/print.c (print_core): Likewise.
5465 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5466 (Resolved SR Conflicts): Update output.
5467 * tests/regression.at (Extra lookahead sets in report): New test case.
5469 2007-10-11 Wojciech Polak <polak@gnu.org>
5471 * src/print-xml.c (print_core): Remove item set
5473 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5474 Improve processing time. Suggested by Joel E. Denny.
5475 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5476 Write xsl:param "required" attribute as comment.
5477 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5478 (xsl:template match="rule"): Support new reduced itemset.
5479 (xsl:template match="point"): Remove.
5480 * data/xslt/xml2xhtml.xsl: Likewise.
5482 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5484 * src/getargs.c (version): Update copyright year.
5486 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5488 Make xml2dot.xsl and --graph produce the same output.
5489 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a ` '
5490 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5492 (xsl:template name="output-node"): Use the new escape template instead
5493 of the string-replace template directly.
5494 (xsl:template name="output-edge"): Likewise.
5495 (xsl:template name="escape"): New, escapes backslashes and newlines in
5496 addition to quotation marks.
5497 * src/graphviz.c (start_graph, output_node, output_edge): Add
5498 whitespace to output for legibility.
5500 Make xml2text.xsl and --report produce the same output, and remove the
5501 XML "conflicts" element since a conflict summary is easily extracted
5503 * data/xslt/bison.xsl: New.
5504 (xsl:template match="state" mode="bison:count-conflicts): New.
5505 * data/xslt/xml2text.xsl: Import bison.xsl.
5506 (xsl:template match="bison-xml-report"): Instead of styling the
5507 "conflicts" element, style the "automaton" element with mode
5508 "conflicts". Unlike the former, the latter lists S/R and R/R
5509 conflicts for a state on the same line.
5510 (xsl:template match="conflicts"): Remove.
5511 (xsl:template match="conflict"): Remove.
5512 (xsl:template match="terminal"): Line-wrap the list of rules in which
5513 the terminal is used.
5514 (xsl:template match="nonterminal"): Likewise for nonterminals.
5515 (xsl:template match="automaton" mode="conflicts"): New.
5516 (xsl:template match="state" mode="conflicts"): New.
5517 (xsl:template name="line-wrap"): New.
5518 (xsl:template name="ws-search"): New.
5519 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5520 (xsl:template match="bison-xml-report"): Instead of styling the
5521 "conflicts" element, style the "automaton" element with mode
5523 (xsl:template match="conflicts"): Remove.
5524 (xsl:template match="conflict"): Remove.
5525 (xsl:template match="automaton" mode="conflicts"): New.
5526 (xsl:template match="state" mode="conflicts): New.
5527 * src/conflicts.c (conflicts_output_xml): Remove.
5528 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5529 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5530 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5531 the corresponding XSLT is easier. Also, never wrap between a word and
5532 the comma that follows it.
5534 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5536 Improve C++ namespace support. Discussed starting at
5537 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5538 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5539 b4_namespace_close): New macros that interpret the %define variable
5540 "namespace" so its value can contain "::" to indicate nested
5542 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5544 * data/lalr1.cc (b4_namespace): Likewise.
5545 * data/location.cc (b4_namespace): Likewise.
5546 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5547 inside a new table in the general %define entry. Document `%define
5548 namespace' there as well. Point the %name-prefix entry to it since it
5549 explains it more completely in the case of C++.
5550 (C++ Bison Interface): Mention `%define namespace' instead of
5552 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5554 * tests/c++.at (Relative namespace references): New test case.
5555 (Absolute namespace references): New test case.
5556 (Syntactically invalid namespace references): New test case.
5557 * tests/input.at (C++ namespace reference errors): New test case.
5559 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5561 Add syncline support and location accessor to internal %define
5563 * data/bison.m4 (b4_percent_define_get_loc): New.
5564 (b4_percent_define_get_syncline): New.
5565 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5566 (b4_percent_define_default): Record defining location as line 1 rather
5567 than 0 for the sake of synchronizing #line's, and define
5568 b4_percent_define_syncline(VARIABLE).
5569 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5570 * src/muscle_tab.c (muscle_syncline_grow): New.
5571 (muscle_code_grow): Use muscle_syncline_grow.
5572 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5573 define b4_percent_define_syncline(VARIABLE).
5574 (muscle_percent_define_get_loc): New.
5575 (muscle_percent_define_get_syncline): New.
5576 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5577 remove some unused variables.
5578 (muscle_percent_define_default): Record defining location as line 1
5579 rather than 0 for the sake of synchronizing #line's, and define
5580 b4_percent_define_syncline(VARIABLE).
5581 (muscle_percent_define_check_values): Use
5582 muscle_percent_define_get_loc.
5583 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5584 (muscle_percent_define_get_syncline): Prototype.
5585 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5586 defaults): Update output for location change.
5587 (Complaining during macro argument expansion): Extend to test
5588 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5590 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5592 Fix some error-reporting macro bugs.
5593 * data/bison.m4 (b4_cat): New.
5594 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5595 to stdout so they don't become arguments to other macros. Update
5596 comments and add examples.
5597 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5599 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5600 after printing the error directive so that M4 doesn't report subsequent
5601 problems that are induced by this problem.
5602 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5603 instead of just in them. Recognize @\n in both places. Both expand to
5604 the empty string. Needed by b4_cat.
5605 * tests/skeletons.at (Complaining during macro argument expansion):
5607 (Fatal errors make M4 exit immediately): New test case.
5609 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5611 Implement --print-datadir.
5612 * src/getargs.c (usage): Mention.
5613 (PRINT_DATADIR_OPTION): New anonymous enum member.
5614 (long_options): Add entry for it.
5615 (getargs): Add case for it calling compute_pkgdatadir.
5616 * src/output.c (output_skeleton): Encapsulate data directory
5617 computation from here...
5618 (prepare): ... and from here...
5619 (compute_pkgdatadir): ... into this new function.
5620 * src/output.h (compute_pkgdatadir): Prototype.
5622 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5624 * src/print-xml.c (escape_bufs): New static global variable
5626 (xml_escape_n): ... the static local variable buf here.
5627 (print_xml): Free memory for escape_bufs.
5628 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5630 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5632 Replace `%push-parser' and `%push-pull-parser' with
5633 `%define push_pull "push"' and `%define push_pull "both"'.
5634 `%define push_pull "pull"' is the default.
5635 * doc/bison.texinfo (Push Decl, Push Parser Function,
5636 Pull Parser Function, Parser Create Function, Parser Delete Function):
5637 Update declarations.
5638 (Decl Summary, Table of Symbols): Replace %push-parser and
5639 %push-pull-parser entries with a %define push_pull entry.
5640 * data/bison.m4 (b4_percent_define_check_values): New macro.
5641 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5643 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5645 * data/push.c: ... to here and compute them from the value of the
5646 %define variable push_pull.
5647 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5648 parsing requests here...
5649 * data/yacc.c: ... hack this to switch to push.c any time
5650 b4_use_push_pull_flag or the %define variable push_pull is set. This
5651 will go away when we mv push.c yacc.c.
5652 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5653 push parsing is not supported since unused %define variables are
5655 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5656 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5657 comments for consistency with b4_percent_define_check_values.
5658 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5660 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5662 (prologue_declaration): Remove %push-parser and %push-pull-parser
5664 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5665 * tests/calc.at: Update declarations.
5666 * tests/input.at (%define enum variables): New test case.
5667 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5669 (Push Parsing: Multiple impure instances): Update declaration.
5670 (Push Parsing: Unsupported Skeletons): New test case.
5671 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5673 (Exploding the Stack Size with Malloc): Update declaration.
5675 2007-09-24 Wojciech Polak <polak@gnu.org>
5677 Add XSLT transformations.
5679 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5680 * data/xslt/xml2text.xsl: Transform XML into plain text.
5681 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5682 * data/Makefile.am (xsltdir): New variable.
5683 (dist_xslt_DATA): Add xslt/*.xsl files.
5685 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5687 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5688 Problem reported by Wojciech Polak.
5689 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5690 (xml_printf): Undo change I made on 21 September; that is,
5691 indent 2 spaces, not 1.
5693 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5695 Pacify ./configure --enable-gcc-warnings.
5696 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5697 `char const *' instead of `char *'.
5698 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5699 local variable `sep'.
5701 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5703 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5705 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5706 (xml_printf): Indent just 1 space for level.
5707 (e_char, xlate_char): Remove.
5708 (xml_escape_string): Rewrite to avoid undefined behavior (used
5709 storage that was freed from the stack).
5710 (xml_escape_n): Don't bother checking for subscript error.
5712 2007-09-21 Wojciech Polak <polak@gnu.org>
5714 Add Bison XML Automaton Report.
5716 Add support for an -x option to generate an XML report.
5717 It is not documented yet.
5718 * src/print-xml.c: New file.
5719 * src/print-xml.h: Likewise.
5720 * lib/timevar.def (TV_XML): New var.
5721 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5722 * src/conflicts.c: Include print-xml.h.
5723 (solved_conflicts_xml_obstack): New var.
5724 (log_resolution, conflicts_solve, conflicts_free):
5725 Add support for XML report.
5726 (conflicts_output_val): New function.
5727 * src/conflicts.h (conflicts_output_val): New decl.
5728 * src/files.c (spec_xml_file): New var.
5729 (compute_output_file_names, output_file_names_free): Add XML support.
5730 * src/files.h (spec_xml_file): New decl.
5731 * src/getargs.c (xml_flag): New var.
5732 (usage, short_options, long_options, getargs): Add XML support.
5733 * src/getargs.h (xml_flag): New decl.
5734 * src/gram.c: Include print-xml.h.
5735 (rule_lhs_print_xml, rule_rhs_print_xml):
5736 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5738 * src/gram.h: Declare external ones.
5739 * src/main.c: Include print-xml.h.
5740 (main): Add XML support.
5741 * src/reduce.c: Include print-xml.h.
5742 (reduce_xml): New function.
5743 * src/reduce.h: Declare it.
5744 * src/state.c: Include print-xml.h.
5745 (state_new): Add XML support.
5746 (state_rule_lookahead_tokens_print_xml): New function.
5747 * src/state.h: Declare it.
5748 (struct state): New member solved_conflicts_xml.
5749 * src/symtab.c (symbol_class_get_string): New function.
5750 * src/symtab.h: Declare it.
5752 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5754 * GNUmakefile: Switch to coreutils's version.
5755 * bootstrap: Likewise.
5756 * Makefile.cfg: Adjust to new GNUmakefile.
5757 * README-hacking: Likewise.
5761 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5762 Bruno Haible <bruno@clisp.org>
5764 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5765 and is a script that invokes bison. Tighten the code. Add comments.
5767 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5769 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5770 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5771 * doc/bison.texinfo (Decl Summary): Fix.
5772 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5773 * tests/input.at (Boolean %define variables): Update output.
5774 * tests/skeletons.at (%define boolean variables: invalid skeleton
5775 defaults): Rename to...
5776 (%define Boolean variables: invalid skeleton defaults): ... this and
5779 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5781 In impure push mode, don't allow more than one yypstate to be allocated
5782 since multiple impure parsers would corrupt yynerrs.
5783 * data/push.c (yypstate_allocated): New static global variable
5785 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5786 exhaustion if yypstate_allocated is 1, but still return 2.
5787 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5788 already 1. Otherwise, set it to 1.
5789 (yypstate_delete): Set it to 0.
5790 * tests/push.at (Push Parsing: Multiple impure instances): New test
5793 2007-08-17 Bob Rossi <bob@brasko.net>
5795 * doc/bison.texinfo (Push Decl): Document the push parser.
5796 (Table of Symbols): Ditto.
5798 (Decl Summary): Ditto.
5799 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5800 Parser Create Function, Parser Delete Function):
5801 Add new push parser symbols.
5802 (Table of Symbols): Document push-parser, push-pull-parser,
5803 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5805 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5808 * doc/gpl-3.0.texi: New file.
5809 * doc/gpl.texi: Remove.
5810 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5811 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5812 * README-hacking, TODO, bootstrap, bootstrap.conf:
5813 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5814 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5815 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5816 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5817 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5818 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5819 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5820 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5821 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5822 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5823 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5824 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5825 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5826 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5827 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5828 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5829 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5830 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5831 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5832 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5833 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5834 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5835 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5836 * src/complain.c, src/complain.h, src/conflicts.c:
5837 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5838 * src/files.h, src/flex-scanner.h, src/getargs.c:
5839 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5840 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5841 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5842 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5843 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5844 * src/print.c, src/print.h, src/print_graph.c:
5845 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5846 * src/reduce.h, src/relation.c, src/relation.h:
5847 * src/revision.h, src/scan-code.h, src/scan-code.l:
5848 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5849 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5850 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5851 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5852 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5853 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5854 * tests/existing.at, tests/glr-regression.at:
5855 * tests/headers.at, tests/input.at, tests/java.at:
5856 * tests/local.at, tests/output.at, tests/push.at:
5857 * tests/reduce.at, tests/regression.at, tests/sets.at:
5858 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5862 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5864 Get rid of broken %no-parser, -n, and --no-parser implementation and
5866 * TODO: Don't mention them.
5867 * doc/bison.1: Likewise.
5868 * doc/bison.texinfo (Decl Summary): Likewise.
5869 (Bison Options): Likewise.
5870 (Option Cross Key): Likewise.
5871 * src/getargs.c (no_parser_flag): Remove global variable.
5872 (usage): Don't print description of -n and --no-parser.
5873 (long_options): Remove --no-parser entry here.
5874 (getargs): Remove -n case in the switch here.
5875 * src/getargs.h (no_parser_flag): Remove extern.
5876 * tests/regression.at (Web2c Actions): Remove comment that mentions
5879 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5881 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5882 name user variables starting with `yy'. Just pass NULL instead of a
5883 dummy local &yylval to yypush_parse.
5884 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5887 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5889 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5890 true since it's then always used regardless of whether yyoverflow is
5891 defined. Reported by Christian Burger at
5892 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5893 * THANKS: Add Christian Burger.
5895 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5896 node names: say "Decl Summary" not "Bison Declaration Summary".
5898 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5900 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5901 determine whether this function has already complained about an invalid
5902 value for a %define boolean variable, don't check whether Bison has
5903 ever examined the value. As written, the check was a tautology.
5904 Instead, record and check for this complaint using a separate muscle.
5906 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5908 Fix push parsing memory leak reported by Brandon Lucia at
5909 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5910 * THANKS: Add Brandon Lucia.
5911 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5912 but the parse never completed and thus freed it.
5913 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5914 * tests/testsuite.at: Include push.at.
5915 * test/push.at: New.
5916 (Push Parsing: Memory Leak for Early Deletion): New test case.
5918 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5920 Improve handling of multiple S/R conflicts in the same state and of S/R
5921 conflicts involving multiple reductions.
5922 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5923 set for a state here or Bison will abort if it is reassigned on a
5924 later conflicted reduction in the same state.
5925 Similarly, don't finalize and assign the solved conflicts report here
5926 or it will be lost if it is reassigned on a later conflicted reduction
5928 (set_conflicts): Instead, assign them both here after all S/R conflicts
5929 in the state have been fully examined.
5930 * src/print.c (shift_set): Rename to...
5931 (no_reduce_set): ... this.
5932 (print_reductions): Update for rename, and add %nonassoc error action
5933 tokens to no_reduce_set so that, when printing the first remaining
5934 reduction on an error action token, the reduction is enclosed in
5936 (print_results): Update for rename.
5937 * tests/conflicts.at (Solved conflicts report for multiple reductions
5938 in a state): New test case.
5939 (%nonassoc error actions for multiple reductions in a state): New test
5942 * src/main.c (main): Don't depend on C99 features.
5944 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5946 * build-aux/.cvsignore: Add compile.
5947 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5950 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5952 * bootstrap (slurp): Create target directories that don't exist.
5953 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5955 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5957 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5959 * closure.c (closure): Likewise.
5960 * state.h (reductions): Comment sorting of rules.
5961 (state): Comment sorting of items.
5963 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5965 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5966 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5967 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5968 definition in order to avoid Gnulib headers since we don't use config.h
5970 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5971 rather than AT_DATA so that config.h is included.
5973 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5975 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5976 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5977 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5978 and so that YYFPRINTF is guaranteed to be defined here.
5980 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5982 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5984 (muscle_percent_define_check_values): ... this more helpful function.
5985 Again, it's not used yet, but it will be.
5986 * src/muscle_tab.h: Likewise.
5988 Improve some comments in parser table construction.
5989 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5990 (generate_states): Don't mention ruleset, which is internal to closure.
5991 * src/closure.c (closure): Explain sorting of core and itemset, which
5992 is required for this function to behave correctly.
5993 * src/closure.h (closure): Mention sorting.
5995 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5997 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5998 move the check for disabled transitions to an aver since conflict
5999 resolution hasn't happened yet.
6001 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
6002 labels a state as inconsistent just because it has error transitions.
6003 The original form of this check appeared in revision 1.1 of lalr.c,
6004 which was committed on 1991-12-21. Now (at least), changing the
6005 consistency label on such a state appears to have no useful effect in
6006 any of the places it is examined, which I enumerate below. The key
6007 point to understanding each item in this enumeration is that a state
6008 with an error transition is labelled consistent in the first place only
6009 if it has no rules, so the check cannot matter for states that have
6010 rules. (1) Labelling a state as inconsistent will cause set_conflicts
6011 to try to identify its conflicts, and a state must have *rules* to have
6012 conflicts. (2) Labelling a state as inconsistent will affect how
6013 action_row sets the default *rule* for the state. (3) Labelling a
6014 state as inconsistent will cause build_relations to add lookback edges
6015 to *rules* in that state.
6016 * src/state.h (struct state): Word the comment for member consistent
6019 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6021 Don't depend on C99 features.
6022 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
6023 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
6024 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6025 * src/state.c (state_mark_reachable_states): Fix for-loop.
6026 (state_remove_unreachable_states): Fix for-loop.
6028 Don't widen struct state with member reachable just to temporarily
6029 record reachability. Instead, use a local bitset.
6030 * src/state.h (struct state): Remove member.
6031 * src/state.c (state_new): Don't initialize it.
6032 (state_mark_reachable_states): Rename to...
6033 (state_record_reachable_states): ... this, and use bitset.
6034 (state_remove_unreachable_states): Use bitset.
6036 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6038 * src/Makefile.am (yacc): Quote target action commands properly so
6039 that the yacc script isn't corrupt. Reported by Hans Aberg at
6040 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6042 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6043 the case of pure parsers. Reported by Frans Englich at
6044 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6045 * THANKS: Add Frans Englich.
6047 * NEWS (2.3a+): In the %code entry, reference section `Bison
6048 Declaration Summary' from the manual now since the %code summary has
6050 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6051 in the rules section must be terminated by semicolons.
6053 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6055 Extend the front-end API for %define variables to more completely
6056 mirror the back-end. This will be useful in the future.
6057 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6058 Update comments to mention the new front-end counterparts of these
6060 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6061 for muscle_string_decode and muscle_location_decode.
6062 (muscle_string_decode): New static function.
6063 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6064 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6066 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6067 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6068 implementation more closely.
6069 (muscle_percent_define_invalid_value): New function.
6070 * src/muscle_tab.h (muscle_percent_define_get,
6071 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6074 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6076 * NEWS (2.3a+): Mention yesterday's state-removal change.
6077 (2.3a): Remove the %language entry, which was added after 2.3a.
6078 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6079 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6080 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6081 tests/existing.at: Update copyright date.
6083 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6085 If conflict resolution makes states unreachable, remove those states,
6086 report rules that are then unused, and don't report conflicts in those
6088 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6089 New global function.
6090 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6092 * src/main.c (main): After conflict resolution, remove the unreachable
6093 states and update all data structures that reference states by number.
6094 * src/state.c (state_new): Initialize each state's reachable member to
6096 (state_mark_reachable_states): New static function.
6097 (state_remove_unreachable_states): New global function.
6098 * src/state.h (struct state): Add member bool reachable.
6099 (state_remove_unreachable_states): Prototype.
6100 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6102 * tests/existing.at (GNU pic Grammar): Update test case output now that
6103 an unused rule is discovered.
6105 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6107 Minor code cleanup in parser table construction.
6108 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
6109 (new_itemsets, save_reductions): Update for rename to nitemset.
6110 * src/closure.c (nritemset): Rename to...
6111 (nitemset): ... this since the "r" appears to meaningless and isn't
6112 used in the comments.
6113 (closure): Update for rename.
6114 * src/closure.h (nritemset): Update extern to...
6115 (nitemset): ... this.
6116 * src/lalr.c (LA): Fix a typo in comments.
6117 * src/print.c (print_core): Update for rename to nitemset.
6118 * src/print_graph.c (print_graph): Likewise.
6119 * src/state.h: Fix some typos in header comments.
6121 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6123 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6124 still sticks to ASCII. Sorry!
6126 * README-hacking: New file, taken mostly from coreutils, with changes
6127 for Bison. Contains much of the contents of:
6128 * README-cvs: Remove.
6129 * bootstrap: Sync from gnulib.
6130 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6131 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6133 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6135 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6137 (Java Differences): Fix some typos.
6138 * THANKS: Add Sebastian Setzer.
6140 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
6142 * data/java.m4 (b4_single_class_if): Remove.
6143 (b4_abstract_if): Look at "%define abstract".
6145 (b4_union_name): Rename...
6146 (b4_yystype): ... to this. Map to "%define stype".
6147 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6148 b4_maybe_throws): Fix quoting.
6149 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6150 * data/lalr1.java (Lexer interface): Always define.
6151 (Lexer interface within parser class): Remove.
6152 (YYLexer class): New, used when "%code lexer" is present.
6153 (constructor): When "%code lexer" is used, pass %lex-param
6154 to the lexer constructor.
6155 (yylex, yyparse): Remove %lex-param from method invocations
6156 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6158 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6159 abstract". Rename "%define union_name" to "%define stype".
6160 Rename method names according to previous patch.
6161 (Java Scanner Interface): Describe "%code lexer" instead of
6162 "%pure-parser" and "%define single_class".
6163 (Java Differences): Mention "%code lexer".
6165 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6166 Include scanner here, using macros from tests/local.at.
6167 (AT_DATA_CALC_Y): Remove final argument.
6168 (_AT_CHECK_JAVA_CALC): Likewise.
6169 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6170 of %locations and %error-verbose.
6171 (main): Test with and without %lex-param.
6172 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6173 (AT_BISON_OPTION_POPDEFS): Pop it.
6175 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6177 DJGPP spefic issue. Inhibit the use of disallowed characters for
6178 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6179 and concern testsuite case 46.
6180 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6181 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6182 * djgpp/config.bat: Inhibit the use of disallowed characters.
6184 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6186 Miscellaneous %define and %code cleanup.
6187 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6188 values are interpreted.
6189 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6190 documentation a little more.
6191 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6192 muscle_percent_define_insert, muscle_percent_code_grow): New
6194 * src/muscle_tab.h (muscle_percent_define_insert,
6195 muscle_percent_code_grow): Prototype.
6196 * src/parse-gram.y (prologue_declaration): Use
6197 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6198 %define and %code directives.
6200 Make it easy to share %define boolean variables between the front-end
6201 and back-end. Though not used yet, this will be useful in the future.
6202 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6203 Bison uses of names rather than just skeleton uses of names.
6204 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6205 b4_percent_define_skeleton_variables(VARIABLE) to
6206 b4_percent_define_bison_variables(VARIABLE).
6207 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6208 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6209 b4_percent_code_bison_qualifiers(QUALIFIER).
6210 (b4_check_user_names_wrap): Update for renames.
6211 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6212 muscle_percent_define_default): New functions mimicking
6213 b4_percent_define_flag_if and b4_percent_define_default.
6215 For %define variables, report locations for invalid values and
6217 * data/bison.m4 (b4_percent_define_flag_if): Read
6218 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6220 (b4_percent_define_default): Save a special location in
6221 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6222 must later be reported as invalid.
6223 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6225 (muscle_percent_define_insert): Record the location of VARIABLE in
6226 muscle percent_define_loc(VARIABLE), and use it to report the previous
6227 location for a redefinition.
6228 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6229 (muscle_percent_define_default): Update like b4_percent_define_default.
6230 (muscle_grow_user_name_list): Rename to...
6231 (muscle_user_name_list_grow): ... this for consistency and use
6232 muscle_location_grow.
6233 * src/muscle_tab.h (muscle_location_grow): Prototype.
6234 * tests/input.at (%define errors): Update expected output.
6235 * tests/skeletons.at (%define boolean variables: invalid skeleton
6236 defaults): New test case.
6238 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6240 * src/print.c (lookahead_set, state_default_rule): Remove.
6241 (print_reductions): Replace state_default_rule invocation with
6242 equivalent use of yydefact, which was computed in token_actions in
6244 (print_results): Don't allocate lookahead_set.
6246 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
6248 * data/lalr1.java: Prefix all private members with yy.
6250 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6252 Use YYFPRINTF instead of fprintf where appropriate. Reported by
6253 Sebastien Fricker at
6254 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
6255 * THANKS: Add Sebastien Fricker.
6256 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6257 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6258 accept a variable number of arguments.
6260 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6262 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6264 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6266 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6267 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6268 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6270 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6272 Undo my 2007-02-07 change, switching back to the c-strcase module
6273 introduced in the 2007-02-03 change. Bruno Haible reported that
6274 the 2007-02-07 change would be dangerous in Turkish if we add a
6275 language whose name contains "i", since "i" is not lowercase "I"
6277 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6278 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6279 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6280 * m4/.cvsignore: Remove strcase.m4.
6281 * src/getargs.c: Revert 2007-02-07 change, as follows.
6282 Include c-strcase.h.
6283 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6285 2007-02-11 Bruno Haible <bruno@clisp.org>
6287 Enable the Java related testsuite tests when the only Java compiler
6288 found is a gcj < 4.3. Discussed at
6289 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6290 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6292 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6294 * data/Makefile.am: Update copyright date.
6295 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6296 yypstate_new returns NULL.
6297 (yypstate_new): Return NULL if malloc does.
6298 * src/reader.c (packgram): Move translation of rule actions from the
6299 beginning of packgram to...
6300 (check_and_convert_grammar): ... here right before packgram is invoked
6301 so it's easier to write more complete comments, and remove redundant
6304 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6306 As in semantic actions, make @$ in %initial-action, %destructor, and
6307 %printer imply %locations.
6308 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6310 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6311 (@$ in %initial-action implies %locations,
6312 @$ in %destructor implies %locations,
6313 @$ in %printer implies %locations): ... these new test cases.
6315 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6317 Undo most of the 2007-02-03 change, switching to the strcase module
6318 now that gnulib strcase has been fixed.
6319 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6320 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6321 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6322 * m4/.cvsignore: Add strcase.m4.
6323 * src/getargs.c: Revert 2007-02-03 change, as follows.
6324 Don't include c-strcase.h.
6325 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6326 strcasecmp has "unspecified behavior" outside the POSIX locale,
6327 but it works fine in practice if at least one argument is ASCII,
6328 as is the case in Bison.
6330 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
6332 * tests/java.at: Skip tests if only one of javac/java is present.
6333 Reported by Joel E. Denny.
6334 * tests/atlocal.in: Adjust copyright years.
6336 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
6338 * data/lalr1.java (Stack): Work around old verifiers that disallow
6339 access to the private fields of an inner class, from the outer class.
6340 We can make Stack's fields public because user code doesn't have access
6341 to the instance of Stack used by parse(). Reported by Paul Eggert.
6343 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6345 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6346 the right spot for these files?
6347 * bootstrap.conf (gnulib_modules): Add c-strcase.
6348 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6350 * src/getargs.c: Include c-strcase.h.
6351 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6352 to avoid unspecified behavior.
6354 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6356 * doc/bison.texinfo (Decl Summary): Correct typo.
6358 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
6360 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6361 Complain if the value does not match empty, "true" or "false".
6362 * data/c++.m4: Adjust default definitions of %define variables.
6363 * data/java.m4: Adjust default definitions of %define variables.
6364 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6366 * tests/input.at (Boolean %define variables): Test new behavior.
6368 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
6370 * NEWS: Mention java.
6371 * TODO: Remove things that are done.
6372 * bootstrap.conf: Add javacomp-script and javaexec-script.
6373 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6375 * data/Makefile.am: Add new files.
6376 * data/java-skel.m4: New.
6377 * data/java.m4: New.
6378 * data/lalr1.java: New.
6380 * doc/bison.texinfo: Put "A Complete C++ Example" under
6381 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6382 under Other Languages.
6384 * src/getargs.c (valid_languages): Add Java.
6385 * src/getargs.h (struct bison_language): Update size of string fields.
6387 * tests/Makefile.am: Add java.at.
6388 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6389 * tests/java.at: New.
6390 * tests/testsuite.at: Include it.
6392 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6395 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6396 at_directive_argv arguments so these no longer have to be global
6397 variables. Also, update the implementation for the following changes.
6398 (fail_for_at_directive_too_many_args,
6399 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6400 (at_directive_name): Remove as at_directive_argv[0] will be used for
6402 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6403 for the directive name.
6404 (at_directive_argc, at_directive_argv): Make these local within
6405 skel_lex instead of global.
6406 (INITIAL): Update directive start action for above changes.
6407 (SC_AT_DIRECTIVE_ARG): Rename to...
6408 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6409 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6410 (scan_skel): Move yylex_destroy to...
6411 (skel_scanner_free): ... here.
6412 * tests/skeletons.at (installed skeleton file name): Rename to...
6413 (installed skeleton file names): ... this.
6415 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6417 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6418 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6419 Summary" not "Directives".
6420 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6421 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6422 since the former is now the more complete one.
6423 (Prologue Alternatives): Likewise and do the same for %defines.
6424 (Table of Symbols): Add summary of %code, add summary of %define, and
6425 move full %code documentation to...
6426 (Decl Summary): ... here for consistency with other entries in these
6428 Move %define entry in order to keep this list alphabetized.
6429 Reword %define entry a little to put less emphasis on the skeleton
6430 concept, which most users shouldn't have to think about.
6432 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6434 Adjust to recent gnulib changes.
6435 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6436 Add string.h, string_.h, unistd_.h, wchar_.h.
6437 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6438 * src/system.h: Don't include <stpcpy.h>; this is now done by
6441 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
6443 Simplify implementation of unqualified %code, implement macros for
6444 uniform treatment of boolean %define flags. Document %define.
6445 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6446 b4_percent_code_ifdef): New.
6447 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6448 * data/c++.m4: Define default value for global_tokens_and_yystype.
6449 * data/glr.cc: Likewise.
6450 * data/location.cc: Use b4_percent_define_flag_if.
6452 * doc/bison.texinfo (Decl Summary): Document %define.
6454 * src/parse-gram.y (Unqualified %code): Change muscle name to
6456 (content.opt): Default to empty.
6458 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6460 Implement support for relative and absolute skeleton file names.
6461 Discussed starting at
6462 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6463 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6464 (Bison Options): Document in --skeleton entry.
6465 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6466 full_skeleton can't necessarily hold all of pkgdatadir.
6467 If the specified skeleton file name contains a `/', don't prepend
6469 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6470 file name contains a `/', prepend the grammar file directory.
6471 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6472 * skeletons.at: New file.
6473 (relative skeleton file names): New test case.
6474 (installed skeleton file names): New test case.
6475 * tests/testsuite.at: Include skeletons.at.
6477 * bootstrap: Update copyright to 2007.
6479 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
6481 * bootstrap: Remove occurrences of .#bootmp from the files.
6483 2007-01-17 Akim Demaille <akim@epita.fr>
6485 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6487 Use per-type %printer.
6489 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6491 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6492 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6493 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6494 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6495 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6496 tests/glr-regression.at, tests/input.at, tests/local.at,
6497 tests/output.at, tests/torture.at: Update copyright to 2007.
6499 2007-01-16 Akim Demaille <akim@epita.fr>
6501 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6503 (Calc++ Scanner): Exit with failure if we can't open the input
6505 Accept "-" standing for stdin.
6506 (Calc++ Top Level): Print the result only if the parsing was
6509 2007-01-16 Akim Demaille <akim@epita.fr>
6511 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6513 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
6514 and Joel E. Denny <jdenny@ces.clemson.edu>
6516 Clean up %define and %code implementation in M4 some. Most
6517 importantly, rename all related macros to be in the b4_percent_define
6518 and b4_percent_code namespaces. Also, complete support for `.' in
6519 %define variable names and %code qualifiers.
6520 * data/bison.m4 (b4_check_user_names): Check for special
6521 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6523 (b4_get_percent_define, b4_get_percent_code): Rename to...
6524 (b4_percent_define_get, b4_percent_code_get): ... these.
6525 Extend documentation with examples.
6526 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6527 b4_percent_define_skeleton_variables and
6528 b4_percent_code_skeleton_qualifiers.
6529 Expect any value for the %define variable `foo' to be stored in the
6530 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6531 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6532 expect any unqualified %code blocks to be stored in a macro named
6533 `b4_percent_code_unqualified'.
6534 Use m4_indir so that %define variable names and %code qualifiers can
6535 contain `.', which is allowed by the grammar parser.
6536 (b4_percent_define_default): New macro to set a default value for a
6538 (m4_wrap): Update wrapped code, and fix some underquoting.
6539 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6540 Expect grammar uses of %define variables and %code qualifiers to be
6541 defined in b4_percent_define_user_variables and
6542 b4_percent_code_user_qualifiers.
6543 * data/c++.m4: Use b4_percent_define_default rather than
6544 m4_define_default. Fix some underquoting. Skeleton usage of %define
6545 variable define_location_comparison now implies skeleton usage of
6546 %define variable filename_type.
6547 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6548 data/push.c, data/yacc.c: Update macro names.
6549 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6552 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6554 DJGPP specific issues.
6556 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6557 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6559 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6561 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6562 run parsers in all tests so that Valgrind is invoked during
6563 maintainer-check-valgrind.
6564 (Duplicate representation of merged trees): Free all semantic values.
6565 (Duplicated user destructor for lookahead): Likewise.
6567 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6569 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6570 command-line prefix.
6571 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6572 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6573 miss Valgrind messages.
6574 (Exploding the Stack Size with Malloc): Likewise.
6576 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6578 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6579 locals. Reported by Juan Manuel Guerrero at
6580 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6581 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6582 Fix some indentation also.
6583 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6584 explaining this issue.
6586 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
6587 and Joel E. Denny <jdenny@ces.clemson.edu>
6589 Simplify union and prologue handling, and escape union and lex/parse
6590 params with digraphs.
6591 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6592 values to the empty string since these are no longer guaranteed
6593 initialized by the front-end.
6594 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6595 braces around b4_user_stype since this is no longer done by the
6597 * src/files.c, src/files.h (pre_prologue_obstack,
6598 post_prologue_obstack): Remove.
6599 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6600 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6601 with digraphs. This fixes lex params and parse params.
6602 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6603 * src/output.c (prepare): Remove muscle insertion of the prologues.
6604 (output): Remove freeing of pre_prologue_obstack and
6605 post_prologue_obstack.
6606 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6607 than prologue_augment for prologue parsing so you don't need prologue
6609 (grammar_declaration): For %union RHS, use `braceless' instead of
6610 "{...}" so that braces are already stripped and code is escaped with
6612 * src/reader.c (prologue_augment): Remove.
6613 (reader): Remove initialization of pre_prologue_obstack and
6614 post_prologue_obstack.
6615 * src/reader.h (prologue_augment): Remove.
6617 * data/c.m4: Remove stray parenthesis.
6619 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6621 Remove quotes from variables names in %define directives and from
6622 qualifiers in %code directives, and restrict the characters that are
6623 allowed in them to M4-friendly ones. For %define, continue to support
6624 the quoted form as a deprecated feature. Discussed starting at
6625 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6626 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6628 * doc/bison.texinfo (Prologue Alternatives): Update.
6629 (Decl Summary): In %defines entry, update mention of `%code requires'
6630 and `%code provides'.
6631 (C++ Location Values): Update %define uses.
6632 (Calc++ Parser Interface): Likewise.
6633 (Calc++ Parser): Likewise, and update `%code requires' uses.
6634 (Table of Symbols): Update %code documentation.
6635 * src/parse-gram.y (prologue_declaration): For %define variables, use
6636 `variable' instead of `STRING'.
6637 (grammar_declaration): For %code qualifiers, use `ID' instead of
6639 (variable): New nonterminal that takes an `ID' or a `STRING'.
6640 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6642 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6643 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6644 (%define errors): Update %define uses.
6646 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6648 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6649 instead of muscle_insert for %define values so that M4-special
6650 characters are replaced with digraphs.
6651 * tests/input.at (%define errors): Extend to check weird values.
6653 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6655 Instead of having skeletons declare all valid %define variables and
6656 %code qualifiers, provide macros that retrieve the associated values
6657 and build these lists automatically. Thus Bison will now warn when a
6658 variable or qualifier is not used by the skeleton in the current
6659 invocation regardless of whether it might sometimes be used by that
6660 skeleton in other invocations. Also, move all %define value macros to
6661 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6662 form, which is replaced by %code.
6663 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6664 (b4_check_user_names): ... this, and change the series of valid name
6665 arguments to a single list argument for names used in the skeleton
6666 similar to the existing list argument for names used in the grammar.
6667 Warn instead of complaining.
6668 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6669 values and %code code, to format %code code properly, and to build
6670 lists of all %define variables and %code qualifiers used in the
6671 skeleton: b4_skeleton_percent_define_variables and
6672 b4_skeleton_percent_code_qualifiers.
6673 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6675 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6676 the skeleton names lists can finish building first. In place of
6677 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6678 expect the lists b4_user_percent_define_variables and
6679 b4_user_percent_code_qualifiers.
6680 * data/c++.m4: Where setting default values for b4_parser_class_name,
6681 b4_location_type, b4_filename_type, b4_namespace, and
6682 b4_define_location_comparison, update their names to the
6683 b4_percent_define_ namespace.
6684 * data/glr.c: Don't use b4_check_percent_define_variables and
6685 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6686 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6687 (b4_parser_class_name, b4_namespace): Define these using
6688 b4_get_percent_define for parser_class_name and namespace.
6689 * data/location.cc: Use b4_get_percent_define.
6690 * data/push.c: Don't use b4_check_percent_define_variables and
6691 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6692 * data/yacc.c: Likewise, and don't call m4_exit in
6693 b4_use_push_for_pull_if or m4_wrap code will never execute.
6694 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6696 (muscle_grow_user_name_list): ... this for consistency with the
6697 terminology used in bison.m4.
6698 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6699 %define variable names, and rename muscle used_percent_define_variables
6700 to user_percent_define_variables.
6701 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6702 user_percent_code_qualifiers.
6704 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6705 {CODE} form is no longer accepted.
6706 * tests/input.at (Reject bad %code qualifiers): Rename to...
6707 (Reject unused %code qualifiers): ... this, and update test output.
6708 (%define error): Update test output.
6710 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6712 Check for unrecognized %define variables similar to checking for
6713 unrecognized %code qualifiers. Check for redefined %define variables.
6714 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6716 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6717 (b4_check_percent_define_variables): New, also wraps it.
6718 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6719 variables using b4_check_percent_define_variables.
6720 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6721 all those exercised in the test suite and all those listed in the
6722 `Default values' section of c++.m4. Are there others?
6723 * data/push.c, data/yacc.c: Declare no valid %define variables.
6724 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6725 similar to muscle_find, but it works even when the muscle stores a
6727 (muscle_grow_used_name_list): New function for constructing the used
6728 name list muscles that b4_check_for_unrecognized_names requires.
6729 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6730 %define'd more than once. Define the b4_used_percent_define_variables
6731 muscle with muscle_grow_used_name_list.
6732 (grammar_declaration): Abbreviate %code code with
6733 muscle_grow_used_name_list.
6734 * tests/input.at (%define errors): New.
6736 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6738 Provide warn_at, complain_at, and fatal_at function callbacks to the
6739 skeletons, and use this for %code qualifier complaints.
6740 * data/bison.m4 (b4_error_at): New, invoked by...
6741 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6742 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6743 @fatal_at(...@) directives.
6744 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6745 qualifiers in b4_used_percent_code_qualifiers and to use
6747 * src/location.c, src/location.h (boundary_set_from_string): New global
6749 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6751 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6752 to b4_used_percent_code_qualifiers.
6753 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6755 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6756 (lineno): Rename to...
6757 (out_lineno): ... this so I don't misunderstand it again.
6758 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6759 here; these newlines are in the input but not the output file.
6760 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6761 (at_directive_perform): ... this new static function, and add handling
6762 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6764 * tests/input.at (Reject bad %code qualifiers): Update test output with
6765 locations and extend.
6767 * tests/output.at (Output file name: [, Output file name: ]): Remove
6768 bogus comment about these tests failing.
6770 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6772 Clean up b4_check_percent_code_qualifiers a little.
6773 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6774 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6775 documentation and add examples.
6776 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6779 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6781 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6782 unreliable -- especially when they're hidden inside another macro.
6783 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6784 data/c.m4: Remove m4_divert(-1).
6785 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6786 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6787 m4_divert_push(0) and m4_divert_pop(0).
6788 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
6789 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6790 pushed and popped by m4sugar, should be first on the stack.
6792 Provide warn, complain, and fatal function callbacks to the skeletons.
6793 This provides more flexibility than m4_fatal, improves the error
6794 message format, and captures messages for translation. Discussed
6796 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6797 * data/bison.m4 (b4_error): New, invoked by...
6798 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6799 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6800 directives. Because these M4 macros might be called when the current
6801 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6802 the previous removal of uses of m4_divert, which caused trouble.
6803 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6804 m4_fatal to report unrecognized %code qualifiers.
6805 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6806 push parser requests.
6807 * data/glr.c: Use b4_complain instead of m4_fatal to report
6808 non-deterministic push parser requests.
6809 Update @output usage to @output(...@) form.
6810 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6811 report missing %defines. Update @output usage to @output(...@) form.
6812 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6814 * src/main.c (main): Invoke skel_scanner_free.
6815 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6816 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6817 obstack_for_string from flex-scanner.h.
6818 (YY_DECL): Use to declare skel_lex static.
6819 (decode_at_digraphs): Remove; now handled in the new
6820 SC_AT_DIRECTIVE_ARG start condition.
6821 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6823 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6824 at_directive_argv): New static globals.
6825 (INITIAL): Use fail_for_invalid_at.
6826 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6827 recognize the start of a generalized `@directive(...@)' form and
6829 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6830 directive args (using the new obstack_for_string), to decode the
6831 contained @ diagraphs, and to perform the directive. It recognizes
6832 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6834 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6835 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6837 (scan_skel): Initialize obstack_for_string on the first call.
6838 (skel_scanner_free): New function to free obstack_for_string.
6839 * tests/input.at (Reject bad %code qualifiers): Update test output.
6841 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6843 Consolidate the 4 prologue alternative directives (%code, %requires,
6844 %provides, and %code-top) into a single %code directive with an
6845 optional qualifier field. Discussed at
6846 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6847 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6849 * doc/bison.texinfo (Prologue Alternatives): Update.
6850 (Decl Summary): Update to %code "requires" and %code "provides".
6851 (Calc++ Parser): Update to %code "requires".
6852 (Table of Symbols): Remove entries for %requires, %provides, and
6853 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6854 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6855 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6856 which are skeleton-specific.
6857 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6858 declare what %code qualifiers it supports and to complain if any other
6859 qualifiers were used in the grammar.
6860 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6861 and b4_user_code([b4_percent_code_provides]) in place of
6862 b4_user_requires and b4_user_provides.
6863 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6864 Add b4_user_code([b4_percent_code_top]) and
6865 b4_user_code([b4_percent_code]).
6866 Invoke b4_check_percent_code_qualifiers.
6867 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6868 PERCENT_REQUIRES): Remove.
6869 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6870 %requires. Rewrite the %code RHS as the unqualified form defining the
6871 muscle b4_percent_code. Add another RHS for the qualified %code form,
6872 which defines muscles of the form b4_percent_code_QUALIFIER and the
6873 b4_used_percent_code_qualifiers muscle.
6874 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6875 PERCENT_REQUIRES): Remove.
6876 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6877 %code "requires" and %code "provides".
6878 * tests/input.at (Reject bad %code qualifiers): New.
6880 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6882 Use the new code_props interface for destructors and printers.
6883 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6884 printer_location members, and change the type of the destructor and
6885 printer members to code_props.
6886 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6887 symbol_printer_get, semantic_type_destructor_set,
6888 semantic_type_printer_set, default_tagged_destructor_set,
6889 default_tagless_destructor_set, default_tagged_printer_set,
6890 default_tagless_printer_set): Use code_props in arguments and return
6891 types in place of char const * and location.
6892 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6893 since the locations are now contained in the return of
6894 symbol_destructor_get and symbol_printer_get.
6895 * src/output.c (symbol_destructors_output, symbol_printers_output):
6897 (symbol_code_props_output): ... this to eliminate duplicate code.
6898 (output_skeleton): Update to use symbol_code_props_output.
6899 * src/reader.c (symbol_should_be_used): Update use of
6900 symbol_destructor_get.
6901 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6902 Update uses of the various _destructor_set and _printer_set functions.
6903 * src/symtab.c: (default_tagged_destructor_location,
6904 default_tagless_destructor_location, default_tagged_printer_location,
6905 default_tagless_printer_location): Remove since we...
6906 (default_tagged_destructor, default_tagless_destructor,
6907 default_tagged_printer, default_tagless_printer): ... change the type
6908 of these to code_props.
6909 (symbol_new, semantic_type_new, symbol_destructor_set,
6910 semantic_type_destructor_set, symbol_destructor_get,
6911 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6912 symbol_check_alias_consistency, default_tagged_destructor_set,
6913 default_tagless_destructor_set, default_tagged_printer_set,
6914 default_tagless_printer_set): Update.
6915 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6916 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6918 (symbol_print): Use SYMBOL_CODE_PRINT.
6920 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6922 Use the new code_props interface for rule actions.
6923 * src/symlist.h (symbol_list): Replace action, action_location, and
6924 used members with a code_props action_props member.
6925 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6926 grammar_midrule_action, grammar_current_rule_merge_set,
6927 grammar_current_rule_symbol_append, packgram): Update.
6928 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6929 * src/scan-code.l (handle_action_dollar): Update.
6930 (translate_rule_action): Remove, no longer used.
6931 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6933 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6935 Use the new code_props interface in parse-gram.y.
6936 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6937 Update all uses of translate_* functions to use the new code_props
6938 interface and to use gram_scanner_last_string_free and
6939 code_scanner_last_string_free where possible.
6940 (grammar_declaration): symbol_list_destructor_set and
6941 symbol_list_printer_set now perform the translation, so don't do it
6942 here. Use gram_scanner_last_string_free where possible.
6943 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6944 translate_code): Remove, no longer used.
6945 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6946 symbol_list_printer_set): Perform code translation here rather than
6947 depending on the caller to do so.
6949 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6950 * src/scan-gram.h (gram_last_string): Remove declaration.
6951 * src/scan-gram.l (last_string): Declare it static.
6953 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6955 Encapsulate code properties and related functionality for the various
6956 destructors, printers, and actions into a code_props structure and
6957 interface. This patch merely implements code_props in scan-code.h and
6958 scan-code.l. Future patches will rewrite other modules to use it.
6959 Discussed starting at
6960 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6961 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6962 consistently initialize const structs that have an empty location
6964 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6965 to ensure consistency.
6966 * src/scan-code.h (code_props): New structure.
6967 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6968 function, macro, and const global variable for initializing a
6969 code_props with no code.
6970 (code_props_plain_init, code_props_symbol_action_init,
6971 code_props_rule_action_init, code_props_translate_code): The rest of
6972 the new code_props functional interface. Among other things, the init
6973 functions set the code_props kind field so that
6974 code_props_translate_code will know whether to behave like
6975 translate_symbol_action, translate_rule_action, or translate_code.
6976 These old translate functions must remain until all other modules are
6977 updated to use the new code_props interface.
6978 (code_scanner_last_string_free): New function similar to
6979 gram_scanner_last_string_free.
6980 (code_scanner_free): Add documentation.
6981 * src/scan-code.l: Implement the new interface.
6982 (code_lex): Make it static, add a code_props* argument, and remove the
6984 (last_string): New static global similar to the one in scan-gram.l.
6985 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6987 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6988 code_props since Bison may one day use this information for destructors
6990 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6991 (handle_action_dollar): Use symbol_list_n_get and set used flag
6992 directly since symbol_list_n_used_set is removed.
6993 (translate_action): Add a code_props* argument and remove the rule,
6994 action, and location arguments. Pass the code_props* on to code_lex.
6995 (translate_rule_action, translate_symbol_action, translate_code):
6996 Rewrite as wrappers around the new code_props interface.
6997 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6998 it would eventually need to break the encapsulation of code_props.
7000 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7002 * etc/.cvsignore: New.
7004 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7006 Add maintainer-push-check to run maintainer-check using push parsing in
7007 place of pull parsing where available.
7008 * Makefile.am (maintainer-push-check): New.
7009 * data/bison.m4 (b4_use_push_for_pull_if): New.
7010 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
7011 appropriately based on their existing values.
7012 (yypush_parse): Don't print push-parser-specific diagnostics if push
7013 parsing is being used in place of pull parsing.
7014 * data/yacc.c: If push parsing should replace pull parsing, redirect to
7016 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
7017 variable, and insert b4_use_push_for_pull_flag into muscles.
7018 * tests/Makefile.am (maintainer-push-check): New.
7020 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7022 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
7023 (whether successful or failed) so that yypush_parse can be invoked
7024 again to start a new parse using the same yypstate.
7025 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7026 check multiple yypull_parse invocations on the same yypstate. For pull
7027 mode, extend to check multiple yyparse invocations.
7028 (Exploding the Stack Size with Alloca): Extend to try with
7030 (Exploding the Stack Size with Malloc): Likewise.
7032 * tests/calc.at (Simple LALR Calculator): Don't specify
7033 %skeleton "push.c" since %push-pull-parser implies that now.
7034 * tests/headers.at (export YYLTYPE): Don't check for the push
7035 declarations. Otherwise, this test case can't be used to see if push
7036 mode can truly emulate pull mode.
7037 * tests/input.at (Torturing the Scanner): Likewise.
7038 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7039 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7040 AT_YACC_IF, which now includes the case of push mode since %skeleton
7041 need not be used for push mode. This will be more intuitive once
7042 push.c is renamed to yacc.c.
7044 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7046 For push mode, convert yyparse from a macro to a function, invoke yylex
7047 instead of passing a yylexp argument to yypull_parse, and don't
7048 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7049 Discussed starting at
7050 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7051 * data/bison.m4 (b4_pull_if): New.
7052 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7053 * data/push.c: Improve M4 quoting a little.
7054 (b4_generate_macro_args, b4_parenthesize): Remove.
7055 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7056 any time a pull parser is requested.
7057 Don't #define this as a wrapper around yypull_parse. Instead, when
7058 both push and pull are requested, make it a function that does that
7060 (yypull_parse): If there's a b4_prefix, #define this to
7061 b4_prefix[pull_parse] when both push and pull are requested.
7062 Don't define this as a function unless both push and pull are
7064 Remove the yylexp argument and hard-code yylex invocation instead.
7065 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7067 * src/getargs.c (pull_parser): New global initialized to true.
7068 * getargs.h (pull_parser): extern it.
7069 * src/output.c (prepare): Insert pull_flag muscle.
7070 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7071 (prologue_declaration): Set both push_parser and pull_parser = true for
7072 %push-pull-parser. Set push_parser = true and pull_parser = false for
7074 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7075 %push-parser since there's no backward-compatibility concern here.
7076 Scan %push-pull-parser.
7077 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7078 instead of %push-parser.
7079 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7080 prototype it in the module that calls yyparse.
7081 * tests/input.at (Torturing the Scanner): Likewise.
7082 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7084 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7086 Update etc/bench.pl. Optimize push mode a little (the yyn change
7087 deserves most of the credit).
7088 * Makefile.am (SUBDIRS): Add etc subdirectory.
7089 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7090 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7091 yytoken, yyval, and yyloc declarations to...
7092 (yyparse or yypush_parse): ... here to improve performance. For
7093 yypush_parse invocations after the first, be sure to assign yyn its old
7095 (yypstate_new): Don't bother initializing the yyresult field since the
7096 initial value isn't used.
7097 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
7098 remove the #define that, in push mode, set it to yyps->NAME.
7099 * etc/Makefile.am: New.
7100 * etc/bench.pl: Remove and build it instead from...
7101 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
7102 "tests/bison" from the build directory by default rather than just
7103 invoking "bison" from $PATH.
7104 (calc_grammar): Update push parser code: don't declare yylval globally,
7105 don't define yyparse_wrapper, and don't #define yyparse.
7106 (bench_grammar): Update to check all working combinations of yacc.c,
7107 push.c, impure, pure, pull, and push.
7109 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7111 For push mode, add pull wrappers around yypush_parse.
7112 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7113 (yypull_parse): New function wrapping yypush_parse.
7114 (yyparse): New #define wrapping yypull_parse.
7115 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7117 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7118 prototype yylex in the module that calls yyparse, and don't prototype
7119 yyparse there. Otherwise, the yyparse expansion won't compile.
7120 * tests/input.at (Torturing the Scanner): Likewise.
7122 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7124 Enable push parsers to operate in impure mode. Thus, %push-parser no
7125 longer implies %pure-parser. The point of this change is to move
7126 towards being able to test the push parser code by running the entire
7127 test suite as if %push-parser had been declared.
7128 * data/push.c (yypush_parse): For impure mode, remove the
7129 yypushed_char, yypushed_val, and yypushed_loc arguments.
7130 Instead, declare these as local variables initialized to the global
7131 yychar, yylval, and yylloc.
7132 For the first yypush_parse invocation only, restore the initial values
7133 of these global variables when it's time to read a token since they
7134 have been overwritten.
7135 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7137 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7138 %pure-parser along with %push-parser since this test case was designed
7139 for pure push parsers.
7140 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7141 (AT_YACC_OR_PUSH_IF): New.
7142 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7143 add a note that it's still wrong for some cases (as it has been for a
7145 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7146 %push-parser no longer implies %pure-parser.
7148 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7150 Remove some unnecessary differences between the pull parser code and
7151 the push parser code. This patch enables yynerrs in push mode.
7152 * data/push.c: Reformat M4 a little.
7153 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7154 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7155 because push mode is on. Instead, if pure mode is on, move yynerrs
7157 (b4_declare_parser_state_variables): ... here.
7158 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7159 to yyps->NAME so it can be used in yypush_parse.
7160 (yypush_parse): Don't omit uses of yynerrs in push mode.
7162 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7164 Fix bug such that the first pushed token's value and location are
7165 sometimes overwritten (sometimes by %initial-action) before being used.
7166 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7167 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7168 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7169 more closely mimic the pull parser logic.
7170 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7171 time to read a token, which is after any initialization of yylval and
7173 (gottoken): Rename label to...
7174 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7177 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7179 Rearrange initialization of the parser state variables so that the
7180 skeleton doesn't have to have a copy for pull mode and another for push
7181 mode. This patch also fixes at least a bug such that yylloc was not
7182 initialized (with b4_location_initial_line and
7183 b4_location_initial_column) upon calling yypush_parse. However, that
7184 initialization now overwrites the first token's location;
7185 %initial-action assigning @$ already did the same thing, and both bugs
7186 will be fixed in a later patch.
7187 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7188 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7189 yyss, yyvs, yyls, and yystacksize.
7190 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7191 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7193 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7194 yyps->NAME so it can be used in yypush_parse.
7195 (yyparse or yypush_parse): For yypush_parse, don't print the
7196 "Starting parse" diagnostic for invocations after the first.
7197 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7198 yypush_parse, only do it for the first invocation.
7199 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7200 initialization to occur in yypush_parse but only on the first
7203 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7205 * data/push.c: Add CPP guards around push parser declarations in both
7206 the header and the code file.
7207 In the code file, move the push parser declarations to the same place
7208 they appear in the header file.
7209 Clean up the M4 some, especially the inconsistent underquoting in
7210 some b4_c_function_def and b4_c_function_decl uses.
7212 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7214 Encapsulate the push parser state variables into an M4 macro so the
7215 push skeleton doesn't have to list them again for pull mode's yyparse.
7216 For push mode, remove yypush_parse's local equivalents of these
7217 variables to eliminate unnecessary copying between the two sets at
7218 run-time. This patch also fixes at least a bug related to multiple
7219 %initial-action invocations in push mode.
7220 * data/push.c (b4_declare_parser_variables): Rename to...
7221 (b4_declare_scanner_communication_variables): ... this for clarity and
7223 (b4_declare_yyparse_variables): Remove and move its contents to the one
7224 spot where it was invoked.
7225 (b4_declare_parser_state_variables): New macro containing the parser
7226 state variables required by push mode.
7227 (struct yypstate): Replace all fields but yynew with
7228 b4_declare_parser_state_variables.
7229 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7230 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7231 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7232 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7233 parser state variable declarations with
7234 b4_declare_parser_state_variables.
7235 Don't initialize parser state variables when calling yypush_parse since
7236 yypstate_new already does that.
7237 Invoke the user's initial action only upon the first yypush_parse
7239 Remove all code that copies between the local parser state variables
7242 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7244 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7245 prevent a name collision in a future patch where these names will
7246 sometimes be #define'd.
7247 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7248 since it no longer has the same name as the existing argument.
7249 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7251 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
7252 and Joel E. Denny <jdenny@ces.clemson.edu>
7254 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7255 that the argument is case-insensitive, and there's no `=' here.
7256 For the %skeleton entry, mention that %language is better.
7257 (Bison Options): Likewise for --language and --skeleton. Move the
7258 --skeleton entry so that the `Tuning the parser' section is sorted
7259 alphabetically on long options.
7260 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7261 %language directive in detail here; cross-reference the %language
7262 documentation instead.
7263 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7264 `%require "2.3b"' so that the example is always up-to-date.
7265 (Table of Symbols): Add entries for %language and %skeleton.
7266 * examples/extexi (normalize): Instead of replacing every %require
7267 argument with the current Bison version, just substitute for
7268 `@value{VERSION}'. This guarantees that we're testing what actually
7269 appears in the documentation.
7270 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7271 rather than `@VERSION@'.
7273 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7275 * NEWS: Reword the %language news a bit, and put it earlier.
7277 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7278 Rewrite to simplify the logic.
7279 (language_argmatch): Likewise.
7280 (program_name): We now own this var.
7281 * src/getargs.h (struct bison_language): Use char[] rather than
7284 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7286 * src/complain.c (program_name): Remove decl; no longer needed.
7287 * src/main.c (program_name): Remove; now belongs to getargs.
7289 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
7291 * NEWS: Document %language.
7293 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7295 * data/c-skel.m4, data/c++-skel.m4: New files.
7296 * data/glr.c: Complain on push parsers.
7298 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7300 (Decl Summary): Document %language and %skeleton.
7301 (Command line): Document -L.
7303 * examples/extexi: Rewrite %require directive.
7304 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7306 * src/files.c (compute_exts_from_gc): Look in language structure
7308 (compute_file_name_parts): Check whether .tab should be added.
7309 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7310 (language, skeleton_arg, language_argmatch): New.
7311 (long_options): Add --language.
7312 (getargs): Use skeleton_arg, add -L/--language.
7313 * src/getargs.h: Include location.h.
7314 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7315 * src/output.c (prepare): Pick default skeleton from struct language.
7316 Don't dispatch C skeletons here.
7317 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7318 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7319 * src/scan-gram.l ("%language"): New rule.
7321 * tests/calc.at: Test %skeleton and %language.
7322 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7323 (AT_GLR_IF): Look for %skeleton "glr.cc".
7324 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7325 (AT_YACC_IF): Reject %language.
7327 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7329 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7330 since it wasn't used; only the typedef name 'semantic_type' is needed.
7331 Also, omit trailing white space.
7333 * bootstrap: Sync from coreutils.
7334 (gnulib_extra_files): Add build-aux/announce.gen.
7335 (slurp): Adjust .gitignore files like .cvsignore files.
7336 * build-aux/announce-gen: Remove from CVS, since bootstrap
7339 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7341 Make %push-parser imply %pure-parser. This fixes several bugs; see
7342 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7343 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7345 * data/push.c: Don't bother testing b4_push_if when deciding whether
7346 to expand b4_declare_parser_variables globally.
7347 (yypush_parse): Likewise in here.
7349 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7350 (yy_reduce_print): Reformat M4 for readability.
7352 2006-12-15 Bob Rossi <bob@brasko.net>
7353 and Joel Denny <jdenny@ces.clemson.edu>
7355 * data/push.c (yypstate): Add typedef, and update all uses of
7356 struct yypstate to just yypstate.
7357 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7359 2006-12-14 Bob Rossi <bob@brasko.net>
7361 * data/push.c (yypush_parse): Declare prototype regardless of
7364 2006-12-14 Bob Rossi <bob@brasko.net>
7366 * data/push.c (yyparse): Remove the prototype and the #define when in
7369 2006-12-13 Bob Rossi <bob@brasko.net>
7371 * data/push.c (yypstate_init): Rename to...
7372 (yypstate_new): ... this and use b4_c_function_def.
7373 (yypstate_delete): New.
7374 (yypush_parse): Change parameters yynval and yynlloc to be const.
7375 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7376 yypstate_delete functions.
7378 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7380 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7381 strange test case titles. Reported by Bob Rossi.
7383 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7385 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7386 of potential ambiguities in GLR grammers.
7388 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7390 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7391 `bison ', use m4_index instead of m4_substr since chopping up a string
7392 containing M4-special characters causes problems here.
7394 Fix a couple of bugs related to special characters in user-specified
7395 file names, and make it easier for skeletons to compute output file
7396 names with the same file name prefix as Bison-computed output file
7398 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7399 b4_parser_file_name and b4_spec_defines_file instead of
7400 @output_parser_name@ and @output_header_name@, which are now redundant.
7401 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7402 b4_parser_file_name, b4_spec_defines_file, and the new
7403 @basename(FILENAME@) instead of @output_parser_name@ and
7404 @output_header_name@, which inappropriately escaped the file names as
7406 * src/files.c (all_but_ext): Remove static qualifier.
7407 (compute_output_file_names): Move `free (all_but_ext)' to...
7408 (output_file_names_free): ... here since all_but_ext is needed later.
7409 * src/files.h (all_but_ext): Extern.
7410 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7411 exactly what MUSCLE_INSERT_STRING used to do.
7412 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7413 characters are escaped properly.
7414 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7416 For pkgdatadir muscle, maintain previous functionality by using
7417 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7418 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7419 digraphs would never be expanded. Hopefully no one has M4-special
7420 characters in his Bison installation path.
7421 * src/scan-skel.l: Don't parse @output_header_name@ and
7422 @output_parser_name@ anymore since they're now redundant.
7423 In @output, use decode_at_digraphs.
7424 Parse a new @basename command that invokes last_component.
7425 (decode_at_digraphs): New.
7426 (BASE_QPUTS): Remove unused.
7427 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7428 (Output file name): New tests.
7430 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7432 Warn about output files that are generated by the skeletons and that
7433 conflict with other output files.
7434 * data/glr.c: Don't generate the header file here when glr.cc does.
7435 * src/files.c (file_names, file_names_count): New static globals.
7436 (compute_output_file_names): Invoke output_file_name_check for files
7437 not generated by the skeletons and remove existing checks.
7438 (output_file_name_check): New function that warns about conflicting
7440 (output_file_names_free): Free file_names.
7441 * src/files.h (output_file_name_check): Declare.
7442 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7444 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7445 (Conflicting output files): New tests.
7447 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7449 * doc/bison.texinfo: Fix a couple of typos.
7451 2006-12-08 Bob Rossi <bob@brasko.net>
7453 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7455 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7457 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7458 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7460 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7461 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7463 2006-12-07 Bob Rossi <bob@brasko.net>
7464 and Joel Denny <jdenny@ces.clemson.edu>
7466 * data/push.c (yypvarsinit): Change return type from void* to struct
7467 yypvars*. No longer cast to void* on return.
7468 (struct yypvars): Remove yylen since it need not be remembered between
7469 yypushparse invocations.
7470 (yypushparse): Don't copy between yylen and pv->yylen.
7472 2006-12-05 Bob Rossi <bob@brasko.net>
7474 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7475 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7476 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7477 (struct yypvars): Remove b4_declare_parser_variables.
7478 (yypvarsinit): Remove init code for removed variables.
7479 (global scope): Do not declare b4_declare_parser_variables if
7481 (yypushparse): Add b4_declare_parser_variables.
7482 Init new local variables, and remove init code for removed
7485 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7486 and yyparse for other modes.
7487 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7488 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7489 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7490 (AT_PURE_LEX_IF): True if pure or push parser.
7492 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7494 Document Yacc prologue alternatives and default %destructor's and
7495 %printer's as experimental. Don't mention Java yet. Discussed at
7496 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7497 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7498 (2.3a): Annotate this entry to say the old forms of these features were
7500 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
7501 Table of Symbols): Say they're experimental. Comment out any mention
7502 of Java (we'll want this back eventually).
7504 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7506 Support a file name argument to %defines. Deprecate `=' in
7507 %file-prefix, %name-prefix, and %output. Discussed at
7508 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7509 * NEWS (2.3a+): Mention.
7510 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
7511 form of %defines, and remove `=' from entries for %file-prefix,
7512 %name-prefix, and %output.
7513 * src/parse-gram.y (prologue_declaration): Implement.
7514 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7515 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7516 all but one occurrence of %name-prefix.
7517 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7518 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7519 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7520 occurrence of each of %file-prefix and %output. Add check for %defines
7522 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7523 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7524 Remove the `=' from %output.
7526 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7528 Don't escape $ in test case titles since Autoconf 2.61 now does that
7530 * tests/actions.at (Default %printer and %destructor are not for error
7531 or $undefined): Here.
7532 (Default %printer and %destructor are not for $accept): Here.
7533 * tests/input.at (Invalid $n and @n): Here.
7535 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7537 Rename <!> to <>. Discussed starting at
7538 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7539 * NEWS (2.3a+): Update.
7540 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
7542 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7543 * src/scan-gram.l (INITIAL): Implement.
7544 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7545 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7547 * tests/actions.at (Default tagless %printer and %destructor,
7548 Default tagged and per-type %printer and %destructor,
7549 Default %printer and %destructor are not for error or $undefined,
7550 Default %printer and %destructor are not for $accept,
7551 Default %printer and %destructor for mid-rule values): Update.
7552 * tests/input.at (Default %printer and %destructor redeclared,
7553 Unused values with default %destructor): Update.
7555 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7557 Don't let %prec take a nonterminal.
7558 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7560 * tests/input.at (%prec takes a token): New test checking that %prec
7561 won't take a nonterminal.
7563 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7565 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7566 it was double-quoted.
7567 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7568 grammar is maintained with Bison's highest standards.
7569 * src/getargs.c: Fix some typos in Doxygen comments.
7571 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7573 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7574 later. Reported by Paul Eggert in
7575 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7576 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7577 * src/scan-code.l (translate_action): Don't bother invoking
7578 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7579 (code_scanner_free): Instead of invoking
7580 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7582 * src/scan-gram.l (gram_scanner_free): Likewise.
7583 * src/scan-skel.l (scan_skel): Likewise.
7585 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7587 * src/files.c (tr): Change return type to void.
7588 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7589 has been called previously for the same key.
7590 (muscle_find): Return storage instead of value so that
7591 --enable-gcc-warnings doesn't produce warnings that the return discards
7592 const. aver that the value and storage are the same since storage
7593 could potentially be NULL when value is not.
7594 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7597 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7599 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7600 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7601 us a slightly cleaner distribution, and also works.
7602 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7605 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7606 and Paul Eggert <eggert@cs.ucla.edu>
7608 Don't let Bison leak memory except when it complains.
7609 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7610 (spec_defines_file, dir_prefix): Now char *, not const char *,
7611 since they are freed.
7612 * src/files.c: Likewise.
7613 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7615 (tr): Now operates in-place. All uses changed.
7616 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7618 (compute_file_name_parts, compute_output_file_names): Don't store
7619 read-only data in variables that will be freed.
7620 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7621 src_extension, and header_extension.
7622 (output_file_names_free): New public function to free
7623 spec_verbose_file, spec_graph_file, spec_defines_file,
7624 parser_file_name, and dir_prefix.
7625 * src/getargs.c (getargs): Don't store read-only data in variables that
7627 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7628 (which previously existed but was unused), and quotearg_free.
7629 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7630 * src/muscle_tab.c: Likewise.
7631 (muscle_entry): Make the value char const *,
7632 and add a new storage member that is char * and can be freed.
7633 (muscle_entry_free): New private function.
7634 (muscle_init): Use it instead of free.
7635 (muscle_insert, muscle_grow): Update and use new storage member.
7636 (muscle_code_grow): Free the string passed to muscle_grow
7637 since it's not needed anymore.
7638 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7639 add a new `char *code' member.
7640 ("{...}"): Declare semantic type as code.
7641 * src/scan-code.h (translate_rule_action):
7642 (translate_symbol_action, translate_code, translate_action): Return
7643 `char const *' rather than `char *' since external code should not free
7645 * src/scan-code.l: Likewise.
7646 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7647 which is "{...}" in the parser.
7648 * tests/Makefile.am (maintainer-check-valgrind): Set
7649 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7651 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7653 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7654 expecting a non-zero exit status sets --leak-check=summary and
7655 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7656 this case, and we don't want to hear about it.
7658 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7660 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7661 instead of from the template, to simplify configuration a bit.
7662 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7663 and m4/wint_t.m4, as they are needed with the latest gnulib.
7665 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7667 Disable unset/unused mid-rule value warnings by default, and recognize
7668 --warnings=midrule-values to enable them. Discussed starting at
7669 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7670 * NEWS (2.3a+): Mention.
7671 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7672 warnings): Add entry for midrule-values subargument.
7673 * src/reader.c (symbol_should_be_used): Don't return true just because
7674 the value is a set/used mid-rule value unless
7675 --warnings=midrule-values was specified.
7676 * tests/input.at (Unused values, Unused values before symbol
7677 declarations): Run tests with and without --warnings=midrule-values.
7679 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7680 than LIST_FREE directly.
7682 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7684 Finish implementing --warnings=error, which should not be implied by
7685 --warnings=all (or by its synonyms -W and --warnings without
7687 * src/complain.c (set_warning_issued): New function to report that
7688 warnings are being treated as errors and to record an error if so.
7690 (warn_at, warn): ... here.
7691 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7692 "error - warnings are errors" does not appear above "all - all of the
7694 (getargs): For -W and --warnings without subarguments, don't let
7695 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7696 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7698 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7700 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7701 empty subargument list. For example: `bison --warnings= parser.y'.
7703 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7705 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7706 the parser header file so that gcc doesn't warn.
7708 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7710 Split the default %destructor/%printer into two kinds: <*> and <!>.
7711 Discussed starting at
7712 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7713 * NEWS (2.3a+): Mention.
7714 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7715 previous change today related to mid-rules.
7716 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
7717 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
7718 (TYPE_TAG_ANY): Add as <*>.
7719 (TYPE_TAG_NONE): Add as <!>.
7720 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7722 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7723 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7724 * src/symlist.c (symbol_list_default_new): Split into tagged and
7726 (symbol_list_destructor_set, symbol_list_printer_set): Split
7727 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7728 SYMLIST_DEFAULT_TAGLESS.
7729 * src/symlist.h: Update symbol_list_default*_new prototypes.
7730 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7731 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7732 * src/symtab.c (default_destructor, default_destructor_location,
7733 default_printer, default_printer_location): Split each into tagged and
7735 (symbol_destructor_get, symbol_destructor_location_get,
7736 symbol_printer_get, symbol_printer_location_get): Implement tagged
7737 default and tagless default cases.
7738 (default_destructor_set, default_printer_set): Split each into tagged
7739 and tagless versions.
7740 * src/symtab.h: Update prototypes.
7741 * tests/actions.at (Default %printer and %destructor): Rename to...
7742 (Default tagless %printer and %destructor): ... this, and extend.
7743 (Per-type %printer and %destructor): Rename to...
7744 (Default tagged and per-type %printer and %destructor): ... this, and
7746 (Default %printer and %destructor for user-defined end token): Extend.
7747 (Default %printer and %destructor are not for error or $undefined):
7749 (Default %printer and %destructor are not for $accept): Update.
7750 (Default %printer and %destructor for mid-rule values): Extend.
7751 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7752 (Unused values with default %destructor): Extend.
7754 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7756 Don't apply the default %destructor/%printer to an unreferenced midrule
7758 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7759 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7760 like $@n instead of just @n so that the default %destructor/%printer
7761 logic doesn't see them as user-defined symbols.
7762 (symbol_is_dummy): Check for both forms of the name.
7763 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7764 name for which the midrule value is referenced in any action.
7765 * tests/actions.at (Default %printer and %destructor for mid-rule
7767 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7768 for change to dummy symbol names.
7770 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7772 Warn about unset midrule $$ if the corresponding $n is used.
7773 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7775 (packgram): Before invoking grammar_rule_check on any rule, make sure
7776 all actions have already been scanned in order to set `used' flags.
7777 Otherwise, checking that a midrule's $$ is set will not always work
7778 properly because the midrule check must forward-reference the midrule's
7780 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7783 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7785 More improvements to the documentation of the prologue alternatives:
7786 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7788 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7789 some text to clarify the relative importance of the new directives and
7790 to show how these directives may be viewed as code labels.
7792 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7794 Similar to the recently removed %before-header, add %code-top as the
7795 alternative to the pre-prologue. Mentioned at
7796 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7797 Also, let the prologue alternatives appear in the grammar section.
7798 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7799 (prologue_declaration): Move the existing prologue alternatives to...
7800 (grammar_declaration): ... here and add %code-top.
7801 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7803 Clean up and extend documentation for the prologue alternatives.
7804 * NEWS (2.3a+): Describe prologue alternatives.
7805 * doc/bison.texinfo (Prologue): Move discussion of prologue
7807 (Prologue Alternatives): ... this new section, and extend it to discuss
7808 all 4 directives in detail.
7809 (Table of Symbols): Clean up discussion of prologue alternatives and
7812 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7814 DJGPP specific issues.
7816 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7817 config.bat accordingly.
7818 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7819 * djgpp/config.site: Likewise.
7821 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
7823 Replace %*-header with %provides, %requires, %code. See discussion at
7824 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7826 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7827 (b4_user_start_header): Remove.
7828 * data/glr.c: Use new macros instead of b4_*start_header
7830 * data/glr.cc: Likewise.
7831 * data/lalr1.cc: Likewise.
7832 * data/push.c: Likewise.
7833 * data/yacc.c: Likewise.
7835 * doc/bison.texinfo: Remove %before-header, rename
7836 %{start,end,after}-header to %requires, %provides, %code.
7838 * src/parse-gram.y: Likewise (also rename token names accordingly).
7839 * src/scan-gram.l: Likewise.
7840 * tests/actions.at: Likewise.
7842 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7844 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7845 Problem reported by Joel E. Denny.
7847 2006-10-14 Jim Meyering <jim@meyering.net>
7849 (Sync from coreutils.)
7850 Work also when the working directory (with e.g. coreutils sources)
7851 is version controlled with git, rather than CVS.
7852 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7854 In messages and comments, say e.g., "checked-out sources",
7855 rather than "CVS sources".
7856 (version_controlled_file): New function. Work for git as well as
7857 for CVS. Don't use grep's -q option.
7858 (slurp): Call it here, in place of CVS-specific code.
7860 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7862 Fix testsuite for ./configure --enable-gcc-warnings:
7863 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7864 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7865 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7866 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7867 * test/regression.at (Diagnostic that expects two alternatives):
7870 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7872 * bootstrap.conf (gnulib_modules): Add config-h.
7873 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7874 worry about HAVE_CONFIG_H.
7875 * lib/abitset.c: Likewise.
7876 * lib/bitset.c: Likewise.
7877 * lib/bitset_stats.c: Likewise.
7878 * lib/bitsetv-print.c: Likewise.
7879 * lib/bitsetv.c: Likewise.
7880 * lib/ebitset.c: Likewise.
7881 * lib/get-errno.c: Likewise.
7882 * lib/lbitset.c: Likewise.
7883 * lib/subpipe.c: Likewise.
7884 * lib/timevar.c: Likewise.
7885 * lib/vbitset.c: Likewise.
7886 * lib/bitset.c: Include "bitset.h" first, to test interface.
7887 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7888 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7889 * lib/bitsetv.c: Include "bitsetv.h" first.
7890 * lib/get-errno.c: Include "get-errno.h" first.
7891 * m4/.cvsignore: Add config-h.m4.
7892 * tests/actions.at (Default %printer and %destructor for ...):
7893 Adjust expected line numbers in output to reflect removal of #if
7894 HAVE_CONFIG_H lines.
7895 * tests/glr-regression.at (Missed %merge type warnings when ...):
7897 * tests/regression.at (Braced code in declaration in rules section):
7899 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7900 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7901 Include <config.h> unconditionally.
7903 * bootstrap: Sync from coreutils, as follows:
7905 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7907 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7908 variable was sometimes used without being initialized. This
7909 messed up the installation of the INSTALL file in some cases.
7911 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7913 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7914 --copy. Inspired by a suggestion from Bruno Haible.
7916 2006-10-03 Jim Meyering <jim@meyering.net>
7918 * bootstrap: Undo last change to this file, since now gnulib-tool
7919 sticks with the automake default in generating dependencies.
7921 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7923 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7924 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7926 * doc/bison.1: Add copyright notice.
7928 * data/glr.c: Don't include <stdarg.h>; not used.
7930 * NEWS: The -g and --graph options now output graphs in Graphviz
7931 DOT format, not VCG format.
7932 * doc/bison.1: Likewise.
7933 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
7934 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7936 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
7937 * TODO: Remove Graphviz entry.
7938 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7939 remove vcg.c, vcg.h, vcg_defaults.h.
7940 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7941 * src/graphviz.c, src/graphviz.h: New files.
7942 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7943 * src/files.h: Make comment more generic.
7944 * src/main.c (main): Likewise.
7945 * src/print_graph.h: Likewise.
7946 * src/getargs.c (usage): Make usage description more generic.
7947 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7948 (static_graph, fgraph): Remove. All uses changed to pass
7949 arguments instead of sharing a static var.
7950 (print_core, print_actions, print_state, print_graph):
7951 Output graphviz format rather than VCG format.
7952 * tests/.cvsignore: Remove *.vcg; add *.dot.
7953 * tests/output.at: Expect *.dot files, not *.vcg files.
7955 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7956 accommodates the 2006-10-08 change.
7958 2006-10-11 Bob Rossi <bob@brasko.net>
7960 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7961 (b4_yyssa, b4_yyerror_range): New macros.
7962 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7963 (yypvarsinit): Remove init of removed fields.
7964 (yypushparse): Remove use of removed fields; use new macros instead.
7966 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7968 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7969 in a push parser. Reindent slightly to match yacc.c better.
7971 2006-10-11 Bob Rossi <bob@brasko.net>
7973 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7975 (yypvarsinit, yypushparse): Remove init of removed fields.
7976 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
7978 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7980 * THANKS: Add Paolo Bonzini and Bob Rossi.
7982 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
7984 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7985 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7986 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7987 b4_define_user_cde and uses): Remove.
7988 (b4_comment, b4_prefix, b4_sync_start): New.
7989 * data/bison.m4: New file, with most of the content removed from c.m4.
7990 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7991 * src/output.c (output_skeleton): Pass bison.m4.
7992 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7995 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7997 Fix test failure reported by Tom Lane in
7998 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7999 and try to make such failures easier to catch in the future.
8000 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
8001 that's now the caller's responsibility.
8002 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
8003 Set yychar = YYEOF if it's negative.
8004 * tests/actions.at (yylex): Abort if asked to read past EOF.
8005 * tests/conflicts.at (yylex): Likewise.
8006 * tests/cxx-type.at (yylex): Likewise.
8007 * tests/glr-regression.at (yylex): Likewise.
8008 * tests/input.at (yylex): Likewise.
8009 * tests/regression.at (yylex): Likewise.
8010 * tests/torture.at (yylex): Likewise.
8012 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
8014 Fix problems with translating English-language diagnostics.
8015 * bootstrap: Fix bug introduced in recent bootstrap changes, with
8016 respect to bison-runtime pot generation. The YY_ stuff
8017 wasn't being captured.
8018 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
8019 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
8020 * runtime-po/POTFILES.in: Add data/push.c.
8022 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
8024 Merge bootstrap changes from coreutils.
8026 2006-09-28 Jim Meyering <jim@meyering.net>
8028 Automatically generated dependencies are important even
8029 when all of the sources in a directory come from gnulib.
8030 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8031 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8033 2006-09-23 Jim Meyering <jim@meyering.net>
8035 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8037 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8039 * bootstrap: Add support for --force.
8040 (usage): New function. Describe usage less tersely.
8041 (CVS_only_file): New var.
8043 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8045 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8046 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8047 Adjust white space and comments to match GNU style better.
8049 2006-09-20 Bob Rossi <bob@brasko.net>
8051 * data/push.c (yyresult_get): Remove function.
8052 (YYPUSH_MORE): Add #define.
8053 (yypushparse): Modify return value.
8055 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8057 * stamp-h.in: Remove; no longer needed.
8058 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8059 Remove config.h, config.hin, intl (no longer created).
8060 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8063 Sync bootstrap from coreutils, as follows:
8065 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8067 * bootstrap (symlink_to_gnulib): New function.
8068 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8069 to copies-of-gnulib.
8070 (cp_mark_as_generated, slurp, gnulib_files):
8071 Avoid making a copy if it's the same as the old version.
8072 (gnulib_files): Add support for this variable (used by Bison).
8074 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8076 * src/getargs.c (usage): Rework to use conventions similar to
8077 coreutils, to make translation a bit easier and the code a bit
8078 smaller. Problem reported by Tim Van Holder.
8080 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8082 Use some of gnulib's new modules, taken from coreutils.
8084 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8085 * bootstrap.conf: New file.
8086 (gnulib_modules): Add configmake, inttypes, unistd.
8087 (XGETTEXT_OPTIONS): Add complain, complain_at,
8088 fatal, fatal_at, warn, warn_at, unexpected_end.
8089 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8090 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8092 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8094 (GNULIB_AUTOCONF_SNIPPET): Remove.
8095 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
8097 * lib/.cvsignore: Add inttypes_.h.
8098 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
8099 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
8100 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
8101 no-longer-necessary initializations.
8102 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
8103 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
8104 use the unistd module.
8105 * src/system.h: Likewise.
8106 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
8107 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
8108 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
8109 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
8110 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8111 * src/system.h: Include inttypes.h unconditionally, now that we
8112 use the inttypes module. Don't bother to include stdint.h, since
8113 inttypes.h now does that for us.
8114 (LOCALEDIR): Remove, now that we use the configmake module.
8115 * src/getargs.c: Include configmake.h.
8116 * src/main.c: Likewise.
8117 * src/output.c: Likewise.
8118 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8119 not from $abs_top_builddir, since config.h moved.
8122 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8123 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8125 * src/parse-gram.y (symbol_declaration): Don't put statements
8126 before declarations; it's not portable to C89.
8127 * src/scan-code.l (handle_action_at): Likewise.
8129 * src/scan-code.l: Always initialize braces_level; the old code
8130 left it uninitialized and therefore had undefined behavior.
8132 Don't attempt to redefine 'assert', since it runs afoul of
8133 systems where standard headers (mistakenly) include <assert.h>.
8134 Instead, define and use our own alternative, called 'aver'.
8135 * src/reader.c: Don't include assert.h, since we no longer
8137 * src/scan-code.l: Likewise.
8138 * src/system.h (assert): Remove, replacing with....
8139 (aver): New function, taking a bool arg. All uses changed.
8140 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8141 not merely an integer.
8143 2006-09-15 Bob Rossi <bob@brasko.net>
8145 Add support for push parsing. Based on the original work of
8146 Odd Arild Olsen <oao@fibula.no>.
8147 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8148 * data/c.m4 (YYPUSH): New.
8149 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
8150 * data/push.c: New file.
8151 * src/getargs.c (push_parser): New var.
8152 * src/getargs.h (push_parser): New declaration.
8153 * src/output.c (prepare): Add macro insertion of `push_flag'.
8154 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8155 (prologue_declaration): Parse %push-parser.
8156 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8157 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8158 list of removed lines from the traces observed.
8159 (AT_CHECK_CALC_LALR): Added push parser tests.
8161 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8163 * NEWS: Version 2.3a.
8164 * configure.ac (AC_INIT): Likewise.
8166 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8167 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8168 due to header ordering dependencies. I don't know why the #define
8171 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8172 runtime cost when YYDEBUG is not defined, and so that some tests
8173 that used to fail now work. Problem and initial suggestion by
8175 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8176 * data/glr.cc (b4_parser_class_name):
8177 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8178 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8179 (yydebug_) [YYDEBUG]: New member.
8180 (yycdebug_): Now defined only if YYDEBUG.
8181 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8182 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8183 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8185 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8186 Define only if YYDEBUG.
8187 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8189 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8190 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8191 AT_CHECK_CALC_GLR_CC that are working now.
8193 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8195 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8196 We don't need them in glr.cc, and glr.c defines them.
8197 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8198 assumes that defining it to anything is the same as defining
8199 it to 1. Problem reported by Paolo Bonzini.
8201 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8203 * data/c.m4 (b4_null, b4_case): Define.
8204 * src/output.c (prepare_symbols): Use b4_null.
8205 (user_actions_output): Use b4_case.
8207 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8209 * data/glr.c (b4_shared_declarations): Put start-header first,
8210 before any #includes that we generate, so that feature-test
8211 macros work. Problem reported by Michael Deutschmann in
8212 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8213 * data/lalr1.cc: Likewise.
8214 * doc/bison.texinfo (Prologue): Document that feature-test macros
8215 should be defined before any Bison declarations.
8216 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8217 that depend on location.hh after, not before, Bison decls, since
8218 we now include location.hh after the first user prologue.
8220 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8221 Sander Brandenburg in
8222 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8223 Also, fix minor white space and comment issues.
8224 (Prologue): Mention that it's better to define feature-test macros
8225 before Bison declarations. Problem reported by Michael Deutschmann.
8227 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8229 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8230 This adjusts to recent gnulib changes.
8232 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8234 Finish implementation of per-type %destructor/%printer. Discussed
8236 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8238 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8239 * NEWS (2.3+): Add a description of this feature to the default
8240 %destructor/%printer description.
8241 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8242 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8243 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8244 list node contains a semantic type.
8245 * src/symtab.c, src/symtab.h: Extend with a table that associates
8246 semantic types with their %destructor's and %printer's.
8247 (semantic_type_from_uniqstr, semantic_type_get,
8248 semantic_type_destructor_set, semantic_type_printer_set): New functions
8249 composing the public interface of that table.
8250 (symbol_destructor_get, symbol_destructor_location_get,
8251 symbol_printer_get, symbol_printer_location_get): If there's no
8252 per-symbol %destructor/%printer, look up the per-type before trying
8254 * tests/actions.at (Per-type %printer and %destructor): New test case.
8255 * tests/input.at (Default %printer and %destructor redeclared):
8256 Extend to check that multiple occurrences of %symbol-default in a
8257 single %destructor/%printer declaration is an error.
8258 (Per-type %printer and %destructor redeclared, Unused values with
8259 per-type %destructor): New test cases.
8261 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8263 Require default %destructor/%printer to be declared using
8264 %symbol-default instead of an empty symbol list, and start working on
8265 new per-type %destructor/%printer. Discussed at
8266 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8267 * NEWS (2.3+): Add %symbol-default to example.
8268 * bison.texinfo (Freeing Discarded Symbols): Likewise.
8269 (Table of Symbols): Add entry for %symbol-default.
8270 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8271 (generic_symlist, generic_symlist_item): New nonterminals for creating
8272 a list in which each item is a symbol, semantic type, or
8274 (grammar_declaration): Use generic_symlist in %destructor and %printer
8275 declarations instead of symbols.1 or an empty list.
8276 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8277 for changes to symbol_list.
8278 * src/reader.c: Update for changes to symbol_list.
8279 * src/scan-code.l: Likewise.
8280 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8281 * src/symlist.c, src/symlist.h: Extend such that a list node may
8282 represent a semantic type or a %symbol-default in addition to just an
8283 ordinary symbol. Add switched functions for setting %destructor's and
8285 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8286 %destructor/%printer declarations.
8288 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8290 Whether the default %destructor/%printer applies to a particular symbol
8291 isn't a question of whether the user *declares* that symbol (in %token,
8292 for example). It's a question of whether the user by any means
8293 *defines* the symbol at all (by simply using a char token, for
8294 example). $end is defined by Bison whereas any other token with token
8295 number 0 is defined by the user. The error token is always defined by
8296 Bison regardless of whether the user declares it with %token, but we
8297 may one day let the user define error as a nonterminal instead.
8298 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8299 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8300 the meaning of "user-defined".
8301 * tests/actions.at (Default %printer and %destructor for user-declared
8302 end token): Rename to...
8303 (Default %printer and %destructor for user-defined end token): ...
8306 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8307 computation of whether to apply the default, don't maintain a list of
8308 every Bison-defined symbol. Instead, just check for a first character
8309 of '$', which a user symbol cannot have, and check for the error token.
8311 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8313 Don't apply the default %destructor or %printer to the error token,
8314 $undefined, or $accept. This change fits the general rule that the
8315 default %destructor and %printer are only for user-declared symbols,
8316 and it solves several difficulties that are described in the new test
8318 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8319 * tests/actions.at (Default %printer and %destructor are not for error
8320 or $undefined, Default %printer and %destructor are not for $accept):
8323 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8325 Allow %start after the first rule.
8326 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8327 when parsing the first rule.
8328 (check_and_convert_grammar): Search for it here after all grammar
8329 declarations have been parsed. Skip midrules, which have dummy LHS
8331 * src/symtab.c (symbol_is_dummy): New function.
8332 * src/symtab.h (symbol_is_dummy): Declare it.
8333 * tests/input.at (%start after first rule): New test.
8335 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8337 Redo some of the previous commit: add back the ability to use
8338 non-aliased/undeclared string literals since it might be useful to
8339 those declaring %token-table.
8340 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8341 commit: don't worry about complaints from symbols_pack.
8342 * src/symtab.c (symbol_new, symbol_class_set,
8343 symbol_check_alias_consistency): Undo changes in previous commit: count
8344 each string literal as a new symbol and token, assign it a symbol
8345 number, and don't complain about non-aliased string literals.
8346 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8347 and token counts but does still set aliased tokens to the same number,
8348 symbol_pack_processor now leaves empty slots in the symbols array.
8350 * tests/regression.at (Undeclared string literal): Remove test case
8351 added in previous commit since non-aliased string literals are allowed
8353 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8354 remove unnecessary string literal declarations.
8355 * tests/sets.at (Firsts): Likewise.
8357 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8359 Don't allow an undeclared string literal, but allow a string literal to
8360 be used before its declaration.
8361 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8362 symbols_pack complained.
8363 * src/symtab.c (symbol_new): Don't count a string literal as a new
8365 (symbol_class_set): Don't count a string literal as a new token, and
8366 don't assign it a symbol number since symbol_make_alias does that.
8367 (symbol_make_alias): It's not necessary to decrement the symbol and
8368 token counts anymore. Don't assume that an alias declaration occurs
8369 before any uses of the identifier or string, and thus don't assert that
8370 one of them has the highest symbol number so far.
8371 (symbol_check_alias_consistency): Complain if there's a string literal
8372 that wasn't declared as an alias.
8373 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8374 symbol_pack asserts that every token has been assigned a symbol number
8375 although undeclared string literals have not.
8376 * tests/regression.at (String alias declared after use, Undeclared
8377 string literal): New test cases.
8378 (Characters Escapes, Web2c Actions): Declare string literals as
8380 * tests/sets.at (Firsts): Likewise.
8382 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8384 In the grammar scanner, STRING_FINISH unclosed constructs and return
8385 them to the parser in order to improve error messages.
8386 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8387 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8388 * tests/input.at (Unclosed constructs): New test case.
8389 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8392 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8395 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8397 Handle string aliases for character tokens correctly.
8398 * src/symtab.c (symbol_user_token_number_set): If the token has an
8399 alias, check and set its alias's user token number instead of its own,
8400 which is set to indicate the alias. Previously, every occurrence of
8401 the character token in the grammar overwrote that alias indicator with
8403 * tests/input.at (String aliases for character tokens): New test.
8405 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8407 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8409 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8411 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8412 to prevent failures when building on older platforms.
8413 Check for autopoint failure.
8414 Set XGETTEXT_OPTIONS to values that check for C format strings,
8415 so that translators are warned about them (this also helps
8416 prevent core dumps).
8418 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8419 function, since it simplifies our code a bit.
8421 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8422 rather than -W, so we don't get bogus warnings about sign comparisons.
8423 Add -Wpointer-arith, since that warning is useful (it reports code
8424 that does not conform to C89 and that some compilers reject).
8425 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8426 since it's no longer needed.
8428 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8430 Clean up scanners a bit.
8431 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8432 definitions so gcc won't warn when obstack_for_string is unused.
8433 * src/scan-code.l: config.h and system.h are already #include'd by
8434 scan-code-c.c, so get rid of them here.
8435 * src/scan-gram.l: Likewise.
8436 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8437 definitions rather than duplicating the rest of it.
8438 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8440 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8442 Suppress signed/unsigned comparison warnings for yycheck.
8443 * data/c.m4 (b4_safest_int_type): New macro.
8444 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8445 a signed int type, cast it to b4_safest_int_type first.
8446 * data/yacc.c: Likewise.
8447 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8450 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8452 * doc/bison.texinfo: Fix some typos.
8454 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8456 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8457 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8459 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8460 the latest gnulib does this a different way.
8461 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8462 translation was patched, so stop omitting it.
8464 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8466 Enable declaration of default %printer/%destructor. Make the parser
8467 use these for all user-declared grammar symbols for which the user does
8468 not declare a specific %printer/%destructor. Thus, the parser uses it
8469 for token 0 if the user declares it but not if Bison generates it as
8470 $end. Discussed starting at
8471 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8472 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8474 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8475 * NEWS (2.3+): Mention.
8476 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8477 declare a %destructor for a mid-rule's semantic value. It's just
8478 impossible to declare one specific to it.
8479 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8480 code. Describe default %destructor form.
8481 * src/parse-gram.y (grammar_declaration): Parse default
8482 %printer/%destructor declarations.
8483 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8484 and symbol_destructor_location_get rather than accessing the destructor
8485 and destructor_location members of struct symbol.
8486 (symbol_printers_output): Likewise but for %printer's.
8487 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8489 * src/symtab.c (default_destructor, default_destructor_location,
8490 default_printer, default_printer_location): New static global
8491 variables to record the default %destructor and %printer.
8492 (symbol_destructor_get, symbol_destructor_location_get,
8493 symbol_printer_get, symbol_printer_location_get): New functions to
8494 compute the appropriate %destructor and %printer for a symbol.
8495 (default_destructor_set, default_printer_set): New functions to set the
8496 default %destructor and %printer.
8497 * src/symtab.h: Prototype all those new functions.
8498 * tests/actions.at (Default %printer and %destructor): New test to
8499 check that the right %printer and %destructor are called, that they're
8500 not called for $end, and that $$ and @$ work correctly.
8501 (Default %printer and %destructor for user-declared end token): New
8502 test to check that the default %printer and %destructor are called for
8503 a user-declared end token.
8504 * tests/input.at (Default %printer and %destructor redeclared, Unused
8505 values with default %destructor): New tests to check related grammar
8506 warnings and errors.
8508 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8510 Clean up handling of %destructor for the end token (token 0).
8511 Discussed starting at
8512 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8514 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8516 Make the skeletons consistent in how they pop the end token and invoke
8518 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8519 state, which has token number 0, since this would invoke the
8520 %destructor for the end token.
8521 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8522 until after shifting the end token, or else it won't be popped.
8523 * data/yacc.c (yyparse): Likewise.
8525 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8526 it's the end token. Upon termination, destroy an unshifted lookahead
8527 even when it's the end token.
8528 * data/lalr1.cc (yy::parser::parse): Likewise.
8529 * data/yacc.c (yyparse): Likewise.
8531 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8532 value warnings for the end token when the user gives the end token a
8535 * tests/actions.at (Printers and Destructors): Test all the above.
8537 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8539 Update to latest gnulib and gettext versions.
8540 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8542 (gnulib_files): Add m4/warning.m4. Don't worry about files
8543 overwritten by autopoint.
8544 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8545 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8547 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8548 so that we can remove the intl files at a better time.
8549 (intl_files_to_remove): Remove aclocal.m4, since it gets
8550 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8551 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8552 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8553 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8554 Remove datarootdir hack; no longer needed.
8555 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8556 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8557 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8559 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8560 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8562 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8564 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8565 it with --assume-autoconf='latest-stable'.
8567 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8569 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8570 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8572 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8573 those from muscle_tab.c since the old ones are misleading.
8575 2006-07-13 Akim Demaille <akim@epita.fr>
8577 Support %define "KEY" {VALUE}.
8578 * src/scan-code.h, src/scan-code.l (translate_action)
8579 (translate_rule_action, translate_symbol_action, translate_code):
8580 Return char *, not const char *.
8581 * src/parse-gram.y (declaration): Rename as...
8582 (prologue_declaration): this.
8583 (string_content): Remove this nonterminal, use STRING.
8584 (braceless, content, content.opt): New nonterminal.
8586 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8588 * src/scan-gram.l (getargs.h): Don't include it.
8590 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8592 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8593 rather than a for-loop that declares a local bool variable. This
8594 should work around a compatibility problem with a Cray x1e C++
8595 compiler reported by Hung Nguyen in
8596 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8597 The for-loop was introduced in the 2004-11-17 change but I don't
8598 know why it was needed.
8600 2006-07-12 Akim Demaille <akim@epita.fr>
8602 * data/c.m4: Comment changes.
8604 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
8606 * src/complain.c (error_message, ERROR_MESSAGE): New.
8608 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8609 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8611 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8613 * NEWS: Instead of %union, you can define and use your own union type
8614 YYSTYPE if your grammar contains at least one <type> tag.
8615 Your YYSTYPE need not be a macro; it can be a typedef.
8616 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8617 (Union Decl, Decl Summary): Document this.
8618 * data/glr.c (YYSTYPE): Implement this.
8619 * data/glr.cc (YYSTYPE): Likewise.
8620 * data/lalr1.cc (YYSTYPE): Likewise.
8621 * data/yacc.c (YYSTYPE): Likewise.
8622 * src/output.c (prepare): Output tag_seen_flag.
8623 * src/parse-gram.y (declaration, grammar_declaration):
8624 Use 'union_seen' rather than 'typed' to determine whether
8625 %union has been seen, since grammars can now be typed without
8627 (symbol_declaration, type.opt, symbol_def):
8628 Keep track of whether a tag has been seen.
8629 * src/reader.c (union_seen, tag_seen): New vars.
8631 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8632 * src/scan-code.l (untyped_var_seen): New variable.
8633 (handle_action_dollar): Adjust to above changes.
8634 (handle_action_dollar, handle_action_at):
8635 Improve overflow checking for outlandish numbers.
8636 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8637 avoid new diagnostics generated by above changes.
8638 * tests/regression.at (YYSTYPE typedef): Add test to check
8639 for type tags without %union.
8641 * src/symlist.c (symbol_list_length): Return int, not unsigned
8642 int, since callers expect int. This may need to get revisited
8643 once we have proper integer overflow checking.
8645 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8646 object is now static.
8648 * src/getargs.c (flags_argmatch): Return void, not int,
8649 to pacify ./configure --enable-gcc-warnings.
8651 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8652 since last_string is already defined to FLEX_PREFIX (last_string).
8654 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8656 Implement --warnings/-W.
8657 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8659 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8661 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8662 (warnings_args, warnings_types): New.
8663 (getargs, short_options, long_options): Accept -W/--warnings.
8664 Sort the options by alphabetical order, upper case letter right
8665 before its lower case.
8667 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8669 Change %merge result type clash warnings to errors. Discussed at
8670 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8671 * src/reader.c (record_merge_function_type): Use complain_at.
8672 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8673 declared later): Update test case results.
8675 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8677 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8678 to be in alphabetical order.
8679 (trace_args): Spelling fixes.
8681 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8683 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8684 so they don't collide with user-defined macros.
8685 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8686 this was never guaranteed, and now that we're using gnulib stdint,
8687 which defines int_fast16_t to long int, the problem is exposed.
8689 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8691 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8692 need the full POSIX semantics (and weren't implementing them
8695 Adjust to Autoconf 2.60 and today's gnulib.
8696 * bootstrap (gnulib_modules): Add stdint.
8697 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8698 no longer copies it.
8699 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8700 since stdint needs the former and wcwidth (which is now required
8701 by mbswidth) needs the latter.
8702 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8703 work around a compatibility glitch between gettext 0.14.6 and
8705 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8706 Do not check for uintptr_t, since new stdint module does the right
8708 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8709 Add stdint.h, stdint_.h, wcwidth.h.
8710 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8711 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8712 stdint.m4, wchar_t.m4, wcwidth.m4.
8713 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8714 usual order for ../lib/*.h files.
8715 (file_name_split): Use last_component, not base_name, to adjust
8717 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8718 for ../lib/*.h files.
8719 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8720 Define unconditionally, since we now assume the stdint module.
8721 * src/scan-skel.l: Include <dirname.h>.
8722 (BASE_QPUTS): Use last_component, not base_name.
8723 * src/system.h: Include <unlocked-io.h> in the usual order
8724 for ../lib/*.h files. Include <stdint.h> unconditionally,
8725 since we now use the stdint module.
8726 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8727 HAVE_UINTPTR_T, since we now use the stdint module.
8728 (base_name): Remove decl, since files now include <dirname.h>
8731 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8733 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8735 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8736 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8738 * tests/calc.at: Adjust.
8740 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8742 * data/c.m4 (b4_basename): New.
8743 (b4_syncline): Also output the location of its invocation (from
8745 (b4_user_action, b4_define_user_action, b4_user_actions)
8746 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8747 (b4_user_stype): New.
8748 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8750 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8752 In the grammar file, the first column is 1 not 0 on the first line as
8753 on every other line.
8754 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8755 * tests/input.at (Torturing the Scanner): Update output.
8757 * src/scan-gram.l (scanner_cursor): Declare it static.
8759 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8761 In warnings, say "previous declaration" rather than "first
8763 * src/symtab.c (redeclaration): Do that here.
8764 * src/reader.c (record_merge_function_type): In the case of a result
8765 type clash, report the previous declaration rather than the very first
8766 one in the grammar file.
8767 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8768 declared later): Add a third declaration to check this behavior.
8769 * tests/input.at (Incompatible Aliases): Update output.
8771 2006-06-27 Akim Demaille <akim@epita.fr>
8773 * doc/Doxyfile.in: New.
8774 * doc/Makefile.am: Use it.
8775 * src/lalr.h, src/symtab.h: Initial doxygenation.
8777 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8779 Don't miss %merge result type warnings just because the LHS types are
8780 declared after the %merge. This continues the effort of the previous
8782 * src/reader.c (get_merge_function): Don't set the merger type yet.
8783 (record_merge_function_type): New function for setting the merger type
8784 and checking for clashes.
8785 (grammar_current_rule_merge_set): Set the location of the %merge for
8787 (packgram): Invoke record_merge_function_type for each rule now that
8788 all symbol type declarations have been parsed.
8789 * src/reader.h (merger_list.type_declaration_location): New member
8790 storing the location of the first %merge from which the type for this
8791 merging function was derived.
8792 * src/symlist.h (symbol_list.merger_declaration_location): New member
8793 storing the location of a rule's %merge, if any.
8794 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8795 declared later): New test to catch the error fixed by the above patch.
8797 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8799 Get action warnings (grammar_rule_check) right even when symbol
8800 declarations appear after the rules. Discussed at
8801 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8803 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8804 Don't mistake the type of $$ in a midrule to be that of its parent
8806 * src/reader.c (grammar_current_rule_end): Don't invoke
8807 grammar_rule_check yet since not all symbol declarations may have been
8809 (grammar_midrule_action): Likewise.
8810 Don't record whether the midrule's $$ has been used yet since actions
8811 haven't been translated yet.
8812 Record the midrule's parent rule and its RHS index within the parent
8814 (grammar_current_rule_action_append): Don't translate the action yet
8815 since not all symbol declarations may have been parsed yet and, thus,
8816 warnings about types for $$, $n, @$, and @n can't be reported yet.
8817 (packgram): Translate the action and invoke grammar_rule_check now that
8818 all symbol declarations have been parsed.
8819 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8820 after parsing the entire grammar file, the symbol list here in the case
8821 of a midrule is actually the midrule's empty RHS, so reference its
8822 parent rule's RHS where necessary.
8823 On the other hand, now that you can already know it's a midrule, you
8824 aren't forced to think $$ has the same type as its parent rule's $$.
8825 (handle_action_at): In the case of a midrule, reference the parent rule
8827 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8829 (symbol_list_length): Now that this is invoked after all rules have
8830 been parsed, a NULL symbol (rather than a NULL symbol list node)
8831 terminates a rule. symbol_list_print already does this correctly.
8832 * src/symlist.h (symbol_list.midrule_parent_rule,
8833 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8834 remember their relationships with their parents.
8835 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8836 fixed by the above patch.
8837 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8839 (Unused values): ... this old test case and...
8840 (Unused values before symbol declarations): ... this new test case.
8841 This one is the same as `Unused values' except that all symbol
8842 declarations appear after the rules in order to catch the rest of the
8843 errors fixed by the above patch.
8845 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8848 * src/reader.c (current_rule): Declare it static since it's no longer
8849 used outside this file.
8850 (grammar_current_rule_action_append): Remove redundant arguments from
8851 translate_rule_action invocation.
8852 * src/reader.h (current_rule): Remove this unused extern.
8853 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8854 * src/scan-code.l (translate_rule_action): Likewise.
8856 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8858 Clean up yesterday's patch.
8859 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8861 * src/reader.c (grammar_current_rule_action_append): ... here for
8862 consistency with grammar_current_rule_symbol_append.
8863 * tests/regression.at (Braced code in declaration in rules section):
8864 Make yyerror and yylex static as usual.
8866 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8868 Fix bug that mistakes braced code in a declaration in the rules section
8869 to be a rule action. Mentioned at
8870 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8871 * src/scan-gram.l: Move midrule action detection from the start of the
8872 scanning of any braced code to...
8873 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8874 action. For readability, use $2 and @2 rather than the equivalent
8876 * tests/regression.at (Braced code in declaration in rules section):
8877 New test to catch the error fixed by the above patch.
8879 Work on code readability some.
8880 * src/scan-code.l (current_rule): Get rid of this misleading and
8881 redundant declaration: it's actually extern'ed in reader.h.
8882 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8883 translate_action): Add a rule argument and use it instead of the global
8885 (translate_rule_action): This already receives current_rule through an
8886 argument, so pass it on to translate_action instead of assigning
8887 current_rule to current_rule.
8888 (translate_symbol_action, translate_code): Pass rule = NULL to
8891 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8893 Rename %before-definitions to %start-header and %after-definitions to
8894 %end-header. Don't use these declarations to separate pre-prologue
8895 blocks from post-prologue blocks. Add new order-independent
8896 declarations %before-header and %after-header as alternatives to the
8897 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8898 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8899 * NEWS (2.3+): Update for these changes.
8900 * data/glr.c (b4_before_definitions): Update to...
8901 (b4_start_header): ... this.
8902 (b4_after_definitions): Update to...
8903 (b4_end_header): ... this.
8904 * data/glr.cc: Likewise.
8905 * data/lalr1.cc: Likewise.
8906 * data/yacc.c: Likewise.
8907 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8908 prologue blocks with %*-header declarations.
8909 (Calc++ Parser): Likewise.
8910 (Decl Summary): Update names.
8911 (Table of Symbols): Update description.
8912 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8913 (PERCENT_END_HEADER): ... this.
8914 (PERCENT_BEFORE_DEFINITIONS): Update to...
8915 (PERCENT_START_HEADER): ... this.
8916 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8917 (declaration): Update token names and m4 macro names.
8918 When parsing %end-header and %start-header, invoke translate_code
8919 before muscle_code_grow, and no longer set global booleans to remember
8920 whether these declarations have been seen.
8921 Parse new %after-header and %before-header.
8922 * src/reader.c (before_definitions, after_definitions): Remove.
8923 (prologue_augment): Accept a new bool argument to specify whether to
8924 augment the pre-prologue or post-prologue.
8925 * src/reader.h (before_definitions, after_definitions): Remove these
8927 (prologue_augment): Add new bool argument.
8928 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8929 (PERCENT_END_HEADER): ... this.
8930 (PERCENT_BEFORE_DEFINITIONS): Update to...
8931 (PERCENT_START_HEADER): ... this.
8932 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8933 * tests/actions.at (Printers and Destructors): Update names.
8935 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8937 Add comparison operators for C++ location classes. Discussed at
8938 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8939 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8940 declaration indicating whether filename_type has an operator==. If
8941 filename_type is `std::string', it defaults to `1', `0' otherwise.
8942 * data/location.cc: Iff b4_define_location_comparison is `1', add
8943 operator== and operator!= for class position and for class location.
8946 * src/scan-action.l: Remove unused file.
8947 * src/symtab.c (symbol_printer_set): Use printer_location not
8948 destructor_location.
8949 * src/symtab.h (struct symbol): Replace incorrect source comment for
8951 * tests/input.at (Incompatible Aliases): Update output with correct
8954 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8956 Don't put the pre-prologue in the header file. For the yacc.c code
8957 file and the glr.c header and code files, move the pre-prologue before
8958 the token definitions. Add new %before-definitions and
8959 %after-definitions to declare code that will go in both the header file
8960 and code file. Discussed at
8961 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8962 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8964 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8965 * NEWS (2.3+): Describe these changes.
8966 * data/glr.c (b4_pre_prologue): Move from within to before...
8967 (b4_shared_declarations): ... this.
8968 Add new b4_before_definitions before b4_token_enums.
8969 Add new b4_after_definitions at the end.
8970 * data/glr.cc (b4_pre_prologue): Replace with...
8971 (b4_before_definitions): ... this in the header file.
8972 (b4_after_definitions): New near the end of the header file.
8973 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8974 code file right before including the header file.
8975 (b4_before_definitions): New in the previous position of
8976 b4_pre_prologue in the header file.
8977 (b4_after_definitions): New near the end of the header file.
8978 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8979 (b4_token_enums_defines): In the code file, move to right before
8980 YYSTYPE for consistency with the header file.
8981 (b4_before_definitions): New right before b4_token_enums_defines in
8982 both the header and code file.
8983 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8984 header and code file.
8985 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8986 of prologues for %union dependencies.
8987 (Decl Summary): In %defines description, mention the effect of
8988 %before-definitions and %after-definitions on the header file.
8989 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8990 than in the pre-prologue so that make check succeeds.
8991 (Table of Symbols): Add entries for %before-definitions and
8993 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8994 %before-definitions.
8995 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8996 (declaration): Parse those declarations and append to
8997 b4_before_definitions and b4_after_definitions, respectively.
8998 * src/reader.c (before_definitions, after_definitions): New bools to
8999 track whether those declarations have been seen.
9000 (prologue_augment): Add to the post-prologue if %union,
9001 %before-definitions, or %after-definitions has been seen.
9002 * src/reader.h (before_definitions, after_definitions): New extern's.
9003 * src/scan-gram.l: Scan the new declarations.
9004 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
9005 prologue block in a %before-definitions or a %after-definitions based
9006 on whether the %union is declared.
9007 * tests/regression.at (Early token definitions with --yacc, Early token
9008 definitions without --yacc): Move tests for token definitions into the
9009 post-prologue since token names are no longer defined in the
9012 2006-06-20 Akim Demaille <akim@epita.fr>
9014 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
9015 (symbol_get): Use it.
9016 * src/parse-gram.y: Use it.
9018 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
9020 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
9021 build succeeds when configured with --enable-gcc-warnings.
9023 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9025 * src/parse-gram.y (char_name): New function.
9026 (CHAR, STRING, string_content): For %printer, properly escape.
9027 (ID): Prefer fputs to fprintf.
9028 (id): Reindent to be consistent with other rules.
9029 Properly quote char.
9031 The Translation Project changed its way of publishing translations
9032 to maintainers. I haven't received any responses to my request
9033 for supporting the old way, or for documenting the new way. I
9034 have modified 'bootstrap' to use screen scraping
9035 (in this case, HTML scraping). This is unreliable and inelegant,
9036 but I don't see any better way. Yuck.
9037 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9038 (get_translations): New function, which uses HTML scraping to
9039 deduce locations of latest translations.
9040 Use this function to grab both bison and bison-runtime .po files.
9041 Don't bother priming the pump for the runtime-po domain any more,
9042 as it's now translated better than bison is.
9044 2006-06-19 Akim Demaille <akim@epita.fr>
9046 * src/scan-gram.l: No longer "parse" things after `%union' until
9047 `{'. Rather, return a single "%union" token.
9048 No longer make symbols: return strings, and leave the conversion
9049 to symbols to the parser.
9050 (SC_PRE_CODE, token_type): Remove.
9051 * src/parse-gram.y (%union): New field `character'.
9054 (ID, ID_COLON): Now that the scanner no longer makes them
9055 identifiers, adjust all uses to invoke symbol_get.
9056 (id_colon): New, wraps the conversion from string to symbol.
9057 (%union): Accept a possible union_name.
9058 (symbol): Now can be a char.
9059 * data/c.m4 (b4_union_name): Leave a default value.
9060 * data/glr.c, data/yacc.c: Use it.
9062 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9064 For associating token numbers with token names for "yacc.c", don't use
9065 #define statements unless `--yacc' is specified; always use enum
9066 yytokentype. Most important discussions start at:
9067 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9068 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9070 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9071 * NEWS (2.3+): Mention.
9072 * data/c.m4 (b4_yacc_if): New.
9073 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9075 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9076 on token name definitions.
9077 * src/getargs.c (usage): Capitalize `Yacc' in English.
9078 * src/output.c (prepare): Define b4_yacc_flag.
9079 * tests/regression.at (Early token definitions): Test that tokens names
9080 are defined before the pre-prologue not just before the post-prologue.
9081 Remove this test case and copy to...
9082 (Early token definitions with --yacc): ... this to test #define's.
9083 (Early token definitions without --yacc): ... and this to test enums.
9085 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9087 * NEWS: Reword the post-2.3 change to not be so optimistic about
9088 removing the old "look-ahead" spelling.
9089 Update previous look-ahead/lookahead change reports.
9090 * REFERENCES: look-ahead -> lookahead (since that's
9091 what he actually wrote).
9092 * doc/refcard.tex: look ahead -> lookahead,
9093 look-ahead -> lookahead
9095 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
9097 For consistency, use `lookahead' instead of `look-ahead' or
9098 `look_ahead'. Discussed starting at
9099 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
9101 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
9102 * NEWS: For the next release, note the change to `--report'.
9103 * TODO, doc/bison.1: Update English.
9104 * doc/bison.texinfo: Update English.
9105 (Understanding Your Parser, Bison Options): Document as
9106 `--report=lookahead' rather than `--report=look-ahead'.
9107 * src/conflicts.c: Update English in comments.
9108 (lookahead_set): Rename from look_ahead_set.
9109 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
9110 (resolve_sr_conflict): Rename local look_ahead_tokens to
9111 lookahead_tokens, and update other uses.
9112 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9113 count_rr_conflicts, conflicts_free): Update uses.
9114 * src/getargs.c (report_args): Move "lookahead" before alternate
9116 (report_types): Update uses.
9117 (usage): For `--report' usage description, state `lookahead' spelling
9118 rather than `look-ahead'.
9119 * src/getargs.h (report.report_lookahead_tokens): Rename from
9120 report_look_ahead_tokens.
9121 * src/lalr.c: Update English in comments.
9122 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9123 (state_lookahead_tokens_count): Rename from
9124 state_look_ahead_tokens_count.
9125 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9126 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9127 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9129 Update English in output.
9130 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9131 * src/print.c: Update English in comments.
9132 (lookahead_set): Rename from look_ahead_set.
9133 (print_reduction): Rename argument lookahead_token from
9135 (print_core, state_default_rule, print_reductions, print_results):
9137 * src/print_graph.c: Update English in comments.
9138 (print_core): Update uses.
9139 * src/state.c: Update English in comments.
9140 (reductions_new): Update uses.
9141 (state_rule_lookahead_tokens_print): Rename from
9142 state_rule_look_ahead_tokens_print, and update other uses.
9143 * src/state.h: Update English in comments.
9144 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9145 (state_rule_lookahead_tokens_print): Rename from
9146 state_rule_look_ahead_tokens_print.
9147 * src/tables.c: Update English in comments.
9148 (conflict_row, action_row): Update uses.
9149 * tests/glr-regression.at
9150 (Incorrect lookahead during deterministic GLR,
9151 Incorrect lookahead during nondeterministic GLR): Rename
9152 print_look_ahead to print_lookahead.
9153 * tests/torture.at: Update English in comments.
9154 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9155 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9156 (Many lookahead tokens): Update uses.
9157 * data/glr.c: Update English in comments.
9158 * lalr1.cc: Likewise.
9160 * src/conflicts.h: Likewise.
9161 * src/lalr.h: Likewise.
9162 * src/main.c: Likewise.
9163 * src/output.c: Likewise.
9164 * src/parse-gram.c: Likewise.
9165 * src/tables.h: Likewise.
9166 * tests/calc.at: Likewise.
9168 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9170 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9172 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9174 * TODO: Add request from Nelson H. F. Beebe to be able to install
9175 Bison without installing the yacc script.
9177 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9179 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9180 and yytext if they're already #define'd.
9181 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9182 * src/scan-code-c.c: ... here.
9183 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9186 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9188 Get Bison to build again when configured with --enable-gcc-warnings.
9189 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9191 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9192 loc argument as it shadows a global.
9193 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9196 * src/.cvsignore: Add scan-code.c.
9198 2006-06-07 Akim Demaille <akim@epita.fr>
9200 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9202 * src/scan-code.l: here.
9203 * tests/input.at (Torturing the Scanner): Fix another location
9206 2006-06-07 Akim Demaille <akim@epita.fr>
9208 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9210 2006-06-06 Akim Demaille <akim@epita.fr>
9212 Extract the parsing of user actions from the grammar scanner.
9213 As a consequence, the relation between the grammar scanner and
9214 parser is much simpler. We can also split "composite tokens" back
9216 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9217 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9219 * src/location.h, src/location.c (add_column_width)
9220 (location_compute): these.
9221 Fix the column count: the initial column is 0.
9222 (location_print): Be robust to ending column being 0.
9223 * src/location.h (boundary_set): New.
9224 * src/main.c: Adjust to scanner_free being renamed as
9226 * src/output.c: Include scan-code.h.
9227 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9229 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9230 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9231 which is now, again, a separate token.
9232 Adjust all dependencies.
9233 Whereever actions with $ and @ are used, use translate_code.
9234 (action): Remove this nonterminal which is now useless.
9235 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9236 (grammar_current_rule_action_append): Use translate_code.
9237 (packgram): Bound check ruleno, itemno, and rule_length.
9238 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9239 (last_string, last_braced_code_loc, max_left_semantic_context)
9240 (scanner_initialize, scanner_free, scanner_last_string_free)
9241 (gram_out, gram_lineno, YY_DECL_): Move to...
9242 * src/scan-gram.h: this new file.
9243 (YY_DECL): Rename as...
9245 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9246 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9247 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9248 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9249 Move these declarations, and...
9250 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9252 * src/flex-scanner.h: this new file.
9253 * src/scan-gram.l (rule_length, rule_length_overflow)
9254 (increment_rule_length): Remove.
9255 (last_braced_code_loc): Rename as...
9256 (gram_last_braced_code_loc): this.
9257 Adjust to the changes of the parser.
9258 Move all the handling of $ and @ into...
9259 * src/scan-code.l: here.
9260 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9261 (handle_action_dollar, handle_action_at): Move to...
9262 * src/scan-code.l: here.
9263 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9264 scan-code.h, scan-code-c.c, scan-gram.h.
9265 (EXTRA_bison_SOURCES): Add scan-code.l.
9266 (BUILT_SOURCES): Add scan-code.c.
9267 (yacc): Be robust to white spaces.
9269 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9270 * tests/regression.at: Adjust the column numbers.
9271 * tests/regression.at: Adjust the error message.
9273 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9275 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9276 Use Akim's wording from
9277 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9279 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9281 Between Bison releases, manually append `+' to the previous Bison
9282 release number, and use that as a signal to automatically print the
9283 ChangeLog's CVS Id keyword from --version. Discussed starting at
9284 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9285 * ChangeLog: Add Id header.
9286 * configure.ac (AC_INIT): Append `+' to `2.3'.
9287 * src/.cvsignore: Add revision.c.
9288 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9289 (BUILT_SOURCES): Add revision.c.
9290 (revision.c): New target rule. This file defines a new global variable
9291 named revision. It initializes it with either the Id from ChangeLog
9292 or, if VERSION doesn't contain `+', with the empty string.
9293 * src/getargs.c (version): Print the value of revision.
9294 * src/revision.h: Extern revision.
9296 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9298 * NEWS: Version 2.3.
9299 * configure.ac (AC_INIT): Likewise.
9301 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9303 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9304 with no arguments, not as an object-like macro. This is for
9305 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9306 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9307 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9310 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9312 * src/getargs.c (usage): Back out yesterday's modification of the
9313 --help output so that we don't have to wait for translation before
9316 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9318 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9319 Problem reported by Akim Demaille.
9321 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9323 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9325 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9327 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9328 generated source code. Problem reported by Frans Englich in
9329 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9331 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9333 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9334 shell, not within 'make', so that 'make' by an ordinary builder
9335 (using GNU make) does not worry about configuring gzip. This also
9336 works around a bug reported independently by Keith Thompson and by
9337 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9338 stderr rather than stdout, messing up the build logs.
9340 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9342 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9343 to make sure that YYID will never be unused. This fixes a 'make
9344 maintainer-check' failure caused by the recent changes to the 'Trivial
9345 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9347 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9349 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9351 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9352 state before an empty RHS is always resolved here. Only the location
9353 of that state is guaranteed to be resolved, and that's enough. This
9354 fixes the remaining bug reported by Derek M. Jones in
9355 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9356 * tests/glr-regression.at (Uninitialized location when reporting
9357 ambiguity): Test the above case.
9358 Also, the embedded comments in this test case claim it checks the case
9359 of an empty RHS that has inherited the initial location. However, the
9360 corresponding LHS was already resolved, so yyresolveLocations didn't
9361 actually have reason to modify it. Fix this by forcing
9362 nondeterministic operation at the beginning of the parse.
9364 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9366 * data/c.m4 (b4_yy_symbol_print_generate):
9367 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9368 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9369 of the bugs reported today by Derek M Jones in
9370 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9371 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9372 defined to be a type name without parens or brackets.
9373 (Location Type): Similarly for YYLTYPE.
9374 * tests/regression.at (Trivial grammars): Put in a test for this
9375 bug that will be caught by 'make maintainer-check' (though not,
9376 alas, by 'make check' unless your compiler is picky).
9378 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9380 * NEWS: Version 2.2.
9381 * configure.ac (AC_INIT): Likewise.
9383 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9385 * data/glr.c (yyreportTree): Make room in yystates for the state
9386 preceding the RHS. This fixes the segmentation fault reported by Derek
9388 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9389 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9390 to the user. Reported for yyreportTree by Derek M. Jones later in the
9392 * THANKS: Add Derek M. Jones.
9393 Update my email address.
9394 Fix typo in Steve Murphy's name.
9396 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9398 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9399 checking against YYLAST that caused the parser to miss a potential
9400 alternative in its diagnostic.
9401 Problem reported by Maria Jose Moron Fernandez in
9402 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9403 * data/lalr1.cc (yysyntax_error_): Likewise.
9404 * data/yacc.c (yysyntax_error): Likewise.
9405 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9406 tokens, in case we run into an older C compiler.
9407 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9408 Use them to check for the off-by-one error fixed above.
9410 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9411 YYSIZE_T, not size_t.
9412 * tests/regression.at (Trivial grammars): New test, to catch
9413 the error fixed by the above patch.
9415 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9417 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9419 Reported by Steve Murphy.
9421 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9423 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9424 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9426 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9428 Implement --trace=m4.
9429 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9430 * src/output.c (output_skeleton): When set, pass -dV to m4.
9432 Factor the handling of flags in m4.
9433 * src/output.c (prepare): Rename the muscle names debug, defines,
9434 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9435 * data/c.m4: Adjust.
9436 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9437 Use b4_define_flag_if to define other b4_FLAG_if macros.
9438 (b4_location_if): As a consequence, rename as...
9439 (b4_locations_if): this, for consistency.
9440 Adjust all the skeletons.
9442 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9444 * etc/bench.pm: Shorten bench names.
9446 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9448 * src/output.h, src/output.c (error_verbose): Move to...
9449 * src/getargs.h, src/getargs.c: here.
9451 Adjust dependencies.
9453 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9455 * data/c.m4 (b4_copyright): Put the special exception for Bison
9456 skeletons here, so we don't have to put it in each skeleton. All
9457 uses changed. Suggested by Akim Demaille. Also, wrap the
9458 copyright notice, in case it is longer than 80 columns. Replace
9459 comma by newline after title.
9461 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9463 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9464 incompatibility, not a bug. Mention that it wasn't fixed as of
9467 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9469 * examples/extexi: Enforce the precedence of concatenation over
9471 Reported by Tommy Nordgren.
9473 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9475 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9476 with the member "token".
9477 Reported by Martin Nylin.
9479 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9481 * data/glr.c: Switch to Bison 2.2 special-exception language in
9482 the copyright notice. Use more-regular format for titles and
9484 * data/glr.cc: Likewise.
9485 * data/location.cc: Likewise.
9486 * data/yacc.cc: Likewise.
9487 * doc/bison.texinfo (Conditions): Document this.
9488 * NEWS: likewise. Upgrade version to 2.2.
9490 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
9492 * data/glr.cc: Remove dead code.
9494 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9496 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9497 that variable and the line breaks the bootstrap. Problem reported
9498 by Juan M. Guerrero.
9500 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9502 * doc/bison.texinfo (Multiple start-symbols): New.
9504 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9506 * etc/README, etc/bench.pl: New.
9508 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
9510 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9512 Reported by Mickael Labau.
9513 * tests/input.at (Torturing the Scanner): Test it.
9515 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9517 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9518 Problem reported by Bob Rossi.
9520 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9522 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9523 and didn't really work.
9524 For the index, use @ifnotinfo, not @iftex.
9525 Minor cleanups of spacing and terminology.
9527 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9529 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9530 of AT_NAME_PREFIX when %name-prefix is not used.
9532 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9534 Apply --prefix to C++ skeletons too: they change the namespace.
9535 The test suite already exercize these cases.
9536 * data/c++.m4 (b4_namespace): New.
9537 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9538 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9539 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9540 * doc/bison.texinfo: Document it.
9541 (Option Cross Key): Use @multitable in all formats. It looks
9542 nicer, even in TeX outputs.
9543 (Rules): Use the same code whatever the output type is.
9544 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9545 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9546 * tests/calc.at: Use it, instead of hard coding `yy'.
9548 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9550 * TODO: Remove dead items.
9552 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9554 * doc/FAQ: Remove, merged into...
9555 * doc/bison.texinfo (FAQ): this.
9556 * doc/Makefile.am (EXTRA_DIST): Adjust.
9558 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9560 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9562 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9563 * doc/bison.texinfo (Calc++ Scanner): Use it.
9565 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9567 Fix two nits reported by twlevo, plus one more that I discovered.
9569 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9570 this is the usual Bison style.
9571 * src/location.h (location_print): Likewise.
9573 * src/reader.h (token_name): Likewise.
9575 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9577 Fix some nits reported by twlevo.
9578 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9579 and "POSIX". Use more-modern syntax for URLs. Mention C++
9580 and ask for Java. Don't hardwire OS version numbers. Add
9582 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9583 * src/conflicts.c (solved_conflicts_obstack): Now static.
9585 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9587 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9588 page. Say "you can use it" not "you may use it" as on the web page;
9589 we're describing capabilities not granting permission.
9591 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9593 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9594 shadowing warnings. Use usual patter for iterating through RHS.
9595 * tests/glr-regression.at
9596 (Uninitialized location when reporting ambiguity):
9597 Modify yylex so that it uses its argument, rather than trying
9598 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9599 const char -> char const.
9601 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9602 Don't use tabs inside commands; it messes up 'ps'.
9603 Problem reported by twlevo.
9605 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9607 * tests/glr-regression.at (Uninitialized location when reporting
9608 ambiguity): New test case.
9609 * data/glr.c (yyresolveLocations): New function, which uses
9611 (yyresolveValue): Invoke yyresolveLocations before reporting an
9613 * doc/bison.texinfo (Default Action for Locations): Note
9614 YYLLOC_DEFAULT's usage for ambiguity locations.
9615 (GLR Semantic Actions): Cross-reference those notes.
9617 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9619 * tests/glr-regression.at (Leaked semantic values when reporting
9620 ambiguity): Remove unnecessary union and type declarations.
9621 (Leaked lookahead after nondeterministic parse syntax error): New test
9623 * data/glr.c (yyparse): Check for zero stacks remaining before
9624 attempting to shift the lookahead so that you don't lose it.
9626 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9628 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9629 * tests/glr-regression.at (Leaked semantic values when reporting
9630 ambiguity): New test case.
9631 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9632 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9633 now unnecessary yystackp parameter.
9634 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9635 destructors can be called.
9637 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9638 in existing testcases.
9640 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9642 Don't leak semantic values for parent RHS when a user action cuts the
9643 parser, and clean up related code a bit.
9644 * tests/glr-regression.at (Leaked merged semantic value if user action
9645 cuts parse): Rename to...
9646 (Leaked semantic values if user action cuts parse): ... this. Add check
9647 for leaked parent RHS values.
9648 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9649 between an unresolved state (non-empty chain of semantic options) and
9650 an incomplete one (signaled by an empty chain).
9651 (yyresolveStates): Document the interface. Move all manipulation of a
9652 successfully or unsuccessfully resolved yyGLRState to...
9653 (yyresolveValue): ... here so that yyresolveValue always leaves a
9654 yyGLRState with consistent data and thus is easier to understand.
9655 Remove the yyvalp and yylocp parameters since they are always just
9656 taken from the yys parameter. When reporting a discarded merged value
9657 in debugging output, note that it is incompletely merged. Document the
9659 (yyresolveAction): If resolving any of the RHS states fails, destroy
9660 them all rather than leaking them. Thus, as long as user actions are
9661 written to clean up the RHS correctly, yyresolveAction always cleans up
9662 the RHS of a semantic option. Document the interface.
9664 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9666 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9667 led to a segmentation fault in GNU Pascal. Problem reported
9670 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9672 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9673 mid-rule action inside a nonterminal symbol in order to declare a
9674 destructor for its semantic value.
9676 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9678 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9679 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9680 __cplusplus && ! defined _STDLIB_H && !
9681 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9682 defined free))]: Include <stdlib.h> rather than rolling our own
9683 declarations of malloc and free, to avoid problems with
9684 incompatible declarations (using 'throw') C++'s stdlib.h. This
9685 should fix Debian bug 340012
9686 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9687 reported by Guillaume Melquiond.
9689 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9691 * NEWS: Clarify symbols versus types in unused-value warnings.
9693 * configure.ac (AC_INIT): Bump version number.
9695 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9697 * NEWS: Version 2.1a.
9698 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9699 since C99 requires this.
9701 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9703 * m4/c-working.m4: New file.
9704 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9706 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9708 * Makefile.maint: Merge from coreutils.
9710 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9712 More portability fixes for problems summarized by Nelson H. F. Beebe.
9714 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9715 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9716 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9717 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9718 messes up because C++ code is compiled in 32-bit mode but linked
9721 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9723 More portability fixes for problems summarized by Nelson H. F. Beebe.
9725 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9726 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9728 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9729 nodist_PROGRAMS, since we don't need to actually compile the
9730 example if we're just doing a plain 'make'. This avoids bothering
9731 the installer unnecessarily about problems due to weird C++
9734 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9736 More portability fixes for problems summarized by Nelson H. F. Beebe.
9738 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9739 than #include "...", and compile with -I'.'. The old method was
9740 not portable, according to Posix and the C standard, and it does
9741 not work with Sun C 5.7, where previous #line directives affect
9742 the working directory used in later #include "..." directives.
9744 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9746 Various DJGGP specific issues in /djgpp
9748 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9750 More portability fixes for problems summarized by Nelson H. F. Beebe.
9752 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9753 '#include <map>' works and that you can apply ++ to iterators.
9755 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9757 Work around portability problems summarized by Nelson H. F. Beebe in
9758 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9760 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9761 that '#include <string>' works.
9763 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9764 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9765 "warning: sorry: semantics of inline function static data `const
9766 unsigned char translate_table[262]' are wrong (you'll wind up with
9769 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9770 or, xor to not_, and_, or_, and xor_, respectively. This works
9771 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9772 random system header somewhere that includes the equivalent of
9775 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9776 -E" works; it apparently doesn't work with PathScale EKO Compiler
9779 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9781 During deterministic GLR operation, user actions should be able to
9782 influence the parse by changing yychar. To make this easier to fix and
9783 to make glr.c easier to evolve in general, don't maintain yytoken in
9784 parallel with yychar; just compute yytoken when needed.
9785 * tests/glr-regression.at (Incorrect lookahead during deterministic
9786 GLR): Check that setting yychar in a user action has the intended
9788 * data/glr.c (yyGLRStack): Remove yytokenp member.
9789 (yyclearin): Don't set *yytokenp.
9790 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9791 yychar rather than *yytokenp to determine the current lookahead.
9792 Compute yytoken locally when needed.
9793 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9796 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9797 after `--report' documentation.
9799 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9801 * src/parse-gram.y (grammar_declaration): Location of printer
9802 symbol is @1, not list->location. Bug reported by twlevo.
9803 * tests/input.at (Incompatible Aliases): Adjust to above change.
9805 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9807 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9808 all the test at once. This makes the output easier to read in the
9811 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9812 got from <http://bro-ids.org/download.html>. The bug is that
9813 when two actions appeared in succession, the second one was
9814 scanned before the first one was added to the grammar rule
9815 as a midrule action. Bison then output the incorrect warning
9816 "parse.y:905.17-906.36: warning: unused value: $3".
9817 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9818 associated with a value.
9819 (rhs): Don't invoke grammar_current_rule_action_append.
9820 (action): Invoke it here instead.
9821 * src/reader.c (grammar_midrule_action): Now extern.
9822 (grammar_current_rule_action_append): Don't invoke
9823 grammar_midrule_action; that is now the scanner's job.
9824 * src/reader.h (last_string, last_braced_code_loc):
9825 (grammar_midrule_action): New decls.
9826 * src/scan-gram.l (last_string): Now extern, sigh.
9827 (last_braced_code_loc): New extern variable.
9828 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9829 rule already has an action.
9830 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9831 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9832 Add some tests to check that the above changes fixed the bug.
9834 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9836 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9837 All used changed. Check whether the symbol has a destructor,
9838 not whether it is typed.
9839 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9840 that the values are still reported as unused. All line numbers
9843 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9845 Work around a bug in bro 0.8, which underparenthesizes its
9846 definition of YYLLOC_DEFAULT.
9847 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9849 * data/lalr1.cc: Likewise.
9850 * data/yacc.cc: Likewise.
9852 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9854 Work around a bug in Pike 7.0, and give the Pike folks a
9855 better way to override the usual int widths.
9856 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9857 user can override the types.
9858 (short): #undef, to work around a bug in Pike 7.0.
9859 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9860 (union yyalloc.yyss): Use yytype_int16 rather than short.
9862 (yysigned_char): Remove.
9863 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9864 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9865 * tests/regression.at (Web2c Actions): Adjust to above changes.
9867 * src/reader.c (check_and_convert_grammar): New function.
9868 (reader): Close the input file even if something went wrong during
9869 parsing. Minor file descriptor leak reported by twlevo.
9871 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9872 to pacify gcc -Wswitch-default.
9873 * src/scan-gram.l (adjust_location): Use a default: break; case
9874 to pacify gcc -Wswitch-default.
9875 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9876 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9877 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9878 Move these decls to scan-skel.l, since they don't need to be
9880 * src/scan-skel.l: Accept the above decls.
9881 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9884 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9886 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9887 since we don't want to insist on a version number at the start
9888 of the changelog every time.
9889 * Makefile.maint: Sync from coreutils a bit better.
9890 (sc_trailing_blank): Renamed from sc_trailing_space.
9892 (sc_no_if_have_config_h, sc_require_config_h):
9893 (sc_prohibit_assert_without_use): New rules.
9894 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9895 (sc_dd_max_sym_length): Fix leading spaces in rule.
9896 (sc_system_h_headers): Prefix with @.
9897 (sc_useless_cpp_parens, m4-check): Output line numbers.
9898 (changelog-check): Allow version only in head.
9899 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9900 satisfy new Makefile.maint rule.
9901 * data/glr.c: Likewise.
9902 * data/glr.cc: Likewise.
9903 * data/lalr1.cc: Likewise.
9904 * data/yacc.c: Likewise.
9905 * lib/ebitsetv.c: Likewise.
9906 * lib/lbitset.c: Likewise.
9907 * lib/subpipe.c: Likewise.
9908 * lib/timevar.c: Likewise.
9909 * src/system.h: Likewise.
9910 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9911 * djgpp/Makefile.maint: Add copyright notice.
9912 * djgpp/README.in: Likewise.
9913 * djgpp/config.bat: Likewise.
9914 * djgpp/config.site: Likewise.
9915 * djgpp/config_h.sed: Likewise.
9916 * djgpp/djunpack.bat: Likewise.
9917 * djgpp/config.sed: Fix copyright notice to match standard format.
9918 * djgpp/subpipe.h: Likewise.
9919 * lib/bitsetv-print.c: Likewise.
9920 * lib/bitsetv.c: Likewise.
9921 * lib/subpipe.h: Likewise.
9922 * lib/timevar.c: Likewise.
9923 * lib/timevar.h: Likewise.
9924 * djgpp/subpipe.c: Use standard recipe for config.h.
9925 * lib/abitset.c: Likewise.
9926 * lib/bitset.c: Likewise.
9927 * lib/bitset_stats.c: Likewise.
9928 * lib/bitsetv-print.c: Likewise.
9929 * lib/bitsetv.c: Likewise.
9930 * lib/ebitsetv.c: Likewise.
9931 * lib/get-errno.c: Likewise.
9932 * lib/lbitset.c: Likewise.
9933 * lib/subpipe.c: Likewise.
9934 * lib/timevar.c: Likewise.
9935 * lib/vbitset.c: Likewise.
9936 * tests/local.at: Likewise.
9937 * src/scan-gram.l: Don't include verify.h, since system.h does
9939 * .x-sc_require_config_h: New file.
9940 * .x-sc_unmarked_diagnostics: New file.
9942 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9944 Be a bit more systematic about using 'abort'.
9945 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9946 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9947 Put 'default: abort ();' before some other case, to satisfy older
9949 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9950 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9951 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9952 * src/conflicts.c (resolve_sr_conflict): Likewise.
9953 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9954 (get_decision_str, get_orientation_str, get_node_alignment_str):
9955 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9956 (get_linestyle_str, get_arrowstyle_str): Likewise.
9957 * src/conflicts.c (resolve_sr_conflict):
9958 Use a default case rather than one for the one remaining enum
9959 value, to catch invalid enum values as well.
9960 * src/lalr.c (set_goto_map, map_goto):
9961 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9962 * src/nullable.c (nullable_compute, token_definitions_output):
9964 * src/reader.c (packgram, reader): Likewise.
9965 * src/state.c (transitions_to, state_new, state_reduction_find):
9967 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9968 (symbol_pack): Likewise.
9969 * src/tables.c (conflict_row, pack_vector): Likewise.
9970 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9971 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
9972 * src/system.h: Don't include <assert.h>.
9973 (assert): New macro.
9975 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9976 (Destructor Decl, Parser Function, Pure Calling):
9977 Describe rules for braces inside C code more carefully.
9979 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9981 Fix some porting glitches found by Nelson H. F. Beebe.
9982 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9983 compilers that don't understand that abort () does not return.
9984 * src/state.c (transitions_to): Likewise.
9985 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9986 that '#include <cstdlib>' works.
9987 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9988 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9989 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9990 for the benefit of some pre-C99 compilers.
9992 * bootstrap: Undo changes to gnulib files that autoreconf made.
9994 Minor fixups to get 'make maintainer-check' to work.
9995 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9996 with the new verify.h implementation.
9997 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9998 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9999 * data/yacc.c (YYUSE): Likewise.
10000 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
10001 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
10002 * src/parse-gram.y (declaration): Don't pass a string constant
10003 to a function that expects char *, since GCC might complain
10004 about the constant value.
10005 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
10006 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
10007 before #defining them.
10008 * tests/glr-regression.at
10009 (Incorrectly initialized location for empty right-hand side in GLR):
10010 In yyerror, use the msg arg.
10011 (Corrupted semantic options if user action cuts parse):
10012 (Incorrect lookahead during deterministic GLR):
10013 (Incorrect lookahead during nondeterministic GLR):
10014 Don't name a local var 'index'; it shadows string.h's 'index'.
10016 2006-01-19 Akim Demaille <akim@epita.fr>
10018 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
10019 location, not just parts of it.
10021 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
10023 * NEWS: Document the fact that multiple %unions are now allowed.
10024 * doc/bison.texinfo (Union Decl): Likewise.
10025 * TODO: This feature is now implemented, so remove it from
10028 * Makefile.maint: Merge with coreutils Makefile.maint.
10029 (CVS_LIST): Use build-aux version if available.
10030 (VERSION_REGEXP): New macro.
10031 (syntax-check-rules): Add sc_no_if_have_config_h,
10032 sc_prohibit_assert_without_use, sc_require_config_h,
10033 sc_useless_cpp_parens.
10034 (sc_obsolete_symbols): Check for O_NDELAY.
10035 (sc_dd_max_sym_length): Track coreutils.
10036 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10037 (sc_useless_cpp_parens): New rule.
10038 (news-date-check): Look for version or today's date.
10039 (changelog-check): Don't require version number near head.
10040 (copyright-check): Use current year instead of hardwiring 2005.
10041 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10042 (announcement): Add --gpg-key-ID.
10044 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10045 with "file system".
10047 Avoid undefined behavior that addressed just before the start of an
10048 array. Problem reported by twlevo.
10049 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10050 * src/lalr.c (build_relations): Rely on new sentinel.
10051 * src/gram.c (gram_free): Adjust to new sentinel.
10053 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10055 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10056 yylookaheadNeeds. All uses updated.
10057 (yysplitStack): Rename local yynewLookaheadStatuses to
10058 yynewLookaheadNeeds.
10059 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10060 GLR): In comments, change `lookahead status' to `lookahead need'.
10062 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10064 * data/glr.c (yysplitStack): A little stylistic rewrite.
10066 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10068 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10070 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10072 * doc/bison.texinfo: Fix some typos.
10073 (GLR Semantic Actions): New subsection discussing special
10074 considerations because GLR semantic actions might be deferred.
10075 (Actions): Mention look-ahead usage of yylval.
10076 (Actions and Locations): Mention look-ahead usage of yylloc.
10077 (Special Features for Use in Actions): Add YYEOF entry and mention it
10078 in the yychar entry.
10079 In the yychar entry, remove mention of the local yychar case (pure
10080 parser) since this is irrelevant information when writing semantic
10081 actions and since it's already discussed in `Table of Symbols' where
10082 yychar is otherwise described as an external variable.
10083 In the yychar entry, don't call it the `current' look-ahead since it
10084 isn't when semantic actions are deferred.
10085 In the yychar and yyclearin entries, add note about deferred semantic
10087 Add yylloc and yylval entries discussing look-ahead usage.
10088 (Look-Ahead Tokens): When discussing yychar, don't call it the
10089 `current' look-ahead, and do mention yylval and yylloc.
10090 (Error Recovery): Cross-reference `Action Features' when mentioning
10092 (Table of Symbols): In the yychar entry, don't call it the `current'
10094 In the yylloc and yylval entries, mention look-ahead usage.
10096 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
10098 * tests/glr-regression.at: Update copyright year to 2006.
10100 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10102 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
10103 use during nondeterministic operation to track which stacks have
10104 actually needed the current lookahead.
10105 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
10106 Allocate, deallocate, resize, and otherwise shuffle space for
10107 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
10108 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
10109 appropriately during nondeterministic operation.
10110 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10111 members to store the current lookahead to be used by the deferred
10113 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10114 from which the RHS is taken. Set the lookahead members of the new
10115 yySemanticOption according to the lookahead status for stack yyk.
10116 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10117 yyaddDeferredAction.
10118 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10119 members of yySemanticOption before invoking yyuserAction, and then set
10120 them back to their current values afterward.
10121 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10122 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10123 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10124 titles for consistency.
10125 (Leaked merged semantic value if user action cuts parse): In order to
10126 suppress lint warnings, use arguments in merge function, and assign
10127 char value < 128 in main.
10128 (Incorrect lookahead during deterministic GLR): New test case.
10129 (Incorrect lookahead during nondeterministic GLR): New test case.
10131 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10133 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
10134 !yyvaluep as signal that no semantic value is available to print.
10135 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10136 to print a semantic value.
10138 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10140 * tests/glr-regression.at: For consistency with my newer test cases,
10141 don't thank myself.
10143 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10145 * data/glr.c (yyresolveValue): When merging semantic options, if at
10146 least one user action succeeds but a later one cuts the parse, then
10147 destroy the semantic value before returning rather than leaking it.
10148 (yyresolveStates): If a user action cuts the parse and thus
10149 yyresolveValue fails, ignore the (unset) semantic value rather than
10150 corrupting the yyGLRState, and empty the semantic options list since
10151 the user actions should have called all necessary destructors.
10152 Simplify code with YYCHK.
10153 * tests/glr-regression.at (Corrupted semantic options if user action
10154 cuts parse): New test case.
10155 (Undesirable destructors if user action cuts parse): New test case.
10156 Before applying any of this patch, this test case never actually failed
10157 for me... but only because the corrupted semantic options usually
10159 (Leaked merged semantic value if user action cuts parse): New test
10162 2006-01-05 Akim Demaille <akim@epita.fr>
10164 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10166 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10168 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10169 _MSC_VER. Problem reported by Cenzato Marco.
10170 (b4_c_function_def): Use it.
10171 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10173 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10174 than rolling our own.
10176 2006-01-04 Akim Demaille <akim@epita.fr>
10178 Also warn about non-used mid-rule values.
10179 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10181 (symbol_list_new): Adjust.
10182 * src/reader.c (symbol_typed_p): New.
10183 (grammar_rule_check): Use it.
10184 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10186 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10188 * tests/actions.at (Exotic Dollars): Adjust.
10190 2006-01-04 Akim Demaille <akim@epita.fr>
10192 * src/reader.c (grammar_midrule_action): If $$ is set in a
10193 mid-rule, move the `used' bit to its lhs.
10194 * tests/input.at (Unused values): New.
10195 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10197 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10199 * doc/bison.texinfo (Bison Options): Say more accurately what
10201 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10202 about declarations in the grammar when in Yacc mode, as POSIX does
10203 not require a diagnostic when the grammar uses extensions.
10205 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10207 Warn about dubious constructions like "%token T T".
10208 Reported by twlevo.
10209 * src/symtab.h (struct symbol.declared): New member.
10210 * src/symtab.c (symbol_new): Initialize it to false.
10211 (symbol_class_set): New arg DECLARING, specifying whether
10212 this is a declaration that we want to warn about, if there
10213 is more than one of them. All uses changed.
10215 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10216 Allow multiple %union directives, whose contents concatenate.
10217 * src/parse-gram.y (grammar_declaration): Likewise.
10218 Use muscle_code_grow, so that we don't need stype_line any more.
10221 * src/muscle_tab.c (muscle_grow): Fix comment.
10223 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10224 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10225 Update copyright year to 2006.
10227 2006-01-03 Akim Demaille <akim@epita.fr>
10229 Have glr.cc pass (some of) the calc.at tests.
10230 * data/glr.cc (b4_parse_param_orig): New.
10231 (b4_parse_param): Improve its definition, and bound it more
10232 clearly in the skeleton.
10233 (b4_epilogue): Append, instead of prepending, in order to keep
10235 Simplify the generation of auxiliary functions: locations and
10236 purity are mandated.
10237 (b4_global_tokens_and_yystype): Honor it.
10238 * data/location.cc (c++.m4): Don't include it.
10239 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10241 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10243 Be sure to initialize the first position's filename.
10244 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10246 (AT_CHECK_CALC_GLR_CC): New.
10247 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10249 2006-01-02 Akim Demaille <akim@epita.fr>
10251 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10253 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
10254 * data/glr.cc: Do not include stack.hh.
10256 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10258 * data/glr.c: Reformat whitespace with tabs.
10259 (b4_lpure_formals): Remove this unused m4 macro.
10260 * tests/cxx-type.at: Reformat whitespace with tabs.
10261 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10262 since it's a member. Rename type to isNterm for clarity.
10264 2005-12-29 Akim <akim@sulaco.local>
10266 Let glr.cc catch up with symbol_value_print.
10267 * data/glr.cc (b4_yysymprint_generate): Replace by...
10268 (b4_yy_symbol_print_generate): this.
10269 (yy_symbol_print, yy_symbol_value_print): Declare them.
10271 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10273 * src/location.h (boundary): Note that a line or column equal
10274 to INT_MAX indicates an overflow.
10275 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10276 (rule_length_overflow, increment_rule_length, add_column_width):
10278 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10279 (<SC_BRACED_CODE>"}"):
10280 Use increment_rule_length rather than incrementing it by hand.
10281 (adjust_location, handle_syncline): Diagnose overflow.
10282 (handle_action_dollar, handle_action_at):
10283 Fix bug with monstrosities like $-2147483648.
10284 Remove now-unnecessary checks.
10285 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10286 (convert_ucn_to_byte): Verify assumptions.
10287 (handle_syncline): New arg LOC. All callers changed.
10288 Don't store through a value derived from char const * pointer.
10290 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10293 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10295 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10296 Remove unnecessary forward static decls.
10298 2005-12-27 Akim Demaille <akim@epita.fr>
10300 * src/reader.c (grammar_current_rule_check): Also check that $$
10302 Take the rule to check as argument, hence rename as...
10303 (grammar_rule_check): this.
10304 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10306 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10307 (grammar_midrule_action, grammar_symbol_append): Now static.
10308 * tests/torture.at (input): Don't rely on the default action
10309 being always performed.
10310 * tests/calc.at: "Set" $$ even when the action is "cut" with
10312 * tests/actions.at (Exotic Dollars): Instead of using unused
10313 values, check that the warning is issued.
10315 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10317 * NEWS: Improve wording for unused-value warnings.
10319 2005-12-22 Akim Demaille <akim@epita.fr>
10321 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10322 (b4_yysymprint_generate): Rename as...
10323 (b4_yy_symbol_print_generate): this.
10324 Generate yy_symbol_print instead of yysymprint.
10325 Generate also yy_symbol_value_print, and use it.
10327 2005-12-22 Akim Demaille <akim@epita.fr>
10329 * NEWS: Warn about unused values.
10330 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10332 (symbol_list_n_get, symbol_list_n_used_set): New.
10333 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10334 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10335 * src/reader.c (grammar_current_rule_check): Check that values are
10337 * src/symtab.c (symbol_print): Accept 0.
10338 * tests/existing.at: Remove the type information.
10340 Remove useless actions (beware of mid-rule actions: perl -000
10341 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10342 * tests/actions.at (Exotic Dollars): Use unused values.
10343 * tests/calc.at: Likewise.
10344 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10347 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10350 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10352 Undo 2005-12-01 tentative license wording change. The wording is
10353 still being reviewed by the lawyers, and we don't want to wait for
10354 them before publishing a test release. For now, revert to the
10356 * NEWS: Undo 2005-12-01 change.
10357 * data/glr.c: Revert to previous license wording.
10358 * data/glr.cc: Likewise.
10359 * data/lalr1.cc: Likewise.
10360 * data/location.cc: Likewise.
10361 * data/yacc.c: Likewise.
10363 * NEWS: Reword %destructor vs YYABORT etc.
10364 * data/glr.c: Use American spacing, for consistency.
10365 * data/glr.cc: Likewise.
10366 * data/lalr1.cc: Likewise.
10367 * data/yacc.c: Likewise.
10368 * data/yacc.c: Reformat comments slightly.
10369 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10370 for consistency. Fix some spelling errors and reword recently-included
10372 * tests/cxx-type.at: Cast results of malloc, for C++.
10374 2005-12-21 Joel E. Denny <address@hidden>
10376 * tests/cxx-type.at: Construct a tree, count the parents of shared
10377 nodes, and free each node once and only once. Previously, the memory
10378 for semantic values was leaked instead.
10380 2005-12-21 Joel E. Denny <address@hidden>
10382 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10383 (yylval, yylloc): If pure, #define to yystackp->yyval and
10384 yystackp->yyloc similar to yychar and yynerrs.
10385 (yyparse): If pure, remove local yylval and yylloc. Add local
10386 yystackp to accommodate pure definitions of yylval and yylloc.
10387 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10388 yylvalp and yyllocp to &yylval and &yylloc.
10389 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10390 namespace. Previously, nerrs and char were missing, but lval and lloc
10392 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10393 yylvalp and yyllocp parameters since, if pure, these are now always
10394 accessible through yystackp. If not pure, they are still accessible
10396 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10397 `if (YYID (N))' to pacify lint.
10399 2005-12-21 Akim Demaille <akim@epita.fr>
10401 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10402 destroy the RHS symbols of a rule.
10403 * data/yacc.c (yylen): Initialize to 0.
10404 Keep its value to the number of items to possibly shift.
10405 In particular, a regular successful parse that ends on YYFINAL by
10406 a (internal) YYACCEPT must not have yylen != 0.
10407 (yyerrorlab, yyreturn): Pop the RHS.
10408 Reorder a bit to emphasize the `shifting' bits of code.
10409 (YYPOPSTACK): Now accept a number of items to pop.
10410 * data/lalr1.cc: Likewise.
10411 * data/glr.c: Formatting changes.
10412 Use goto instead of fall through.
10413 * doc/bison.texinfo (Destructor Decl): Complete.
10415 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10417 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10418 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10419 * djgpp/config.bat: Replace every occurence of the file name
10420 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10421 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10422 * djgpp/config.sed: Replace every occurence of the file name
10423 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10424 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10425 * djgpp/djunpack.bat: DJGPP specific file.
10426 * djgpp/fnchange.lst: DJGPP specific file.
10427 * djgpp/README.in: Add new information about how to unpack the bison
10428 source on MSDOS and other systems which have 8.3 file name restrictions
10429 using djunpack.bat and fnchange.lst.
10431 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10433 * bootstrap (build_cvs_prefix): Remove; unused.
10434 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10435 when getting gnulib.
10437 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10439 * data/glr.c: Reorder typedef declarations for structs to match order
10440 of struct declarations.
10441 Rename yystack everywhere to yystackp except in yyparse where it's not
10443 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10445 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10446 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10447 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10450 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10452 * tests/sets.at (Accept): Fix typos in regular expression used to
10453 sed out the final state number.
10455 Work around portability problem on Solaris 10: flex-generated
10456 files include <stdio.h> before <config.h>, which messes up
10457 because the latter defines __EXTENSIONS__. Address the problem
10458 by creating two new little files that include <config.h> first,
10459 then include the flex-generated files. Rewrite everyone else
10460 to include <config.h> first, as well.
10461 * lib/timevar.c: Always include "config.h".
10462 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10463 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10464 (EXTRA_bison_SOURCES): New macro.
10465 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10466 * src/system.h: Don't include config.h.
10467 * src/LR0.c: Include <config.h> first.
10468 * src/assoc.c: Likewise.
10469 * src/closure.c: Likewise.
10470 * src/complain.c: Likewise.
10471 * src/conflicts.c: Likewise.
10472 * src/derives.c: Likewise.
10473 * src/files.c: Likewise.
10474 * src/getargs.c: Likewise.
10475 * src/gram.c: Likewise.
10476 * src/lalr.c: Likewise.
10477 * src/location.c: Likewise.
10478 * src/main.c: Likewise.
10479 * src/muscle_tab.c: Likewise.
10480 * src/nullable.c: Likewise.
10481 * src/output.c: Likewise.
10482 * src/parse-gram.y: Likewise.
10483 * src/print.c: Likewise.
10484 * src/print_graph.c: Likewise.
10485 * src/reader.c: Likewise.
10486 * src/reduce.c: Likewise.
10487 * src/relation.c: Likewise.
10488 * src/state.c: Likewise.
10489 * src/symlist.c: Likewise.
10490 * src/symtab.c: Likewise.
10491 * src/tables.c: Likewise.
10492 * src/uniqstr.c: Likewise.
10493 * src/vcg.c: Likewise.
10495 * src/parse-gram.y: Fix minor problems uncovered by lint.
10496 (current_lhs, current_lhs_location): Now static.
10497 (current_assoc): Remove unused variable.
10499 Cleanups so that Bison-generated parsers have less lint.
10500 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10501 Prepend /*ARGSUSED*/, for lint's sake.
10502 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10503 definition if 'lint' is defined.
10504 (YYID): New macro (or function, if lint).
10505 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10506 * data/yacc.c: Likewise.
10507 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10508 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10509 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10511 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10512 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10513 Use YYID(0) rather than 0, for lint.
10514 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10515 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10517 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10519 * tests/glr-regression.at
10520 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10521 Close memory leak reported by twlevo.
10523 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10525 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10527 (yyparse): Iterate another stack in order to call user destructors.
10528 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10530 (Duplicated user destructor for lookahead): This test now is expected
10533 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10535 * NEWS: Document the following change.
10536 * data/yacc.c: Say "parser skeleton" rather than "file", since
10537 it's no longer just a file.
10538 * data/glr.c: Grant a special exception for C GLR parsers, that
10539 reads like the already-existing exception for C LALR(1) parsers.
10540 * data/glr.cc: Likewise.
10541 * data/lalr1.cc: Likewise.
10542 * data/location.cc: Likewise.
10543 * data/yacc.c: Reword the "written by" statement to clarify that
10544 it was the parser skeleton, not the entire output file.
10545 * data/glr.c: Written by Paul Hilfinger.
10546 * data/glr.cc: Written by Akim Demaille.
10547 * data/lalr1.cc: Likewise.
10549 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10551 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10552 Fix typos in previous change that broke 'make check'.
10553 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10555 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10556 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10557 We can revert this once things settle down.
10559 * src/conflicts.c (conflicts_print): Don't print file name twice
10560 when %expect fails because there were no conflicts.
10561 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10563 * tests/conflicts.at (%expect not enough, %expect too much):
10564 (%expect with reduce conflicts): Adjust to new behavior.
10566 2005-11-18 Akim Demaille <akim@epita.fr>
10568 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10570 * NEWS: Document this.
10571 * doc/bison.texinfo (Expect Decl): Likewise.
10573 2005-11-16 Akim Demaille <akim@epita.fr>
10575 Generalize the display of semantic values and locations in traces.
10576 * data/glr.c (yy_reduce_print): Fix indices (again).
10577 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10579 * data/lalr1.cc (yyreduce_print): Rename as...
10580 (yy_reduce_print): this.
10581 Display values and locations.
10582 * data/yacc.c (yy_reduce_print): Likewise.
10583 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10584 (yysymprint): Move higher to be visible from yy_reduce_print).
10586 * tests/calc.at: Adjust the expected length of the traces.
10588 2005-11-14 Akim Demaille <akim@epita.fr>
10590 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10591 from 1 to N, while values and location start at 0.
10592 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10594 2005-11-14 Akim Demaille <akim@epita.fr>
10596 * data/glr.c (yy_reduce_print): Fix the $ number.
10598 2005-11-14 Akim Demaille <akim@epita.fr>
10600 "Use" parse parameters.
10601 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10602 * data/glr.c, data/glr.cc: Use them.
10603 * data/glr.c (YYUSE): Have a C++ definition that supports
10606 2005-11-14 Akim Demaille <akim@epita.fr>
10608 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10610 2005-11-14 Akim Demaille <akim@epita.fr>
10612 * data/glr.cc: New.
10613 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
10615 2005-11-12 Akim Demaille <akim@epita.fr>
10617 Let position and location be PODs.
10618 * data/location.cc (position::initialize, location::initialize): New.
10619 (position::position, location::location): Define only if
10620 b4_location_constructors is defined.
10621 * data/lalr1.cc (b4_location_constructors): Define it for backward
10623 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10625 2005-11-12 Akim Demaille <akim@epita.fr>
10627 * data/lalr1.cc: Move the body of the ctor and dtor into the
10628 parser file (instead of the header).
10629 Wrap the implementations in a "namespace yy".
10631 2005-11-12 Akim Demaille <akim@epita.fr>
10633 Have glr.c include its header file when created.
10634 * data/glr.c (b4_shared_declarations): New.
10635 Output them verbatim in the parser if !%defines, otherwise
10636 output then in the header file, and include it instead.
10638 2005-11-11 Akim Demaille <akim@epita.fr>
10640 * data/glr.c: Comment changes.
10642 2005-11-11 Akim Demaille <akim@epita.fr>
10644 When yydebug, report semantic and location values for reductions.
10645 * data/glr.c (yy_reduce_print): Report the semantic values and the
10647 (YY_REDUCE_PRINT): Adjust.
10648 (yyglrReduce): Use them.
10649 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10650 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10651 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10654 2005-11-10 Akim Demaille <akim@epita.fr>
10656 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10657 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10658 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10660 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10662 * m4/cxx.m4, examples/Makefile.am: Don't build
10663 examples/calc++ if no C++ compiler is available. (trivial change)
10665 2005-11-09 Akim Demaille <akim@epita.fr>
10667 * src/scan-skel.l: Use a couple of asserts.
10669 2005-11-03 Akim Demaille <akim@epita.fr>
10671 In some (weird) cases, the final state number is incorrect.
10672 Reported by Alexandre Duret-Lutz.
10673 * src/LR0.c (state_list_append): Remove the computation of
10675 (save_reductions): Do it here.
10676 (get_state): Alpha conversion.
10677 (generate_states): Use a for loop.
10678 * src/gram.h (item_number_is_rule_number)
10679 (item_number_is_symbol_number): New.
10680 * src/state.c: Use assert.
10681 * src/system.h: Include assert.h.
10682 * tests/sets.at (Accept): New.
10684 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10686 * data/glr.c (yyfill): Adjust comment.
10687 (yyresolveAction): Initialize default location properly
10688 for empty right-hand sides.
10689 (yydoAction): Ditto.
10690 Add comment explaining apparently dead code.
10691 * tests/glr-regression.at
10692 (Incorrectly initialized location for empty right-hand side in GLR):
10695 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10697 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10698 gnulib when interrupted. This fixes some race conditions and
10699 works around some portability problems (one noted by Paul
10702 2005-10-22 Akim <akim@epita.fr>
10704 * Makefile.cfg: Adjust to config -> build-aux.
10705 Reported by twledo.
10707 2005-10-21 Akim Demaille <akim@epita.fr>
10709 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10711 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10712 * data/yacc.c (b4_Pure_if): Rename as...
10713 (b4_yacc_pure_if): this.
10714 (YY_SYMBOL_PRINT, yyparse): Adjust.
10715 * doc/bison.texinfo: Formatting changes.
10717 2005-10-21 Akim Demaille <akim@epita.fr>
10719 Finish the transition config -> build-aux.
10720 * configure.ac, Makefile.am: Use build-aux.
10721 * config/prev-version, config/announce-gen, config/Makefile.am:
10723 * build-aux/prev-version, build-aux/announce-gen,
10724 * build-aux/Makefile.am: here.
10726 2005-10-14 Akim Demaille <akim@epita.fr>
10728 * examples/calc++/test: Use set -x only when VERBOSE.
10730 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10732 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10733 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10735 2005-10-13 Akim Demaille <akim@epita.fr>
10737 * src/scan-skel.l: Output the base name parts of the parser and
10739 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
10741 Use this to exercise C++ outputs in subdirs.
10742 Reported by Oleg Smolsky.
10744 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10746 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10747 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10748 Problem reported by John P. Hartmann.
10749 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10750 already defined it.
10752 2005-10-12 Akim Demaille <akim@epita.fr>
10754 * src/parse-gram.y (version_check): Exit 63 to please missing
10755 (stands for "version mismatch).
10756 * tests/input.at, doc/bison.texinfo: Adjust.
10758 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10760 Work around portability problems with Visual Age C compiler
10761 (xlc and xlC_r) reported by John P. Hartmann.
10762 * data/location.cc (initial_column, initial_line): Remove.
10763 All uses replaced by 0 and 1.
10764 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10765 that xlc complains about.
10766 * src/scan-skel.l (skel_wrap): Likewise.
10767 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
10769 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10770 __STDC_VERSION__. Use it everywhere instead of looking at
10771 __STDC__ and __cplusplus.
10773 2005-10-10 Akim Demaille <akim@epita.fr>
10775 * examples/calc++/test: Be quiet unless VERBOSE.
10777 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10779 * data/c.m4 (yydestruct, yysymprint):
10780 Use YYUSE instead of casting to void.
10781 * data/glr.c (YYUSE): New macro.
10782 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10783 Use it instead of rolling our own.
10784 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10786 Use /*CONSTCOND*/ to suppress lint warnings.
10787 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10788 (YY_STACK_PRINT): Use 'false' not '0'.
10789 (YYUSE): New macro.
10790 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10791 * data/yacc.c (YYUSE): New macro.
10792 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10793 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10794 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10797 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10798 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10800 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10802 Undo the parts of the unlocked-I/O change that substituted
10803 putc or puts for printf. This might hurt performance a bit,
10804 but some people prefer the printf style.
10805 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10806 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10807 All uses replaced by YYFPRINTF and YYDPRINTF.
10808 * data/yacc.c: Likewise.
10809 * lib/bitset.c (bitset_print): Likewise.
10810 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10812 * lib/lbitset.c (debug_lbitset): Likewise.
10813 * src/closure.c (print_firsts, print_fderives): Likewise.
10814 * src/gram.c (grammar_dump): Likewise.
10815 * src/lalr.c (look_ahead_tokens_print): Likewise.
10816 * src/output.c (escaped_output): Likewise.
10817 (user_actions_output): Break apart two printfs.
10818 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10819 * src/reduce.c (reduce_print): Likewise.
10820 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10821 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10823 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10824 Use assignments rather than casts-to-void to suppress
10825 unused-variable warnings. This pacifies 'lint'.
10826 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10827 unused-variable warnings.
10829 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10831 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10833 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10835 Use unlocked I/O for a minor performance improvement on hosts like
10836 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10837 is to use the gnlib unlocked-io module, and to prefer putc and
10838 puts to printf when either will work (since the latter doesn't
10839 come in an unlocked flavor).
10840 * bootstrap (gnulib_modules): Add unlocked-io.
10841 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10842 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10843 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10844 and similarly for puts and putc and printf.
10845 * data/yacc.c: Likewise.
10846 * lib/bitset.c (bitset_print): Likewise.
10847 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10848 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10850 * lib/lbitset.c (debug_lbitset): Likewise.
10851 * src/closure.c (print_firsts, print_fderives): Likewise.
10852 * src/gram.c (grammar_dump): Likewise.
10853 * src/lalr.c (look_ahead_tokens_print): Likewise.
10854 * src/output.c (escaped_output): Likewise.
10855 (user_actions_output): Coalesce two printfs.
10856 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
10857 * src/reduce.c (reduce_print): Likewise.
10858 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10859 * src/system.h: Include unlocked-io.h rather than stdio.h.
10861 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10862 this confuses xgettext.
10864 2005-10-02 Akim Demaille <akim@epita.fr>
10866 * bootstrap (gnulib_modules): Add strverscmp.
10867 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10868 * m4/.cvsignore: Add strverscmp.m4.
10869 * src/parse-gram.y (%require): New token, new rule.
10870 (version_check): New.
10871 * src/scan-gram.l (%require): Adjust.
10872 * tests/input.at (AT_REQUIRE): New.
10874 * doc/bison.texinfo (Require Decl): New.
10875 (Calc++ Parser): Use %require.
10877 2005-10-02 Akim Demaille <akim@epita.fr>
10879 * data/location.cc: New.
10881 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10882 Akim Demaille <akim@epita.fr>
10884 Make sure -odir/foo.cc creates dir/location.hh etc.
10885 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10886 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10887 (spec_defines_file): Now const.
10889 (short_base_name): Remove.
10890 * src/files.c: Adjust.
10891 (dirname.h): Include.
10892 (base_name): Don't prototype it.
10893 (finput): Remove, duplicates gram_in.
10894 (full_base_name, short_base_name): Replace by...
10895 (all_but_ext, all_but_tab_ext): these.
10896 (compute_base_names): Rename as...
10897 (compute_file_name_parts): this.
10898 Update to compute the new variables, including dir_prefix.
10899 Adjust dependencies.
10900 * src/output.c (prepare): Output them.
10901 * src/reader.c: Adjust to use gram_in, not finput.
10902 * src/scan-skel.l (@dir_prefix@): New.
10904 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10906 * lib/subpipe.c: New function end_of_output_subpipe() added
10907 to allow support for non-posix systems. This is a no-op function
10910 * lib/subpipe.h: New function end_of_output_subpipe() added
10911 to allow support for non-posix systems. This is a no-op function
10914 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10915 handle the lack of pipe/fork functionality on non-posix systems.
10917 * djgpp/Makefile.maint: DJGPP specific file.
10919 * djgpp/README.in: DJGPP specific file.
10921 * djgpp/config.bat: DJGPP specific configuration file.
10923 * djgpp/config.sed: DJGPP specific configuration file.
10925 * djgpp/config.site: DJGPP specific configuration file.
10927 * djgpp/config_h.sed: DJGPP specific configuration file.
10929 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10931 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10933 2005-10-02 Akim Demaille <akim@epita.fr>
10935 * data/location.cc: New, extract from...
10936 * data/lalr1.cc: here.
10937 (location.hh): Include it after the user prologue, in case the
10938 filename type is defined by the user.
10939 Forward declation location and position before the pre-prologue.
10940 (yyresult_): Rename as...
10941 (yyresult): this, it's a local variable, not an attribute.
10942 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10944 2005-10-01 Akim Demaille <akim@epita.fr>
10946 * examples/extexi: Restore the #line generation.
10948 2005-09-30 Akim Demaille <akim@epita.fr>,
10949 Alexandre Duret-Lutz <adl@gnu.org>
10951 Move the token type and YYSTYPE in the parser class.
10952 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10953 (parser::token): New, from the moved free definition of tokens.
10954 (parser::semantic_value): Now a full definition instead of an
10955 indirection to YYSTYPE.
10956 (b4_post_prologue): No longer included in the header file, but
10957 in the implementation file.
10958 * doc/bison.texi (C+ Language Interface): Update.
10959 * src/parse-gram.y: Support unary %define.
10960 * tests/actions.at: Define global_tokens_and_yystype for backward
10961 compatibility until we update the tests.
10962 * tests/calc.at: Idem.
10963 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10964 to simplify the code.
10966 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10968 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10969 Ah, the good old days! Problem reported by Peter Klein.
10970 * bootstrap (gnulib_modules): Add strerror, strtoul.
10971 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10972 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10974 2005-09-29 Akim Demaille <akim@epita.fr>
10976 * data/c.m4 (b4_error_verbose_if): New.
10977 * data/lalr1.cc: Use it.
10978 (YYERROR_VERBOSE_IF): Remove.
10979 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10980 parser members, replaced by...
10981 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10983 (yysyntax_error_): Takes the state number as argument.
10984 (yyreduce_print_): Use the argument yyrule, not the former
10987 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10989 * bootstrap (gnulib_modules): Add verify.
10990 * lib/.cvsignore: Add verify.h.
10991 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10992 * src/system.h (verify): Remove.
10993 Include verify.h instead.
10994 * src/tables.c (tables_generate): Use new API for 'verify'.
10996 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10998 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10999 local variables whose names begin with 'yy'.
11000 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11001 Trivial changes from Joel E. Denny.
11003 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
11005 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
11006 don't use alloca any more.
11008 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
11009 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
11010 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
11011 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
11012 to match yacc.c, to test more hosts.
11014 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
11016 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
11017 doesn't affect behavior.
11018 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
11020 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
11021 This works a bit better with glibc, if user code has already included
11023 * doc/bison.texinfo (Bison Parser): Document that users can't
11024 arbitrarily use malloc and free for other purposes. Document
11025 that <alloca.h> and <malloc.h> might be included.
11026 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11027 user must declare alloca.
11029 * HACKING (release): Forwarn the Translation Project about
11032 2005-09-20 Akim Demaille <akim@epita.fr>
11034 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11036 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11038 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11039 (YYSTACK_ALLOC_MAXIMUM): Use it.
11040 (yysyntax_error): New function.
11041 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11042 multiple syntax errors are reported, and alloca is being used.
11043 Instead, reallocate buffers twice as big each time, so that
11044 we waste at most half the allocated memory. Start with a small
11045 (128-byte) buffer that will suffice in most cases anyway.
11046 Use yysyntax_error to do most of the work.
11048 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11049 yynerrs is the number of errors reported, not the number of
11050 errors encountered.
11052 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11053 Mark it as expected to fail.
11054 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11055 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11056 Don't start user-code symbols with "yy", to avoid name space problems.
11058 2005-09-19 Akim Demaille <akim@epita.fr>
11060 Remove the traits, failed experiment.
11061 It never proved useful, and anyway because of the current
11062 definition, it was not possible to have several specialization of
11063 this traits, making it useless.
11064 * data/lalr1.cc (yy:traits): Remove.
11065 Inline its definitions in the parser class.
11067 2005-09-19 Akim Demaille <akim@epita.fr>
11069 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11070 least Mac OSX with a /usr/local install of gettext.
11072 2005-09-19 Akim Demaille <akim@epita.fr>
11074 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11075 and yytoken for similarity with the other skeletons.
11077 2005-09-19 Akim Demaille <akim@epita.fr>
11079 * NEWS, configure.ac: update version number to 2.1a.
11081 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11083 * NEWS: Version 2.1.
11085 * NEWS: Remove notice of yytname change, since it was never in an
11087 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11089 * src/output.c (prepare): Likewise.
11090 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11091 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11092 is not defined. This is an awful hack, but it's enough for now.
11093 All callers changed.
11094 * tests/glr-regression-at (make_value): Args are const pointers now,
11095 to avoid GCC warning.
11096 (Duplicated user destructor for lookahead): New test. Currently
11097 skipped. It fails on my host but I'm not sure it'll always fail.
11099 2005-09-16 Akim Demaille <akim@epita.fr>
11101 * src/symtab.h (struct symbol): Declare the printer and destructor
11102 as const, to avoid accidental calls to free.
11103 (symbol_destructor_set, symbol_printer_set): Adjust.
11104 * src/symtab.c: Adjust.
11106 2005-09-16 Akim Demaille <akim@epita.fr>
11108 * data/c.m4 (b4_token_enums): New.
11109 (b4_token_defines): Rename as...
11110 (b4_token_enums_defines): this.
11111 (b4_token_defines): New, output only the #defines.
11112 * data/yacc.c, data/glr.c: Adjust.
11113 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11114 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11117 2005-09-16 Akim Demaille <akim@epita.fr>
11119 * data/lalr1.cc (yylex_): Remove, inline its code.
11120 (yyreport_syntax_error_): Remove, replaced by...
11121 (yysyntax_error_): this which returns a string and leaves to the
11122 caller the call to the users' error function.
11123 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11124 Move from members of the parser object...
11125 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11126 to local variables of the parse function.
11128 2005-09-16 Akim Demaille <akim@epita.fr>
11130 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11131 since it's in Bison's name space.
11133 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11135 * data/glr.c (yyresolveValue): Add default case to pacify
11136 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11138 * NEWS: Document when yyparse started to return 2.
11139 * doc/bison.texinfo (Parser Function): Document when yyparse
11142 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11143 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11145 (class position): file_name -> filename (reverting). All uses changed.
11147 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11149 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11150 do anything if $@ exists. This reverts part of the 2005-07-07
11153 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11155 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11156 contains obsolete information and isn't worth distributing as a
11157 separate file anyway.
11158 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11159 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11160 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11161 (yyparse): Abort if user code uses longjmp to throw an unexpected
11164 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11166 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11167 Suggested by twlevo@xs4all.nl.
11169 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11170 This avoids a diagnostic from gcc -Wswitch-enum.
11171 Problem reported by twlevo@xs4all.nl.
11173 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11174 standards. Use "file name" or "file" or "name", depending on
11176 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11177 not to hack/foo.tab.c.
11178 (Calc++ Top Level): 2nd arg of main is not const.
11179 * data/glr.c: b4_filename -> b4_file_name.
11180 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11182 (class position): filename -> file_name. All uses changed.
11183 * data/yacc.c: b4_filename -> b4_file_name.
11184 * lib/bitset.h: filename -> file_name in local vars.
11185 * lib/bitset_stats.c: Likewise.
11186 * src/files.c: Likewise.
11187 * src/scan-skel.l ("@output ".*\n): Likewise.
11188 * src/files.c (file_name_split): Renamed from filename_split.
11189 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
11191 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11193 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11194 to accommodate latest gnulib.
11196 * tests/glr-regression.at (Duplicate representation of merged trees):
11197 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11199 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11202 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11204 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11205 All uses changed. Invoke user destructor after an error during a
11206 split parse (trivial change from Joel E. Denny).
11208 * tests/glr-regression.at
11209 (User destructor after an error during a split parse): New test case.
11210 Problem reported by Joel E. Denny in:
11211 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11213 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11215 * README-cvs: Give URLs for recommended tools.
11216 Mention Gzip version problem, and bootstrapping issues.
11217 Remove troubleshooting section, as it's somewhat obsolete.
11219 * bootstrap (no_cache): New var, to accommodate different wget
11220 variants. Use it instead of '-C off'. Problem reported by
11223 * data/glr.c (yydestroyStackItem): New function.
11224 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11225 debugging information. Problem reported by Joel E. Denny.
11227 2005-08-25 Akim Demaille <akim@epita.fr>
11229 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11231 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11233 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11234 Don't invoke destructor on unresolved entries.
11235 * tests/glr-regression.at
11236 (User destructor for unresolved GLR semantic value): New test case.
11237 Problem reported by Joel E. Denny in:
11238 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11240 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11242 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11244 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11245 lib-prefix.m4, po.m4.
11247 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11248 in yydestruct diagnostic, since it might not be an error.
11249 Problem reported by Joel Denny near end of
11250 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11251 * data/lalr1.cc (yyerturn): Likewise.
11252 * data/yacc.c (yyreturn): Likewise.
11253 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11255 * src/files.c: Remove obsolete FIXME comment.
11257 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11258 with the other templates, and to fix bogus run-on messages such
11259 as the one reported at the end of
11260 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11261 All callers changed to avoid the newline.
11262 (yyprocessOneStack): Output two lines rather than one, to accommodate
11263 the above change. This changes the debug output format slightly.
11265 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11266 reported by Joel E. Denny in
11267 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11269 * tests/glr-regression.at (Duplicate representation of merged trees):
11270 New test, from Joel E. Denny in:
11271 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11272 * THANKS: Add Joel E. Denny.
11274 * configure.ac (AC_INIT): Bump to 2.0c.
11276 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11278 * NEWS: Version 2.0b.
11280 * Makefile.am (SUBDIRS): Put examples before tests, so that
11281 "make check" doesn't finish with "All 1 tests passed".
11283 * tests/regression.at (Token definitions): Don't rely on
11284 AT_PARSER_CHECK for data that contains backslashes. It currently
11285 uses 'echo', and 'echo' isn't portable if its argument contains
11286 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11287 that the byte '\0xff' is not printable in the C locale; it is,
11288 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11289 not printable, so use '\0x81' to test.
11291 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11292 version of GCC, since the macro is used with non-GCC compilers.
11294 Fix core dump reported by Pablo De Napoli in
11295 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11296 * tests/regression.at (Invalid inputs with {}): New test.
11297 * src/parse-gram.y (token_name): Translate type before using
11300 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11301 the user's name space. All uses changed to __attribute__
11303 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11304 Add __attribute__ ((__noreturn__)).
11306 * etc/clcommit: Remove. We weren't using it, and it failed
11307 "make maintainer-distcheck".
11308 * Makefile.maint: Merge from coreutils.
11309 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11310 (syntax-check-rules): Change list of rules as described below.
11311 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11312 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11313 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11314 (sc_trailing_space): New rules.
11315 (sc_xalloc_h_in_src): Remove.
11316 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11317 (sc_space_tab, sc_error_exit_success, sc_changelog):
11318 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11319 (makefile-check, po-check, author_mark_check):
11320 (makefile_path_separator_check, copyright-check):
11321 Use grep -n, to make it easier to find violations.
11322 Use CVS_LIST and CVS_LIST_EXCEPT.
11323 (header_regexp, h_re): Remove.
11325 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11326 (my-distcheck): Use more-modern GCC flags.
11327 (signatures, %.asc): Remove.
11328 (rel-files, announcement): Remove signatures.
11329 Restore old updating code, even though we don't use it, so
11330 that we're the same as coreutils.
11331 (alpha, beta, major): Depend on news-date-check.
11332 Make the upload commands.
11334 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11335 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11336 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11337 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11338 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11339 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11340 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11341 * tests/sets.at: Likewise.
11343 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11344 we comment out the Autoconf version number.
11345 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11346 it's error-prone and "make maintainer-distcheck" rejects it.
11348 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11349 Indent calls to "error" to pacify "make maintainer-distcheck",
11350 when the calls are not intended to be translated.
11351 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11353 * src/Makefile.am (DEFS): Use +=, to pacify
11354 "make maintainer-distcheck".
11355 (bison_SOURCES): Add scan-skel.h.
11356 (sc_tight_scope): New rule, from coreutils.
11358 * src/files.c (src_extension, header_extension):
11359 Now static, not extern.
11360 * src/getargs.c (short_options): Likewise.
11361 * src/muscle_tab.c (muscle_table): Likewise.
11362 * src/parse-gram.y (current_class, current_type, current_prec):
11364 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11365 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11366 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11367 void, to avoid warning when NLS is disabled.
11368 * src/output.c: Include scan-skel.h.
11369 (scan_skel): Remove decl, since scan-skel.h does this.
11371 Indent calls to "error" to pacify "make maintainer-distcheck".
11372 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11373 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11374 "make maintainer-distcheck".
11375 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11376 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11377 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11378 (skel_lex_destroy, scan_skel): Move these decls to...
11379 * src/scan-skel.h: New file.
11380 * src/uniqstr.c (uniqstr_assert):
11381 Indent calls to "error" to pacify "make maintainer-distcheck".
11383 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11386 * tests/torture.at: Revamp to avoid misuse of atoi that
11387 "make maintainer-distcheck" complained about.
11389 * examples/extexi (message): Don't print a message more than once,
11390 and omit line-number decoration that makes Emacs compile think
11391 that informative messages are worth worrying about.
11393 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11395 * configure.ac: Update version number.
11397 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11399 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11400 autogenerated by the maintainer.
11401 * examples/calc++/.cvsignore: Add *.yy.
11403 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11404 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11405 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11407 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11409 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11410 from maintainer-distcheck about casting the argument of 'free'.
11412 * NEWS: Mention recent yytname changes.
11413 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11415 * bootstrap: For translations that have not yet been upgraded to
11416 the new runtime-po domain, prime the pump by extracting the
11417 relevant strings from the obsolete translations. This code can be
11418 removed once the bison-runtime domain has been translated by each
11421 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11422 now that token names are already quoted.
11424 Fix problem reported by Anthony Heading.
11425 * data/glr.c (YYTOKEN_TABLE): New macro.
11426 (yytname): Define if YYTOKEN_TABLE.
11427 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11428 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11429 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11430 * src/output.c (prepare_symbols): Output token_table_flag.
11432 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11434 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11435 again if the first call fails.
11437 * data/glr.c (yytnamerr): New function.
11438 (yyreportSyntaxError): Use it to dequote most string literals.
11439 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11440 with other skeletons. All uses changed.
11441 (yytnameerr_): New function.
11442 (yyreport_syntax_error): Use it to dequote most string literals.
11443 * data/yacc.c (yytnamerr): New function.
11444 (yyerrlab): Use it to decode most string literals.
11445 * doc/bison.texinfo (Decl Summary, Calling Convention):
11446 Clarify quoting convention of yytname.
11447 * src/output.c (prepare_symbols): Quote all names. This undoes
11448 the 2005-04-17 change, which is now accomplished (mostly) via
11449 changes in the parsers as described above.
11450 * tests/regression.at (Token definitions, Web2c Actions):
11451 Undo most 2005-04-17 change here, too.
11453 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11455 Fix more problems reported by twlevo@xs4all.nl.
11456 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11457 remove trailing spaces. This loses the exit status of ./types,
11458 and isn't needed since ./types shouldn't be emitting trailing
11460 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11461 as the stack isn't valid in that case.
11463 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11464 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11465 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11466 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11468 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11469 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11470 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11473 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11474 overly-picky compilers that reject 'char *foo = "bar";'.
11476 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11477 to FILE * parameter, not to stderr. This fixes a typo introduced
11478 in the 2005-07-12 change.
11480 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11481 warnings from GCC 4.
11483 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11484 (yyglrShiftDefer, yysplitStack):
11485 Remove unused parameters b4_pure_formals. All uses changed.
11486 (yyglrShift): Remove unused parameters b4_user_formals.
11488 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11490 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11492 Destructor cleanups and regularization among the three skeletons.
11493 * NEWS: Document the behavior changes.
11494 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11495 stack before failing, as the cleanup code will do it for us now.
11496 * data/lalr1.cc (yyerrlab): Likewise.
11497 * data/glr.c (yyparse): Pop everything off the stack before
11498 freeing it, so that destructors get called properly.
11499 * data/lalr1.cc (yyreturn): Likewise.
11500 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11501 This is more consistent.
11502 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11503 why destructors might be called. 1.875 -> 2.1.
11504 (Destructor Decl, Decl Summary, Table of Symbols):
11505 Some English-language cleanups for %destructor.
11506 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11507 Add output line for destructor of start symbol.
11508 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11509 because of that same extra output line.
11511 * NEWS: Document minor wording changes in diagnostics of
11512 Bison-generated parsers.
11513 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11514 Remove unused formals. All uses changed.
11515 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11516 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11517 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11518 Rename yyoverflowab to yyexhaustedlab.
11519 When memory exhaustion occurs during syntax-error reporting,
11520 report it separately rather than in a single diagnostic; this
11522 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11523 (Memory Exhausted): Renamed from Parser Stack Overflow.
11524 Revamp wording slightly to prefer "memory exhaustion".
11525 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11527 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11529 Add i18n support to the GLR skeleton. Partially fix the C++
11530 skeleton; a C++ expert needs to finish this. Remove debugging
11531 msgids; there's little point to having them translated, since they
11532 can be understood only by someone who can read the
11533 (English-language) source code.
11535 Generate runtime-po/bison-runtime.pot automatically, so that we
11536 don't have to worry about garbage getting in that file. We'll
11537 make sure after the next official release that old msgids don't
11539 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11541 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11542 Now auto-generated.
11543 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11544 Fix typos in explanations of the runtime file.
11545 * bootstrap: Change gettext keyword from YYI18N to YY_.
11546 Use standard Makefile.in.in in runtime-po, since we'll arrange
11547 for backward-compatible bison-runtime.po files in a different way.
11548 * data/glr.c (YY_): New macro, from yacc.c.
11549 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11550 Translate messages intended for users.
11551 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11552 the wording in the other skeletons. We don't know that the memory
11554 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11555 Use same method that yacc.c uses.
11556 Don't translate debugging messages.
11557 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11558 it doesn't work (yet), and requires C++ expertise to fix.
11559 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11560 Move defn to a more logical place, to be consistent with other
11562 Don't translate debugging messages.
11563 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11564 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11565 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11566 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11568 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11569 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11571 * tests/glr-regression.at (Badly Collapsed GLR States):
11573 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11574 yylex should return 0 at EOF rather than aborting.
11576 Improve tests for stack overflow in GLR parser.
11577 Problem reported by twlevo@xs4all.nl.
11578 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11580 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11581 can handle the problem.
11582 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11583 (yyparse): New local variable yyresult to record the result.
11584 Use result of setjmp to set it, rather than storing itinto
11586 (yyDone): Remove label.
11587 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11588 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11589 if YYABORT is used).
11590 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11591 yyparse status; put status > 1 into diagnostic.
11592 Check that status==2 works.
11593 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11594 Use exit status 3 for failure to open (which shouldn't happen).
11596 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11598 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11599 1 on syntax error; just let yyparse do its thing.
11600 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11601 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11602 (Exploding the Stack Size with Alloca):
11603 (Exploding the Stack Size with Malloc):
11604 Expect exit status 2, not 1, since the parser is supposed to blow
11605 its stack. Problem reported by twlevo@xs4all.nl.
11607 * data/glr.c (yyparse): Don't assume that the initial calls
11608 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11609 Print a stack-overflow message and fail instead.
11610 Initialize the line-number information before creating the stack,
11611 so that the stack-overflow message can report line zero safely.
11613 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11615 Fix problems reported by twlevo@xs4all.nl.
11616 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11617 (yyuserMerge): Provide a default case if b4_mergers is empty.
11618 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11619 * tests/glr-regression.at
11620 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11621 Add casts to pacify C++ compilers.
11622 * tests/glr-regression.at (Improper merging of GLR delayed action
11623 sets): Declare yylex before using it.
11624 * tests/Makefile.am (maintainer-check-g++): Fix a stray
11625 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11626 test for valgrind; valgrind is independent of g++.
11627 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11628 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11629 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11630 Use a destructor, so that we can expand the stack. Change
11631 YYSTYPE to char * so that we can free it. Cast result of malloc.
11633 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11635 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11636 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11638 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11640 * PACKAGING: New file, suggested by Bruno Haible and taken from
11641 similar wording in gettext's PACKAGING file.
11642 * NEWS: Mention PACKAGING.
11643 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11645 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11647 * NEWS: Document recent i18n improvements.
11648 * bootstrap: Get runtime translations into runtime-po.
11649 Create runtime-po files automatically, if possible.
11650 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11651 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11652 does not infringe on the user's name space.
11653 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11654 * doc/bison.texinfo (Internationalization): Revamp the English
11655 and Texinfo syntax a bit, to try to make it clearer.
11656 (Bison Options, Option Cross Key): Mention --print-localedir.
11657 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11658 YYENABLE_NLS. Quote a bit more.
11659 * runtime-po/.cvsignore: New file.
11660 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11661 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11662 * runtime-po/quot.sed: Likewise.
11663 * runtime-po/boldquot.sed: Likewise.
11664 * runtime-po/en@quot.header: Likewise.
11665 * runtime-po/en@boldquot.header: Likewise.
11666 * runtime-po/insert-header.sin: Likewise.
11667 * runtime-po/remove-potcdate.sin: Likewise.
11668 * runtime-po/Makevars: Likewise.
11669 * runtime-po/LINGUAS: Likewise.
11670 * runtime-po/de.po: Likewise; we will rely on the translation project
11671 to maintain this, so "bootstrap" should get it.
11672 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
11674 * src/main.c (main): Bind the bison-runtime domain, too.
11676 2005-07-12 Bruno Haible <bruno@clisp.org>
11678 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11679 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11680 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11681 * runtime-po: New directory.
11682 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11683 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11684 * runtime-po/Rules-quot: New file, copied from po/.
11685 * runtime-po/quot.sed: Likewise.
11686 * runtime-po/boldquot.sed: Likewise.
11687 * runtime-po/en@quot.header: Likewise.
11688 * runtime-po/en@boldquot.header: Likewise.
11689 * runtime-po/insert-header.sin: Likewise.
11690 * runtime-po/remove-potcdate.sin: Likewise.
11691 * runtime-po/Makevars: New file.
11692 * runtime-po/POTFILES.in: New file.
11693 * runtime-po/LINGUAS: New file.
11694 * runtime-po/bison-runtime.pot: New file.
11695 * runtime-po/de.po: New file.
11696 * m4/bison.m4: New file.
11697 * Makefile.am (SUBDIRS): Add runtime-po.
11698 (aclocaldir, aclocal_DATA): New variables.
11699 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11701 * src/getargs.c (usage): Document --print-localedir option.
11702 (PRINT_LOCALEDIR_OPTION): New enum item.
11703 (long_options): Add --print-localedir option.
11704 (getargs): Handle --print-localedir option.
11705 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11706 (Internationalization): New section.
11708 2005-07-12 Akim Demaille <akim@epita.fr>
11710 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11711 for consistency with the rest of the code.
11712 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11715 2005-07-12 Akim Demaille <akim@epita.fr>
11717 * src/parse-gram.y: Use %printer instead of YYPRINT.
11719 2005-07-12 Akim Demaille <akim@epita.fr>
11721 * src/symtab.h, src/symtab.c (symbol_print): New.
11722 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11723 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11725 2005-07-12 Akim Demaille <akim@epita.fr>
11727 * data/glr.c (b4_syncline): Fix (swap) the definitions of
11728 b4_at_dollar and b4_dollar_dollar.
11730 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11732 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11733 and Pennello's paper.
11735 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11737 * data/yacc.c (yyparse): Undo previous patch. Instead,
11738 set yylsp[0] and yyvsp[0] only if the initial action
11739 sets yylloc and yylval, respectively.
11741 * data/yacc.c (yyparse): In the initial action, set
11742 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11743 This avoids the use of undefined variables if the initial
11744 action does not set yylloc and/or yylval.
11746 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11748 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11749 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11750 Remove from CVS. These files are automatically generated.
11751 * examples/extexi: Clarify that this file is now part of Bison,
11752 not GNU M4, and that it works with any POSIX-compatible Awk.
11753 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11754 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11755 so that we also get calc++-parser.yy. Geneate it.
11756 Use $(AWK), not gawk, since any conforming Awk will do.
11757 Put comment before action, since older 'make' can't handle comment
11759 $(BUILT_SOURCES): List all built sources, not just some of them.
11760 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11761 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11762 $($(calc_sources_generated)): Remove unnecessary test for existence
11763 of target. (This had a shell syntax error anyway; a stray "x".)
11764 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11766 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11768 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11769 implied by the other modules.
11771 2005-07-06 Akim Demaille <akim@epita.fr>
11773 Bind examples/calc++ to the package.
11774 * examples/calc++/Makefile: Remove, replaced by...
11775 * examples/calc++/Makefile.am: ... this new file.
11776 * examples/calc++/test: Remove input.
11777 * examples/calc++/compile: Remove.
11778 * examples/Makefile.am: New.
11779 * configure.ac, Makefile.am: Adjust.
11780 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11782 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11784 * data/glr.c (yyFail): Drastically simplify; since the format argument
11785 never had any % directives, we can simply pass it to yyerror.
11786 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11787 be modified later, as that is the usual style in glr.c.
11788 Problems reported by Paul Hilfinger.
11790 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11791 and size overflow errors.
11792 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11793 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11794 (YYSIZEMAX): New macro.
11795 (yystpcpy): New function, taken from yacc.c.
11796 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11797 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11798 so that we don't have to maintain their signatures.
11799 (yyFail): Check for buffer overflow, by using vsnprintf rather
11800 than vsprintf. Allocate a bigger buffer if possible.
11801 Report an error if buffer allocation fails.
11802 (yyStackOverflow): New function.
11803 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11804 the initialization was successful. It might fail if storage was
11806 (yyexpandGLRStack): Add more checks for storage allocation failure.
11807 Use yyStackOverflow to report failures.
11808 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11809 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11810 Don't assume stack number fits in int.
11811 (yysplitStack): Check for storage allocation failure.
11812 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11813 can print diagnostics on storage allocation failure. All callers
11815 (yyresolveValue): Use yybool for boolean.
11816 (yyreportSyntaxError): Check for size-calculation overflow.
11817 This code is taken from yacc.c.
11818 (yyparse): Check for storage allocation errors when allocating
11821 2005-07-05 Akim Demaille <akim@epita.fr>
11823 Extract calc++ from the documentation.
11824 * doc/bison.texinfo (Calc++): Add the extraction marks.
11825 * examples/extexi: New, from the aborted GNU Programming 2E.
11826 Separate the different paragraph of a file with empty lines.
11827 * examples/Makefile: Use it to extract the whole calc++ example.
11829 2005-06-24 Akim Demaille <akim@epita.fr>
11831 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11834 2005-06-22 Akim Demaille <akim@epita.fr>
11836 * doc/bison.texinfo (C++ Language Interface): First stab.
11837 (C++ Parsers): Remove.
11839 2005-06-22 Akim Demaille <akim@epita.fr>
11841 * data/lalr1.cc (yylex_): Honor %lex-param.
11843 2005-06-22 Akim Demaille <akim@epita.fr>
11845 Start a set of simple examples.
11846 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11847 * examples/calc++/calc++-driver.hh,
11848 * examples/calc++/calc++-parser.yy,
11849 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11850 * examples/calc++/compile, examples/calc++/test: New.
11852 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11854 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11855 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11856 which stems from the 2005-05-27 patch.
11858 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11860 * data/glr.c: Modify treatment of unused parameters to permit use
11861 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11863 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11865 Fix infringement on user name space reported by Janos Zoltan Szabo.
11866 * data/yacc.c (yyparse): strlen -> yystrlen.
11868 2005-05-30 Akim Demaille <akim@epita.fr>
11870 * data/lalr1.cc (_): New.
11871 Translate the various messages.
11873 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11875 Fix infringement on user name space reported by Bruno Haible.
11876 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11877 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11878 the user's name space.
11879 (alloca): Include <stdlib.h> to get it, if it's not built in.
11880 (YYMALLOC, YYFREE): Define only if needed.
11881 (malloc, free): Declare, but only if needed, as this infringes on
11882 the user name space.
11884 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11886 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11887 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11889 * lib/ebitset.c (min, max): Undef before defining.
11890 * lib/vbitset.c (min, max): Likewise.
11891 * lib/subpipe.c (create_subpipe): Save local variables in case
11892 vfork clobbers them.
11894 2005-05-24 Bruno Haible <bruno@clisp.org>
11896 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11897 error message syntax used by gcc-4.0.
11899 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11901 * README: Mention m4 1.4.3. Remove obsolete advice about
11902 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11904 * bootstrap: Remove workaround for problem I encountered with
11905 gettext 0.14.1; it seems to be fixed now.
11907 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11909 * NEWS: Version 2.0a.
11911 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11912 the previous change.
11914 Various maintainer cleanups.
11915 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11916 conftest*, for benefit of CVS commands run at the same time as
11917 "configure". Add build-aux, since "bootstrap" now creates it and
11919 * Makefile.cfg (move_if_change): Remove.
11920 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11921 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11922 (po_repo, do-po-update, po-update, wget_files, get-targets):
11923 (config.guess-url_prefix, config.sub-url_prefix):
11924 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11925 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11926 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11928 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11929 this is now the recommended name.
11930 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11931 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11932 ylwrap. These files now go into build-aux.
11933 * config/move-if-change: Remove.
11934 * config/prev-version.txt: Bump from 1.75 to 2.0.
11936 * bootstrap: Add stdio-safer, unistd-safer modules.
11937 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11939 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11940 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11941 * lib/subpipe.c: Include "unistd-safer.h".
11942 (create_subpipe): Make sure all the newly-created
11943 file descriptors are > 2, so that diagnostics don't
11944 get sent down them (which might cause Bison to hang, in theory).
11945 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11946 * src/files.c (xfopen): Use fopen_safer, not fopen.
11948 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11949 yesterday's yacc.c fix.
11951 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11953 * data/glr.c, data/lalr1.cc: Update copyright date.
11955 Fix a destructor bug reported by Wolfgang Spraul in
11956 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11957 * data/yacc.c (yyabortlab): Don't call destructor, and
11958 don't set yychar to EMPTY.
11959 (yyoverflowlab): Don't call destructor.
11960 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11961 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11962 since we no longer output the message "discarding lookahead token
11965 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11967 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11968 fix a small glitch in debugging output.
11969 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11970 after YY_SYMBOL_PRINT where needed.
11972 (struct yyGLRState): Add some comments.
11973 (struct yySemanticOption): Add some comments.
11974 (union yyGLRStackItem): Add comment.
11976 (yymergeOptionSets): Correct this to properly perform the union,
11977 avoiding infinite reported by Michael Rosien.
11980 * tests/glr-regression.at: Add test for GLR merging error reported
11983 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11985 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11986 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11987 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11988 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11989 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11990 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11991 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11992 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11993 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11994 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11995 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11996 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11997 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11998 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11999 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
12000 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
12001 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
12002 src/derives.h, src/files.c, src/files.h, src/getargs.c,
12003 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
12004 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
12005 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
12006 src/output.h, src/parse-gram.c, src/parse-gram.h,
12007 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
12008 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
12009 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
12010 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
12011 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
12012 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
12013 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
12014 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
12015 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
12016 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
12017 tests/reduce.at, tests/regression.at, tests/sets.at,
12018 tests/synclines.at, tests/testsuite.at, tests/torture.at:
12019 Update FSF postal mail address.
12021 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
12023 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
12024 Problem reported by Ralf Menzel.
12026 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12028 * tests/actions.at: Test that stack overflow invokes destructors.
12029 From Marcus Holland-Moritz.
12030 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12032 (yyreturn): to here. That way, destructors are called properly
12033 even if the stack overflows, or the user calls YYACCEPT or
12034 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12035 (yyoverflowlab): Destroy the lookahead.
12037 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12039 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12041 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12043 * NEWS: Bison-generated C parsers no longer quote literal strings
12044 associated with tokens.
12045 * src/output.c (prepare_symbols): Don't escape strings,
12046 since users don't want to see C escapes.
12047 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12049 * tests/input.at (Torturing the Scanner): Likewise.
12050 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12052 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12054 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12055 the data size is known to be too small and we can't increase it.
12056 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12058 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12060 * src/parse-gram.y: Include quotearg.h.
12061 (string_as_id): Quote $1 before using it as a key, since the
12062 lexer no longer quotes it for us.
12063 (string_content): Don't strip quotes, since lexer no longer
12065 * src/scan-gram.l: Include quotearg.h.
12066 ("\""): Omit quote.
12067 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12068 a key, since the rest of the lexer doesn't quote it.
12069 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12070 * tests/regression.at (Token definitions): Check for backslashes
12073 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12074 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12075 (yyparse): Revamp code to generate long syntax error message, to
12076 make it easier to translate, and to avoid problems with arithmetic
12077 overflow. Change "virtual memory" to "memory" in diagnostic, since
12078 we don't know whether the memory is virtual.
12080 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12082 * NEWS: Bison-generated C parsers now use the _ macro to
12084 * data/yacc.c (_) [!defined _]: New macro.
12085 All English strings wrapped inside this macro.
12086 * doc/bison.texinfo (Bison Parser): Document _.
12087 * po/POTFILES.in: Include src/parse-gram.c, since it now
12088 includes translateable strings that parse-gram.y doesn't.
12090 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12092 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12093 reverting the 2004-10-11 change to this function.
12094 (symbol_check_alias_consistency): Don't call symbol_type_set
12095 if the type name is already correct.
12096 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
12098 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
12100 * tests/regression.at (Token definitions): Don't use a token named
12101 c, as that generates a "#define c ..." that runs afoul of buggy
12102 stdlib.h that uses the identifier c as a member of struct
12103 drand48_data. Problem reported by Horst Wente.
12105 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
12107 * bootstrap: Change translation URL from
12108 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
12109 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
12110 redirection glitches. Problem reported by twlevo@xs4all.nl.
12112 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12114 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12115 after operands; POSIX says this isn't portable for the c99 command.
12117 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12119 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12120 immediately if a data overrun has occurred; this may help us track
12121 down what may be a spurious failure on MacOS.
12123 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12125 Respond to problems reported by twlevo@xs4all.nl.
12127 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12129 * src/vcg.h: Comment fix.
12130 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12131 (G_CMAX): Change to -1 instead of INT_MAX.
12133 * data/yacc.c (yyparse): Omit spaces before #line.
12135 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12137 * src/tables.c (state_number_to_vector_number): Put it inside an
12138 "#if 0", since it's not currently used. Problem reported by
12141 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12143 * src/output.c (escaped_output): Renamed from
12144 escaped_file_name_output, since we now use it for symbol tags as
12145 well. All uses changed.
12146 (symbol_destructors_output, symbol_printers_output):
12147 Escape symbol tags too.
12148 Problem reported by Matyas Forstner in
12149 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12151 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12153 * src/output.c (user_actions_output, token_definitions_output,
12154 symbol_destructors_output, symbol_printers_output): Likewise.
12155 * src/reader.c (prologue_augment): Likewise.
12156 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12158 * src/vcg.c (output_edge): Don't quote linestyle arg.
12159 Problem reported by twlevo@xs4all.nl.
12161 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12163 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12164 example, reported by Derek M Jones. Also, make the example even
12165 more outrageous, to better illustrate how bad the problem is.
12167 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12169 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12170 putsym. Typo reported by Sebastian Piping.
12172 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12174 * doc/bison.texinfo (Language and Grammar): some -> same
12175 (Epilogue): int he -> in the
12176 Typos reported by Sebastian Piping via Justin Pence.
12178 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12180 * tests/glr-regression.at (Improper handling of embedded actions
12181 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12182 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12183 with dollar signs in test names.
12184 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12185 for a similar reason.
12187 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12189 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12190 wants to redefine G_VIEW.
12192 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12194 * src/vcg.c (get_view_str): Remove case for normal_view.
12195 Problem reported by twlevo@xs4all.nl.
12197 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12199 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12200 Problem reported by twlevo@xs4all.nl.
12202 * doc/bison.texinfo: Change @dircategory from "GNU programming
12203 tools" to "Software development". Requested by Richard Stallman
12206 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12208 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12209 Problem reported by twlevo@xs4all.nl.
12211 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12213 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12214 keyword; it's not needed with modern compilers, and it doesn't
12215 affect correctness with older compilers. Suggested by
12218 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12220 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12221 gcc -Wswitch-default.
12222 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12223 * data/yacc.c (yyparse): Likewise.
12225 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12227 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12228 already. Let config.h define any nonstandard values.
12230 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12232 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12233 for the benefit of slower hosts. Problem reported by
12234 Nelson H. F. Beebe.
12236 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12238 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12239 being defined and not used.
12240 * data/lalr1.cc (yyparse): Likewise.
12241 Use "if (false)" rather than "if (0)".
12243 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12245 * TODO: Mention that we should allow NUL bytes in tokens.
12247 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12249 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12250 Problem reported by Hans Aberg.
12252 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12254 * src/getargs.c (version): Happy new year; update overall
12255 program copyright date from 2004 to 2005.
12257 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12258 Problem reported by Hans Aberg.
12259 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12260 (Output file names.): Add a test for the case when standard output
12263 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12265 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12266 to fix an oversight in the Bison 2.0 manual.
12268 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12270 * NEWS: Version 2.0. Reformat the existing news items since
12271 1.875, so that related items are grouped together.
12272 * configure.ac (AC_INIT): Bump version to 2.0.
12273 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12275 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12276 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12277 otherwise, we're not testing alloca. Unfortunately there's no
12278 simple way to consult HAVE_ALLOCA here.
12280 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12283 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12284 hand. This avoids a warning about comparing int to size_t when
12285 GCC warnings are enabled.
12287 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12289 * NEWS: Bison-generated parsers no longer default to using the
12290 alloca function (when available) to extend the parser stack, due
12291 to widespread problems in unchecked stack-overflow detection.
12292 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12293 responsibility to set it to a positive value. This lets the user
12294 specify a value that is not a preprocessor constant.
12295 * data/yacc.c (YYMAXDEPTH): Likewise.
12296 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12297 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12298 to be a compile-time constant. However, explain the constraints on it.
12299 Also, explain the constraints on YYINITDEPTH.
12300 (Table of Symbols): Explain that alloca is no longer the default.
12301 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12304 * doc/bison.texinfo (Location Default Action): Mention that n must
12305 be zero when k is zero. Suggested by Frank Heckenbach.
12307 2004-12-22 Akim Demaille <akim@epita.fr>
12309 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12310 (parser::state_type, parser::semantic_type, parser::location_type):
12311 Private, not public.
12312 (parser::parse): Return ints, not bool.
12313 Returning a bool introduces a problem: 0 corresponds to false, and
12314 it seems weird to return false on success. Returning true changes
12315 the conventions for yyparse.
12316 Alternatively we could return void and send an exception.
12317 There is no clear consensus (yet?).
12318 (state_stack, semantic_stack, location_stack): Rename as...
12319 (state_stack_type, semantic_stack_type, location_stack_type): these.
12320 Private, not public.
12321 * tests/c++.at: New.
12322 * tests/testsuite.at, tests/Makefile.am: Adjust.
12324 2004-12-21 Akim Demaille <akim@epita.fr>
12326 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12328 2004-12-21 Akim Demaille <akim@epita.fr>
12330 Don't impose std::string for filenames.
12332 * data/lalr1.cc (b4_filename_type): New.
12333 (position::filename): Use it.
12334 (parser.hh): Move the inclusion of stack.hh and location.hh below
12335 the user code, so that needed headers for the filename type can be
12337 Forward declare them before the user code.
12338 * tests/Makefile.am (check-local, installcheck-local): Pass
12339 TESTSUITEFLAGS to the TESTSUITE.
12341 2004-12-20 Akim Demaille <akim@epita.fr>
12343 Use more STL like names: my_class instead of MyClass.
12345 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12346 (SemanticStack, SemanticType, StateStack, StateType)
12347 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12348 (Parser::value): Rename as...
12349 (location_stack, location_type, rhs_number_type, semantic_stack)
12350 (semantic_type, state_stack, state_type, token_number_type, stack)
12351 (slice, traits, parser::yylloc, parser::yylval): these.
12353 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12355 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12357 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12358 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12360 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12362 Remove uses of 'short int' and 'unsigned short int'. This raises
12363 some arbitrary limits. It uses more memory but nowadays that's
12364 not much of an issue.
12366 This change does not affect the generated parsers; that's a different
12367 task, as some users will want to conserve memory there.
12369 Ideally we should use size_t to represent all object counts, and
12370 something like ptrdiff_t to represent signed differences of object
12371 counts; but that will require more code-cleanup than I have the
12372 time to do right now.
12374 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12375 Use size_t, not int or short int, to count objects.
12376 * src/closure.c (nritemset, closure): Likewise.
12377 * src/closure.h (nritemset, closure): Likewise.
12378 * src/nullable.c (nullable_compute): Likewise.
12379 * src/print.c (print_core): Likewise.
12380 * src/print_graph.c (print_core): Likewise.
12381 * src/state.c (state_compare, state_hash): Likewise.
12382 * src/state.h (struct state): Likewise.
12383 * src/tables.c (default_goto, goto_actions): Likewise.
12385 * src/gram.h (rule_number, rule): Use int, not short int.
12386 * src/output.c (prepare_rules): Likewise.
12387 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12388 errs, reductions): Likewise.
12389 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12391 * src/tables.c (vector_number, tally, action_number,
12392 ACTION_NUMBER_MINIMUM): Likewise.
12393 * src/output.c (muscle_insert_short_int_table): Remove.
12395 2004-12-17 Akim Demaille <akim@epita.fr>
12397 * data/lalr1.cc: Extensive Doxygenation.
12398 (error_): Rename as...
12399 (error): this, since it is visible to the user.
12401 (Parser::message): Now an automatic variable from...
12402 (Parser::yyreport_syntax_error_): here.
12403 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12405 * tests/input.at: Escape $.
12407 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12409 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12410 Parenthesize rhs to avoid obscure problems with mistakes like
12411 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12412 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12413 b4_rhs_location): Likewise.
12414 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12415 b4_rhs_location): Likewise.
12417 2004-12-16 Akim Demaille <akim@epita.fr>
12419 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12420 yacc.c: be sure to stay within yycheck_.
12421 * tests/actions.at: Re-enable C++ tests.
12423 2004-12-16 Akim Demaille <akim@epita.fr>
12425 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12428 2004-12-16 Akim Demaille <akim@epita.fr>
12430 Use #define to handle the %name-prefix.
12432 * data/glr.c, data/yacc.c: Comment changes.
12433 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12434 so that one can refer to yylex in the parser file, and have it
12435 renamed, as is the case with other skeletons.
12437 2004-12-16 Akim Demaille <akim@epita.fr>
12439 Move lalr1.cc internals into yy*.
12441 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12442 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12443 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12444 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12445 (empty_, final_, terror_, errcode_, ntokens_)
12446 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12447 (looka_, ilooka_, error_range_, nerrs_):
12449 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12450 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12451 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12452 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12453 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12454 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12455 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12456 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12459 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12461 Fix some problems reported by twlevo at xs4all.
12462 * src/symtab.c (symbol_new): Report an error if the input grammar
12463 contains too many symbols. This is better than calling abort() later.
12464 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12465 (struct node, struct graph):
12466 Rename member expand to stretch. All uses changed.
12467 (struct graph): Remove member layoutalgorithm. All uses removed.
12468 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12469 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12471 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12473 2004-12-15 Akim Demaille <akim@epita.fr>
12475 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12476 Add more Doxygen comments.
12477 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12478 (report_syntax_error_, translate_): Rename as...
12479 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12480 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12482 2004-12-15 Akim Demaille <akim@epita.fr>
12484 * data/lalr1.cc (lex_): Rename as...
12486 Move the trace here.
12487 Take the %name-prefix into account.
12488 Reported by Alexandre Duret-Lutz.
12490 2004-12-15 Akim Demaille <akim@epita.fr>
12492 Simplify the C++ parser constructor.
12494 * data/lalr1.cc (debug_): Rename as...
12495 (yydebug_): so that the parser's internals are always in the yy*
12498 (b4_parse_param_decl): Remove the leading comma as it is now only
12499 called as unique argument list.
12500 (Parser::Parser): Remove the constructor accepting a location and
12501 an initial debugging level.
12502 Remove from the other ctor the argument for the debugging level.
12503 (debug_level_type, debug_level, set_debug_level): New.
12505 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12508 2004-12-15 Akim Demaille <akim@epita.fr>
12510 Remove b4_root related material: failure experiment
12511 (which goal was to allow to derive from a class).
12513 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12514 definitions and uses.
12516 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12518 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12519 not 2, since it's not portable to subtract 1 from the start of an
12520 array. The new item 0 is never set or used. All uses changed.
12522 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12523 the default definition of YYLLOC_DEFAULT. Problem reported
12524 by Frank Heckenbach.
12526 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12528 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12529 the normal case and one for the error case. Just use the
12530 first one uniformly. Problem reported by Frank Heckenbach.
12531 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12532 use exactly the same macro in both places.
12533 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12534 so that the normal-case YYRHSLOC works for the error case too.
12536 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12537 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12538 * doc/bison.texinfo (Location Default Action): Don't claim that
12539 we have an array of locations. Use the same macro for both glr
12540 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12543 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12545 * HACKING: Update email addresses to send announcements to.
12547 * configure.ac (AC_INIT): Bump version to 1.875f.
12549 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12551 * NEWS: Version 1.875e.
12552 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12554 * src/scan-skel.l: Include "complain.h", for "fatal".
12556 * src/relation.h (relation_print, relation_digraph):
12557 Relation sizes are of type relation_node, not size_t (this is
12558 merely a doc fix, since the two types are equivalent).
12559 (relation_transpose): Relation sizes are of type relation_node,
12561 * src/relation.c: Likewise.
12562 (top, infinity): Now of type relation_node, not int.
12563 (traverse, relation_transpose): Use relation_node, not int.
12565 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12566 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12567 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12569 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
12570 specifying whether the test should be skipped. Use it tp
12571 specify that the [%defines %skeleton "lalr1.cc"] tests currently
12572 fail on some hosts, and should be skipped.
12574 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12576 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12577 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12578 unless otherwise specified below.
12580 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12581 to allocate kernel_base, kernel_items, kernel_size, since
12582 they needn't be initialized to 0.
12583 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12584 * src/closure.c (new_closure): Likewise, for itemset.
12585 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12586 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12587 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12588 (build_relations): Likewise for edge, states1, includes.
12589 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12590 * src/reader.c (packgram): Likewise, for ritem, rules.
12591 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12592 * src/relation.c (relation_digraph): Likewise for VERTICES.
12593 (relation_transpose): Likewise for new_R, end_R.
12594 * src/symtab.c (symbols_token_translations_init): Likewise for
12595 token_translations.
12596 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12597 (token_actions): Likewise for yydefact, actrow, conflrow,
12599 (save_column): Likewise for froms[symno], tos[symno].
12600 (goto_actions): Likewise for state_count.
12601 (pack_table): Likewise for base, pos, check.
12602 (tables_generate): Likewise for width.
12604 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12605 for initial core. Just have a separate core, so we needn't worry
12606 about whether kernel_size and kernel_base are initialized.
12608 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12609 kernel_size, kernel_items): Remove unnecessary initialization.
12610 * src/conflicts.c (conflicts): Likewise.
12611 * src/derives.c (derives): Likewise.
12612 * src/muscle_tablc (muscle_insert): Likewise.
12613 * src/relation.c (relation_digraph): Likewise.
12614 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12615 conflrow, conflict_table, conflict_list, table, check):
12618 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12619 This is because all callers pass unsigned int.
12620 * src/closure.h (new_closure): Likewise.
12622 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12623 (build_relations): Initialize includes[i] in all cases.
12624 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12625 and rules[ruleno].precsym. Initialize members in order.
12626 * src/relation.c (relation_transpose): Always initialize new_R[i]
12628 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12630 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12631 conflict_list[0] was always 0, but now it isn't initialized.
12633 * src/table.c (table_grow): When conflict_table grew, the grown
12634 area wasn't cleared. Fix this.
12636 * lib/.cvsignore: Add strdup.c, strdup.h.
12637 * m4/.cvsignore: Add strdup.m4.
12639 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12641 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12642 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12643 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12644 ngotos + 1 without checking for overflow.
12645 (build_relations): Use END_NODE, not -1, to denote end of edges.
12646 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12647 build_relations): Use goto_number, not int, for goto numbers.
12648 * src/tables.c (save_column, default_goto): Likewise.
12650 2004-11-23 Akim Demaille <akim@epita.fr>
12652 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12653 of #defining from yystype.
12654 Don't typedef yystype, C++ does not need it.
12655 This lets it possible to forward declare it as union.
12657 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12659 * bootstrap (gnulib_modules): Add extensions.
12660 Problem reported by Jim Meyering.
12662 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12664 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12665 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12666 src/system.h, src/tables.c: XFREE -> free, to accommodate
12667 recent change to gnulib xalloc.h.
12668 Problem reported by Jim Meyering.
12670 2004-11-17 Akim Demaille <akim@epita.fr>
12672 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12674 2004-11-17 Akim Demaille <akim@epita.fr>,
12675 Alexandre Duret-Lutz <adl@gnu.org>
12677 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12679 (YYCDEBUG): Adjust.
12680 Use it instead of cdebug_.
12681 (Parser::debug_stream, Parser::set_debug_stream): New.
12682 (Parser::symprint_): Define cdebug_ for temporary backward
12684 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12687 2004-11-17 Akim Demaille <akim@epita.fr>
12689 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12690 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12691 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12692 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12694 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12696 * data/glr.c (yyloc_default): Remove; not used.
12697 Problem reported by Frank Heckenbach.
12699 2004-10-25 Akim Demaille <akim@epita.fr>
12701 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12702 Introduce another definition to address simple location arrays.
12703 (yyGLRStack): New member: yyerror_range.
12704 (yyrecoverSyntaxError, yyparse): Update it.
12705 (yyrecoverSyntaxError): Use it when shifting the error token to
12706 have an accurate range, equivalent to the one computed by both
12707 yacc.c and lalr1.cc.
12708 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12709 that column numbers start at column 0, as per GNU Coding
12710 Standards, the others tests, and the doc.
12711 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12712 Adjust to the above change (first column is 0).
12713 And adjust the location of the "<error>", now covering the whole
12716 2004-10-22 Akim Demaille <akim@epita.fr>
12717 and Paul Eggert <eggert@cs.ucla.edu>
12719 Remove some arbitrary limits on goto numbers and relations.
12720 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12721 initial values, since they're never used.
12722 (set_goto_map): ngotos is now unsigned, so test for overflow
12723 by seeing whether it wraps around to zero.
12724 * src/lalr.h (goto_number): Now size_t, not short int.
12725 (GOTO_NUMBER_MAXIMUM): Remove.
12726 * src/relation.c (relation_print, traverse, relation_transpose):
12727 Check for END_NODE rather than looking at sign.
12728 * src/relation.h (END_NODE): New macro.
12729 (relation_node): Now size_t, not short int.
12731 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12733 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12734 keyword, not an identifier. Problem reported by Baron Schwartz in
12735 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12737 2004-10-11 Akim Demaille <akim@epita.fr>
12739 * src/symtab.c (symbol_check_alias_consistency): Also check
12740 type names, destructors, and printers.
12741 Reported by Alexandre Duret-Lutz.
12742 Recode the handling of associativity and precedence in terms
12743 of symbol_precedence_set.
12744 Accept no redeclaration at all, not even equal to the previous
12746 (redeclaration): New.
12747 Use it to factor redeclaration complaints.
12748 (symbol_make_alias): Don't set the type of the alias, let
12749 symbol_check_alias_consistency do it as for other features.
12750 * src/symtab.h (symbol): Add new member prec_location, and
12752 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12753 * tests/input.at (Incompatible Aliases): New.
12755 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12757 .cvsignore fixes to accommodate gnulib changes,
12758 and the practice of naming build directories "_build".
12759 * .cvsignore: Add "_*". Sort.
12760 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12761 * m4/.cvsignore: Add "*_gl.m4".
12763 2004-10-06 Akim Demaille <akim@epita.fr>
12765 * src/parse-gram.y (add_param): Fix the truncation of trailing
12768 2004-10-05 Akim Demaille <akim@epita.fr>
12770 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12771 whether the reducion was empty or not. This leaves room to
12772 improve the use of YYLLOC_DEFAULT in such a case.
12773 lalr1.cc is still experimental, so changing this is acceptable.
12774 And finally, there are probably not many users who changed the
12775 handling of locations in GLR, so changing is admissible too.
12777 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12778 empty reduction, set @$ to an empty location ending the previously
12780 Adjust uses to make sure the code is triggered on empty
12782 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12783 expected output: empty reductions have empty locations.
12785 2004-09-29 Akim Demaille <akim@epita.fr>
12787 * data/lalr1.cc: Move towards a more standard C++ coding style
12788 for templates: Class < T > -> Class<T>.
12790 2004-09-29 Akim Demaille <akim@epita.fr>
12792 * data/lalr1.cc: Reinstall the former ctor, for sake of
12793 compatibility, but warn it will be removed.
12794 Move towards a more standard C++ coding style (i.e., type *var ->
12797 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12799 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12800 since it's less likely to work if NULs are involved in the future.
12802 2004-09-27 Akim Demaille <akim@epita.fr>
12804 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12806 2004-09-27 Akim Demaille <akim@epita.fr>
12808 * data/lalr1.cc (b4_parse_param_decl_1): New.
12809 (b4_parse_param_decl): Use it to have different names between attribute
12810 and argument names.
12811 (b4_cc_constructor_call): Likewise.
12813 2004-09-24 Akim Demaille <akim@epita.fr>
12815 * src/parse-gram.y (add_param): Strip the leading and trailing
12816 blanks from a formal argument declaration.
12817 (YY_LOCATION_PRINT): New.
12819 2004-09-24 Akim Demaille <akim@epita.fr>
12821 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12822 after the location.
12824 2004-09-24 Akim Demaille <akim@epita.fr>
12826 * doc/bison.texinfo (Table of Symbols): Sort.
12828 2004-09-21 Akim Demaille <akim@epita.fr>
12830 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12831 the useless parentheses.
12832 Suggested by Paul Eggert.
12834 2004-09-20 Akim Demaille <akim@epita.fr>
12836 Let the initial-action act on the look-ahead, and use it for the
12837 "initial push" (corresponding to an hypothetical beginning-of-file).
12838 And let lalr1.cc honor %initial-action.
12840 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12842 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12843 (Parser::Parser): Remove the ctor that used to initialize it.
12844 (Parser::parse): Like in the other skeletons, issue the "starting
12845 parse" message before any action.
12846 Honor %initial-action.
12847 Initialize the stacks with the lookahead.
12848 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12850 Push them in the stacks.
12851 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12853 2004-09-20 Akim Demaille <akim@epita.fr>
12855 * doc/bison.texinfo (Initial Action Decl): New.
12857 2004-09-20 Akim Demaille <akim@epita.fr>
12859 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12860 clearer criterion to define it.
12861 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12862 When reducing on an empty RHS, use the latest stacked location as
12864 yylloc is not always available.
12865 * data/glr.c: Likewise.
12866 Also, honor initial-actions.
12868 2004-09-20 Akim Demaille <akim@epita.fr>
12870 * data/yacc.c (YY_LOCATION_PRINT): New.
12871 Define when we know YYLTYPE's structure, i.e., when the default
12872 YYLLOC_DEFAULT is used.
12873 * data/c.m4 (b4_yysymprint_generate): Use it.
12874 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12875 value of the result.
12876 (error_start_): Replace with...
12877 (error_range_): this location array.
12878 This allows to replace code relying on the implementation of
12879 locations by portable code.
12880 * data/yacc.c (yylerrsp): Replace with...
12881 (yyerror_range): this.
12882 Every time a token is popped, update yyerror_range[0], to have an
12883 accurate location for the error token.
12884 * data/glr.c (YY_LOCATION_PRINT): New.
12885 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12886 deference a pointer.
12887 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12888 report the location in %printers.
12890 * src/scan-skel.l: Instead of abort, report error messages to ease
12891 understanding skeleton scanning failures.
12893 2004-09-16 Akim Demaille <akim@epita.fr>
12895 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12896 (iterator, const_iterator): these, to be more in the C++ spirit.
12897 Also, return reverse iterators so that when displaying the stack
12898 we display its bottom first.
12899 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12901 We should probably use vector here though.
12903 2004-09-16 Akim Demaille <akim@epita.fr>
12905 Have more complete shift traces.
12907 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12908 to report Shifts instead of ad hoc YYDPRINTF invocations,
12909 including for the error token.
12910 * data/lalr1.cc (symprint_): Output the location.
12911 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12912 output the location within the %printer.
12913 Activate GLR tests, at least to make sure they compile properly.
12914 They still don't pass though.
12915 * tests/calc.at: Adjust expect verbose output, since now "Entering
12916 state..." is on a different line than the "Shifting" message.
12918 2004-09-08 Akim Demaille <akim@epita.fr>
12920 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12921 Bison directive from the Bison file to the invocation of this
12922 macro, so that these directives are passed to
12923 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12924 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12925 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12926 the extra Bison directives instead of the whole series.
12927 Change the grammar so that there are recoverable errors, and
12928 unrecoverable errors. Now we can have the parser give up before
12929 consuming the whole input. As a result we now can observe that
12930 the lookahead is freed when needed.
12931 Change the parser source to parse argv[1] instead of a hard coded
12933 Simplify yylex, and give a value and location to EOF.
12934 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12935 passed directives already coded in the file.
12936 Add some tests to check the location of "error".
12937 For some tests, the C++ parser is correct, and not yacc.c.
12938 For other tests, they provide different, but unsatisfying, values,
12939 so keep the C++ value so that at least one parser is "correct"
12940 according to the test suite.
12941 (Actions after errors): Remove, this is subsumed by the
12942 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12944 2004-09-06 Akim Demaille <akim@epita.fr>
12946 * data/lalr1.cc: Adjust the indentation of the labels.
12947 (Parser::pop): New.
12950 2004-09-06 Akim Demaille <akim@epita.fr>
12952 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12953 argument, an informative message.
12954 Call YY_SYMBOL_PRINT.
12955 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12956 * data/lalr1.cc (destruct_): Likewise.
12957 In addition, no longer depend on b4_yysymprint_generate and
12958 b4_yydestruct_generate to generate these functions, do it "by
12961 2004-09-03 Akim Demaille <akim@epita.fr>
12963 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12964 invoked, yydestruct the lookahead.
12965 * tests/calc.at (Calculator $1): Update the expected lengths of
12966 traces: there is an added line for the discarded lookahead.
12967 * doc/bison.texinfo (Destructor Decl): Some rewording.
12968 Define "discarded" symbols.
12970 2004-09-02 Akim Demaille <akim@epita.fr>
12972 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12974 2004-09-02 Akim Demaille <akim@epita.fr>
12976 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12977 (YYDSYMPRINTF): Rename as...
12978 (YY_SYMBOL_PRINT): this.
12979 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12981 Use it instead of direct symprint_ calls.
12982 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12985 2004-09-02 Akim Demaille <akim@epita.fr>
12987 * data/lalr1.cc (b4_yysymprint_generate): New.
12988 (symprint_): New member function, defined when YYDEBUG.
12989 Use it consistently instead of token/nterm debugging output by
12991 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12992 %printer calls to use cdebug_ when using lalr1.cc.
12994 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12996 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12997 with #ifdef YYDEBUG.
12999 2004-08-26 Akim Demaille <akim@epita.fr>
13001 * doc/bison.texinfo (Implementing Loops): Rename as...
13002 (Implementing Gotos/Loops): this.
13004 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
13006 Adjust to latest gnulib.
13007 * bootstrap (gnulib_modules): Add xalloc-die.
13008 Set LC_ALL=C so that file names sort consistently.
13009 Prefer the gnulib copies of gettext.m4, glibc21.m4,
13010 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
13011 uintmax_t.m4, ulonglong.m4.
13012 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
13013 po.m4 since we are now using _gl.m4 instead.
13015 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
13017 * src/scan-action.l: Remove. Scanning of semantic actions is
13018 handled in scan-gram.l.
13020 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
13022 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
13024 * src/location.h (struct): The file member is a uniqstr.
13025 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13027 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13029 Fix bug with non-%union parsers that have printers or destructors,
13030 which led to a Bison core dump. Reported by Peter Fales in
13031 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
13033 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13034 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13035 not to our own type.
13036 * src/output.c (symbol_destructors_output, symbol_printers_output):
13037 Don't assume %union.
13038 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13039 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13040 UNION-FLAG. All callers changed.
13041 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13042 Use type char, not unsigned int, when declaring an array of char;
13043 this lets us remove a cast.
13044 (Printers and Destructors): Add non-%union test cases.
13046 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13048 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13049 GLR writeups. E.g., avoid frenchspacing and the future tense,
13050 change "lookahead" to "look-ahead", and change "wrt" to "with
13053 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13055 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13056 New sections, split off from the GLR Parsers section. Put the new
13057 Simple GLR Parser near the start of the GLR section, for clarity.
13058 Rewrite connective text.
13060 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
13062 * doc/bison.texinfo (Simple GLR Parsers): New section.
13064 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13066 * NEWS, TODO, doc/bison.texinfo:
13067 Use "look-ahead" instead of "lookahead", to be consistent.
13068 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13069 while we're fixing "look-ahead".
13070 * src/conflicts.c (shift_set): Renamed from shiftset.
13071 (look_ahead_set): Renamed from lookaheadset.
13072 * src/print.c: Likewise.
13073 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13074 name for "lookahead".
13075 (report_types, usage): Likewise.
13076 * src/getargs.h (report_look_ahead_tokens): Renamed from
13078 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13079 compute_lookaheads.
13080 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13081 (look_ahead_tokens_print): Renamed from lookaheads_print.
13082 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13083 state_rule_lookaheads_print.
13084 * src/state.h: Likewise.
13085 (reductions.look_ahead_tokens): Renamed from lookaheads.
13086 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13087 AT_DATA_LOOKAHEADS_GRAMMAR.
13089 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13091 * README: Update location of patched M4 distribution.
13093 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13095 Don't assume the C++ compiler takes the same arguments as the C compiler
13097 * configure.ac (O0CXXFLAGS): New var.
13098 * tests/atlocal.in (CXXFLAGS): Use it.
13100 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
13102 Fix some "make check" problems with C++ reported by
13103 Albert Chin-A-Young for Tru64 C++ in this thread:
13104 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
13106 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
13107 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13108 Output to a .cc file for C++, not to a .c file.
13109 * tests/calc.at (AT_CHECK_CALC): Likewise.
13110 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13111 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13113 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13115 * tests/calc.at, tests/actions.at: Workaround for SGI
13116 C++ compiler. (trivial change)
13118 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13120 Spent a few hours checking out which prerequisite versions the
13121 current sources actually require. I went all the way back to
13122 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13123 a seemingly endless set of combinations of versions more recent
13124 than that. The bottom line is that the current sources require
13125 fairly recent versions of the build tools, and it'll be some work
13127 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13128 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13129 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13130 Add comments explaining why those particular versions are
13133 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13134 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
13135 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
13137 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13138 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13140 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13142 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13143 0.11.5. Suggested by Bruno Haible.
13144 * bootstrap: Remove gettext version checking.
13146 * doc/bison.texinfo (Decl Summary): Also mention that %union
13147 can depend on prerequisite types. Problem reported by Tim
13150 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13152 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13153 * README-alpha: Don't tell people not to package this.
13155 * bootstrap: Don't assume $(...) works; use `...` instead.
13156 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13159 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13160 put into the -d output file, and mention what to do if YYSTYPE is
13161 defined as a macro.
13163 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13165 Undo change made earlier today: it caused autopoint to not bring
13166 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13169 * bootstrap: Check that gettext version matches what's in
13170 configure.ac. Warn users to ignore robots.txt ERROR 404.
13171 * bootstrap: Undo today's earlier change (logged below).
13172 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
13174 The gettext version checking is causing more trouble than it's
13175 curing; remove it. Problem reported by Paul Hilfinger.
13177 * bootstrap: Issue a warning that one can expect a message
13178 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13179 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13181 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13183 Ensure that the C++ compiler used for testing actually works on a
13184 simple test program; if not, skip the C++-related tests. Problem
13185 reported by Vin Shelton in:
13186 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
13188 * m4/cxx.m4: New file.
13189 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13190 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13191 * tests/local.at (AT_COMPILE_CXX): Use it.
13193 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13195 * data/glr.c (yylloc): Output this macro even if locations are not
13196 being generated, as the GLR parser needs it even in that case.
13197 Problem reported by Troy A. Johnson
13198 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13200 * configure.ac (AC_INIT): Update to 1.875e.
13202 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13204 * NEWS: Version 1.875d.
13205 * configure.ac (AC_INIT): Likewise.
13206 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13208 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13209 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13210 lalr1.cc runs afoul of the first, and the last two are no longer
13211 supported by GCC 3.4.0.
13212 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13213 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13215 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13217 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13218 unsigned int, for compatibility with latest gnulib hash module.
13219 * src/state.c (state_hash, state_hasher): Likewise.
13220 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13221 * src/uniqstr.c (hash_uniqstr): Likewise.
13223 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13225 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13227 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13228 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13229 character and string literals.
13230 (unexpected_end): New function.
13231 (unexpected_eof): Use it.
13232 (unexpected_newline): New function.
13233 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13236 * NEWS: Document %expect-rr.
13238 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13239 Fix typo by replacing $1 with $option.
13240 Remove more 'intl'-related files.
13241 Don't DEFUN AM_INTL_SUBDIR twice.
13243 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13244 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13246 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13247 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13248 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13249 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13250 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13251 * src/.cvsignore: Add *.output.
13253 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13254 gets copied to the output file.
13256 2004-04-28 Paul Eggert <eggert@twinsun.com>
13258 Get files from the gnulib and po repositories, instead of relying
13259 on them being in our CVS. Upgrade to latest versions of gnulib
13262 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13263 * bootstrap: Bootstrap from gnulib and po repositories.
13264 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13265 * README-cvs: Document these changes. Remove version numbers from
13266 mentions of build tools, since they change so often. Mention Flex.
13268 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13269 (gl_USE_SYSTEM_EXTENSIONS): Add.
13270 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13271 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
13273 (AC_ISC_POSIX): Remove; we no longer support this
13274 ancient OS, as it gets in the way of latest Autoconf & gnulib.
13275 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13276 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13277 Do not check for C89 headers, except for locale.h which is used
13278 by the Yacc library and must port to K&R hosts.
13279 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13280 Do not check for C89 functions, except for setlocale which is
13281 used by the Yacc library.
13282 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13283 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13284 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13285 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13286 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13287 AM_GNU_GETTEXT): Remove; now done by:
13288 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13289 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13292 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13293 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13294 Define to empty, as gnulib.mk will do the rest for us.
13295 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13297 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13298 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13300 * src/files.c: Include gnulib's xstrndup.h.
13302 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13303 (REALLOC): Use xnrealloc, for likewise.
13304 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13305 (strnlen, memrchr): Remove decls; functions no longer used.
13306 Include <stpcpy.h>.
13308 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13309 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13310 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13311 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13312 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13313 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13314 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13315 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13316 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13317 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13318 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13319 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13320 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13321 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13322 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13323 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13324 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13325 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13326 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13327 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13328 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13329 Remove, as these files are now generated automatically
13330 by bootstrap or automake.
13332 * po/ChangeLog: Remove: all but one entry was a duplicate
13333 of this file, and I moved that 2000-11-02 entry here.
13335 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13336 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13337 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13338 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13339 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13340 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13341 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13342 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13343 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13344 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13345 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13347 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13348 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13349 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13350 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13351 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13352 * src/.cvsignore: Remove *_.c.
13355 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13356 support it. (The latest stable gzip doesn't.)
13358 2004-04-27 Paul Eggert <eggert@twinsun.com>
13360 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13361 case, as stos_ is now used by destructors due to the 2004-02-09
13364 Remove more K&R C support.
13365 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13366 * lib/subpipe.c (errno): Remove decl.
13367 Include <stdlib.h> unconditionally.
13368 (EXIT_FAILURE): Remove macro.
13369 * src/complain.c (vfprintf, strerror): Remove.
13370 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13372 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13373 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13374 (strchr, strspn, memchr): Remove decls.
13375 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13376 unconditionally. Do not declare perror.
13377 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13380 * src/complain.c (_): Remove useless defn, as system.h defines this.
13382 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13383 with latest obstack.h.
13384 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13385 to procedure types, as obstack.h now does that for us.
13386 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13388 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13389 so that this include file can stand alone.
13390 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13391 does this now. Include subpipe.h first after config.h, to
13392 test whether it can stand alone.
13394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13395 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13396 unused declaration.
13398 * tests/synclines.at (%union synch line): Put a dummy member in
13399 the union, because empty unions aren't allowed in C. Caught
13402 2004-04-13 Jim Meyering <jim@meyering.net>
13404 * src/conflicts.c (conflicts_print): Correct format string typo:
13405 use `%%' to produce literal `%'. (trivial change)
13407 2004-03-30 Paul Eggert <eggert@twinsun.com>
13409 * src/getargs.c (version): Update copyright year to 2004.
13411 * data/c.m4 (b4_int_type): Use 'short int' rather than
13412 'short', and similarly for 'long', 'unsigned', etc.
13413 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13414 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13415 yy_yypstack, yydumpstack): Likewise.
13416 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13417 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13419 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13420 yy_stack_print, yyparse): Likewise.
13421 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13422 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13423 * lib/bitset.c (bitset_print): Likewise.
13424 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13425 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13426 * lib/bitsetv.c (bitsetv_dump): Likewise.
13427 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13428 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13430 * src/LR0.c (allocate_itemsets): Likewise.
13431 * src/gram.h (rule_number, rule): Likewise.
13432 * src/lalr.h (goto_number): Likewise.
13433 * src/nullable.c (nullable_compute): Likewise.
13434 * src/output.c (prepare_rules): Likewise.
13435 * src/relation.c (relation_print, relation_digraph): Likewise.
13436 * src/relation.h (relation_node): Likewise.
13437 * src/state.h (state_number, transitions, errs, reductions,
13438 struct state): Likewise.
13439 * src/symtab.h (symbol_number, struct symbol): Likewise.
13440 * src/tables.c (vector_number, tally, action_number,
13441 default_goto, goto_actions): Likewise.
13442 * tests/existing.at (GNU Cim Grammar): Likewise.
13443 * tests/regression.at (Web2c Actions): Likewise.
13445 * src/output.c (muscle_insert_short_int_table): Renamed from
13446 muscle_insert_short_table. All uses changed.
13448 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13450 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13451 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13452 Add %expect-rr rule.
13454 * src/scan-gram.l: Recognize %expect-rr.
13456 * src/conflicts.h (expected_sr_conflicts): Rename from
13457 expected_conflicts.
13458 (expected_rr_conflicts): Declare.
13460 * src/conflicts.c (expected_sr_conflicts): Rename from
13461 expected_conflicts.
13462 (expected_rr_conflicts): Define.
13463 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13465 Use expected_sr_conflicts in place of expected_conflicts.
13466 Warn if expected_rr_conflicts used in non-GLR parser.
13468 * doc/bison.texinfo: Add documentation for %expect-rr.
13470 2004-03-08 Paul Eggert <eggert@gnu.org>
13472 Add support for hex token numbers. Suggested by Odd Arild Olsen in
13473 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
13475 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13477 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13478 * src/scan-gram.l (scan_integer): New function.
13480 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13481 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13482 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13483 Say "long int", not "long", for uniformity with GNU style.
13485 2004-02-25 Paul Eggert <eggert@twinsun.com>
13487 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13488 compilers. This fixes a problem with Intel's C++ compiler being
13489 chatty, reported by Guido Trentalancia in
13490 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
13492 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13494 Support %destructor and merge error locations in lalr1.cc.
13496 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13497 (Parser::stos_): Define unconditionally.
13498 (Parser::destruct_): New method. Generate its body with
13499 b4_yydestruct_generate.
13500 (Parser::error_start_): New attribute.
13501 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13502 token which are discarded.
13503 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13504 error_start_ when erroneous token are discarded.
13505 (Parser::parse) <yyerrlab1>: Compute the location of the error
13506 token so that it covers all the discarded tokens.
13507 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13508 it can be called with `%skeleton "lalr1.cc"', and do that.
13510 2004-02-02 Paul Eggert <eggert@twinsun.com>
13512 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13513 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13514 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13515 There's no need to mention top_builddir since Automake does that
13517 (INCLUDES): Remove, as Automake says it's obsolescent.
13518 Contents migrated into AM_CPPFLAGS as described above.
13519 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13521 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13523 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13524 (yyreportSyntaxError): Handle case where lookahead token is
13527 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13529 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13530 resulting parsers are compilable with C++.
13532 2003-12-23 Paul Eggert <eggert@twinsun.com>
13534 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13535 * src/output.c (output_skeleton): Rename local var.
13536 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13537 Bison tokens, as this runs afoul of the 2003-10-07 change that
13538 disallowed NUL bytes in character constants or string literals.
13540 * tests/local.at: Require Autoconf 2.59's Autotest.
13541 * tests/testsuite.at: Don't include local.at, since we now assume
13542 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13544 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13545 multiple inclusion warnings.
13547 2003-12-02 Akim Demaille <akim@epita.fr>
13549 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13553 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13555 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13557 2003-10-07 Paul Eggert <eggert@twinsun.com>
13559 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13560 if testsuite doesn't exist.
13562 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13563 literals, unfortunately.
13564 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13565 Complain about NUL bytes in character constants or string literals.
13567 2003-10-05 Paul Eggert <eggert@twinsun.com>
13569 * NEWS: Don't document %no-default-prec, as it's still
13571 * doc/bison.texinfo: Document %no-default-prec only if
13572 the defaultprec flag is set. Normally it's not.
13574 2003-10-04 Paul Eggert <eggert@twinsun.com>
13576 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13577 non-modifiable lvalue, instead of a modifiable one.
13578 * doc/bison.texinfo (Actions): Document that $$ can
13579 be assigned to. Do not claim that $$ and $N are
13580 array element references: user code should not rely on this.
13582 2003-10-01 Paul Eggert <eggert@twinsun.com>
13584 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13585 (grammar_declaration): Use it.
13586 * src/scan-gram.l: New token %no-default-prec.
13587 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13588 * NEWS, doc/bison.texinfo: Document the above.
13590 2003-10-01 Akim Demaille <akim@epita.fr>
13592 VCG no longer supports long_straight_phase.
13594 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13595 * src/print_graph.c (print_graph): Adjust.
13597 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
13598 and Paul Eggert <eggert@twinsun.com>
13600 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13601 Table of Symbols): Document %default-prec.
13602 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13603 (grammar_declaration): Set default_prec on %default-prec.
13604 * src/scan-gram.l (%default-prec): New token.
13605 * src/reader.h (default_prec): New flag.
13606 * src/reader.c: Likewise.
13607 (packgram): Handle it.
13608 * tests/conflicts.at (%default-prec without %prec,
13609 %default-prec with %prec, %default-prec 1): New tests.
13611 2003-09-30 Paul Eggert <eggert@twinsun.com>
13613 * tests/testsuite.at: Include local.at, not input.at, fixing
13614 a typo in the 2003-08-25 patch.
13616 2003-08-27 Akim Demaille <akim@epita.fr>
13618 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13621 2003-08-26 Akim Demaille <akim@epita.fr>
13623 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13624 "<\#" to avoid magic from Gnus when posting parts of this script.
13626 2003-08-26 Akim Demaille <akim@epita.fr>
13628 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13629 (Parser::parse): here.
13630 Adjust: nerrs and errstatus is now replaced by...
13631 (Parser::nerrs_, Parser::errstatus_): New.
13633 2003-08-25 Akim Demaille <akim@epita.fr>
13635 * config/announce-gen, Makefile.cfg: New.
13636 * Makefile.am: Adjust.
13637 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13638 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13640 2003-08-25 Akim Demaille <akim@epita.fr>
13642 When reducing initial empty rules, Bison parser read an initial
13643 location that is not defined. This results in garbage, and that
13644 affects Bison's own parser. Therefore we need (i) to extend Bison
13645 to support a means to initialize this location, and (ii) to use
13646 this CVS Bison to fix CVS Bison's parser.
13648 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13650 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13651 * src/parse-gram.y: Adjust.
13652 (%initial-action): New.
13653 (%error-verbose): Since we require CVS Bison, there is no reason
13655 * src/scan-gram.l: Adjust.
13656 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13657 * data/yacc.c (yyparse): Use b4_initial_action.
13659 2003-08-25 Akim Demaille <akim@epita.fr>
13661 * doc/bison.texinfo: Don't promote stdout for error messages.
13663 2003-08-25 Akim Demaille <akim@epita.fr>
13665 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13666 From Alexandre Duret-Lutz.
13668 2003-08-25 Akim Demaille <akim@epita.fr>
13672 2003-08-25 Akim Demaille <akim@epita.fr>
13674 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13677 2003-08-25 Akim Demaille <akim@epita.fr>
13679 * data/lalr1.cc (Parser::reduce_print_): New.
13682 2003-08-25 Akim Demaille <akim@epita.fr>
13684 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13685 error recovery loops. This patch is based on
13686 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
13687 Also, augment the similarity between lalr1.cc and yacc.c.
13688 Note: the locations of error recovery rules are not correct yet.
13690 * data/lalr1.cc: Comment changes to augment the similarity between
13691 lalr1.cc and yacc.c.
13692 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13693 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13694 yyerrlab), when hitting EOF, pop the whole stack here instead of
13695 merely falling thru the default error handling mechanism.
13696 (yyerrorlab): New label, with the old contents of YYERROR,
13697 plus the following change: pop the stack of rhs corresponding
13698 to the production that invoked YYERROR. That is how Yacc
13699 behaves (required by POSIX).
13700 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13703 2003-08-25 Akim Demaille <akim@epita.fr>
13705 Tune local.at so that people can "autom4te -l autotest calc.at -o
13706 calc" for instance, to extract a sub test suite.
13708 * tests/testsuite.at: Move the initialization, Autotest version
13709 requirement, and AT_TESTED invocation into...
13710 * tests/local.at: here.
13711 * tests/testsuite.at: Include it for compatibility with Autoconf
13713 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13716 2003-08-04 Paul Eggert <eggert@twinsun.com>
13718 Rework code slightly to avoid gcc -Wtraditional warnings.
13719 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13720 The returned value is now stored in *YY0. All callers changed.
13721 * src/output.c (merge_output): Adjust to the above change.
13723 2003-07-26 Paul Eggert <eggert@twinsun.com>
13725 * data/glr.c (YYASSERT): New macro.
13726 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13727 yyresolveStates, yyprocessOneStack):
13728 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13729 Derived from a suggestion by Frank Heckenbach.
13731 2003-07-25 Paul Eggert <eggert@twinsun.com>
13733 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13734 for portability to K&R C (after ansi2knr, presumably). See
13735 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
13736 by Frank Heckenbach, though I have omitted the structure-initialization
13737 part of his glr-knr.diff patch since I recall that the Portable
13738 C Compiler didn't require that change.
13740 Let the user specify how to allocate and free memory.
13741 Derived from a suggestion by Frank Heckenbach in
13742 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
13743 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13744 All uses of free, malloc, realloc changed to use these macros,
13745 and unnecessary casts removed.
13746 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13748 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13750 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13751 use s.empty() rather than s == "" to test for empty string; see
13752 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
13755 2003-06-25 Akim Demaille <akim@epita.fr>
13757 * config/depcomp, config/install-sh: Update from masters.
13759 2003-06-20 Paul Eggert <eggert@twinsun.com>
13761 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13762 and return properly parenthesized result.
13763 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13764 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13765 Remove unnecessary parentheses from uses.
13766 * doc/bison.texinfo (Location Default Action): Describe the
13767 conventions for parentheses.
13769 2003-06-19 Paul Eggert <eggert@twinsun.com>
13771 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13772 yyreportTree): Do not assume that size_t is the same width as int,
13773 when printing sizes. Print sizes using an unsigned format.
13774 Problem reported by Frank Heckenbach in
13775 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
13777 Port to Forte Developer 7 C compiler.
13778 * data/glr.c (struct YYLTYPE): If locations are not being used,
13779 declare a single dummy member, as empty structs do not conform
13781 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13782 the Forte Developer 7 C compiler complains that end-of-loop
13783 code is not reached.
13785 2003-06-17 Paul Eggert <eggert@twinsun.com>
13787 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13788 avoid warnings from picky compilers about redefinition of PARAMS.
13790 2003-06-17 Paul Eggert <eggert@twinsun.com>
13794 * NEWS: Document 1.875b.
13796 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13797 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13798 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13799 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13800 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13801 per recent gettext manual's suggestion.
13802 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13803 Use prototypes, not old-style definitions.
13804 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13805 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13806 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13807 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13808 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13809 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13810 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13811 vbitset_or_and_cmp, vbitset_copy): Likewise.
13813 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13814 Do not include <stdlib.h>.
13815 (PARAMS): Define unconditionally for C89.
13816 (ATTRIBUTE_NORETURN): Remove.
13817 (ATTRIBUTE_UNUSED): Define unconditionally.
13819 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
13820 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
13821 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13822 * lib/vbitset.c, lib/vbitset.h: New files.
13823 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13824 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13827 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13828 `How Can I Reset @code{yyparse}', since texinfo does not allow
13829 arbitrary @ in node names.
13831 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13832 shouldn't be needed according to the gettext 0.12.1 documentation
13833 but which seem to be needed anyway: codeset.m4 glibc21.m4
13834 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
13835 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
13836 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
13838 * lib/.cvsignore: Add stdbool.h.
13839 * m4/.cvsignore: Add nls.m4, po.m4.
13841 Upgrade to CVS gnulib.
13842 * stdbool_.h: File renamed from stdbool.h.in.
13843 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13845 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13846 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13847 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13848 (MOSTLYCLEANFILES): New var.
13849 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13850 (stdbool.h): New rule.
13851 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13852 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13853 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13854 m4/quote.m4: Upgrade to today's gnulib.
13856 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13857 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13858 the tests right now.
13859 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13860 yyerror are declared before use; C99 requires this.
13862 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13864 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13866 (yyrecoverSyntaxError): Correct the logic for setting and testing
13868 Correct comment on handling EOF.
13869 Allow states with only a default reduction, rather than failing
13870 (I can't quite reconstruct why these were not allowed before).
13872 Fixes to avoid problem that $-N rules in GLR parsers can cause
13873 buffer overruns, corrupting state.
13875 * src/output.c (prepare_rules): Output max_left_semantic_context
13877 * src/reader.h (max_left_semantic_context): New variable declaration.
13878 * src/scan-gram.l (max_left_semantic_context): Define.
13879 (handle_action_dollar): Update max_left_semantic_context.
13880 * data/glr.c (YYMAXLEFT): New definition.
13881 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13882 (yyresolveAction): Ditto.
13884 Fixes to problems with location handling in GLR parsers reported by
13885 Frank Heckenbach (2003/06/05).
13887 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13888 (YYRHSLOC): Add parentheses, and define only if locations used.
13889 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13890 locations not used.
13891 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13892 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
13894 * tests/cxx-type.at: Exercise location information; update tests
13895 to differentiate output with and without locations.
13896 Remove forward declarations of yylex and yyerror---caused errors
13897 because default YYLTYPE not yet defined.
13898 Change semantic actions to compute strings, rather than printing
13899 them directly (to test proper passing of semantics values). Change
13900 output to prefix notation and update test data and expected results.
13901 (yylex): Track locations.
13902 (stmtMerge): Return value rather than printing, and include arguments
13905 2003-06-03 Paul Eggert <eggert@twinsun.com>
13907 Avoid warnings generated by GCC 2.95.4 when Bison is
13908 configured with --enable-gcc-warnings.
13909 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13910 yy::]b4_parser_class_name[::translate_,
13911 yy::Stack::operator[] (unsigned),
13912 yy::Stack::operator[] (unsigned) const,
13913 yy::Slice::operator[] (unsigned),
13914 yy::Slice::operator[] (unsigned) const):
13915 Rename local vars to avoid warnings.
13916 * tests/glr-regression.at (Improper handling of embedded actions
13917 and $-N in GLR parsers): Remove unused local variable from yylex.
13918 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13919 (void) as arg when not pure, since we now assume C89 when building
13920 Bison. Pacify GCC by using parameter.
13922 2003-06-02 Paul Eggert <eggert@twinsun.com>
13924 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13925 yy::Location::lines, yy::Location::columns): Rename arguments
13926 to avoid shadowing; this removes a warning generated by GCC 3.3.
13928 2003-06-01 Paul Eggert <eggert@twinsun.com>
13930 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13931 to g++, as GCC 3.3 complains if you do it.
13932 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13933 everything that WARNING_CFLAGS has, except omit warnings
13934 not suitable for C++.
13935 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13936 * tests/atlocal.in (CXXFLAGS): New var.
13937 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13939 Fix a GLR parser bug I reported in February; see
13940 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
13941 The problem was that GLR parsers did not conform to the C standard,
13942 because actions like { $1 = $2 + $3; } expanded to expressions
13943 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13944 to a local variable. The C standard says that expressions
13945 like (var = f ()) + (var = f ()) have undefined behavior.
13946 Another problem was that GCC sometimes issues warnings that
13947 yyfill and its parameters are unused.
13949 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13950 as possibly unused.
13951 (yyfill): New function.
13953 (yyuserAction): Change type of yynormal to bool, so that it matches
13954 the new yyfill signature. Mark it as possibly unused.
13957 Follow up on a bug I reported in February, where a Bison-generated
13958 parser can loop. Provide a test case and a fix for yacc.c. I
13959 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13960 The original bug report is in:
13961 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
13963 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13964 macro's size was becoming unwieldy.
13965 (yyerrlab): Do not discard an empty lookahead symbol, as this
13966 might destroy garbage.
13967 (yyerrorlab): New label, with the old contents of YYERROR,
13968 plus the following change: pop the stack of rhs corresponding
13969 to the production that invoked YYERROR. That is how Yacc
13970 behaves, and POSIX requires this behavior.
13971 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13972 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13973 Define 'alarm' to do nothing if unistd.h is not available.
13974 Add a new rule "exp: '-' error;" to test the above change to
13975 data/yacc.c. Use 'alarm' to abort any test taking longer than
13976 10 seconds, as it's probably looping.
13977 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13978 Also, the new yacc.c generates two fewer diagnostics for an
13981 2003-05-24 Paul Eggert <eggert@twinsun.com>
13983 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13984 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13985 This fixes a problem reported by John Bowman when the Compaq/HP
13986 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13987 -ansi -Wall -gall).
13988 * data/yacc.c (union yyalloc): Likewise.
13989 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
13991 Switch from 'int' to 'bool' where that makes sense.
13993 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13994 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13995 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13996 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13997 Return or accept bool, not int. All callers changed.
13998 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13999 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
14000 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
14001 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
14002 bitset_or_and_cmp_): Likewise.
14003 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
14004 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
14005 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
14006 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
14007 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
14008 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
14009 bitset_stats_or_and_cmp): Likewise.
14010 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
14011 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
14012 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
14013 ebitset_xor_cmp): Likewise.
14014 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
14015 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
14016 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
14017 lbitset_xor_cmp): Likewise.
14018 * lib/bbitset.h: Include <stdbool.h>.
14019 (struct bitset_vtable): The following members now return bool, not
14020 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
14021 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
14023 * src/conflicts.c (count_rr_conflicts): Likewise.
14024 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14026 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14027 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14028 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14029 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14030 graph_flag): Likewise.
14031 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14032 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14033 graph_flag): Likewise.
14034 * src/output.c (error_verbose): Likewise.
14035 * src/output.h (error_verbose): Likewise.
14036 * src/reader.c (start_flag, typed): Likewise.
14037 * src/reader.h (typed): Likewise.
14038 * src/getargs.c (LOCATIONS_OPTION): New constant.
14039 (long_options, getargs): Use it.
14040 * src/lalr.c (build_relations): Use bool, not int.
14041 * src/nullable.c (nullable_compute): Likewise.
14042 * src/print.c (print_reductions): Likewise.
14043 * src/tables.c (action_row, pack_vector): Likewise.
14044 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14045 * src/output.c (prepare): Use it.
14046 * src/output.c (token_definitions_output,
14047 symbol_destructors_output, symbol_destructors_output): Use string,
14048 not boolean integer, to keep track of whether to output separator.
14049 * src/print_graph.c (print_core): Likewise.
14050 * src/state.c (state_rule_lookaheads_print): Likewise.
14052 * config/install-sh: Sync from automake 1.7.5.
14054 2003-05-14 Paul Eggert <eggert@twinsun.com>
14056 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14057 semicolon after a grammar declaration, in the interest of possible
14058 future changes to the Bison input language.
14059 Do not allow a stray semicolon at the start of the grammar.
14060 (rhses.1): Allow one or more semicolons after any rule, including
14061 just before "|" as required by POSIX.
14062 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14065 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14067 %parse-param support for lalr1.cc.
14069 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14070 b4_cc_constructor_calls, b4_cc_constructor_call,
14071 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14073 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14074 parse-param arguments.
14075 (yy::b4_parser_class_name): Declare instance variables to
14076 hold parse-param arguments.
14077 * tests/calc.at: s/value/semantic_value/ because value clashes
14078 with a member of yy::b4_parser_class_name. Adjust C++ code
14079 to handle %parse-param. Enable %parse-param test in C++.
14081 2003-05-12 Paul Eggert <eggert@twinsun.com>
14083 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14084 English a bit. Fix fclose typo. Change "const char" to "char
14085 const", and use ANSI C rather than K&R for "main". Suggest
14086 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14087 and suggest yy_switch_to_buffer.
14089 2003-05-05 Paul Eggert <eggert@twinsun.com>
14091 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14092 C89. This avoids a diagnostic on compilers that define __STDC__
14093 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
14094 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14096 2003-05-03 Paul Eggert <eggert@twinsun.com>
14098 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
14099 Do not overrun array bounds.
14100 This should fix a bug reported today by Olatunji Oluwabukunmi in
14101 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
14103 2003-04-29 Akim Demaille <akim@epita.fr>
14105 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
14106 * src/getargs.c, src/getargs.h: here, as bool, not int.
14107 (nondeterministic_parser): New.
14108 * src/parse-gram.y, src/scan-gram.l: Support
14109 %nondeterministic-parser.
14110 * src/output.c (prepare): Use nondeterministic_parser instead
14111 of glr_parser where appropriate.
14112 * src/tables.c (conflict_row, action_row, save_row)
14113 (token_actions, token_actions, pack_vector): Ditto.
14115 2003-04-29 Akim Demaille <akim@epita.fr>
14117 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14119 2003-04-29 Akim Demaille <akim@epita.fr>
14121 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14122 with %pure-parser and %locations to exercise the patch from Yakov
14125 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14127 * data/yacc.c: (b4_lex_param): Corrected for the case where
14128 %lex-param is provided and %pure-parser isn't.
14130 2003-04-27 Paul Eggert <eggert@twinsun.com>
14132 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
14133 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
14134 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14135 if it is not defined.
14136 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14138 2003-04-26 Paul Eggert <eggert@twinsun.com>
14140 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14141 Declare to be of type suitable for the ninf value itself, not of
14142 type suitable for the corresponding table, since the latter might
14143 be unsigned but the ninf value might be negative. This fixes a
14144 bug reported by Alexandre Duret-Lutz in
14145 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
14147 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14148 invokes it. We shouldn't invoke it twice because it will attempt
14149 to put error.o in the archive twice. This fixes a glitch reported
14150 by Martin Mokrejs in
14151 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14153 2003-04-21 Paul Eggert <eggert@twinsun.com>
14155 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14158 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14160 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14161 Fix obvious typo that results in uncompilable GLR parsers
14162 when both %pure-parser and %locations are used. (trivial change)
14164 2003-04-17 Paul Eggert <eggert@twinsun.com>
14166 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14167 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14168 Do not insert the expected token via unput, as this runs afoul
14169 of a POSIX-compatibility bug in flex 2.5.31.
14170 All uses changed to BEGIN the parent state,
14171 since we no longer insert the expected token via unput.
14172 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14173 that is no longer emitted after the above change.
14175 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14176 the first one. This change is from Paul Hilfinger, and it fixes
14177 regression reported by Werner Lemberg in
14178 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
14180 (resolve_sr_conflict): Don't invoke state_errs_set
14181 unless one or more tokens have been explicitly made errors.
14182 Otherwise, the above change causes Bison to abort.
14184 * tests/existing.at (GNU pic Grammar): New test case, taken from
14187 2003-03-31 Akim Demaille <akim@epita.fr>
14189 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14191 2003-03-31 Akim Demaille <akim@epita.fr>
14193 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14196 2003-03-31 Akim Demaille <akim@epita.fr>
14198 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14199 From Paul Hilfinger.
14201 2003-03-29 Akim Demaille <akim@epita.fr>
14203 * m4/error.m4: Do not put under dynamic conditions some code which
14204 expansion is under static control.
14206 2003-03-29 Akim Demaille <akim@epita.fr>
14208 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14210 2003-03-29 Akim Demaille <akim@epita.fr>
14212 * doc/bison.texinfo (Strings are Destroyed): New.
14214 2003-03-13 Paul Eggert <eggert@twinsun.com>
14216 * .cvsignore: Add configure.lineno.
14217 * src/.cvsignore: Add yacc.
14218 * tests/.cvsignore: Add testsuite.log.
14219 * doc/fdl.texi: Sync with latest FSF version.
14221 2003-03-12 Paul Eggert <eggert@twinsun.com>
14223 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14224 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14225 cursor, instead of leaving it undefined. This fixes a bug
14226 reported by Tim Van Holder in
14227 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
14228 * tests/input.at (Torturing the Scanner): Test the scanner on
14229 an empty input file, which was Tim Van Holder's test case.
14231 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14232 <sys/resource.h> can be included, include sys/time.h and
14233 sys/times.h first, if available. This works around the SunOS
14234 4.1.4 porting bug reported by Bruce Becker in
14235 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
14237 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14238 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14239 AC_HEADER_SYS_WAIT.
14241 Merge changes from gnulib. This was prompted because the CVS
14242 snapshot didn't build on Solaris 7 due to strnlen problems.
14244 These changes need to be merged back into gnulib:
14245 * lib/hash.c: Include <stdbool.h> unconditionally.
14246 * m4/onceonly.m4 (m4_quote): New macro.
14247 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14248 Quote AC_FOREACH variable-expansions properly.
14249 The 2003-01-03 obstack.h change also needs merging.
14250 {end of changes requiring merging}
14252 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14253 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14254 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14255 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14256 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14257 New files, imported from gnulib.
14258 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14261 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14262 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14265 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14267 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14268 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14269 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14270 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14271 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14272 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14273 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14274 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14275 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14276 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14277 (jm_PREREQ_ARGMATCH): Remove.
14278 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14279 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14281 * src/system.h: Include <stdbool.h> unconditionally.
14283 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14284 assuming at least C89 in the bitset code for some time now.
14286 2003-03-03 Akim Demaille <akim@epita.fr>
14290 2003-03-02 Akim Demaille <akim@epita.fr>
14292 * doc/bison.texinfo (Table of Symbols): Reactivate the
14293 documentation for %lex-param, and %parse-param.
14295 2003-03-02 Akim Demaille <akim@epita.fr>
14297 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14298 generate verbose error messages.
14299 Use the number of tokens as an upper bound in yytname, as it
14300 cannot be a non terminal.
14302 2003-03-02 Akim Demaille <akim@epita.fr>
14304 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14307 2003-03-02 Akim Demaille <akim@epita.fr>
14309 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14310 Use them to exercise yycheck overrun.
14311 Based on Andrew Suffield's grammar.
14313 2003-03-02 Akim Demaille <akim@epita.fr>
14315 Create tests/local.at for Bison generic testing macros.
14317 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14318 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14320 * tests/calc.at (AT_CHECK_CALC): Adjust.
14321 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14322 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14323 * tests/local.at: here.
14324 (AT_COMPILE_CXX): Tags the tests using it as c++.
14325 Ignore the test if CXX is not functional.
14327 2003-03-01 Paul Eggert <eggert@twinsun.com>
14329 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14330 not loc->end, since loc->end might contain garbage and this leads
14331 to undefined behavior on some platforms.
14332 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14333 depend on *loc, so that the reader doesn't give the the false
14334 impression that *loc is initialized.
14335 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14336 does not survive the return.
14338 2003-03-01 Akim Demaille <akim@epita.fr>
14340 * src/scan-gram.l (code_start): Always initialize it when entering
14341 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14342 yylex invocation. An alternative would be making it static, but
14343 then it starts with the second %%'s beginning, instead of its end.
14345 2003-02-28 Paul Eggert <eggert@twinsun.com>
14347 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14348 around a UnixWare 7.1.1 porting bug reported by John Hughes in
14349 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
14351 2003-02-26 Paul Eggert <eggert@twinsun.com>
14353 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14354 Remove Sequent/Pyramid discussion (nobody uses them any more).
14355 Merge VMS and MS-DOS discussion; these ports may well be dead
14356 but let's keep mentioning them for now. Put <> around email
14357 addresses. Add copyright notice.
14359 2003-02-24 Paul Eggert <eggert@twinsun.com>
14361 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14362 to avoid collision with flex use of yylineno.
14363 Problem reported by Bruce Lilly in
14364 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
14365 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14366 * data/yacc.c (yy_reduce_print): Likewise.
14368 * config/depcomp: Sync with Automake 1.7.3.
14370 2003-02-21 Akim Demaille <akim@epita.fr>
14372 * data/lalr1.cc: Use temporary variables instead of casts to
14373 change integer types.
14374 Suggested by Paul Eggert.
14376 2003-02-21 Akim Demaille <akim@epita.fr>
14378 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14379 to avoid confusions with lalr1.cc's notion of Position.
14380 Suggested by Paul Eggert.
14382 2003-02-20 Akim Demaille <akim@epita.fr>
14384 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14385 before initial_columns.
14386 (location.hh): Use consistent variable names when defining the
14388 Use "last" so that we subtract from Positions, not from unsigned.
14390 2003-02-20 Akim Demaille <akim@epita.fr>
14392 * data/lalr1.cc (position.hh): New subfile, including the extended
14393 and Doxygen'ed documentation of class Position.
14394 (location.hh): Use it.
14395 Document a` la Doxygen.
14396 With the help of Benoit Perrot.
14398 2003-02-20 Akim Demaille <akim@epita.fr>
14400 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14402 Redefine AT_YYERROR_SEES_LOC_IF using it.
14403 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14405 Don't use the location in yy::Parser::error_ and
14406 yy::Parser::print_ when not %locations.
14407 Activate more lalr1.cc tests.
14409 2003-02-19 Akim Demaille <akim@epita.fr>
14411 * data/lalr1.cc: When displaying a line number, be sure to make it
14414 2003-02-19 Akim Demaille <akim@epita.fr>
14416 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14418 (YYABORT, YYACCEPT, YYERROR): New.
14419 * tests/calc.at: Renable the lalr1.cc test.
14421 2003-02-19 Akim Demaille <akim@epita.fr>
14423 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14424 error recovery, mixing with/without pops and discarding of the
14427 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14429 2003-02-17 Paul Eggert <eggert@twinsun.com>
14431 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14432 * tests/testsuite.at (AT_COMPILE): Use them.
14433 This fixes the testsuite problem reported by Robert Lentz in
14434 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
14436 2003-02-12 Paul Eggert <eggert@twinsun.com>
14438 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14439 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
14440 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
14441 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14442 Check for malloc failure, for consistency with yacc.c.
14443 (yytname_size): Remove, for consistency with yacc.c.
14445 The bug still remains in data/lalr1.cc, as I didn't have time
14448 2003-02-06 Akim Demaille <akim@epita.fr>
14450 * configure.ac (GXX): Rename as...
14451 (CXX): this, to keep the original Autoconf semantics.
14453 * data/lalr1.cc: Fix b4_copyright invocations.
14454 If YYDEBUG is not defined, don't depend upon name_ being defined.
14455 (location.hh): Include string and iostream.
14456 (Position::filename): New member.
14457 (Position::Position ()): New.
14458 (operator<< (Position)): New.
14459 (operator- (Position, int)): New.
14460 (Location::first, Location::last): Rename as...
14461 (Location::begin, Location::end): these, to mock the conventional
14463 (operator<< (Location)): New.
14464 * tests/atlocal.in (CXX): New.
14465 * tests/testsuite.at (AT_COMPILE_CXX): New.
14466 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14467 locations in a more synthetic way.
14468 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14470 Adjust the C locations to match those from Emacs: first column is
14472 Change all the expected results.
14473 Conform to the GCS: simplify the locations when applicable.
14474 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14475 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14476 these CPP macros with the m4 macros new defined by...
14477 (AT_CHECK_PUSHDEFS): this, i.e.:
14478 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
14479 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
14481 (AT_CHECK_POPDEFS): Undefine them.
14482 (AT_CHECK_CALC_LALR1_CC): New.
14483 Use it for the first lalr1.cc test.
14485 2003-02-04 Akim Demaille <akim@epita.fr>
14487 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14488 Location as is defined.
14490 2003-02-04 Akim Demaille <akim@epita.fr>
14492 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14493 name_ being defined.
14495 2003-02-03 Paul Eggert <eggert@twinsun.com>
14497 * src/gram.h (start_symbol): Remove unused decl.
14499 Use more-consistent naming conventions for local vars.
14501 * src/derives.c (derives_compute): Change type of local var from
14502 int to rule_number.
14503 * src/gram.c (grammar_rules_partial_print): Likewise.
14504 * src/print.c (print_core): Likewise.
14505 * src/reduce.c (reduce_grammar_tables): Likewise.
14507 * src/gram.c (grammar_dump): Change name of item_number *
14508 local var from r to rp.
14509 * src/nullable.c (nullable_compute): Likewise.
14511 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14513 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14514 for symbol or symbol_number var.
14515 * src/reader.c (grammar_start_symbol_set): Likewise.
14516 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14518 * src/state.c (transitions_to): Likewise.
14519 * src/state.h: Likewise.
14520 * src/tables.c (symbol_number_to_vector_number): Likewise.
14522 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14525 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14528 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14531 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14532 Use str, not s, for char * var. Use ch, not c, for character var.
14533 Use size for size var.
14535 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14537 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14539 * src/uniqstr.h: Likewise.
14541 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14542 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14543 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14544 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14545 param to have same name as that of enum, so that we don't use
14546 "s" to stand for a non-state.
14548 2003-02-02 Akim Demaille <akim@epita.fr>
14550 * src/scan-skel.l: Scan more than one inert character per yylex
14553 2003-02-01 Paul Eggert <eggert@twinsun.com>
14557 * po/LINGUAS: Add ms.
14559 2003-01-30 Akim Demaille <akim@epita.fr>
14561 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14563 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14565 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14568 Changes in response to error report by S. Eken: GLR mode does not
14569 handle negative $ indices or $ indices in embedded rules correctly.
14570 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
14572 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14573 (b4_rhs_location): Ditto.
14574 (yyfill): New function to copy from stack tree into array
14576 (yyuserAction): Modify to allow incremental move of semantic values
14577 to rhs array when in GLR mode.
14578 Define YYFILL to use in user-defined actions to fill semantic array
14580 Remove dummy use of yystack, as there is now a guaranteed use.
14581 (yydoAction): Modify to allow incremental move of semantic values
14582 to rhs array when in GLR mode.
14583 (yyresolveAction): Ditto.
14584 (yyglrShiftDefer): Update comment.
14585 (yyresolveStates): Use X == NULL for pointers, not !X.
14586 (yyglrReduce): Ditto.
14587 (yydoAction): Ditto
14589 * tests/glr-regr1.at: Rename to ...
14590 * tests/glr-regression.at: Add new regression test for the problems
14591 described above (adapted from S. Eken).
14592 Update copyright notice.
14593 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14594 * tests/Makefile.am: Ditto.
14596 2003-01-28 Paul Eggert <eggert@twinsun.com>
14598 * data/lalr1.cc: Do not use @output_header_name@ unless
14599 b4_defines_flag is set. This fixes two bugs reported by
14601 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14602 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
14604 2003-01-21 Paul Eggert <eggert@twinsun.com>
14606 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14607 we don't need to worry about yyerrlab1 being reported as an
14608 "unused label" by non-GCC C compilers. The downside is that if
14609 locations are used then a couple of statements are duplicated each
14610 time YYERROR is invoked, but the upside is that the warnings
14612 (yyerrlab1): Move code to YERROR.
14613 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14614 This reverts some of the 2002-12-27 change.
14616 2003-01-17 Paul Eggert <eggert@twinsun.com>
14618 * src/output.c (symbol_printers_output): Fix typo that led
14619 to core dump. Problem reported by Antonio Rus in
14620 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
14622 2003-01-13 Akim Demaille <akim@epita.fr>,
14623 Quoc Peyrot <chojin@lrde.epita.fr>,
14624 Robert Anisko <anisko_r@lrde.epita.fr>
14626 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14627 when the stacks contain one element, as the loop would otherwise
14628 free the last state, and then use the top state (the one we just
14629 popped). This means that the initial elements will not be freed
14630 explicitly, as is the case in yacc.c; it is not a problem, as
14631 these elements have fake values.
14633 2003-01-11 Paul Eggert <eggert@twinsun.com>
14635 * NEWS: %expect-violations are now just warnings, reverting
14636 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14637 bootstrapping problem reported by Matthias Klose; see
14638 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
14639 * src/conflicts.c (conflicts_print): Likewise.
14640 * tests/conflicts.at (%expect not enough, %expect too much,
14641 %expect with reduce conflicts): Likewise.
14642 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14643 that the warning is enabled if the number of conflicts changes
14644 (not necessarily increases).
14646 * src/getargs.c (version): Update copyright year.
14648 2003-01-09 Akim Demaille <akim@epita.fr>
14650 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14652 2003-01-08 Paul Eggert <eggert@twinsun.com>
14654 * Makefile.maint (WGETFLAGS):
14655 New macro, containing "-C off" to disable proxy caches.
14656 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14657 (rel-check): Use $(WGET) instead of wget.
14659 2003-01-06 Paul Eggert <eggert@twinsun.com>
14661 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14662 the GLR paper of Scott, Johnstone and Hussain.
14664 2003-01-04 Paul Eggert <eggert@twinsun.com>
14666 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14667 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14668 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14669 (EXTRA_LIBRARIES): New var, for liby.a.
14670 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14671 (EXTRA_SCRIPTS): New var, for yacc.
14673 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14674 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14675 Problem reported by Nelson H. F. Beebe.
14677 2003-01-03 Paul Eggert <eggert@twinsun.com>
14679 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14680 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14681 when compiling Bison 1.875's `bitset bset = obstack_alloc
14682 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14684 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14685 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14686 grow to a huge size with typical invocation.
14688 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14689 Use the pattern recommended by Autoconf 2.57, except also protect
14690 against double-definition.
14691 * src/system.h: Likewise.
14692 Portability issues reported by Nelson H. F. Beebe.
14694 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14695 All uses changed. Provide a definition in both C and C++.
14696 (yytrue, yyfalse): Define even if defined (__cplusplus).
14698 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14699 Reported by Nelson H. F. Beebe.
14701 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14703 2003-01-02 Paul Eggert <eggert@twinsun.com>
14705 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14706 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14707 Bug reported by Nelson H. F. Beebe.
14709 2003-01-01 Paul Eggert <eggert@twinsun.com>
14713 2002-12-30 Paul Eggert <eggert@twinsun.com>
14715 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14717 (<INITIAL>","): Here. This causes stray "," to be treated
14720 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
14721 last brace in braced code when not in Yacc mode, for compatibility
14722 with Bison 1.35. This resurrects the 2001-12-15 patch to
14725 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14726 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14728 2002-12-28 Paul Eggert <eggert@twinsun.com>
14730 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14731 that of SYM's type. This fixes Debian bug 168069, reported by
14734 2002-12-28 Paul Eggert <eggert@twinsun.com>
14738 Switch back to the Yacc style of conflict reports, undoing some
14739 of the 2002-07-30 change.
14740 * doc/bison.texinfo (Understanding): Use Yacc style for
14741 conflict reports. Also, use new way of locating rules.
14742 * src/conflicts.c (conflict_report):
14743 Renamed from conflict_report_yacc, removing the old
14744 'conflict_report'. Translate the entire conflict report at once,
14745 so that we don't assume that "," has the same interpretation in
14747 (conflicts_output): Use Yacc-style conflict report for each state,
14748 instead of our more-complicated style.
14749 (conflicts_print): Use Yacc-style conflict report, except print
14750 the input file name when not emulating Yacc.
14751 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14752 Conflicted Reduction, %expect not enough, %expect too much,
14753 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14754 * tests/existing.at (GNU Cim Grammar): Likewise.
14755 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14757 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14758 fatal): Don't invoke fflush; it's not needed and it might even be
14759 harmful for stdout, as stdout might not be open.
14760 * src/reduce.c (reduce_print): Likewise.
14762 2002-12-27 Paul Eggert <eggert@twinsun.com>
14764 Fix a bug where error locations were not being recorded correctly.
14765 This problem was originally reported by Paul Hilfinger in
14766 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
14768 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14769 top of the location stack's error locations.
14770 (yyerrlab): Set it. When discarding a token, push its location
14771 onto yylerrsp so that we don't lose track of the error's end.
14772 (yyerrlab1): Now is only the target of YYERROR, so that we can
14773 properly record the location of the action that failed. For GCC
14774 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14775 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14776 (yyerrlab2): New label, which yyerrlab now falls through to.
14777 Compute the error's location by applying YYLLOC_DEFAULT to
14778 the locations of all the symbols that went into the error.
14779 * doc/bison.texinfo (Location Default Action): Mention that
14780 YYLLOC_DEFAULT is also invoked for syntax errors.
14781 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14782 Error locations include the locations of all the tokens that were
14783 discarded, not just the last token.
14785 2002-12-26 Paul Eggert <eggert@twinsun.com>
14787 * src/files.c: Include quote.h.
14788 (compute_output_file_names): Warn if we detect conflicting
14789 outputs to the same file. This should catch the misunderstanding
14790 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14792 * src/conflicts.c (conflicts_print): If the user specifies
14793 "%expect N", report an error if there are any reduce/reduce
14794 conflicts. This is what the manual says should happen.
14795 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14796 * tests/conflicts.at (%expect with reduce conflicts): New test.
14798 Don't use m4_include on relative file names, as it doesn't work as
14799 desired if there happens to be a file with that name under ".".
14801 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14802 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14803 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14804 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14805 * src/output.c (output_skeleton): Use full path names when
14806 specifying a file to include; don't rely on include path, as
14807 it's unreliable when the working file contains a file with
14810 2002-12-25 Paul Eggert <eggert@twinsun.com>
14812 Remove obsolete references to bison.simple and bison.hairy.
14813 Problem mentioned by Aubin Mahe in
14814 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
14815 * data/glr.c: Comment fix.
14816 * doc/bison.1: Remove references. Also, mention "yacc".
14818 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14821 * src/parse-gram.y (declaration): Use enum "report_states" rather
14822 than its numeric value 1.
14824 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14825 opening a new one. This fixes Debian bug 165349, reported by
14828 2002-12-24 Paul Eggert <eggert@twinsun.com>
14832 * Makefile.maint (cvs-update): Don't assume that the shell
14833 supports $(...), as Solaris sh doesn't.
14835 * src/parse-gram.y (lloc_default): Remove test for empty
14836 nonterminals at the end, since it didn't change the result.
14838 2002-12-24 Paul Eggert <eggert@twinsun.com>
14840 If the user does not define YYSTYPE as a macro, Bison now declares it
14841 using typedef instead of defining it as a macro. POSIX requires this.
14842 For consistency, YYLTYPE is also declared instead of defined.
14844 %union directives can now have a tag before the `{', e.g., the
14845 directive `%union foo {...}' now generates the C code
14846 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14847 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14848 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14849 instead of `yyltype'.
14851 `yystype' and `yyltype' are now obsolescent macros instead of being
14852 typedefs or tags; they are no longer documented and will be
14853 withdrawn in a future release.
14855 * data/glr.c (b4_location_type): Remove.
14856 (YYSTYPE): Renamed from yystype.
14857 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14858 (struct YYLTYPE): Renamed from struct yyltype.
14859 (YYLTYPE): Renamed from yyltype.
14860 (yyltype, yystype): New (and obsolescent) macros,
14861 for backward compatibility.
14862 * data/yacc.c: Likewise.
14864 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14865 does not specify a union tag. This is for compatibility with
14868 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14869 const *, since it is now modified by stripping surrounding { }.
14870 (current_braced_code): Remove.
14871 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14872 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14873 trailing " {...}". Now of type <chars>.
14874 (grammar_declaration): Adjust to bundled tokens.
14875 (code_content): Remove; stripping is now done by add_param.
14876 (print_token_value): Print contents of bundled tokens.
14877 (token_name): New function.
14879 * src/reader.h (braced_code, current_braced_code): Remove.
14880 (token_name): New decl.
14882 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14883 token_type, not braced_code code_kind. All uses changed.
14884 (SC_PRE_CODE): New state, for scanning after a keyword that
14885 has (or usually has) an immediately-following braced code.
14886 (token_type): New local var, to keep track of which token type
14887 to return when scanning braced code.
14888 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
14889 <INITIAL>"%parse-param", <INITIAL>"%printer",
14890 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14891 instead of returning a token type immediately.
14892 (<INITIAL>"{"): Set token type.
14893 (<SC_BRACED_CODE>"}"): Use it.
14894 (handle_action_dollar, handle_action_at): Now returns bool
14895 indicating success. Fail if ! current_rule; this prevents a core dump.
14896 (handle_symbol_code_dollar, handle_symbol_code_at):
14897 Remove; merge body into caller.
14898 (handle_dollar, handle_at): Complain in invalid contexts.
14900 * NEWS, doc/bison.texinfo: Document the above.
14901 * NEWS: Fix years and program names in copyright notice.
14903 2002-12-17 Paul Eggert <eggert@twinsun.com>
14905 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14906 Reporting, Table of Symbols): Omit mentions of %lex-param and
14907 %parse-param from the documentation for now.
14909 2002-12-15 Paul Eggert <eggert@twinsun.com>
14911 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14912 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14913 lookahead symbol, and which sets yychar in parser actions) and it
14914 disagreed with the Bison documentation. Bug
14915 reported by Andrew Walrond.
14917 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14918 as the caller now does that.
14919 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14920 (YYEMPTY): Parenthesize right hand side, since others use it.
14921 (yyparse): Don't assume that our generated code is the only code
14924 2002-12-13 Paul Eggert <eggert@twinsun.com>
14928 POSIX requires a "yacc" command.
14929 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14930 (MOSTLYCLEANFILES): Add yacc.
14932 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
14933 as an alias for bison y.
14935 * po/LINGUAS: Add da.
14937 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14938 problem with latest <getopt.h>.
14939 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14941 * doc/fdl.texi: Upgrade to 1.2.
14942 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14943 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14944 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14946 * config/install-sh: Sync with autotools.
14948 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
14949 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14950 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14951 locations are requested.
14952 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14953 locations are requested.
14955 2002-12-12 Paul Eggert <eggert@twinsun.com>
14957 Remove unportable casts and storage allocation tricks.
14958 While we're at it, remove almost all casts, since they
14959 usually aren't needed and are a sign of trouble.
14961 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14963 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14964 the pointer DSET returned by malloc; this isn't portable.
14965 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14966 Similarly for DERIVES.
14967 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14968 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14969 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14971 * src/derives.c (derives_compute): Do not bother invoking
14972 int_of_rule_number, since rule numbers are integers.
14974 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14975 rather than XMALLOC (char, N).
14977 * src/files.c (filename_split): Rewrite to avoid cast.
14979 * src/gram.h (symbol_number_as_item_number,
14980 item_number_as_symbol_number, rule_number_as_item_number,
14981 item_number_as_rule_number):
14982 Now inline functions rather than macros, to avoid casts.
14983 * src/state.h (state_number_as_int): Likewise.
14984 * src/tables.c (state_number_to_vector_number,
14985 symbol_number_to_vector_number): Likewise.
14987 * src/gram.h (int_of_rule_number): Remove; no longer used.
14989 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14990 since the resulting storage is always stored into.
14992 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14995 * src/muscle_tab.c (muscle_m4_output):
14996 Now inline. Return bool, not int.
14997 * src/state.c (state_compare): Likewise.
14998 * src/symtab.c (symbol_check_defined,
14999 symbol_check_alias_consistency, symbol_pack, symbol_translation,
15000 hash_compare_symbol, hash_symbol):
15002 * src/uniqstr.c (uniqstr_print): Likewise.
15003 * src/muscle_tab.c (muscle_m4_output_processor):
15004 New function, to avoid casts.
15005 * src/state.c (state_comparator, stage_hasher): Likewise.
15006 * src/symtab.c (symbol_check_defined_processor,
15007 symbol_check_alias_consistency_processor, symbol_pack_processor,
15008 symbol_translation_processor, hash_symbol_comparator,
15009 hash_symbol_hasher): Likewise.
15010 * src/uniqstr.c (uniqstr_print_processor): Likewise.
15011 * src/muscle_tab.c (muscles_m4_output):
15012 Use new functions instead of casting old functions unportably.
15013 * src/state.c (state_hash_new): Likewise.
15014 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
15015 symbols_token_translations_init):
15017 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
15019 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
15020 var instead of casting to long, to avoid casts.
15021 (prepare_states): Use MALLOC rather than alloca, so that we don't
15022 have to worry about alloca.
15023 * src/state.c (state_hash_lookup): Likewise.
15025 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15026 local var instead of casting to unsigned char, to avoid casts.
15028 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15029 STATE_ALLOC): Remove.
15030 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15031 rather than calloc, and use offsetof to avoid allocating slightly
15033 (state_new): Initialize all members.
15035 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15037 * src/symtab.c (symbol_free): Remove; unused.
15038 (symbol_get): Remove cast in lhs of assignment.
15039 (symbols_do): Now static. Accept generic arguments, not
15040 hashing-related ones.
15042 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15043 (symbol_processor): Remove.
15044 (symbols_do): Remove decl; now static.
15046 * src/system.h (alloca): Remove; decl no longer needed.
15047 (<stddef.h>): Include, for offsetof.
15048 (<inttypes.>, <stdint.h>): Include if available.
15049 (uintptr_t): New type, if system lacks it.
15050 (CALLOC, MALLOC, REALLOC): New macros.
15051 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15054 * src/tables.c (table_size): Now int, to pacify GCC.
15055 (table_grow, table_ninf_remap): Use signed table size.
15056 (save_row): Don't bother initializing locals when not needed.
15057 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15058 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15060 * src/vcg.h: Correct misspellings.
15062 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15065 * src/getargs.c (getargs): Don't assume EOF == -1.
15067 2002-12-09 Paul Eggert <eggert@twinsun.com>
15069 Change identifier spellings to avoid collisions with names
15070 that are reserved by POSIX.
15072 Don't use names ending in _t, since POSIX reserves them.
15073 For consistency, remove _e and _s endings -- they're weren't
15074 needed to remove ambiguity. All uses changed.
15075 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15076 turn was just renamed from struniq_t.
15077 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15078 which in turn was just renamed from struniq_processor_t.
15079 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15080 in turn was renamed from hash_compare_struniq_t.
15081 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15082 (state_list): Renamed from state_list_t.
15083 * src/assoc.h (assoc): Renamed from assoc_t.
15084 * src/conflicts.c (enum conflict_resolution): Renamed from
15085 enum conflict_resolution_e.
15086 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15087 (rule_list): Renamed from rule_list_t.
15088 * src/getargs.h (enum trace): Renamed from enum trace_e.
15089 (enum report): Renamed from enum report_e.
15090 * src/gram.h (item_number): Renamed from item_number_t.
15091 (rule_number): Renamed from rule_number_t.
15092 (struct rule_s): Remove the "rule_s" part; not used.
15093 (rule): Renamed from rule_t.
15094 (rule_filter): Renamed from rule_filter_t.
15095 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
15096 (goto_list): Renamed from goto_list_t.
15097 * src/lalr.h (goto_number): Renamed from goto_number_t.
15098 * src/location.h (location): Renamed from location_t.
15099 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
15100 and moved here from:
15101 * src/muscle_tab.h (muscle_entry_t): here.
15102 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
15103 (rule_list): Renamed from rule_list_t.
15104 * src/print_graph.c (static_graph): Renamed from graph.
15105 * src/reader.h (braced_code): Renamed from braced_code_t.
15106 Remove brace_code_e tag.
15107 * src/relation.h (relation_node): Renamed from relation_node_t.
15108 (relation_nodes): Renamed from relation_nodes_t.
15109 (relation): Renamed from relation_t.
15110 * src/state.h (state_number): Renamed from state_number_t.
15111 (struct state): Renamed from struct state_s.
15112 (state): Renamed from state_t.
15113 (transitions): Renamed from transitions_t. Unused (and
15114 misspelled) transtion_s tag removed.
15115 (errs): Renamed from errs_t. Unused errs_s tag removed.
15116 (reductions): Renamed from reductions_t. Unused tag
15117 reductions_s removed.
15118 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15119 (struct symbol_list): Renamed from struct symbol_list_s.
15120 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15121 (struct symbol): Renamed from struct symbol_s.
15122 (symbol): Renamed from symbol_t.
15123 * src/tables.c (vector_number): Renamed from vector_number_t.
15124 (action_number): Renamed from action_t.
15125 * src/tables.h (base_number): Renamed from base_t.
15126 * src/vcg.h (enum color): Renamed from enum color_e.
15127 (enum textmode): Renamed from enum textmode_e.
15128 (enum shape): Renamed from enum shape_e.
15129 (struct colorentry): Renamed from struct colorentry_s.
15130 (struct classname): Renamed from struct classname_s.
15131 (struct infoname): Renamed from struct infoname_s.
15132 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15133 (enum decision): Renamed from enum decision_e.
15134 (enum orientation): Renamed from enum orientation_e.
15135 (enum alignment): Renamed from enum alignment_e.
15136 (enum arrow_mode): Renamed from enum arrow_mode_e.
15137 (enum crossing_type): Renamed from enum crossing_type_e.
15138 (enum view): Renamed from enum view_e.
15139 (struct node): Renamed from struct node_s.
15140 (node): Renamed from node_t.
15141 (enum linestyle): Renamed from enum linestyle_e.
15142 (enum arrowstyle): Renamed from enum arrowstyle_e.
15143 (struct edge): Renamed from struct edge.
15144 (edge): Renamed from edge_t.
15145 (struct graph): Renamed from struct graph_s.
15146 (graph): Renamed from graph_t.
15147 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15148 Rename value_t -> value.
15149 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15150 value_t_as_yystype -> value_as_yystype.
15152 Don't include <errno.h> in the mainstream code, since it
15153 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15154 * lib/get-errno.c, lib/get-errno.h: New files.
15155 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15157 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15158 * src/output.c (output_skeleton): Likewise.
15159 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15161 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15163 (handle_action_dollar, handle_action_at): Likewise.
15164 * src/system.h: Do not include <errno.h>.
15165 (TAB_EXT): Renamed from EXT_TAB.
15166 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15168 Avoid str[a-z]*, since <string.h> reserves that name space.
15169 Change all instances of "struniq" in names to "uniqstr", and
15170 likewise for "STRUNIQ" and "UNIQSTR".
15171 * src/uniqstr.c: Renamed from src/struniq.c.
15172 * src/uniqstr.h: Renamed from src/struniq.h.
15173 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15174 * src/files.c (strsuffix): Remove; unused.
15175 (concat2): Renamed from stringappend. Now static.
15176 * src/files.h (strsuffix, stringappend): Remove; unused.
15177 * src/parse-gram.y (<chars>): Renamed from <string>.
15178 (<uniqstr>): Renamed from <struniq>.
15179 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15180 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15181 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15182 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15183 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15184 (N_EXPAND): Renamed from N_STRETCH.
15186 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15187 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15188 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15190 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15191 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15192 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15193 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15194 (BASE_MAXIMUM): Renamed from BASE_MAX.
15195 (BASE_MINIMUM): Renamed from BASE_MIN.
15196 (ACTION_MAX): Remove; unused.
15197 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15198 Unnecessary casts removed from above defines.
15201 Fix misspelling in names.
15202 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15203 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15207 * lib/timevar.c (timevar_report): Renamed from time_report,
15208 for consistency with other names.
15209 * lib/timevar.h (timevar_report): New decl.
15210 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15213 Sort include-file uses.
15215 Reorder all include files under src to be in the order "system.h".
15216 then the ../lib include files in angle brackets (alphabetized),
15217 then the . include files in double-quotes (alphabetized). Fix
15218 dependency breakages encountered in this process, as follows:
15219 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15220 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15221 * src/state.h: Include "symtab.h".
15223 2002-12-08 Paul Eggert <eggert@twinsun.com>
15225 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15226 since this causes problems when __file__ contains character
15227 sequences like "@" that are treated specially by src/scan-skel.l.
15228 Instead, just use the file's basename. This fixes the bug
15229 reported by Martin Mokrejs in
15230 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
15232 2002-12-06 Paul Eggert <eggert@twinsun.com>
15234 Add support for rules that do not have trailing semicolons, as
15235 POSIX requires. Improve the quality of locations in Bison
15238 * src/location.c: Include <quotearg.h>.
15239 (empty_location): Now const.
15240 (location_print): New function. Follow the recommendation of the
15241 GNU Coding Standards for locations that span file boundaries.
15242 * src/location.h: Do not include <quotearg.h>; no longer needed.
15243 (boundary): New type.
15244 (location_t): Use it. This allows locations to span file boundaries.
15245 All member uses changed: file -> start.file or end.file (as needed),
15246 first_line -> start.line, first_column -> start.column,
15247 last_line -> end.line, last_column -> end.column.
15248 (equal_boundaries): New function.
15249 (LOCATION_RESET, LOCATION_STEP): Remove.
15250 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15251 (empty_location): Now const.
15252 (location_print): New decl.
15253 * src/parse-gram.y (lloc_default): New function, which handles
15254 empty locations more accurately.
15255 (YYLLOC_DEFAULT): Use it.
15256 (%token COLON): Remove.
15257 (%token ID_COLON): New token.
15259 (declarations, rules): Remove trailing semicolon.
15260 (declaration, rules_or_grammar_declaration):
15261 Allow empty (";") declaration.
15262 (symbol_def): Remove empty actions; no longer needed.
15263 (rules_or_grammar_declaration): Remove trailing semicolon.
15264 (semi_colon.opt): Remove.
15265 * src/reader.h: Include location.h.
15266 (scanner_cursor): New decl.
15267 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15269 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15271 (STEP): Remove. No longer needed, now that adjust_location does
15272 the work. All uses removed.
15273 (scanner_cursor): New var.
15274 (adjust_location): Renamed from extend_location. It now sets
15275 *loc and adjusts the scanner cursor. All uses changed.
15276 Don't bother testing for CR.
15277 (handle_syncline): Remove location arg; now updates scanner cursor.
15278 All callers changed.
15279 (unexpected_end_of_file): Now accepts start boundary of token or
15280 comment, not location. All callers changed. Update scanner cursor,
15282 (SC_AFTER_IDENTIFIER): New state.
15283 (context_state): Renamed from c_context. All uses changed.
15284 (id_loc, code_start, token_start): New local vars.
15285 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15286 processing of Yacc white space and equivalents here.
15287 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15288 instead of returning ID immediately, since we need to search for
15289 a subsequent colon.
15290 (<INITIAL>"'", "\""): Save token_start.
15291 (<INITIAL>"%{", "{", "%%"): Save code_start.
15292 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15293 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15294 BEGIN context_state at end, not INITIAL.
15295 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15296 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15297 Return correct token start.
15298 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15299 the start of a character, string or multiline comment is found.
15300 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15301 Reduction): Adjust reported locations to match the more-precise
15302 results now expected.
15303 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15304 * tests/reduce.at (Useless Rules, Reduced Automaton,
15305 Underivable Rules): Likewise.
15306 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15307 or "|"' now that so many other tokens are allowed by the new grammar.
15309 * src/complain.h (current_file): Remove duplicate decl;
15310 current_file is now owned by files.h.
15311 * src/complain.c, src/scan-gram.l: Include files.h.
15313 2002-12-06 Paul Eggert <eggert@twinsun.com>
15315 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15316 promotes to int; it might be unsigned int.
15317 * data/yacc.c (yy_reduce_print): Likewise.
15319 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15320 be #defined in the prologue, not in the Bison declarations.
15321 This fixes Debian Bug 102878, reported by Shaul Karl.
15323 2002-12-02 Paul Eggert <eggert@twinsun.com>
15325 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15326 * lib/strtoul.c: New file, from gnulib.
15327 This fixes a porting bug reported by Peter Klein in
15328 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
15330 2002-11-30 Paul Eggert <eggert@twinsun.com>
15332 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15333 and put only a forward declaration in the prologue. This is for
15334 consistency with the other scanner helper functions.
15336 Type clashes now generate warnings, not errors, since it
15337 appears that POSIX may allow some grammars with type clashes.
15338 * src/reader.c (grammar_current_rule_check): Warn about
15339 type clashes instead of complaining.
15340 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15342 Add Yacc library, since POSIX requires it.
15343 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15344 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15345 * lib/main.c, lib/yyerror.c: New files.
15347 gram_error can be static; it need not be extern.
15348 * src/reader.h (gram_error): Remove decl.
15349 * src/parse-gram.y (gram_error): Now static. Add static decl.
15350 (print_token_value): Omit parameter names from forward decl,
15353 2002-11-29 Paul Eggert <eggert@twinsun.com>
15355 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15356 be declared before being used. E.g., one should typically
15357 declare them in the prologue. Use GNU coding style in examples.
15358 Put "const" consistently after the type it modifies. Mention
15359 that C99 supports "inline". Mention that yyerror traditionally
15362 %parse-param and %lex-param now take just one argument, the
15363 declaration; the argument name is deduced from the declaration.
15365 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15366 Reporting, Table of Symbols): Document this.
15367 * src/parse-gram.y (add_param): New function.
15369 (declaration): Implement new rule for %parse-param and %lex-param.
15370 * src/scan-gram.l: "," now elicits a warning, rather than being
15371 a token; this is more compatible with byacc.
15372 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15374 2002-11-27 Paul Eggert <eggert@twinsun.com>
15376 Rename identifiers to avoid real and potential collisions.
15378 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15379 to avoid collision with lex macro described by Bruce Lilly in
15380 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15381 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15382 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15383 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15385 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15386 The name "yycontrol" violates the name space rules, and this stuff
15387 wasn't being used anyway.
15388 (input): Remove action; this stuff wasn't being used.
15389 (gram_error): Rename local variable yylloc -> loc.
15390 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15391 (YY_DECL): Don't use "yy" at start of local variables.
15392 All uses changed, e.g., yylloc -> loc.
15393 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15394 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15395 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15396 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15398 * src/parse-gram.y (gram_error): loc is now const *.
15399 * src/reader.h (gram_error): Likewise.
15401 2002-11-24 Paul Eggert <eggert@twinsun.com>
15405 * tests/actions.at (Actions after errors): Use an output format
15406 more similar to that of the Printers and Destructors test.
15407 Test the position of the ';' token too.
15408 (Printers and Destructors): Likewise.
15409 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15410 unnecessarily alarming people when the test fails.
15412 * data/yacc.c (yyerrlab1): Move this label down, so that the
15413 parser does not discard the lookahead token if the user code
15414 invokes YYERROR. This change is required for POSIX conformance.
15416 * lib/error.c: Sync with gnulib.
15418 2002-11-22 Paul Eggert <eggert@twinsun.com>
15420 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15421 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15422 * lib/xmalloc.c: Likewise.
15424 2002-11-20 Paul Eggert <eggert@twinsun.com>
15426 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15428 2002-11-20 Paul Eggert <eggert@twinsun.com>
15430 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15431 should use `if (! x) abort ();' rather than `assert (x);', and
15432 anyway it's one less thing to worry about configuring.
15434 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15435 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15436 and replace all instances of assert with abort.
15437 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15438 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15440 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15441 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15442 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15443 hash_find_entry, hash_rehash, hash_insert): Likewise.
15444 * src/conflicts.c (resolve_sr_conflict): Likewise.
15445 * src/lalr.c (set_goto_map, map_goto): Likewise.
15446 * src/nullable.c (nullable_compute): Likewise.
15447 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15448 * src/reader.c (packgram, reader): Likewise.
15449 * src/state.c (state_new, state_free, state_transitions_set,
15450 state_reduction_find): Likewise.
15451 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15452 symbol_pack): Likewise.
15453 * src/tables.c (conflict_row, pack_vector): Likewise.
15454 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15455 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15456 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15457 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15459 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15460 (ARGMATCH_CONSTRAINT): New macro.
15461 (ARGMATCH_ASSERT): Use it.
15463 * src/system.h (verify): New macro.
15464 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15465 rather than assert.
15466 * src/tables.c (tables_generate): Likewise.
15468 * src/struniq.c (struniq_assert): Now returns void, and aborts
15469 if the assertion is false.
15470 (struniq_assert_p): Remove.
15471 * src/struniq.h: Likewise.
15473 2002-11-18 Paul Eggert <eggert@twinsun.com>
15475 * data/glr.c (yygetLRActions): Replace `yyindex' with
15476 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15477 This fixes the regression with Sun ONE Studio 7 cc that I reported in
15478 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
15480 2002-11-18 Akim Demaille <akim@epita.fr>
15482 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15484 From Tim Van Holder.
15486 2002-11-17 Paul Eggert <eggert@twinsun.com>
15488 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15489 to "SyntaxError" for consistency with my 2002-11-15 change.
15491 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15492 not define to {}, since this breaks the common use of `YYDPRINTF
15493 ((...));' if a single statement is desired (e.g. before `else').
15494 Work around GCC warnings by surrounding corresponding calls with
15496 (yyhasResolvedValue): Remove unused function.
15497 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15499 (yyreportSyntaxError): Renamed from yyreportParseError.
15500 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15502 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15503 extern when possible. Remove unused initializations.
15505 2002-11-16 Akim Demaille <akim@epita.fr>
15507 Augment the similarity between GLR and LALR traces.
15509 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15510 (YY_REDUCE_PRINT): New.
15511 (yyparse): Use them.
15512 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15514 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15515 state reached after the reduction/recovery, since...
15516 (yyparse, yyprocessOneStack): Report the state we are entering in.
15518 2002-11-16 Akim Demaille <akim@epita.fr>
15520 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15521 Add support for --trace=skeleton.
15522 * src/scan-skel.l: %option debug.
15523 Scan strings of non-@ or \n instead of character by character.
15524 (scan_skel): Handle trace_skeleton.
15526 (@output_parser_name@, @output_header_name@): ``Restore'' their
15527 support (used to be M4 macros).
15528 * data/yacc.c: Quote larger chunks, a la glr.c.
15529 * data/lalr1.cc: Likewise.
15530 The header guards are no longer available, so use some other
15531 string than `YYLSP_NEEDED'.
15533 2002-11-16 Akim Demaille <akim@epita.fr>
15535 Make the ``Printers and Destructors'' test more verbose, taking
15536 `yacc.c''s behavior as (possibly wrong) reference.
15538 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15539 instead of fprint on stdout.
15540 Set and report the last_line of the symbols.
15541 Consistently display values and locations.
15543 2002-11-16 Paul Eggert <eggert@twinsun.com>
15545 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15547 2002-11-15 Paul Eggert <eggert@twinsun.com>
15549 * tests/actions.at (Actions after errors): New test case.
15551 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15552 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15553 tests/action.at, tests/calc.at, tests/conflicts.at,
15554 tests/cxx-type.at, tests/regression.at:
15555 "parse error" -> "syntax error" for POSIX compatibility.
15556 "parsing stack overflow..." -> "parser stack overflow" so
15557 that code matches Bison documentation.
15559 2002-11-15 Akim Demaille <akim@epita.fr>
15561 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15562 take two BRACED_CODE, not two string_content.
15563 Free the scanner's obstack when we are done.
15564 (code_content): New.
15565 * tests/calc.at: Adjust.
15566 * doc/bison.texinfo: Adjust.
15567 Also, make sure to include the `,' for these declarations.
15569 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15571 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15572 definition; avoids potential autoreconf problems.
15574 2002-11-15 Akim Demaille <akim@epita.fr>
15576 Always check the value returned by yyparse.
15578 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15579 returned by yyparse.
15580 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15582 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15583 returned by yyparse.
15585 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15587 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15590 2002-11-14 Paul Eggert <eggert@twinsun.com>
15592 * src/output.c (output_skeleton): Call xfopen instead of
15593 duplicating xfopen's body.
15595 Fix bugs reported by Nelson H. F. Beebe in
15596 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
15598 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15599 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15600 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15601 file twice in the grammar, as an extra check.
15603 * tests/input.at (Torturing the Scanner): Surround the
15604 backslash-newline tests with "#if 0", to make it less likely that
15605 we'll run into compiler bugs. Bring back solitary \ inside
15606 comment, but add a closing comment to work around HP C bug. Don't
15607 test backslash-newline in C character constant.
15609 2002-11-14 Akim Demaille <akim@epita.fr>
15611 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15612 status of the compiler.
15613 Calling `exit 1' is no longer needed.
15614 Reported by Nelson H. F. Beebe.
15616 2002-11-14 Akim Demaille <akim@epita.fr>
15618 * tests/atlocal.in (CPPFLAGS): We have config.h.
15619 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15621 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15622 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15623 * tests/regression.at, tests/torture.at: Use them for all the
15624 grammars that are to be compiled.
15625 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15626 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15627 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15629 2002-11-14 Akim Demaille <akim@epita.fr>
15631 * doc/bison.texinfo: Various formatting changes (alignments in
15632 samples, additional @group/@end group, GCS in samples.
15633 Use @deffn instead of simple @table to define the directives,
15634 macros, variables etc.
15636 2002-11-13 Paul Eggert <eggert@twinsun.com>
15638 Fix some bugs reported by Albert Chin-A-Young in
15639 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
15641 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
15642 -o c"; the HP C compiler chatters during compilation.
15643 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15644 * tests/headers.at (export YYLTYPE): Likewise.
15646 * tests/input.at (Torturing the Scanner): Remove lines containing
15647 solitary backslashes, as they tickle a bug in the HP C compiler.
15649 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15650 comments, since they're not portable. Use GNU coding style.
15652 2002-11-13 Akim Demaille <akim@epita.fr>
15654 * data/yacc.c: Leave bigger chunks of quoted text.
15655 (YYDSYMPRINTF): New.
15656 Use it to report symbol activities.
15657 * data/glr.c (YYDSYMPRINTF): New.
15660 2002-11-12 Paul Eggert <eggert@twinsun.com>
15664 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15665 (yyglrReduce): Return yyok, not 0.
15666 This should avoid the enumerated-type warnings reported
15667 by Nelson H. F. Beebe in
15668 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
15670 * lib/bbitset.h (BITSET_INLINE): Remove.
15671 * lib/bitset.h [! BITSET_INLINE]: Remove.
15672 (bitset_set, bitset_reset, bitset_test): Rename local vars
15673 to avoid shadowing warnings by GCC.
15675 * data/glr.c (inline): Remove #define. It's the user's
15676 responsibility to #define it away, just like 'const'.
15677 This fixes one of the bugs reported by Nelson H. F. Beebe in
15678 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
15680 * Makefile.maint (po-check): Scan .l and .y files instead of the
15681 .c and the .h files that they generate. This fixes the bug
15682 reported by Tim Van Holder in:
15683 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
15684 Look for N_ as well as for _. Try to avoid matching #define for
15686 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15687 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15688 * src/scan-gram.l: Revamp regular expressions so that " and '
15689 do not confuse xgettext.
15691 * src/struniq.h (struniq_new): Do not declare the return type
15692 to be 'const'; this violates the C standard.
15693 * src/struniq.c (struniq_new): Likewise.
15695 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15697 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15698 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15701 2002-11-12 Akim Demaille <akim@epita.fr>
15703 * Makefile.maint: Sync with Autoconf:
15704 (local_updates): New.
15706 2002-11-12 Akim Demaille <akim@epita.fr>
15708 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15710 2002-11-12 Akim Demaille <akim@epita.fr>
15712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15715 2002-11-12 Akim Demaille <akim@epita.fr>
15717 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15720 2002-11-12 Akim Demaille <akim@epita.fr>
15722 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15723 Use it to test the GLR parser.
15725 2002-11-12 Akim Demaille <akim@epita.fr>
15727 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15729 * data/glr.c (yystos): New.
15730 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15731 (YYDSYMPRINT): New.
15732 (yyval): Don't define it, it is handled via M4.
15733 (yyrecoverParseError): Free verbosely the discarded symbols.
15734 * data/yacc.c (yysymprint): Remove, rather...
15735 (b4_yysymprint_generate): invoke.
15736 * data/c.m4 (b4_yysymprint_generate): New.
15737 Accept pointers as arguments, as opposed to the version from
15739 (b4_yydestruct_generate): Likewise.
15740 * tests/cations.at (Printers and Destructors): Use Bison directives
15741 instead of CPP macros.
15742 Don't rely on internal details.
15744 2002-11-12 Akim Demaille <akim@epita.fr>
15746 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15747 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15748 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15749 it against YYEMPTY and so forth), work on yytoken (i.e., set
15750 it to YYEMPTY etc.).
15751 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15752 (b4_symbol_actions): Remove.
15753 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15754 for 0, end-of-input.
15756 2002-11-12 Akim Demaille <akim@epita.fr>
15758 * doc/bison.texinfo (Destructor Decl): New.
15760 2002-11-12 Akim Demaille <akim@epita.fr>
15762 * src/tables.c (tables_generate): Use free for pointers that
15763 cannot be NULL, not XFREE.
15764 (pack_vector): Use assert, not fatal, for bound violations.
15765 * src/state.c (state_new): Likewise.
15766 * src/reader.c (reader): Likewise.
15767 * src/lalr.c (set_goto_map): Likewise.
15768 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
15771 2002-11-12 Akim Demaille <akim@epita.fr>
15773 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15775 * src/scan-gram.l (last_string): Is global to the file, not to
15777 * src/parse-gram.y (input): Don't append the epilogue here,
15778 (epilogue.opt): do it here, and free the scanner's obstack.
15779 * src/reader.c (epilogue_set): Rename as...
15780 (epilogue_augment): this.
15781 * data/c.m4 (b4_epilogue): Defaults to empty.
15783 2002-11-12 Akim Demaille <akim@epita.fr>
15785 * src/getargs.c (long_options): Remove duplicates.
15786 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15788 * doc/bison.rnh: Remove.
15789 * doc/bison.texinfo (VMS Invocation): Remove.
15791 2002-11-12 Akim Demaille <akim@epita.fr>
15793 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15794 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15796 Use struniq for symbols.
15798 * src/symtab.h (symbol_t): The tag member is a struniq.
15799 (symbol_type_set): Adjust.
15800 * src/symtab.c (symbol_new): Takes a struniq.
15801 (symbol_free): Don't free the tag member.
15802 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15803 (hash_compare_symbol, hash_symbol): these.
15804 Use the fact that tags as struniqs.
15805 (symbol_get): Use struniq_new.
15806 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15808 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15809 and type members are struniqs.
15810 * src/reader.c (get_merge_function)
15811 (grammar_current_rule_merge_set): Adjust.
15812 (TYPE, current_type): Are struniq.
15814 Use struniq for file names.
15816 * src/files.h, src/files.c (infile): Split into...
15817 (grammar_file, current_file): these.
15818 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15819 * src/reduce.c (reduce_print): Likewise.
15820 * src/getargs.c (getargs): Likewise.
15821 * src/complain.h, src/complain.c: Likewise.
15822 * src/main.c (main): Call struniqs_new early enough to use it for
15824 Don't free the input file name.
15826 2002-11-12 Akim Demaille <akim@epita.fr>
15828 * src/symtab.c (symbol_free): Remove dead deactivated code:
15829 type_name are properly removed.
15830 Don't use XFREE to free items that cannot be NULL.
15831 * src/struniq.h, src/struniq.c: New.
15832 * src/main.c (main): Initialize/free struniqs.
15833 * src/parse-gram.y (%union): Add astruniq member.
15835 * src/scan-gram.l (<{tag}>): Return a struniq.
15836 Free the obstack bit that used to store it.
15837 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15839 2002-11-11 Paul Eggert <eggert@twinsun.com>
15841 Revamp to fix many (but not all) of the C- and M4-related quoting
15842 problems. Among other things, this fixes the Bison bug reported
15843 by Jan Hubicka when processing the Bash grammar; see:
15844 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
15846 Use new @ escapes consistently. Represent brackets with @{ and @}
15847 rather than @<:@ and @:>@, since this works a bit better with dumb
15848 editors like vi. Represent @ with @@, since @ is now consistently
15849 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15850 __ofile__, to avoid unexpected expansions. Similarly, use @output
15851 rather than #output.
15853 * data/c.m4 (b4_copyright): Omit file name from comment, since
15854 the file name could contain "*/".
15855 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15856 be quoted. All uses changed.
15858 * data/glr.c: Use new @ escapes consistently.
15859 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15860 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15861 Remove, since they couldn't handle arbitrary characters in file
15863 * data/lalr1.cc: Likewise.
15864 * data/yacc.c: Likewise.
15866 * src/files.c (output_infix): Remove; all uses removed.
15867 * src/files.h: Likewise.
15869 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15870 mishandled funny characters in file names, and anyway it isn't
15872 * data/yacc.c: Likewise.
15873 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15875 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15876 * data/yacc.c: Likewise.
15878 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15880 (muscle_init): Quote filename as a C string.
15881 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15882 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15883 * src/output.c (escaped_file_name_output): New function.
15884 (prepare_symbols): Quote tokens for M4.
15885 (prepare): Don't insert output_infix, output_prefix,
15886 output_parser_name, output_header_name; this is now down by scan-skel.
15887 Insert skeleton as a C string.
15889 * src/output.c (user_actions_output, symbol_destructors_output,
15890 symbol_printers_output): Quote filenames for C and M4.
15891 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15893 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15894 escapes other than \\ and \'; this simplifies the code.
15895 (<SC_STRING>): Likewise, for \\ and \".
15896 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15897 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15898 Use new escapes @{ and @} for [ and ].
15900 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15901 them with auto vars.
15902 Switch to new escape scheme, where @ is the escape character uniformly.
15903 Abort if a stray escape character is found. Avoid unbounded input
15904 buffer when parsing non-escaped text.
15906 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15907 __oline__, #output, $@, and @{ do not have unintended meanings.
15909 2002-11-09 Paul Eggert <eggert@twinsun.com>
15911 Fix the test failure due to GCC warnings described in
15912 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
15913 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15914 evaluate to 0 if it's impossible for NINF to be in the respective
15916 (yygetLRActions, yyrecoverParseError): Use them.
15918 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15919 counted in the token inserted at end of file. Now takes
15920 location_t *, not location_t, so that the location can be
15921 adjusted. All uses changed.
15923 * tests/regression.at (Invalid inputs): Adjust wording in
15924 diagnostic to match the new behavior.
15926 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15927 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15928 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15929 abort ();'. This reduces the runtime of the "Many lookaheads"
15930 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15933 2002-11-07 Paul Eggert <eggert@twinsun.com>
15935 * src/parse-gram.y (CHARACTER): Remove unused token.
15938 * src/scan-gram.l: Remove stack option. We no longer use the
15939 stack, since the stack was never deeper than 1; instead, use the
15940 new auto var c_context to record the stacked value.
15942 Remove nounput option. At an unexpected end of file, we now unput
15943 the minimal input necessary to end cleanly; this simplifies the
15946 Avoid unbounded token sizes where this is easy.
15948 (unexpected_end_of_file): New function.
15949 Use it to systematize the error message on unexpected EOF.
15950 (last-string): Now auto, not static.
15951 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15952 (scanner_last_string_free): Remove; not used.
15953 (percent_percent_count): Move decl to just before use.
15954 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15955 not the (never otherwised-used) CHARACTER.
15957 2002-11-07 Akim Demaille <akim@epita.fr>
15959 Let yyerror always receive the msg as last argument, so that
15960 yyerror can be variadic.
15962 * data/yacc.c (b4_yyerror_args): New.
15963 Use it when calling yyerror.
15964 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15965 Use it when calling yyerror.
15966 * doc/bison.texinfo (Error Reporting): Adjust.
15967 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15968 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15970 2002-11-06 Akim Demaille <akim@epita.fr>
15972 #line should have quoted strings.
15973 Ideally, this should be done by m4_quotearg.
15975 * src/scan-skel.l: Include quotearg.h.
15977 * src/output.c (symbol_printers_output)
15978 (symbol_destructors_output): Quote the file name.
15980 2002-11-06 Akim Demaille <akim@epita.fr>
15982 * tests/regression.at (Invalid inputs): Adjust to the recent
15985 2002-11-06 Akim Demaille <akim@epita.fr>
15987 Restore --no-lines.
15988 Reported by Jim Kent.
15990 * data/c.m4 (b4_syncline): New.
15991 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15992 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15993 * src/output.c (user_actions_output): Likewise.
15994 (prepare): Define 'b4_synclines_flag'.
15995 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
15997 2002-11-06 Akim Demaille <akim@epita.fr>
15999 * src/main.c (main): Free `infile'.
16000 * src/scan-gram.l (handle_syncline): New.
16002 * src/output.c (user_actions_output, symbol_destructors_output)
16003 (symbol_printers_output): Use the location's file name, not
16005 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16007 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16009 * src/tables.c (matching_state): Don't allow states to match if
16010 either has GLR conflict entries.
16012 2002-11-05 Paul Eggert <eggert@twinsun.com>
16014 * src/scan-gram.l: Use more accurate diagnostics, e.g.
16015 "integer out of range" rather than "invalid value".
16016 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
16019 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
16020 Also, remove one static variable in the scanner.
16022 * src/scan-gram.l (braces_level): Now auto, not static.
16023 Initialize to zero if the compiler is being picky.
16024 (INITIAL): Clear braces_level instead of incrementing it.
16025 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16026 as POSIX 1003.1-2001 requires.
16027 * src/system.h (IF_LINT): New macro, taken from coreutils.
16028 * configure.ac: Define "lint" if --enable-gcc-warnings.
16030 2002-11-05 Akim Demaille <akim@epita.fr>
16032 * src/scan-gram.l: When it starts with `%', complain about the
16033 whole directive, not just that `invalid character: %'.
16035 2002-11-04 Akim Demaille <akim@epita.fr>
16037 * Makefile.maint: Update from Autoconf.
16038 (update, cvs-update, po-update, do-po-update): New.
16040 2002-11-04 Akim Demaille <akim@epita.fr>
16042 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16044 Have yyerror `use' its arguments.
16045 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16046 returns true when location & yacc & pure & parse-param.
16047 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16049 2002-11-04 Akim Demaille <akim@epita.fr>
16051 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16053 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16056 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16059 2002-11-03 Paul Eggert <eggert@twinsun.com>
16061 * src/reader.c (get_merge_function, grammar_current_rule_check):
16062 Use consistent diagnostics for reporting type name clashes.
16063 Quote the types with <>, for consistency with Yacc.
16064 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16066 2002-11-03 Akim Demaille <akim@epita.fr>
16068 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16070 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16071 (b4_parse_param): Remove.
16072 Use b4_identification.
16073 Propagate b4_pure_args where needed to pass them to yyerror.
16074 * data/glr.m4 (b4_parse_param): Remove.
16075 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16076 (b4_lpure_formals): New.
16077 Use b4_identification.
16078 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16079 b4_user_formals and b4_user_args.
16080 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16081 (yyreportAmbiguity): When using a pure parser, also need
16082 the location, and the parse-params.
16084 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16085 When using a pure parser, also need the parse-params.
16087 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16088 (%pure-parser + %parse-param) LALR and GLR parsers.
16089 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16090 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16091 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16092 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16093 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16094 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
16095 * doc/bison.texinfo: Untabify the whole file.
16096 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
16097 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
16098 (Error Reporting): Adjust to these new directives.
16099 Document %error-verbose, deprecate YYERROR_VERBOSE.
16101 2002-11-03 Akim Demaille <akim@epita.fr>
16103 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
16104 AT_CHECK_CALC_GLR invocations to use % directives, instead of
16105 command line options.
16106 * tests/cxx-type.at: Formatting changes.
16108 2002-11-03 Paul Eggert <eggert@twinsun.com>
16110 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16111 to count columns correctly, and to check for invalid inputs.
16113 Use mbsnwidth to count columns correctly. Account for tabs, too.
16114 Include mbswidth.h.
16115 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16116 (extend_location): New function.
16117 (YY_LINES): Remove.
16119 Handle CRLF in C code rather than in Lex code.
16120 (YY_INPUT): New macro.
16121 (no_cr_read): New function.
16123 Scan UCNs, even though we don't fully handle them yet.
16124 (convert_ucn_to_byte): New function.
16126 Handle backslash-newline correctly in C code.
16127 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16128 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16130 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16131 Use {splice} wherever C allows backslash-newline.
16132 YY_STEP after space, newline, vertical-tab.
16133 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
16135 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16137 ({int}, handle_action_dollar, handle_action_at): Check for integer
16140 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16142 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16143 as well as \000. Check for UCHAR_MAX, not 255.
16144 Allow \x with an arbitrary positive number of digits, as in C.
16145 Check for overflow here.
16146 Allow \? and UCNs, for compatibility with C.
16148 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16149 with quote slot used by complain_at.
16151 * tests/input.at: Add tests for backslash-newline, m4 quotes
16152 in symbols, long literals, and funny escapes in strings.
16154 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16155 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16156 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16157 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16158 * m4/mbswidth.m4: New file, from GNU coreutils.
16160 * doc/bison.texinfo (Grammar Outline): Document // comments.
16161 (Symbols): Document that trigraphs have no special meaning in Bison,
16162 nor is backslash-newline allowed.
16163 (Actions): Document that trigraphs have no special meaning.
16165 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16168 2002-11-02 Paul Eggert <eggert@twinsun.com>
16170 * src/reader.c: Don't include quote.h; not needed.
16171 (get_merge_function): Reword warning to be consistent with
16172 type clash diagnostic in grammar_current_rule_check.
16174 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16175 bug in trigraph handling.
16177 * src/output.c (prepare_symbols): When printing token names,
16178 escape "[" as "@<:@" and likewise for "]".
16180 * src/system.h (errno): Remove declaration, as we are now
16181 assuming C89 or better, and C89 guarantees errno.
16183 2002-10-30 Paul Eggert <eggert@twinsun.com>
16185 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16186 Check for close failures.
16187 * src/files.h (xfclose): Return void, not int, since it always
16189 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16191 * src/output.c (output_skeleton): Use xfclose rather than fclose
16192 and ferror. xfclose now checks ferror.
16194 * data/glr.c (YYLEFTMOST_STATE): Remove.
16195 (yyreportTree): Use a stack-based leftmost state. This avoids
16196 our continuing battles with bogus warnings about initializers.
16198 2002-10-30 Akim Demaille <akim@epita.fr>
16200 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16203 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16205 * tests/glr-regr1.at: New test for reported regressions.
16206 * tests/testsuite.at: Add glr-regr1.at test.
16207 * tests/Makefile.am: Add glr-regr1.at test.
16209 2002-10-24 Paul Eggert <eggert@twinsun.com>
16213 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16214 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16215 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16216 Don't assume strdup exists; POSIX says its an XSI extension.
16217 Check for buffer overflow on input.
16219 2002-10-24 Akim Demaille <akim@epita.fr>
16221 * src/output.c (output_skeleton): Don't disable M4sugar comments
16222 too soon: it results in comments being expanded.
16223 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16226 2002-10-24 Akim Demaille <akim@epita.fr>
16228 * data/yacc.c (m4_int_type): New.
16229 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16230 char' as only yacc.c wants K&R portability.
16231 * data/glr.c (yysigned_char): Remove.
16232 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16233 Reported by Quoc Peyrot.
16235 2002-10-23 Paul Eggert <eggert@twinsun.com>
16237 * src/main.c (main): With --trace=time, report times even if a
16238 non-fatal error occurs. Formerly, the times were reported in some
16239 such cases but not in others.
16240 * src/reader.c (reader): Just return if a complaint has been issued,
16241 instead of exiting, so that 'main' can report times.
16243 2002-10-22 Akim Demaille <akim@epita.fr>
16245 * src/system.h: Include sys/types.
16246 Reported by Bert Deknuydt.
16248 2002-10-23 Paul Eggert <eggert@twinsun.com>
16250 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16251 Suggested by Art Haas.
16253 2002-10-22 Paul Eggert <eggert@twinsun.com>
16255 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16256 decl; not needed any more.
16257 * src/main.c (main): Use return to exit, undoing yesterday's change.
16258 The last OS that we could find where this wouldn't work is
16259 SunOS 3.5, and that's too old to worry about now.
16261 * data/glr.c (struct yyltype): Define members even when not
16262 doing locations. This is more consistent with yacc.c, and it
16263 works around the following bug reports:
16264 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16265 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
16267 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16268 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16269 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16271 2002-10-22 Akim Demaille <akim@epita.fr>
16273 * data/README: New.
16275 2002-10-21 Paul Eggert <eggert@twinsun.com>
16277 Be consistent about 'bool'; the old code used an enum in one
16278 module and an int in another, and this violates the C standard.
16279 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16280 * configure.ac (AC_HEADER_STDBOOL): Add.
16281 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16282 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16283 * src/symtab.c (hash_compare_symbol_t): Likewise.
16284 * src/system.h (bool, false, true): Use a definition consistent
16285 with ../lib/hash.c. All uses changed.
16287 * src/complain.c (warning_issued): Renamed from warn_message_count,
16288 so that we needn't worry about integer overflow (!).
16289 Now of type bool. All uses changed.
16290 (complaint_issued): Renamed from complain_message_count; likewise.
16292 * src/main.c (main): Use exit to exit with failure.
16294 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16295 rather than 1 and 0.
16296 * src/main.c (main): Likewise.
16297 * src/getargs.c (getargs): Likewise.
16298 * src/reader.c (reader): Likewise.
16300 * src/getarg.c (getargs): Remove duplicate code for
16301 "Try `bison --help'".
16303 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16304 What was that "2" for?
16306 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16307 * src/getargs.c (usage): Likewise.
16309 * src/getargs.c (getargs): When there are too few operands, report
16310 the last one. When there are too many, report the first extra
16311 one. This is how diffutils does it.
16313 2002-10-20 Paul Eggert <eggert@twinsun.com>
16315 Remove K&R vestiges.
16316 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16317 * src/complain.c (VA_START): Remove. Assume prototypes.
16318 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16319 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16320 fatal): Assume prototypes.
16321 * src/complain.h: Assume prototypes.
16322 * src/system.h (PARAMS): Remove.
16323 Include <limits.h> unconditionally, since it's guaranteeed even
16324 for a freestanding C89 compiler.
16325 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16326 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
16328 2002-10-20 Akim Demaille <akim@epita.fr>
16330 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16331 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16332 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16333 (yyresolveStates, yyresolveAction, yyresolveStack)
16334 (yyprocessOneStack): Use them.
16335 (yy_reduce_print): New.
16336 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16338 2002-10-20 Akim Demaille <akim@epita.fr>
16340 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16341 arguments and output `void'.
16342 (b4_c_function): Rename as...
16343 (b4_c_function_def): this.
16344 (b4_c_function_decl, b4_c_ansi_function_def)
16345 (b4_c_ansi_function_decl): New.
16346 Change the interpretation of the arguments: before `int, foo', now
16348 * data/yacc.c (yyparse): Prototype and define thanks to these.
16349 Adjust b4_c_function_def uses.
16350 * data/glr.c (yyparse): Likewise, but ANSI only.
16352 2002-10-20 Akim Demaille <akim@epita.fr>
16354 * src/output.c (prepare): Move the definition of `tokens_number',
16355 `nterms_number', `undef_token_number', `user_token_number_max'
16357 (prepare_tokens): Here.
16358 (prepare_tokens): Rename as...
16359 (prepare_symbols): this.
16360 (prepare): Move the definition of `rules_number' to...
16361 (prepare_rules): here.
16362 (prepare): Move the definition of `last', `final_state_number',
16363 `states_number' to...
16364 (prepare_states): here.
16365 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16367 2002-10-20 Akim Demaille <akim@epita.fr>
16369 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16371 2002-10-20 Akim Demaille <akim@epita.fr>
16373 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16376 2002-10-20 Akim Demaille <akim@epita.fr>
16378 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16379 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16381 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16383 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16384 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16387 2002-10-19 Paul Eggert <eggert@twinsun.com>
16389 Do not create a temporary file, as that involves security and
16390 cleanup headaches. Instead, use a pair of pipes.
16391 Derived from a suggestion by Florian Krohm.
16392 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16393 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16394 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16395 (BISON_PREREQ_SUBPIPE): Add.
16396 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16397 Add subpipe.h, subpipe.c.
16398 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16399 * po/POTFILES.in: Add lib/subpipe.c.
16400 * src/output.c: Include "subpipe.h".
16401 (m4_invoke): Remove decl.
16402 (scan_skel): New decl.
16403 (output_skeleton): Use pipe rather than temporary file for m4 input.
16404 Check that m4sugar.m4 is readable, to avoid deadlock.
16405 Check for pipe I/O error.
16406 * src/scan-skel.l (readpipe): Remove decl.
16407 (scan_skel): New function, to be used in place of m4_invoke.
16408 Read from stream rather than file.
16410 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16411 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16412 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16413 this generates a more-accurate value anyway.
16415 * lib/timevar.c (timervar_accumulate): Rename locals to
16416 avoid confusion with similarly-named more-global.
16417 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16419 * src/output.c (prepare): Use xstrdup to convert char const *
16420 to char *, to avoid GCC warning.
16422 2002-10-19 Akim Demaille <akim@epita.fr>
16424 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16425 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16426 Use them to have `calc.y' ready for %pure-parser.
16427 * data/yacc.c (YYLEX): Pass a yylex return type to
16428 b4_c_function_call.
16430 2002-10-19 Akim Demaille <akim@epita.fr>
16432 Prototype support of %lex-param and %parse-param.
16434 * src/parse-gram.y: Add the definition of the %lex-param and
16435 %parse-param tokens, plus their rules.
16436 Drop the `_' version of %glr-parser.
16438 * src/scan-gram.l (INITIAL): Scan them.
16439 * src/muscle_tab.c: Comment changes.
16440 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16441 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16442 (muscle_entry_s): The `value' member is no longer const.
16443 Adjust all dependencies.
16444 * src/muscle_tab.c (muscle_init): Adjust: use
16445 MUSCLE_INSERT_STRING.
16446 Initialize the obstack earlier.
16447 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16448 (muscle_pair_list_grow): New.
16449 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16450 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16451 * tests/calc.at: Use %locations, not --locations.
16452 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16454 2002-10-19 Akim Demaille <akim@epita.fr>
16456 * src/getargs.c (usage): Take status as argument and exit
16458 Report the traditional `Try ... --help' message when status != 0.
16459 (usage, version): Don't take a FILE * as arg, it is pointless.
16460 (getargs): When there is an incorrect number of arguments, make it
16461 an error, and report it GNUlically thanks to `usage ()'.
16463 2002-10-18 Paul Eggert <eggert@twinsun.com>
16465 * data/glr.c (yyreportParseError): Don't assume that sprintf
16466 yields the length of the printed string, as this is not true
16467 on SunOS 4.1.4. Reported by Peter Klein.
16469 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16470 * tests/conflicts.at (%nonassoc and eof): Likewise.
16471 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16473 2002-10-17 Akim Demaille <akim@epita.fr>
16475 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16476 * src/getargs.c (trace_types, trace_args): Adjust.
16477 * src/reader.c (grammar_current_rule_prec_set)
16478 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16479 Standardize error messages.
16480 And s/@prec/%prec/!
16481 (reader): Use trace_flag to enable scanner/parser debugging,
16482 instead of an adhoc scheme.
16483 * src/scan-gram.l: Remove trailing debugging code.
16485 2002-10-16 Paul Eggert <eggert@twinsun.com>
16487 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16490 * NEWS: Officially drop support for building Bison with K&R C,
16491 since it didn't work anyway and it's not worth worrying about.
16492 * Makefile.maint (wget_files): Remove ansi2knr.c.
16493 (ansi2knr.c-url_prefix): Remove.
16494 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16495 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16496 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16498 2002-10-15 Paul Eggert <eggert@twinsun.com>
16500 Stop using the "enum_" trick for K&R-style function definitions;
16501 it confused me, and I was the author! Instead, assume that people
16502 who want to use K&R C compilers (when using these modules in GCC,
16503 perhaps?) will run ansi2knr.
16505 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16506 All uses of "enum_" changed to "enum ".
16507 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16508 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16510 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16511 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16512 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16513 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16514 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16515 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16516 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16517 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16518 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16519 Use function prototypes; this removes the need for declaring
16520 static functions simply to provide their prototypes.
16521 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16522 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16523 bitset_count_, bitset_create, bitset_dump, bitset_first,
16524 bitset_free, bitset_init, bitset_last, bitset_next,
16525 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16526 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16527 bitset_print, bitset_release_memory, bitset_toggle_,
16528 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16529 debug_bitset): Likewise.
16530 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16531 * lib/bitset_stats.c (bitset_log_histogram_print,
16532 bitset_percent_histogram_print, bitset_stats_and,
16533 bitset_stats_and_cmp, bitset_stats_and_or,
16534 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16535 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16536 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16537 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16538 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16539 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16540 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16541 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16542 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16543 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16544 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16545 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16546 bitset_stats_zero): Likewise.
16547 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16548 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16549 bitsetv_dump, debug_bitsetv): Likewise.
16550 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16551 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16552 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16553 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16554 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16555 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16556 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16557 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16558 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16559 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16560 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16562 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16563 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16564 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16565 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16566 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16567 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16568 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16569 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16570 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16571 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16572 lbitset_xor_cmp, lbitset_zero): Likewise.
16574 2002-10-14 Akim Demaille <akim@epita.fr>
16578 2002-10-14 Akim Demaille <akim@epita.fr>
16580 * tests/Makefile.am (maintainer-check-posix): New.
16582 2002-10-14 Akim Demaille <akim@epita.fr>
16584 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16587 2002-10-14 Akim Demaille <akim@epita.fr>
16589 * src/tables.c (table_ninf_remap): base -> tab.
16590 Reported by Matt Rosing.
16592 2002-10-14 Paul Eggert <eggert@twinsun.com>
16594 * tests/action.at, tests/calc.at, tests/conflicts.at,
16595 tests/cxx-type.at, tests/headers.at, tests/input.at,
16596 tests/regression.at, tests/synclines.at, tests/torture.at:
16597 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16598 so that the tests still work even if POSIXLY_CORRECT is set.
16599 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
16601 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16602 for portability to K&R hosts. Fix typo: signed char is guaranteed
16603 only to 127, not to 128.
16604 * data/glr.c (yysigned_char): New type.
16605 * data/yacc.c (yysigned_char): Likewise.
16606 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16608 2002-10-13 Paul Eggert <eggert@twinsun.com>
16610 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16611 true due to limited range of data type" warning from GCC.
16613 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16614 by wrapping enum yytokentype's definition inside #ifndef
16615 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16617 2002-10-13 Akim Demaille <akim@epita.fr>
16619 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16620 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16622 2002-10-13 Akim Demaille <akim@epita.fr>
16624 * Makefile.maint: Update from Autoconf 2.54.
16625 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16627 2002-10-13 Akim Demaille <akim@epita.fr>
16629 * src/print.c (print_state): Separate the list of solved conflicts
16630 from the other items.
16631 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16633 2002-10-13 Akim Demaille <akim@epita.fr>
16635 Let nondeterministic skeletons be usable with deterministic
16638 With the patch, GAWK compiled by GCC without -O2 passes its test
16639 suite using a GLR parser driven by LALR tables. It fails with -O2
16640 because `struct stat' gives two different answers on my machine:
16641 88 (definition of an auto var) and later 96 (memset on this var).
16642 Hence the stack is badly corrumpted. The headers inclusion is to
16643 blame: if I move the awk.h inclusion before GLR's system header
16644 inclusion, the two struct stat have the same size.
16646 * src/tables.c (pack_table): Always create conflict_table.
16647 (token_actions): Always create conflict_list.
16648 * data/glr.c (YYFLAG): Remove, unused.
16650 2002-10-13 Akim Demaille <akim@epita.fr>
16652 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16654 (VALGRIND, GXX): New.
16655 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16656 * tests/bison.in: Run $PREBISON a pre-command.
16657 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16658 (maintainer-check-g++): New.
16659 * Makefile.am (maintainer-check): New.
16661 2002-10-13 Akim Demaille <akim@epita.fr>
16663 * data/glr.c: Formatting changes.
16664 Tweak some trace messages to match yacc.c's.
16666 2002-10-13 Akim Demaille <akim@epita.fr>
16668 GLR parsers sometimes raise parse errors instead of performing the
16670 Reported by Charles-Henry de Boysson.
16672 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
16673 check the length of the traces when %glr.
16674 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16676 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16678 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16679 (yyltype): Remove the yy prefix from the member names.
16680 (yytable): Complete its comment.
16681 (yygetLRActions): Map error action number from YYTABLE from
16683 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16684 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16685 not satisfying as we could compare an YYACTION computed from
16686 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16687 only value for error actions.
16688 (yyreportParseError): In verbose parse error messages, don't issue
16689 `error' in the list of expected tokens.
16690 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16691 next action to perform to match glr.c's decoding.
16692 (yytable): Complete its comment.
16694 2002-10-13 Paul Eggert <eggert@twinsun.com>
16696 Fix problem reported by Henrik Grubbstroem in
16697 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
16698 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16699 because the Bison parser reads the second action before reducing
16701 * src/scan-gram.l (rule_length): New static var.
16702 Use it to keep track of the rule length in the scanner, since
16703 we can't expect the parser to be in lock-step sync with the scanner.
16704 (handle_action_dollar, handle_action_at): Use this var.
16705 * tests/actions.at (Exotic Dollars): Test for the problem.
16707 2002-10-12 Paul Eggert <eggert@twinsun.com>
16709 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16710 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16711 Include <sys/time.h> when checking for clock_t and struct tms.
16712 Use same include order as source.
16713 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
16714 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
16716 * lib/timevar.c: Update copyright date and clarify comments.
16717 (get_time) [IN_GCC]: Keep the GCC version for reference.
16719 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16720 GCC version as of today, then merge Bison's changes.
16721 Change "GCC" to "Bison" in copyright notice. timevar.def's
16722 author is Akim, so change that too.
16724 * src/reader.c (grammar_current_rule_check):
16725 Don't worry about the default action if $$ is untyped.
16726 Prevents bogus warnings reported by Jim Gifford in
16727 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
16729 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16730 * data/glr.c, data/lalr1.cc, data/yacc.c:
16731 Output token definitions before the first part of user declarations.
16732 Fixes compatibility problem reported by Jim Gifford for kbd in
16733 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
16735 2002-10-11 Paul Eggert <eggert@twinsun.com>
16737 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16738 (yyparse): here. This undoes some of the 2002-07-25 change.
16739 Compatibility problem reported by Ralf S. Engelschall with
16740 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16742 2002-10-11 Akim Demaille <akim@epita.fr>
16744 * tests/regression.at Characters Escapes): New.
16745 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16747 Reported by Jan Nieuwenhuizen.
16749 2002-10-11 Akim Demaille <akim@epita.fr>
16753 2002-10-10 Paul Eggert <eggert@twinsun.com>
16755 Portability fixes for bitsets; this also avoids several GCC
16758 * lib/abitset.c: Include <stddef.h>, for offsetof.
16759 * lib/lbitset.c: Likewise.
16761 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16762 properly for vectors of objects. Do not assume that adding a
16763 header size to a multiple of a word size yields a value that is
16764 properly aligned for the whole union.
16765 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16767 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16768 unique names for structures.
16769 * lib/ebitset.c (ebitset_bytes): Likewise.
16770 * lib/lbitset.c (lbitset_bytes): Likewise.
16772 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16773 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16774 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16775 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16776 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16777 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16778 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16779 to improve the type-checking that GCC can do.
16780 * lib/bitset.c (bitset_op4_cmp): Likewise.
16781 * lib/bitset_stats.c (bitset_stats_count,
16782 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16783 bitset_stats_copy, bitset_stats_disjoint_p,
16784 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16785 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16786 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16787 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16788 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16789 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16790 bitset_stats_or_and_cmp): Likewise.
16791 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16792 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16793 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16794 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16796 * lib/abitset.h: Include bitset.h, not bbitset.h.
16797 * lib/ebitset.h: Likewise.
16798 * lib/lbitset.h: Likewise.
16800 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16801 All instances of parameters of type enum bitset_opts are now of
16802 type enum_bitset_opts, to conform to the C Standard, and similarly
16803 for enum_bitset_type.
16804 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16805 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16807 Do not use "struct bitset_struct" to mean different things in
16808 different modules. Not only is this confusing, it violates
16809 the C Standard, which requires that structure types in different
16810 modules must be compatible if one is to be passed to the other.
16811 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16812 All instances of "struct bitset_struct *" replaced with "bitset".
16813 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16814 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16815 struct lbitset_struct, struct bitset_stats_struct): New types.
16816 All uses of struct bitset_struct changed to union bitset_union,
16818 * lib/abitset.c (struct abitset_struct, abitset,
16819 struct bitset_struct): Remove.
16820 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16821 struct bitset_struct): Remove.
16822 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16823 bitset_struct): Remove.
16824 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16827 Do not call a function of type T using a call that assumes the
16828 function is of a different type U. Standard C requires that a
16829 function must be called with a type that is compatible with its
16831 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16833 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16835 * lib/ebitset.c (PFV): Remove.
16836 * lib/lbitset.c (PFV): Likewise.
16837 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16838 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16840 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16841 (ebitset_vtable): Use them.
16842 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16843 lbitset_xor): New functions.
16844 (lbitset_vtable): Use them.
16846 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16849 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16851 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16852 Use offsetof, for simplicity.
16854 2002-10-06 Paul Eggert <eggert@twinsun.com>
16856 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16857 the same width as int. This reapplies a hunk of the 2002-08-12 patch
16858 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
16859 which was inadvertently undone by the 2002-09-30 patch.
16860 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16861 the same width as int.
16863 2002-10-04 Paul Eggert <eggert@twinsun.com>
16867 * configure.ac (AC_INIT), NEWS: Increment version number.
16869 * doc/bison.texinfo: Minor spelling, grammar, and white space
16871 (Symbols): Mention that any negative value returned from yylex
16872 signifies end-of-input. Warn about negative chars. Mention
16873 the portable Standard C character set.
16875 The GNU coding standard says CFLAGS and YFLAGS are reserved
16876 for the installer to set.
16877 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16878 * src/Makefile.am (AM_CFLAGS): Likewise.
16879 (AM_YFLAGS): Renamed from YFLAGS.
16881 Fix some MAX and MIN problems.
16882 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16883 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16884 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16885 * src/reader.c (reader): Use it.
16887 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16888 POSIX 1003.1-2001 has removed fgrep.
16890 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16892 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16893 interpreted as signed.
16894 * lib/ebitset.c (ebitset_list): Fix bug.
16896 2002-10-01 Paul Eggert <eggert@twinsun.com>
16898 More fixes for 64-bit hosts and large bitsets.
16900 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16901 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16902 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16903 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16904 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16905 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16906 bitset_count_): Likewise.
16907 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16908 bitset_first, bitset_last): Likewise.
16909 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16910 bitset_stats_list_reverse, bitset_stats_size,
16911 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16913 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16914 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16915 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16916 bitsetv_reflexive_transitive_closure): Likewise.
16917 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16918 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16920 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16923 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16924 Use size_t, not unsigned int, to count bytes.
16925 * lib/abitset.h (abitset_bytes): Likewise.
16926 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16928 * lib/bitset.h (bitset_bytes): Likewise.
16929 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16930 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16931 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16932 * lib/ebitset.c (ebitset_bytes): Likewise.
16933 * lib/ebitset.h (ebitset_bytes): Likewise.
16934 * lib/lbitset.c (lbitset_bytes): Likewise.
16935 * lib/lbitset.h (lbitset_bytes): Likewise.
16937 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16938 abitset_subset_p, abitset_disjoint_p, abitset_and,
16939 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16940 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16941 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16942 abitset_or_and, abitset_or_and_cmp):
16943 Use bitset_windex instead of unsigned int.
16944 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16945 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16946 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16947 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16949 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
16951 * lib/bitset.c (bitset_print):
16952 Use proper printf formats for widths of integer types.
16953 * lib/bitset_stats.c (bitset_percent_histogram_print,
16954 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16955 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16956 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16957 * lib/lbitset.c (lbitset_bytes): Likewise.
16959 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16960 BITSET_SIZE_MAX): New macros.
16961 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16962 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16963 to BITSET_WINDEX_MAX.
16965 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16966 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16967 since we now return the bitset_bindex type (not int).
16969 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16970 when computing sizes.
16971 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16973 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16974 and avoid cast to unsigned.
16976 2002-09-30 Akim Demaille <akim@epita.fr>
16978 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16979 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16980 Updates from Michael Hayes.
16982 2002-09-30 Art Haas <ahaas@neosoft.com>
16984 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16986 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16989 2002-09-27 Akim Demaille <akim@epita.fr>
16993 2002-09-27 Akim Demaille <akim@epita.fr>
16995 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16996 (Because of AC_LIBSOURCE).
16998 2002-09-27 Akim Demaille <akim@epita.fr>
17000 Playing with Autoscan.
17002 * configure.ac: Remove the old LIBOBJ tweaks.
17003 (AC_REPLACE_FUNCS): Add strrchr and strtol.
17004 * lib/strrchr.c: New.
17005 * lib/strtol.c: New, from the Coreutils 4.5.1.
17007 2002-09-27 Akim Demaille <akim@epita.fr>
17009 Playing with Autoscan.
17011 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
17012 * lib/Makefile.am (libbison_a_SOURCES): No longer include
17013 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
17014 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
17017 2002-09-24 Akim Demaille <akim@epita.fr>
17019 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
17020 (Frequently Asked Questions, Parser Stack Overflow): New.
17022 2002-09-13 Akim Demaille <akim@epita.fr>
17024 Playing with autoscan.
17026 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17027 * src/files.c (skeleton_find): Remove, unused.
17028 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17029 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17031 2002-09-13 Akim Demaille <akim@epita.fr>
17033 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17034 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17036 2002-09-13 Akim Demaille <akim@epita.fr>
17038 * configure.ac: Require 2.54.
17039 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17040 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17041 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17042 Remove, provided by Autoconf macros.
17044 2002-09-12 Akim Demaille <akim@epita.fr>
17046 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17048 2002-09-12 Akim Demaille <akim@epita.fr>
17050 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17051 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17052 Reported by Martin Mokrejs.
17054 2002-09-10 Akim Demaille <akim@epita.fr>
17056 * src/parse-gram.y: Associate a human readable string to each
17058 * tests/regression.at (Invalid inputs): Adjust.
17060 2002-09-10 Gary V. Vaughan <gary@gnu.org>
17062 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17063 with an Autoconf-2.5x style configure.ac.
17065 2002-09-06 Paul Eggert <eggert@twinsun.com>
17067 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17068 exception applies only to yacc.c. This is a modification of a
17069 patch originally suggested by Akim Demaille.
17071 2002-09-06 Akim Demaille <akim@epita.fr>
17073 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17075 * data/yacc.c: here.
17077 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17079 (b4_ltype): Default to yy::Location from location.hh.
17081 2002-09-04 Jim Meyering <jim@meyering.net>
17083 * data/yacc.c: Guard the declaration of yytoknum also with
17084 `#ifdef YYPRINT', so it is declared only when used.
17086 2002-09-04 Akim Demaille <akim@epita.fr>
17088 * configure.in: Rename as...
17089 * configure.ac: this.
17092 2002-09-04 Akim Demaille <akim@epita.fr>
17094 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
17095 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
17096 translate maintainer only messages.
17098 2002-08-12 Paul Eggert <eggert@twinsun.com>
17102 * Makefile.am (SUBDIRS): Remove intl.
17103 (DISTCLEANFILES): Remove.
17104 * NEWS: Mention that GNU M4 is now required. Clarify what is
17105 meant by "larger grammars". Mention the pt_BR translation.
17106 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
17107 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
17108 Bump version from 0.11.2 to 0.11.5.
17109 (BISON_PREREQ_STAGE): Remove.
17110 (AM_GNU_GETTEXT): Use external gettext.
17111 (AC_OUTPUT): Remove intl/Makefile.
17113 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17115 * data/glr.c: Include string.h, for strlen.
17116 (yyreportParseError): Use size_t for yysize.
17117 (yy_yypstack): No longer nested inside yypstates, as nested
17118 functions are not portable. Do not assume size_t is the
17120 (yypstates): Do not assume that ptrdiff_t is the same width
17121 as int, and similarly for yyposn and YYINDEX.
17123 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17125 * lib/Makefile.am (INCLUDES): Do not include from the intl
17126 directory, which has been removed.
17127 * src/Makefile.am (INCLUDES): Likewise.
17129 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17130 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17133 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17134 * tests/Makefile.am (EXTRA_DIST): Likewise.
17136 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17137 Do not assume that bitset_windex is the same width as unsigned.
17139 * lib/abitset.c (abitset_unused_clear): Do not assume that
17140 bitset_word is the same width as int.
17141 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17142 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17143 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17144 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17145 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17147 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17148 portability to one's complement hosts!).
17149 * lib/ebitset.c (ebitset_op1): Likewise.
17150 * lib/lbitset.c (lbitset_op1): Likewise.
17152 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17153 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17154 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17155 Sync with fileutils.
17156 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17157 lib/gettext.h: Sync with diffutils.
17159 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17160 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17162 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17163 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17166 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17167 size_t; the old version tried to do this but casted improperly.
17168 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17169 (bitset_test): Now returns int, not unsigned long.
17171 * lib/bitset_stats.c: Include "gettext.h".
17173 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17174 name locals "index", as it generates unnecessary warnings on some
17175 hosts that have an "index" function.
17177 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17178 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17179 they need translation.
17180 * src/LR0.c (state_list_append, new_itemsets, get_state,
17181 append_states, generate_states): Likewise.
17182 * src/assoc.c (assoc_to_string): Likewise.
17183 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17184 * src/gram.c (grammar_dump): Likewise.
17185 * src/injections.c (injections_compute): Likewise.
17186 * src/lalr.c (lookaheads_print): Likewise.
17187 * src/relation.c (relation_transpose): Likewise.
17188 * src/scan-gram.l: Likewise.
17189 * src/tables.c (table_grow, pack_vector): Likewise.
17191 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17192 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17193 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17194 * m4/mbstate_t.m4: Sync with fileutils.
17195 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17197 * po/LINGUAS: Add pt_BR.
17198 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17199 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17201 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17203 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17205 * src/complain.c (strerror_r): Remove decl; not needed.
17206 (strerror): Use same pattern as ../lib/error.c.
17208 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17210 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17212 * src/main.c (main): Cast result of bindtextdomain and textdomain
17213 to void, to avoid a GCC warning when --disable-nls is in effect.
17215 * src/scan-gram.l: Use strings rather than escapes when possible,
17216 to minimize the number of warnings from xgettext.
17217 (handle_action_dollar, handle_action_at): Don't use isdigit,
17218 as it mishandles negative chars and it may not work as expected
17219 outside the C locale.
17221 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17222 this is a GCC extension and is not portable to other compilers.
17224 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17225 Do not include <ctype.h>; no longer needed.
17226 Do not include <malloc.h>; no longer needed (and generates
17227 warnings on OpenBSD 3.0).
17229 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17232 * tests/regression.at: Do not use 'cc -c input.c -o input';
17233 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17235 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17236 exit status as failure, not just exit status 1. Sun C exits
17237 with status 2 sometimes.
17239 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17240 Use it for the two large tests.
17242 2002-08-02 Akim Demaille <akim@epita.fr>
17244 * src/conflicts.c (conflicts_output): Don't output rules never
17245 reduced here, since anyway that computation doesn't work.
17246 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17247 (rule_useless_p, rule_never_reduced_p): New.
17248 (grammar_rules_partial_print): Use a filter instead of a range.
17249 Display the title only if needed.
17250 (grammar_rules_print): Adjust.
17251 (grammar_rules_never_reduced_report): New.
17252 * src/tables.c (action_row): Move the computation of rules never
17254 (token_actions): here.
17255 * src/main.c (main): Make the parser before making the report, so
17256 that rules never reduced are computed.
17257 Call grammar_rules_never_reduced_report.
17258 * src/print.c (print_results): Report rules never reduced.
17259 * tests/conflicts.at, tests/reduce.at: Adjust.
17261 2002-08-01 Akim Demaille <akim@epita.fr>
17263 Instead of attaching lookaheads and duplicating the rules being
17264 reduced by a state, attach the lookaheads to the reductions.
17266 * src/state.h (state_t): Remove the `lookaheads',
17267 `lookaheads_rule' member.
17268 (reductions_t): Add a `lookaheads' member.
17269 Use a regular array for the `rules'.
17270 * src/state.c (reductions_new): Initialize the lookaheads member
17272 (state_rule_lookaheads_print): Adjust.
17273 * src/state.h, src/state.c (state_reductions_find): New.
17274 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17275 (count_rr_conflicts): Adjust.
17276 * src/lalr.c (LArule): Remove.
17277 (add_lookback_edge): Adjust.
17278 (state_lookaheads_count): New.
17279 (states_lookaheads_initialize): Merge into...
17280 (initialize_LA): this.
17281 (lalr_free): Adjust.
17282 * src/main.c (main): Don't free nullable and derives too early: it
17283 is used by --verbose.
17284 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17286 2002-08-01 Akim Demaille <akim@epita.fr>
17288 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17290 (set_derives, free_derives): Rename as...
17291 (derives_compute, derives_free): this.
17292 Adjust all dependencies.
17293 * src/nullable.c (set_nullable, free_nullable): Rename as...
17294 (nullable_compute, nullable_free): these.
17295 (rule_list_t): Store rule_t *, not rule_number_t.
17296 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17297 pointers, instead of their numbers.
17298 * src/main.c (main): Call nullable_free, and derives_free earlier,
17299 as they were lo longer used.
17301 2002-08-01 Akim Demaille <akim@epita.fr>
17303 * lib/timevar.c (get_time): Include children time.
17304 * src/lalr.h (LA, LArule): Don't export them: used with the
17306 * src/lalr.c (LA, LArule): Static.
17307 * src/lalr.h, src/lalr.c (lalr_free): New.
17308 * src/main.c (main): Call it.
17309 * src/tables.c (pack_vector): Check whether loc is >= to the
17311 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17312 (tables_generate): do it, since that's also it which allocates
17314 Don't free LA and LArule, main does.
17316 2002-07-31 Akim Demaille <akim@epita.fr>
17318 Separate parser tables computation and output.
17320 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17321 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17322 (yydefgoto, yydefact, high): Move to...
17323 * src/tables.h, src/tables.c: here.
17324 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17325 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17326 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17327 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17328 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17329 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17330 (action_row, save_row, token_actions, save_column, default_goto)
17331 (goto_actions, sort_actions, matching_state, pack_vector)
17332 (table_ninf_remap, pack_table, prepare_actions): Move to...
17333 * src/tables.c: here.
17334 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17335 * src/output.c (token_actions, output_base, output_conflicts)
17336 (output_check): Merge into...
17337 (prepare_actions): this.
17338 (actions_output): Rename as...
17339 (user_actions_output): this.
17340 * src/main.c (main): Call tables_generate and tables_free.
17342 2002-07-31 Akim Demaille <akim@epita.fr>
17344 Steal GCC's --time-report support.
17346 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17347 stolen/adjusted from GCC.
17348 * m4/stage.m4: Remove time related checks.
17349 * m4/timevar.m4: New.
17350 * configure.in: Adjust.
17351 * src/system.h: Adjust to using timevar.h.
17352 * src/getargs.h, src/getargs.c: Support trace_time for
17354 * src/main.c (stage): Remove.
17355 (main): Replace `stage' invocations with timevar calls.
17356 * src/output.c: Insert pertinent timevar calls.
17358 2002-07-31 Akim Demaille <akim@epita.fr>
17360 Let --trace have arguments.
17362 * src/getargs.h (enum trace_e): New.
17363 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17364 (long_options, short_options): --trace/-T takes an optional
17366 Change all the uses of trace_flag to reflect the new flags.
17367 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17369 Strengthen `stage' portability.
17371 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17372 * configure.in: Use it.
17373 Don't check for malloc.h and sys/times.h.
17374 * src/system.h: Include them when appropriate.
17375 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17376 times and struct tms are available.
17378 2002-07-30 Akim Demaille <akim@epita.fr>
17380 In verbose parse error message, don't report `error' as an
17382 * tests/actions.at (Printers and Destructors): Adjust.
17383 * tests/calc.at (Calculator $1): Adjust.
17384 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17385 error message, do not report the parser accepts the error token in
17388 2002-07-30 Akim Demaille <akim@epita.fr>
17390 Normalize conflict related messages.
17392 * src/complain.h, src/complain.c (warn, complain): New.
17393 * src/conflicts.c (conflicts_print): Use them.
17394 (conflict_report_yacc): New, extracted from...
17395 (conflicts_print): here.
17396 * tests/conflicts.at, tests/existing.at: Adjust.
17398 2002-07-30 Akim Demaille <akim@epita.fr>
17400 Report rules which are never reduced by the parser: those hidden
17403 * src/LR0.c (save_reductions): Don't make the final state too
17404 different: save its reduction (accept) instead of having a state
17405 without any action (no shift or goto, no reduce).
17406 Note: the final state is now a ``regular'' state, i.e., the
17407 parsers now contain `reduce 0' as default reduction.
17408 Nevertheless, since they decide to `accept' when yystate =
17409 final_state, they still will not reduce rule 0.
17410 * src/print.c (print_actions, print_reduction): Adjust.
17411 * src/output.c (action_row): Track reduced rules.
17412 (token_actions): Report rules never reduced.
17413 * tests/conflicts.at, tests/regression.at: Adjust.
17415 2002-07-30 Akim Demaille <akim@epita.fr>
17417 `stage' was accidently included in a previous patch.
17418 Initiate its autoconfiscation.
17420 * configure.in: Look for malloc.h and sys/times.h.
17421 * src/main.c (stage): Adjust.
17422 Report only when trace_flag.
17424 2002-07-29 Akim Demaille <akim@epita.fr>
17426 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17428 (errs_t): symbol_t*, not symbol_number_t.
17429 (reductions_t): rule_t*, not rule_number_t.
17430 (FOR_EACH_SHIFT): New.
17431 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17432 * src/print.c, src/print_graph.c: Adjust.
17434 2002-07-29 Akim Demaille <akim@epita.fr>
17436 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17438 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17439 (endtoken, accept): these.
17440 * src/reader.c (reader): Set endtoken's default tag to "$end".
17441 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17442 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17445 2002-07-29 Akim Demaille <akim@epita.fr>
17447 * src/reduce.c (reduce_grammar): When the language is empty,
17448 complain about the start symbol, not the axiom.
17450 * tests/reduce.at (Empty Language): New.
17452 2002-07-26 Akim Demaille <akim@epita.fr>
17454 * src/reader.h, src/reader.c (gram_error): ... can't get
17455 yycontrol without making too strong assumptions on the parser
17457 * src/output.c (prepare_tokens): Use the real 0th value of
17458 token_translations instead of `0'.
17459 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17461 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17462 for the time being: %locations ought to provide it to yyerror.
17464 2002-07-25 Akim Demaille <akim@epita.fr>
17466 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17467 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17468 * tests/regression.at (Web2c Actions): Adjust.
17470 2002-07-25 Akim Demaille <akim@epita.fr>
17472 Stop storing rules from 1 to nrules + 1.
17474 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17475 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17476 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17477 Iterate from 0 to nrules.
17478 Use rule_number_as_item_number and item_number_as_rule_number.
17479 Adjust to `derive' now containing possibly 0.
17480 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17481 Handle the `- 1' part in rule numbers from/to item numbers.
17482 * src/conflicts.c (log_resolution): Fix the message which reversed
17484 * src/output.c (action_row): Initialize default_rule to -1.
17485 (token_actions): Adjust.
17486 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17488 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17490 2002-07-25 Akim Demaille <akim@epita.fr>
17492 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17493 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17494 (b4_c_knr_arg_decl): New.
17495 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17496 yyreport_parse_error.
17498 2002-07-25 Akim Demaille <akim@epita.fr>
17500 * data/yacc.c (yyreport_parse_error): New, extracted from...
17502 (yydestruct, yysymprint): Move above yyparse.
17505 2002-07-25 Akim Demaille <akim@epita.fr>
17507 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17509 (b4_sint_type, b4_uint_type): these.
17510 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17511 * tests/regression.at (Web2c Actions): Adjust.
17513 2002-07-25 Akim Demaille <akim@epita.fr>
17515 * src/gram.h (TIEM_NUMBER_MAX): New.
17516 (item_number_of_rule_number, rule_number_of_item_number): Rename
17518 (rule_number_as_item_number, item_number_as_rule_number): these.
17519 Adjust dependencies.
17520 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17521 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17522 (symbol_number_to_vector_number): New.
17523 (order): Of vector_number_t* type.
17524 (base_t, BASE_MAX, BASE_MIN): New.
17525 (froms, tos, width, pos, check): Of base_t type.
17526 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17527 (actrow): Of action_number_t type.
17528 (conflrow): Of unsigned int type.
17529 (table_ninf, base_ninf): New.
17530 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17531 (muscle_insert_int_table, muscle_insert_base_table)
17532 (muscle_insert_rule_number_table): New.
17533 (prepare_tokens): Output `toknum' as int_table.
17534 (action_row): Returns a rule_number_t.
17535 Use ACTION_MIN, not SHRT_MIN.
17536 (token_actions): yydefact is rule_number_t*.
17537 (table_ninf_remap): New.
17538 (pack_table): Use it for `base' and `table'.
17539 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17541 (YYPACT_NINF, YYTABLE_NINF): these.
17542 (yypact, yytable): Compute their types instead of hard-coded
17544 * tests/regression.at (Web2c Actions): Adjust.
17546 2002-07-19 Akim Demaille <akim@epita.fr>
17548 * src/scan-gram.l (id): Can start with an underscore.
17550 2002-07-16 Akim Demaille <akim@epita.fr>
17552 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17553 Adjust all former `associativity' dependencies.
17554 * src/symtab.c (symbol_new): Default associativity is `undef', not
17556 (symbol_check_alias_consistence): Adjust.
17558 2002-07-09 Akim Demaille <akim@epita.fr>
17560 * doc/bison.texinfo: Properly set the ``header'' part.
17561 Use @dircategory ``GNU programming tools'' as per Texinfo's
17565 2002-07-09 Akim Demaille <akim@epita.fr>
17567 * lib/quotearg.h: Protect against multiple inclusions.
17568 * src/location.h (location_t): Add a `file' member.
17569 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17570 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17571 `error_one_per_line' support.
17573 2002-07-09 Akim Demaille <akim@epita.fr>
17575 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17576 * src/reader.c (lineno): Remove.
17577 Adjust all dependencies.
17578 (get_merge_function): Take a location and use complain_at.
17579 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17580 * tests/regression.at (Invalid inputs, Mixing %token styles):
17583 2002-07-09 Akim Demaille <akim@epita.fr>
17585 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17586 recovery rule, and forbid extensions when --yacc.
17587 (gram_error): Use complain_at.
17588 * src/reader.c (reader): Exit if there were parse errors.
17590 2002-07-09 Akim Demaille <akim@epita.fr>
17592 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17593 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17594 Reported by R Blake <blakers@mac.com>.
17596 2002-07-09 Akim Demaille <akim@epita.fr>
17598 * data/yacc.c: Output the copyright notive in the header.
17600 2002-07-03 Akim Demaille <akim@epita.fr>
17602 * src/output.c (froms, tos): Are state_number_t.
17603 (save_column): sp, sp1, and sp2 are state_number_t.
17604 (prepare): Rename `final' as `final_state_number', `nnts' as
17605 `nterms_number', `nrules' as `rules_number', `nstates' as
17606 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17608 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17609 * data/lalr1.cc (nsym_): Remove, unused.
17611 2002-07-03 Akim Demaille <akim@epita.fr>
17613 * src/lalr.h, src/lalr.c (goto_number_t): New.
17614 * src/lalr.c (goto_list_t): New.
17616 * src/nullable.c (rule_list_t): New.
17618 * src/types.h: Remove.
17620 2002-07-03 Akim Demaille <akim@epita.fr>
17622 * src/closure.c (print_fderives): Use rule_rhs_print.
17623 * src/derives.c (print_derives): Use rule_rhs_print.
17624 (rule_list_t): New, replaces `shorts'.
17625 (set_derives): Add comments.
17626 * tests/sets.at (Nullable, Firsts): Adjust.
17628 2002-07-03 Akim Demaille <akim@epita.fr>
17630 * src/output.c (prepare_actions): Free `tally' and `width'.
17631 (prepare_actions): Allocate and free `order'.
17632 * src/symtab.c (symbols_free): Free `symbols'.
17633 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17634 * src/output.c (m4_invoke): Move to...
17635 * src/scan-skel.l: here.
17636 (<<EOF>>): Close yyout, and free its name.
17638 2002-07-03 Akim Demaille <akim@epita.fr>
17640 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17642 * src/LR0.c (new_state): Merge into...
17643 (state_list_append): this.
17644 (new_states): Merge into...
17645 (generate_states): here.
17646 (set_states): Don't ensure a proper `errs' state member here, do it...
17647 * src/conflicts.c (conflicts_solve): here.
17648 * src/state.h, src/state.c: Comment changes.
17649 (state_t): Rename member `shifts' as `transitions'.
17650 Adjust all dependencies.
17651 (errs_new): For consistency, also take the values as argument.
17652 (errs_dup): Remove.
17653 (state_errs_set): New.
17654 (state_reductions_set, state_transitions_set): Assert that no
17655 previous value was assigned.
17657 (states_free): Use it.
17658 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17659 temporary storage: use `errs' and `nerrs' as elsewhere.
17660 (set_conflicts): Allocate and free this `errs'.
17662 2002-07-02 Akim Demaille <akim@epita.fr>
17664 * lib/libiberty.h: New.
17665 * lib: Update the bitset implementation from upstream.
17666 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17667 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17668 * src/main.c: Adjust bitset stats calls.
17670 2002-07-01 Paul Eggert <eggert@twinsun.com>
17672 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17673 char, so that negative chars don't collide with $.
17675 2002-06-30 Akim Demaille <akim@epita.fr>
17677 Have the GLR tests be `warning' checked, and fix the warnings.
17679 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17680 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17681 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17682 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17683 (yyaddDeferredAction): static.
17684 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17685 (yyreportParseError): yyprefix is const.
17686 yytokenp is used only when verbose.
17687 (yy__GNUC__): Replace with __GNUC__.
17688 (yypdumpstack): yyi is size_t.
17689 (yypreference): Un-yy local variables and arguments, to avoid
17690 clashes with `yyr1'. Anyway, we are not in the user name space.
17691 (yytname_size): be an int, as is compared with ints.
17692 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17694 * tests/cxx-gram.at: Use quotation to protect $1.
17695 Use AT_COMPILE to enable warnings hunts.
17696 Prototype yylex and yyerror.
17698 Include `string.h', not `strings.h'.
17699 Produce and prototype stmtMerge only when used.
17700 yylex takes a location.
17702 2002-06-30 Akim Demaille <akim@epita.fr>
17704 We spend a lot of time in quotearg, in particular when --verbose.
17706 * src/symtab.c (symbol_get): Store a quoted version of the key.
17707 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17708 Adjust all callers.
17710 2002-06-30 Akim Demaille <akim@epita.fr>
17712 * src/state.h (reductions_t): Rename member `nreds' as num.
17713 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17714 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17716 2002-06-30 Akim Demaille <akim@epita.fr>
17718 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17719 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17720 (shifts_to): Rename as...
17721 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17722 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17723 (TRANSITION_IS_DISABLED, transitions_to): these.
17725 2002-06-30 Akim Demaille <akim@epita.fr>
17727 * src/print.c (print_shifts, print_gotos): Merge into...
17728 (print_transitions): this.
17729 (print_transitions, print_errs, print_reductions): Align the
17730 lookaheads columns.
17731 (print_core, print_transitions, print_errs, print_state,
17732 print_grammar): Output empty lines separator before, not after.
17733 (state_default_rule_compute): Rename as...
17734 (state_default_rule): this.
17735 * tests/conflicts.at (Defaulted Conflicted Reduction),
17736 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17737 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17739 2002-06-30 Akim Demaille <akim@epita.fr>
17741 Display items as we display rules.
17743 * src/gram.h, src/gram.c (rule_lhs_print): New.
17744 * src/gram.c (grammar_rules_partial_print): Use it.
17745 * src/print.c (print_core): Likewise.
17746 * tests/conflicts.at (Defaulted Conflicted Reduction),
17747 (Unresolved SR Conflicts): Adjust.
17748 (Unresolved SR Conflicts): Adjust and rename as...
17749 (Resolved SR Conflicts): this, as was meant.
17750 * tests/regression.at (Web2c Report): Adjust.
17752 2002-06-30 Akim Demaille <akim@epita.fr>
17754 * src/print.c (state_default_rule_compute): New, extracted from...
17755 (print_reductions): here.
17756 Pessimize, but clarify the code.
17757 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17759 2002-06-30 Akim Demaille <akim@epita.fr>
17761 * src/output.c (action_row): Let default_rule be always a rule
17764 2002-06-30 Akim Demaille <akim@epita.fr>
17766 * src/closure.c (print_firsts, print_fderives, closure):
17767 Use BITSET_EXECUTE.
17768 * src/lalr.c (lookaheads_print): Likewise.
17769 * src/state.c (state_rule_lookaheads_print): Likewise.
17770 * src/print_graph.c (print_core): Likewise.
17771 * src/print.c (print_reductions): Likewise.
17772 * src/output.c (action_row): Likewise.
17773 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17775 2002-06-30 Akim Demaille <akim@epita.fr>
17777 * src/print_graph.c: Use report_flag.
17779 2002-06-30 Akim Demaille <akim@epita.fr>
17781 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17783 * src/relation.h, src/relation.c (traverse, relation_digraph)
17784 (relation_print, relation_transpose): New.
17786 2002-06-30 Akim Demaille <akim@epita.fr>
17788 * src/state.h, src/state.c (shifts_to): New.
17789 * src/lalr.c (build_relations): Use it.
17791 2002-06-30 Akim Demaille <akim@epita.fr>
17793 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17794 (item_number_of_rule_number, rule_number_of_item_number): New.
17795 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17796 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17797 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17798 Propagate their use.
17799 Much remains to be done, in particular wrt `shorts' from types.h.
17801 2002-06-30 Akim Demaille <akim@epita.fr>
17803 * src/symtab.c (symbol_new): Initialize the `printer' member.
17805 2002-06-30 Akim Demaille <akim@epita.fr>
17807 * src/LR0.c (save_reductions): Remove, replaced by...
17808 * src/state.h, src/state.c (state_reductions_set): New.
17809 (reductions, errs): Rename as...
17810 (reductions_t, errs_t): these.
17811 Adjust all dependencies.
17813 2002-06-30 Akim Demaille <akim@epita.fr>
17815 * src/LR0.c (state_list_t, state_list_append): New.
17816 (first_state, last_state): Now symbol_list_t.
17817 (this_state): Remove.
17818 (new_itemsets, append_states, save_reductions): Take a state_t as
17820 (set_states, generate_states): Adjust.
17821 (save_shifts): Remove, replaced by...
17822 * src/state.h, src/state.c (state_shifts_set): New.
17823 (shifts): Rename as...
17825 Adjust all dependencies.
17826 * src/state.h (state_t): Remove the `next' member.
17828 2002-06-30 Akim Demaille <akim@epita.fr>
17830 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17833 2002-06-30 Akim Demaille <akim@epita.fr>
17835 Use hash.h for the state hash table.
17837 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17838 (allocate_storage): Use state_hash_new.
17839 (free_storage): Use state_hash_free.
17840 (new_state, get_state): Adjust.
17841 * src/lalr.h, src/lalr.c (states): Move to...
17842 * src/states.h (state_t): Remove the `link' member, no longer
17844 * src/states.h, src/states.c: here.
17845 (state_hash_new, state_hash_free, state_hash_lookup)
17846 (state_hash_insert, states_free): New.
17847 * src/states.c (state_table, state_compare, state_hash): New.
17848 * src/output.c (output_actions): Do not free states now, since we
17849 still need to know the final_state number in `prepare', called
17850 afterwards. Do it...
17851 * src/main.c (main): here: call states_free after `output'.
17853 2002-06-30 Akim Demaille <akim@epita.fr>
17855 * src/state.h, src/state.c (state_new): New, extracted from...
17856 * src/LR0.c (new_state): here.
17857 * src/state.h (STATE_ALLOC): Move to...
17858 * src/state.c: here.
17859 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17860 * src/state.h, src/state.c: here.
17862 2002-06-30 Akim Demaille <akim@epita.fr>
17864 * src/reader.c (gensym): Rename as...
17865 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17866 (getsym): Rename as...
17867 (symbol_get): this.
17869 2002-06-30 Akim Demaille <akim@epita.fr>
17871 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17872 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17873 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17874 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17876 2002-06-30 Akim Demaille <akim@epita.fr>
17878 Make the test suite pass with warnings checked.
17880 * tests/actions.at (Printers and Destructors): Improve.
17881 Avoid unsigned vs. signed issues.
17882 * tests/calc.at: Don't exercise the scanner here, do it...
17883 * tests/input.at (Torturing the Scanner): here.
17885 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17887 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
17888 reorganize first lines parallel to yacc.c.
17890 2002-06-28 Akim Demaille <akim@epita.fr>
17892 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17893 (b4_token_enum, b4_token_defines): New, factored from...
17894 * data/lalr1.cc, data/yacc.c, glr.c: here.
17896 2002-06-28 Akim Demaille <akim@epita.fr>
17898 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17900 * src/output.c (merger_output): static.
17902 2002-06-28 Akim Demaille <akim@epita.fr>
17904 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
17905 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17907 * src/output.c (save_row): Initialize all the variables to pacify GCC.
17909 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17911 Accumulated changelog for new GLR parsing features.
17913 * src/conflicts.c (count_total_conflicts): Change name to
17914 conflicts_total_count.
17915 * src/conflicts.h: Ditto.
17916 * src/output.c (token_actions): Use the new name.
17917 (output_conflicts): Change conflp => conflict_list_heads, and
17918 confl => conflict_list for better readability.
17919 * data/glr.c: Use the new names.
17920 * NEWS: Add self to GLR announcement.
17922 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17924 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17927 * data/bison.glr: Change name to glr.c
17928 * data/glr.c: Renamed from bison.glr.
17929 * data/Makefile.am: Add glr.c
17933 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
17934 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
17936 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17938 * data/bison.glr: Be sure to restore the
17939 current #line when returning to the skeleton contents after having
17940 exposed the input file's #line.
17942 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17944 * data/bison.glr: Bring up to date with changes to bison.simple.
17946 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17948 * data/bison.glr: Correct definitions that use b4_prefix.
17949 Various reformatting.
17950 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17951 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17952 yytokenp argument; now part of stack.
17953 (yychar): Define to behave as documented.
17954 (yyclearin): Ditto.
17956 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17958 * src/reader.h: Add declaration for free_merger_functions.
17960 * src/reader.c (merge_functions): New variable.
17961 (get_merge_function): New function.
17962 (free_merger_functions): New function.
17963 (readgram): Check for %prec that is not followed by a symbol.
17964 Handle %dprec and %merge declarations.
17965 (packgram): Initialize dprec and merger fields in rules array.
17967 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17968 conflict_list_cnt, conflict_list_free): New variables.
17969 (table_grow): Also grow conflict_table.
17970 (prepare_rules): Output dprec and merger tables.
17971 (conflict_row): New function.
17972 (action_row): Output conflict lists for GLR parser. Don't use
17973 default reduction in conflicted states for GLR parser so that there
17974 are spaces for the conflict lists.
17975 (save_row): Also save conflict information.
17976 (token_actions): Allocate conflict list.
17977 (merger_output): New function.
17978 (pack_vector): Pack conflict table, too.
17979 (output_conflicts): New function to output yyconflp and yyconfl.
17980 (output_check): Allocate conflict_tos.
17981 (output_actions): Output conflict tables, also.
17982 (output_skeleton): Output b4_mergers definition.
17983 (prepare): Output b4_max_rhs_length definition.
17984 Use 'bison.glr' as default skeleton for GLR parsers.
17986 * src/gram.c (glr_parser): New flag.
17987 (grammar_free): Call free_merger_functions.
17989 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17990 all pairs of conflicting reductions, rather than just all tokens
17991 causing conflicts. Needed to size conflict tables.
17992 (conflicts_output): Modify call to count_rr_conflicts for new
17994 (conflicts_print): Ditto.
17995 (count_total_conflicts): New function.
17997 * src/reader.h (merger_list): New type.
17998 (merge_functions): New variable.
18000 * src/lex.h (tok_dprec, tok_merge): New token types.
18002 * src/gram.h (rule_s): Add dprec and merger fields.
18003 (glr_parser): New flag.
18005 * src/conflicts.h (count_total_conflicts): New function.
18007 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
18009 * doc/bison.texinfo (Generalized LR Parsing): New section.
18010 (GLR Parsers): New section.
18011 (Language and Grammar): Mention GLR parsing.
18012 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
18013 Correct typo ("tge" -> "the").
18015 * data/bison.glr: New skeleton for GLR parsing.
18017 * tests/cxx-gram.at: New tests for GLR parsing.
18019 * tests/testsuite.at: Include cxx-gram.at.
18021 * tests/Makefile.am: Add cxx-gram.at.
18023 * src/parse-gram.y:
18025 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18027 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
18029 2002-06-27 Akim Demaille <akim@epita.fr>
18031 * src/options.h, src/options.c: Remove.
18032 * src/getargs.c (short_options, long_options): New.
18034 2002-06-27 Akim Demaille <akim@epita.fr>
18036 * data/bison.simple, data/bison.c++: Rename as...
18037 * data/yacc.c, data/lalr1.cc: these.
18038 * doc/bison.texinfo (Environment Variables): Remove.
18040 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18042 * src/getargs.c (report_argmatch): Initialize strtok().
18044 2002-06-20 Akim Demaille <akim@epita.fr>
18046 * data/bison.simple (b4_symbol_actions): New, replaces...
18047 (b4_symbol_destructor, b4_symbol_printer): these.
18048 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18049 user token numbers.
18051 2002-06-20 Akim Demaille <akim@epita.fr>
18053 * data/bison.simple (yydestructor): Rename as...
18054 (yydestruct): this.
18056 2002-06-20 Akim Demaille <akim@epita.fr>
18058 * src/symtab.h, src/symtab.c (symbol_type_set)
18059 (symbol_destructor_set, symbol_precedence_set): The location is
18061 Adjust all callers.
18063 2002-06-20 Akim Demaille <akim@epita.fr>
18065 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18067 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18069 * src/symtab.h, src/symtab.c (symbol_class_set)
18070 (symbol_user_token_number_set): Likewise.
18071 Adjust all callers.
18072 Promote complain_at.
18073 * tests/input.at (Type Clashes): Adjust.
18075 2002-06-20 Akim Demaille <akim@epita.fr>
18077 * data/bison.simple (YYLEX): Fix the declaration when
18080 2002-06-20 Akim Demaille <akim@epita.fr>
18082 * data/bison.simple (yysymprint): Don't print the token number,
18084 * tests/actions.at (Destructors): Rename as...
18085 (Printers and Destructors): this.
18086 Also exercise %printer.
18088 2002-06-20 Akim Demaille <akim@epita.fr>
18090 * data/bison.simple (YYDSYMPRINT): New.
18091 Use it to remove many of the #if YYDEBUG/if (yydebug).
18093 2002-06-20 Akim Demaille <akim@epita.fr>
18095 * src/symtab.h, src/symtab.c (symbol_t): printer and
18096 printer_location are new members.
18097 (symbol_printer_set): New.
18098 * src/parse-gram.y (PERCENT_PRINTER): New token.
18099 Handle its associated rule.
18100 * src/scan-gram.l: Adjust.
18101 (handle_destructor_at, handle_destructor_dollar): Rename as...
18102 (handle_symbol_code_at, handle_symbol_code_dollar): these.
18103 * src/output.c (symbol_printers_output): New.
18104 (output_skeleton): Call it.
18105 * data/bison.simple (yysymprint): New. Cannot be named yyprint
18106 since there are already many grammar files with a user `yyprint'.
18107 Replace the calls to YYPRINT to calls to yysymprint.
18108 * tests/calc.at: Adjust.
18109 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
18110 taking advantage of parser very internal details (stack size!).
18112 2002-06-20 Akim Demaille <akim@epita.fr>
18114 * src/scan-gram.l: Complete the scanner with the missing patterns
18116 Use `quote' and `symbol_tag_get' where appropriate.
18118 2002-06-19 Akim Demaille <akim@epita.fr>
18120 * tests/actions.at (Destructors): Augment to test locations.
18121 * data/bison.simple (yydestructor): Pass it the current location
18122 if locations are enabled.
18123 Prototype only when __STDC__ or C++.
18124 Change the argument names to move into the yy name space: there is
18127 2002-06-19 Akim Demaille <akim@epita.fr>
18129 * data/bison.simple (b4_pure_if): New.
18130 Use it instead of #ifdef YYPURE.
18132 2002-06-19 Akim Demaille <akim@epita.fr>
18134 * data/bison.simple (b4_location_if): New.
18135 Use it instead of #ifdef YYLSP_NEEDED.
18137 2002-06-19 Akim Demaille <akim@epita.fr>
18139 Prepare @$ in %destructor, but currently don't bind it in the
18140 skeleton, as %location use is not cleaned up yet.
18142 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18143 (handle_action_at): New.
18144 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18145 a braced_code_t and a location as additional arguments.
18146 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18147 unquote one when outputting `b4_dollar_dollar'.
18149 * data/bison.simple (b4_eval): Remove.
18150 (b4_symbol_destructor): Adjust.
18151 * tests/input.at (Invalid @n): Adjust.
18153 2002-06-19 Zack Weinberg <zack@codesourcery.com>
18155 * doc/bison.texinfo: Document ability to have multiple
18158 2002-06-18 Akim Demaille <akim@epita.fr>
18160 * src/files.c (compute_base_names): When computing the output file
18161 names from the input file name, strip the directory part.
18163 2002-06-18 Akim Demaille <akim@epita.fr>
18165 * data/bison.simple.new: Comment changes.
18166 Reported by Andreas Schwab.
18168 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18170 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18171 there are no `label `yyoverflowlab' defined but not used' warnings
18172 when yyoverflow is defined.
18174 2002-06-18 Akim Demaille <akim@epita.fr>
18176 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18178 (symbol_destructor_set): Adjust.
18179 * src/output.c (symbol_destructors_output): Output the destructor
18181 Output the symbol name.
18182 * data/bison.simple (b4_symbol_destructor): Adjust.
18184 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18185 and Akim Demaille <akim@epita.fr>
18187 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18188 what's left on the stack when the error recovery hits EOF.
18189 * tests/actions.at (Destructors): Complete to exercise this case.
18191 2002-06-17 Akim Demaille <akim@epita.fr>
18193 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18194 arguments is really empty, not only equal to `[]'.
18195 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18197 (symbol_destructor_set): New.
18198 * src/output.c (symbol_destructors_output): New.
18199 * src/reader.h (brace_code_t, current_braced_code): New.
18200 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18201 (handle_dollar): Rename as...
18202 (handle_action_dollar): this.
18203 (handle_destructor_dollar): New.
18204 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18205 (grammar_declaration): Use it.
18206 * data/bison.simple (yystos): Is always defined.
18207 (yydestructor): New.
18208 * tests/actions.at (Destructors): New.
18209 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18211 2002-06-17 Akim Demaille <akim@epita.fr>
18213 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18214 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18215 rule_length only when needed.
18216 * src/output.c (actions_output, token_definitions_output): Output
18218 * src/symtab.c: Don't access directly to the symbol tag, use
18220 * src/parse-gram.y: Use symbol_list_free.
18222 2002-06-17 Akim Demaille <akim@epita.fr>
18224 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18225 (symbol_list_prepend, get_type_name): Move to...
18226 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18227 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18228 Adjust all callers.
18229 (symbol_list_free): New.
18230 * src/scan-gram.l (handle_dollar): Takes a location.
18231 * tests/input.at (Invalid $n): Adjust.
18233 2002-06-17 Akim Demaille <akim@epita.fr>
18235 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18236 (symbol_list_prepend): New.
18237 * src/parse-gram.y (%union): `list' is a new member.
18238 (symbols.1): New, replaces...
18239 (terms_to_prec.1, nterms_to_type.1): these.
18240 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18241 Take a location as additional argument.
18242 Adjust all callers.
18244 2002-06-15 Akim Demaille <akim@epita.fr>
18246 * src/parse-gram.y: Move %token in the declaration section so that
18247 we don't depend upon CVS Bison.
18249 2002-06-15 Akim Demaille <akim@epita.fr>
18251 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18252 * src/print.c (print_core): Use it.
18254 2002-06-15 Akim Demaille <akim@epita.fr>
18256 * src/conflicts.c (log_resolution): Accept the rule involved in
18257 the sr conflicts instead of the lookahead number that points to
18259 (flush_reduce): Accept the current lookahead vector as argument,
18260 instead of the index in LA.
18261 (resolve_sr_conflict): Accept the current number of lookahead
18262 bitset to consider for the STATE, instead of the index in LA.
18263 (set_conflicts): Adjust.
18264 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18266 2002-06-15 Akim Demaille <akim@epita.fr>
18268 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18269 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18270 Adjust all dependencies.
18271 * src/lalr.c (initialize_lookaheads): Split into...
18272 (states_lookaheads_count, states_lookaheads_initialize): these.
18275 2002-06-15 Akim Demaille <akim@epita.fr>
18277 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18279 (grammar_rules_print): here.
18280 * src/reduce.c (reduce_output): Use it.
18281 * tests/reduce.at (Useless Rules, Reduced Automaton)
18282 (Underivable Rules): Adjust.
18284 2002-06-15 Akim Demaille <akim@epita.fr>
18286 Copy BYacc's nice way to report the grammar.
18288 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18290 Don't print the rules' location, it is confusing and useless.
18291 (rule_print): Use grammar_rhs_print.
18292 * src/print.c (print_grammar): Use grammar_rules_print.
18294 2002-06-15 Akim Demaille <akim@epita.fr>
18296 Complete and rationalize `useless thing' warnings.
18298 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18299 (symbol_tag_print): New.
18300 Use them everywhere in place of accessing directly the tag member.
18301 * src/gram.h, src/gram.c (rule_print): New.
18302 Use it where a rule used to be printed `by hand'.
18303 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18304 (reduce_grammar_tables): Report the useless rules.
18305 (reduce_print): Useless things are a warning, not an error.
18307 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18308 (Reduced Automaton, Underivable Rules): Adjust.
18309 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18310 * tests/conflicts.at (Unresolved SR Conflicts)
18311 (Solved SR Conflicts): Adjust.
18313 2002-06-15 Akim Demaille <akim@epita.fr>
18315 Let symbols have a location.
18317 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18319 Adjust all callers.
18320 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18321 Use location_t, not int.
18322 * src/symtab.c (symbol_check_defined): Take advantage of the
18324 * tests/regression.at (Invalid inputs): Adjust.
18326 2002-06-15 Akim Demaille <akim@epita.fr>
18328 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18329 (input): Don't try to initialize yylloc here, do it in the
18331 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18332 * src/gram.h (rule_t): Change line and action_line into location
18333 and action_location, of location_t type.
18334 Adjust all dependencies.
18335 * src/location.h, src/location.c (empty_location): New.
18336 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18337 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18338 (grammar_current_rule_symbol_append)
18339 (grammar_current_rule_action_append): Expect a location as argument.
18340 * src/reader.c (grammar_midrule_action): Adjust to attach an
18341 action's location as dummy symbol location.
18342 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18343 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18346 2002-06-14 Akim Demaille <akim@epita.fr>
18348 Grammar declarations may be found in the grammar section.
18350 * src/parse-gram.y (rules_or_grammar_declaration): New.
18351 (declarations): Each declaration may end with a semicolon, not
18353 (grammar_declaration): `"%union"'.
18354 (grammar): Branch to rules_or_grammar_declaration.
18356 2002-06-14 Akim Demaille <akim@epita.fr>
18358 * src/main.c (main): Invoke scanner_free.
18360 2002-06-14 Akim Demaille <akim@epita.fr>
18362 * src/output.c (m4_invoke): Extracted from...
18363 (output_skeleton): here.
18366 2002-06-14 Akim Demaille <akim@epita.fr>
18368 * src/parse-gram.y (directives, directive, gram)
18369 (grammar_directives, precedence_directives, precedence_directive):
18371 (declarations, declaration, grammar, grammar_declaration)
18372 (precedence_declaration, precedence_declarator): these.
18373 (symbol_declaration): New.
18375 2002-06-14 Akim Demaille <akim@epita.fr>
18377 * src/files.c (action_obstack): Remove, unused.
18378 (output_obstack): Remove it, and all its dependencies, as it is no
18380 * src/reader.c (epilogue_set): Build the epilogue in the
18382 * src/output.h, src/output.c (muscle_obstack): Move to...
18383 * src/muscle_tab.h, src/muscle_tab.h: here.
18384 (muscle_init): Initialize muscle_obstack.
18385 (muscle_free): New.
18386 * src/main.c (main): Call it.
18388 2002-06-14 Akim Demaille <akim@epita.fr>
18390 * src/location.h: New, extracted from...
18391 * src/reader.h: here.
18392 * src/Makefile.am (noinst_HEADERS): Merge into
18393 (bison_SOURCES): this.
18395 * src/parse-gram.y: Use location_t instead of Bison's.
18396 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18397 Use location_t instead of ints.
18399 2002-06-14 Akim Demaille <akim@epita.fr>
18401 * data/bison.simple, data/bison.c++: Be sure to restore the
18402 current #line when returning to the skeleton contents after having
18403 exposed the input file's #line.
18405 2002-06-12 Akim Demaille <akim@epita.fr>
18407 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18409 * tests/actions.at (Exotic Dollars): New.
18411 2002-06-12 Akim Demaille <akim@epita.fr>
18413 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18415 * tests/input.at (Torturing the Scanner): New.
18417 2002-06-11 Akim Demaille <akim@epita.fr>
18419 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18420 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18421 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18422 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18423 * src/reader.c (reader): Use it.
18425 2002-06-11 Akim Demaille <akim@epita.fr>
18427 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18428 Adjust all callers.
18429 (scanner_last_string_free): New.
18431 2002-06-11 Akim Demaille <akim@epita.fr>
18433 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18434 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18435 (last_string, YY_OBS_FREE): New.
18436 Use them when returning an ID.
18438 2002-06-11 Akim Demaille <akim@epita.fr>
18440 Have Bison grammars parsed by a Bison grammar.
18442 * src/reader.c, src/reader.h (prologue_augment): New.
18443 * src/reader.c (copy_definition): Remove.
18445 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18446 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18447 (grammar_current_rule_prec_set, grammar_current_rule_check)
18448 (grammar_current_rule_symbol_append)
18449 (grammar_current_rule_action_append): Export.
18450 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18451 (symbol_list_action_append): Remove.
18452 Hook the routines from reader.
18453 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18454 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18456 * src/reader.c (read_declarations): Remove, unused.
18458 * src/parse-gram.y: Handle the epilogue.
18459 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18460 (grammar_start_symbol_set): this.
18461 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18462 * src/reader.c (readgram): Remove, unused.
18463 (reader): Adjust to insert eoftoken and axiom where appropriate.
18465 * src/reader.c (copy_dollar): Replace with...
18466 * src/scan-gram.h (handle_dollar): this.
18467 * src/parse-gram.y: Remove `%thong'.
18469 * src/reader.c (copy_at): Replace with...
18470 * src/scan-gram.h (handle_at): this.
18472 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18475 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18478 * src/reader.h, src/reader.c (grammar_rule_end): New.
18480 * src/parse.y (current_type, current_class): New.
18481 Implement `%nterm', `%token' support.
18482 Merge `%term' into `%token'.
18483 (string_as_id): New.
18484 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18487 * src/parse-gram.y: Be sure to handle properly the beginning of
18490 * src/parse-gram.y: Handle %type.
18491 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18493 * src/parse-gram.y: More directives support.
18494 * src/options.c: No longer handle source directives.
18496 * src/parse-gram.y: Fix %output.
18498 * src/parse-gram.y: Handle %union.
18499 Use the prologue locations.
18500 * src/reader.c (parse_union_decl): Remove.
18502 * src/reader.h, src/reader.c (epilogue_set): New.
18503 * src/parse-gram.y: Use it.
18505 * data/bison.simple, data/bison.c++: b4_stype is now either not
18506 defined, then default to int, or to the contents of %union,
18507 without `union' itself.
18509 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18511 * src/output.c (actions_output): Don't output braces, as they are
18512 already handled by the scanner.
18514 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18515 characters to themselves.
18517 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18518 that the epilogue has a proper #line.
18520 * src/parse-gram.y: Handle precedence/associativity.
18522 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18524 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18525 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18526 at all to define terminals that cannot be emitted.
18528 * src/scan-gram.l: Escape M4 characters.
18530 * src/scan-gram.l: Working properly with escapes in user
18531 strings/characters.
18533 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18534 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18536 Use more modest sizes, as for the time being the parser does not
18537 release memory, and therefore the process swallows a huge amount
18540 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18541 stricter %token grammar.
18543 * src/symtab.h (associativity): Add `undef_assoc'.
18544 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18545 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18547 * tests/regression.at (Invalid %directive): Remove, as it is now
18549 (Invalid inputs): Adjust to the new error messages.
18550 (Token definitions): The new grammar doesn't allow too many
18553 * src/lex.h, src/lex.c: Remove.
18554 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18555 (copy_character, copy_string2, copy_string, copy_identifier)
18556 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18557 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18558 (parse_action): Remove.
18559 * po/POTFILES.in: Adjust.
18561 2002-06-11 Akim Demaille <akim@epita.fr>
18563 * src/reader.c (parse_action): Don't store directly into the
18564 rule's action member: return the action as a string.
18565 Don't require `rule_length' as an argument: compute it.
18566 (grammar_current_rule_symbol_append)
18567 (grammar_current_rule_action_append): New, eved out from
18569 Remove `action_flag', `rulelength', unused now.
18571 2002-06-11 Akim Demaille <akim@epita.fr>
18573 * src/reader.c (grammar_current_rule_prec_set).
18574 (grammar_current_rule_check): New, eved out from...
18576 Remove `xaction', `first_rhs': useless.
18577 * tests/input.at (Type clashes): New.
18578 * tests/existing.at (GNU Cim Grammar): Adjust.
18580 2002-06-11 Akim Demaille <akim@epita.fr>
18582 * src/reader.c (grammar_midrule_action): New, Eved out from
18585 2002-06-11 Akim Demaille <akim@epita.fr>
18587 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18589 (readgram): Use them as replacement of inlined code, crule and
18592 2002-06-11 Akim Demaille <akim@epita.fr>
18594 * src/reader.c (grammar_end, grammar_symbol_append): New.
18595 (readgram): Use them.
18596 Make the use of `p' as local as possible.
18598 2002-06-10 Akim Demaille <akim@epita.fr>
18600 GCJ's parser requires the tokens to be defined before the prologue.
18602 * data/bison.simple: Output the token definition before the user's
18604 * tests/regression.at (Braces parsing, Duplicate string)
18605 (Mixing %token styles): Check the output from bison.
18606 (Early token definitions): New.
18608 2002-06-10 Akim Demaille <akim@epita.fr>
18610 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18611 assigning twice the same user number to a token, so that we can
18613 * src/lex.c (lex): here.
18614 Also use `symbol_class_set' instead of hand written code.
18615 * src/reader.c (parse_assoc_decl): Likewise.
18617 2002-06-10 Akim Demaille <akim@epita.fr>
18619 * src/symtab.c, src/symtab.c (symbol_class_set)
18620 (symbol_user_token_number_set): New.
18621 * src/reader.c (parse_token_decl): Use them.
18622 Use a switch instead of ifs.
18623 Use a single argument.
18625 2002-06-10 Akim Demaille <akim@epita.fr>
18627 Remove `%thong' support as it is undocumented, unused, duplicates
18628 `%token's job, and creates useless e-mail traffic with people who
18629 want to know what it is, why it is undocumented, unused, and
18630 duplicates `%token's job.
18632 * src/reader.c (parse_thong_decl): Remove.
18633 * src/options.c (option_table): Remove "thong".
18634 * src/lex.h (tok_thong): Remove.
18636 2002-06-10 Akim Demaille <akim@epita.fr>
18638 * src/symtab.c, src/symtab.c (symbol_type_set)
18639 (symbol_precedence_set): New.
18640 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18641 (value_components_used): Remove, unused.
18643 2002-06-09 Akim Demaille <akim@epita.fr>
18645 Move symbols handling code out of the reader.
18647 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18648 (axiom): Move to...
18649 * src/symtab.h, src/symtab.c: here.
18651 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18652 * src/reader.c (startval): Rename as...
18653 * src/symtab.h, src/symtab.c (startsymbol): this.
18654 * src/reader.c: Adjust.
18656 * src/reader.c (symbol_check_defined, symbol_make_alias)
18657 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18658 (token_translations_init)
18660 * src/symtab.c: here.
18661 * src/reader.c (packsymbols): Move to...
18662 * src/symtab.h, src/symtab.c (symbols_pack): here.
18663 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18666 2002-06-03 Akim Demaille <akim@epita.fr>
18668 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18671 2002-06-03 Akim Demaille <akim@epita.fr>
18673 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18674 structs with non literals.
18675 * src/scan-skel.l: never-interactive.
18676 * src/conflicts.c (enum conflict_resolution_e): No trailing
18678 * src/getargs.c (usage): Split long literal strings.
18679 Reported by Hans Aberg.
18681 2002-05-28 Akim Demaille <akim@epita.fr>
18683 * data/bison.c++: Use C++ ostreams.
18684 (cdebug_): New member.
18686 2002-05-28 Akim Demaille <akim@epita.fr>
18688 * src/output.c (output_skeleton): Be sure to allocate enough room
18689 for `/' _and_ for `\0' in full_skeleton.
18691 2002-05-28 Akim Demaille <akim@epita.fr>
18693 * data/bison.c++: Catch up with bison.simple:
18694 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18695 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18696 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18697 and popping traces.
18699 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18701 * src/output.c (output_skeleton): Put an explicit path in front of
18702 the skeleton file name, rather than relying on the -I directory,
18703 to partially alleviate effects of having a skeleton file lying around
18704 in the current directory.
18706 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18708 * src/conflicts.c (log_resolution): Correct typo:
18709 obstack_printf should be obstack_fgrow1.
18711 2002-05-26 Akim Demaille <akim@epita.fr>
18713 * src/state.h (state_t): `solved_conflicts' is a new member.
18714 * src/LR0.c (new_state): Set it to 0.
18715 * src/conflicts.h, src/conflicts.c (print_conflicts)
18716 (free_conflicts, solve_conflicts): Rename as...
18717 (conflicts_print, conflicts_free, conflicts_solve): these.
18719 * src/conflicts.c (enum conflict_resolution_e)
18720 (solved_conflicts_obstack): New, used by...
18721 (log_resolution): this.
18722 Adjust to attach the conflict resolution to each state.
18723 Complete the description with the precedence/associativity
18725 (resolve_sr_conflict): Adjust.
18726 * src/print.c (print_state): Output its solved_conflicts.
18727 * tests/conflicts.at (Unresolved SR Conflicts)
18728 (Solved SR Conflicts): Exercise --report=all.
18730 2002-05-26 Akim Demaille <akim@epita.fr>
18732 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18733 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18734 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18735 (token_number_t, item_number_as_token_number)
18736 (token_number_as_item_number, muscle_insert_token_number_table):
18738 (symbol_number_t, item_number_as_symbol_number)
18739 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18740 these, since it is more appropriate.
18742 2002-05-26 Akim Demaille <akim@epita.fr>
18744 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18746 * data/bison.simple (yystos) [YYDEBUG]: New.
18747 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18749 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18751 2002-05-25 Akim Demaille <akim@epita.fr>
18753 * doc/bison.texinfo (Debugging): Split into...
18754 (Tracing): this new section, its former contents, and...
18755 (Understanding): this new section.
18756 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18758 (report_flag): this.
18759 Adjust all dependencies.
18760 (report_args, report_types, report_argmatch): New.
18761 (usage, getargs): Report/support -r, --report.
18763 (struct option_table_struct): Rename as..,
18764 (struct option_table_s): this.
18765 Rename the `set_flag' member to `flag' to match with getopt_long's
18767 * src/options.c (option_table): Split verbose into an entry for
18768 %verbose, and another for --verbose.
18769 Support --report/-r, so remove -r from the obsolete --raw.
18770 * src/print.c: Attach full item sets and lookaheads reports to
18771 report_flag instead of trace_flag.
18772 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18774 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18775 and Paul Eggert <eggert@twinsun.com>
18777 * data/bison.simple (yyparse): Correct error handling to conform to
18778 POSIX and yacc. Specifically, after syntax error is discovered,
18779 do not reduce further before shifting the error token.
18780 Clean up the code a bit by removing the labels yyerrdefault,
18781 yyerrhandle, yyerrpop.
18782 * NEWS: Document the above.
18784 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18786 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18787 type; it isn't always big enough, since it doesn't necessarily
18788 include non-terminals.
18789 (yytranslate): Expand definition of yy_token_number_type, so that
18790 the latter can be removed.
18791 (yy_token_number_type): Remove, only one use.
18792 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18793 don't use TokenNumberType as element type.
18795 * tests/regression.at: Modify expected output to agree with change
18796 to yyr1 and yytranslate.
18798 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18800 * src/reader.c (parse_action): Use copy_character instead of
18803 2002-05-13 Akim Demaille <akim@epita.fr>
18805 * tests/regression.at (Token definitions): Prototype yylex and
18808 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18810 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
18811 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18813 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18815 2002-05-07 Akim Demaille <akim@epita.fr>
18817 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18818 avoid GCC warnings.
18820 2002-05-07 Akim Demaille <akim@epita.fr>
18824 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18825 over the RHS of each rule.
18826 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18827 * src/state.h (state_t): Member `nitems' is unsigned short.
18828 * src/LR0.c (get_state): Adjust.
18829 * src/reader.c (packgram): Likewise.
18830 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18832 (muscle_insert_int_table): Remove, unused.
18833 (prepare_rules): Remove `max'.
18835 2002-05-06 Akim Demaille <akim@epita.fr>
18837 * src/closure.c (print_firsts): Display of the symbol tags.
18838 (bitmatrix_print): Move to...
18839 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18841 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18843 2002-05-06 Akim Demaille <akim@epita.fr>
18845 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18848 2002-05-06 Akim Demaille <akim@epita.fr>
18850 * src/LR0.c (new_state, get_state): Instead of using the global
18851 `kernel_size' and `kernel_base', have two new arguments:
18852 `core_size' and `core'.
18855 2002-05-06 Akim Demaille <akim@epita.fr>
18857 * src/reader.c (packgram): No longer end `ritem' with a 0
18858 sentinel: it is not used.
18860 2002-05-05 Akim Demaille <akim@epita.fr>
18862 New experimental feature: display the lookaheads in the report and
18865 * src/print (print_core): When --trace-flag, display the rules
18867 * src/print_graph.c (print_core): Likewise.
18868 Swap the arguments.
18871 2002-05-05 Akim Demaille <akim@epita.fr>
18873 * tests/torture.at (Many lookaheads): New test.
18875 2002-05-05 Akim Demaille <akim@epita.fr>
18877 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18878 (GENERATE_MUSCLE_INSERT_TABLE): this.
18879 (output_int_table, output_unsigned_int_table, output_short_table)
18880 (output_token_number_table, output_item_number_table): Replace with...
18881 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18882 (muscle_insert_short_table, muscle_insert_token_number_table)
18883 (muscle_insert_item_number_table): these.
18884 Adjust all callers.
18885 (prepare_tokens): Don't free `translations', since...
18886 * src/reader.h, src/reader.c (grammar_free): do it.
18888 * src/gram.h, src/gram.c (grammar_free): here.
18889 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18892 2002-05-05 Akim Demaille <akim@epita.fr>
18894 * src/output.c (output_unsigned_int_table): New.
18895 (prepare_rules): `i' is unsigned.
18896 `prhs', `rline', `r2' are unsigned int.
18897 Rename muscle `rhs_number_max' as `rhs_max'.
18898 Output muscles `prhs_max', `rline_max', and `r2_max'.
18900 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18901 to compute types instead of constant types.
18902 * tests/regression.at (Web2c Actions): Adjust.
18904 2002-05-04 Akim Demaille <akim@epita.fr>
18906 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18907 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18908 Adjust dependencies.
18909 * src/output.c (token_definitions_output): Be sure not to output a
18910 `#define 'a'' when fed with `%token 'a' "a"'.
18911 * tests/regression.at (Token definitions): New.
18913 2002-05-03 Paul Eggert <eggert@twinsun.com>
18915 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18918 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18920 * Makefile.am (SUBDIRS): Remove intl.
18921 (EXTRA_DIST): Add config/config.rpath.
18923 2002-05-03 Akim Demaille <akim@epita.fr>
18925 * data/bison.simple (m4_if): Don't output empty enums.
18926 And actually, output valid enum definitions :(.
18928 2002-05-03 Akim Demaille <akim@epita.fr>
18930 * configure.bat: Remove, completely obsolete.
18931 * Makefile.am (EXTRA_DIST): Adjust.
18932 Don't distribute config.rpath...
18933 * config/Makefile.am (EXTRA_DIST): Do it.
18935 2002-05-03 Akim Demaille <akim@epita.fr>
18937 * configure.in (GETTEXT_VERSION): New.
18938 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18940 2002-05-03 Akim Demaille <akim@epita.fr>
18942 * data/bison.simple (b4_token_enum): New.
18943 (b4_token_defines): Use it to output tokens both as #define and
18945 Suggested by Paul Eggert.
18946 * src/output.c (token_definitions_output): Don't output spurious
18949 2002-05-03 Akim Demaille <akim@epita.fr>
18951 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18953 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
18955 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18956 Update the stack class, give a try to deque as the default container.
18958 2002-05-02 Akim Demaille <akim@epita.fr>
18960 * data/bison.simple (yyparse): Do not implement @$ = @1.
18961 (YYLLOC_DEFAULT): Adjust to do it.
18962 * doc/bison.texinfo (Location Default Action): Fix.
18964 2002-05-02 Akim Demaille <akim@epita.fr>
18966 * src/reader.c (parse_braces): Merge into...
18967 (parse_action): this.
18969 2002-05-02 Akim Demaille <akim@epita.fr>
18971 * configure.in (ALL_LINGUAS): Remove.
18972 * po/LINGUAS, hr.po: New.
18974 2002-05-02 Akim Demaille <akim@epita.fr>
18976 Remove the so called hairy (semantic) parsers.
18978 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18979 * src/gram.h, src/gram.c (semantic_parser): Remove.
18980 (rule_t): Remove the guard and guard_line members.
18981 * src/lex.h (token_t): remove tok_guard.
18982 * src/options.c (option_table): Remove %guard and %semantic_parser
18984 * src/output.c, src/output.h (guards_output): Remove.
18986 (token_definitions_output): Don't output the `T'
18988 (output_skeleton): Don't output the guards.
18989 * src/files.c, src/files.c (attrsfile): Remove.
18990 * src/reader.c (symbol_list): Remove the guard and guard_line
18992 Adjust dependencies.
18993 (parse_guard): Remove.
18994 * data/bison.hairy: Remove.
18995 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18998 2002-05-02 Akim Demaille <akim@epita.fr>
19000 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
19001 (parse_guard): Rename the formal argument `stack_offset' as
19002 `rule_length', which is more readable.
19004 (copy_at, copy_dollar): Instead of outputting the hard coded
19005 values of $$, $n and so forth, output invocation to b4_lhs_value,
19006 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
19007 Note: this patch partially drops `semantic-parser' support: it
19008 always does `rule_length - n', where semantic parsers ought to
19010 * data/bison.simple, data/bison.c++ (b4_lhs_value)
19011 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
19013 2002-05-02 Akim Demaille <akim@epita.fr>
19015 * configure.in (AC_INIT): Bump to 1.49b.
19016 (AM_INIT_AUTOMAKE): Short invocation.
19018 2002-05-02 Akim Demaille <akim@epita.fr>
19022 2002-05-01 Akim Demaille <akim@epita.fr>
19024 * src/skeleton.h: Remove.
19026 2002-05-01 Akim Demaille <akim@epita.fr>
19028 * src/skeleton.h: Fix the #endif.
19029 Reported by Magnus Fromreide.
19031 2002-04-26 Paul Eggert <eggert@twinsun.com>
19033 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19034 Define if we define YYSTYPE and YYLTYPE, respectively.
19035 (YYCOPY): Fix [] quoting problem in the non-GCC case.
19037 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
19039 * src/scan-skel.l: Postprocess quadrigraphs.
19041 * src/reader.c (copy_character): New function, used to output
19042 single characters while replacing `[' and `]' with quadrigraphs, to
19043 avoid troubles with M4 quotes.
19044 (copy_comment): Output characters with copy_character.
19045 (read_additionnal_code): Likewise.
19046 (copy_string2): Likewise.
19047 (copy_definition): Likewise.
19049 * tests/calc.at: Exercise M4 quoting.
19051 2002-04-25 Akim Demaille <akim@epita.fr>
19053 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19054 between `!' and the command.
19055 Reported by Paul Eggert.
19057 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
19059 * tests/calc.at: Exercise prologue splitting.
19061 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19062 `b4_post_prologue' instead of `b4_prologue'.
19064 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19066 (output): Free pre_prologue_obstack and post_prologue_obstack.
19067 * src/files.h, src/files.c (attrs_obstack): Remove.
19068 (pre_prologue_obstack, post_prologue_obstack): New.
19069 * src/reader.c (copy_definition): Add a parameter to specify the
19070 obstack to fill, instead of using attrs_obstack unconditionally.
19071 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19072 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19074 2002-04-23 Paul Eggert <eggert@twinsun.com>
19076 * data/bison.simple: Remove unnecessary commentary and white
19077 space differences from 1_29-branch.
19078 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19080 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19081 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19082 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19083 constructors or destructors.
19085 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19087 2002-04-23 Akim Demaille <akim@epita.fr>
19089 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19090 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19091 location with columns.
19092 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19093 All reported by Paul Eggert.
19095 2002-04-22 Akim Demaille <akim@epita.fr>
19097 * src/reduce.c (dump_grammar): Move to...
19098 * src/gram.h, src/gram.c (grammar_dump): here.
19099 Be sure to separate long item numbers.
19100 Don't read the members of a rule's prec if its nil.
19102 2002-04-22 Akim Demaille <akim@epita.fr>
19104 * src/output.c (table_size, table_grow): New.
19105 (MAXTABLE): Remove, replace uses with table_size.
19106 (pack_vector): Instead of dying when the table is too big, grow it.
19108 2002-04-22 Akim Demaille <akim@epita.fr>
19110 * data/bison.simple (yyr1): Its type is that of a token number.
19111 * data/bison.c++ (r1_): Likewise.
19112 * tests/regression.at (Web2c Actions): Adjust.
19114 2002-04-22 Akim Demaille <akim@epita.fr>
19116 * src/reader.c (token_translations_init): 256 is now the default
19117 value for the error token, i.e., it will be assigned another
19118 number if the user assigned 256 to one of her tokens.
19119 (reader): Don't force 256 to error.
19120 * doc/bison.texinfo (Symbols): Adjust.
19121 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19122 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19123 etc. instead of 10, 20, 30 (which was used to `jump' over error
19124 (256) and undefined (2)).
19126 2002-04-22 Akim Demaille <akim@epita.fr>
19128 Propagate more token_number_t.
19130 * src/gram.h (token_number_as_item_number)
19131 (item_number_as_token_number): New.
19132 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19133 Use it to create output_item_number_table and
19134 output_token_number_table.
19135 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19136 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19137 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19138 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19140 2002-04-22 Akim Demaille <akim@epita.fr>
19142 * src/output.h, src/output.c (get_lines_number): Remove.
19144 2002-04-19 Akim Demaille <akim@epita.fr>
19146 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19148 (Debugging): More details about enabling the debugging features.
19149 (Table of Symbols): Describe $$, $n, @$, and @n.
19150 Suggested by Tim Josling.
19152 2002-04-19 Akim Demaille <akim@epita.fr>
19154 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19156 2002-04-10 Akim Demaille <akim@epita.fr>
19158 * src/system.h: Rely on HAVE_LIMITS_H.
19159 Suggested by Paul Eggert.
19161 2002-04-09 Akim Demaille <akim@epita.fr>
19163 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19164 full stderr, and strip it according to the bison options, instead
19165 of composing the error message from different bits.
19166 This makes it easier to check for several error messages.
19167 Adjust all the invocations.
19168 Add an invocation exercising the error token.
19169 Add an invocation demonstrating a stupid error message.
19170 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19172 Error message are for stderr, not stdout.
19174 2002-04-09 Akim Demaille <akim@epita.fr>
19176 * src/gram.h, src/gram.c (error_token_number): Remove, use
19178 * src/reader.c (reader): Don't specify the user token number (2)
19179 for $undefined, as it uselessly prevents using it.
19180 * src/gram.h (token_number_t): Move to...
19181 * src/symtab.h: here.
19182 (state_t.number): Is a token_number_t.
19183 * src/print.c, src/reader.c: Use undeftoken->number instead of
19185 (Even though this 2 is not the same as above: the number of the
19186 undeftoken remains being 2, it is its user token number which
19188 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19189 `user_token_number_max'.
19190 Output `undef_token_number'.
19191 * data/bison.simple, data/bison.c++: Use them.
19192 Be sure to map invalid yylex return values to
19193 `undef_token_number'. This saves us from gratuitous SEGV.
19195 * tests/conflicts.at (Solved SR Conflicts)
19196 (Unresolved SR Conflicts): Adjust.
19197 * tests/regression.at (Web2c Actions): Adjust.
19199 2002-04-08 Akim Demaille <akim@epita.fr>
19201 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19203 Remove the duplicate `typedefs'.
19204 (RhsNumberType): Fix the declaration and various other typos.
19206 * data/bison.simple: Use __ofile__.
19207 * src/scan-skel.l: Handle __ofile__.
19209 2002-04-08 Akim Demaille <akim@epita.fr>
19211 * src/gram.h (item_number_t): New, the type of item numbers in
19212 RITEM. Note that it must be able to code symbol numbers as
19213 positive number, and the negation of rule numbers as negative
19215 Adjust all dependencies (pretty many).
19216 * src/reduce.c (rule): Remove this `short *' pointer: use
19218 * src/system.h (MINSHORT, MAXSHORT): Remove.
19219 Include `limits.h'.
19220 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19221 (shortcpy): Remove.
19222 (MAXTABLE): Move to...
19223 * src/output.c (MAXTABLE): here.
19224 (prepare_rules): Use output_int_table to output rhs.
19225 * data/bison.simple, data/bison.c++: Adjust.
19226 * tests/torture.at (Big triangle): Move the limit from 254 to
19228 * tests/regression.at (Web2c Actions): Ajust.
19230 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19231 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19232 passes, but produces negative #line number, once fixed, GCC is
19233 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19235 * src/state.h (state_h): Code input lines on ints, not shorts.
19237 2002-04-08 Akim Demaille <akim@epita.fr>
19239 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19240 and then the grammar.
19242 2002-04-08 Akim Demaille <akim@epita.fr>
19244 * src/system.h: No longer using strndup.
19246 2002-04-07 Akim Demaille <akim@epita.fr>
19248 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19249 * src/output.c (output_table_data): Return the longest number.
19250 (prepare_tokens): Output `token_number_max').
19251 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19253 Use them to define yy_token_number_type/TokenNumberType.
19254 Use this type for yytranslate.
19255 * tests/torture.at (Big triangle): Push the limit from 124 to
19257 * tests/regression.at (Web2c Actions): Adjust.
19259 2002-04-07 Akim Demaille <akim@epita.fr>
19261 * tests/torture.at (Big triangle): New.
19262 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19263 * tests/existing.at: here.
19265 2002-04-07 Akim Demaille <akim@epita.fr>
19267 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19269 Adjust dependencies.
19271 2002-04-07 Akim Demaille <akim@epita.fr>
19273 * src/reader.c: Normalize increments to prefix form.
19275 2002-04-07 Akim Demaille <akim@epita.fr>
19277 * src/reader.c, symtab.c: Remove debugging code.
19279 2002-04-07 Akim Demaille <akim@epita.fr>
19281 Rename all the `bucket's as `symbol_t'.
19283 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19284 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19285 * src/symtab.c, src/symtab.h (bucket): Rename as...
19287 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19288 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19289 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19290 (buckets_new, buckets_free, buckets_do): Rename as...
19291 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19292 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19293 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19294 (symbols_new, symbols_free, symbols_do): these.
19296 2002-04-07 Akim Demaille <akim@epita.fr>
19298 Use lib/hash for the symbol table.
19300 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19302 * src/lex.c (lex): Set the `number' member of new terminals.
19303 * src/reader.c (bucket_check_defined, bucket_make_alias)
19304 (bucket_check_alias_consistence, bucket_translation): New.
19305 (reader, grammar_free, readgram, token_translations_init)
19306 (packsymbols): Adjust.
19307 (reader): Number the predefined tokens.
19308 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19309 for predefined tokens.
19310 * src/symtab.h (bucket): Remove all the hash table related
19312 * src/symtab.c (symtab): Replace by...
19313 (bucket_table): this.
19314 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19315 (buckets_new, buckets_do): New.
19317 2002-04-07 Akim Demaille <akim@epita.fr>
19319 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19320 (start_symbol, max_user_token_number, semantic_parser)
19321 (error_token_number): Initialize.
19322 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19325 (errtoken, eoftoken, undeftoken, axiom): Extern.
19327 2002-04-07 Akim Demaille <akim@epita.fr>
19329 * src/gram.h (rule_s): prec and precsym are now pointers
19330 to the bucket giving the priority/associativity.
19331 Member `associativity' removed: useless.
19332 * src/reduce.c, src/conflicts.c: Adjust.
19334 2002-04-07 Akim Demaille <akim@epita.fr>
19336 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19337 Properly escape the symbols' TAG when outputting them.
19339 2002-04-07 Akim Demaille <akim@epita.fr>
19341 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19343 2002-04-07 Akim Demaille <akim@epita.fr>
19345 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19346 (LArule): this, which is an array to rule_t*.
19347 * src/print.c, src/conflicts.c: Adjust.
19349 2002-04-07 Akim Demaille <akim@epita.fr>
19351 * src/gram.h (rule_t): Rename `number' as `user_number'.
19352 `number' is a new member.
19353 Adjust dependencies.
19354 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19356 2002-04-07 Akim Demaille <akim@epita.fr>
19358 As a result of the previous patch, it is no longer needed
19359 to reorder ritem itself.
19361 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19363 2002-04-07 Akim Demaille <akim@epita.fr>
19365 Be sure never to walk through RITEMS, but use only data related to
19366 the rules themselves. RITEMS should be banished.
19368 * src/output.c (output_token_translations): Rename as...
19369 (prepare_tokens): this.
19370 In addition to `translate', prepare the muscles `tname' and
19371 `toknum', which were handled by...
19372 (output_rule_data): this.
19373 Remove, and move the remainder of its outputs into...
19374 (prepare_rules): this new routines, which also merges content from
19375 (output_gram): this.
19376 (prepare_rules): Be sure never to walk through RITEMS.
19377 (output_stos): Rename as...
19378 (prepare_stos): this.
19379 (output): Always invoke prepare_states, after all, just don't use it
19380 in the output if you don't need it.
19382 2002-04-07 Akim Demaille <akim@epita.fr>
19384 * src/LR0.c (new_state): Display `nstates' as the name of the
19385 newly created state.
19386 Adjust to initialize first_state and last_state if needed.
19387 Be sure to distinguish the initial from the final state.
19388 (new_states): Create the itemset of the initial state, and use
19390 * src/closure.c (closure): Now that the initial state has its
19391 items properly set, there is no need for a special case when
19392 creating `ruleset'.
19394 As a result, now the rule 0, reducing to $axiom, is visible in the
19395 outputs. Adjust the test suite.
19397 * tests/conflicts.at (Solved SR Conflicts)
19398 (Unresolved SR Conflicts): Adjust.
19399 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19400 * tests/conflicts.at (S/R in initial): New.
19402 2002-04-07 Akim Demaille <akim@epita.fr>
19404 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19405 the RHS of the rules.
19406 * src/output.c (output_gram): Likewise.
19408 2002-04-07 Akim Demaille <akim@epita.fr>
19410 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19412 Adjust all dependencies.
19413 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19414 `number' of the buckets too.
19415 * src/gram.h: Include `symtab.h'.
19416 (associativity): Move to...
19417 * src/symtab.h: here.
19418 No longer include `gram.h'.
19420 2002-04-07 Akim Demaille <akim@epita.fr>
19422 * src/gram.h, src/gram.c (rules_rhs_length): New.
19423 (ritem_longest_rhs): Use it.
19424 * src/gram.h (rule_t): `number' is a new member.
19425 * src/reader.c (packgram): Set it.
19426 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19427 the end of `rules', and count them out of `nrules'.
19428 (reduce_output, dump_grammar): Adjust.
19429 * src/print.c (print_grammar): It is no longer needed to check for
19430 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19431 * tests/reduce.at (Reduced Automaton): New test.
19433 2002-04-07 Akim Demaille <akim@epita.fr>
19435 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19436 lacking `+ 1' to nrules, Bison reported as useless a token if it
19437 was used solely to set the precedence of the last rule...
19439 2002-04-07 Akim Demaille <akim@epita.fr>
19441 * data/bison.c++, data/bison.simple: Don't output the current file
19442 name in #line, to avoid useless diffs between two identical
19443 outputs under different names.
19445 2002-04-07 Akim Demaille <akim@epita.fr>
19447 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19448 Normalize loops to using `< nrules + 1', not `<= nrules'.
19450 2002-04-07 Akim Demaille <akim@epita.fr>
19454 2002-04-07 Akim Demaille <akim@epita.fr>
19456 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19457 bucket.value as bucket.number.
19459 2002-04-07 Akim Demaille <akim@epita.fr>
19461 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19462 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19463 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19464 RHS, instead of being an index in RITEMS.
19466 2002-04-04 Paul Eggert <eggert@twinsun.com>
19468 * doc/bison.texinfo: Update copyright date.
19469 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19470 (Symbols): Warn about running Bison in one character set,
19471 but compiling and/or running in an incompatible one.
19472 Warn about character code 256, too.
19474 2002-04-03 Paul Eggert <eggert@twinsun.com>
19476 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19477 YYERROR_VERBOSE is nonzero, not whether it is defined.
19479 Merge changes from bison-1_29-branch.
19481 2002-03-20 Paul Eggert <eggert@twinsun.com>
19483 Merge fixes from Debian bison_1.34-1.diff.
19485 * configure.in (AC_PREREQ): 2.53.
19487 2002-03-20 Akim Demaille <akim@epita.fr>
19489 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19491 2002-03-19 Paul Eggert <eggert@twinsun.com>
19493 * src/bison.simple (YYCOPY): New macro.
19494 (YYSTACK_RELOCATE): Use it.
19495 Remove Type arg; no longer needed. All callers changed.
19496 (yymemcpy): Remove; no longer needed.
19498 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19499 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19501 2002-03-19 Akim Demaille <akim@epita.fr>
19503 Test and fix the #line outputs.
19505 * tests/atlocal.at (GCC): New.
19506 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
19507 (Prologue synch line, %union synch line, Postprologue synch line)
19508 (Action synch line, Epilogue synch line): New tests.
19509 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19510 * data/bison.simple, data/bison.c++: Use it.
19512 2002-03-19 Akim Demaille <akim@epita.fr>
19514 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19515 (Solved SR Conflicts, %expect not enough, %expect right)
19516 (%expect too much): Move to...
19517 * tests/conflicts.at: this new file.
19519 2002-03-19 Akim Demaille <akim@epita.fr>
19521 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19522 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19523 that we can move to enums for instance.
19524 * src/output.c (token_definitions_output): Output a list of
19525 `token-name, token-number' instead of the #define.
19526 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19528 2002-03-14 Akim Demaille <akim@epita.fr>
19530 Use Gettext 0.11.1.
19532 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
19534 * data/bison.c++: Make the user able to add members to the generated
19535 parser by subclassing.
19537 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
19539 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19541 Reported by Nicolas Tisserand and Nicolas Burrus.
19543 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19545 * src/reader.c: Warn about lacking semi-colons, do not complain.
19547 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19549 * data/bison.c++: Remove a debug line.
19551 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19553 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19554 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19555 provide a default implementation.
19557 2002-03-04 Akim Demaille <akim@epita.fr>
19559 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19560 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19561 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19562 * tests/semantic.at (Parsing Guards): Similarly.
19563 * src/reader.at (readgram): Complain if the last rule is not ended
19566 2002-03-04 Akim Demaille <akim@epita.fr>
19568 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19569 * src/closure.c: here.
19570 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19572 * src/warshall.h, src/warshall.c: Remove.
19573 * tests/sets.at (Broken Closure): Adjust.
19575 2002-03-04 Akim Demaille <akim@epita.fr>
19577 * src/output.c (output_skeleton): tempdir is const.
19578 bytes_read is unused.
19580 2002-03-04 Akim Demaille <akim@epita.fr>
19582 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19583 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19585 From Michael Hayes.
19587 2002-03-04 Akim Demaille <akim@epita.fr>
19589 * src/closure.c (closure): `r' is unused.
19591 2002-03-04 Akim Demaille <akim@epita.fr>
19593 * tests/sets.at (Broken Closure): Add the ending `;'.
19594 * src/reader.at (readgram): Complain if a rule is not ended with a
19597 2002-03-04 Akim Demaille <akim@epita.fr>
19599 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19600 (count_sr_conflicts): Use bitset_count.
19601 * src/reduce.c (inaccessable_symbols): Ditto.
19602 (bits_size): Remove.
19603 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19605 2002-03-04 Akim Demaille <akim@epita.fr>
19607 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19608 * src/reduce.c: Remove the `bitset_zero's following the
19609 `bitset_create's, as now it is performed by the latter.
19611 2002-03-04 Akim Demaille <akim@epita.fr>
19613 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19614 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19615 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19616 latest sources from Michael.
19618 2002-03-04 Akim Demaille <akim@epita.fr>
19620 * src/output.c (output): Don't free the grammar.
19621 * src/reader.c (grammar_free): New.
19622 * src/main.c (main): Call it and don't free symtab here.
19624 2002-03-04 Akim Demaille <akim@epita.fr>
19626 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19628 Reported by Benoit Perrot.
19630 2002-03-04 Akim Demaille <akim@epita.fr>
19632 Use bitset operations when possible, not loops over bits.
19634 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19636 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19637 * src/reduce.c (useless_nonterminals): Formatting changes.
19638 * src/warshall.c (TC): Use bitset_or.
19640 2002-03-04 Akim Demaille <akim@epita.fr>
19642 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19643 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19646 2002-03-04 Akim Demaille <akim@epita.fr>
19648 * src/lalr.c (F): Now a bitset*.
19649 Adjust all dependencies.
19651 2002-03-04 Akim Demaille <akim@epita.fr>
19653 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19654 Adjust all dependencies.
19656 2002-03-04 Akim Demaille <akim@epita.fr>
19658 * src/L0.c, src/LR0.h (nstates): Be size_t.
19659 Adjust comparisons (signed vs unsigned).
19660 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19662 Adjust all dependencies.
19664 2002-03-04 Akim Demaille <akim@epita.fr>
19666 * src/closure.c (firsts): Now, also a bitset.
19667 Adjust all dependencies.
19668 (varsetsize): Remove, now unused.
19669 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19671 2002-03-04 Akim Demaille <akim@epita.fr>
19673 * src/print.c: Convert to use bitset.h, not hand coded iterations
19676 2002-03-04 Akim Demaille <akim@epita.fr>
19678 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19680 2002-03-04 Akim Demaille <akim@epita.fr>
19682 * src/closure.c (ruleset): Be a bitset.
19683 (rulesetsize): Remove.
19685 2002-03-04 Akim Demaille <akim@epita.fr>
19687 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19688 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19689 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19690 * src/closure.c (fderives): Be an array of bitsets.
19692 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
19694 * data/bison.c++: Merge the two generated headers. Insert a copyright
19695 notice in each output file.
19697 2002-02-28 Akim Demaille <akim@epita.fr>
19699 * data/bison.c++: Copy the prologue of bison.simple to fetch
19700 useful M4 definitions, such as b4_header_guard.
19702 2002-02-25 Akim Demaille <akim@epita.fr>
19704 * src/getargs.c (version): Give the name of the authors, and use a
19705 translator friendly scheme for the bgr
19708 2002-02-25 Akim Demaille <akim@epita.fr>
19710 * src/output.c (header_output): Remove, now handled completely via
19713 2002-02-25 Akim Demaille <akim@epita.fr>
19715 * m4/m4.m4: New, from CVS Autoconf.
19716 * configure.in: Invoke it.
19717 * src/output.c (output_skeleton): Use its result instead of the
19720 2002-02-25 Akim Demaille <akim@epita.fr>
19722 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19724 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19725 * src/output.c (output_skeleton): Use mkstemp to create a real
19727 Move the filling of `skeleton' and its muscle to...
19729 (output): Move the definition of the prologue muscle to...
19731 * src/system.h (DEFAULT_TMPDIR): New.
19733 2002-02-14 Paul Eggert <eggert@twinsun.com>
19735 Remove the support for C++ namespace cleanliness; it was
19736 causing more problems than it was curing, since it didn't work
19737 properly on some nonstandard C++ compilers. This can wait
19738 for a proper C++ parser.
19740 * NEWS: Document this.
19741 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19742 of C++, as it's treated like C now.
19743 * src/bison.simple (YYSTD): Remove.
19744 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19745 Treat C++ just like Standard C instead of trying to support
19746 namespace cleanliness.
19748 2002-02-14 Akim Demaille <akim@epita.fr>
19750 * tests/regression.at (else): Adjust to Andreas' change.
19752 2002-02-14 Akim Demaille <akim@epita.fr>
19754 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19756 2002-02-13 Andreas Schwab <schwab@suse.de>
19758 * src/output.c (output_rule_data): Don't output NULL, it might
19759 not be defined yet.
19761 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
19763 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19764 (Copyright notice): Update.
19766 2002-02-11 Akim Demaille <akim@epita.fr>
19768 * tests/regression.at (%nonassoc and eof): Don't include
19769 nonportable headers.
19771 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
19773 * data/bison.c++: Correct error recovery. Make the user able to
19774 initialize the starting location.
19776 2002-02-07 Akim Demaille <akim@epita.fr>
19778 * tests/input.at: New.
19780 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19782 * data/bison.c++: Replace some direct m4 expansions by constants. Be
19783 more consistent when naming methods and variables. Put preprocessor
19784 directives around tables only needed for debugging.
19786 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19788 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19790 (yy::b4_name::parse): Use print_.
19792 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19794 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19796 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19798 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19800 (yy::b4_name::parse): Build verbose error messages, and use error_.
19802 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19804 * data/bison.c++: Fix m4 quoting in comments.
19806 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19808 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19809 not expanded by m4.
19811 2002-02-05 Akim Demaille <akim@epita.fr>
19813 * data/bison.c++: Adjust to the M4 back end.
19814 More is certainly needed.
19816 2002-02-05 Akim Demaille <akim@epita.fr>
19818 Give a try to M4 as a back end.
19820 * lib/readpipe.c: New, from wdiff.
19821 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19823 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19824 specific values. Now it is m4 that performs the lookup.
19825 * src/parse-skel.y: Remove.
19826 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19827 * src/output.c (actions_output, guards_output)
19828 (token_definitions_output): No longer keeps track of the output
19829 line number, hence remove the second argument.
19830 (guards_output): Check against the guard member of a rule, not the
19833 (output_skeleton): Don't look for the skeleton location, let m4 do
19835 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19837 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19838 (prepare): Given that for the time being changesyntax is not
19839 usable in M4, rename the muscles using `-' to `_'.
19840 Define `defines_flag', `output_parser_name' and `output_header_name'.
19841 * src/output.h (actions_output, guards_output)
19842 (token_definitions_output): Adjust prototypes.
19843 * src/scan-skel.l: Instead of scanning the skeletons, it now
19844 processes the output of m4: `__oline__' and `#output'.
19845 * data/bison.simple: Adjust to be used by M4(sugar).
19846 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19848 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19849 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19850 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19851 shamelessly stolen from CVS Autoconf.
19853 2002-02-05 Akim Demaille <akim@epita.fr>
19855 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19856 * configure.in: Check for the declarations of free and malloc.
19857 * src/muscle_tab.c: Adjust.
19859 2002-02-05 Akim Demaille <akim@epita.fr>
19861 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19862 which have no values.
19864 2002-02-05 Akim Demaille <akim@epita.fr>
19866 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19869 2002-01-29 Paul Eggert <eggert@twinsun.com>
19871 * src/bison.simple (YYSIZE_T): Do not define merely because
19872 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19873 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19875 2002-01-27 Akim Demaille <akim@epita.fr>
19877 Fix `%nonassoc and eof'.
19879 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19880 which were not properly copied! Replace
19881 memcpy (res->errs, src->errs, src->nerrs);
19883 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19885 * tests/regression.at (%nonassoc and eof): Adjust to newest
19886 Autotest: `.' is not in the PATH.
19888 2002-01-27 Akim Demaille <akim@epita.fr>
19890 * tests/sets.at (AT_EXTRACT_SETS): New.
19891 (Nullable): Use it.
19894 2002-01-26 Akim Demaille <akim@epita.fr>
19896 * tests/actions.at, tests/calc.at, tests/headers.at,
19897 * tests/torture.at: Adjust to the newest Autotest which no longer
19898 forces `.' in the PATH.
19900 2002-01-25 Akim Demaille <akim@epita.fr>
19902 * tests/regression.at (%nonassoc and eof): New.
19903 Suggested by Robert Anisko.
19905 2002-01-24 Akim Demaille <akim@epita.fr>
19907 Bison dumps core when trying to complain about broken input files.
19908 Reported by Cris van Pelt.
19910 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19911 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19913 (Invalid inputs): Strengthen: exercise parse_percent_token.
19915 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
19917 * src/Makefile.am: Add bison.c++.
19918 * src/bison.c++: New skeleton.
19920 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
19924 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19926 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19928 2002-01-20 Marc Autret <marc@gnu.org>
19930 * src/files.c (compute_output_file_names): Fix
19932 2002-01-20 Marc Autret <marc@gnu.org>
19934 * tests/output.at: New test.
19935 * src/files.c (compute_base_names): Don't map extensions when
19936 the YACC flag is set, use defaults.
19937 Reported by Evgeny Stambulchik.
19939 2002-01-20 Marc Autret <marc@gnu.org>
19941 * src/system.h: Need to define __attribute__ away for non-GCC
19942 compilers as well (i.e., the vendor C compiler).
19943 Suggested by Albert Chin-A-Young.
19945 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19947 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19948 canonical definition.
19949 * src/system.h: Use the canonical definition for PARAMS (avoids
19950 a conflict with the macro from lib/hash.h).
19952 2002-01-11 Akim Demaille <akim@epita.fr>
19954 * configure.in: Use AC_FUNC_STRNLEN.
19955 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
19957 2002-01-09 Akim Demaille <akim@epita.fr>
19959 * src/files.c, src/files.h (output_infix): New.
19960 (tab_extension): Remove.
19961 (compute_base_names): Compute the former, drop the latter.
19962 * src/output.c (prepare): Insert the muscles `output-infix', and
19964 * src/parse-skel.y (string, string.1): New.
19965 (section.header): Use it.
19966 (section.yacc): Remove.
19967 (prefix): Remove too.
19968 * src/scan-skel.l: Adjust.
19969 * src/bison.simple, src/bison.hairy: Adjust.
19971 2002-01-09 Akim Demaille <akim@epita.fr>
19973 * configure.in (WERROR_CFLAGS): Compute it.
19974 * src/Makefile.am (CFLAGS): Pass it.
19975 * tests/atlocal.in (CFLAGS): Idem.
19976 * src/files.c: Fix a few warnings.
19977 (get_extension_index): Remove, unused.
19979 2002-01-08 Akim Demaille <akim@epita.fr>
19981 * src/getargs.c (AS_FILE_NAME): New.
19982 (getargs): Use it to convert DOSish file names.
19983 * src/files.c (base_name): Rename as full_base_name to avoid
19984 clashes with `base_name ()'.
19985 (filename_split): New.
19986 (compute_base_names): N-th rewrite, using filename_split.
19988 2002-01-08 Akim Demaille <akim@epita.fr>
19990 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19991 New, stolen from the Fileutils 4.1.
19992 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19993 * configure.in: Check for the presence of memrchr, and of its
19996 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19998 * lib/hash.h (__P): Added definition for this macro.
19999 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
20000 BUILT_SOURCES, to ensure they are generated first.
20001 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
20002 %error-verbose to allow bootstrapping with bison 1.30x.
20004 2002-01-06 Akim Demaille <akim@epita.fr>
20006 * src/reader.c (parse_braces): Don't fetch the next char, the
20007 convention is to fetch on entry.
20008 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
20009 'switch' without a following semicolon.
20010 * tests/regression.at (braces parsing): New.
20012 2002-01-06 Akim Demaille <akim@epita.fr>
20014 Bison is dead wrong in its RR conflict reports.
20016 * tests/torture.at (GNU Cim Grammar): New.
20017 * src/conflicts.c (count_rr_conflicts): Fix.
20019 2002-01-06 Akim Demaille <akim@epita.fr>
20021 Creating package.m4 from configure.ac causes too many problems.
20023 * tests/Makefile.am (package.m4): Create it by hand,
20024 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20026 2002-01-06 Akim Demaille <akim@epita.fr>
20028 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20031 2002-01-04 Paul Eggert <eggert@twinsun.com>
20033 * doc/bison.texinfo (Debugging):
20034 Remove YYSTDERR; it's no longer defined or used.
20035 Also, s/cstdio.h/cstdio/.
20037 2002-01-03 Akim Demaille <akim@epita.fr>
20039 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20041 2002-01-03 Akim Demaille <akim@epita.fr>
20043 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20044 tracing code to --trace, wait for a better --trace option, with
20047 2002-01-03 Akim Demaille <akim@epita.fr>
20049 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20050 The ISO C++ standard is extremely clear about it: stderr is
20051 considered a macro, not a regular symbol (see table 94 `Header
20052 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20053 Therefore std:: does not apply to it. It still does with fprintf.
20054 Also, s/cstdio.h/cstdio/.
20056 2002-01-03 Akim Demaille <akim@epita.fr>
20058 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20059 for non system headers.
20061 2002-01-02 Akim Demaille <akim@epita.fr>
20063 Equip the skeleton chain with location tracking, runtime trace,
20064 pure parser and scanner.
20066 * src/parse-skel.y: Request a pure parser, locations, and prefix
20068 (%union): Having several members with the same type does not help
20069 type mismatches, simplify.
20070 (YYPRINT, yyprint): New.
20071 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20072 (skel_error): this.
20074 * src/scan-skel.l: Adjust to these changes.
20075 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20076 (LOCATION_PRINT, skel_control_t): New.
20078 2001-12-30 Akim Demaille <akim@epita.fr>
20080 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20081 replace `gb' with BLANKS.
20082 * src/scan-skel.l: Adjust.
20084 2001-12-30 Akim Demaille <akim@epita.fr>
20086 * src/system.h: We don't need nor want bcopy.
20087 Throw away MS-DOS crap: we don't need getpid.
20088 * configure.in: We don't need strndup. It was even causing
20089 problems: because Flex includes the headers *before* us,
20090 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20092 * lib/xstrndup.c: New.
20093 * src/scan-skel.l: Use it.
20094 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
20095 * src/parse-skel.y: Use %directives instead of #defines.
20097 2001-12-30 Akim Demaille <akim@epita.fr>
20099 * src/skeleton.h: New.
20100 * src/output.c (output_parser, output_master_parser): Remove, dead
20102 * src/output.h (get_lines_number, actions_output, guards_output)
20103 (token_definitions_output): Prototype them.
20104 * src/parse-skel.y: Add the license notice.
20105 Include output.h and skeleton.h.
20106 (process_skeleton): Returns void, and takes a single parameter.
20107 * src/scan-skel.l: Add the license notice.
20108 Include skeleton.h.
20109 Don't use %option yylineno: it seems that then Flex imagines
20110 REJECT has been used, and therefore it won't reallocate its
20111 buffers (which makes no other sense to me than a bug). It results
20112 in warnings for `unused: yy_flex_realloc'.
20114 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
20116 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20117 (MUSCLE_INSERT_PREFIX): ...to there.
20118 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20119 (MUSCLE_INSERT_PREFIX): Move from here...
20121 * src/bison.hairy: Add a section directive. Put braces around muscle
20122 names. This parser skeleton is still broken, but Bison should not
20123 choke on a bad muscle 'syntax'.
20124 * src/bison.simple: Add a section directive. Put braces around muscle
20127 * src/files.h (strsuffix, stringappend): Add declarations.
20128 (tab_extension): Add declaration.
20129 (short_base_name): Add declaration.
20131 * src/files.c (strsuffix, stringappend): No longer static. These
20132 functions are used in the skeleton parser.
20133 (tab_extension): New.
20134 (compute_base_names): Use the computations done in this function
20135 to guess if the generated parsers should have '.tab' in their
20137 (short_base_name): No longer static.
20139 * src/output.c (output_skeleton): New.
20140 (output): Disable call to output_master_parser, and give a try to
20141 a new skeleton handling system.
20142 (guards_output, actions_output): No longer static.
20143 (token_definitions_output, get_lines_number): No longer static.
20145 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20147 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
20150 * src/parse-skel.y: New file.
20151 * src/scan-skel.l: New file.
20153 2001-12-29 Akim Demaille <akim@epita.fr>
20155 %name-prefix is broken.
20157 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20158 Adjust all dependencies.
20159 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20162 Renaming yylval but not yylloc is not consistent. Now we do.
20164 * src/bison.simple: Prefix yylloc if used.
20165 * doc/bison.texinfo (Decl Summary): Document that.
20167 2001-12-29 Akim Demaille <akim@epita.fr>
20169 * doc/bison.texinfo: Promote `%long-directive' over
20171 Remove all references to fixed-output-files, yacc is enough.
20173 2001-12-29 Akim Demaille <akim@epita.fr>
20175 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20176 user prologue. These are defaults.
20177 * tests/actions.at (Mid-rule actions): Make sure the user can
20178 define YYDEBUG and YYERROR_VERBOSE.
20180 2001-12-29 Akim Demaille <akim@epita.fr>
20182 * src/output.c (header_output): Don't forget to export YYLTYPE and
20184 * tests/headers.at (export YYLTYPE): New, make sure it does.
20185 * tests/regression.at (%union and --defines, Invalid CPP headers):
20187 * tests/headers.at: here.
20189 2001-12-29 Akim Demaille <akim@epita.fr>
20191 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20193 2001-12-29 Akim Demaille <akim@epita.fr>
20195 * tests/actions.at (Mid-rule actions): Output on a single line
20196 instead of several.
20198 2001-12-29 Akim Demaille <akim@epita.fr>
20200 * doc/bison.texinfo: Formatting changes.
20202 2001-12-29 Akim Demaille <akim@epita.fr>
20204 Don't store the token defs in a muscle, just be ready to output it
20205 on command. Now possible via `symbols'. Fixes a memory leak.
20207 * src/output.c (token_definitions_output): New.
20208 (output_parser, header_output): Use it.
20209 * src/reader.c (symbols_save): Remove.
20211 2001-12-29 Akim Demaille <akim@epita.fr>
20213 * src/bison.simple: Do not provide a default for YYSTYPE and
20214 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20217 2001-12-29 Akim Demaille <akim@epita.fr>
20219 Mid-rule actions are simply... ignored!
20221 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20222 the empty-rule associated to the dummy symbol, not to the host
20224 * tests/actions.at (Mid-rule actions): New.
20226 2001-12-29 Akim Demaille <akim@epita.fr>
20230 * src/reader.c (reader): Free grammar.
20232 2001-12-29 Akim Demaille <akim@epita.fr>
20236 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20237 since it allocates it for each state, although only one is needed.
20238 (allocate_storage): Do it here.
20240 2001-12-29 Akim Demaille <akim@epita.fr>
20242 * src/options.h, src/options.c (create_long_option_table): Rename
20244 (long_option_table_new): this, with a clearer prototype.
20245 (percent_table): Remove, unused,
20246 * src/getargs.c (getargs): Adjust.
20248 2001-12-29 Akim Demaille <akim@epita.fr>
20250 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20251 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20254 2001-12-29 Akim Demaille <akim@epita.fr>
20256 * src/lalr.c (build_relations): Rename `states' as `states1'.
20257 Sorry, I don't understand exactly what it is, no better name...
20259 2001-12-29 Akim Demaille <akim@epita.fr>
20261 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20262 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20263 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20266 2001-12-29 Akim Demaille <akim@epita.fr>
20268 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20271 2001-12-29 Akim Demaille <akim@epita.fr>
20273 * src/reader.c, src/reader.h (user_toknums): Remove.
20274 Adjust all users to use symbols[i]->user_token_number.
20276 2001-12-29 Akim Demaille <akim@epita.fr>
20278 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20279 Adjust all users to use symbols[i]->prec or ->assoc.
20281 2001-12-29 Akim Demaille <akim@epita.fr>
20283 * src/reader.c, src/reader.h (tags): Remove.
20284 Adjust all users to use symbols[i]->tag.
20286 2001-12-29 Akim Demaille <akim@epita.fr>
20288 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20290 * src/reader.c (packsymbols): Fill this table.
20292 * src/conflicts.c (resolve_sr_conflict): Adjust.
20293 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20295 Use symbols[i]->tag instead of tags[i].
20297 2001-12-29 Akim Demaille <akim@epita.fr>
20299 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20300 In addition, put a comment in there, to replace...
20301 * tests/regression.at (%union and C comments): Remove.
20303 2001-12-29 Akim Demaille <akim@epita.fr>
20305 * tests/regression.at (Web2c Actions): Blindly move the actual
20306 output as expected output. The contents *seem* right to me, but I
20307 can't pretend reading perfectly parser tables... Nonetheless, all
20308 the other tests pass correctly, the table look OK, even though the
20309 presence of `$axiom' is to be noted: AFAICS it is useless (but
20312 2001-12-29 Akim Demaille <akim@epita.fr>
20314 * src/reader.c (readgram): Don't add the rule 0 if there were no
20315 rules read. In other words, add it _after_ having performed
20316 grammar sanity checks.
20317 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20319 2001-12-29 Akim Demaille <akim@epita.fr>
20321 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20322 visible, and some states have now a different number.
20324 2001-12-29 Akim Demaille <akim@epita.fr>
20326 * src/reader.c (readgram): Bind the initial rule's lineno to that
20328 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20329 (Solved SR Conflicts): Adjust rule 0's line number.
20331 2001-12-29 Akim Demaille <akim@epita.fr>
20333 Fix the `GAWK Grammar' failure.
20335 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20336 the reductions of the first state which was mistakenly confused
20337 with the final state because precisely final_state was initialized
20339 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20340 now noticed by Bison.
20341 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20342 have a reduction on $default.
20344 2001-12-29 Akim Demaille <akim@epita.fr>
20346 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20348 * src/closure.c (print_closure): Likewise.
20349 * src/derives.c (print_derives): Likewise.
20350 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20353 2001-12-29 Akim Demaille <akim@epita.fr>
20355 * src/lalr.c (lookaheads_print): New.
20356 (lalr): Call it when --trace-flag.
20357 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20360 2001-12-29 Akim Demaille <akim@epita.fr>
20362 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20363 when walking through ritem, even via rule->rhs.
20364 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20365 (useful_production, useless_nonterminals): Likewise.
20366 (reduce_grammar_tables): Likewise, plus update nritems.
20367 * src/nullable.c (set_nullable): Likewise.
20368 * src/lalr.c (build_relations): Likewise.
20369 * tests/sets.at (Nullable): Adjust.
20370 Fortunately, now, the $axiom is no longer nullable.
20372 2001-12-29 Akim Demaille <akim@epita.fr>
20374 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20376 * src/gram.c (ritem_longest_rhs): Likewise.
20377 * src/reduce.c (nonterminals_reduce): Likewise.
20378 * src/print_graph.c (print_graph): Likewise.
20379 * src/output.c (output_rule_data): Likewise.
20380 * src/nullable.c (set_nullable): Likewise.
20382 2001-12-29 Akim Demaille <akim@epita.fr>
20384 * src/output.c: Comment changes.
20386 2001-12-27 Paul Eggert <eggert@twinsun.com>
20388 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20389 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20390 Sparc, as they were causing more porting problems than the
20391 (minor) performance improvement was worth.
20393 Also, catch up with 1.31's YYSTD.
20395 2001-12-27 Akim Demaille <akim@epita.fr>
20397 * src/output.c (output_gram): Rely on nritems, not the
20398 0-sentinel. See below.
20399 Use -1 as separator, not 0.
20400 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20401 Rely on -1 as separator in yyrhs, instead of 0.
20402 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20403 twice `Now at end of input', therefore there are two lines less to
20406 2001-12-27 Akim Demaille <akim@epita.fr>
20408 * tests/regression.at (Unresolved SR Conflicts):
20409 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20412 2001-12-27 Akim Demaille <akim@epita.fr>
20414 * src/LR0.c (new_state): Recognize the final state by the fact it
20415 is reached by eoftoken.
20416 (insert_start_shifting_state, insert_eof_shifting_state)
20417 (insert_accepting_state, augment_automaton): Remove, since now
20418 these states are automatically computed from the initial state.
20419 (generate_states): Adjust.
20420 * src/print.c: When reporting a rule number to the user, substract
20421 1, so that the axiom rule is rule 0, and the first user rule is 1.
20422 * src/reduce.c: Likewise.
20423 * src/print_graph.c (print_core): For the time being, just as for
20424 the report, depend upon --trace-flags to dump the full set of
20426 * src/reader.c (readgram): Once the grammar read, insert the rule
20427 0: `$axiom: START-SYMBOL $'.
20428 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20429 number of the states has changed (the final state is no longer
20430 necessarily the last), catch up.
20432 2001-12-27 Akim Demaille <akim@epita.fr>
20434 Try to make the use of the eoftoken valid. Given that its value
20435 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20436 is used instead of > 0 where appropriate, (ii), depend upon nritems
20437 instead of the 0-sentinel.
20439 * src/gram.h, src/gram.c (nritems): New.
20440 Expected to be duplication of nitems, but for the time being...
20441 * src/reader.c (packgram): Assert nritems and nitems are equal.
20442 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20443 * src/closure.c (print_closure, print_fderives): Likewise.
20444 * src/gram.c (ritem_print): Likewise.
20445 * src/print.c (print_core, print_grammar): Likewise.
20446 * src/print_graph.c: Likewise.
20448 2001-12-27 Akim Demaille <akim@epita.fr>
20450 * src/main.c (main): If there are complains after grammar
20451 reductions, then output the report anyway if requested, then die.
20452 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20453 * src/reader.c (eoftoken): New.
20454 (parse_token_decl): If the token being defined has value `0', it
20456 (packsymbols): No longer hack `tags' to insert `$' by hand.
20457 Be sure to preserve the value of the eoftoken.
20458 (reader): Make sure eoftoken is defined.
20459 Initialize nsyms to 0: now eoftoken is created just like the others.
20460 * src/print.c (print_grammar): Don't special case the eof token.
20461 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20462 lie anyway, albeit pleasant.
20463 * tests/calc.at: Exercise error messages with eoftoken.
20464 Change the grammar so that empty input is invalid.
20465 Adjust expectations.
20466 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20468 2001-12-27 Akim Demaille <akim@epita.fr>
20470 * configure.in: Check the protos of strchr ans strspn.
20471 Replace strchr if needed.
20472 * src/system.h: Provide the protos of strchr, strspn and memchr if
20474 * lib/strchr.c: New.
20475 * src/reader.c (symbols_save): Use strchr.
20477 2001-12-27 Akim Demaille <akim@epita.fr>
20479 * src/print.c, src/print_graph.c (escape): New.
20480 Use it to quote the TAGS outputs.
20481 * src/print_graph.c (print_state): Now errors are in red, and
20482 reductions in green.
20483 Prefer high to wide: output the state number on a line of its own.
20485 2001-12-27 Akim Demaille <akim@epita.fr>
20487 * src/state.h, src/state.c (reductions_new): New.
20488 * src/LR0.c (set_state_table): Let all the states have a
20489 `reductions', even if reduced to 0.
20490 (save_reductions): Adjust.
20491 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20492 * src/print.c (print_reductions, print_actions): Adjust.
20493 * src/output.c (action_row): Adjust.
20495 2001-12-27 Akim Demaille <akim@epita.fr>
20497 * src/state.h, src/state.c (errs_new, errs_dup): New.
20498 * src/LR0.c (set_state_table): Let all the states have an errs,
20499 even if reduced to 0.
20500 * src/print.c (print_errs, print_reductions): Adjust.
20501 * src/output.c (output_actions, action_row): Adjust.
20502 * src/conflicts.c (resolve_sr_conflict): Adjust.
20504 2001-12-27 Akim Demaille <akim@epita.fr>
20506 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20508 2001-12-27 Akim Demaille <akim@epita.fr>
20510 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20511 * src/print.c: here.
20512 (lookaheadset, shiftset): New, used as additional storage by
20514 (print_results): Adjust.
20515 (print_shifts, print_gotos, print_errs): New, extracted from...
20516 (print_actions): here.
20517 * src/print_graph.c (print_actions): Remove dead code.
20519 2001-12-27 Akim Demaille <akim@epita.fr>
20521 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20524 2001-12-27 Akim Demaille <akim@epita.fr>
20526 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20527 (build_relations): Adjust.
20529 2001-12-27 Akim Demaille <akim@epita.fr>
20531 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20534 2001-12-27 Akim Demaille <akim@epita.fr>
20536 * src/reader.c (packgram): Catch nitems overflows.
20538 2001-12-27 Akim Demaille <akim@epita.fr>
20540 * src/files.c, src/files.h (guard_obstack): Remove.
20541 * src/output.c (output): Adjust.
20542 * src/reader.c (parse_braces): New, factoring...
20543 (copy_action, copy_guard): these two which are renamed as...
20544 (parse_action, parse_guard): these.
20545 As a voluntary consequence, using braces around guards is now
20548 2001-12-27 Akim Demaille <akim@epita.fr>
20550 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20551 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20553 (symbol_list_new): Adjust.
20554 (copy_action): action_line is the first line, not the last.
20555 (copy_guard): Just as for actions, store the `action' only, not
20556 the switch/case/break flesh.
20557 Don't parse the user action that might follow the guard, let...
20558 (readgram): do it, i.e., now, there can be an action after a
20560 In other words the guard is just explicitly optional.
20561 (packgram): Adjust.
20562 * src/output.c (guards_output): New.
20563 (output_parser): Call it when needed.
20564 (output): Also free the guard and attrs obstacks.
20565 * src/files.c, src/files.h (obstack_save): Remove.
20566 (output_files): Remove.
20567 As a result, if one needs the former `.act' file, using an
20568 appropriate skeleton which requires actions and guards is now
20570 * src/main.c (main): Adjust.
20571 * tests/semantic.at: New.
20572 * tests/regression.at: Use `input.y' as input file name.
20573 Avoid 8+3 problems by requiring input.c when the test needs the
20576 2001-12-27 Akim Demaille <akim@epita.fr>
20578 * src/reader.c (symbol_list_new): Be sure to initialize all the
20581 2001-12-27 Akim Demaille <akim@epita.fr>
20583 All the hacks using a final pseudo state are now useless.
20585 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20586 * src/lalr.c (nLA): New.
20587 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20588 instead of lookaheadsp from the pseudo state (nstate + 1).
20590 2001-12-27 Akim Demaille <akim@epita.fr>
20592 * src/output.c (action_row, token_actions): Use a state_t instead
20593 of a integer, and nlookaheads instead of the following state's
20596 2001-12-27 Akim Demaille <akim@epita.fr>
20598 * src/conflicts.c (log_resolution, flush_shift)
20599 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20600 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20601 (conflicts_print, print_reductions): Use a state_t instead of an
20602 integer when referring to a state.
20603 As much as possible, depend upon nlookaheads, instead of the
20604 `lookaheadsp' member of the following state (since lookaheads of
20605 successive states are successive, the difference between state n + 1
20606 and n served as the number of lookaheads for state n).
20607 * src/lalr.c (add_lookback_edge): Likewise.
20608 * src/print.c (print_core, print_actions, print_state)
20609 (print_results): Likewise.
20610 * src/print_graph.c (print_core, print_actions, print_state)
20611 (print_graph): Likewise.
20612 * src/conflicts.h: Adjust.
20614 2001-12-27 Akim Demaille <akim@epita.fr>
20616 * src/bison.hairy: Formatting/comment changes.
20618 Remove `register' indications.
20619 Add plenty of `static'.
20621 2001-12-27 Akim Demaille <akim@epita.fr>
20623 * src/output.c (prepare): Drop the muscle `ntbase' which
20624 duplicates ntokens.
20625 * src/bison.simple: Formatting/comment changes.
20626 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20627 is an undocumented synonym.
20629 2001-12-22 Akim Demaille <akim@epita.fr>
20631 * src/output.c (output_table_data): Change the prototype to use
20632 `int' for array ranges: some invocations do pass an int, not a
20634 Reported by Wayne Green.
20636 2001-12-22 Akim Demaille <akim@epita.fr>
20638 Some actions of web2c.y are improperly triggered.
20639 Reported by Mike Castle.
20641 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20642 * tests/regression.at (Web2c): Rename as...
20643 (Web2c Report): this.
20644 (Web2c Actions): New.
20646 2001-12-22 Akim Demaille <akim@epita.fr>
20648 Reductions in web2c.y are improperly reported.
20649 Reported by Mike Castle.
20651 * src/conflicts.c (print_reductions): Fix.
20652 * tests/regression.at (Web2c): New.
20654 2001-12-18 Akim Demaille <akim@epita.fr>
20656 Some host fail on `assert (!"foo")', which expands to
20657 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20658 Reported by Nelson Beebee.
20660 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20661 `#define it_succeeded 0' and `assert (it_succeeded)'.
20663 2001-12-17 Marc Autret <autret_m@epita.fr>
20665 * src/bison.simple: Don't hard code the skeleton line and filename.
20666 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20667 New line counter 'skeleton_line' (skeleton-line muscle).
20669 2001-12-17 Paul Eggert <eggert@twinsun.com>
20671 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20672 YYDEBUG must be defined to a nonzero value.
20674 * src/bison.simple (yytname): Do not assume that the user defines
20675 YYDEBUG to a properly parenthesized expression.
20677 2001-12-17 Akim Demaille <akim@epita.fr>
20679 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20680 nlookaheads is a new member.
20682 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20683 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20686 2001-12-17 Akim Demaille <akim@epita.fr>
20688 * src/files.h, src/files.c (open_files, close_files): Remove.
20689 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20691 * src/reader.c (reader): Do it.
20693 2001-12-17 Akim Demaille <akim@epita.fr>
20695 * src/conflicts.c (print_reductions): Formatting changes.
20697 2001-12-17 Akim Demaille <akim@epita.fr>
20699 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20700 (flush_reduce): New.
20701 (resolve_sr_conflict): Adjust.
20703 2001-12-17 Akim Demaille <akim@epita.fr>
20705 * src/output.c (output_obstack): Be static and rename as...
20706 (format_obstack): this, to avoid any confusion with files.c's
20708 * src/reader.h (muscle_obstack): Move to...
20709 * src/output.h: here, since it's defined in output.c.
20711 2001-12-17 Akim Demaille <akim@epita.fr>
20713 * src/output.c (action_row, save_column, default_goto)
20714 (sort_actions, matching_state, pack_vector): Better variable
20717 2001-12-17 Akim Demaille <akim@epita.fr>
20719 * src/output.c: Various formatting changes.
20721 2001-12-17 Akim Demaille <akim@epita.fr>
20723 * src/files.c (output_files): Free the output_obstack.
20724 * src/main.c (main): Call print and print_graph conditionally.
20725 * src/print.c (print): Work unconditionally.
20726 * src/print_graph.c (print_graph): Work unconditionally.
20727 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20729 2001-12-16 Marc Autret <autret_m@epita.fr>
20731 * src/output.c (actions_output): Fix. When we use %no-lines,
20732 there is one less line per action.
20734 2001-12-16 Marc Autret <autret_m@epita.fr>
20736 * src/bison.simple: Remove a useless #line directive.
20737 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20738 * src/output.c (get_lines_number): New.
20739 (output_parser): Adjust, now takes care about the lines of a
20741 Fix line numbering.
20742 (actions_output): Computes the number of lines taken by actions.
20743 (output_master_parser): Insert new skeleton which is the name of
20744 the output parser file name.
20746 2001-12-15 Marc Autret <autret_m@epita.fr>
20748 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20750 2001-12-15 Marc Autret <autret_m@epita.fr>
20752 * src/output.c (output_gram): Keep track of the hairy one.
20754 2001-12-15 Akim Demaille <akim@epita.fr>
20756 Make `make distcheck' work.
20758 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20759 system.h which uses libgettext.h.
20761 2001-12-15 Akim Demaille <akim@epita.fr>
20763 * src/nullable.c (set_nullable): Useless rules must be skipped,
20764 otherwise, since we range over their symbols, we might look at a
20765 nonterminal which no longer ``exists'', i.e., it is not counted in
20766 `nvars', hence we overflow our arrays.
20768 2001-12-15 Akim Demaille <akim@epita.fr>
20770 The header can also be produced directly, without any obstack!
20773 * src/files.c, src/files.h (defines_obstack): Remove.
20774 (compute_header_macro): Global.
20775 (defines_obstack_save): Remove.
20776 * src/reader.c (parse_union_decl): No longer output to
20777 defines_obstack: its content can be found in the `stype' muscle
20779 (output_token_translations): Merge into...
20780 (symbols_output): this.
20782 (symbols_save): this.
20784 * src/output.c (header_output): New.
20787 2001-12-15 Akim Demaille <akim@epita.fr>
20789 * src/reader.c (parse_union_decl): Instead of handling two obstack
20790 simultaneously, use one to define the `stype' muscle, and use the
20791 value of the latter to fill defines_obstack.
20792 (copy_comment): Remove.
20793 (copy_comment2): Work for a single obstack.
20795 (copy_comment): this.
20797 2001-12-15 Akim Demaille <akim@epita.fr>
20799 * src/lex.c, src/lex.h (xgetc): No longer static.
20800 * src/reader.c (parse_union_decl): Revamp.
20802 2001-12-15 Akim Demaille <akim@epita.fr>
20804 Still making progress in separating Bison into (i) input, (ii)
20805 process, (iii) output: now we can directly output the parser file
20806 without using table_obstack at all.
20808 * src/files.c, src/files.h (table_obstack): Bye bye.
20809 (parser_file_name): New.
20810 * src/files.c (compute_output_file_names): Compute it.
20811 * src/output.c (actions_output, output_parser)
20812 (output_master_parser): To a file instead of an obstack.
20814 2001-12-15 Akim Demaille <akim@epita.fr>
20816 Attach actions to rules, instead of pre-outputting them to
20819 * src/gram.h (rule_t): action and action_line are new members.
20820 * src/reader.c (symbol_list): Likewise.
20821 (copy_action): Save the actions within the rule.
20822 (packgram): Save them in rule_table.
20823 * src/output.c (actions_output): New.
20824 (output_parser): Use it on `%%actions'.
20825 (output_rule_data): Don't free rule_table.
20827 (prepare): Don't save the `action' muscle.
20828 * src/bison.simple: s/%%action/%%actions/.
20830 2001-12-15 Akim Demaille <akim@epita.fr>
20832 * src/reader.c (copy_action): When --yacc, don't append a `;'
20833 to the user action: let it fail if lacking.
20834 Suggested by Arnold Robbins and Tom Tromey.
20836 2001-12-14 Akim Demaille <akim@epita.fr>
20838 * src/lex.c (literalchar): Simply return the char you decoded, non
20839 longer mess around with obstacks and int pointers.
20840 Adjust all callers.
20842 2001-12-14 Akim Demaille <akim@epita.fr>
20844 * src/lex.c (literalchar): Don't escape the special characters,
20845 just decode them, and keep them as char (before, eol was output as
20846 the 2 char string `\n' etc.).
20847 * src/output.c (output_rule_data): Use quotearg to output the
20850 2001-12-13 Paul Eggert <eggert@twinsun.com>
20852 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20853 Do not infringe on the global user namespace when using C++.
20854 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20855 All uses of `fprintf' and `stderr' changed.
20857 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20859 2001-12-13 Akim Demaille <akim@epita.fr>
20861 The computation of nullable is broken: it doesn't handle empty
20864 * tests/torture.at (GNU AWK Grammar): New.
20865 * tests/sets.at (Nullable): New.
20866 * src/nullable.c (set_nullable): Instead of blindly looping over
20867 `ritems', loop over the rules, and then over their rhs's.
20869 Work around Autotest bugs.
20871 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20872 frame, because Autotest understand lines starting with a `+' as
20873 traces from the shell. Then, they are not processed properly.
20874 Admittedly an Autotest bug, but we don't have time to wait for
20875 Autotest to catch up.
20876 * tests/regression.at (Broken Closure): Adjust to the new table
20879 * tests/sets.at: here.
20881 2001-12-13 Akim Demaille <akim@epita.fr>
20883 * src/closure.c (closure): Use nrules instead of playing tricks
20884 with BITS_PER_WORD.
20886 2001-12-13 Akim Demaille <akim@epita.fr>
20888 * src/print.c (print_actions): Output the handling of `$' as the
20889 traces do: shifting the token EOF. Before EOF was treated as a
20891 * tests/regression.at: Adjust some tests.
20892 * src/print_graph.c (print_core): Complete the set of items via
20893 closure. The next-to-final and final states are still unsatisfying,
20894 but that's to be addressed elsewhere.
20895 No longer output the rule numbers, but do output the state number.
20896 A single loop for the shifts + gotos is enough, but picked a
20897 distinct color for each.
20898 (print_graph): Initialize and finalize closure.
20900 2001-12-13 Akim Demaille <akim@epita.fr>
20902 * src/reader.c (readgram): Remove dead code, an strip useless
20904 (get_type): Remove, unused.
20906 2001-12-12 Akim Demaille <akim@epita.fr>
20908 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20909 on that of lib/error.c.
20911 2001-12-12 Akim Demaille <akim@epita.fr>
20913 Some hosts don't like `/' in includes.
20915 * src/system.h: Include libgettext.h without qualifying the path.
20916 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20919 2001-12-11 Marc Autret <autret_m@epita.fr>
20921 * src/output.c (output_parser): Remove useless muscle.
20923 2001-12-11 Marc Autret <autret_m@epita.fr>
20925 * src/bison.simple: Remove #line just before %%epilogue. It
20926 is now handled in ...
20927 * src/reader.c (read_additionnal_code): Add the output of a
20928 #line for the epilogue.
20930 2001-12-10 Marc Autret <autret_m@epita.fr>
20932 * src/reader.c (copy_definition): Re-use CPP-outed code which
20933 replace precedent remove.
20934 * src/bison.simple: Remove #line before %%prologue because
20935 %%input-line is wrong at this time.
20937 2001-12-10 Marc Autret <autret_m@epita.fr>
20939 * src/reader.c (symbols_output): Clean up.
20940 * src/output.c (output_gram, output): Clean up.
20942 2001-12-10 Akim Demaille <akim@epita.fr>
20944 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20945 * src/LR0.c (set_state_table): here.
20946 * src/lalr.c (lalr): Call it.
20948 2001-12-10 Akim Demaille <akim@epita.fr>
20950 * src/state.h (shifts): Remove the `number' member: shifts are
20951 attached to state, hence no longer need to be labelled with a
20954 2001-12-10 Akim Demaille <akim@epita.fr>
20956 Now that states have a complete set of members, the linked list of
20957 shifts is useless: just fill directly the state's shifts member.
20959 * src/state.h (shifts): Remove the `next' member.
20960 * src/LR0.c (first_state, last_state): Remove.
20961 Adjust the callers.
20962 (augment_automaton): Don't look for the shifts that must be added
20963 a shift on EOF: it is those of the state we looked for! But now,
20964 since shifts are attached, it is no longer needed to looking
20965 merely by its id: its number.
20967 2001-12-10 Akim Demaille <akim@epita.fr>
20969 * src/LR0.c (augment_automaton): Better variable locality.
20970 Remove an impossible branch: if there is a state corresponding to
20971 the start symbol being shifted, then there is shift for the start
20972 symbol from the initial state.
20974 2001-12-10 Akim Demaille <akim@epita.fr>
20976 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20977 only when appropriate: when insert_start_shifting_state' is not
20979 * tests/regression.at (Rule Line Numbers): Adjust.
20981 2001-12-10 Akim Demaille <akim@epita.fr>
20983 * src/LR0.c (augment_automaton): Now that all states have shifts,
20984 merge the two cases addition shifts to the initial state.
20986 2001-12-10 Akim Demaille <akim@epita.fr>
20988 * src/lalr.c (set_state_table): Move to...
20990 * src/lalr.c (lalr): Don't call it...
20991 * src/LR0.c (generate_states): do it.
20992 * src/LR0.h (first_state): Remove, only the table is used.
20994 2001-12-10 Akim Demaille <akim@epita.fr>
20996 * src/LR0.h (first_shift, first_reduction): Remove.
20997 * src/lalr.c: Don't use first_shift: find shifts through the
21000 2001-12-10 Akim Demaille <akim@epita.fr>
21002 * src/LR0.c: Attach shifts to states as soon as they are
21004 * src/lalr.c (set_state_table): Instead of assigning shifts to
21005 state, just assert that the mapping was properly done.
21007 2001-12-10 Akim Demaille <akim@epita.fr>
21009 * src/LR0.c (insert_start_shift): Rename as...
21010 (insert_start_shifting_state): this.
21011 (insert_eof_shifting_state, insert_accepting_state): New.
21012 (augment_automaton): Adjust.
21013 Better locality of the variables.
21014 When looking if the start_symbol is shifted from the initial
21015 state, using `while (... symbol != start_symbol ...)' sounds
21016 better than `while (... symbol < start_symbol ...)': If fail
21017 to see how the order between symbols could be relevant!
21019 2001-12-10 Akim Demaille <akim@epita.fr>
21021 * src/getargs.h: Don't declare `spec_name_prefix' and
21022 `spec_file_prefix', declared by src/files.h.
21023 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
21024 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21025 * src/output.c (prepare): Adjust.
21026 * src/reader.c (symbols_output): Likewise.
21027 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21029 2001-12-10 Akim Demaille <akim@epita.fr>
21031 * src/muscle_tab.c (muscle_init): NULL is a better default than
21034 2001-12-10 Akim Demaille <akim@epita.fr>
21036 * src/reader.c (reader): Calling symbols_output once is enough.
21038 2001-12-10 Akim Demaille <akim@epita.fr>
21040 Now that states have a complete set of members, the linked list of
21041 reductions is useless: just fill directly the state's reductions
21044 * src/state.h (struct reductions): Remove member `number' and
21046 * src/LR0.c (first_reduction, last_reduction): Remove.
21047 (save_reductions): Don't link the new reductions, store them in
21049 * src/lalr.c (set_state_table): No need to attach reductions to
21050 states, it's already done.
21051 * src/output.c (output_actions): No longer free the shifts, then
21052 the reductions, then the states: free all the states and their
21055 2001-12-10 Akim Demaille <akim@epita.fr>
21057 * src/options.c (OPTN, DRTV, BOTH): New.
21058 (option_table): Use them.
21060 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21061 the job of system.h.
21062 * src/options.c: Don't include stdio.h and xalloc.h for the same
21065 2001-12-10 Akim Demaille <akim@epita.fr>
21067 * src/output.c (output, prepare): Make sure the values of the
21068 muscles `action' and `prologue' are 0-terminated.
21070 2001-12-10 Akim Demaille <akim@epita.fr>
21072 Clean up GCC warnings.
21074 * src/reader.c (copy_action): `buf' is not used.
21075 (parse_skel_decl): Be static.
21076 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21077 * src/options.h (create_long_option_table): Have a real prototype.
21078 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21079 (hash_delete_at): Return const void *.
21080 Adjust casts to preserve the const.
21082 2001-12-10 Akim Demaille <akim@epita.fr>
21084 * configure.in: Require 2.52g.
21085 M4 is not needed, but AUTOM4TE is.
21086 * m4/m4.m4: Remove.
21087 * tests/Makefile.am: Adjust.
21089 2001-12-10 Akim Demaille <akim@epita.fr>
21091 One structure for states is enough, even though theoretically
21092 there are LR(0) states and LALR(1) states.
21094 * src/lalr.h (state_t): Remove.
21095 (state_table): Be state_t **, not state_t *.
21096 * src/state.h (core, CORE_ALLOC): Rename as...
21097 (state_t, STATE_ALLOC): this.
21098 Add the LALR(1) members: shifts, reductions, errs.
21099 * src/LR0.c (state_table): Rename as...
21100 (state_hash): this, to avoid name clashes with the global
21102 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
21103 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
21105 2001-12-10 Akim Demaille <akim@epita.fr>
21107 Bison dumps core on bash.y.
21108 Reported by Pascal Bart.
21110 * src/warshall.c (bitmatrix_print): New.
21112 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
21113 j must be the outer loop.
21114 * tests/regression.at (Broken Closure): New.
21116 2001-12-05 Akim Demaille <akim@epita.fr>
21118 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21120 Reported by Peter Hamorsky.
21122 2001-12-05 Akim Demaille <akim@epita.fr>
21124 * src/conflicts.c (err_table): Remove.
21125 (resolve_sr_conflict): Adjust.
21126 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21128 (state_t.reductions, state_t.shifts): this.
21130 2001-12-05 Akim Demaille <akim@epita.fr>
21132 * src/reduce.c (reduce_grammar_tables): No longer disable the
21133 removal of useless rules via CPP but via `if (0)', so that the
21134 compiler still check the code is valid.
21135 For instance, it should have noticed `rline' no longer exists: use
21136 the `line' member of rule_t.
21137 * src/gram.c (dummy, rline): Remove, unused.
21139 2001-12-05 Akim Demaille <akim@epita.fr>
21141 * src/output.c (pack_vector): Use assert, not berror.
21142 * src/main.c (berror): Remove, unused.
21144 2001-12-05 Akim Demaille <akim@epita.fr>
21146 New experimental feature: if --verbose --trace output all the
21147 items of a state, not only its kernel.
21149 * src/print.c (print_core): If `trace_flag', then invoke closure
21150 before outputting the items of the state (print_core is no longer
21151 a correct name them).
21152 (print_results): Invoke new_closure/free_closure if needed.
21154 2001-12-05 Akim Demaille <akim@epita.fr>
21156 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21157 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21158 (nitemset): for consistency with the rest of the project.
21160 2001-12-05 Akim Demaille <akim@epita.fr>
21162 * src/closure.c (print_closure): Improve.
21163 (closure): Use it for printing input and output.
21165 2001-12-05 Akim Demaille <akim@epita.fr>
21167 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21168 indexed by nonterminals.
21170 2001-12-05 Akim Demaille <akim@epita.fr>
21172 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21174 * src/warshall.h: Remove accidental duplication of the content.
21176 2001-12-05 Akim Demaille <akim@epita.fr>
21178 * src/closure.c (set_fderives): De-obfuscate.
21180 2001-12-05 Akim Demaille <akim@epita.fr>
21182 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21184 2001-12-05 Akim Demaille <akim@epita.fr>
21186 * src/closure.c (set_firsts): De-obfuscate.
21188 2001-12-05 Akim Demaille <akim@epita.fr>
21190 * src/output.c (action_row): De-obfuscate
21191 using the good o' techniques: arrays not pointers, variable
21192 locality, BITISSET, RESETBIT etc.
21194 2001-12-05 Akim Demaille <akim@epita.fr>
21196 Pessimize the code to simplify it: from now on, all the states
21197 have a valid SHIFTS, which NSHIFTS is possibly 0.
21199 * src/LR0.c (shifts_new): Be global and move to..
21200 * src/state.c, src/state.h: here.
21201 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21202 * src/print_graph: Adjust.
21204 2001-12-05 Akim Demaille <akim@epita.fr>
21206 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21207 * src/conflicts.c: Use it.
21208 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21209 incorrectly ``simplified''.
21211 2001-12-05 Akim Demaille <akim@epita.fr>
21213 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21214 using the good o' techniques: arrays not pointers, variable
21215 locality, BITISSET, RESETBIT etc.
21217 2001-12-05 Akim Demaille <akim@epita.fr>
21219 * src/state.h (SHIFT_SYMBOL): New.
21220 * src/conflicts.c: Use it to deobfuscate.
21222 2001-12-05 Akim Demaille <akim@epita.fr>
21224 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21225 (print_reductions): De-obfuscate using the good o' techniques:
21226 arrays not pointers, variable locality, BITISSET.
21228 2001-12-05 Akim Demaille <akim@epita.fr>
21230 * src/conflicts.c (print_reductions): Arrays, not pointers.
21233 2001-12-05 Akim Demaille <akim@epita.fr>
21235 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21237 2001-12-05 Akim Demaille <akim@epita.fr>
21239 * src/conflicts.c (print_reductions): Improve variable locality.
21241 2001-12-05 Akim Demaille <akim@epita.fr>
21243 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21245 2001-12-05 Akim Demaille <akim@epita.fr>
21247 * src/conflicts.c (print_reductions): Improve variable locality.
21249 2001-12-05 Akim Demaille <akim@epita.fr>
21251 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21252 * src/lalr.c: Use them.
21254 2001-12-05 Akim Demaille <akim@epita.fr>
21256 * src/LR0.c (augment_automaton): Formatting changes.
21257 Better variable locality.
21259 2001-12-05 Akim Demaille <akim@epita.fr>
21261 * src/lalr.c (matrix_print): New.
21262 (transpose): Use it.
21263 Use arrays instead of pointers.
21265 2001-12-05 Akim Demaille <akim@epita.fr>
21267 * src/lalr.c (maxrhs): Move to...
21268 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21269 * src/lalr.c (build_relations): Adjust.
21271 2001-12-05 Akim Demaille <akim@epita.fr>
21273 * src/lalr.c (transpose): Free the memory allocated to the
21274 argument, as it is replaced by the results by the unique caller.
21275 (build_relations): Merely invoke transpose: it handles the memory
21277 Improve variable locality.
21278 Avoid variables used as mere abbreviations.
21279 (compute_lookaheads): Use arrays instead of pointers.
21281 2001-12-05 Akim Demaille <akim@epita.fr>
21283 * src/lalr.c (initialize_F): Improve variable locality.
21284 Avoid variables used as mere abbreviations.
21286 2001-12-05 Akim Demaille <akim@epita.fr>
21288 * src/derives.c (print_derives): Display the ruleno.
21289 * src/lalr.c (initialize_F, transpose): Better variable locality
21290 to improve readability.
21291 Avoid variables used as mere abbreviations.
21293 2001-12-05 Akim Demaille <akim@epita.fr>
21295 * src/lalr.c (traverse): Use arrays instead of pointers.
21297 2001-12-05 Akim Demaille <akim@epita.fr>
21299 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21300 the handling of squeue.
21301 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21303 2001-12-05 Akim Demaille <akim@epita.fr>
21305 Because useless nonterminals are now kept alive (instead of being
21306 `destroyed'), we now sometimes examine them, and store information
21307 related to them. Hence we need to know their number, and adjust
21308 memory allocations.
21310 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21312 * src/LR0.c (allocate_itemsets): The memory allocated to
21313 `symbol_count' was used for two different purpose: once to count
21314 the number of occurrences of each symbol, and later reassigned to
21315 `shift_symbol', containing the symbol that can be shifted from a
21317 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21319 (new_itemsets): Allocate `shift_symbol' here.
21320 (allocate_itemsets): symbol_count includes useless nonterminals.
21321 Make room for them.
21322 (free_storage): Use `free', not `XFREE', for pointers that cannot
21325 2001-12-05 Akim Demaille <akim@epita.fr>
21327 * src/nullable.c (set_nullable): Deobfuscate the handling of
21329 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21331 2001-12-05 Akim Demaille <akim@epita.fr>
21333 * src/gram.c, src/gram.h (ritem_print): New.
21334 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21335 (This useless function was defined only to work around VMS linkers
21336 that can't handle compilation units with variables only).
21337 * src/reduce.c (dump_grammar): Use it to trace the construction of
21340 2001-12-04 Paul Eggert <eggert@twinsun.com>
21342 * src/bison.simple (union yyalloc): Change member names
21343 to be the same as the stack names.
21344 (yyparse): yyptr is now union yyalloc *, not char *.
21345 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21346 and may generate better code on some machines.
21347 (yystpcpy): Use prototype if __STDC__ is defined, not just
21348 if __cplusplus is defined.
21350 2001-11-30 Akim Demaille <akim@epita.fr>
21352 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21353 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21354 Gettext doesn't compile cleanly, and dies with -Werror.
21355 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21356 Include WARNING_CFLAGS here.
21357 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21358 before being defined.
21360 2001-11-27 Paul Eggert <eggert@twinsun.com>
21362 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21363 First arg is int, not unsigned.
21364 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21365 (SIZE_MAX, UINT_MAX): New macros.
21366 (quotearg_n_options): Abort if N is negative.
21367 Avoid overflow check on hosts where size_t is 64 bits and int
21368 is 32 bits, as overflow is impossible there.
21369 Fix off-by-one typo that caused unnecessary reallocation.
21371 2001-11-29 Paul Eggert <eggert@twinsun.com>
21373 Name space cleanup in generated parser.
21375 * doc/bison.texinfo (Bison Parser): Discuss system headers
21376 and their effect on the user name space.
21378 * src/bison.simple:
21379 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21380 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21381 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21383 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21384 on user names when possible.
21386 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21387 Simplify test for whather <alloca.h> exists.
21389 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21391 (<stdio.h>): Include if YYDEBUG.
21393 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21394 ! defined (yyoverflow) && ! defined (yymemcpy).
21396 (yymemcpy, yyparse): Rename local variables as needed so that
21397 they all begin with 'yy'.
21399 (yystrlen, yystpcpy): New functions.
21401 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21404 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21405 instead of relying on string.h functions. Use YYSTACK_ALLOC
21406 and YYSTACK_FREE instead of malloc and free.
21408 2001-11-30 Akim Demaille <akim@epita.fr>
21410 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21411 before their first uses.
21412 (YYBISON, YYPURE): Move to the top of the output.
21414 2001-11-30 Akim Demaille <akim@epita.fr>
21416 * tests/reduce.at (Useless Nonterminals): Fix.
21418 2001-11-30 Akim Demaille <akim@epita.fr>
21420 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21421 if body instead of `;' to pacify GCC's warnings.
21423 2001-11-30 Akim Demaille <akim@epita.fr>
21425 Instead of mapping the LHS of unused rules to -1, keep the LHS
21426 valid, but flag the rules as invalid.
21428 * src/gram.h (rule_t): `useful' is a new member.
21429 * src/print.c (print_grammar): Adjust.
21430 * src/derives.c (set_derives): Likewise.
21431 * src/reader.c (packgram, reduce_output): Likewise.
21432 * src/reduce.c (reduce_grammar_tables): Likewise.
21433 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21435 2001-11-30 Akim Demaille <akim@epita.fr>
21437 * src/reduce.c (reduce_output): Formatting changes.
21438 * src/print.c (print_results, print_grammar): Likewise.
21439 * tests/regression.at (Rule Line Numbers)
21440 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21442 2001-11-30 Akim Demaille <akim@epita.fr>
21444 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21445 useless nonterminals, move them at the end of the symbol arrays.
21446 (reduce_output): Adjust.
21447 * tests/reduce.at (Useless Nonterminals): Adjust.
21449 2001-11-30 Akim Demaille <akim@epita.fr>
21451 * src/reduce.c: Various comment/formatting changes.
21452 (nonterminals_reduce): New, extracted from...
21453 (reduce_grammar_tables): here.
21454 (reduce_grammar): Call nonterminals_reduce.
21456 2001-11-29 Paul Eggert <eggert@twinsun.com>
21458 * src/bison.simple (YYSTACK_REALLOC): Remove.
21459 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21460 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21462 (union yyalloc): New type.
21463 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21464 an arbitrary restriction on hosts where size_t is wider than int.
21466 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21467 a parser stack overflow. Allocate just one block of memory for all
21468 three stacks, instead of allocating three blocks; this typically is
21469 faster and reduces fragmentation.
21471 Do not limit the number of items in the stack to a value that fits
21472 in 'int', as this is an arbitrary limit on hosts with 64-bit
21473 size_t and 32-bit int.
21475 2001-11-29 Marc Autret <autret_m@epita.fr>
21477 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21478 of defining YYERROR_VERBOSE.
21479 [AT_DATA]: $4 is now out of C declarations in the prologue.
21481 2001-11-28 Marc Autret <autret_m@epita.fr>
21483 * src/reader.c (parse_dquoted_param): New.
21484 (parse_skel_decl): Use it.
21485 * src/lex.h: Add its prototype.
21486 * src/lex.c (literalchar): Become not static.
21488 2001-11-28 Marc Autret <autret_m@epita.fr>
21490 * src/output.h: And put its extern declaration here.
21491 * src/output.c (error_verbose): Define here.
21492 (prepare): Echo name modification.
21493 * src/getargs.h: Clean its extern declaration.
21494 * src/getargs.c (error_verbose_flag): Remove.
21495 (getargs): Remove case 'e'.
21496 * src/options.c (option_table): 'error-verbose' is now seen as simple
21500 * src/reader.c (read_declarations): Remove case tok_include.
21501 (parse_include_decl): Remove.
21502 * src/lex.h (token_t): Remove tok_include.
21503 * src/options.c (option_table): 'include' is now a simple command line
21506 2001-11-28 Marc Autret <autret_m@epita.fr>
21508 * src/bison.simple: Adjust muscle names.
21509 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21510 * src/output.c (prepare): s/_/-/ for the muscles names.
21511 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21513 2001-11-28 Marc Autret <autret_m@epita.fr>
21515 * src/bison.simple: Fix debug.
21516 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21518 2001-11-28 Akim Demaille <akim@epita.fr>
21520 * src/LR0.c (shifts_new): New.
21521 (save_shifts, insert_start_shift, augment_automaton): Use it.
21523 2001-11-28 Akim Demaille <akim@epita.fr>
21525 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21528 2001-11-28 Akim Demaille <akim@epita.fr>
21530 * src/closure.c (closure): Instead of looping over word in array
21531 then bits in words, loop over bits in array.
21533 2001-11-28 Akim Demaille <akim@epita.fr>
21535 * src/closure.c (closure): No longer optimize the special case
21536 where all the bits of `ruleset[r]' are set to 0, to make the code
21539 2001-11-28 Akim Demaille <akim@epita.fr>
21541 * src/closure.c (closure): `r' and `c' are new variables, used to
21542 de-obfuscate accesses to RULESET and CORE.
21544 2001-11-28 Akim Demaille <akim@epita.fr>
21546 * src/reduce.c (reduce_print): Use ngettext.
21547 (dump_grammar): Improve the trace accuracy.
21549 2001-11-28 Akim Demaille <akim@epita.fr>
21551 * src/reduce.c (dump_grammar): Don't translate trace messages.
21553 2001-11-28 Akim Demaille <akim@epita.fr>
21555 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21556 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21557 as all tags are free'ed afterwards.
21558 From Enrico Scholz.
21560 2001-11-27 Paul Eggert <eggert@twinsun.com>
21562 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21563 use alloca when we didn't want to, and vice versa.
21565 2001-11-27 Marc Autret <autret_m@epita.fr>
21567 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21569 * src/output.c (prepare): Remove its update.
21571 2001-11-27 Marc Autret <autret_m@epita.fr>
21573 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21574 Use %error-verbose.
21576 2001-11-27 Marc Autret <autret_m@epita.fr>
21578 * src/bison.simple: Remove YYERROR_VERBOSE using.
21579 Use %%error_verbose.
21580 (yyparse): Likewise.
21581 * src/output.c (prepare): Give its final value.
21582 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21583 * src/getargs.h: Add its extern declaration.
21584 * src/getargs.c (error_verbose_flag): New int.
21585 (getargs): Update to catch new case.
21586 * src/options.c (option_table): 'error-verbose' is a new option.
21587 (shortopts): Update.
21589 2001-11-27 Akim Demaille <akim@epita.fr>
21591 * src/system.h: Use intl/libgettext.h.
21592 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21594 2001-11-27 Akim Demaille <akim@epita.fr>
21596 * tests/torture.at (Exploding the Stack Size with Malloc):
21597 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21599 2001-11-27 Akim Demaille <akim@epita.fr>
21601 * src/files.c: Include error.h.
21602 Reported by Hans Aberg.
21604 2001-11-26 Marc Autret <autret_m@epita.fr>
21606 * src/reader.c (parse_include_decl): New, not yet implemented.
21607 (read_declarations): Add case tok_include.
21608 * src/getargs.h (include): Add its extern definition.
21609 * src/getargs.c (include): New const char *.
21610 (getargs): Add case '-I'.
21611 * src/options.c (option_table): Add include as command line and
21613 * src/lex.h (token_t): Add tok_include.
21615 2001-11-26 Akim Demaille <akim@epita.fr>
21617 * src/reader.c (readgram): Make sure rules for mid-rule actions
21618 have a lineno equal to that of their host rule.
21619 Reported by Hans Aberg.
21620 * tests/regression.at (Rule Line Numbers): New.
21622 2001-11-26 Akim Demaille <akim@epita.fr>
21624 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21627 2001-11-26 Akim Demaille <akim@epita.fr>
21629 * src/complain.c, src/complain.h (error): Remove, provided by
21632 2001-11-26 Akim Demaille <akim@epita.fr>
21634 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21635 issue an error message.
21636 * tests/regression.at (Invalid %directive): New.
21637 Reported by Hans Aberg.
21639 2001-11-26 Akim Demaille <akim@epita.fr>
21641 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21642 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21644 2001-11-26 Akim Demaille <akim@epita.fr>
21646 * src/conflicts.c (conflicts_print): Don't complain at all when
21647 there are no reduce/reduce conflicts, and as many shift/reduce
21648 conflicts as expected.
21649 * tests/regression.at (%expect right): Adjust.
21651 2001-11-23 Akim Demaille <akim@epita.fr>
21653 * lib/alloca.c: Update, from fileutils.
21655 2001-11-23 Akim Demaille <akim@epita.fr>
21657 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21659 2001-11-23 Akim Demaille <akim@epita.fr>
21661 * src/system.h: Include alloca.h.
21662 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21664 2001-11-23 Akim Demaille <akim@epita.fr>
21666 * src/print_graph.c (print_actions): Remove `rule', unused.
21667 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21668 pacify GCC's signed < unsigned warnings.
21669 * src/closure.c (itemsetsize): Likewise.
21670 * src/reader.c (symbol_list_new): Static.
21672 2001-11-23 Akim Demaille <akim@epita.fr>
21674 Attaching lineno to buckets is stupid, since only one copy of each
21675 symbol is kept, only the line of the first occurrence is kept too.
21677 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21678 * src/reader.c (rline_allocated): Remove, unused.
21679 (symbol_list): Have a `line' member.
21680 (symbol_list_new): New.
21681 (readgram): Use it.
21682 * src/print.c (print_grammar): Output the rule line numbers.
21683 * tests/regression.at (Solved SR Conflicts)
21684 (Unresolved SR Conflicts): Adjust.
21685 Reported by Hans Aberg.
21687 2001-11-22 Marc Autret <autret_m@epita.fr>
21689 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21691 2001-11-22 Marc Autret <autret_m@epita.fr>
21693 * src/muscle_tab.c (muscle_init): Remove initialization of
21695 * src/output.c (output_master_parser): Do it here.
21697 2001-11-20 Akim Demaille <akim@epita.fr>
21700 * configure.in (ALL_LINGUAS): Adjust.
21701 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21702 longer contains strings to translate.
21704 2001-11-19 Akim Demaille <akim@epita.fr>
21706 * src/conflicts.c (conflicts_print): Add a missing \n.
21708 2001-11-19 Akim Demaille <akim@epita.fr>
21710 * src/nullable.c (nullable_print): New.
21711 (set_nullable): Call it when tracing.
21712 Better locality of variables.
21714 2001-11-19 Akim Demaille <akim@epita.fr>
21716 * src/print.c (print_actions): Better locality of variables.
21718 2001-11-19 Akim Demaille <akim@epita.fr>
21720 * src/derives.c (print_derives): Fix and enrich.
21721 * src/closure.c (print_fderives): Likewise.
21723 2001-11-19 Akim Demaille <akim@epita.fr>
21725 * src/closure.c (itemsetend): Remove, replaced with...
21726 (itemsetsize): new.
21728 2001-11-19 Akim Demaille <akim@epita.fr>
21730 * src/LR0.c (kernel_end): Remove, replaced with...
21731 (kernel_size): new.
21733 2001-11-19 Akim Demaille <akim@epita.fr>
21735 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21738 2001-11-19 Akim Demaille <akim@epita.fr>
21740 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21742 2001-11-19 Akim Demaille <akim@epita.fr>
21744 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21746 * src/LR0.c: Likewise.
21747 (allocate_itemsets): Use arrays instead of pointers to clarify.
21749 2001-11-19 Akim Demaille <akim@epita.fr>
21751 * src/getargs.c (statistics_flag): Replace with...
21753 (longopts): Accept --trace instead of --statistics.
21754 * src/getargs.h, src/options.c: Adjust.
21755 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21756 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21758 2001-11-19 Akim Demaille <akim@epita.fr>
21760 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
21761 pointers to clarify the code.
21762 (save_reductions, save_shifts): Factor common parts of alternatives.
21764 2001-11-19 Akim Demaille <akim@epita.fr>
21766 * src/LR0.c (new_state, get_state): Complete TRACE code.
21767 * src/closure.c: Include `reader.h' to get `tags', needed by the
21769 Rename the conditional DEBUG as TRACE.
21770 Output consistently TRACEs to stderr, not stdout.
21771 * src/derives.c: Likewise.
21772 * src/reduce.c: (inaccessable_symbols): Using if is better style
21774 Use `#if TRACE' instead of `#if 0' for tracing code.
21776 2001-11-19 Akim Demaille <akim@epita.fr>
21778 * src/system.h (LIST_FREE, shortcpy): New.
21779 * src/LR0.c: Use them.
21780 * src/output.c (free_itemsets, free_reductions, free_shifts):
21781 Remove, replaced by LIST_FREE.
21783 2001-11-19 Akim Demaille <akim@epita.fr>
21785 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21786 (REDUCTIONS_ALLOC): New.
21787 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21790 2001-11-19 Akim Demaille <akim@epita.fr>
21792 * src/LR0.c (new_state): Complete trace code.
21793 * src/nullable.c (set_nullable): Don't translate traces.
21795 2001-11-19 Akim Demaille <akim@epita.fr>
21797 * src/print_graph.c (print_core): Better locality of variables.
21798 * src/print.c (print_core): Likewise.
21800 2001-11-19 Akim Demaille <akim@epita.fr>
21802 * src/vcg.c: You do the output, so you are responsible of the
21803 handling of VCG syntax, in particular: use quotearg.
21804 * src/print_graph.c: Don't.
21805 (print_actions): Don't output the actions as part of the nodes,
21806 since that's the job of the edges.
21807 (print_state): Don't output by hand: fill the node description,
21808 and ask for its output.
21810 2001-11-19 Akim Demaille <akim@epita.fr>
21812 * src/bison.simple (yyparse): When verbosely reporting an error,
21813 no longer put additional quotes around token names.
21814 * tests/calc.at: Adjust.
21816 2001-11-19 Akim Demaille <akim@epita.fr>
21818 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21819 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21820 * src/output.c: Adjust.
21822 2001-11-19 Akim Demaille <akim@epita.fr>
21824 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21826 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21828 2001-11-19 Akim Demaille <akim@epita.fr>
21830 * src/gram.h (rule_t): New.
21832 (rrhs, rlhs): Remove, part of state_t.
21833 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21834 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21835 * src/reader.c, src/reduce.c: Adjust.
21837 2001-11-19 Akim Demaille <akim@epita.fr>
21839 * src/reader.c (symbols_output): New, extracted from...
21840 (packsymbols): Here.
21843 2001-11-19 Akim Demaille <akim@epita.fr>
21845 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21846 (maxrhs): this new function.
21848 2001-11-19 Akim Demaille <akim@epita.fr>
21850 * src/lalr.c (F): New macro to access the variable F.
21853 2001-11-19 Akim Demaille <akim@epita.fr>
21855 * src/lalr.h (LA): New macro to access the variable LA.
21856 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21857 * src/lalr.c: Adjust.
21859 2001-11-19 Akim Demaille <akim@epita.fr>
21861 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21862 (set_state_table): handle the `lookaheads' members.
21864 2001-11-19 Akim Demaille <akim@epita.fr>
21866 * src/lalr.h (lookaheads): Removed array, whose contents is now
21868 (state_t): this structure.
21869 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21872 2001-11-19 Akim Demaille <akim@epita.fr>
21874 * src/lalr.h (consistent): Removed array, whose contents is now
21876 (state_t): this structure.
21877 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21880 2001-11-19 Akim Demaille <akim@epita.fr>
21882 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21883 contents are now members of...
21884 (state_t): this structure.
21885 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21888 2001-11-19 Akim Demaille <akim@epita.fr>
21890 * src/lalr.h (state_t): New.
21891 (state_table): Be a state_t * instead of a core **.
21892 (accessing_symbol): Remove, part of state_t.
21893 * src/lalr.c: Adjust.
21894 (set_accessing_symbol): Merge into...
21895 (set_state_table): this.
21896 * src/print_graph.c, src/conflicts.c: Adjust.
21898 2001-11-14 Akim Demaille <akim@epita.fr>
21900 * tests/calc.at, tests/output.at, tests/regression.at,
21901 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21902 now the tests are run in private dirs, therefore AC_CLEANUP and
21903 family can be simplified to 0-ary.
21904 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21905 use abs. path to find config.h.
21906 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21907 stderr, there can be way too much random noise.
21908 Instead pass -Werror to GCC and rely on the exit status.
21909 Reported by Wolfram Wagner.
21911 2001-11-14 Akim Demaille <akim@epita.fr>
21913 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21914 defined only if yyoverflow is defined, to avoid `warning: unused
21916 Reported by The Test Suite.
21918 2001-11-14 Akim Demaille <akim@epita.fr>
21920 * src/print.c: Include reduce.h.
21921 Reported by Hans Aberg.
21923 2001-11-14 Akim Demaille <akim@epita.fr>
21925 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21926 Revert a previous patch: these are really const.
21927 * src/conflicts.c (conflict_report): Additional useless pair of
21928 braces to pacify GCC's warnings for `if () if () {} else {}'.
21929 * src/lex.c (parse_percent_token): Replace equal_offset with
21932 Be sure to strdup `arg' when used, since there is no reason for
21933 token_buffer not to change.
21935 2001-11-14 Akim Demaille <akim@epita.fr>
21937 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21939 * src/main.c (main): Use them.
21940 Suggested by Hans Aberg.
21942 2001-11-12 Akim Demaille <akim@epita.fr>
21944 * src/system.h (ngettext): Now that we use ngettext, be sure to
21945 provide a default definition when NLS are not used.
21947 2001-11-12 Akim Demaille <akim@epita.fr>
21949 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21950 Use @kbd to denote user input.
21951 (Language and Grammar): ANSIfy the example.
21952 Adjust its layout for info/notinfo.
21953 (Location Tracking Calc): Output error messages to stderr.
21954 Output locations in a more GNUtically correct way.
21955 Fix a couple of Englishos.
21956 Adjust @group/@end group pairs.
21958 2001-11-12 Akim Demaille <akim@epita.fr>
21960 %expect was not functioning at all.
21962 * src/conflicts.c (expected_conflicts): Set to -1.
21963 (conflict_report): Use ngettext.
21964 (conflicts_print): Check %expect and make its violation an error.
21965 * doc/bison.texinfo (Expect Decl): Adjust.
21966 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21967 * tests/regression.at (%expect not enough, %expect right)
21968 (%expect too much): New.
21970 2001-11-12 Akim Demaille <akim@epita.fr>
21972 * tests/regression.at (Conflicts): Rename as...
21973 (Unresolved SR Conflicts): this.
21974 (Solved SR Conflicts): New.
21976 2001-11-12 Akim Demaille <akim@epita.fr>
21978 * src/reduce.c (print_results): Rename as...
21979 (reduce_output): This.
21980 Output to OUT, passed as argument, instead of output_obstack.
21981 (dump_grammar): Likewise.
21982 (reduce_free): New.
21984 (reduce_grammar): No longer call reduce_output, since...
21985 * src/print.c (print_results): do it.
21986 * src/main.c (main): Call reduce_free;
21988 2001-11-12 Akim Demaille <akim@epita.fr>
21990 * src/conflicts.c (print_reductions): Accept OUT as argument.
21991 Output to it, not to output_obstack.
21992 * src/print.c (print_actions): Adjust.
21994 2001-11-12 Akim Demaille <akim@epita.fr>
21996 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21997 the result instead of using...
21998 (src_total, rrc_total, src_count, rrc_count): Remove.
21999 (any_conflicts): Remove.
22000 (print_conflicts): Split into...
22001 (conflicts_print, conflicts_output): New.
22002 * src/conflicts.h: Adjust.
22003 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
22004 * src/print.c (print_grammar): Issue `\n' between two rules.
22005 * tests/regression.at (Conflicts): New.
22006 Reported by Tom Lane.
22008 2001-11-12 Akim Demaille <akim@epita.fr>
22010 * tests/regression.at (Invalid input): Remove, duplicate with
22011 ``Invalid input: 1''.
22013 2001-11-12 Akim Demaille <akim@epita.fr>
22015 * tests/torture.at (AT_DATA_STACK_TORTURE)
22016 (Exploding the Stack Size with Alloca)
22017 (Exploding the Stack Size with Malloc): New.
22019 2001-11-12 Akim Demaille <akim@epita.fr>
22021 * src/bison.simple (YYSTACK_REALLOC): New.
22022 (yyparse) [!yyoverflow]: Use it and free the old stack.
22023 Reported by Per Allansson.
22025 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
22027 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22028 define CPP macro, which substitute YYSTYPE by yystype.
22029 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22030 with yyltype/YYLTYPE. This allows inclusion of the generated
22031 header within the parser if the compiler, such as GGC, accepts
22032 multiple equivalent #defines.
22035 2001-11-05 Akim Demaille <akim@epita.fr>
22037 * src/reader.c (symbols_output): New, extracted from...
22038 (packsymbols): here.
22041 2001-11-05 Akim Demaille <akim@epita.fr>
22043 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22045 2001-11-05 Akim Demaille <akim@epita.fr>
22047 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22050 2001-11-05 Akim Demaille <akim@epita.fr>
22052 * src/options.h (struct option_table_struct): set_flags is void*.
22053 * src/options.c (longopts): Support `--output' and `%output'.
22055 * src/lex.h (tok_setopt): Remove, replaced with...
22056 (tok_intopt, tok_stropt): these new guys.
22057 * src/lex.c (getopt.h): Not needed.
22058 (token_buffer, unlexed_token_buffer): Not const.
22059 (percent_table): Promote `-' over `_' in directive names.
22060 Active `%name-prefix', `file-prefix', and `output'.
22061 (parse_percent_token): Accept possible arguments to directives.
22062 Promote `-' over `_' in directive names.
22064 2001-11-04 Akim Demaille <akim@epita.fr>
22066 * doc/bison.texinfo (Decl Summary): Split the list into
22067 `directives for grammars' and `directives for bison'.
22069 Add description of `%name-prefix', `file-prefix', and `output'.
22070 Promote `-' over `_' in directive names.
22071 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22072 Simplify the description of `--name-prefix'.
22073 Promote `-' over `_' in directive names.
22074 Promote `--output' over `--output-file'.
22075 Fix the description of `--defines'.
22076 * tests/output.at: Exercise %file-prefix and %output.
22078 2001-11-02 Akim Demaille <akim@epita.fr>
22080 * doc/refcard.tex: Update.
22082 2001-11-02 Akim Demaille <akim@epita.fr>
22084 * src/symtab.h (SUNDEF): New.
22085 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22086 stand for `uninitialized', instead of 0.
22087 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22088 * src/lex.c (lex): Adjust.
22090 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22092 Let yylex return it instead of a plain 0.
22093 Reported by Dick Streefland.
22095 2001-11-02 Akim Demaille <akim@epita.fr>
22097 * tests/regression.at (Mixing %token styles): New test.
22099 2001-11-02 Akim Demaille <akim@epita.fr>
22101 * src/reader.c (parse_thong_decl): Formatting changes.
22102 (token_translations_init): New, extracted from...
22103 (packsymbols): Here.
22106 2001-11-01 Akim Demaille <akim@epita.fr>
22108 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
22109 Check that `9foo.y' produces correct cpp guards.
22110 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22114 2001-11-01 Akim Demaille <akim@epita.fr>
22116 * tests/regression.at (Invalid input: 2): New.
22117 * src/lex.c (unlexed_token_buffer): New.
22118 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22122 2001-11-01 Akim Demaille <akim@epita.fr>
22124 * tests/calc.at: Catch up with 1.30.
22125 * configure.in: Bump to 1.49a.
22126 Adjust to newer Autotest.
22128 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
22130 * src/conflicts.c: Move global variables rrc_total and src_total ...
22131 (print_conflicts): here.
22132 * src/output.c (output): Free global variable user_toknums.
22133 * src/lex.c (token_obstack): Become static.
22135 2001-10-18 Akim Demaille <akim@epita.fr>
22137 * tests/atlocal.in (GCC): Add.
22138 * tests/calc.at: s/m4_match/m4_bmatch/.
22139 s/m4_patsubst/m4_bpatsubst/.
22140 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22141 * configure.in: AC_SUBST(GCC).
22143 2001-10-14 Marc Autret <autret_m@epita.fr>
22145 * src/options.c (create_long_option_table): Fix.
22147 2001-10-10 Akim Demaille <akim@epita.fr>
22149 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22151 2001-10-04 Akim Demaille <akim@epita.fr>
22153 * src/reader.c (parse_union_decl): Push the caracters in
22154 union_obstack, not attrs_obstack.
22156 2001-10-04 Akim Demaille <akim@epita.fr>
22158 Merge in the branch 1.29.
22160 * src/reader.c (packsymbols): Use a temporary obstack for
22161 `%%tokendef', since output_stack is already used elsewhere.
22163 2001-10-02 Akim Demaille <akim@epita.fr>
22167 2001-10-02 Akim Demaille <akim@epita.fr>
22171 2001-10-02 Akim Demaille <akim@epita.fr>
22173 * tests/regression.at (Invalid CPP headers): New.
22174 From Alexander Belopolsky.
22175 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22177 2001-10-02 Akim Demaille <akim@epita.fr>
22179 * tests/regression.at (Invalid input): New.
22180 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22183 2001-10-02 Akim Demaille <akim@epita.fr>
22185 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22187 2001-10-02 Akim Demaille <akim@epita.fr>
22189 * src/output.c (output_parser): Assert `skeleton'.
22190 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22194 2001-10-01 Marc Autret <autret_m@epita.fr>
22196 * src/lex.h: Echo modifications.
22197 * src/lex.c (unlex): Parameter is now token_t.
22200 2001-10-01 Marc Autret <autret_m@epita.fr>
22202 * src/main.c: Include lex.h.
22205 2001-09-29 Akim Demaille <akim@epita.fr>
22207 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22209 2001-09-28 Akim Demaille <akim@epita.fr>
22211 * tests/testsuite.at: Update to newer Autotest.
22212 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22214 2001-09-27 Akim Demaille <akim@epita.fr>
22216 Position independent wrapper.
22218 * tests/bison: Remove.
22219 * tests/bison.in: New.
22220 * configure.in: Adjust.
22222 2001-09-27 Paul Eggert <eggert@twinsun.com>
22224 Port quotearg fixes from tar 1.13.24.
22226 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22228 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22229 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22231 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22232 * m4/mbrtowc.m4: New file.
22233 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22234 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22236 2001-09-27 Akim Demaille <akim@epita.fr>
22240 2001-09-27 Akim Demaille <akim@epita.fr>
22244 2001-09-25 Akim Demaille <akim@epita.fr>
22246 * src/system.h: Include `xalloc.h'.
22247 Remove it from the C files.
22248 * src/files.c (output_files): Free the obstacks.
22249 * src/lex.c (init_lex): Rename as...
22252 * src/main.c (main): Use it.
22254 2001-09-24 Marc Autret <autret_m@epita.fr>
22256 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22257 to output informations in fout (FILE*).
22258 (open_graph, close_graph): Likewise.
22259 (output_graph, output_edge, output_node): Likewise.
22260 * src/vcg.h: Update function prototypes.
22261 * src/print_graph.c (print_graph): Open output graph file.
22262 (print_actions): Adjust.
22263 * src/files.h: Remove extern declaration.
22264 * src/files.c: Remove graph_obstack declaration.
22265 (open_files): Remove graph_obstack initialization.
22266 (output_files): Remove graph_obstack saving.
22268 2001-09-24 Marc Autret <autret_m@epita.fr>
22270 * src/files.c (compute_output_file_names): Fix.
22272 2001-09-24 Marc Autret <autret_m@epita.fr>,
22273 Akim Demaille <akim@epita.fr>
22275 * src/reader.c (reader): Remove call to free_symtab ().
22276 * src/main.c (main): Call it here.
22278 * src/conflicts.c (initialize_conflicts): Rename as...
22279 (solve_conflicts): this.
22280 * src/print.c (print_core, print_actions, print_state)
22281 (print_grammar): Dump to a file instead a `output_obstack'.
22282 (print_results): Dump `output_obstack', and then proceed with the
22284 * src/files.c (compute_output_file_names, close_files): New.
22285 (output_files): Adjust.
22286 * src/main.c (main): Adjust.
22288 2001-09-23 Marc Autret <autret_m@epita.fr>
22290 * src/files.c (compute_header_macro): Computes header macro name
22291 from spec_defines_file when given.
22293 2001-09-23 Marc Autret <autret_m@epita.fr>
22295 * src/files.c (output_files): Add default extensions.
22297 2001-09-22 Akim Demaille <akim@epita.fr>
22299 * src/conflicts.c (finalize_conflicts): Rename as...
22300 (free_conflicts): this.
22302 2001-09-22 Akim Demaille <akim@epita.fr>
22304 * src/gram.c (gram_free): Rename back as...
22306 (output_token_translations): Free `token_translations'.
22307 * src/symtab.c (free_symtab): Free the tag field.
22309 2001-09-22 Akim Demaille <akim@epita.fr>
22311 Remove `translations' as it is always set to true.
22313 * src/gram.h: Adjust.
22314 * src/reader.c (packsymbols, parse_token_decl): Adjust
22315 * src/print.c (print_grammar): Adjust.
22316 * src/output.c (output_token_translations): Adjust.
22317 * src/lex.c (lex): Adjust.
22318 * src/gram.c: Be sure the set pointers to NULL.
22319 (dummy): Rename as...
22322 2001-09-22 Akim Demaille <akim@epita.fr>
22324 * configure.in: Invoke AM_LIB_DMALLOC.
22325 * src/system.h: Use dmalloc.
22326 * src/LR0.c: Be sure to have pointers initialized to NULL.
22327 (allocate_itemsets): Allocate kernel_items only if needed.
22329 2001-09-22 Akim Demaille <akim@epita.fr>
22331 * configure.in: Bump to 1.29b.
22332 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22333 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22334 need xmalloc.c in calc.y.
22337 2001-09-21 Akim Demaille <akim@epita.fr>
22340 * Makefile.maint, config/config.guess, config/config.sub,
22341 * config/missing: Update from masters.
22342 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22344 * configure.in (ALL_LINGUAS): Add `tr'.
22346 2001-09-21 Akim Demaille <akim@epita.fr>
22348 * tests/Makefile.am (package.m4): Move to...
22349 ($(srcdir)/$(TESTSUITE)): here.
22351 2001-09-20 Akim Demaille <akim@epita.fr>
22353 * src/complain.c: No longer try to be standalone: use system.h.
22354 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22355 * src/complain.h: Likewise.
22356 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22357 Remove the unused variable `n'.
22358 From Albert Chin-A-Young.
22360 2001-09-18 Marc Autret <autret_m@epita.fr>
22362 * doc/bison.1: Update.
22363 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22365 (Option Cross Key): Update.
22368 2001-09-18 Marc Autret <autret_m@epita.fr>
22370 * tests/regression.at: New test (comment in %union).
22372 2001-09-18 Marc Autret <autret_m@epita.fr>
22374 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22376 Reported by Keith Browne.
22378 2001-09-18 Marc Autret <autret_m@epita.fr>
22380 * tests/output.at: Add tests for --defines and --graph.
22382 2001-09-18 Marc Autret <autret_m@epita.fr>
22384 * tests/output.at: Removes tests of %{header,src}_extension features.
22386 2001-09-18 Akim Demaille <akim@epita.fr>
22388 * tests/Makefile.am (package.m4): New.
22389 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22390 (_AT_CHECK_CALC_ERROR): Likewise.
22391 Factor the `, ' part of verbose error messages.
22393 2001-09-18 Marc Autret <autret_m@epita.fr>
22395 * src/getargs.c (longopts): Declare --defines and --graph as options
22396 with optional arguments.
22397 * src/files.h: Add extern declarations.
22398 * src/files.c (spec_graph_file, spec_defines_file): New.
22399 (output_files): Update.
22400 Remove CPP-outed code.
22402 2001-09-18 Marc Autret <autret_m@epita.fr>
22404 Turn off %{source,header}_extension feature.
22406 * src/files.c (compute_exts_from_gf): Update.
22407 (compute_exts_from_src): Update.
22408 (output_files): CPP-out useless code.
22409 * src/files.h: Remove {header,source}_extension extern declarations.
22410 * src/reader.c (parse_dquoted_param): CPP-out.
22411 (parse_header_extension_decl): Remove.
22412 (parse_source_extension_decl): Remove.
22413 (read_declarations): Remove cases tok_{hdrext,srcext}.
22414 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22415 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22417 2001-09-10 Akim Demaille <akim@epita.fr>
22419 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22420 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22421 (AT_CHECK_OUTPUT): this.
22422 Merely check ls' exit status, its output is useless.
22424 2001-09-10 Akim Demaille <akim@epita.fr>
22426 * tests/calc.at: Use m4_match.
22427 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22429 2001-09-10 Marc Autret <autret_m@epita.fr>,
22430 Akim Demaille <akim@epita.fr>
22432 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22434 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22436 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22437 * src/lex.h: Adjust prototype.
22438 (token_t): Add `tok_undef'.
22439 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22440 (parse_percent_token): Now returns token_t.
22441 Add default statement in switch.
22442 (lex): Separate `c' as an input variable, from the token_t result
22444 (unlexed): Is a token_t.
22446 2001-09-10 Akim Demaille <akim@epita.fr>
22448 * configure.in: Bump to 1.29a.
22450 2001-09-07 Akim Demaille <akim@epita.fr>
22454 2001-08-30 Akim Demaille <akim@epita.fr>
22456 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22457 * m4/atconfig.m4: Remove.
22458 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22459 * tests/bison: New.
22460 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22461 m4_if, m4_patsubst, and m4_regexp.
22462 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22463 `input' file instead of echo.
22465 2001-08-29 Akim Demaille <akim@epita.fr>
22469 2001-08-29 Akim Demaille <akim@epita.fr>
22473 2001-08-29 Paul Eggert <eggert@twinsun.com>
22475 * src/bison.simple (yyparse): Don't take the address of an
22476 item before the start of an array, as that doesn't conform to
22479 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22481 * doc/bison.texinfo (Location Tracking Calc): New node.
22483 2001-08-29 Paul Eggert <eggert@twinsun.com>
22485 * src/output.c (output): Do not define const, as this now
22486 causes more problems than it cures.
22488 2001-08-29 Akim Demaille <akim@epita.fr>
22490 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22492 Be sure to tag the `detailmenu'.
22494 2001-08-29 Akim Demaille <akim@epita.fr>
22496 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22497 download in a tmp dir.
22499 2001-08-28 Marc Autret <autret_m@epita.fr>
22501 * config/depcomp: New file.
22503 2001-08-28 Marc Autret <autret_m@epita.fr>
22505 * doc/bison.1 (mandoc): Adjust.
22506 From Juan Manuel Guerrero.
22508 2001-08-28 Marc Autret <autret_m@epita.fr>
22510 * src/print_graph.c (print_state): Fix.
22512 2001-08-27 Marc Autret <autret_m@epita.fr>
22514 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22516 Echo modifications to the functions prototypes.
22517 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22519 2001-08-27 Marc Autret <autret_m@epita.fr>
22521 * src/vcg.c: Include `xalloc.h'.
22522 (add_colorentry): New.
22523 (add_classname): New.
22524 (add_infoname): New.
22525 * src/vcg.h: Add new prototypes.
22527 2001-08-27 Akim Demaille <akim@epita.fr>
22529 * Makefile.maint: Sync. again with CVS Autoconf.
22531 2001-08-27 Akim Demaille <akim@epita.fr>
22533 * Makefile.maint: Formatting changes.
22534 (po-update, cvs-update, update): New targets.
22537 2001-08-27 Akim Demaille <akim@epita.fr>
22539 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22540 * Makefile.maint: Sync. with CVS Autoconf.
22542 2001-08-27 Marc Autret <autret_m@epita.fr>
22544 * src/vcg.h (struct infoname_s): New.
22545 (struct colorentry_s): New.
22546 (graph_s): New fields {vertical,horizontal}_order in structure.
22547 Add `infoname' field.
22548 Add `colorentry' field;
22549 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22550 (G_HORIZONTAL_ORDER): New.
22552 (G_COLORENTRY): New.
22553 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22554 Add output of `infoname'.
22555 Add output of `colorentry'.
22557 2001-08-27 Marc Autret <autret_m@epita.fr>
22559 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22560 This one shadowed a global parameter.
22562 2001-08-24 Marc Autret <autret_m@epita.fr>
22564 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22565 instead of `unsigned'.
22566 (print_state): Do not call obstack_object_size () in obstack_grow ()
22567 to avoid macro variables shadowing.
22569 2001-08-23 Marc Autret <autret_m@epita.fr>
22571 * src/lex.c (percent_table): Typo: s/naem/name/.
22573 Normalize new options declarations.
22575 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22577 * tests/suite.at: Exercise %header_extension and %source_extension.
22579 2001-08-16 Marc Autret <autret_m@epita.fr>
22581 * src/reader.c (parse_dquoted_param): New.
22582 (parse_header_extension_decl): Use it.
22583 (parse_source_extension_decl): Likewise.
22585 2001-08-16 Marc Autret <autret_m@epita.fr>
22587 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22588 (get_xxxx_str): Use assert () instead of complain ().
22589 Remove return invokations in default cases.
22590 (get_decision_str): Modify default behaviour. Remove second argument.
22591 Echo modifications on calls.
22592 (output_graph): Fix.
22594 2001-08-16 Marc Autret <autret_m@epita.fr>
22596 * src/getargs.c (usage): Update with ``-g, --graph''.
22598 2001-08-16 Marc Autret <autret_m@epita.fr>
22600 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22601 (Option Cross Key): Likewise.
22602 * doc/bison.1: Update.
22604 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
22606 * src/output.c (output_master_parser): Don't finish action_obstack.
22607 (output_parser): Don't care about the muscle action, here.
22608 (prepare): Copy the action_obstack in the action muscle.
22609 (output): Free action_obstack.
22611 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22613 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22614 will contain `%union' declaration.
22615 (parse_union_decl): Delete #line directive output.
22616 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22617 informations about %union.
22618 (parse_union_decl): Copy the union_obstack in the muscle stype.
22619 * src/bison.simple: Add new #line directive.
22620 Add typdef %%stype YYSTYPE.
22622 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22624 * src/bison.simple: Add new `#line' directive.
22626 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
22628 * src/bison.simple: New `#line' directive.
22629 * src/output.c (output_parser): Support new dynamic muscle input_line.
22631 2001-09-22 Marc Autret <autret_m@epita.fr>
22633 * src/output.c (output_master_parser): New.
22634 (output_parser): Be more re-entrant.
22636 2001-09-21 Marc Autret <autret_m@epita.fr>
22638 * src/reader.c (copy_definition, parse_union_decl): Update and use
22640 (copy_action): Likewise.
22641 Use obstack_1grow ().
22642 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22644 2001-09-21 Marc Autret <autret_m@epita.fr>
22646 * src/options.c (option_table): Adjust.
22647 * src/lex.c (parse_percent_token): Fix.
22649 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22651 * src/options.c (symtab.h): Include it, need by lex.h.
22653 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22655 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22656 is now an option_table_struct*.
22657 (option_strcmp): New function option_strcmp.
22658 (parse_percent_token): Call option_strcmp.
22659 * src/getargs.c (xalloc.h, options.h): Include it.
22660 (getargs): Call create_long_option_table.
22661 (getargs): Free longopts at the end of the function.
22662 (shortopts): Move in options.c.
22663 * src/options.c (create_long_option_table): New function. Convert
22664 information from option_table to option structure.
22665 * src/reader.c (options.h): Include it.
22667 * src/Makefile.am: Adjust.
22668 * src/options.c (option_table): Create from longopts and percent_table.
22669 * src/getargs.c (longopts): Delete.
22670 * src/lex.c (struct percent_table_struct): Delete.
22671 (percent_table): Delete.
22672 (options.h): Include it.
22673 * src/options.c: Create.
22674 * src/options.h: Create.
22675 Declare enum opt_access_e.
22676 Define struct option_table_struct.
22678 2001-09-20 Marc Autret <autret_m@epita.fr>
22680 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22683 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
22685 * src/bison.simple: s/%%filename/%%skeleton.
22686 * src/muscle_tab.c (getargs.h): Include it.
22687 (muscle_init): Insert new muscle skeleton.
22689 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
22691 * src/output.c (output_parser): Delete unused variable actions_dumped.
22693 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
22695 * src/output.c (output): Delete call to reader_output_yylsp.
22696 * src/reader.c (reader): Likewise.
22697 * src/reader.h: Delete declaration of reader_output_yylsp.
22699 2001-09-02 Marc Autret <autret_m@epita.fr>
22701 * src/reader.c: Include muscle_tab.h.
22702 (parse_union_decl): Update.
22703 (parse_macro_decl): Rename parse_muscle_decl.
22704 Update to use renamed functions and variable.
22705 (read_declarations, copy_action, read_additionnal_code, : Updated
22706 with correct variables and functions names.
22707 (packsymbols, reader): Likewise.
22709 * src/reader.h (muscle_obstack): Extern declaration update.
22711 * src/output.c: Include muscle_tab.h
22712 In all functions using macro_insert, change by using muscle_insert ().
22713 (macro_obstack): Rename muscle_obstack.
22714 Echo modifications in the whole file.
22715 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22716 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22717 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22719 * src/muscle_tab.h: Update double inclusion macros.
22720 (macro_entry_s): Rename muscle_entry_s.
22723 * src/muscle_tab.c: Include muscle_tab.h.
22724 Rename macro_tabble to muscle_table.
22725 (mhash1, mhash2, mcmp): Use muscle_entry.
22726 (macro_init): Rename muscle_init. Update.
22727 (macro_insert): Rename muscle_insert. Update.
22728 (macro_find): Rename muscle_find. Update.
22730 * src/main.c: Include muscle_tab.h.
22731 (main): Call muscle_init ().
22732 * src/Makefile.am (bison_SOURCES): Echo modifications.
22734 2001-09-02 Marc Autret <autret_m@epita.fr>
22736 Now the files macro_tab.[ch] are named muscle_tab.[ch].
22738 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22740 2001-09-02 Marc Autret <autret_m@epita.fr>
22742 * src/macrotab.c, src/macrotab.h: Remove.
22744 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
22746 * src/reader.c (copy_guard): Use muscle to specify the `#line'
22749 2001-09-01 Marc Autret <autret_m@epita.fr>
22751 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22752 to an explicit value to activate the feature. We do it here.
22754 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22756 * src/output.c (prepare): Delete the `filename' muscule insertion.
22757 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22758 (parse_union_decl): Likewise.
22759 * src/macrotab.c (macro_init): Initialize filename by infile.
22761 2001-08-31 Marc Autret <autret_m@epita.fr>
22763 * src/bison.simple (YYLSP_NEEDED): New definition.
22764 * src/output.c (prepare): Add macro insertion of `locations_flag'
22766 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22768 * src/output.c (prepare): Delete insertion of previous muscles,
22769 and insert the `prefix' muscles.
22770 * src/macrotab.c (macro_init): Likewise.
22771 (macro_init): Initialization prefix directive by `yy'.
22772 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
22773 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22774 yylval, yydebug, yyerror, yynerrs and yyparse.
22775 New directive `#define' to substitute yydebug, ... with option
22778 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22780 * src/main.c (main): Standardize.
22781 * src/output.c (output_table_data, output_parser): Likewise.
22782 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22784 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22786 * src/reader.c (read_additionnal_code): Rename %%user_code to
22788 * src/output.c (output): Rename %%declarations to %%prologue.
22789 * src/bison.simple: Echo modifications.
22791 2001-08-31 Marc Autret <autret_m@epita.fr>
22793 * src/reader.c (readgram): CleanUp.
22794 (output_token_defines): Likewise.
22795 (packsymbols): Likewise.
22796 (reader): Likewise.
22797 * src/output.c (output): CPP-out useless code.
22799 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22801 * src/reader.c (reader): Delete obsolete call to function
22802 output_trailers and output_headers.
22803 * src/output.h: Remove obsolete functions prototypes of output_headers
22804 and output_trailers.
22806 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
22808 * src/main.c: Include macrotab.h.
22809 * src/macrotab.h (macro_entry_s): Constify fields.
22810 Adjust functions prototypes.
22811 * src/macrotab.c (macro_insert): Constify key and value.
22812 (macro_find): Constify key.
22813 (macro_insert): Include 'xalloc.h'
22814 (macro_insert): Use XMALLOC.
22815 (macro_find): Constify return value.
22816 * src/output.c (output_table_data): Rename table to table_data.
22817 (output_parser): Constify macro_key, macro_value.
22819 2001-08-30 Marc Autret <autret_m@epita.fr>
22821 * src/reader.c (parse_skel_decl): New.
22822 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
22823 * src/lex.h (token_t): New token `tok_skel'.
22824 * src/lex.c (percent_table): Add skeleton option entry.
22827 2001-08-29 Marc Autret <autret_m@epita.fr>
22829 * src/bison.simple: Add %%user_code directive at the end.
22830 * src/reader.c (read_additionnal_code): New.
22832 * src/output.c (output_program): Remove.
22835 2001-08-28 Marc Autret <autret_m@epita.fr>
22837 * src/output.c (output_actions): Clean up.
22838 (output_gram): CPP-out useless code.
22839 * src/reader.c (reader): Clean up, CPP-out useless code.
22841 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
22843 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
22845 * src/bison.simple: Add `%%definitions'.
22847 2001-08-28 Marc Autret <autret_m@epita.fr>
22849 * config/depcomp: New file.
22851 2001-08-27 Paul Eggert <eggert@twinsun.com>
22853 * src/bison.simple (yyparse): Don't take the address of an
22854 item before the start of an array, as that doesn't conform to
22857 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22859 * src/output.c (output): Remove the initialization of the macro
22860 obstack. It was done too late here.
22862 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22864 (reader): Initialize the macro obstack here, since we need it to grow
22865 '%define' directives.
22867 * src/reader.h: Declare the macro obstack as extern.
22869 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22871 * src/output.c (output_parser): Fix. Store single '%' characters in
22872 the output obstack instead of throwing them away.
22874 2001-08-27 Akim Demaille <akim@epita.fr>
22876 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22878 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22880 * lib/Makefile.am: Adjust.
22882 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22884 * src/bison.simple: Update and add '%%' directives.
22886 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22888 * src/reader.c (reader): Remove calls to 'output_headers' and
22889 'output_trailers'. Remove some C output.
22890 (readgram): Disable a piece of code that was writing a default
22891 definition for 'YYSTYPE'.
22892 (reader_output_yylsp): Remove.
22893 (packsymbols): Output token defintions to a macro.
22894 (copy_definition): Disable C output.
22896 * src/reader.c (parse_macro_decl): New function used to parse macro
22898 (copy_string2): Put the body of copy_string into this new function.
22899 Add a parameter to let the caller choose whether he wants to copy the
22900 string delimiters or not.
22901 (copy_string): Be a simple call to copy_string2 with the last argument
22903 (read_declarations): Add case for macro definition.
22904 (copy_identifier): New.
22905 (parse_macro_decl): Read macro identifiers using copy_identifier
22908 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22910 * src/output.c (prepare): Add prefixed names.
22911 (output_parser): Output semantic actions.
22912 (output_parser): Fix bug on '%%line' directives.
22914 * src/output.c (output_headers): Remove. The C code printed by this
22915 function should now be in the skeletons.
22916 (output_trailers): Remove.
22917 (output): Disable call to 'reader_output_yylsp'.
22918 (output_rule_data): Do not output tables to the table obstack.
22920 * src/output.c: Remove some C dedicated output.
22921 Improve the use of macro and output obstacks.
22922 (output_defines): Remove.
22924 * src/output.c (output_token_translations): Associate 'translate'
22925 table with a macro. No output to the table obstack.
22926 (output_gram): Same for 'rhs' and 'prhs'.
22927 (output_stos): Same for 'stos'.
22928 (output_rule_data): Same for 'r1' and 'r2'.
22929 (token_actions): Same for 'defact'.
22930 (goto_actions): Same for 'defgoto'.
22931 (output_base): Same for 'pact' and 'pgoto'.
22932 (output_table): Same for 'table'.
22933 (output_check): Same for 'check'.
22935 * src/output.c (output_table_data): New function.
22936 (output_short_table): Remove.
22937 (output_short_or_char_table): Remove.
22939 * src/output.c (output_parser): Replace most of the skeleton copy code
22940 with something new. Skeletons are now processed character by character
22941 rather than line by line, and Bison looks for '%%' macros. This is the
22942 first step in making Bison's output process (a lot) more flexible.
22943 (output_parser): Use the macro table.
22945 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22947 * src/main.c (main): Initialize the macro table.
22949 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22951 * src/lex.c (percent_table): Add tok_define.
22952 * src/lex.h: Add tok_define.
22954 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22956 * src/macrotab.c: New file.
22957 * src/macrotab.h: New file.
22958 * src/Makefile.am: Update.
22960 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22962 * lib/hash.c: New file.
22963 * lib/hash.h: New file.
22964 * lib/Makefile.am: Update.
22966 2001-08-15 Akim Demaille <akim@epita.fr>
22970 2001-08-15 Marc Autret <autret_m@epita.fr>
22972 * src/reader.c (readgram): Indent output macro YYSTYPE.
22973 (packsymbols): Likewise.
22974 (output_token_defines): Likewise.
22975 * src/files.c: Standardize.
22976 (compute_header_macro): New.
22977 (defines_obstack_save): New. Use compute_header_macro.
22978 (output_files): Update. Use defines_obstack_save.
22980 2001-08-15 Akim Demaille <akim@epita.fr>
22982 * doc/bison.texinfo (Table of Symbols): Document
22983 YYSTACK_USE_ALLOCA.
22985 2001-08-15 Akim Demaille <akim@epita.fr>
22987 * missing: Update from CVS Automake.
22988 * config/config.guess, config/config.sub, config/texinfo.tex:
22989 Update from gnu.org.
22991 2001-08-15 Akim Demaille <akim@epita.fr>
22993 * Makefile.maint: Sync with CVS Autoconf.
22995 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
22997 * doc/bison.texinfo: Include GNU Free Documentation License from
22999 * doc/fdl.texi: Add to package.
23001 2001-08-14 Marc Autret <autret_m@epita.fr>
23003 Turn on %{source,header}_extension features.
23005 * src/lex.c (percent_table): Un-CPP out header_extension and
23007 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
23008 (compute_exts_from_src): Remove conditions. It restores priorities
23011 2001-08-14 Marc Autret <autret_m@epita.fr>
23013 * src/files.c (compute_base_names): Add extensions computing when
23014 `--file-prefix' used.
23015 Standardize function calls.
23017 2001-08-13 Marc Autret <autret_m@epita.fr>
23019 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
23020 defining it (defined but null disables alloca).
23022 2001-08-13 Marc Autret <autret_m@epita.fr>
23024 * src/bison.simple (_yy_memcpy): CPP reformat.
23026 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
23028 * tests/atconfig.in (CPPFLAGS): Fix.
23030 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
23032 * doc/bison.texinfo: Include GNU General Public License from
23034 * doc/gpl.texi: Add to package.
23036 2001-08-10 Marc Autret <autret_m@epita.fr>
23038 * src/print_graph.h: Fix.
23039 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23041 2001-08-10 Akim Demaille <akim@epita.fr>
23043 * src/system.h: Provide default declarations for stpcpy, strndup,
23046 2001-08-10 Robert Anisko <anisko_r@epita.fr>
23048 * doc/bison.texinfo (Locations): Update @$ stuff.
23050 2001-08-09 Robert Anisko <anisko_r@epita.fr>
23052 * src/bison.simple (YYLLOC_DEFAULT): Update.
23055 2001-08-08 Marc Autret <autret_m@epita.fr>
23057 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
23058 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23059 Reported by Fabrice Bauzac.
23061 2001-08-08 Marc Autret <autret_m@epita.fr>
23063 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23064 * src/vcg.c (output_node): Fix.
23065 * src/vcg.h: Cleanup.
23066 * src/print_graph.c: Add comments.
23067 (node_output_size): New global variable. Simplify the formatting of
23068 the VCG graph output.
23069 (print_actions): Unused code is now used. It notifies the final state
23070 and no action states in the VCG graph. It also give the reduce actions.
23071 The `shift and goto' edges are red and the `go to state' edges are
23073 Get the current node name and node_obstack by argument.
23074 (node_obstack): New variable.
23075 (print_state): Manage node_obstack.
23076 (print_core): Use node_obstack given by argument.
23077 A node is not only computed here but in print_actions also.
23078 (print_graph): CPP out useless code instead of commenting it.
23080 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
23082 * tests/atconfig.in (CPPFLAGS): Fix.
23084 2001-08-07 Akim Demaille <akim@epita.fr>
23086 * src/print_graph.c (quote): New.
23087 (print_core): Use it.
23089 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
23091 * src/vcg.c (complain.h): Include it.
23092 Unepitaize `return' invocations.
23093 [NDEBUG] (main): Remove.
23094 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
23095 * src/files.c (open_files): Initialize graph_obstack.
23096 * src/print_graph.c (print_actions): CPP out useless code.
23097 (print_core): Don't output the last `\n' in labels.
23099 * src/files.c (output_files): Output the VCG file.
23100 * src/main.c (main): Invoke print_graph ();
23102 2001-08-06 Marc Autret <autret_m@epita.fr>
23104 Automaton VCG graph output.
23105 Using option ``-g'' or long option ``--graph'', you can generate
23106 a gram_filename.vcg file containing a VCG description of the LALR (1)
23107 automaton of your grammar.
23109 * src/main.c: Call to print_graph() function.
23110 * src/getargs.h: Update.
23111 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23112 (graph_flag): New flag.
23113 (longopts): Update.
23114 (getargs): Add case `g'.
23115 * src/files.c (graph_obstack): New obstack struct.
23116 (open_files): Initialize new obstack.
23117 (output_files): Saves graph_obstack if required.
23118 * src/files.h (graph_obstack): New extern declaration.
23119 * src/Makefile.am: Add new source files.
23121 2001-08-06 Marc Autret <autret_m@epita.fr>
23123 * src/print_graph.c, src/print_graph.h (graph): New.
23124 * src/vcg.h: New file.
23125 * src/vcg.c: New file, VCG graph handling.
23127 2001-08-06 Marc Autret <autret_m@epita.fr>
23129 Add of %source_extension and %header_extension which specify
23130 the source or/and the header output file extension.
23132 * src/files.c (compute_base_names): Remove initialisation of
23133 src_extension and header_extension.
23134 (compute_exts_from_gf): Update.
23135 (compute_exts_from_src): Update.
23136 (output_files): Update.
23137 * src/reader.c (parse_header_extension_decl): New.
23138 (parse_source_extension_decl): New.
23139 (read_declarations): New case statements for the new tokens.
23140 * src/lex.c (percent_table): Add entries for %source_extension
23141 and %header_extension.
23142 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23144 2001-08-06 Marc Autret <autret_m@epita.fr>
23146 * configure.in: Bump to 1.28c.
23147 * doc/bison.texinfo: Texinfo thingies.
23149 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
23151 * tests/atconfig.in (CPPFLAGS): Add.
23152 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23154 2001-08-03 Akim Demaille <akim@epita.fr>
23158 2001-08-03 Akim Demaille <akim@epita.fr>
23160 * tests/Makefile.am (check-local): Ship testsuite.
23161 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23162 Include `string.h'.
23164 2001-08-03 Akim Demaille <akim@epita.fr>
23166 * configure.in: Try using -Wformat when compiling.
23168 2001-08-03 Akim Demaille <akim@epita.fr>
23170 * configure.in: Bump to 1.28b.
23172 2001-08-03 Akim Demaille <akim@epita.fr>
23174 * src/complain.c: Adjust strerror_r portability issues.
23176 2001-08-03 Akim Demaille <akim@epita.fr>
23180 2001-08-03 Akim Demaille <akim@epita.fr>
23182 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23183 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23184 * src/getargs.c: Include complain.h.
23185 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23186 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23188 2001-08-03 Akim Demaille <akim@epita.fr>
23190 * src/reader.c (readgram): Display hidden chars in error messages.
23192 2001-08-03 Akim Demaille <akim@epita.fr>
23194 Update to gettext 0.10.39.
23196 2001-08-03 Akim Demaille <akim@epita.fr>
23198 * lib/strspn.c: New.
23200 2001-08-01 Marc Autret <autret_m@epita.fr>
23202 * doc/bison.texinfo: Update.
23203 * doc/bison.1 (mandoc): Update.
23204 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23205 * src/files.c: Support output files extensions computing.
23206 (src_extension): New static variable.
23207 (header_extension): New static variable.
23208 (tr): New function.
23209 (get_extension_index): New function, gets the index of an extension
23210 filename in a string.
23211 (compute_exts_from_gf): New function, computes extensions from the
23212 grammar file extension.
23213 (compute_exts_from_src): New functions, computes extensions from the
23214 C source file extension, file given by ``-o'' option.
23215 (compute_base_names): Update.
23216 (output_files): Update.
23218 2001-08-01 Robert Anisko <anisko_r@epita.fr>
23220 * doc/bison.texi: Document @$.
23221 (Locations): New section.
23223 2001-07-18 Akim Demaille <akim@epita.fr>
23225 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23226 * config/prev-version.txt, config/move-if-change: New.
23227 * Makefile.am: Adjust.
23229 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
23231 * src/bison.simple (yyparse): Suppress warning `comparaison
23232 between signed and unsigned'.
23234 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
23236 * src/getargs.h (raw_flag): Remove.
23237 * src/getargs.c: Die on `-r'/`--raw'.
23238 * src/lex.c (parse_percent_token): Die on `%raw'.
23239 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23240 * tests/calc.at: Suppress test with option `--raw'.
23242 2001-07-14 Akim Demaille <akim@epita.fr>
23245 * configure.in: Require Autoconf 2.50.
23246 Update to gettext 0.10.38.
23248 2001-03-16 Akim Demaille <akim@epita.fr>
23250 * doc/bison.texinfo: ANSIfy the examples.
23252 2001-03-16 Akim Demaille <akim@epita.fr>
23254 * getargs.c (skeleton): New variable.
23255 (longopts): --skeleton is a new option.
23256 (shortopts, getargs): -S is a new option.
23257 * getargs.h: Declare skeleton.
23258 * output.c (output_parser): Use it.
23260 2001-03-16 Akim Demaille <akim@epita.fr>
23262 * m4/strerror_r.m4: New.
23263 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23264 * lib/error.h, lib/error.c: Update.
23266 2001-03-16 Akim Demaille <akim@epita.fr>
23268 * src/getargs.c (longopts): Clean up.
23270 2001-02-21 Akim Demaille <akim@epita.fr>
23272 * src/reader.c (gensym): `gensym_count' is your own.
23273 Use a static buf to create the symbol name, as token_buffer is no
23276 2001-02-08 Akim Demaille <akim@epita.fr>
23278 * src/conflicts.c (conflict_report): Be sure not to append to res
23279 between two calls, which could happen if both first sprintf were
23280 skipped, but not the first cp += strlen.
23282 2001-02-08 Akim Demaille <akim@epita.fr>
23284 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23285 New, from fileutils 4.0.37.
23286 * configure.in: Require Autoconf 2.49c. I took some time before
23287 making this decision. This is the only way out for portability
23288 issues in Bison, it would mean way too much duplicate effort to
23289 import in Bison features implemented in 2.49c since 2.13.
23290 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23292 2001-02-02 Akim Demaille <akim@epita.fr>
23294 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
23295 * lib/xalloc.h, lib/xmalloc.c: Update.
23297 2001-01-19 Akim Demaille <akim@epita.fr>
23299 Get rid of the ad hoc handling of token_buffer in the scanner: use
23302 * src/lex.c (token_obstack): New.
23303 (init_lex): Initialize it. No longer call...
23304 (grow_token_buffer): this. Remove it.
23305 Adjust all the places which used it to use the obstack.
23307 2001-01-19 Akim Demaille <akim@epita.fr>
23309 * src/lex.h: Rename all the tokens:
23310 s/\bENDFILE\b/tok_eof/g;
23311 s/\bIDENTIFIER\b/tok_identifier/g;
23313 Let them be enums, not #define, to ease debugging.
23314 Adjust all the code.
23316 2001-01-18 Akim Demaille <akim@epita.fr>
23318 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23319 * src/lex.c (maxtoken, grow_token_buffer): Static.
23321 2001-01-18 Akim Demaille <akim@epita.fr>
23323 Since we now use obstacks, more % directives can be enabled.
23325 * src/lex.c (percent_table): Also accept `%yacc',
23326 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23328 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23329 instead of returning a token.
23330 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23331 * src/reader.c (read_declarations): Adjust.
23332 * src/files.c (open_files): Don't call `compute_base_names', don't
23333 compute `attrsfile' since they depend upon data which might be
23334 *in* the input file now.
23335 (output_files): Do it here.
23336 * src/output.c (output_headers): Document the fact that this patch
23337 introduces a guaranteed SEGV for semantic parsers.
23338 * doc/bison.texinfo: Document them.
23339 * tests/suite.at: Exercise these %options.
23341 2000-12-20 Akim Demaille <akim@epita.fr>
23343 Also handle the output file (--verbose) with obstacks.
23345 * files.c (foutput): Remove.
23346 (output_obstack): New.
23347 Adjust all dependencies.
23348 * src/conflicts.c: Return a string.
23349 * src/system.h (obstack_grow_string): Rename as...
23350 (obstack_sgrow): this. Be ready to work with non literals.
23351 (obstack_fgrow4): New.
23353 2000-12-20 Akim Demaille <akim@epita.fr>
23355 * src/files.c (open_files): Fix the computation of short_base_name
23356 in the case of `-o foo.tab.c'.
23358 2000-12-20 Akim Demaille <akim@epita.fr>
23360 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23361 (copy_dollar): Now that everything uses obstacks, get rid of the
23364 2000-12-20 Akim Demaille <akim@epita.fr>
23366 * src/files.c (open_files): Actually the `.output' file is based
23367 on the short_base_name, not base_name.
23368 * tests/suite.at (Checking output file names): Adjust.
23370 2000-12-20 Akim Demaille <akim@epita.fr>
23372 * src/bison.s1: Remove, we now use directly...
23373 * src/bison.simple: this.
23374 * src/Makefile.am: Use pkgdata instead of data.
23376 2000-12-20 Akim Demaille <akim@epita.fr>
23378 * src/files.c (guard_obstack): New.
23379 (open_files): Initialize it.
23380 (output_files): Dump it...
23381 * src/files.h: Export it.
23382 * src/reader.c (copy_guard): Use it.
23384 2000-12-19 Akim Demaille <akim@epita.fr>
23386 * src/files.c (outfile, defsfile, actfile): Removed as global
23388 (open_files): Don't compute them.
23389 (output_files): Adjust.
23390 (base_name, short_base_name): Be global.
23391 Adjust dependencies.
23393 2000-12-19 Akim Demaille <akim@epita.fr>
23395 * src/files.c (strsuffix): New.
23396 (stringappend): Be just like strcat but allocate.
23397 (base_names): Eve out from open_files.
23398 Try to simplify the rather hairy computation of base_name and
23400 (open_files): Use it.
23401 * tests/suite.at (Checking output file names): New test.
23403 2000-12-19 Akim Demaille <akim@epita.fr>
23405 * src/system.h (obstack_grow_literal_string): Rename as...
23406 (obstack_grow_string): this.
23407 * src/output.c (output_parser): Recognize `%% actions' instead of
23409 * src/bison.s1: s/$/%% actions/.
23410 * src/bison.hairy: Likewise.
23412 2000-12-19 Akim Demaille <akim@epita.fr>
23414 * src/output.c (output_parser): Compute the `#line' lines when
23416 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23417 Suggested by Hans Aberg.
23419 2000-12-19 Akim Demaille <akim@epita.fr>
23421 Let the handling of the skeleton files be local to the procedures
23424 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23426 (fparser, open_extra_files): Remove.
23427 (open_files, output_files): Don't take care of fparser.
23428 * src/files.h: Adjust.
23429 * src/output.c (output_parser): Open and close the file to the
23431 * src/reader.c (read_declarations): When %semantic_parser, open
23434 2000-12-19 Akim Demaille <akim@epita.fr>
23436 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23437 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23439 2000-12-19 Akim Demaille <akim@epita.fr>
23441 * src/files.c (open_files): Yipee! We no longer need all the code
23442 looking for `/tmp' since we have no tmp file.
23444 2000-12-19 Akim Demaille <akim@epita.fr>
23446 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23448 * src/files.c (open_files): Less dependency on MSDOS etc.
23450 2000-12-14 Akim Demaille <akim@epita.fr>
23452 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23453 Provide a default definition.
23454 Use it when executing the default @ action.
23455 * src/reader.c (reader_output_yylsp): No longer include
23456 `timestamp' and `text' in the default YYLTYPE.
23458 2000-12-12 Akim Demaille <akim@epita.fr>
23460 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23461 (copy_guard): Quote the file names.
23462 Reported by Laurent Mascherpa.
23464 2000-12-12 Akim Demaille <akim@epita.fr>
23466 * src/output.c (output_headers, output_program, output): Be sure
23467 to escape special characters when outputting filenames.
23468 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23469 (output_headers): Don't depend on them, Use ACTSTR.
23471 2000-11-17 Akim Demaille <akim@epita.fr>
23473 * lib/obstack.h: Formatting changes.
23474 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23475 prevents type checking.
23476 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23477 cast the value to (void *): assigning a `foo *' to a `void *'
23479 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23480 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23483 2000-11-17 Akim Demaille <akim@epita.fr>
23485 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23487 (suite.m4, regression.m4, calc.m4): these.
23488 * tests/atgeneral.m4: Update from CVS Autoconf.
23490 2000-11-17 Akim Demaille <akim@epita.fr>
23492 * tests/regression.m4 (%union and --defines): New test,
23493 demonstrating a current bug in the obstack implementation.
23495 2000-11-17 Akim Demaille <akim@epita.fr>
23497 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23499 Use them to declare the variables which are global or local to
23502 2000-11-17 Akim Demaille <akim@epita.fr>
23504 * acconfig.h: Remove, no longer used.
23506 2000-11-07 Akim Demaille <akim@epita.fr>
23508 * src: s/Copyright (C)/Copyright/g.
23510 2000-11-07 Akim Demaille <akim@epita.fr>
23512 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23514 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23516 2000-11-07 Akim Demaille <akim@epita.fr>
23518 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23519 Merge in a single CPP if/else.
23521 2000-11-07 Akim Demaille <akim@epita.fr>
23523 * src/output.c (output): Remove useless variables.
23524 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23525 argument `data' for consistency with the prototypes.
23526 Qualify it `const'.
23527 (obstack_copy, obstack_copy0): Rename the second argument as
23528 `address' for consistency. Qualify it `const'.
23529 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23530 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23531 `const' their input argument (`data' or `address').
23532 Adjust the corresponding macros to include `const' in casts.
23534 2000-11-03 Akim Demaille <akim@epita.fr>
23536 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23537 s/PFILE1/BISON_HAIRY/.
23538 Adjust dependencies.
23540 2000-11-03 Akim Demaille <akim@epita.fr>
23542 For some reason, this was not applied.
23544 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23545 `unlink': it's no longer used.
23547 2000-11-03 Akim Demaille <akim@epita.fr>
23549 * src/files.c (skeleton_find): New function, eved out of...
23550 (open_files, open_extra_files): here.
23552 2000-11-03 Akim Demaille <akim@epita.fr>
23554 Don't use `atexit'.
23556 * src/files.c (obstack_save): New function.
23557 (done): Rename as...
23558 (output_files): this.
23559 Use `obstack_save'.
23560 * src/main.c (main): Don't use `atexit' to register `done', since
23561 it no longer has to remove tmp files, just call `output_files'
23562 when there are no errors.
23564 2000-11-02 Akim Demaille <akim@epita.fr>
23566 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23567 `unlink': it's no longer used.
23568 * src/files.h: Formatting changes.
23570 2000-11-02 Akim Demaille <akim@epita.fr>
23572 Remove the last uses of mktemp and unlink/delete.
23574 * src/files.c (fdefines, ftable): Removed.
23575 (defines_ostack, table_obstack): New.
23576 Adjust dependencies of the former into uses of the latter.
23577 * src/output.c (output_short_or_char_table, output_short_table):
23578 Convert to using obstacks.
23579 * src/reader.c (copy_comment2): Accept one FILE * and two
23581 (output_token_defines, reader_output_yylsp): Use obstacks.
23582 * src/system.h (obstack_fgrow3): New.
23583 * po/POTFILES.in: Adjust.
23585 2000-11-01 Akim Demaille <akim@epita.fr>
23587 Change each use of `fattrs' into a use of `attrs_obstack'.
23589 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23590 * src/files.c (fattrs): Remove.
23591 (attrs_obstack): New.
23592 Adjust all dependencies.
23593 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23595 2000-11-01 Akim Demaille <akim@epita.fr>
23597 Introduce obstacks.
23598 Change each use of `faction' into a use of `action_obstack'.
23600 * lib/obstack.h, lib/obstack.c: New files.
23601 * src/files.c (faction): Remove.
23602 (action_obstack): New.
23603 Adjust all dependencies.
23605 2000-10-20 Akim Demaille <akim@epita.fr>
23607 * lib/quote.h (PARAMS): New macro. Use it.
23609 2000-10-16 Akim Demaille <akim@epita.fr>
23611 * src/output.c (output_short_or_char_table): New function.
23612 (output_short_table, output_token_translations): Use it.
23613 (goto_actions): Use output_short_table.
23615 2000-10-16 Akim Demaille <akim@epita.fr>
23617 * src/symtab.c (bucket_new): New function.
23620 * src/output.c (output_short_table): New argument to display the
23621 comment associated with the table.
23622 Adjust dependencies.
23623 (output_gram): Use it.
23624 (output_rule_data): Nicer output layout for YYTNAME.
23626 2000-10-16 Akim Demaille <akim@epita.fr>
23628 * src/lex.c (read_typename): New function.
23630 * src/reader.c (copy_dollar): Likewise.
23632 2000-10-16 Akim Demaille <akim@epita.fr>
23634 * src/reader.c (copy_comment2): Expect the input stream to be on
23635 the `/' which is suspected to open a comment, instead of being
23636 called after `//' or `/*' was read.
23637 (copy_comment, copy_definition, parse_union_decl, copy_action)
23638 (copy_guard): Adjust.
23640 2000-10-16 Akim Demaille <akim@epita.fr>
23642 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23643 `read_signed_integer'.
23645 2000-10-16 Akim Demaille <akim@epita.fr>
23647 * src/reader.c (copy_dollar): New function.
23648 (copy_guard, copy_action): Use it.
23650 2000-10-16 Akim Demaille <akim@epita.fr>
23652 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23653 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23654 New files, from Fileutils 4.0.27.
23655 * src/main.c (printable_version): Remove.
23656 * src/lex.c, src/reader.c: Use `quote'.
23658 2000-10-04 Akim Demaille <akim@epita.fr>
23660 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23662 2000-10-04 Akim Demaille <akim@epita.fr>
23664 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23666 2000-10-04 Akim Demaille <akim@epita.fr>
23668 When a literal string is used to define two different tokens,
23669 `bison -v' segfaults.
23670 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23672 * tests/regression.m4: New file.
23673 Include the core of the sample provided by Piotr Gackiewicz.
23674 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23677 2000-10-04 Akim Demaille <akim@epita.fr>
23679 * src/reader.c (parse_expect_decl): Keep `count' within the size
23683 2000-10-02 Paul Eggert <eggert@twinsun.com>
23685 * bison.s1 (yyparse): Assign the default value
23686 unconditionally, to avoid a GCC warning and make the parser a
23689 2000-10-02 Akim Demaille <akim@epita.fr>
23691 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23694 2000-10-02 Akim Demaille <akim@epita.fr>
23696 * src/derives.c, src/print.c, src/reduce.c: To ease the
23697 translation, move some `\n' out of the translated strings.
23699 2000-10-02 Akim Demaille <akim@epita.fr>
23701 The location tracking mechanism is precious for parse error
23702 messages. Nevertheless, it is enabled only when `@n' is used in
23703 the grammar, which is a different issue (you can use it in error
23704 message, but not in the grammar per se). Therefore, there should
23705 be another means to enable it.
23707 * src/getargs.c (getargs): Support `--locations'.
23708 (usage): Report it.
23709 * src/getargs.h (locationsflag): Export it.
23710 * src/lex.c (percent_table): Support `%locations'.
23711 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23712 with `locationsflag'.
23713 * doc/bison.texinfo: Document `--locations' and `%locations'.
23715 * tests/calc.m4: Test it.
23717 For regularity of the names, replace each
23718 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23719 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23720 In addition replace each `flag' with `_flag'.
23722 2000-10-02 Akim Demaille <akim@epita.fr>
23724 Also test parse error messages, including with YYERROR_VERBOSE.
23726 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23728 Use it to check the computations.
23729 Use it to check `nonassoc' is honored.
23730 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23731 `--yyerror-verbose'.
23732 (_AT_CHECK_CALC): Adjust to this option.
23733 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23735 2000-10-02 Akim Demaille <akim@epita.fr>
23737 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23738 the latter demonstrates a flaw in the handling of non debugging
23739 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23740 was used in order to simplify:
23756 unfortunately this leads to a CPP conflict when
23757 `--name-prefix=foo' is used since it produces `#define yydebug
23760 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23761 (YYDPRINTF): New macro.
23763 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23765 Also test `--verbose', `--defines' and `--name-prefix'.
23767 2000-10-02 Akim Demaille <akim@epita.fr>
23769 Improve the readability of the produced parsers.
23771 * src/bison.s1: Formatting changes.
23772 Improve the comment related to the `$' mark.
23773 (yydefault): Don't fall through to `yyresume': `goto' there.
23774 * src/output.c (output_parser): When the `$' is met, skip the end
23776 New variable, `number_of_dollar_signs', to check there's exactly
23777 one `$' in the parser skeleton.
23779 2000-10-02 Akim Demaille <akim@epita.fr>
23781 * lib/xstrdup.c: New file, from the fileutils.
23782 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23783 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23784 instead of strlen + xmalloc + strcpy.
23785 * src/symtab.c (copys): Remove, use xstrdup instead.
23787 2000-10-02 Akim Demaille <akim@epita.fr>
23789 * src/gram.h (associativity): New enum type which replaces the
23790 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23791 `right_assoc', `left_assoc' and `non_assoc'.
23792 Adjust all dependencies.
23793 * src/reader.c: Formatting changes.
23794 (LTYPESTR): Don't define it, use it as a literal in
23795 `reader_output_yylsp'.
23796 * src/symtab.h (symbol_class): New enum type which replaces the
23797 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23798 `sunknown', `stoken and `snterm'.
23800 2000-10-02 Akim Demaille <akim@epita.fr>
23802 * src/getargs.c (fixed_outfiles): Rename as...
23803 (yaccflag): for consistency and accuracy.
23804 Adjust dependencies.
23806 2000-10-02 Akim Demaille <akim@epita.fr>
23808 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23809 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23810 difficult and introduced a lot of core dump. It turns out that
23811 Bison used an implementation of `xmalloc' based on `calloc', and
23812 at various places it does depend upon the initialization to 0. I
23813 have not tried to isolate the pertinent places, and all the former
23814 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23815 someone should address this issue.
23817 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23818 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23820 Adjust dependencies.
23821 * src/warshall.h: New file.
23824 2000-10-02 Akim Demaille <akim@epita.fr>
23826 Various anti-`extern in *.c' changes.
23828 * src/system.h: Include `assert.h'.
23830 2000-10-02 Akim Demaille <akim@epita.fr>
23832 * src/state.h (nstates, final_state, first_state, first_shift)
23833 (first_reduction): Move their exportation from here...
23834 * src/LR0.h: to here.
23835 Adjust dependencies.
23836 * src/getargs.c (statisticsflag): New variable.
23837 Add support for `--statistics'.
23838 Adjust dependencies.
23840 Remove a lot of now useless `extern' statements in most files.
23842 2000-10-02 Akim Demaille <akim@epita.fr>
23844 * src/LR0.h: New file.
23847 2000-10-02 Akim Demaille <akim@epita.fr>
23849 * src/print.h: New file.
23851 * src/print.c: Formatting and ordering changes.
23852 (verbose, terse): Replace with...
23853 (print_results): this new function.
23854 Adjust dependencies.
23856 2000-10-02 Akim Demaille <akim@epita.fr>
23858 * src/conflicts.c (conflict_report): New function.
23859 (conflict_log, verbose_conflict_log): Replace with...
23860 (print_conflicts): this function.
23861 Adjust dependencies.
23862 * src/conflicts.h: New file.
23863 Propagate its inclusion.
23865 2000-10-02 Akim Demaille <akim@epita.fr>
23867 * src/nullable.h: New file.
23868 Propagate its inclusion.
23869 * src/nullable.c: Formatting changes.
23871 2000-10-02 Akim Demaille <akim@epita.fr>
23873 * src/reduce.h: New file.
23874 Propagate its inclusion.
23875 * src/reduce.c: Topological sort and other formatting changes.
23876 (bool, TRUE, FALSE): Move their definition to...
23877 * src/system.h: here.
23879 2000-10-02 Akim Demaille <akim@epita.fr>
23881 * src/files.c: Formatting changes.
23882 (tryopen, tryclose, openfiles): Rename as...
23883 (xfopen, xfclose, open_files): this.
23884 (stringappend): static.
23885 * src/files.h: Complete the list of exported symbols.
23888 2000-10-02 Akim Demaille <akim@epita.fr>
23890 * src/reader.h: New file.
23891 Propagate its use instead of tedious list of `extern' and
23893 * src/reader.c: Formatting changes, topological sort,
23896 2000-10-02 Akim Demaille <akim@epita.fr>
23898 * src/lex.h: Prototype `lex.c' exported functions.
23899 * src/reader.c: Adjust.
23900 * src/lex.c: Formatting changes.
23901 (safegetc): Rename as...
23904 2000-10-02 Akim Demaille <akim@epita.fr>
23906 * src/lalr.h: New file.
23907 Propagate its inclusion instead of prototypes and `extern'.
23908 * src/lalr.c: Formatting changes, topological sorting etc.
23910 2000-10-02 Akim Demaille <akim@epita.fr>
23912 * src/output.c (token_actions): Introduce a temporary array,
23913 YYDEFACT, that makes it possible for this function to use
23914 output_short_table.
23916 2000-10-02 Akim Demaille <akim@epita.fr>
23918 `user_toknums' is output as a `short[]' in `output.c', while it is
23919 defined as a `int[]' in `reader.c'. For consistency with the
23920 other output tables, `user_toknums' is now defined as a table of
23923 * src/reader.c (user_toknums): Be a short table instead of an int
23925 Adjust dependencies.
23927 Factor the short table outputs.
23929 * src/output.c (output_short_table): New function.
23930 * src/output.c (output_gram, output_stos, output_rule_data)
23931 (output_base, output_table, output_check): Use it.
23933 2000-10-02 Akim Demaille <akim@epita.fr>
23935 * src/output.c (output): Topological sort of the functions, in
23936 order to get rid of the `static' prototypes.
23937 No longer use `register'.
23938 * src/output.h: New file.
23939 Propagate its inclusion in files explicitly prototyping functions
23942 2000-09-21 Akim Demaille <akim@epita.fr>
23944 * src/atgeneral.m4: Update from Autoconf.
23946 2000-09-21 Akim Demaille <akim@epita.fr>
23948 * src/closure.h: New file.
23949 * src/closure.c: Formatting changes, topological sort over the
23950 functions, use of closure.h.
23951 (initialize_closure, finalize_closure): Rename as...
23952 (new_closure, free_closure): these. Adjust dependencies.
23953 * src/LR0.c: Formatting changes, topological sort, use of
23955 (initialize_states): Rename as...
23956 (new_states): this.
23957 * src/Makefile.am (noinst_HEADERS): Adjust.
23959 2000-09-20 Akim Demaille <akim@epita.fr>
23961 * src/acconfig.h: Don't protect config.h against multiple
23963 Don't define PARAMS.
23964 * src/system.h: Define PARAMS.
23965 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23966 purpose of config.h. system.h must not try to fix wrong
23967 definitions in config.h.
23969 2000-09-20 Akim Demaille <akim@epita.fr>
23971 * src/derives.h: New file.
23972 * src/main.c, src/derives.h: Use it.
23973 Formatting changes.
23974 * src/Makefile.am (noinst_HEADERS): Adjust.
23976 2000-09-20 Akim Demaille <akim@epita.fr>
23978 * tests/atgeneral.m4: Update from Autoconf.
23979 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23980 (AT_CHECK_CALC): New macros.
23981 Use these macros to test bison with options `', `--raw',
23982 `--debug', `--yacc', `--yacc --debug'.
23984 2000-09-19 Akim Demaille <akim@epita.fr>
23986 * src/output.c: Formatting changes.
23987 * src/machine.h: Remove, leaving its contents in...
23988 * src/system.h: here.
23990 Adjust all dependencies on stdio.h and machine.h.
23991 * src/getargs.h: New file.
23992 Let all `extern' declarations about getargs.c be replaced with
23993 inclusion of `getargs.h'.
23994 * src/Makefile.am (noinst_HEADERS): Adjust.
23996 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23998 (yyerror): Returns void, not int.
23999 * doc/bison.texinfo: Formatting changes.
24001 2000-09-19 Akim Demaille <akim@epita.fr>
24003 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
24006 2000-09-18 Akim Demaille <akim@epita.fr>
24008 * configure.in: Append WARNING_CFLAGS to CFLAGS.
24009 * src/Makefile.am (INCLUDES): Don't.
24010 Be ready to fetch headers in lib/.
24012 2000-09-18 Akim Demaille <akim@epita.fr>
24014 * doc/bison.texinfo: Update the copyright.
24015 ANSIfy and GNUify the examples.
24016 Remove the old menu.
24018 2000-09-18 Akim Demaille <akim@epita.fr>
24020 First set of tests: use the `calc' example from the documentation.
24022 * src/bison.s1 (yyparse): Condition the code using `yytname' which
24023 is defined only when YYDEBUG is.
24024 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24025 * src/files.c (tryopen, tryclose): Formatting changes.
24026 Move to the top and be static.
24027 * src/reader.c (read_signed_integer): Likewise.
24028 * tests/calc.m4: New file.
24029 * Makefile.am, suite.m4: Adjust.
24030 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24032 2000-09-18 Akim Demaille <akim@epita.fr>
24034 Add support for an Autotest test suite for Bison.
24036 * m4/m4.m4, m4/atconfig.m4: New files.
24037 * m4/Makefile.am (EXTRA_DIST): Adjust.
24038 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24040 * src/getargs.c: Display a more standard --version message.
24041 * src/reader.c (reader): Formatting changes.
24042 No longer depend upon VERSION_STRING.
24043 * configure.in: No longer use `dnl'.
24044 Set up the test suite and the new directory `tests/.
24045 (VERSION_STRING): Remove.
24047 2000-04-14 Akim Demaille <akim@epita.fr>
24049 * src/reader.c (copy_comment2): New function, same as former
24050 `copy_comment', but outputs into two FILE *.
24051 (copy_comment): Use it.
24052 (parse_union_decl): Use it.
24053 (get_type, parse_start_decl): Use the same `invalid' message.
24054 (parse_start_decl, parse_union_decl): Use the same `multiple'
24056 (parse_union_decl, copy_guard, copy_action): Use the same
24057 `unmatched' message.
24058 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24060 2000-03-31 Akim Demaille <akim@epita.fr>
24062 * src/files.c (tryopen, tryclose): Move to the top.
24065 2000-03-31 Akim Demaille <akim@epita.fr>
24067 * src/main.c (main): Don't call `done', exit does it.
24069 2000-03-31 Akim Demaille <akim@epita.fr>
24071 * allocate.c: s/return (foo)/return foo/.
24072 * lalr.c: Likewise.
24074 * output.c: Likewise.
24075 * reader.c: Likewise.
24076 * symtab.c: Likewise.
24077 * vmsgetargs.c: Likewise.
24079 2000-03-31 Akim Demaille <akim@epita.fr>
24081 Clean up the error reporting functions.
24083 * src/report.c: New file.
24084 * src/report.h: Likewise.
24085 * src/Makefile.am: Adjust.
24086 * m4/error.m4: New file.
24087 * m4/Makefile.am: Adjust.
24088 * configure.in (jm_PREREQ_ERROR): Call it.
24089 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24091 (fatal, fatals): Remove. All callers use complain.c::fatal.
24092 (warn, warni, warns, warnss, warnss): Remove. All callers use
24093 complain.c::complain.
24094 (toomany): Remove, use fatal instead.
24095 * src/files.c (done): No argument, use complain_message_count.
24096 * src/main.c (main): Register `done' to `atexit'.
24098 * src/getargs.c (usage): More `fputs', less `fprintf'.
24100 2000-03-28 Akim Demaille <akim@epita.fr>
24102 * lib/: New directory.
24103 * Makefile.am (SUBDIRS): Adjust.
24104 * configure.in: Adjust.
24105 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
24107 * src/alloca.c: Moved to lib/.
24108 * src/getopt.c: Likewise.
24109 * src/getopt1.c: Likewise.
24110 * src/getopt.h: Likewise.
24111 * src/ansi2knr.c: Likewise.
24112 * src/ansi2knr.1: Likewise.
24113 * src/Makefile.am: Adjust.
24114 * lib/Makefile.am: New file.
24116 2000-03-28 Akim Demaille <akim@epita.fr>
24118 * src/getargs.c (usage): Refresh the help message.
24120 2000-03-17 Akim Demaille <akim@epita.fr>
24122 * src/getopt1.c: Updated from textutils 2.0e
24123 * src/getopt.c: Likewise.
24124 * src/getopt.h: Likewise.
24126 2000-03-17 Akim Demaille <akim@epita.fr>
24128 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24129 the file name, not the whole `#line LINE FILE'.
24131 2000-03-17 Akim Demaille <akim@epita.fr>
24133 On syntax errors, report the token on which we choked.
24135 * src/bison.s1 (yyparse): In the label yyerrlab, when
24136 YYERROR_VERBOSE, add yychar in msg.
24138 2000-03-17 Akim Demaille <akim@epita.fr>
24140 * src/reader.c (copy_at): New function.
24141 (copy_guard): Use it.
24142 (copy_action): Use it.
24144 2000-03-17 Akim Demaille <akim@epita.fr>
24146 Be kind to translators, save some useless translations.
24148 * src/main.c (banner): New function.
24149 (fatal_banner): Use it.
24150 (warn_banner): Use it.
24152 2000-03-17 Akim Demaille <akim@epita.fr>
24154 * src/reader.c (copy_definition): Use copy_string and
24155 copy_comment. Removed now unused `match', `ended',
24157 (copy_comment, copy_string): Moved, to be visible from
24160 2000-03-17 Akim Demaille <akim@epita.fr>
24162 * src/reader.c (copy_string): Declare `static inline'. No
24163 problems with inline, since it is checked by configure.
24164 (copy_comment): Likewise.
24166 2000-03-17 Akim Demaille <akim@epita.fr>
24168 * src/reader.c (packsymbols): Formatting changes.
24170 2000-03-17 Akim Demaille <akim@epita.fr>
24172 * src/reader.c (copy_comment): New function, factored out from:
24173 (copy_action): Use it. Removed now unused `match', `ended',
24175 (copy_guard): Likewise.
24177 2000-03-17 Akim Demaille <akim@epita.fr>
24179 * src/reader.c (copy_string): New function, factored out from:
24180 (copy_action): Use it.
24181 (copy_guard): Likewise.
24183 2000-03-17 Akim Demaille <akim@epita.fr>
24185 Change the handling of @s so that they behave exactly like $s.
24186 There is now a pseudo variable @$ (readble and writable), location
24187 of the lhs of the rule (by default ranging from the location of
24188 the first symbol of the rhs, to the location of the last symbol,
24189 or, if the rhs is empty, YYLLOC).
24191 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24193 (yyparse): When providing a default semantic action, provide a
24194 default location action.
24195 (after the $): No longer change `*YYLSP', just stack YYLOC the
24196 same way you stack YYVAL.
24197 * src/reader.c (read_declarations): Use warns.
24198 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24199 (copy_action, case '@'): Likewise.
24200 Use a standard error message, to save useless work from
24203 2000-03-17 Akim Demaille <akim@epita.fr>
24205 * src/bison.s1: Formatting and cosmetics changes.
24206 * src/reader.c: Likewise.
24207 Update the Copyright notice.
24209 2000-03-17 Akim Demaille <akim@epita.fr>
24211 * src/bison.s1 (#line): All set to `#line' only, since the
24212 Makefile now handles them.
24214 2000-03-16 Akim Demaille <akim@epita.fr>
24216 * src/output.c (output_rule_data): Output the documentation of
24217 some of the tables.
24218 (Copyright notice): Update.
24219 Formatting changes.
24221 2000-03-16 Akim Demaille <akim@epita.fr>
24223 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24224 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24225 One `#if YYDEBUG' remains, since it uses variables which are
24226 defined only if `YYDEBUG != 0'.
24228 2000-03-16 Akim Demaille <akim@epita.fr>
24230 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24231 and related variables so that the similarities are highlighted.
24233 2000-03-16 Akim Demaille <akim@epita.fr>
24235 * src/bison.s1: Properly indent CPP directives.
24237 2000-03-16 Akim Demaille <akim@epita.fr>
24239 * src/bison.s1: Properly indent the `alloca' CPP section.
24241 2000-03-16 Akim Demaille <akim@epita.fr>
24243 Do not hard code values of directories in `configure.in'.
24244 Update the `configure' tool chain.
24246 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24248 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24249 (AC_OUTPUT): Add m4/Makefile.
24250 Bump to bison 1.28a, 1.29 has never been released.
24251 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24252 handled via src/Makefile.am.
24253 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24254 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24256 * Makefile.am (SUBDIRS): Add m4.
24257 (ACLOCAL_AM_FLAGS): New variable.
24258 (AUTOMAKE_OPTIONS): Add check-news.
24259 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24260 the proper line number and file name.
24261 (DEFS): Propagate the location of bison library files and of the
24263 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24265 * acinclude.m4: Remove, replaced by the directory m4.
24266 * m4/Makefile.am (EXTRA_DIST): New variable.
24267 * m4/gettext.m4: New file, from the fileutils.
24268 * m4/lcmessage.m4: Likewise
24269 * m4/progtest.m4: Likewise.
24270 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24272 2000-03-10 Akim Demaille <akim@epita.fr>
24275 Formatting changes of various comments.
24276 Respect the GNU coding standards at various places.
24277 Don't use `_()' when no translation is needed.
24279 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24282 OS/2 honors TMPDIR environment variable.
24284 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24286 * doc/bison.texinfo: Tweaked spelling and grammar.
24288 Removed reference to price of printed copy.
24289 Mention BISON_SIMPLE and BISON_HAIRY.
24291 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24293 * configure.in, NEWS:
24294 Bison 1.29 released.
24296 1999-10-27 Jesse Thilo <jthilo@gnu.org>
24298 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24299 Added reference card.
24301 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24303 * po/ru.po: Added Russian translation.
24305 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24307 * configure.in: Added Russian translation.
24309 1999-07-06 Jesse Thilo <jthilo@gnu.org>
24311 * configure.in, NEWS, README:
24312 Released version 1.28.
24314 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24317 Squashed redefinition warning on some systems.
24319 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24320 Have configure build version string instead of relying on ANSI string
24323 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24325 * po/POTFILES.in: Got rid of version.c.
24327 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24329 * acconfig.h, configure.in:
24330 Have configure build version string instead of relying on ANSI string
24333 1999-06-08 Jesse Thilo <jthilo@gnu.org>
24336 Dropped mention of `+' for long-named options.
24338 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24340 * src/files.c: Added <unistd.h> for unlink().
24342 * src/Makefile.am, src/system.h:
24345 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24347 * README: Added a FAQ list.
24349 * configure.in, acconfig.h:
24352 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24354 * doc/FAQ, doc/Makefile.am:
24357 1999-05-19 Jesse Thilo <jthilo@gnu.org>
24359 * src/alloc.h, src/symtab.h, src/version.c:
24360 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24362 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24364 * src/.cvsignore, src/Makefile.am:
24365 Reorganized: sources in `src', documentation in `doc'.
24367 * src/lex.c (literalchar):
24368 fixed the code for escaping double quotes (thanks
24371 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24373 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24374 Adjusted paths to reflect directory reorganization.
24376 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24378 * doc/.cvsignore, doc/Makefile.am:
24379 Reorganized: sources in `src', documentation in `doc'.
24381 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24384 Updated AC_INIT file to reflect directory reorganization.
24386 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24387 Reorganized: sources in `src', documentation in `doc'.
24389 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24392 Don't declare calloc() and realloc() if not necessary.
24394 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24396 * configure.in, acconfig.h, acinclude.m4:
24397 Don't declare calloc() and realloc() if not necessary.
24399 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24401 * po/.cvsignore: Added i18n support.
24403 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24405 * acconfig.h, configure.in, Makefile.am:
24406 Added i18n support.
24408 1999-03-22 Jesse Thilo <jthilo@gnu.org>
24410 * src/bison.s1: Fixed #line numbers.
24412 1999-03-15 Jesse Thilo <jthilo@gnu.org>
24414 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24415 Added PO files from Translation Project.
24417 1999-03-03 Jesse Thilo <jthilo@gnu.org>
24420 Added support for non-ANSI compilers (ansi2knr).
24422 1999-02-16 Jesse Thilo <jthilo@gnu.org>
24424 * configure.in: Bumped version number to 1.27.
24427 Added `bison.simple' to list of files removed by `make distclean'.
24429 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24431 * src/files.c, src/files.h:
24432 Defined locations of parser files in config.h instead of Makefile.
24434 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24436 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24437 Defined locations of parser files in config.h instead of Makefile.
24439 1999-02-09 Jesse Thilo <jthilo@gnu.org>
24442 Removed inappropriate use of $< macro.
24444 1999-02-05 Jesse Thilo <jthilo@gnu.org>
24446 * po/Makefile.in.in, po/POTFILES.in:
24447 Add `po' directory skeleton.
24449 1999-01-27 Jesse Thilo <jthilo@gnu.org>
24451 * README: Document help-bison list.
24453 * configure.in: Add check for mkstemp().
24455 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24457 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24458 Hush a few compiler warnings.
24461 Add tryclose(), which verifies that fclose was successful.
24462 Hush a couple of compiler warnings.
24464 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24466 * Makefile.am, OChangeLog:
24467 ChangeLog is now automatically generated. Include the old version as
24470 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24472 * 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:
24473 Update FSF address.
24475 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24477 * doc/bison.texinfo: Fix formatting glitch.
24479 * doc/bison.texinfo: Update FSF address.
24481 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24483 * acconfig.h: Update FSF address.
24485 1999-01-08 Jesse Thilo <jthilo@gnu.org>
24488 Don't define PACKAGE here, since config.h defines it.
24490 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24492 * src/reader.c: Update copyright date.
24495 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24496 favor of output directly to stderr (avoids buffer overruns).
24498 * src/reader.c: Some checks for premature EOF.
24500 * 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:
24501 Use prototypes if the compiler understands them.
24503 * src/files.c: Honor TMPDIR on Unix hosts.
24504 Use prototypes if the compiler understands them.
24507 Fix a couple of buffer overrun bugs.
24508 Use prototypes if the compiler understands them.
24510 * src/system.h: Include unistd.h and ctype.h.
24511 Use #ifdef instead of #if for NLS symbols.
24513 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24515 * doc/bison.texinfo:
24516 Delete comment "consider using @set for edition number, etc..." since
24517 we now are doing so.
24519 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24522 Use prototypes if the compiler understands them.
24524 * NEWS: Document 1.26 highlights.
24526 * Makefile.am: Require Automake 1.3 or later.
24529 Use prototypes if the compiler understands them.
24531 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24534 Use VERSION symbol from automake for version number.
24536 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24538 * acconfig.h, configure.in, version.cin:
24539 Use VERSION symbol from automake for version number.
24541 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24544 Distribute original version of simple parser (bison.s1), not built
24545 version (bison.simple).
24547 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24549 * doc/bison.texinfo: Add info dir entry.
24551 * doc/bison.texinfo:
24552 Let automake put version number into documentation.
24554 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24556 * src/bison.cld, src/build.com, src/vmshlp.mar:
24557 Add non-RCS files from /gd/gnu/bison.
24559 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24562 Document the BISON_HAIRY and BISON_SIMPLE variables.
24564 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24566 * src/version.c: Build version.c automatically.
24569 Fix token numbering (used to start at 258, not 257).
24571 * src/system.h: Include config.h.
24573 * src/getargs.c: Update bug report address.
24575 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24576 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24578 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24581 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24583 * configure.in, version.cin:
24584 Build version.c automatically.
24586 * AUTHORS: Add AUTHORS file.
24588 * README: Update bug report address.
24591 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24593 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24594 Add automake stuff.
24596 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24598 * doc/bison.texinfo: Clean up some formatting.
24600 1998-05-05 Richard Stallman <rms@gnu.org>
24602 * doc/bison.texinfo:
24603 Explain better why to make a pure parser.
24605 1998-01-05 Richard Stallman <rms@gnu.org>
24607 * src/files.c (openfiles):
24608 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24609 find a temporary directory, if possible. Do not unlink files while
24612 1997-08-25 Richard Stallman <rms@gnu.org>
24614 * src/reader.c (stack_offset;):
24615 Change some warni to warns.
24617 * src/lex.c (literalchar): Use warns, not warni.
24619 1997-06-28 Richard Stallman <rms@gnu.org>
24621 * src/bison.s1: Add a Bison version comment.
24623 * src/main.c (fatal, warn, berror):
24626 1997-06-28 Richard Stallman <rms@gnu.org>
24628 * Makefile.in (bison_version): New variable.
24629 (dist): Use that variable.
24630 (bison.s1): Substitute the Bison version into bison.simple.
24632 * bison.simple: Add a Bison version comment.
24634 1997-06-18 Richard Stallman <rms@gnu.org>
24636 * src/main.c (fatal, warn, berror):
24637 Make error messages standard.
24638 (toomany): Improve error message text.
24640 * 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:
24641 new.h renamed to alloc.h.
24643 1997-06-18 Richard Stallman <rms@gnu.org>
24645 * Makefile.in: new.h renamed to alloc.h.
24647 1997-05-24 Richard Stallman <rms@gnu.org>
24649 * src/lex.c (literalchar):
24650 Fix the code for escaping \, " and '.
24652 (lex): Avoid trouble when there are many chars
24653 to discard in a char literal with just several chars in it.
24655 1997-05-17 Richard Stallman <rms@gnu.org>
24658 Use malloc, if using alloca is troublesome.
24659 (YYSTACK_USE_ALLOCA): New flag macro.
24660 Define it for some systems and compilers.
24661 (YYSTACK_ALLOC): New macro.
24662 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24663 If it was malloc'd, free it.
24665 1997-05-17 Richard Stallman <rms@gnu.org>
24668 Use malloc, if using alloca is troublesome.
24669 (YYSTACK_USE_ALLOCA): New flag macro.
24670 Define it for some systems and compilers.
24671 (YYSTACK_ALLOC): New macro.
24672 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24673 If it was malloc'd, free it.
24675 1997-04-23 Richard Stallman <rms@gnu.org>
24678 (alloca) [__hpux]: Always define as __builtin_alloca.
24680 1997-04-23 Richard Stallman <rms@gnu.org>
24683 (alloca) [__hpux]: Always define as __builtin_alloca.
24685 1997-04-22 Richard Stallman <rms@gnu.org>
24688 [__hpux]: Include alloca.h (right for HPUX 10)
24689 instead of declaring alloca (right for HPUX 9).
24691 * src/bison.s1 (__yy_memcpy):
24692 Declare arg `count' as unsigned int.
24693 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24695 1997-04-22 Richard Stallman <rms@gnu.org>
24698 [__hpux]: Include alloca.h (right for HPUX 10)
24699 instead of declaring alloca (right for HPUX 9).
24701 * bison.simple (__yy_memcpy):
24702 Declare arg `count' as unsigned int.
24703 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24705 1997-01-03 Richard Stallman <rms@gnu.org>
24707 * src/allocate.c: [__STDC__ or _MSC_VER]:
24708 Declare calloc and realloc to return void *.
24710 1997-01-02 Richard Stallman <rms@gnu.org>
24713 [_MSC_VER]: Include stdlib.h and process.h.
24714 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24716 * src/main.c (main): Return FAILURE as a value.
24717 (printable_version): Declare arg as int, not char.
24719 1997-01-02 Richard Stallman <rms@gnu.org>
24721 * Makefile.in (dist):
24722 Explicitly check for symlinks, and copy them.
24724 1996-12-19 Richard Stallman <rms@gnu.org>
24727 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24729 1996-12-18 Paul Eggert <eggert@gnu.org>
24731 * src/bison.s1 (yyparse):
24732 If __GNUC__ and YYPARSE_PARAM are both defined,
24733 declare yyparse to have a void * argument.
24735 1996-12-18 Paul Eggert <eggert@gnu.org>
24737 * bison.simple (yyparse):
24738 If __GNUC__ and YYPARSE_PARAM are both defined,
24739 declare yyparse to have a void * argument.
24741 1996-12-17 Richard Stallman <rms@gnu.org>
24743 * src/reduce.c (nbits): Add some casts.
24745 1996-08-12 Richard Stallman <rms@gnu.org>
24747 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24749 1996-08-12 Richard Stallman <rms@gnu.org>
24751 * bison.simple: Test _MSDOS as well as _MSDOS_.
24753 1996-07-31 Richard Stallman <rms@gnu.org>
24756 [__sun && __i386]: Include alloca.h.
24758 1996-07-31 Richard Stallman <rms@gnu.org>
24761 [__sun && __i386]: Include alloca.h.
24763 1996-07-30 Richard Stallman <rms@gnu.org>
24765 * src/bison.s1: Comment change.
24767 * src/bison.s1: Test _MSDOS_, not MSDOS.
24769 1996-07-30 Richard Stallman <rms@gnu.org>
24771 * bison.simple: Comment change.
24773 * bison.simple: Test _MSDOS_, not MSDOS.
24775 1996-06-01 Richard Stallman <rms@gnu.org>
24777 * 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:
24778 Insert `_' macro around many string constants.
24781 Insert `_' macro around many string constants.
24783 (main): Call setlocale, bindtextdomain and textdomain.
24785 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24786 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24787 [ENABLE_NLS]: Include libintl.h.
24788 [ENABLE_NLS] (gettext): Define.
24789 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24790 (N_, PACKAGE, LOCALEDIR): New macros.
24792 1996-06-01 Richard Stallman <rms@gnu.org>
24794 * POTFILES.in: New file.
24796 * Makefile.in (allocate.o):
24797 Define target explicitly.
24799 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24800 (LDFLAGS): Set to @LDFLAGS@.
24801 (configure): Run autoconf only if preceding `cd' succeeds.
24802 (bison.s1): Redirect output to temporary file then move the
24803 temporary to the target, rather than redirecting directly to bison.s1.
24804 (clean): Remove config.status and config.log.
24805 (distclean): Don't remove config.status here.
24807 1996-05-12 Richard Stallman <rms@gnu.org>
24810 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24812 1996-05-12 Richard Stallman <rms@gnu.org>
24815 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24817 1996-05-11 Richard Stallman <rms@gnu.org>
24819 * src/bison.s1 (__yy_memcpy):
24820 Really reorder the args, as was supposedly done on Feb 14 1995.
24821 (yyparse): Calls changed accordingly.
24823 1996-05-11 Richard Stallman <rms@gnu.org>
24825 * Makefile.in (dist): Don't use $(srcdir).
24827 * bison.simple (__yy_memcpy):
24828 Really reorder the args, as was supposedly done on Feb 14 1995.
24829 (yyparse): Calls changed accordingly.
24831 1996-01-27 Richard Stallman <rms@gnu.org>
24833 * src/output.c (output_rule_data):
24834 Test YYERROR_VERBOSE in the conditional
24835 around the definition of ttyname.
24837 1995-12-29 Richard Stallman <rms@gnu.org>
24840 Fix line numbers in #line commands.
24842 1995-12-29 Richard Stallman <rms@gnu.org>
24845 Fix line numbers in #line commands.
24847 1995-12-27 Richard Stallman <rms@gnu.org>
24849 * src/bison.s1 (YYPARSE_PARAM_DECL):
24850 In C++, make it always null.
24851 (YYPARSE_PARAM_ARG): New macro.
24852 (yyparse): Use YYPARSE_PARAM_ARG.
24854 1995-12-27 Richard Stallman <rms@gnu.org>
24856 * bison.simple (YYPARSE_PARAM_DECL):
24857 In C++, make it always null.
24858 (YYPARSE_PARAM_ARG): New macro.
24859 (yyparse): Use YYPARSE_PARAM_ARG.
24861 1995-11-29 Richard Stallman <rms@gnu.org>
24863 * doc/bison.texinfo:
24864 Describe literal string tokens, %raw, %no_lines, %token_table.
24866 1995-11-29 Daniel Hagerty <hag@gnu.org>
24868 * doc/bison.texinfo: Fixed update date
24870 1995-10-16 Richard Stallman <rms@gnu.org>
24872 * src/version.c: Version 1.25.
24874 1995-10-16 Richard Stallman <rms@gnu.org>
24876 * NEWS: *** empty log message ***
24878 1995-10-16 Richard Stallman <rms@gnu.org>
24880 * doc/bison.1, doc/bison.rnh:
24883 1995-10-15 Richard Stallman <rms@gnu.org>
24885 * src/vmsgetargs.c, src/getargs.c:
24886 Added -n, -k, and -raw switches.
24887 (noparserflag, toknumflag, rawtoknumflag): New variables.
24889 * src/symtab.h (SALIAS):
24890 New #define for adding aliases to %token.
24891 (struct bucket): Added `alias' field.
24893 * src/reduce.c (reduce_grammar):
24894 Revise error message.
24895 (print_notices): Remove final `.' from error message.
24897 * src/reader.c (reader_output_yylsp):
24899 (readgram): Use `#if 0' around code that accepted %command
24900 inside grammar rules: The documentation doesn't allow it,
24901 and it will fail since the %command processors scan for the next %.
24902 (parse_token_decl): Extended the %token
24903 declaration to allow a multi-character symbol as an alias.
24904 (parse_thong_decl): New function.
24905 (read_declarations): Added %thong declarations.
24906 (read_declarations): Handle NOOP to deal with allowing
24907 % declarations as another means to specify the flags.
24908 (readgram): Allow %prec prior to semantics embedded in a rule.
24909 (skip_to_char, read_declarations, copy_definition)
24910 (parse_token_decl, parse_start_decl, parse_type_decl)
24911 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24912 (get_type_name, copy_guard, copy_action, readgram)
24913 (get_type, packsymbols): Revised most error messages.
24914 Changed `fatal' to `warnxxx' to avoid aborting for error.
24915 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24916 (read_declarations): Improve the error message for
24917 an invalid character. Do not abort.
24918 (read_declarations, copy_guard, copy_action): Use
24919 printable_version to avoid unprintable characters in printed output.
24920 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24921 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24922 Allow the type of a non-terminal can be given
24923 more than once, as long as all specifications give the same type.
24926 (output_headers, output_trailers, output, output_gram)
24927 (output_rule_data): Implement noparserflag variable.
24928 Implement toknumflag variable.
24929 (output): Call reader_output_yylsp to output LTYPESTR.
24931 * src/main.c (main):
24932 If reader sees an error, don't process the grammar.
24933 (fatals): Updated to not use VARARGS1.
24934 (printable_version, int_to_string, warn, warni, warns, warnss)
24935 (warnsss): New error reporting functions. Avoid abort for error.
24938 Added THONG and NOOP for alias processing.
24939 Added SETOPT for the new code that allows setting options with %flags.
24942 Include getopt.h. Add some extern decls.
24943 (safegetc): New function to deal with EOF gracefully.
24944 (literalchar); new function to deal with reading \ escapes.
24945 (lex): Use literalchar.
24946 (lex): Implemented "..." tokens.
24947 (literalchar, lex, parse_percent_token): Made tokenbuffer
24948 always contain the token. This includes growing the token
24949 buffer while reading an integer.
24950 (parse_percent_token): Replaced if-else statement with percent_table.
24951 (parse_percent_token): Added % declarations as another
24952 way to specify the flags -n, -l, and -r. Also added hooks for
24953 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24954 major changes to files.c.
24955 (lex) Retain in the incoming stream a character following
24957 (skip_white_space, lex): Revised most error messages
24958 and changed fatal to warn to avoid aborting.
24959 (percent_table): Added %thong declarations.
24961 * src/gram.h: Comment changes.
24963 * src/files.c (openfiles, open_extra_files, done):
24965 and actfile file. Handle noparserflag. Both for -n switch.
24967 * src/conflicts.c (resolve_sr_conflict):
24968 Remove use of alloca.
24970 1995-06-01 Jim Meyering <meyering@gnu.org>
24972 * doc/bison.texinfo: *** empty log message ***
24974 1995-05-06 Richard Stallman <rms@gnu.org>
24976 * src/bison.s1: Comment change.
24978 1995-05-06 Richard Stallman <rms@gnu.org>
24980 * bison.simple: Comment change.
24982 1995-05-03 Richard Stallman <rms@gnu.org>
24984 * src/version.c: Version now 1.24.
24986 * src/bison.s1: Change distribution terms.
24988 * src/version.c: Version now 1.23.
24990 1995-05-03 Richard Stallman <rms@gnu.org>
24992 * doc/bison.texinfo:
24993 Rewrite "Conditions for Using Bison".
24994 Update version to 1.24.
24996 1995-05-03 Richard Stallman <rms@gnu.org>
24998 * bison.simple: Change distribution terms.
25000 1995-02-23 Richard Stallman <rms@gnu.org>
25002 * src/files.c: Test __VMS_POSIX as well as VMS.
25004 1995-02-14 Jim Meyering <meyering@gnu.org>
25006 * src/bison.s1 (__yy_memcpy):
25007 Renamed from __yy_bcopy to avoid
25008 confusion. Reverse FROM and TO arguments to be consistent with
25011 1995-02-14 Jim Meyering <meyering@gnu.org>
25013 * bison.simple (__yy_memcpy):
25014 Renamed from __yy_bcopy to avoid
25015 confusion. Reverse FROM and TO arguments to be consistent with
25018 1994-11-10 David J. MacKenzie <djm@gnu.org>
25024 * Makefile.in (DISTFILES): Include NEWS.
25026 * Makefile.in (DISTFILES):
25027 Include install-sh, not install.sh.
25029 * configure.in: Update to Autoconf v2 macro names.
25031 1994-10-05 David J. MacKenzie <djm@gnu.org>
25033 * Makefile.in: fix typo
25035 * Makefile.in (prefix, exec_prefix):
25036 Let configure set them.
25038 1994-09-28 David J. MacKenzie <djm@gnu.org>
25040 * Makefile.in: Set datadir to $(prefix)/share.
25042 1994-09-15 Richard Stallman <rms@gnu.org>
25045 Update copyright notice and GPL version.
25047 1994-09-15 Richard Stallman <rms@gnu.org>
25050 Update copyright notice and GPL version.
25052 1994-07-12 Richard Stallman <rms@gnu.org>
25054 * src/reduce.c, src/reader.c:
25057 1994-05-05 David J. MacKenzie <djm@gnu.org>
25059 * Makefile.in: entered into RCS
25061 1994-03-26 Richard Stallman <rms@gnu.org>
25063 * src/bison.s1: entered into RCS
25065 1994-03-26 Richard Stallman <rms@gnu.org>
25067 * bison.simple: entered into RCS
25069 1994-03-25 Richard Stallman <rms@gnu.org>
25071 * src/main.c: entered into RCS
25073 1994-03-24 Richard Stallman <rms@gnu.org>
25075 * src/conflicts.c: entered into RCS
25077 1994-01-02 Richard Stallman <rms@gnu.org>
25079 * Makefile.in: *** empty log message ***
25081 1993-11-21 Richard Stallman <rms@gnu.org>
25083 * src/bison.s1: *** empty log message ***
25085 1993-11-21 Richard Stallman <rms@gnu.org>
25087 * doc/bison.texinfo: entered into RCS
25089 * doc/bison.texinfo: *** empty log message ***
25091 1993-11-21 Richard Stallman <rms@gnu.org>
25093 * bison.simple: *** empty log message ***
25095 1993-10-25 David J. MacKenzie <djm@gnu.org>
25097 * doc/bison.texinfo: *** empty log message ***
25099 1993-10-19 Richard Stallman <rms@gnu.org>
25101 * src/bison.s1: *** empty log message ***
25103 1993-10-19 Richard Stallman <rms@gnu.org>
25105 * bison.simple: *** empty log message ***
25107 1993-10-14 Richard Stallman <rms@gnu.org>
25109 * src/bison.s1: *** empty log message ***
25111 1993-10-14 Richard Stallman <rms@gnu.org>
25113 * bison.simple: *** empty log message ***
25115 1993-09-14 David J. MacKenzie <djm@gnu.org>
25117 * doc/bison.texinfo: *** empty log message ***
25119 1993-09-13 Noah Friedman <friedman@gnu.org>
25121 * Makefile.in: *** empty log message ***
25123 1993-09-10 Richard Stallman <rms@gnu.org>
25125 * src/conflicts.c: *** empty log message ***
25127 * src/system.h: entered into RCS
25129 1993-09-10 Richard Stallman <rms@gnu.org>
25131 * doc/bison.1: entered into RCS
25133 1993-09-06 Noah Friedman <friedman@gnu.org>
25135 * src/version.c: entered into RCS
25137 1993-09-06 Noah Friedman <friedman@gnu.org>
25139 * Makefile.in: *** empty log message ***
25141 1993-07-30 David J. MacKenzie <djm@gnu.org>
25143 * Makefile.in: *** empty log message ***
25145 1993-07-24 Richard Stallman <rms@gnu.org>
25147 * src/bison.s1: *** empty log message ***
25149 1993-07-24 Richard Stallman <rms@gnu.org>
25151 * bison.simple: *** empty log message ***
25153 1993-07-08 David J. MacKenzie <djm@gnu.org>
25155 * Makefile.in: *** empty log message ***
25157 1993-07-04 Richard Stallman <rms@gnu.org>
25159 * src/bison.s1: *** empty log message ***
25161 1993-07-04 Richard Stallman <rms@gnu.org>
25163 * bison.simple: *** empty log message ***
25165 1993-06-26 David J. MacKenzie <djm@gnu.org>
25167 * src/getargs.c: entered into RCS
25169 1993-06-26 David J. MacKenzie <djm@gnu.org>
25171 * doc/bison.texinfo: *** empty log message ***
25173 * doc/bison.1: New file.
25175 1993-06-25 Richard Stallman <rms@gnu.org>
25177 * src/getargs.c: New file.
25179 1993-06-16 Richard Stallman <rms@gnu.org>
25181 * src/bison.s1: *** empty log message ***
25183 1993-06-16 Richard Stallman <rms@gnu.org>
25185 * bison.simple: *** empty log message ***
25187 1993-06-03 Richard Stallman <rms@gnu.org>
25189 * src/bison.s1: New file.
25191 1993-06-03 Richard Stallman <rms@gnu.org>
25193 * doc/bison.texinfo: *** empty log message ***
25195 1993-06-03 Richard Stallman <rms@gnu.org>
25197 * bison.simple: New file.
25199 1993-05-19 Richard Stallman <rms@gnu.org>
25201 * doc/bison.texinfo: New file.
25203 1993-05-07 Noah Friedman <friedman@gnu.org>
25205 * Makefile.in: *** empty log message ***
25207 1993-04-28 Noah Friedman <friedman@gnu.org>
25209 * src/reader.c: *** empty log message ***
25211 1993-04-23 Noah Friedman <friedman@gnu.org>
25213 * src/alloc.h: entered into RCS
25215 1993-04-20 David J. MacKenzie <djm@gnu.org>
25217 * src/version.c: *** empty log message ***
25219 * src/files.c, src/allocate.c:
25222 * src/reader.c: *** empty log message ***
25224 * src/lex.c: entered into RCS
25226 * src/conflicts.c: New file.
25228 * src/symtab.c: entered into RCS
25230 * src/alloc.h: New file.
25232 * src/LR0.c: entered into RCS
25234 1993-04-18 Noah Friedman <friedman@gnu.org>
25236 * src/reader.c: New file.
25238 * src/version.c: *** empty log message ***
25240 1993-04-18 Noah Friedman <friedman@gnu.org>
25242 * Makefile.in: *** empty log message ***
25244 1993-04-17 Noah Friedman <friedman@gnu.org>
25246 * Makefile.in: *** empty log message ***
25248 1993-04-15 Richard Stallman <rms@gnu.org>
25250 * src/main.c, src/files.c:
25253 1993-04-15 Noah Friedman <friedman@gnu.org>
25255 * configure.in: entered into RCS
25257 * configure.in: *** empty log message ***
25259 * configure.in: New file.
25261 1993-04-14 Richard Stallman <rms@gnu.org>
25263 * Makefile.in: New file.
25265 1993-04-13 Richard Stallman <rms@gnu.org>
25267 * src/version.c: New file.
25269 1993-03-25 Richard Stallman <rms@gnu.org>
25271 * src/output.c: entered into RCS
25273 1992-09-25 Richard Stallman <rms@gnu.org>
25275 * configure.bat: entered into RCS
25277 1992-06-22 Richard Stallman <rms@gnu.org>
25279 * src/vmsgetargs.c: entered into RCS
25281 1992-06-22 Richard Stallman <rms@gnu.org>
25283 * doc/bison.rnh: entered into RCS
25285 1992-04-20 David J. MacKenzie <djm@gnu.org>
25287 * README: entered into RCS
25289 1992-01-22 Richard Stallman <rms@gnu.org>
25291 * src/machine.h: entered into RCS
25293 1991-12-21 Richard Stallman <rms@gnu.org>
25295 * src/lalr.c, src/closure.c:
25298 1991-12-20 Richard Stallman <rms@gnu.org>
25300 * src/state.h: entered into RCS
25302 1991-12-18 Richard Stallman <rms@gnu.org>
25304 * src/print.c, src/nullable.c, src/derives.c:
25307 1991-11-03 David J. MacKenzie <djm@gnu.org>
25309 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25312 1988-09-09 Richard Stallman <rms@gnu.org>
25314 * src/bison.hairy: entered into RCS
25316 1987-12-16 Richard Stallman <rms@gnu.org>
25318 * REFERENCES: entered into RCS
25323 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
25326 Copying and distribution of this file, with or without
25327 modification, are permitted provided the copyright notice and this
25328 notice are preserved.