Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: bison/contrib/bison/2.4.1/bison-2.4.1-src/ChangeLog

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Version 2.4.1.
4 * NEWS: Set version and date.
5 * lib/Makefile.am: Update copyright year.
6 * tests/atlocal.in: Update copyright year.
7
8 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
9
10 Semicolon feature removal is not about future language support.
11 * NEWS: The semicolon feature is no longer active for newer languages,
12 so don't claim that it causes trouble for them.
13
14 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
15
16 * gnulib: Update submodule to HEAD.
17
18 2008-12-09 Akim Demaille <demaille@gostai.com>
19
20 Update data/README.
21 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
22
23 2008-12-05 Eric Blake <ebb9@byu.net>
24
25 Build testsuite with newer autoconf.
26 * tests/output.at (m4_expand): Don't override in newer autoconf,
27 where the underlying implementation changed.
28 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
29 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
30 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
31 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
32 since some of them contain unbalanced ')'.
33
34 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
35
36 * NEWS: Clarify a little.
37
38 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
39
40 * NEWS: Update for recent changes.
41
42 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
43
44 Fix unexpanded macros in GLR defines file.
45 Reported by Csaba Raduly at
46 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
47 * THANKS (Csaba Raduly): Add.
48 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
49 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
50 lexer in a separate module that includes the defines file.
51 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
52 source.
53 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
54 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
55 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
56 (AT_DATA_SOURCE_PROLOGUE): New.
57 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
58 (AT_DATA_SOURCE): New.
59 (AT_FULL_COMPILE): New, copied from master branch and extended to
60 support an additional source file.
61
62 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
63
64 Don't let maintainer-*-check targets force a version update.
65 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
66 handled.
67
68 2008-11-17 Di-an Jan <dianj@freeshell.org>
69
70 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
71 Align menus. Adjust word wrapping. Use node names for menu names.
72 (Examples): Don't abbreviate node names.
73 (LocalWords): Remove abbreviations.
74 (Copying): Make description a sentence.
75 (Java Action Features): Remove period to match the rest of menu.
76
77 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
78
79 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
80 * configure.ac: Adjust usage.
81 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
82 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
83 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
84
85 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
86
87 Don't add a semicolon to actions for %skeleton or %language.
88 It breaks Java test cases as reported by Akim Demaille.
89 * src/scan-code.l: Implement.
90
91 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
92
93 Clean up %skeleton and %language priority implementation.
94 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
95 remove static qualifier because others will soon need to see it.
96 (language_prio): Likewise.
97 (getargs): Use command_line_prio rather than 0.
98 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
99 enum fields.
100 (skeleton_prio): Extern it.
101 (language_prio): Extern it.
102 * src/parse-gram.y: Use grammar_prio rather than 1.
103
104 2008-11-04 Akim Demaille <demaille@gostai.com>
105
106 * NEWS: Mention the trailing semicolon in action.
107
108 2008-11-04 Akim Demaille <demaille@gostai.com>
109
110 Reformat NEWS.
111 * NEWS: Use more outline-mode markup.
112 Suggested by Jim Meyering.
113
114 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
115
116 Fix user actions without a trailing semicolon.
117 Reported by Sergei Steshenko at
118 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
119 * THANKS (Sergei Steshenko): Add.
120 * src/scan-code.l (SC_RULE_ACTION): Fix it.
121 * tests/regression.at (Fix user actions without a trailing semicolon):
122 New test case.
123
124 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
125
126 Initiate further development.
127 * NEWS: Create an empty section for new entries.
128 * gnulib: Update submodule to HEAD.
129
130 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
131
132 * NEWS: Version 2.4.
133
134 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
135
136 Prepare for next release.
137 * NEWS: Briefly mention changes since 2.3b.
138 * README: Say GNU m4 1.4.6, which we've been requiring in release
139 announcements already, not 1.4.3, which breaks the build.
140
141 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
142
143 Say %language is experimental.
144 We're thinking of extending it's effect on output file naming. See the
145 thread at
146 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
147 * NEWS: Say it's experimental.
148 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
149 recommend it over %skeleton for now.
150 (Bison Options): Likewise.
151 (C++ Bison Interface): Use %skeleton not %language.
152 (Calc++ Parser): Use %skeleton not %language.
153 * src/getargs.c (usage): Say it's experimental.
154
155 2008-11-01 Di-an Jan <dianj@freeshell.org>
156 Paolo Bonzini <bonzini@gnu.org>
157
158 Support all Java parser class modifiers.
159 * data/java.m4 (b4_percent_define_get3): New.
160 (b4_final_if, b4_strictfp_if): New.
161 * data/lalr1.java (final, strictfp, extends, implements): Support.
162 * doc/bison.texinfo (final, strictfp, extends, implements): Add
163 documentation.
164 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
165 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
166 (AT_CHECK_JAVA_GREP): New.
167 (Java parser class modifiers): New test.
168 (Java parser class extends and implements): New test.
169
170 Model exception propagation better with throws and lex_throws.
171 * data/java.m4 (b4_list2): New.
172 (throws): Change default.
173 * data/lalr1.java (yyaction): Add throws.
174 (parse): Add lex_throws in addition to throws.
175 * doc/bison.texinfo (throws, lex_throws): Add documentation.
176 * tests/java.at (Java throws specifications): New test.
177
178 Improve documentation for Java parsers.
179 * doc/bison.texinfo (Java Parsers): Add subsections.
180 Don't quote first argument of %define.
181 (Java Bison Interface): Document output files. Move documentation
182 of parser class and merge into Java Parser Interface. Document
183 features that error out. Document directives with no effect.
184 Move note about Javadoc higher.
185 (Java Semantic Values): Explicitly mention stype.
186 Document that generic types cannot be used.
187 (Java Location Values): Use @deftypeivar. Document constructors.
188 Correct return value for toString.
189 (Java Parser Interface): List undocumented constants/fields.
190 Move documentation of fields added by %parse-param closer to list
191 of members. Document that token names are added as fields.
192 Document constructors accurately. Remove error method.
193 (Java Scanner Interface): Move note on %pure-parser to Java Bison
194 Interface. Describe %code lexer and yylex accutately.
195 Remove documentation that does not match the code.
196 (Java Action Features): New.
197 (Java Differences): Add reference. Add item on semantic values.
198 Add note about @{ ... @}. Clarify %% epilogue placement.
199 (Java Declarations Summary): New.
200
201 Fix Java skeleton.
202 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
203 (b4_remove_comma): Quote test argument.
204 (b4_identification): Remove "bison" field.
205 * tests/java.at (Java parser class and package names): New test.
206 (Java %parse-param and %lex-param): New test.
207 (Java stype, position_class and location_class): New test.
208
209 2008-10-31 Di-an Jan <dianj@freeshell.org>
210
211 * data/lalr1.jave: Update copyright years.
212 (YYParser): Correct name of "generated from" file in Javadoc:
213 use b4_file_name instead of @ofile@.
214 (Location constructor): Correct Javadoc parameter name.
215 (yylloc): Add missing opening m4 quote after b4_location_if.
216 This removes a stray [ in the Javadoc of Lexer.getStartPos.
217 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
218 (YYParser constructor): Correct Javadoc parameter name.
219
220 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
221
222 Always put auxiliary code files in the same dir as other output files.
223 * src/files.c (compute_file_name_parts): When the user specifies
224 --output but not --file-prefix, extract the directory prefix from the
225 file prefix not from the grammar file name. This affects the location
226 of files like location.hh generated by the C++ skeleton. The includes
227 in the other output files require this fix.
228 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
229 for expected output files.
230 (Output files): Add a test for the above.
231
232 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
233
234 * gnulib: Update submodule to HEAD.
235
236 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
237
238 Update copyright year.
239 * src/files.c: Here.
240
241 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
242
243 Don't overwrite the input file.
244 * src/files.c (output_file_name_check): Fatal error if using input file
245 for output.
246 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
247 argument.
248 (Conflicting output files): Add test.
249
250 2008-10-28 Akim Demaille <demaille@gostai.com>
251
252 Space changes.
253 * data/lalr1.cc: Formatting changes.
254
255 2008-10-28 Akim Demaille <demaille@gostai.com>
256
257 Don't define debugging functions when !YYDEBUG.
258 * data/lalr1.cc (debug_stream, set_debug_stream)
259 (debug_level_type, debug_level, set_debug_level): Don't
260 declare them when YYDEBUG is not defined.
261 The implementation are already YYDEBUG-aware.
262
263 2008-10-28 Akim Demaille <demaille@gostai.com>
264
265 Prefer "continue" for empty loop bodies.
266 * etc/bench.pl.in: Use "continue" instead of {}.
267
268 2008-10-28 Akim Demaille <demaille@gostai.com>
269
270 Space and comments changes.
271 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
272 * data/c.m4, data/lalr1.cc: Space changes.
273
274 2008-10-28 Akim Demaille <demaille@gostai.com>
275
276 Make gnulib a submodule.
277 * gnulib: New.
278 * .gitmodules (gnulib): New.
279
280 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
281
282 Fix yyerror_range for user-defined location type in C++. Reported by
283 Georg Sauthoff at
284 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
285 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
286 * THANKS (Georg Sauthoff): Add.
287
288 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
289
290 Update several administrative files mainly to facilitate releasing.
291 * HACKING (Administrivia): Make the git-merge-changelog notes more
292 helpful.
293 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
294 (Release Procedure): Update for git and add numerous details that were
295 previously missing.
296 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
297 * maint.mk (announcement): Don't list bison as a bootstrap tool so
298 that announcements don't claim we bootstrapped with whatever bison
299 happened to be in PATH. Add flex as a bootstrap tool.
300 * Makefile.maint: Remove, previously replaced by maint.mk.
301 * Makefile.cfg: Remove, and migrate settings to...
302 * cfg.mk: ... here for the sake of `make announcement'.
303 * bootstrap.conf (gnulib_modules): Add announce-gen.
304 * README: Say GNU Bison instead of just Bison. Suggested by Karl
305 Berry.
306
307 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
308
309 Small but important bugfixes for the Java skeleton.
310 * data/lalr1.java (yyerror): Change Location to b4_location_type.
311 (yy_symbol_print): Call toString on yyvaluep.
312
313 2008-08-29 Akim Demaille <demaille@gostai.com>
314
315 Clarify UPDATED use.
316 * doc/bison.texinfo: It refers to the last edition of this file,
317 not to the release date of Bison.
318 Reported by Joel E. Denny.
319
320 2008-08-29 Akim Demaille <demaille@gostai.com>
321
322 * README: Update FAQ pointer.
323 Reported by Joel E. Denny.
324
325 2008-08-27 Eric Blake <ebb9@byu.net>
326
327 Resync m4sugar from autoconf.
328 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
329 (m4_init): Adjust to latest m4.git changes.
330 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
331 effects.
332 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
333 (_m4_list_cmp): Reduce side effects.
334
335 2008-08-27 Akim Demaille <demaille@gostai.com>
336
337 Check yyerrok in calc.at.
338 * tests/calc.at (calc.y): Use yyerrok on "( error )".
339 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
340 expected.
341
342 2008-08-27 Akim Demaille <demaille@gostai.com>
343
344 Support yyerrok in lalr1.cc.
345 YYBACKUP is still to import back into lalr1.cc.
346 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
347
348 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
349
350 For maintainer-check*, don't recompile for a $(VERSION) update.
351 * cfg.mk: New file.
352 (_is-dist-target): Override the one in GNUmakefile.
353 * Makefile.am (EXTRA_DIST): Add cfg.mk.
354
355 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
356
357 Update for recent change to gnulib.
358 * src/parse-gram.y: Don't include strverscmp.h. It comes from
359 string.h now.
360
361 2008-08-15 Eric Blake <ebb9@byu.net>
362
363 Remaining m4sugar merge from autoconf.
364 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
365 * data/m4sugar/foreach.m4: New file, copied from autoconf.
366 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
367 * src/output.c (output_skeleton): Tell m4 how to find it.
368
369 Partial m4sugar merge from autoconf: m4_map.
370 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
371 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
372 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
373 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
374 for empty list.
375 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
376 Likewise.
377 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
378 declares it.
379
380 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
381
382 Keep .version and PACKAGE_VERSION in sync.
383 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
384 dependency, and add comments justifying this in more detail. Discussed
385 starting at
386 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
387
388 2008-08-06 Eric Blake <ebb9@byu.net>
389
390 Partial m4sugar merge from autoconf: m4_shiftn.
391 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
392 (m4_shift2, m4_shift3): New macros.
393 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
394 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
395 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
396 * data/java.m4 (b4_remove_comma): Likewise.
397
398 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
399 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
400 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
401 (m4_init): Consolidate wrapped text into single m4_wrap.
402 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
403 in wrapped text.
404
405 2008-08-05 Eric Blake <ebb9@byu.net>
406
407 Partial m4sugar merge from autoconf: builtins, version.m4.
408 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
409 (m4_prepend): Remove, as it is unused and inherently quadratic,
410 whereas m4_append is linear in newer m4.
411 (m4_mkstemp): New builtin.
412 (m4_symbols): Make rename conditional.
413 (m4_version_prereq): Ensure fatal error if used in bison, which
414 intentionally lacks version.m4.
415
416 Fix comments in m4sugar.
417 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
418
419 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
420
421 Update for recent .gitignore fix in Gnulib.
422 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
423 anchored .gitignore entries.
424
425 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
426
427 Set gnu or gnits strictness.
428 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
429 development and gnits strictness for releases. Based on Eric Blake's
430 suggestion at
431 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
432
433 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
434
435 * NEWS: Clarify documentation of %language.
436
437 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
438
439 Support usage of git-merge-changelog.
440 * .gitattributes: New.
441 * HACKING: Document usage of git-merge-changelog.
442 * bootstrap: Install git-merge-changelog entries in .git/config
443 if appropriate.
444
445 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
446
447 Remove remaining dependence on CVS Id keyword.
448 * ChangeLog: For the sake of people still using CVS, don't use dollars
449 when mentioning Id.
450 * data/xslt/bison.xsl: Remove Id from header comments, where it was
451 unusual anyway.
452 * data/xslt/xml2dot.xsl: Likewise.
453 * data/xslt/xml2text.xsl: Likewise.
454 * data/xslt/xml2xhtml.xsl: Likewise.
455 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
456 * doc/Makefile.am (neutralize): Remove, no longer needed.
457 (.x.1): Don't use neutralize.
458 (edit): Don't substitute for ID.
459 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
460
461 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
462
463 Fix dependence on computed configure variables.
464 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
465 $(top_srcdir)/configure.ac so that changes to computed variables, such
466 as PACKAGE_VERSION, are seen.
467 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
468
469 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
470
471 Update copyright dates for recent changes.
472 * Makefile.am: Here.
473 * src/Makefile.am: Here.
474 * src/reduce.c: Here.
475 * tests/reduce.at: Here.
476
477 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
478
479 Use git-version-gen for version names between releases.
480 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
481 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
482 * .prev-version: New.
483 * .version.in: Remove.
484 * ChangeLog: Remove the Id previously used for capturing the CVS
485 revision.
486 * GNUmakefile: Remove, now copied from Gnulib.
487 * Makefile.am: Add code suggested by comments in
488 build-aux/git-version-gen.
489 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
490 .prev-version, and .version.
491 * NEWS (2.3b+): Rename to...
492 (?.?): ... this because we're dropping the "+" version naming scheme,
493 but, in general, we still can't be sure of our next release name.
494 * bootstrap: Add a quick hack to remove from .gitignore the
495 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
496 entry. This should really be fixed in gnulib instead.
497 * bootstrap.conf (gnulib_modules): Add gnumakefile.
498 * configure.ac (AC_INIT): Set version name by invoking
499 build-aux/git-version-gen.
500 (AC_CONFIG_FILES): Remove .version, now generated by
501 build-aux/git-version-gen.
502 * maint.mk: New, copied from coreutils.
503 * doc/.cvsignore (bison.1): Add.
504 * doc/.gitignore (/bison.1): Add.
505 * doc/bison.1: Remove, generated.
506 * src/.cvsignore (revision.c): Remove.
507 * src/.gitignore (/revision.c): Remove.
508 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
509 (BUILT_SOURCES): Remove revision.c.
510 (revision.c): Remove.
511 * src/getargs.c (version): Don't print revision after the VERSION.
512 * src/revision.h: Remove.
513
514 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
515
516 Fix untranslatable composition of sentences. Reported by Goran
517 Uddeborg at
518 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
519 * THANKS (Goran Uddeborg): Add.
520 * src/reduce.c (reduce_print): Report the number of nonterminals and
521 rules useless in the grammar in separate sentences.
522 * tests/reduce.at (Useless Rules): Update output.
523 (Reduced Automaton): Likewise.
524 (Underivable Rules): Likewise.
525 (Empty Language): Likewise.
526
527 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
528
529 Fix some .gitignore and .cvsignore problems.
530 * bootstrap (insert_sorted_if_absent): Replace all uses with...
531 (insert_vc_ignore): ... this new function, which prepends `/' to all
532 .gitignore entries before passing them to insert_sorted_if_absent.
533 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
534 .cvsignore files are maintained even though Bison developers run
535 bootstrap while using Git.
536 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
537 unneeded by Bison.
538 (gnulib): Add.
539 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
540 unneeded. Reported by Eric Blake.
541 * lib/.gitignore (/*~): Add.
542 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
543 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
544 Blake.
545 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
546
547 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
548
549 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
550 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
551 * bootstrap.conf (gnulib_modules): Add unsetenv.
552 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
553 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
554 (/setenv.m4): Add.
555 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
556 the first argument because it may become position-dependent, and unset
557 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
558 Add comments explaining these issues in more detail.
559
560 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
561
562 Add .gitignore everywhere based on .cvsignore.
563 * .gitignore: New.
564 * build-aux/.gitignore: New.
565 * data/.gitignore: New.
566 * doc/.gitignore: New.
567 * etc/.gitignore: New.
568 * examples/.gitignore: New.
569 * examples/calc++/.gitignore: New.
570 * lib/.gitignore: New.
571 * m4/.gitignore: New.
572 * po/.gitignore: New.
573 * runtime-po/.gitignore: New.
574 * src/.gitignore: New.
575 * tests/.gitignore: New.
576
577 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
578
579 * NEWS (2.3b+): New section, empty for now.
580 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
581
582 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
583
584 * NEWS (2.3b): Update release date since there has been a delay in
585 getting the announcements and tarballs out.
586
587 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
588
589 * NEWS: Version 2.3b.
590 * configure.ac (AC_INIT): Likewise.
591 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
592
593 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
594
595 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
596 been doing it for years.
597 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
598 (Release Procedure): Add FIXME about make alpha being unmaintained.
599
600 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
601
602 * data/yacc.c: Reformat m4 a little for readability.
603 * src/lalr.c (build_relations): Correct comment.
604
605 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
606
607 DJGPP specific issue.
608 * djgpp/config.sed: Fixes required to run configure scripts generated
609 by autoconf 2.62.
610
611 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
612
613 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
614 coordinator@translationproject.org.
615
616 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
617
618 * THANKS: Add Eric Blake.
619
620 2008-04-23 Eric Blake <ebb9@byu.net>
621
622 Revert prior patch, by working around autoconf regression.
623 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
624 ("Output file name: ("): Uncomment test.
625 ("Output file name: )"): Likewise.
626 Based on an idea from Noah Misch.
627
628 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
629
630 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
631 2.61. Reported by Juan Manuel Guerrero at
632 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
633 * tests/output.at ("Output file name: ("): Comment out test case for
634 now.
635 ("Output file name: )"): Likewise.
636
637 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
638
639 * GNUmakefile: Update git-version-gen invocation so make dist
640 succeeds.
641
642 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
643
644 Update to the current gnulib CVS repository, and fix trigraph handling
645 in Bison.
646 * bootstrap: Update gnulib CVS repository URL.
647 (symlink_to_dir): Encapsulate the code that guarantees the destination
648 directory exists into...
649 (check_dst_dir): ... this new function, and...
650 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
651 fail when copying files into lib/uniwidth/.
652 * src/output.c (prepare_symbols): When writing yytname muscles, where
653 symbol names will be encoded in C-string literals, tell quotearg to
654 escape trigraphs. This used to be the default in gnulib.
655 * tests/regression.at (Token definitions): Because of the change in
656 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
657 escapes trigraphs in symbol names. Thus, yytname no longer has
658 trigraphs unnecessarily doubly escaped. Update test case output.
659 Extend test case to be sure Bison's own error messages will no longer
660 have trigraphs in symbol names unnecessarily escaped once.
661
662 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
663
664 Fix make dist infinite loop reported by Juan Manuel Guerrero at
665 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
666 * .cvsignore: Add .version.
667 * .version.in: New.
668 * bootstrap.conf (gnulib_modules): Add git-version-gen.
669 * configure.ac (AC_CONFIG_FILES): Add .version.
670 * build-aux/.cvsignore: Add git-version-gen.
671
672 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
673
674 * NEWS (2.3a+): Mention that -g now takes an argument.
675 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
676 consistency. Update the -g and -x entries now that they take
677 arguments. Use brackets to indicate optional arguments.
678 * src/getargs.c (usage): Explain the relationship between arguments of
679 long and short options more completely. Document --defines and -d
680 separately since the former takes an argument but, for POSIX Yacc, the
681 latter does not.
682 (short_options): Let -W take an optional argument like --warnings.
683 (getargs): Sort cases.
684
685 2008-02-28 Akim Demaille <demaille@gostai.com>
686
687 * doc/bison.texinfo: Fix a few typos.
688
689 2008-02-28 Akim Demaille <akim@epita.fr>
690
691 * doc/bison.texinfo (Bison Options): Document -W.
692 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
693
694 2008-02-28 Akim Demaille <akim@epita.fr>
695
696 * src/getargs.c (short_options): Split and sort for readability.
697 -g and -x take optional arguments, just like their long options.
698 * build-aux/cross-options.pl: Use /x to make the regexp easier to
699 understand.
700 Fix the handling of $opt which resulted in all the argument to be
701 considered as optional.
702
703 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
704
705 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
706 say its interface is experimental.
707 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
708 Java.
709 (Bison Options): In the -L and --language entry, mention Java.
710 (Java Bison Interface): Say the interface is experimental.
711 * src/getargs.c (usage): Mention -L and --language.
712
713 * NEWS (2.3a+): Say the push parsing interface is experimental.
714 * doc/bison.texinfo (Push Decl): Likewise.
715 (Decl Summary): Likewise in the "%define api.push_pull" entry.
716 (Push Parser Function): Likewise.
717 (Pull Parser Function): Likewise.
718 (Parser Create Function): Likewise.
719 (Parser Delete Function): Likewise.
720 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
721 yypull_parse, and yypush_parse entries.
722
723 * NEWS (2.3a+): Mention XML support, and say the schema is
724 experimental.
725 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
726 * src/getargs.c (usage): Say the XML schema is experimental.
727
728 * NEWS (2.3a+): Say option instead of flag.
729
730 2008-02-21 Wojciech Polak <polak@gnu.org>
731
732 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
733 text.
734
735 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
736
737 Fix impure push parser compile error reported by Bob Rossi at
738 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
739 * data/yacc.c: Clean up whitespace in the output a little.
740 (yypstate_allocated): Define for impure push parsers regardless of
741 whether the pull interface is also requested.
742 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
743 check impure push parsers without the pull interface.
744
745 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
746 yyerror takes arguments specified by %parse-param while yypstate_new
747 does not.
748 * doc/bison.texinfo (Parser Create Function): Document that
749 yypstate_new returns 0 for multiple impure parser instances.
750 * tests/push.at (Push Parsing: Multiple impure instances): Update
751 expected stderr output.
752
753 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
754
755 * runtime-po/POTFILES.in (push.c): Remove.
756
757 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
758
759 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
760 * data/push.c: Rename to...
761 * data/yacc.c: ... this, overwriting it.
762 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
763 `%push-pull-parser' -> `%define api.push_pull "both"'.
764 Remove old yacc.c tests, and update push.c tests to yacc.c.
765
766 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
767
768 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
769 `"%code top" blocks' instead of `%code "top" blocks'.
770 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
771 Clean up whitespace in the output a little.
772
773 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
774
775 Fix documentation problems reported by Tim Josling at
776 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
777 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
778 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
779 integers. Explain the effect of literal string aliases on error
780 messages. Copy token 0 documentation from the C++ skeleton
781 documentation.
782
783 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
784
785 Accept a token number in a %left, %right, or %nonassoc for POSIX
786 conformance. Reported by Tim Josling at
787 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
788 * NEWS (2.3a+): Mention.
789 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
790 and code numbers are treated by precedence declarations.
791 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
792 of symbols.1.
793 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
794 of symbol.
795 (symbol.prec): New, just like symbol but allows INT.
796 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
797 longer holds.
798 * tests/regression.at (Token number in precedence declaration): New
799 test case.
800
801 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
802
803 DJGPP specific issues.
804 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
805 be changed. Copyright timestamp adjusted.
806 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
807 be changed. Copyright timestamp adjusted.
808 * djgpp/config.site: Copyright timestamp adjusted.
809 * djgpp/config_h.sed: Copyright timestamp adjusted.
810 * djgpp/djunpack.bat: Copyright timestamp adjusted.
811 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
812 filename translation list.
813 * djgpp/subpipe.c (init_subpipe): Check the environment variables
814 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
815 files shall be created. Before trying to use the temp dir where the
816 environment variable points to check that the dir really exists. If
817 not default to the cwd as temp dir. Copyright timestamp adjusted.
818 * djgpp/subpipe.h: Copyright timestamp adjusted.
819 * djgpp/testsuite.sed: Copyright timestamp adjusted.
820
821 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
822
823 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
824
825 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
826
827 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
828 Problem reported by Claudio Saavedra in
829 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
830
831 2008-01-05 Wojciech Polak <polak@gnu.org>
832
833 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
834 document's title with the input grammar file name.
835
836 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
837
838 Automate regression testing of the XML/XSLT implementation. Discussed
839 starting at
840 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
841 * configure.ac (XSLTPROC): New substitution.
842 * Makefile.am (maintainer-xml-check): New phony target invoking...
843 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
844 invoking make maintainer-check with BISON_TEST_XML=1.
845 * tests/atlocal.in (XSLTPROC): New.
846 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
847 not to report reachable memory when Bison is expected to have a
848 non-zero exit status and (2) to compare XML/XSLT output with --graph
849 and --report=all output for every working grammar when
850 BISON_TEST_XML=1.
851 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
852 (AT_BISON_CHECK_XML): New.
853 (AT_QUELL_VALGRIND): New.
854 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
855 (AT_CHECK): ... don't redefine this since this was the old way to
856 quell Valgrind.
857 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
858 AT_BISON_CHECK invocations.
859 * tests/c++.at: Likewise.
860 * tests/calc.at: Likewise.
861 * tests/conflicts.at: Likewise.
862 * tests/cxx-type.at: Likewise.
863 * tests/existing.at: Likewise.
864 * tests/glr-regression.at: Likewise.
865 * tests/headers.at: Likewise.
866 * tests/input.at: Likewise.
867 * tests/java.at: Likewise.
868 * tests/output.at: Likewise.
869 * tests/push.at: Likewise.
870 * tests/reduce.at: Likewise.
871 * tests/regression.at: Likewise.
872 * tests/sets.at: Likewise.
873 * tests/skeletons.at: Likewise.
874 * tests/synclines.at: Likewise.
875 * tests/torture.at: Likewise.
876 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
877 tends to hang xsltproc.
878 (Big horizontal): Likewise.
879
880 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
881
882 In XML output, remove redundant class attribute on symbol element.
883 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
884 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
885 look up a symbol to determine whether it's a nonterminal or terminal.
886 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
887 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
888
889 Add prec/assoc information to XML output.
890 * src/gram.c (grammar_rules_print_xml): For each rule that has a
891 %prec, add a percent_prec attribute.
892 * src/print-xml.c (print_grammar): For each terminal that has a
893 precedence or associativity, add a prec or assoc attribute.
894 (xml_indent): New.
895 (xml_puts): Use xml_indent.
896 (xml_printf): Use xml_indent.
897 * src/print-xml.h (xml_indent): Prototype.
898
899 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
900 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
901
902 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
903
904 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
905 (bison:ruleByNumber): ... this for clarity.
906 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
907 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
908 (xsl:template match="reduction"): Update.
909 (xsl:template match="item"): Update.
910 (xsl:template match="reduction"): Update.
911
912 In the XML output, don't print the list of rules where symbols appear.
913 Compute it in XSLT instead. Discussed at
914 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
915 * data/xslt/bison.xsl (bison:ruleByLhs): New.
916 (bison:ruleByRhs): New.
917 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
918 bison:ruleByRhs.
919 (xsl:template match="terminal/rule"): Remove.
920 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
921 bison:ruleByRhs.
922 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
923 Remove.
924 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
925 bison:ruleByRhs and mode="number-link" for rule template.
926 (xsl:template match="terminal/rule"): Remove.
927 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
928 bison:ruleByRhs and mode="number-link" for rule template.
929 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
930 Rewrite as...
931 (xsl:template match="rule" mode="number-link"): ... this.
932 * src/print-xml.c (print_grammar): Don't print the list of rules.
933
934 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
935
936 Don't let --report affect XML output; always print all information.
937 Discussed at
938 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
939 * src/conflicts.c (log_resolution): Implement.
940 * src/print-xml.c (print_core): Implement.
941 (print_state): Implement.
942 (print_xml): Implement.
943
944 * NEWS (2.3a+): Fix quotes.
945 * src/parse-gram.y (prologue_declaration): For consistency with -v,
946 don't let %verbose clear the list specified by --report.
947
948 2007-11-26 Akim Demaille <akim@epita.fr>
949
950 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
951
952 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
953
954 In the XML output, list useless and unused symbols and rules with the
955 useful ones and add a "usefulness" attribute. Discussed starting at
956 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
957 * src/gram.c (grammar_rules_partial_print_xml): Remove.
958 (grammar_rules_print_xml): Print all rules instead of just those
959 useful in the grammar, and add a "usefulness" attribute.
960 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
961 * src/print-xml.c (print_rules_useless_in_parser): Remove.
962 (print_grammar): Print all nonterminals instead of just useful ones,
963 and add a "usefulness" attribute to nonterminals and terminals.
964 (print_xml): Don't print a separate "reductions" or
965 "rules-useless-in-parser" element.
966 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
967 (reduce_xml): Remove.
968 (reduce_token_unused_in_grammar): New.
969 (reduce_nonterminal_useless_in_grammar): New.
970 * src/reduce.h (reduce_xml): Remove prototype.
971 (reduce_token_unused_in_grammar): Add prototype.
972 (reduce_nonterminal_useless_in_grammar): Add prototype.
973 * data/xslt/xml2text.xsl: Update for XML changes.
974 * data/xslt/xml2xhtml.xsl: Update for XML changes.
975 * tests/reduce.at (Useless Terminals): Update output.
976 (Useless Rules): Update output.
977 (Reduced Automaton): Update output.
978
979 Say "Terminals unused in grammar" instead of "Unused terminals".
980 * NEWS (2.3a+): Update.
981 * doc/bison.texinfo (Understanding): Update example output.
982 * src/reduce.c (reduce_output): Implement.
983 * data/xslt/xml2text.xsl: Implement.
984 * data/xslt/xml2xhtml.xsl: Implement.
985
986 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
987
988 Accept --report-file=FILE to override the default `.output' filename.
989 * NEWS (2.3a+): Mention.
990 * doc/bison.texinfo (Bison Options): Add an entry.
991 * src/files.c (compute_output_file_names): Don't override
992 spec_verbose_file if already set.
993 * src/getargs.c (usage): Document --report-file.
994 (REPORT_FILE_OPTION): New anonymous enum member.
995 (long_options): Add entry for it.
996 (getargs): Add case for it setting spec_verbose_file.
997
998 * build-aux/cross-options.pl: Don't record a short option just because
999 there's an arg.
1000 * doc/.cvsignore: Add yacc.1.
1001
1002 2007-11-14 Akim Demaille <akim@epita.fr>
1003
1004 * doc/yacc.1.in: New.
1005 * configure.ac, doc/Makefile.am: Adjust.
1006 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
1007 config.h symbol.
1008 Use AC_SUBST for assignments too.
1009 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
1010
1011 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1012
1013 * src/gram.c: Remove comments that duplicate comments in gram.h.
1014
1015 When reporting useless rules and nonterminals, say "useless in grammar"
1016 instead of "useless", and say "useless in parser" instead of "never
1017 reduced". Discussed starting at
1018 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
1019 * NEWS (2.3a+): Mention this change.
1020 * data/xslt/xml2text.xsl: Update output text and expected input XML
1021 element names to match changes below.
1022 * data/xslt/xml2xhtml.xsl: Likewise.
1023 (xsl:template match="bison-xml-report"): Add missing entry in Table of
1024 Contents: "Rules useless in parser due to conflicts".
1025 * doc/bison.texinfo (Decl Summary): Reword a little.
1026 (Understanding): Update example output for changes below.
1027 * src/gram.c: (rule_useful_p): Rename to...
1028 (rule_useful_in_grammar_p): ... this.
1029 (rule_useless_p): Rename to...
1030 (rule_useless_in_grammar_p): ... this.
1031 (rule_never_reduced_p): Rename to...
1032 (rule_useless_in_parser_p): ... this.
1033 (grammar_rules_print): Update for renames.
1034 (grammar_rules_print_xml): Update for renames.
1035 (grammar_rules_never_reduced_report): Rename to...
1036 (grammar_rules_useless_report): ... this since it is used for either
1037 kind of useless rule.
1038 * src/gram.h: Reword comments and update function names in prototypes.
1039 * src/main.c (main): Say "rule useless in parser due to conflicts".
1040 * src/print-xml.c (print_rules_never_reduced): Rename to...
1041 (print_rules_useless_in_parser): ... this, and rename output XML
1042 element "rules-never-reduced" to "rules-useless-in-parser".
1043 (print_xml): Update for rename.
1044 * src/print.c (print_results): Say "Rules useless in parser due to
1045 conflicts".
1046 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
1047 (nonterminals_reduce): Say "nonterminal useless in grammar".
1048 (reduce_output): Say "Nonterminals useless in grammar".
1049 Say "Rules useless in grammar".
1050 (reduce_xml): Rename output XML element "useless" to
1051 "useless-in-grammar".
1052 (reduce_print): Don't report the count of grammatically useless rules
1053 as "rules never reduced" just because %yacc is specified.
1054 In the correct report of this count, say nonterminal(s) and rule(s)
1055 "useless in grammar".
1056 * tests/conflicts.at (S/R in initial): Update expected output.
1057 (Defaulted Conflicted Reduction): Likewise.
1058 (Unreachable States After Conflict Resolution): Likewise.
1059 * tests/existing.at (GNU pic Grammar): Likewise.
1060 * tests/reduce.at (Useless Nonterminals): Likewise.
1061 (Useless Rules): Likewise.
1062 (Reduced Automaton): Likewise.
1063 (Underivable Rules): Likewise.
1064 (Empty Language): Likewise.
1065
1066 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1067
1068 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
1069 here document and before the EOF so that BSD's implementation of Bourne
1070 shell doesn't parse the delimiter as part of the here document.
1071 * doc/.cvsignore: Add cross-options.texi.
1072 * src/getargs.c (usage): Add a blank line after the warning categories.
1073
1074 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
1075
1076 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
1077
1078 2007-11-05 Akim Demaille <akim@epita.fr>
1079
1080 Remove Id: from bison.1.
1081 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
1082 (perl -0777 -pi -e 's/\.PP\nId): New.
1083 (.x.1): Use it to ignore the version control revision.
1084
1085 2007-11-05 Akim Demaille <demaille@gostai.com>
1086
1087 * build-aux/Makefile.am: Ship cross-options.pl.
1088 * doc/Makefile.am: Always refer to cross-options.texi with
1089 $(srcdir).
1090 (MAINTAINERCLEANFILES): Add it.
1091
1092 2007-11-04 Akim Demaille <demaille@gostai.com>
1093
1094 Generate the long/short option cross-table.
1095 * build-aux/cross-options.pl: New.
1096 * doc/Makefile.am (cross-options.texi): New.
1097 * doc/bison.texinfo: Use it.
1098
1099 2007-11-04 Akim Demaille <demaille@gostai.com>
1100
1101 Generate bison.1 using help2man.
1102 * doc/common.x, doc/bison.x: New.
1103 * doc/Makefile.am (bison.1, .x.1): New.
1104 The code is taken from autoconf-2.61/man/Makefile.am.
1105 * configure.ac: Look for help2man.
1106
1107 2007-11-04 Akim Demaille <demaille@gostai.com>
1108
1109 Complete --help.
1110 * src/getargs.c (usage): Document -W, make it clear that -d,
1111 -g and -x have optional arguments.
1112
1113 2007-11-04 Akim Demaille <demaille@gostai.com>
1114
1115 Find sha1sum when named gsha1sum.
1116 * bootstrap (find_tool): New.
1117 ($SHA1SUM): New.
1118
1119 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1120
1121 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1122 at
1123 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1124 * NEWS (2.3a+): Mention.
1125 * data/bison.m4 (b4_pure_if): Don't define it here.
1126 * data/c.m4 (b4_identification): Depend on individual skeletons to
1127 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1128 values of the %define variables api.pure or api.push_pull. Define
1129 YYPURE, YYPUSH, and YYPULL accordingly.
1130 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1131 glr.cc has already defined b4_pure_flag.
1132 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1133 Remove YYPUSH and YYPULL since they're back in b4_identification again.
1134 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
1135 * doc/bison.texinfo (Pure Decl): Update.
1136 (Push Decl): Update.
1137 (Decl Summary): Add api.pure to %define entry.
1138 In %pure-parser entry, say it's deprecated and reference %define.
1139 (Pure Calling): Update.
1140 (Error Reporting): Update.
1141 (C++ Scanner Interface): Update.
1142 (How Can I Reset the Parser): Update.
1143 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1144 reference %define.
1145 * src/getargs.c (pure_parser): Remove global variable.
1146 * src/getargs.h (pure_parser): Remove extern.
1147 * src/output.c (prepare): Don't define pure_flag muscle.
1148 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1149 wrapper around `%define api.pure'.
1150 * tests/calc.at (Simple LALR Calculator): Update.
1151 (Simple GLR Calculator): Update.
1152 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1153 Update.
1154 (GLR: Resolve ambiguity, pure, locations): Update.
1155 (GLR: Merge conflicting parses, pure, no locations): Update.
1156 (GLR: Merge conflicting parses, pure, locations): Update.
1157 * tests/glr-regression.at (Uninitialized location when reporting
1158 ambiguity): Update
1159 * tests/input.at (Unused %define api.pure): New test case.
1160 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1161 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1162 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1163
1164 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1165
1166 %define push_pull -> %define api.push_pull. Discussed starting at
1167 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1168 * data/push.c: Expect the new name.
1169 * data/yacc.c: Likewise.
1170 * doc/bison.texinfo (Push Decl): Update.
1171 (Decl Summary): Update %define entry.
1172 (Push Parser Function): Update.
1173 (Pull Parser Function): Update.
1174 (Parser Create Function): Update.
1175 (Parser Delete Function): Update.
1176 * tests/calc.at (Simple LALR Calculator): Update.
1177 * tests/input.at (%define enum variables): Update.
1178 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1179 (Push Parsing: Multiple impure instances): Update.
1180 (Push Parsing: Unsupported Skeletons): Update.
1181 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1182 (Exploding the Stack Size with Malloc): Update.
1183
1184 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1185 other entries some.
1186
1187 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1188
1189 For the XML output's terminal element, rename @number to @token-number,
1190 and add @symbol-number. In the nonterminal element, rename @number to
1191 @symbol-number. Discussed starting at
1192 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1193 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1194 renames.
1195 (xsl:template match="nonterminal"): Likewise.
1196 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1197 (xsl:template match="nonterminal"): Likewise.
1198 * src/print-xml.c (print_grammar): Implement.
1199
1200 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1201
1202 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1203 2007-10-11 change, the child elements here are items not rules.
1204 (xsl:template match="item"): New.
1205 (xsl:template match="rule"): Update for new reduced itemset.
1206 (xsl:template match="point"): Remove.
1207 (xsl:template match="empty"): For consistency with --graph, don't
1208 output "/* empty */".
1209 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1210 line-wrap, don't pass a negative value as first-line-length since this
1211 won't work with the following changes.
1212 (xsl:template name="line-wrap"): Simplify slightly.
1213 (xsl:template name="ws-search"): Eliminate recursion.
1214 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1215 set next to an item whose dot is not at the end of the RHS even if it
1216 happens to be associated with the same rule.
1217
1218 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1219
1220 Add %define lr.keep_unreachable_states.
1221 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1222 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1223 * src/main.c (main): Implement it.
1224 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1225 Extend to test it, and fix a typo.
1226
1227 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1228
1229 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
1230 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1231 the example .output text.
1232 * tests/regression.at (Extra lookahead sets in report): Improve wording
1233 of comments.
1234
1235 2007-10-17 Wojciech Polak <polak@gnu.org>
1236
1237 * src/print-xml.c (print_grammar): Renamed
1238 <terminal> and <nonterminal> attributes:
1239 "type" to "number" and "symbol" to "name".
1240 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1241 Use new attribute names.
1242 (xsl:template match="nonterminal"): Likewise.
1243 * data/xslt/xml2xhtml.xsl: Likewise.
1244
1245 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1246
1247 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1248 (Option Cross Key): Likewise.
1249
1250 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1251 next to an item whose dot is not at the end of the RHS even if it
1252 happens to be associated with the same rule.
1253 * src/print.c (print_core): Likewise.
1254 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1255 (Resolved SR Conflicts): Update output.
1256 * tests/regression.at (Extra lookahead sets in report): New test case.
1257
1258 2007-10-11 Wojciech Polak <polak@gnu.org>
1259
1260 * src/print-xml.c (print_core): Remove item set
1261 redundancy.
1262 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1263 Improve processing time. Suggested by Joel E. Denny.
1264 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1265 Write xsl:param "required" attribute as comment.
1266 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1267 (xsl:template match="rule"): Support new reduced itemset.
1268 (xsl:template match="point"): Remove.
1269 * data/xslt/xml2xhtml.xsl: Likewise.
1270
1271 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1272
1273 * src/getargs.c (version): Update copyright year.
1274
1275 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 Make xml2dot.xsl and --graph produce the same output.
1278 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1279 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1280 escaped later.
1281 (xsl:template name="output-node"): Use the new escape template instead
1282 of the string-replace template directly.
1283 (xsl:template name="output-edge"): Likewise.
1284 (xsl:template name="escape"): New, escapes backslashes and newlines in
1285 addition to quotation marks.
1286 * src/graphviz.c (start_graph, output_node, output_edge): Add
1287 whitespace to output for legibility.
1288
1289 Make xml2text.xsl and --report produce the same output, and remove the
1290 XML "conflicts" element since a conflict summary is easily extracted
1291 from the automaton.
1292 * data/xslt/bison.xsl: New.
1293 (xsl:template match="state" mode="bison:count-conflicts): New.
1294 * data/xslt/xml2text.xsl: Import bison.xsl.
1295 (xsl:template match="bison-xml-report"): Instead of styling the
1296 "conflicts" element, style the "automaton" element with mode
1297 "conflicts". Unlike the former, the latter lists S/R and R/R
1298 conflicts for a state on the same line.
1299 (xsl:template match="conflicts"): Remove.
1300 (xsl:template match="conflict"): Remove.
1301 (xsl:template match="terminal"): Line-wrap the list of rules in which
1302 the terminal is used.
1303 (xsl:template match="nonterminal"): Likewise for nonterminals.
1304 (xsl:template match="automaton" mode="conflicts"): New.
1305 (xsl:template match="state" mode="conflicts"): New.
1306 (xsl:template name="line-wrap"): New.
1307 (xsl:template name="ws-search"): New.
1308 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1309 (xsl:template match="bison-xml-report"): Instead of styling the
1310 "conflicts" element, style the "automaton" element with mode
1311 "conflicts."
1312 (xsl:template match="conflicts"): Remove.
1313 (xsl:template match="conflict"): Remove.
1314 (xsl:template match="automaton" mode="conflicts"): New.
1315 (xsl:template match="state" mode="conflicts): New.
1316 * src/conflicts.c (conflicts_output_xml): Remove.
1317 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1318 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1319 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1320 the corresponding XSLT is easier. Also, never wrap between a word and
1321 the comma that follows it.
1322
1323 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1324
1325 Improve C++ namespace support. Discussed starting at
1326 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1327 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1328 b4_namespace_close): New macros that interpret the %define variable
1329 "namespace" so its value can contain "::" to indicate nested
1330 namespaces.
1331 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1332 the above macros.
1333 * data/lalr1.cc (b4_namespace): Likewise.
1334 * data/location.cc (b4_namespace): Likewise.
1335 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1336 inside a new table in the general %define entry. Document `%define
1337 namespace' there as well. Point the %name-prefix entry to it since it
1338 explains it more completely in the case of C++.
1339 (C++ Bison Interface): Mention `%define namespace' instead of
1340 %name-prefix.
1341 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1342 entry suffices.
1343 * tests/c++.at (Relative namespace references): New test case.
1344 (Absolute namespace references): New test case.
1345 (Syntactically invalid namespace references): New test case.
1346 * tests/input.at (C++ namespace reference errors): New test case.
1347
1348 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1349
1350 Add syncline support and location accessor to internal %define
1351 interfaces.
1352 * data/bison.m4 (b4_percent_define_get_loc): New.
1353 (b4_percent_define_get_syncline): New.
1354 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1355 (b4_percent_define_default): Record defining location as line 1 rather
1356 than 0 for the sake of synchronizing #line's, and define
1357 b4_percent_define_syncline(VARIABLE).
1358 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1359 * src/muscle_tab.c (muscle_syncline_grow): New.
1360 (muscle_code_grow): Use muscle_syncline_grow.
1361 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1362 define b4_percent_define_syncline(VARIABLE).
1363 (muscle_percent_define_get_loc): New.
1364 (muscle_percent_define_get_syncline): New.
1365 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1366 remove some unused variables.
1367 (muscle_percent_define_default): Record defining location as line 1
1368 rather than 0 for the sake of synchronizing #line's, and define
1369 b4_percent_define_syncline(VARIABLE).
1370 (muscle_percent_define_check_values): Use
1371 muscle_percent_define_get_loc.
1372 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1373 (muscle_percent_define_get_syncline): Prototype.
1374 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1375 defaults): Update output for location change.
1376 (Complaining during macro argument expansion): Extend to test
1377 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1378
1379 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1380
1381 Fix some error-reporting macro bugs.
1382 * data/bison.m4 (b4_cat): New.
1383 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1384 to stdout so they don't become arguments to other macros. Update
1385 comments and add examples.
1386 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1387 add examples.
1388 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1389 after printing the error directive so that M4 doesn't report subsequent
1390 problems that are induced by this problem.
1391 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1392 instead of just in them. Recognize @\n in both places. Both expand to
1393 the empty string. Needed by b4_cat.
1394 * tests/skeletons.at (Complaining during macro argument expansion):
1395 New test case.
1396 (Fatal errors make M4 exit immediately): New test case.
1397
1398 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1399
1400 Implement --print-datadir.
1401 * src/getargs.c (usage): Mention.
1402 (PRINT_DATADIR_OPTION): New anonymous enum member.
1403 (long_options): Add entry for it.
1404 (getargs): Add case for it calling compute_pkgdatadir.
1405 * src/output.c (output_skeleton): Encapsulate data directory
1406 computation from here...
1407 (prepare): ... and from here...
1408 (compute_pkgdatadir): ... into this new function.
1409 * src/output.h (compute_pkgdatadir): Prototype.
1410
1411 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1412
1413 * src/print-xml.c (escape_bufs): New static global variable
1414 replacing...
1415 (xml_escape_n): ... the static local variable buf here.
1416 (print_xml): Free memory for escape_bufs.
1417 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1418
1419 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1420
1421 Replace `%push-parser' and `%push-pull-parser' with
1422 `%define push_pull "push"' and `%define push_pull "both"'.
1423 `%define push_pull "pull"' is the default.
1424 * doc/bison.texinfo (Push Decl, Push Parser Function,
1425 Pull Parser Function, Parser Create Function, Parser Delete Function):
1426 Update declarations.
1427 (Decl Summary, Table of Symbols): Replace %push-parser and
1428 %push-pull-parser entries with a %define push_pull entry.
1429 * data/bison.m4 (b4_percent_define_check_values): New macro.
1430 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1431 definitions...
1432 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1433 definitions...
1434 * data/push.c: ... to here and compute them from the value of the
1435 %define variable push_pull.
1436 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1437 parsing requests here...
1438 * data/yacc.c: ... hack this to switch to push.c any time
1439 b4_use_push_pull_flag or the %define variable push_pull is set. This
1440 will go away when we mv push.c yacc.c.
1441 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1442 push parsing is not supported since unused %define variables are
1443 reported anyway.
1444 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1445 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1446 comments for consistency with b4_percent_define_check_values.
1447 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1448 muscles.
1449 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1450 Remove.
1451 (prologue_declaration): Remove %push-parser and %push-pull-parser
1452 rules.
1453 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1454 * tests/calc.at: Update declarations.
1455 * tests/input.at (%define enum variables): New test case.
1456 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1457 declaration.
1458 (Push Parsing: Multiple impure instances): Update declaration.
1459 (Push Parsing: Unsupported Skeletons): New test case.
1460 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1461 declaration.
1462 (Exploding the Stack Size with Malloc): Update declaration.
1463
1464 2007-09-24 Wojciech Polak <polak@gnu.org>
1465
1466 Add XSLT transformations.
1467
1468 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1469 * data/xslt/xml2text.xsl: Transform XML into plain text.
1470 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1471 * data/Makefile.am (xsltdir): New variable.
1472 (dist_xslt_DATA): Add xslt/*.xsl files.
1473
1474 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1475
1476 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1477 Problem reported by Wojciech Polak.
1478 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
1479 (xml_printf): Undo change I made on 21 September; that is,
1480 indent 2 spaces, not 1.
1481
1482 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
1483
1484 Pacify ./configure --enable-gcc-warnings.
1485 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
1486 `char const *' instead of `char *'.
1487 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
1488 local variable `sep'.
1489
1490 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1491
1492 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
1493 elsewhere.
1494 * src/print-xml.c: Prefer "const" after types; that's more consistent.
1495 (xml_printf): Indent just 1 space for level.
1496 (e_char, xlate_char): Remove.
1497 (xml_escape_string): Rewrite to avoid undefined behavior (used
1498 storage that was freed from the stack).
1499 (xml_escape_n): Don't bother checking for subscript error.
1500
1501 2007-09-21 Wojciech Polak <polak@gnu.org>
1502
1503 Add Bison XML Automaton Report.
1504
1505 Add support for an -x option to generate an XML report.
1506 It is not documented yet.
1507 * src/print-xml.c: New file.
1508 * src/print-xml.h: Likewise.
1509 * lib/timevar.def (TV_XML): New var.
1510 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
1511 * src/conflicts.c: Include print-xml.h.
1512 (solved_conflicts_xml_obstack): New var.
1513 (log_resolution, conflicts_solve, conflicts_free):
1514 Add support for XML report.
1515 (conflicts_output_val): New function.
1516 * src/conflicts.h (conflicts_output_val): New decl.
1517 * src/files.c (spec_xml_file): New var.
1518 (compute_output_file_names, output_file_names_free): Add XML support.
1519 * src/files.h (spec_xml_file): New decl.
1520 * src/getargs.c (xml_flag): New var.
1521 (usage, short_options, long_options, getargs): Add XML support.
1522 * src/getargs.h (xml_flag): New decl.
1523 * src/gram.c: Include print-xml.h.
1524 (rule_lhs_print_xml, rule_rhs_print_xml):
1525 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
1526 New functions.
1527 * src/gram.h: Declare external ones.
1528 * src/main.c: Include print-xml.h.
1529 (main): Add XML support.
1530 * src/reduce.c: Include print-xml.h.
1531 (reduce_xml): New function.
1532 * src/reduce.h: Declare it.
1533 * src/state.c: Include print-xml.h.
1534 (state_new): Add XML support.
1535 (state_rule_lookahead_tokens_print_xml): New function.
1536 * src/state.h: Declare it.
1537 (struct state): New member solved_conflicts_xml.
1538 * src/symtab.c (symbol_class_get_string): New function.
1539 * src/symtab.h: Declare it.
1540
1541 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1542
1543 * GNUmakefile: Switch to coreutils's version.
1544 * bootstrap: Likewise.
1545 * Makefile.cfg: Adjust to new GNUmakefile.
1546 * README-hacking: Likewise.
1547
1548 Import from gnulib:
1549
1550 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
1551 Bruno Haible <bruno@clisp.org>
1552
1553 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
1554 and is a script that invokes bison. Tighten the code. Add comments.
1555
1556 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
1557
1558 Spell "boolean" as "Boolean". Reported by Akim Demaille.
1559 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
1560 * doc/bison.texinfo (Decl Summary): Fix.
1561 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
1562 * tests/input.at (Boolean %define variables): Update output.
1563 * tests/skeletons.at (%define boolean variables: invalid skeleton
1564 defaults): Rename to...
1565 (%define Boolean variables: invalid skeleton defaults): ... this and
1566 update output.
1567
1568 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
1569
1570 In impure push mode, don't allow more than one yypstate to be allocated
1571 since multiple impure parsers would corrupt yynerrs.
1572 * data/push.c (yypstate_allocated): New static global variable
1573 initialized to 0.
1574 (yypull_parse): If yypstate_new returns 0, don't report it as memory
1575 exhaustion if yypstate_allocated is 1, but still return 2.
1576 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
1577 already 1. Otherwise, set it to 1.
1578 (yypstate_delete): Set it to 0.
1579 * tests/push.at (Push Parsing: Multiple impure instances): New test
1580 case.
1581
1582 2007-08-17 Bob Rossi <bob@brasko.net>
1583
1584 * doc/bison.texinfo (Push Decl): Document the push parser.
1585 (Table of Symbols): Ditto.
1586 (Pure Decl): Ditto.
1587 (Decl Summary): Ditto.
1588 (Multiple Parsers, Push Parser Function, Pull Parser Function,
1589 Parser Create Function, Parser Delete Function):
1590 Add new push parser symbols.
1591 (Table of Symbols): Document push-parser, push-pull-parser,
1592 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
1593
1594 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
1595
1596 Update to GPLv3.
1597 * doc/gpl-3.0.texi: New file.
1598 * doc/gpl.texi: Remove.
1599 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
1600 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
1601 * README-hacking, TODO, bootstrap, bootstrap.conf:
1602 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
1603 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
1604 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
1605 * data/lalr1.cc, data/lalr1.java, data/location.cc:
1606 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
1607 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
1608 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
1609 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
1610 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
1611 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
1612 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
1613 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
1614 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
1615 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
1616 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
1617 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
1618 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
1619 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
1620 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
1621 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
1622 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
1623 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
1624 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
1625 * src/complain.c, src/complain.h, src/conflicts.c:
1626 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
1627 * src/files.h, src/flex-scanner.h, src/getargs.c:
1628 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
1629 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
1630 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
1631 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
1632 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
1633 * src/print.c, src/print.h, src/print_graph.c:
1634 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
1635 * src/reduce.h, src/relation.c, src/relation.h:
1636 * src/revision.h, src/scan-code.h, src/scan-code.l:
1637 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
1638 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
1639 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
1640 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
1641 * tests/Makefile.am, tests/actions.at, tests/c++.at:
1642 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
1643 * tests/existing.at, tests/glr-regression.at:
1644 * tests/headers.at, tests/input.at, tests/java.at:
1645 * tests/local.at, tests/output.at, tests/push.at:
1646 * tests/reduce.at, tests/regression.at, tests/sets.at:
1647 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
1648 * tests/torture.at:
1649 Update to GPLv3.
1650
1651 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1652
1653 Get rid of broken %no-parser, -n, and --no-parser implementation and
1654 documentation.
1655 * TODO: Don't mention them.
1656 * doc/bison.1: Likewise.
1657 * doc/bison.texinfo (Decl Summary): Likewise.
1658 (Bison Options): Likewise.
1659 (Option Cross Key): Likewise.
1660 * src/getargs.c (no_parser_flag): Remove global variable.
1661 (usage): Don't print description of -n and --no-parser.
1662 (long_options): Remove --no-parser entry here.
1663 (getargs): Remove -n case in the switch here.
1664 * src/getargs.h (no_parser_flag): Remove extern.
1665 * tests/regression.at (Web2c Actions): Remove comment that mentions
1666 --no-parser.
1667
1668 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1669
1670 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
1671 name user variables starting with `yy'. Just pass NULL instead of a
1672 dummy local &yylval to yypush_parse.
1673 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
1674 starting with `yy'.
1675
1676 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
1677
1678 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
1679 true since it's then always used regardless of whether yyoverflow is
1680 defined. Reported by Christian Burger at
1681 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
1682 * THANKS: Add Christian Burger.
1683
1684 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
1685 node names: say "Decl Summary" not "Bison Declaration Summary".
1686
1687 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
1688
1689 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
1690 determine whether this function has already complained about an invalid
1691 value for a %define boolean variable, don't check whether Bison has
1692 ever examined the value. As written, the check was a tautology.
1693 Instead, record and check for this complaint using a separate muscle.
1694
1695 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1696
1697 Fix push parsing memory leak reported by Brandon Lucia at
1698 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
1699 * THANKS: Add Brandon Lucia.
1700 * data/push.c (yypstate_delete): Free the stack if it was reallocated
1701 but the parse never completed and thus freed it.
1702 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
1703 * tests/testsuite.at: Include push.at.
1704 * test/push.at: New.
1705 (Push Parsing: Memory Leak for Early Deletion): New test case.
1706
1707 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
1708
1709 Improve handling of multiple S/R conflicts in the same state and of S/R
1710 conflicts involving multiple reductions.
1711 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
1712 set for a state here or Bison will abort if it is reassigned on a
1713 later conflicted reduction in the same state.
1714 Similarly, don't finalize and assign the solved conflicts report here
1715 or it will be lost if it is reassigned on a later conflicted reduction
1716 in the same state.
1717 (set_conflicts): Instead, assign them both here after all S/R conflicts
1718 in the state have been fully examined.
1719 * src/print.c (shift_set): Rename to...
1720 (no_reduce_set): ... this.
1721 (print_reductions): Update for rename, and add %nonassoc error action
1722 tokens to no_reduce_set so that, when printing the first remaining
1723 reduction on an error action token, the reduction is enclosed in
1724 brackets.
1725 (print_results): Update for rename.
1726 * tests/conflicts.at (Solved conflicts report for multiple reductions
1727 in a state): New test case.
1728 (%nonassoc error actions for multiple reductions in a state): New test
1729 case.
1730
1731 * src/main.c (main): Don't depend on C99 features.
1732
1733 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1734
1735 * build-aux/.cvsignore: Add compile.
1736 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
1737 uniwidth.
1738
1739 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
1740
1741 * bootstrap (slurp): Create target directories that don't exist.
1742 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
1743
1744 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1745
1746 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
1747 than item number.
1748 * closure.c (closure): Likewise.
1749 * state.h (reductions): Comment sorting of rules.
1750 (state): Comment sorting of items.
1751
1752 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
1753
1754 Fix C++ test cases after recent Gnulib changes. Discussed starting at
1755 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
1756 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
1757 definition in order to avoid Gnulib headers since we don't use config.h
1758 here.
1759 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
1760 rather than AT_DATA so that config.h is included.
1761
1762 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
1763
1764 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
1765 instead of fprintf. Guard these functions with #if YYDEBUG instead of
1766 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
1767 and so that YYFPRINTF is guaranteed to be defined here.
1768
1769 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1770
1771 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
1772 with...
1773 (muscle_percent_define_check_values): ... this more helpful function.
1774 Again, it's not used yet, but it will be.
1775 * src/muscle_tab.h: Likewise.
1776
1777 Improve some comments in parser table construction.
1778 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
1779 (generate_states): Don't mention ruleset, which is internal to closure.
1780 * src/closure.c (closure): Explain sorting of core and itemset, which
1781 is required for this function to behave correctly.
1782 * src/closure.h (closure): Mention sorting.
1783
1784 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
1785
1786 * src/lalr.c (state_lookahead_tokens_count): For code readability,
1787 move the check for disabled transitions to an aver since conflict
1788 resolution hasn't happened yet.
1789
1790 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
1791 labels a state as inconsistent just because it has error transitions.
1792 The original form of this check appeared in revision 1.1 of lalr.c,
1793 which was committed on 1991-12-21. Now (at least), changing the
1794 consistency label on such a state appears to have no useful effect in
1795 any of the places it is examined, which I enumerate below. The key
1796 point to understanding each item in this enumeration is that a state
1797 with an error transition is labelled consistent in the first place only
1798 if it has no rules, so the check cannot matter for states that have
1799 rules. (1) Labelling a state as inconsistent will cause set_conflicts
1800 to try to identify its conflicts, and a state must have *rules* to have
1801 conflicts. (2) Labelling a state as inconsistent will affect how
1802 action_row sets the default *rule* for the state. (3) Labelling a
1803 state as inconsistent will cause build_relations to add lookback edges
1804 to *rules* in that state.
1805 * src/state.h (struct state): Word the comment for member consistent
1806 more carefully.
1807
1808 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1809
1810 Don't depend on C99 features.
1811 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
1812 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
1813 * src/reader.c (check_and_convert_grammar): Fix for-loop.
1814 * src/state.c (state_mark_reachable_states): Fix for-loop.
1815 (state_remove_unreachable_states): Fix for-loop.
1816
1817 Don't widen struct state with member reachable just to temporarily
1818 record reachability. Instead, use a local bitset.
1819 * src/state.h (struct state): Remove member.
1820 * src/state.c (state_new): Don't initialize it.
1821 (state_mark_reachable_states): Rename to...
1822 (state_record_reachable_states): ... this, and use bitset.
1823 (state_remove_unreachable_states): Use bitset.
1824
1825 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
1826
1827 * src/Makefile.am (yacc): Quote target action commands properly so
1828 that the yacc script isn't corrupt. Reported by Hans Aberg at
1829 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
1830
1831 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
1832 the case of pure parsers. Reported by Frans Englich at
1833 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
1834 * THANKS: Add Frans Englich.
1835
1836 * NEWS (2.3a+): In the %code entry, reference section `Bison
1837 Declaration Summary' from the manual now since the %code summary has
1838 moved there.
1839 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
1840 in the rules section must be terminated by semicolons.
1841
1842 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1843
1844 Extend the front-end API for %define variables to more completely
1845 mirror the back-end. This will be useful in the future.
1846 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
1847 Update comments to mention the new front-end counterparts of these
1848 macros.
1849 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
1850 for muscle_string_decode and muscle_location_decode.
1851 (muscle_string_decode): New static function.
1852 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
1853 (muscle_percent_define_get, muscle_percent_define_ifdef): New
1854 functions.
1855 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
1856 muscle_percent_define_get to mimic the b4_percent_define_flag_if
1857 implementation more closely.
1858 (muscle_percent_define_invalid_value): New function.
1859 * src/muscle_tab.h (muscle_percent_define_get,
1860 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
1861 Prototype.
1862
1863 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1864
1865 * NEWS (2.3a+): Mention yesterday's state-removal change.
1866 (2.3a): Remove the %language entry, which was added after 2.3a.
1867 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
1868 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
1869 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
1870 tests/existing.at: Update copyright date.
1871
1872 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1873
1874 If conflict resolution makes states unreachable, remove those states,
1875 report rules that are then unused, and don't report conflicts in those
1876 states.
1877 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
1878 New global function.
1879 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
1880 function.
1881 * src/main.c (main): After conflict resolution, remove the unreachable
1882 states and update all data structures that reference states by number.
1883 * src/state.c (state_new): Initialize each state's reachable member to
1884 false.
1885 (state_mark_reachable_states): New static function.
1886 (state_remove_unreachable_states): New global function.
1887 * src/state.h (struct state): Add member bool reachable.
1888 (state_remove_unreachable_states): Prototype.
1889 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1890 New test case.
1891 * tests/existing.at (GNU pic Grammar): Update test case output now that
1892 an unused rule is discovered.
1893
1894 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1895
1896 Minor code cleanup in parser table construction.
1897 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
1898 (new_itemsets, save_reductions): Update for rename to nitemset.
1899 * src/closure.c (nritemset): Rename to...
1900 (nitemset): ... this since the "r" appears to meaningless and isn't
1901 used in the comments.
1902 (closure): Update for rename.
1903 * src/closure.h (nritemset): Update extern to...
1904 (nitemset): ... this.
1905 * src/lalr.c (LA): Fix a typo in comments.
1906 * src/print.c (print_core): Update for rename to nitemset.
1907 * src/print_graph.c (print_graph): Likewise.
1908 * src/state.h: Fix some typos in header comments.
1909
1910 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
1911
1912 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
1913 still sticks to ASCII. Sorry!
1914
1915 * README-hacking: New file, taken mostly from coreutils, with changes
1916 for Bison. Contains much of the contents of:
1917 * README-cvs: Remove.
1918 * bootstrap: Sync from gnulib.
1919 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
1920 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
1921
1922 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
1923
1924 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
1925 Setzer.
1926 (Java Differences): Fix some typos.
1927 * THANKS: Add Sebastian Setzer.
1928
1929 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
1930
1931 * data/java.m4 (b4_single_class_if): Remove.
1932 (b4_abstract_if): Look at "%define abstract".
1933 (b4_lexer_if): New.
1934 (b4_union_name): Rename...
1935 (b4_yystype): ... to this. Map to "%define stype".
1936 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
1937 b4_maybe_throws): Fix quoting.
1938 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
1939 * data/lalr1.java (Lexer interface): Always define.
1940 (Lexer interface within parser class): Remove.
1941 (YYLexer class): New, used when "%code lexer" is present.
1942 (constructor): When "%code lexer" is used, pass %lex-param
1943 to the lexer constructor.
1944 (yylex, yyparse): Remove %lex-param from method invocations
1945 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
1946
1947 * doc/bison.texinfo (Java Bison Interface): Mention "%define
1948 abstract". Rename "%define union_name" to "%define stype".
1949 Rename method names according to previous patch.
1950 (Java Scanner Interface): Describe "%code lexer" instead of
1951 "%pure-parser" and "%define single_class".
1952 (Java Differences): Mention "%code lexer".
1953
1954 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
1955 Include scanner here, using macros from tests/local.at.
1956 (AT_DATA_CALC_Y): Remove final argument.
1957 (_AT_CHECK_JAVA_CALC): Likewise.
1958 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
1959 of %locations and %error-verbose.
1960 (main): Test with and without %lex-param.
1961 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
1962 (AT_BISON_OPTION_POPDEFS): Pop it.
1963
1964 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1965
1966 DJGPP spefic issue. Inhibit the use of disallowed characters for
1967 file name genertion on Win98, WinXP, etc. These are |<>":?*\
1968 and concern testsuite case 46.
1969 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
1970 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
1971 * djgpp/config.bat: Inhibit the use of disallowed characters.
1972
1973 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1974
1975 Miscellaneous %define and %code cleanup.
1976 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
1977 values are interpreted.
1978 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
1979 documentation a little more.
1980 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
1981 muscle_percent_define_insert, muscle_percent_code_grow): New
1982 functions/macros.
1983 * src/muscle_tab.h (muscle_percent_define_insert,
1984 muscle_percent_code_grow): Prototype.
1985 * src/parse-gram.y (prologue_declaration): Use
1986 muscle_percent_define_insert and muscle_percent_code_grow when parsing
1987 %define and %code directives.
1988
1989 Make it easy to share %define boolean variables between the front-end
1990 and back-end. Though not used yet, this will be useful in the future.
1991 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
1992 Bison uses of names rather than just skeleton uses of names.
1993 (b4_percent_define_get, b4_percent_define_ifdef): Rename
1994 b4_percent_define_skeleton_variables(VARIABLE) to
1995 b4_percent_define_bison_variables(VARIABLE).
1996 (b4_percent_code_get, b4_percent_code_ifdef): Rename
1997 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
1998 b4_percent_code_bison_qualifiers(QUALIFIER).
1999 (b4_check_user_names_wrap): Update for renames.
2000 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
2001 muscle_percent_define_default): New functions mimicking
2002 b4_percent_define_flag_if and b4_percent_define_default.
2003
2004 For %define variables, report locations for invalid values and
2005 redefinitions.
2006 * data/bison.m4 (b4_percent_define_flag_if): Read
2007 b4_percent_define_loc(VARIABLE) to report the location of an invalid
2008 value for VARIABLE.
2009 (b4_percent_define_default): Save a special location in
2010 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
2011 must later be reported as invalid.
2012 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
2013 functions.
2014 (muscle_percent_define_insert): Record the location of VARIABLE in
2015 muscle percent_define_loc(VARIABLE), and use it to report the previous
2016 location for a redefinition.
2017 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
2018 (muscle_percent_define_default): Update like b4_percent_define_default.
2019 (muscle_grow_user_name_list): Rename to...
2020 (muscle_user_name_list_grow): ... this for consistency and use
2021 muscle_location_grow.
2022 * src/muscle_tab.h (muscle_location_grow): Prototype.
2023 * tests/input.at (%define errors): Update expected output.
2024 * tests/skeletons.at (%define boolean variables: invalid skeleton
2025 defaults): New test case.
2026
2027 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
2028
2029 * src/print.c (lookahead_set, state_default_rule): Remove.
2030 (print_reductions): Replace state_default_rule invocation with
2031 equivalent use of yydefact, which was computed in token_actions in
2032 tables.c.
2033 (print_results): Don't allocate lookahead_set.
2034
2035 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
2036
2037 * data/lalr1.java: Prefix all private members with yy.
2038
2039 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
2040
2041 Use YYFPRINTF instead of fprintf where appropriate. Reported by
2042 Sebastien Fricker at
2043 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
2044 * THANKS: Add Sebastien Fricker.
2045 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
2046 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
2047 accept a variable number of arguments.
2048
2049 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2050
2051 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
2052
2053 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2054
2055 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
2056 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
2057 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
2058
2059 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
2060
2061 Undo my 2007-02-07 change, switching back to the c-strcase module
2062 introduced in the 2007-02-03 change. Bruno Haible reported that
2063 the 2007-02-07 change would be dangerous in Turkish if we add a
2064 language whose name contains "i", since "i" is not lowercase "I"
2065 in Turkish.
2066 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
2067 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
2068 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
2069 * m4/.cvsignore: Remove strcase.m4.
2070 * src/getargs.c: Revert 2007-02-07 change, as follows.
2071 Include c-strcase.h.
2072 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
2073
2074 2007-02-11 Bruno Haible <bruno@clisp.org>
2075
2076 Enable the Java related testsuite tests when the only Java compiler
2077 found is a gcj < 4.3. Discussed at
2078 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
2079 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
2080
2081 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
2082
2083 * data/Makefile.am: Update copyright date.
2084 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
2085 yypstate_new returns NULL.
2086 (yypstate_new): Return NULL if malloc does.
2087 * src/reader.c (packgram): Move translation of rule actions from the
2088 beginning of packgram to...
2089 (check_and_convert_grammar): ... here right before packgram is invoked
2090 so it's easier to write more complete comments, and remove redundant
2091 code.
2092
2093 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
2094
2095 As in semantic actions, make @$ in %initial-action, %destructor, and
2096 %printer imply %locations.
2097 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
2098 scanning @$.
2099 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
2100 (@$ in %initial-action implies %locations,
2101 @$ in %destructor implies %locations,
2102 @$ in %printer implies %locations): ... these new test cases.
2103
2104 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2105
2106 Undo most of the 2007-02-03 change, switching to the strcase module
2107 now that gnulib strcase has been fixed.
2108 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2109 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2110 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2111 * m4/.cvsignore: Add strcase.m4.
2112 * src/getargs.c: Revert 2007-02-03 change, as follows.
2113 Don't include c-strcase.h.
2114 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2115 strcasecmp has "unspecified behavior" outside the POSIX locale,
2116 but it works fine in practice if at least one argument is ASCII,
2117 as is the case in Bison.
2118
2119 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
2120
2121 * tests/java.at: Skip tests if only one of javac/java is present.
2122 Reported by Joel E. Denny.
2123 * tests/atlocal.in: Adjust copyright years.
2124
2125 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
2126
2127 * data/lalr1.java (Stack): Work around old verifiers that disallow
2128 access to the private fields of an inner class, from the outer class.
2129 We can make Stack's fields public because user code doesn't have access
2130 to the instance of Stack used by parse(). Reported by Paul Eggert.
2131
2132 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2133
2134 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2135 the right spot for these files?
2136 * bootstrap.conf (gnulib_modules): Add c-strcase.
2137 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2138 c-strncasecmp.c.
2139 * src/getargs.c: Include c-strcase.h.
2140 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2141 to avoid unspecified behavior.
2142
2143 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2144
2145 * doc/bison.texinfo (Decl Summary): Correct typo.
2146
2147 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
2148
2149 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2150 Complain if the value does not match empty, "true" or "false".
2151 * data/c++.m4: Adjust default definitions of %define variables.
2152 * data/java.m4: Adjust default definitions of %define variables.
2153 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2154 to above behavior.
2155 * tests/input.at (Boolean %define variables): Test new behavior.
2156
2157 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
2158
2159 * NEWS: Mention java.
2160 * TODO: Remove things that are done.
2161 * bootstrap.conf: Add javacomp-script and javaexec-script.
2162 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2163
2164 * data/Makefile.am: Add new files.
2165 * data/java-skel.m4: New.
2166 * data/java.m4: New.
2167 * data/lalr1.java: New.
2168
2169 * doc/bison.texinfo: Put "A Complete C++ Example" under
2170 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2171 under Other Languages.
2172
2173 * src/getargs.c (valid_languages): Add Java.
2174 * src/getargs.h (struct bison_language): Update size of string fields.
2175
2176 * tests/Makefile.am: Add java.at.
2177 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2178 * tests/java.at: New.
2179 * tests/testsuite.at: Include it.
2180
2181 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 Clean up.
2184 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2185 at_directive_argv arguments so these no longer have to be global
2186 variables. Also, update the implementation for the following changes.
2187 (fail_for_at_directive_too_many_args,
2188 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2189 (at_directive_name): Remove as at_directive_argv[0] will be used for
2190 this now.
2191 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2192 for the directive name.
2193 (at_directive_argc, at_directive_argv): Make these local within
2194 skel_lex instead of global.
2195 (INITIAL): Update directive start action for above changes.
2196 (SC_AT_DIRECTIVE_ARG): Rename to...
2197 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2198 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2199 (scan_skel): Move yylex_destroy to...
2200 (skel_scanner_free): ... here.
2201 * tests/skeletons.at (installed skeleton file name): Rename to...
2202 (installed skeleton file names): ... this.
2203
2204 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2205
2206 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2207 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2208 Summary" not "Directives".
2209 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2210 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2211 since the former is now the more complete one.
2212 (Prologue Alternatives): Likewise and do the same for %defines.
2213 (Table of Symbols): Add summary of %code, add summary of %define, and
2214 move full %code documentation to...
2215 (Decl Summary): ... here for consistency with other entries in these
2216 sections.
2217 Move %define entry in order to keep this list alphabetized.
2218 Reword %define entry a little to put less emphasis on the skeleton
2219 concept, which most users shouldn't have to think about.
2220
2221 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2222
2223 Adjust to recent gnulib changes.
2224 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2225 Add string.h, string_.h, unistd_.h, wchar_.h.
2226 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2227 * src/system.h: Don't include <stpcpy.h>; this is now done by
2228 <string.h>.
2229
2230 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
2231
2232 Simplify implementation of unqualified %code, implement macros for
2233 uniform treatment of boolean %define flags. Document %define.
2234 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2235 b4_percent_code_ifdef): New.
2236 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2237 * data/c++.m4: Define default value for global_tokens_and_yystype.
2238 * data/glr.cc: Likewise.
2239 * data/location.cc: Use b4_percent_define_flag_if.
2240
2241 * doc/bison.texinfo (Decl Summary): Document %define.
2242
2243 * src/parse-gram.y (Unqualified %code): Change muscle name to
2244 b4_percent_code().
2245 (content.opt): Default to empty.
2246
2247 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2248
2249 Implement support for relative and absolute skeleton file names.
2250 Discussed starting at
2251 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2252 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2253 (Bison Options): Document in --skeleton entry.
2254 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2255 full_skeleton can't necessarily hold all of pkgdatadir.
2256 If the specified skeleton file name contains a `/', don't prepend
2257 pkgdatadir.
2258 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2259 file name contains a `/', prepend the grammar file directory.
2260 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2261 * skeletons.at: New file.
2262 (relative skeleton file names): New test case.
2263 (installed skeleton file names): New test case.
2264 * tests/testsuite.at: Include skeletons.at.
2265
2266 * bootstrap: Update copyright to 2007.
2267
2268 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
2269
2270 * bootstrap: Remove occurrences of .#bootmp from the files.
2271
2272 2007-01-17 Akim Demaille <akim@epita.fr>
2273
2274 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2275 nonterminals.
2276 Use per-type %printer.
2277
2278 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2279
2280 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2281 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2282 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2283 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2284 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2285 tests/glr-regression.at, tests/input.at, tests/local.at,
2286 tests/output.at, tests/torture.at: Update copyright to 2007.
2287
2288 2007-01-16 Akim Demaille <akim@epita.fr>
2289
2290 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2291 error code.
2292 (Calc++ Scanner): Exit with failure if we can't open the input
2293 file.
2294 Accept "-" standing for stdin.
2295 (Calc++ Top Level): Print the result only if the parsing was
2296 successful.
2297
2298 2007-01-16 Akim Demaille <akim@epita.fr>
2299
2300 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2301
2302 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
2303 and Joel E. Denny <jdenny@ces.clemson.edu>
2304
2305 Clean up %define and %code implementation in M4 some. Most
2306 importantly, rename all related macros to be in the b4_percent_define
2307 and b4_percent_code namespaces. Also, complete support for `.' in
2308 %define variable names and %code qualifiers.
2309 * data/bison.m4 (b4_check_user_names): Check for special
2310 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2311 m4_foreach loops.
2312 (b4_get_percent_define, b4_get_percent_code): Rename to...
2313 (b4_percent_define_get, b4_percent_code_get): ... these.
2314 Extend documentation with examples.
2315 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2316 b4_percent_define_skeleton_variables and
2317 b4_percent_code_skeleton_qualifiers.
2318 Expect any value for the %define variable `foo' to be stored in the
2319 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2320 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2321 expect any unqualified %code blocks to be stored in a macro named
2322 `b4_percent_code_unqualified'.
2323 Use m4_indir so that %define variable names and %code qualifiers can
2324 contain `.', which is allowed by the grammar parser.
2325 (b4_percent_define_default): New macro to set a default value for a
2326 %define variable.
2327 (m4_wrap): Update wrapped code, and fix some underquoting.
2328 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2329 Expect grammar uses of %define variables and %code qualifiers to be
2330 defined in b4_percent_define_user_variables and
2331 b4_percent_code_user_qualifiers.
2332 * data/c++.m4: Use b4_percent_define_default rather than
2333 m4_define_default. Fix some underquoting. Skeleton usage of %define
2334 variable define_location_comparison now implies skeleton usage of
2335 %define variable filename_type.
2336 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2337 data/push.c, data/yacc.c: Update macro names.
2338 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2339 muscle names.
2340
2341 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2342
2343 DJGPP specific issues.
2344
2345 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2346 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2347
2348 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2349
2350 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2351 run parsers in all tests so that Valgrind is invoked during
2352 maintainer-check-valgrind.
2353 (Duplicate representation of merged trees): Free all semantic values.
2354 (Duplicated user destructor for lookahead): Likewise.
2355
2356 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2357
2358 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2359 command-line prefix.
2360 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2361 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2362 miss Valgrind messages.
2363 (Exploding the Stack Size with Malloc): Likewise.
2364
2365 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2366
2367 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2368 locals. Reported by Juan Manuel Guerrero at
2369 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2370 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2371 Fix some indentation also.
2372 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2373 explaining this issue.
2374
2375 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
2376 and Joel E. Denny <jdenny@ces.clemson.edu>
2377
2378 Simplify union and prologue handling, and escape union and lex/parse
2379 params with digraphs.
2380 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2381 values to the empty string since these are no longer guaranteed
2382 initialized by the front-end.
2383 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2384 braces around b4_user_stype since this is no longer done by the
2385 front-end.
2386 * src/files.c, src/files.h (pre_prologue_obstack,
2387 post_prologue_obstack): Remove.
2388 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2389 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2390 with digraphs. This fixes lex params and parse params.
2391 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2392 * src/output.c (prepare): Remove muscle insertion of the prologues.
2393 (output): Remove freeing of pre_prologue_obstack and
2394 post_prologue_obstack.
2395 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2396 than prologue_augment for prologue parsing so you don't need prologue
2397 obstacks.
2398 (grammar_declaration): For %union RHS, use `braceless' instead of
2399 "{...}" so that braces are already stripped and code is escaped with
2400 digraphs.
2401 * src/reader.c (prologue_augment): Remove.
2402 (reader): Remove initialization of pre_prologue_obstack and
2403 post_prologue_obstack.
2404 * src/reader.h (prologue_augment): Remove.
2405
2406 * data/c.m4: Remove stray parenthesis.
2407
2408 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2409
2410 Remove quotes from variables names in %define directives and from
2411 qualifiers in %code directives, and restrict the characters that are
2412 allowed in them to M4-friendly ones. For %define, continue to support
2413 the quoted form as a deprecated feature. Discussed starting at
2414 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2415 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2416 %code.
2417 * doc/bison.texinfo (Prologue Alternatives): Update.
2418 (Decl Summary): In %defines entry, update mention of `%code requires'
2419 and `%code provides'.
2420 (C++ Location Values): Update %define uses.
2421 (Calc++ Parser Interface): Likewise.
2422 (Calc++ Parser): Likewise, and update `%code requires' uses.
2423 (Table of Symbols): Update %code documentation.
2424 * src/parse-gram.y (prologue_declaration): For %define variables, use
2425 `variable' instead of `STRING'.
2426 (grammar_declaration): For %code qualifiers, use `ID' instead of
2427 `STRING'.
2428 (variable): New nonterminal that takes an `ID' or a `STRING'.
2429 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2430 and %define uses.
2431 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2432 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2433 (%define errors): Update %define uses.
2434
2435 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2436
2437 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2438 instead of muscle_insert for %define values so that M4-special
2439 characters are replaced with digraphs.
2440 * tests/input.at (%define errors): Extend to check weird values.
2441
2442 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2443
2444 Instead of having skeletons declare all valid %define variables and
2445 %code qualifiers, provide macros that retrieve the associated values
2446 and build these lists automatically. Thus Bison will now warn when a
2447 variable or qualifier is not used by the skeleton in the current
2448 invocation regardless of whether it might sometimes be used by that
2449 skeleton in other invocations. Also, move all %define value macros to
2450 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2451 form, which is replaced by %code.
2452 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2453 (b4_check_user_names): ... this, and change the series of valid name
2454 arguments to a single list argument for names used in the skeleton
2455 similar to the existing list argument for names used in the grammar.
2456 Warn instead of complaining.
2457 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2458 values and %code code, to format %code code properly, and to build
2459 lists of all %define variables and %code qualifiers used in the
2460 skeleton: b4_skeleton_percent_define_variables and
2461 b4_skeleton_percent_code_qualifiers.
2462 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2463 Remove, and...
2464 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2465 the skeleton names lists can finish building first. In place of
2466 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2467 expect the lists b4_user_percent_define_variables and
2468 b4_user_percent_code_qualifiers.
2469 * data/c++.m4: Where setting default values for b4_parser_class_name,
2470 b4_location_type, b4_filename_type, b4_namespace, and
2471 b4_define_location_comparison, update their names to the
2472 b4_percent_define_ namespace.
2473 * data/glr.c: Don't use b4_check_percent_define_variables and
2474 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2475 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2476 (b4_parser_class_name, b4_namespace): Define these using
2477 b4_get_percent_define for parser_class_name and namespace.
2478 * data/location.cc: Use b4_get_percent_define.
2479 * data/push.c: Don't use b4_check_percent_define_variables and
2480 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2481 * data/yacc.c: Likewise, and don't call m4_exit in
2482 b4_use_push_for_pull_if or m4_wrap code will never execute.
2483 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
2484 Rename to...
2485 (muscle_grow_user_name_list): ... this for consistency with the
2486 terminology used in bison.m4.
2487 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
2488 %define variable names, and rename muscle used_percent_define_variables
2489 to user_percent_define_variables.
2490 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
2491 user_percent_code_qualifiers.
2492 (content): Remove.
2493 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
2494 {CODE} form is no longer accepted.
2495 * tests/input.at (Reject bad %code qualifiers): Rename to...
2496 (Reject unused %code qualifiers): ... this, and update test output.
2497 (%define error): Update test output.
2498
2499 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
2500
2501 Check for unrecognized %define variables similar to checking for
2502 unrecognized %code qualifiers. Check for redefined %define variables.
2503 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
2504 generalizes...
2505 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
2506 (b4_check_percent_define_variables): New, also wraps it.
2507 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
2508 variables using b4_check_percent_define_variables.
2509 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
2510 all those exercised in the test suite and all those listed in the
2511 `Default values' section of c++.m4. Are there others?
2512 * data/push.c, data/yacc.c: Declare no valid %define variables.
2513 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
2514 similar to muscle_find, but it works even when the muscle stores a
2515 const value.
2516 (muscle_grow_used_name_list): New function for constructing the used
2517 name list muscles that b4_check_for_unrecognized_names requires.
2518 * src/parse-gram.y (prologue_declaration): Warn if a variable is
2519 %define'd more than once. Define the b4_used_percent_define_variables
2520 muscle with muscle_grow_used_name_list.
2521 (grammar_declaration): Abbreviate %code code with
2522 muscle_grow_used_name_list.
2523 * tests/input.at (%define errors): New.
2524
2525 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2526
2527 Provide warn_at, complain_at, and fatal_at function callbacks to the
2528 skeletons, and use this for %code qualifier complaints.
2529 * data/bison.m4 (b4_error_at): New, invoked by...
2530 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
2531 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
2532 @fatal_at(...@) directives.
2533 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
2534 qualifiers in b4_used_percent_code_qualifiers and to use
2535 b4_complain_at.
2536 * src/location.c, src/location.h (boundary_set_from_string): New global
2537 function.
2538 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
2539 function.
2540 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
2541 to b4_used_percent_code_qualifiers.
2542 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
2543 function.
2544 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
2545 (lineno): Rename to...
2546 (out_lineno): ... this so I don't misunderstand it again.
2547 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
2548 here; these newlines are in the input but not the output file.
2549 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
2550 (at_directive_perform): ... this new static function, and add handling
2551 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
2552 directives.
2553 * tests/input.at (Reject bad %code qualifiers): Update test output with
2554 locations and extend.
2555
2556 * tests/output.at (Output file name: [, Output file name: ]): Remove
2557 bogus comment about these tests failing.
2558
2559 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2560
2561 Clean up b4_check_percent_code_qualifiers a little.
2562 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
2563 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
2564 documentation and add examples.
2565 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
2566 qualifiers here.
2567
2568 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2569
2570 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
2571 unreliable -- especially when they're hidden inside another macro.
2572 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
2573 data/c.m4: Remove m4_divert(-1).
2574 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2575 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
2576 m4_divert_push(0) and m4_divert_pop(0).
2577 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
2578 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
2579 pushed and popped by m4sugar, should be first on the stack.
2580
2581 Provide warn, complain, and fatal function callbacks to the skeletons.
2582 This provides more flexibility than m4_fatal, improves the error
2583 message format, and captures messages for translation. Discussed
2584 starting at
2585 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
2586 * data/bison.m4 (b4_error): New, invoked by...
2587 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
2588 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
2589 directives. Because these M4 macros might be called when the current
2590 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
2591 the previous removal of uses of m4_divert, which caused trouble.
2592 (b4_check_percent_code_qualifiers): Use b4_complain instead of
2593 m4_fatal to report unrecognized %code qualifiers.
2594 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
2595 push parser requests.
2596 * data/glr.c: Use b4_complain instead of m4_fatal to report
2597 non-deterministic push parser requests.
2598 Update @output usage to @output(...@) form.
2599 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
2600 report missing %defines. Update @output usage to @output(...@) form.
2601 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
2602 @output(...@) form.
2603 * src/main.c (main): Invoke skel_scanner_free.
2604 * src/scan-skel.h (skel_scanner_free): Prototype new function.
2605 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
2606 obstack_for_string from flex-scanner.h.
2607 (YY_DECL): Use to declare skel_lex static.
2608 (decode_at_digraphs): Remove; now handled in the new
2609 SC_AT_DIRECTIVE_ARG start condition.
2610 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
2611 functions.
2612 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
2613 at_directive_argv): New static globals.
2614 (INITIAL): Use fail_for_invalid_at.
2615 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
2616 recognize the start of a generalized `@directive(...@)' form and
2617 start...
2618 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
2619 directive args (using the new obstack_for_string), to decode the
2620 contained @ diagraphs, and to perform the directive. It recognizes
2621 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
2622 @output(...@).
2623 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
2624 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
2625 `@,'.
2626 (scan_skel): Initialize obstack_for_string on the first call.
2627 (skel_scanner_free): New function to free obstack_for_string.
2628 * tests/input.at (Reject bad %code qualifiers): Update test output.
2629
2630 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
2631
2632 Consolidate the 4 prologue alternative directives (%code, %requires,
2633 %provides, and %code-top) into a single %code directive with an
2634 optional qualifier field. Discussed at
2635 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
2636 * NEWS (2.3a+): Rewrite the existing entry for the prologue
2637 alternatives.
2638 * doc/bison.texinfo (Prologue Alternatives): Update.
2639 (Decl Summary): Update to %code "requires" and %code "provides".
2640 (Calc++ Parser): Update to %code "requires".
2641 (Table of Symbols): Remove entries for %requires, %provides, and
2642 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
2643 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
2644 are replaced by b4_percent_code_provides and b4_percent_code_requires,
2645 which are skeleton-specific.
2646 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
2647 declare what %code qualifiers it supports and to complain if any other
2648 qualifiers were used in the grammar.
2649 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
2650 and b4_user_code([b4_percent_code_provides]) in place of
2651 b4_user_requires and b4_user_provides.
2652 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
2653 Add b4_user_code([b4_percent_code_top]) and
2654 b4_user_code([b4_percent_code]).
2655 Invoke b4_check_percent_code_qualifiers.
2656 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2657 PERCENT_REQUIRES): Remove.
2658 (grammar_declaration): Remove RHS's for %code-top, %provides, and
2659 %requires. Rewrite the %code RHS as the unqualified form defining the
2660 muscle b4_percent_code. Add another RHS for the qualified %code form,
2661 which defines muscles of the form b4_percent_code_QUALIFIER and the
2662 b4_used_percent_code_qualifiers muscle.
2663 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2664 PERCENT_REQUIRES): Remove.
2665 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
2666 %code "requires" and %code "provides".
2667 * tests/input.at (Reject bad %code qualifiers): New.
2668
2669 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2670
2671 Use the new code_props interface for destructors and printers.
2672 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
2673 printer_location members, and change the type of the destructor and
2674 printer members to code_props.
2675 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
2676 symbol_printer_get, semantic_type_destructor_set,
2677 semantic_type_printer_set, default_tagged_destructor_set,
2678 default_tagless_destructor_set, default_tagged_printer_set,
2679 default_tagless_printer_set): Use code_props in arguments and return
2680 types in place of char const * and location.
2681 (symbol_destructor_location_get, symbol_printer_location_get): Remove
2682 since the locations are now contained in the return of
2683 symbol_destructor_get and symbol_printer_get.
2684 * src/output.c (symbol_destructors_output, symbol_printers_output):
2685 Replace with...
2686 (symbol_code_props_output): ... this to eliminate duplicate code.
2687 (output_skeleton): Update to use symbol_code_props_output.
2688 * src/reader.c (symbol_should_be_used): Update use of
2689 symbol_destructor_get.
2690 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
2691 Update uses of the various _destructor_set and _printer_set functions.
2692 * src/symtab.c: (default_tagged_destructor_location,
2693 default_tagless_destructor_location, default_tagged_printer_location,
2694 default_tagless_printer_location): Remove since we...
2695 (default_tagged_destructor, default_tagless_destructor,
2696 default_tagged_printer, default_tagless_printer): ... change the type
2697 of these to code_props.
2698 (symbol_new, semantic_type_new, symbol_destructor_set,
2699 semantic_type_destructor_set, symbol_destructor_get,
2700 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
2701 symbol_check_alias_consistency, default_tagged_destructor_set,
2702 default_tagless_destructor_set, default_tagged_printer_set,
2703 default_tagless_printer_set): Update.
2704 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
2705 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
2706 code_props members.
2707 (symbol_print): Use SYMBOL_CODE_PRINT.
2708
2709 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2710
2711 Use the new code_props interface for rule actions.
2712 * src/symlist.h (symbol_list): Replace action, action_location, and
2713 used members with a code_props action_props member.
2714 * src/reader.c (symbol_should_be_used, grammar_rule_check,
2715 grammar_midrule_action, grammar_current_rule_merge_set,
2716 grammar_current_rule_symbol_append, packgram): Update.
2717 * src/scan-code.h (translate_rule_action): Remove, no longer used.
2718 * src/scan-code.l (handle_action_dollar): Update.
2719 (translate_rule_action): Remove, no longer used.
2720 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
2721
2722 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2723
2724 Use the new code_props interface in parse-gram.y.
2725 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
2726 Update all uses of translate_* functions to use the new code_props
2727 interface and to use gram_scanner_last_string_free and
2728 code_scanner_last_string_free where possible.
2729 (grammar_declaration): symbol_list_destructor_set and
2730 symbol_list_printer_set now perform the translation, so don't do it
2731 here. Use gram_scanner_last_string_free where possible.
2732 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
2733 translate_code): Remove, no longer used.
2734 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
2735 symbol_list_printer_set): Perform code translation here rather than
2736 depending on the caller to do so.
2737
2738 * src/symlist.h (struct symbol_list): Correct some documentation typos.
2739 * src/scan-gram.h (gram_last_string): Remove declaration.
2740 * src/scan-gram.l (last_string): Declare it static.
2741
2742 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2743
2744 Encapsulate code properties and related functionality for the various
2745 destructors, printers, and actions into a code_props structure and
2746 interface. This patch merely implements code_props in scan-code.h and
2747 scan-code.l. Future patches will rewrite other modules to use it.
2748 Discussed starting at
2749 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
2750 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
2751 consistently initialize const structs that have an empty location
2752 field.
2753 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
2754 to ensure consistency.
2755 * src/scan-code.h (code_props): New structure.
2756 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
2757 function, macro, and const global variable for initializing a
2758 code_props with no code.
2759 (code_props_plain_init, code_props_symbol_action_init,
2760 code_props_rule_action_init, code_props_translate_code): The rest of
2761 the new code_props functional interface. Among other things, the init
2762 functions set the code_props kind field so that
2763 code_props_translate_code will know whether to behave like
2764 translate_symbol_action, translate_rule_action, or translate_code.
2765 These old translate functions must remain until all other modules are
2766 updated to use the new code_props interface.
2767 (code_scanner_last_string_free): New function similar to
2768 gram_scanner_last_string_free.
2769 (code_scanner_free): Add documentation.
2770 * src/scan-code.l: Implement the new interface.
2771 (code_lex): Make it static, add a code_props* argument, and remove the
2772 rule argument.
2773 (last_string): New static global similar to the one in scan-gram.l.
2774 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
2775 instead of rule.
2776 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
2777 code_props since Bison may one day use this information for destructors
2778 and printers.
2779 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
2780 (handle_action_dollar): Use symbol_list_n_get and set used flag
2781 directly since symbol_list_n_used_set is removed.
2782 (translate_action): Add a code_props* argument and remove the rule,
2783 action, and location arguments. Pass the code_props* on to code_lex.
2784 (translate_rule_action, translate_symbol_action, translate_code):
2785 Rewrite as wrappers around the new code_props interface.
2786 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
2787 it would eventually need to break the encapsulation of code_props.
2788
2789 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2790
2791 * etc/.cvsignore: New.
2792
2793 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2794
2795 Add maintainer-push-check to run maintainer-check using push parsing in
2796 place of pull parsing where available.
2797 * Makefile.am (maintainer-push-check): New.
2798 * data/bison.m4 (b4_use_push_for_pull_if): New.
2799 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
2800 appropriately based on their existing values.
2801 (yypush_parse): Don't print push-parser-specific diagnostics if push
2802 parsing is being used in place of pull parsing.
2803 * data/yacc.c: If push parsing should replace pull parsing, redirect to
2804 push.c.
2805 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
2806 variable, and insert b4_use_push_for_pull_flag into muscles.
2807 * tests/Makefile.am (maintainer-push-check): New.
2808
2809 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2810
2811 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
2812 (whether successful or failed) so that yypush_parse can be invoked
2813 again to start a new parse using the same yypstate.
2814 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
2815 check multiple yypull_parse invocations on the same yypstate. For pull
2816 mode, extend to check multiple yyparse invocations.
2817 (Exploding the Stack Size with Alloca): Extend to try with
2818 %push-pull-parser.
2819 (Exploding the Stack Size with Malloc): Likewise.
2820
2821 * tests/calc.at (Simple LALR Calculator): Don't specify
2822 %skeleton "push.c" since %push-pull-parser implies that now.
2823 * tests/headers.at (export YYLTYPE): Don't check for the push
2824 declarations. Otherwise, this test case can't be used to see if push
2825 mode can truly emulate pull mode.
2826 * tests/input.at (Torturing the Scanner): Likewise.
2827 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
2828 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
2829 AT_YACC_IF, which now includes the case of push mode since %skeleton
2830 need not be used for push mode. This will be more intuitive once
2831 push.c is renamed to yacc.c.
2832
2833 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2834
2835 For push mode, convert yyparse from a macro to a function, invoke yylex
2836 instead of passing a yylexp argument to yypull_parse, and don't
2837 generate yypull_parse or yyparse unless %push-pull-parser is declared.
2838 Discussed starting at
2839 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
2840 * data/bison.m4 (b4_pull_if): New.
2841 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
2842 * data/push.c: Improve M4 quoting a little.
2843 (b4_generate_macro_args, b4_parenthesize): Remove.
2844 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
2845 any time a pull parser is requested.
2846 Don't #define this as a wrapper around yypull_parse. Instead, when
2847 both push and pull are requested, make it a function that does that
2848 same thing.
2849 (yypull_parse): If there's a b4_prefix, #define this to
2850 b4_prefix[pull_parse] when both push and pull are requested.
2851 Don't define this as a function unless both push and pull are
2852 requested.
2853 Remove the yylexp argument and hard-code yylex invocation instead.
2854 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
2855 %push-parser.
2856 * src/getargs.c (pull_parser): New global initialized to true.
2857 * getargs.h (pull_parser): extern it.
2858 * src/output.c (prepare): Insert pull_flag muscle.
2859 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
2860 (prologue_declaration): Set both push_parser and pull_parser = true for
2861 %push-pull-parser. Set push_parser = true and pull_parser = false for
2862 %push-parser.
2863 * src/scan-gram.l: Don't accept %push_parser as an alternative to
2864 %push-parser since there's no backward-compatibility concern here.
2865 Scan %push-pull-parser.
2866 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
2867 instead of %push-parser.
2868 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
2869 prototype it in the module that calls yyparse.
2870 * tests/input.at (Torturing the Scanner): Likewise.
2871 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
2872
2873 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
2874
2875 Update etc/bench.pl. Optimize push mode a little (the yyn change
2876 deserves most of the credit).
2877 * Makefile.am (SUBDIRS): Add etc subdirectory.
2878 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
2879 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
2880 yytoken, yyval, and yyloc declarations to...
2881 (yyparse or yypush_parse): ... here to improve performance. For
2882 yypush_parse invocations after the first, be sure to assign yyn its old
2883 value again.
2884 (yypstate_new): Don't bother initializing the yyresult field since the
2885 initial value isn't used.
2886 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
2887 remove the #define that, in push mode, set it to yyps->NAME.
2888 * etc/Makefile.am: New.
2889 * etc/bench.pl: Remove and build it instead from...
2890 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
2891 "tests/bison" from the build directory by default rather than just
2892 invoking "bison" from $PATH.
2893 (calc_grammar): Update push parser code: don't declare yylval globally,
2894 don't define yyparse_wrapper, and don't #define yyparse.
2895 (bench_grammar): Update to check all working combinations of yacc.c,
2896 push.c, impure, pure, pull, and push.
2897
2898 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2899
2900 For push mode, add pull wrappers around yypush_parse.
2901 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
2902 (yypull_parse): New function wrapping yypush_parse.
2903 (yyparse): New #define wrapping yypull_parse.
2904 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
2905 is declared.
2906 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
2907 prototype yylex in the module that calls yyparse, and don't prototype
2908 yyparse there. Otherwise, the yyparse expansion won't compile.
2909 * tests/input.at (Torturing the Scanner): Likewise.
2910
2911 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2912
2913 Enable push parsers to operate in impure mode. Thus, %push-parser no
2914 longer implies %pure-parser. The point of this change is to move
2915 towards being able to test the push parser code by running the entire
2916 test suite as if %push-parser had been declared.
2917 * data/push.c (yypush_parse): For impure mode, remove the
2918 yypushed_char, yypushed_val, and yypushed_loc arguments.
2919 Instead, declare these as local variables initialized to the global
2920 yychar, yylval, and yylloc.
2921 For the first yypush_parse invocation only, restore the initial values
2922 of these global variables when it's time to read a token since they
2923 have been overwritten.
2924 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
2925 %push-parser.
2926 * tests/calc.at (Simple LALR(1) Calculator): Always declare
2927 %pure-parser along with %push-parser since this test case was designed
2928 for pure push parsers.
2929 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
2930 (AT_YACC_OR_PUSH_IF): New.
2931 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
2932 add a note that it's still wrong for some cases (as it has been for a
2933 while).
2934 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
2935 %push-parser no longer implies %pure-parser.
2936
2937 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2938
2939 Remove some unnecessary differences between the pull parser code and
2940 the push parser code. This patch enables yynerrs in push mode.
2941 * data/push.c: Reformat M4 a little.
2942 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
2943 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
2944 because push mode is on. Instead, if pure mode is on, move yynerrs
2945 to...
2946 (b4_declare_parser_state_variables): ... here.
2947 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
2948 to yyps->NAME so it can be used in yypush_parse.
2949 (yypush_parse): Don't omit uses of yynerrs in push mode.
2950
2951 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2952
2953 Fix bug such that the first pushed token's value and location are
2954 sometimes overwritten (sometimes by %initial-action) before being used.
2955 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
2956 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
2957 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
2958 more closely mimic the pull parser logic.
2959 Don't copy the pushed token to yychar, yylval, and yylloc until it's
2960 time to read a token, which is after any initialization of yylval and
2961 yylloc.
2962 (gottoken): Rename label to...
2963 (yyread_pushed_token): ... for clarity and to avoid infringing on the
2964 user namespace.
2965
2966 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2967
2968 Rearrange initialization of the parser state variables so that the
2969 skeleton doesn't have to have a copy for pull mode and another for push
2970 mode. This patch also fixes at least a bug such that yylloc was not
2971 initialized (with b4_location_initial_line and
2972 b4_location_initial_column) upon calling yypush_parse. However, that
2973 initialization now overwrites the first token's location;
2974 %initial-action assigning @$ already did the same thing, and both bugs
2975 will be fixed in a later patch.
2976 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
2977 (b4_declare_parser_state_variables): Remove initialization of yytoken,
2978 yyss, yyvs, yyls, and yystacksize.
2979 (yypstate_new): Remove initialization of some yypstate fields: yystate,
2980 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
2981 yylsp.
2982 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
2983 yyps->NAME so it can be used in yypush_parse.
2984 (yyparse or yypush_parse): For yypush_parse, don't print the
2985 "Starting parse" diagnostic for invocations after the first.
2986 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
2987 yypush_parse, only do it for the first invocation.
2988 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
2989 initialization to occur in yypush_parse but only on the first
2990 invocation.
2991
2992 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
2993
2994 * data/push.c: Add CPP guards around push parser declarations in both
2995 the header and the code file.
2996 In the code file, move the push parser declarations to the same place
2997 they appear in the header file.
2998 Clean up the M4 some, especially the inconsistent underquoting in
2999 some b4_c_function_def and b4_c_function_decl uses.
3000
3001 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3002
3003 Encapsulate the push parser state variables into an M4 macro so the
3004 push skeleton doesn't have to list them again for pull mode's yyparse.
3005 For push mode, remove yypush_parse's local equivalents of these
3006 variables to eliminate unnecessary copying between the two sets at
3007 run-time. This patch also fixes at least a bug related to multiple
3008 %initial-action invocations in push mode.
3009 * data/push.c (b4_declare_parser_variables): Rename to...
3010 (b4_declare_scanner_communication_variables): ... this for clarity and
3011 update both uses.
3012 (b4_declare_yyparse_variables): Remove and move its contents to the one
3013 spot where it was invoked.
3014 (b4_declare_parser_state_variables): New macro containing the parser
3015 state variables required by push mode.
3016 (struct yypstate): Replace all fields but yynew with
3017 b4_declare_parser_state_variables.
3018 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
3019 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
3020 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
3021 (yyparse or yypush_parse): For yyparse in pull mode, replace local
3022 parser state variable declarations with
3023 b4_declare_parser_state_variables.
3024 Don't initialize parser state variables when calling yypush_parse since
3025 yypstate_new already does that.
3026 Invoke the user's initial action only upon the first yypush_parse
3027 invocation.
3028 Remove all code that copies between the local parser state variables
3029 and the yypstate.
3030
3031 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3032
3033 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
3034 prevent a name collision in a future patch where these names will
3035 sometimes be #define'd.
3036 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
3037 since it no longer has the same name as the existing argument.
3038 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
3039
3040 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
3041 and Joel E. Denny <jdenny@ces.clemson.edu>
3042
3043 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3044 that the argument is case-insensitive, and there's no `=' here.
3045 For the %skeleton entry, mention that %language is better.
3046 (Bison Options): Likewise for --language and --skeleton. Move the
3047 --skeleton entry so that the `Tuning the parser' section is sorted
3048 alphabetically on long options.
3049 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
3050 %language directive in detail here; cross-reference the %language
3051 documentation instead.
3052 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
3053 `%require "2.3b"' so that the example is always up-to-date.
3054 (Table of Symbols): Add entries for %language and %skeleton.
3055 * examples/extexi (normalize): Instead of replacing every %require
3056 argument with the current Bison version, just substitute for
3057 `@value{VERSION}'. This guarantees that we're testing what actually
3058 appears in the documentation.
3059 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
3060 rather than `@VERSION@'.
3061
3062 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3063
3064 * NEWS: Reword the %language news a bit, and put it earlier.
3065
3066 * src/getargs.c (skeleton_arg): Last arg is now location const *.
3067 Rewrite to simplify the logic.
3068 (language_argmatch): Likewise.
3069 (program_name): We now own this var.
3070 * src/getargs.h (struct bison_language): Use char[] rather than
3071 const char *.
3072
3073 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
3074 Java is supported.
3075 * src/complain.c (program_name): Remove decl; no longer needed.
3076 * src/main.c (program_name): Remove; now belongs to getargs.
3077
3078 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
3079
3080 * NEWS: Document %language.
3081
3082 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
3083
3084 * data/c-skel.m4, data/c++-skel.m4: New files.
3085 * data/glr.c: Complain on push parsers.
3086
3087 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
3088 over %skeleton.
3089 (Decl Summary): Document %language and %skeleton.
3090 (Command line): Document -L.
3091
3092 * examples/extexi: Rewrite %require directive.
3093 * examples/calc++/Makefile.am: Pass VERSION to extexi.
3094
3095 * src/files.c (compute_exts_from_gc): Look in language structure
3096 for .y extension.
3097 (compute_file_name_parts): Check whether .tab should be added.
3098 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
3099 (language, skeleton_arg, language_argmatch): New.
3100 (long_options): Add --language.
3101 (getargs): Use skeleton_arg, add -L/--language.
3102 * src/getargs.h: Include location.h.
3103 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3104 * src/output.c (prepare): Pick default skeleton from struct language.
3105 Don't dispatch C skeletons here.
3106 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3107 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3108 * src/scan-gram.l ("%language"): New rule.
3109
3110 * tests/calc.at: Test %skeleton and %language.
3111 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3112 (AT_GLR_IF): Look for %skeleton "glr.cc".
3113 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3114 (AT_YACC_IF): Reject %language.
3115
3116 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3117
3118 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3119 since it wasn't used; only the typedef name 'semantic_type' is needed.
3120 Also, omit trailing white space.
3121
3122 * bootstrap: Sync from coreutils.
3123 (gnulib_extra_files): Add build-aux/announce.gen.
3124 (slurp): Adjust .gitignore files like .cvsignore files.
3125 * build-aux/announce-gen: Remove from CVS, since bootstrap
3126 now creates this.
3127
3128 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3129
3130 Make %push-parser imply %pure-parser. This fixes several bugs; see
3131 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3132 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3133 pure_parser = true.
3134 * data/push.c: Don't bother testing b4_push_if when deciding whether
3135 to expand b4_declare_parser_variables globally.
3136 (yypush_parse): Likewise in here.
3137
3138 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3139 (yy_reduce_print): Reformat M4 for readability.
3140
3141 2006-12-15 Bob Rossi <bob@brasko.net>
3142 and Joel Denny <jdenny@ces.clemson.edu>
3143
3144 * data/push.c (yypstate): Add typedef, and update all uses of
3145 struct yypstate to just yypstate.
3146 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3147
3148 2006-12-14 Bob Rossi <bob@brasko.net>
3149
3150 * data/push.c (yypush_parse): Declare prototype regardless of
3151 %locations option.
3152
3153 2006-12-14 Bob Rossi <bob@brasko.net>
3154
3155 * data/push.c (yyparse): Remove the prototype and the #define when in
3156 push-parser mode.
3157
3158 2006-12-13 Bob Rossi <bob@brasko.net>
3159
3160 * data/push.c (yypstate_init): Rename to...
3161 (yypstate_new): ... this and use b4_c_function_def.
3162 (yypstate_delete): New.
3163 (yypush_parse): Change parameters yynval and yynlloc to be const.
3164 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3165 yypstate_delete functions.
3166
3167 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3168
3169 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3170 strange test case titles. Reported by Bob Rossi.
3171
3172 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3173
3174 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3175 of potential ambiguities in GLR grammers.
3176
3177 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3178
3179 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3180 `bison ', use m4_index instead of m4_substr since chopping up a string
3181 containing M4-special characters causes problems here.
3182
3183 Fix a couple of bugs related to special characters in user-specified
3184 file names, and make it easier for skeletons to compute output file
3185 names with the same file name prefix as Bison-computed output file
3186 names.
3187 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3188 b4_parser_file_name and b4_spec_defines_file instead of
3189 @output_parser_name@ and @output_header_name@, which are now redundant.
3190 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3191 b4_parser_file_name, b4_spec_defines_file, and the new
3192 @basename(FILENAME@) instead of @output_parser_name@ and
3193 @output_header_name@, which inappropriately escaped the file names as
3194 C string literals.
3195 * src/files.c (all_but_ext): Remove static qualifier.
3196 (compute_output_file_names): Move `free (all_but_ext)' to...
3197 (output_file_names_free): ... here since all_but_ext is needed later.
3198 * src/files.h (all_but_ext): Extern.
3199 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3200 exactly what MUSCLE_INSERT_STRING used to do.
3201 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3202 characters are escaped properly.
3203 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3204 all_but_ext.
3205 For pkgdatadir muscle, maintain previous functionality by using
3206 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3207 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3208 digraphs would never be expanded. Hopefully no one has M4-special
3209 characters in his Bison installation path.
3210 * src/scan-skel.l: Don't parse @output_header_name@ and
3211 @output_parser_name@ anymore since they're now redundant.
3212 In @output, use decode_at_digraphs.
3213 Parse a new @basename command that invokes last_component.
3214 (decode_at_digraphs): New.
3215 (BASE_QPUTS): Remove unused.
3216 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3217 (Output file name): New tests.
3218
3219 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3220
3221 Warn about output files that are generated by the skeletons and that
3222 conflict with other output files.
3223 * data/glr.c: Don't generate the header file here when glr.cc does.
3224 * src/files.c (file_names, file_names_count): New static globals.
3225 (compute_output_file_names): Invoke output_file_name_check for files
3226 not generated by the skeletons and remove existing checks.
3227 (output_file_name_check): New function that warns about conflicting
3228 output file names.
3229 (output_file_names_free): Free file_names.
3230 * src/files.h (output_file_name_check): Declare.
3231 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3232 the skeletons.
3233 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3234 (Conflicting output files): New tests.
3235
3236 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3237
3238 * doc/bison.texinfo: Fix a couple of typos.
3239
3240 2006-12-08 Bob Rossi <bob@brasko.net>
3241
3242 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3243 Rename to...
3244 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3245 update all uses.
3246 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3247 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3248 local pv.
3249 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3250 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3251
3252 2006-12-07 Bob Rossi <bob@brasko.net>
3253 and Joel Denny <jdenny@ces.clemson.edu>
3254
3255 * data/push.c (yypvarsinit): Change return type from void* to struct
3256 yypvars*. No longer cast to void* on return.
3257 (struct yypvars): Remove yylen since it need not be remembered between
3258 yypushparse invocations.
3259 (yypushparse): Don't copy between yylen and pv->yylen.
3260
3261 2006-12-05 Bob Rossi <bob@brasko.net>
3262
3263 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3264 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3265 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3266 (struct yypvars): Remove b4_declare_parser_variables.
3267 (yypvarsinit): Remove init code for removed variables.
3268 (global scope): Do not declare b4_declare_parser_variables if
3269 push or pure mode.
3270 (yypushparse): Add b4_declare_parser_variables.
3271 Init new local variables, and remove init code for removed
3272 yypvars variables.
3273 (yyparse): Delete.
3274 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3275 and yyparse for other modes.
3276 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3277 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3278 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3279 (AT_PURE_LEX_IF): True if pure or push parser.
3280
3281 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3282
3283 Document Yacc prologue alternatives and default %destructor's and
3284 %printer's as experimental. Don't mention Java yet. Discussed at
3285 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3286 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3287 (2.3a): Annotate this entry to say the old forms of these features were
3288 also experimental.
3289 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
3290 Table of Symbols): Say they're experimental. Comment out any mention
3291 of Java (we'll want this back eventually).
3292
3293 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3294
3295 Support a file name argument to %defines. Deprecate `=' in
3296 %file-prefix, %name-prefix, and %output. Discussed at
3297 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3298 * NEWS (2.3a+): Mention.
3299 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
3300 form of %defines, and remove `=' from entries for %file-prefix,
3301 %name-prefix, and %output.
3302 * src/parse-gram.y (prologue_declaration): Implement.
3303 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3304 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3305 all but one occurrence of %name-prefix.
3306 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3307 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3308 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3309 occurrence of each of %file-prefix and %output. Add check for %defines
3310 with argument.
3311 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3312 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3313 Remove the `=' from %output.
3314
3315 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3316
3317 Don't escape $ in test case titles since Autoconf 2.61 now does that
3318 correctly.
3319 * tests/actions.at (Default %printer and %destructor are not for error
3320 or $undefined): Here.
3321 (Default %printer and %destructor are not for $accept): Here.
3322 * tests/input.at (Invalid $n and @n): Here.
3323
3324 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3325
3326 Rename <!> to <>. Discussed starting at
3327 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3328 * NEWS (2.3a+): Update.
3329 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3330 Update.
3331 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3332 * src/scan-gram.l (INITIAL): Implement.
3333 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3334 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3335 comment.
3336 * tests/actions.at (Default tagless %printer and %destructor,
3337 Default tagged and per-type %printer and %destructor,
3338 Default %printer and %destructor are not for error or $undefined,
3339 Default %printer and %destructor are not for $accept,
3340 Default %printer and %destructor for mid-rule values): Update.
3341 * tests/input.at (Default %printer and %destructor redeclared,
3342 Unused values with default %destructor): Update.
3343
3344 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3345
3346 Don't let %prec take a nonterminal.
3347 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3348 token.
3349 * tests/input.at (%prec takes a token): New test checking that %prec
3350 won't take a nonterminal.
3351
3352 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3353
3354 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3355 it was double-quoted.
3356 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3357 grammar is maintained with Bison's highest standards.
3358 * src/getargs.c: Fix some typos in Doxygen comments.
3359
3360 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3361
3362 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3363 later. Reported by Paul Eggert in
3364 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3365 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3366 * src/scan-code.l (translate_action): Don't bother invoking
3367 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3368 (code_scanner_free): Instead of invoking
3369 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3370 which frees more.
3371 * src/scan-gram.l (gram_scanner_free): Likewise.
3372 * src/scan-skel.l (scan_skel): Likewise.
3373
3374 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3375
3376 * src/files.c (tr): Change return type to void.
3377 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3378 has been called previously for the same key.
3379 (muscle_find): Return storage instead of value so that
3380 --enable-gcc-warnings doesn't produce warnings that the return discards
3381 const. aver that the value and storage are the same since storage
3382 could potentially be NULL when value is not.
3383 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3384 same as 0.
3385
3386 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3387
3388 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3389 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3390 us a slightly cleaner distribution, and also works.
3391 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3392 gnulib changes.
3393
3394 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3395 and Paul Eggert <eggert@cs.ucla.edu>
3396
3397 Don't let Bison leak memory except when it complains.
3398 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3399 (spec_defines_file, dir_prefix): Now char *, not const char *,
3400 since they are freed.
3401 * src/files.c: Likewise.
3402 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3403 Likewise.
3404 (tr): Now operates in-place. All uses changed.
3405 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3406 values.
3407 (compute_file_name_parts, compute_output_file_names): Don't store
3408 read-only data in variables that will be freed.
3409 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3410 src_extension, and header_extension.
3411 (output_file_names_free): New public function to free
3412 spec_verbose_file, spec_graph_file, spec_defines_file,
3413 parser_file_name, and dir_prefix.
3414 * src/getargs.c (getargs): Don't store read-only data in variables that
3415 will be freed.
3416 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3417 (which previously existed but was unused), and quotearg_free.
3418 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3419 * src/muscle_tab.c: Likewise.
3420 (muscle_entry): Make the value char const *,
3421 and add a new storage member that is char * and can be freed.
3422 (muscle_entry_free): New private function.
3423 (muscle_init): Use it instead of free.
3424 (muscle_insert, muscle_grow): Update and use new storage member.
3425 (muscle_code_grow): Free the string passed to muscle_grow
3426 since it's not needed anymore.
3427 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3428 add a new `char *code' member.
3429 ("{...}"): Declare semantic type as code.
3430 * src/scan-code.h (translate_rule_action):
3431 (translate_symbol_action, translate_code, translate_action): Return
3432 `char const *' rather than `char *' since external code should not free
3433 these strings.
3434 * src/scan-code.l: Likewise.
3435 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3436 which is "{...}" in the parser.
3437 * tests/Makefile.am (maintainer-check-valgrind): Set
3438 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3439 Valgrind.
3440 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3441 complain.
3442 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3443 expecting a non-zero exit status sets --leak-check=summary and
3444 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3445 this case, and we don't want to hear about it.
3446
3447 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3448
3449 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3450 instead of from the template, to simplify configuration a bit.
3451 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3452 and m4/wint_t.m4, as they are needed with the latest gnulib.
3453
3454 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3455
3456 Disable unset/unused mid-rule value warnings by default, and recognize
3457 --warnings=midrule-values to enable them. Discussed starting at
3458 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3459 * NEWS (2.3a+): Mention.
3460 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3461 warnings): Add entry for midrule-values subargument.
3462 * src/reader.c (symbol_should_be_used): Don't return true just because
3463 the value is a set/used mid-rule value unless
3464 --warnings=midrule-values was specified.
3465 * tests/input.at (Unused values, Unused values before symbol
3466 declarations): Run tests with and without --warnings=midrule-values.
3467
3468 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3469 than LIST_FREE directly.
3470
3471 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3472
3473 Finish implementing --warnings=error, which should not be implied by
3474 --warnings=all (or by its synonyms -W and --warnings without
3475 subarguments).
3476 * src/complain.c (set_warning_issued): New function to report that
3477 warnings are being treated as errors and to record an error if so.
3478 Invoke...
3479 (warn_at, warn): ... here.
3480 * src/getargs.c (warnings_args, warnings_types): Reorder so that
3481 "error - warnings are errors" does not appear above "all - all of the
3482 above".
3483 (getargs): For -W and --warnings without subarguments, don't let
3484 FLAGS_ARGMATCH set warnings_error in warnings_flag.
3485 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
3486
3487 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3488
3489 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
3490 empty subargument list. For example: `bison --warnings= parser.y'.
3491
3492 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3493
3494 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
3495 the parser header file so that gcc doesn't warn.
3496
3497 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3498
3499 Split the default %destructor/%printer into two kinds: <*> and <!>.
3500 Discussed starting at
3501 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
3502 * NEWS (2.3a+): Mention.
3503 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
3504 previous change today related to mid-rules.
3505 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3506 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
3507 (TYPE_TAG_ANY): Add as <*>.
3508 (TYPE_TAG_NONE): Add as <!>.
3509 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
3510 for <*> and <!>.
3511 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
3512 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
3513 * src/symlist.c (symbol_list_default_new): Split into tagged and
3514 tagless versions.
3515 (symbol_list_destructor_set, symbol_list_printer_set): Split
3516 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
3517 SYMLIST_DEFAULT_TAGLESS.
3518 * src/symlist.h: Update symbol_list_default*_new prototypes.
3519 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
3520 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
3521 * src/symtab.c (default_destructor, default_destructor_location,
3522 default_printer, default_printer_location): Split each into tagged and
3523 tagless versions.
3524 (symbol_destructor_get, symbol_destructor_location_get,
3525 symbol_printer_get, symbol_printer_location_get): Implement tagged
3526 default and tagless default cases.
3527 (default_destructor_set, default_printer_set): Split each into tagged
3528 and tagless versions.
3529 * src/symtab.h: Update prototypes.
3530 * tests/actions.at (Default %printer and %destructor): Rename to...
3531 (Default tagless %printer and %destructor): ... this, and extend.
3532 (Per-type %printer and %destructor): Rename to...
3533 (Default tagged and per-type %printer and %destructor): ... this, and
3534 extend.
3535 (Default %printer and %destructor for user-defined end token): Extend.
3536 (Default %printer and %destructor are not for error or $undefined):
3537 Update.
3538 (Default %printer and %destructor are not for $accept): Update.
3539 (Default %printer and %destructor for mid-rule values): Extend.
3540 * tests/input.at (Default %printer and %destructor redeclared): Extend.
3541 (Unused values with default %destructor): Extend.
3542
3543 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3544
3545 Don't apply the default %destructor/%printer to an unreferenced midrule
3546 value. Mentioned at
3547 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
3548 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
3549 like $@n instead of just @n so that the default %destructor/%printer
3550 logic doesn't see them as user-defined symbols.
3551 (symbol_is_dummy): Check for both forms of the name.
3552 * src/reader.c (packgram): Remove the `$' from each midrule symbol
3553 name for which the midrule value is referenced in any action.
3554 * tests/actions.at (Default %printer and %destructor for mid-rule
3555 values): New test.
3556 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
3557 for change to dummy symbol names.
3558
3559 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3560
3561 Warn about unset midrule $$ if the corresponding $n is used.
3562 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
3563 $n usage.
3564 (packgram): Before invoking grammar_rule_check on any rule, make sure
3565 all actions have already been scanned in order to set `used' flags.
3566 Otherwise, checking that a midrule's $$ is set will not always work
3567 properly because the midrule check must forward-reference the midrule's
3568 parent rule.
3569 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
3570 warning.
3571
3572 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3573
3574 More improvements to the documentation of the prologue alternatives:
3575 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
3576 Bison manual.
3577 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
3578 some text to clarify the relative importance of the new directives and
3579 to show how these directives may be viewed as code labels.
3580
3581 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
3582
3583 Similar to the recently removed %before-header, add %code-top as the
3584 alternative to the pre-prologue. Mentioned at
3585 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
3586 Also, let the prologue alternatives appear in the grammar section.
3587 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
3588 (prologue_declaration): Move the existing prologue alternatives to...
3589 (grammar_declaration): ... here and add %code-top.
3590 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
3591
3592 Clean up and extend documentation for the prologue alternatives.
3593 * NEWS (2.3a+): Describe prologue alternatives.
3594 * doc/bison.texinfo (Prologue): Move discussion of prologue
3595 alternatives to...
3596 (Prologue Alternatives): ... this new section, and extend it to discuss
3597 all 4 directives in detail.
3598 (Table of Symbols): Clean up discussion of prologue alternatives and
3599 add %code-top.
3600
3601 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3602
3603 DJGPP specific issues.
3604
3605 * djgpp/config.bat: config.hin has been moved to lib. Adjust
3606 config.bat accordingly.
3607 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
3608 * djgpp/config.site: Likewise.
3609
3610 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
3611
3612 Replace %*-header with %provides, %requires, %code. See discussion at
3613 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
3614
3615 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
3616 (b4_user_start_header): Remove.
3617 * data/glr.c: Use new macros instead of b4_*start_header
3618 and b4_*end_header.
3619 * data/glr.cc: Likewise.
3620 * data/lalr1.cc: Likewise.
3621 * data/push.c: Likewise.
3622 * data/yacc.c: Likewise.
3623
3624 * doc/bison.texinfo: Remove %before-header, rename
3625 %{start,end,after}-header to %requires, %provides, %code.
3626
3627 * src/parse-gram.y: Likewise (also rename token names accordingly).
3628 * src/scan-gram.l: Likewise.
3629 * tests/actions.at: Likewise.
3630
3631 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
3632
3633 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
3634 Problem reported by Joel E. Denny.
3635
3636 2006-10-14 Jim Meyering <jim@meyering.net>
3637
3638 (Sync from coreutils.)
3639 Work also when the working directory (with e.g. coreutils sources)
3640 is version controlled with git, rather than CVS.
3641 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
3642 rather than CVS.
3643 In messages and comments, say e.g., "checked-out sources",
3644 rather than "CVS sources".
3645 (version_controlled_file): New function. Work for git as well as
3646 for CVS. Don't use grep's -q option.
3647 (slurp): Call it here, in place of CVS-specific code.
3648
3649 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
3650
3651 Fix testsuite for ./configure --enable-gcc-warnings:
3652 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
3653 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
3654 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
3655 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
3656 * test/regression.at (Diagnostic that expects two alternatives):
3657 Likewise.
3658
3659 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3660
3661 * bootstrap.conf (gnulib_modules): Add config-h.
3662 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
3663 worry about HAVE_CONFIG_H.
3664 * lib/abitset.c: Likewise.
3665 * lib/bitset.c: Likewise.
3666 * lib/bitset_stats.c: Likewise.
3667 * lib/bitsetv-print.c: Likewise.
3668 * lib/bitsetv.c: Likewise.
3669 * lib/ebitset.c: Likewise.
3670 * lib/get-errno.c: Likewise.
3671 * lib/lbitset.c: Likewise.
3672 * lib/subpipe.c: Likewise.
3673 * lib/timevar.c: Likewise.
3674 * lib/vbitset.c: Likewise.
3675 * lib/bitset.c: Include "bitset.h" first, to test interface.
3676 * lib/bitset_stats.c: Include "bitset_stats.h" first.
3677 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
3678 * lib/bitsetv.c: Include "bitsetv.h" first.
3679 * lib/get-errno.c: Include "get-errno.h" first.
3680 * m4/.cvsignore: Add config-h.m4.
3681 * tests/actions.at (Default %printer and %destructor for ...):
3682 Adjust expected line numbers in output to reflect removal of #if
3683 HAVE_CONFIG_H lines.
3684 * tests/glr-regression.at (Missed %merge type warnings when ...):
3685 Likewise.
3686 * tests/regression.at (Braced code in declaration in rules section):
3687 Likewise.
3688 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
3689 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
3690 Include <config.h> unconditionally.
3691
3692 * bootstrap: Sync from coreutils, as follows:
3693
3694 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3695
3696 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
3697 variable was sometimes used without being initialized. This
3698 messed up the installation of the INSTALL file in some cases.
3699
3700 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3701
3702 * bootstrap (usage, main program, symlink_to_gnulib): Add option
3703 --copy. Inspired by a suggestion from Bruno Haible.
3704
3705 2006-10-03 Jim Meyering <jim@meyering.net>
3706
3707 * bootstrap: Undo last change to this file, since now gnulib-tool
3708 sticks with the automake default in generating dependencies.
3709
3710 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3711
3712 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
3713 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
3714
3715 * doc/bison.1: Add copyright notice.
3716
3717 * data/glr.c: Don't include <stdarg.h>; not used.
3718
3719 * NEWS: The -g and --graph options now output graphs in Graphviz
3720 DOT format, not VCG format.
3721 * doc/bison.1: Likewise.
3722 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
3723 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
3724 of this change in
3725 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
3726 * TODO: Remove Graphviz entry.
3727 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
3728 remove vcg.c, vcg.h, vcg_defaults.h.
3729 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
3730 * src/graphviz.c, src/graphviz.h: New files.
3731 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
3732 * src/files.h: Make comment more generic.
3733 * src/main.c (main): Likewise.
3734 * src/print_graph.h: Likewise.
3735 * src/getargs.c (usage): Make usage description more generic.
3736 * src/print_graph.c: Include graphviz.h rather than vcg.h.
3737 (static_graph, fgraph): Remove. All uses changed to pass
3738 arguments instead of sharing a static var.
3739 (print_core, print_actions, print_state, print_graph):
3740 Output graphviz format rather than VCG format.
3741 * tests/.cvsignore: Remove *.vcg; add *.dot.
3742 * tests/output.at: Expect *.dot files, not *.vcg files.
3743
3744 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
3745 accommodates the 2006-10-08 change.
3746
3747 2006-10-11 Bob Rossi <bob@brasko.net>
3748
3749 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
3750 (b4_yyssa, b4_yyerror_range): New macros.
3751 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
3752 (yypvarsinit): Remove init of removed fields.
3753 (yypushparse): Remove use of removed fields; use new macros instead.
3754
3755 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3756
3757 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
3758 in a push parser. Reindent slightly to match yacc.c better.
3759
3760 2006-10-11 Bob Rossi <bob@brasko.net>
3761
3762 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
3763 yymsg_alloc fields.
3764 (yypvarsinit, yypushparse): Remove init of removed fields.
3765 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
3766
3767 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3768
3769 * THANKS: Add Paolo Bonzini and Bob Rossi.
3770
3771 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
3772
3773 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
3774 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
3775 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
3776 b4_define_user_cde and uses): Remove.
3777 (b4_comment, b4_prefix, b4_sync_start): New.
3778 * data/bison.m4: New file, with most of the content removed from c.m4.
3779 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
3780 * src/output.c (output_skeleton): Pass bison.m4.
3781 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
3782 only if specified.
3783
3784 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
3785
3786 Fix test failure reported by Tom Lane in
3787 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
3788 and try to make such failures easier to catch in the future.
3789 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
3790 that's now the caller's responsibility.
3791 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
3792 Set yychar = YYEOF if it's negative.
3793 * tests/actions.at (yylex): Abort if asked to read past EOF.
3794 * tests/conflicts.at (yylex): Likewise.
3795 * tests/cxx-type.at (yylex): Likewise.
3796 * tests/glr-regression.at (yylex): Likewise.
3797 * tests/input.at (yylex): Likewise.
3798 * tests/regression.at (yylex): Likewise.
3799 * tests/torture.at (yylex): Likewise.
3800
3801 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
3802
3803 Fix problems with translating English-language diagnostics.
3804 * bootstrap: Fix bug introduced in recent bootstrap changes, with
3805 respect to bison-runtime pot generation. The YY_ stuff
3806 wasn't being captured.
3807 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
3808 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
3809 * runtime-po/POTFILES.in: Add data/push.c.
3810
3811 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
3812
3813 Merge bootstrap changes from coreutils.
3814
3815 2006-09-28 Jim Meyering <jim@meyering.net>
3816
3817 Automatically generated dependencies are important even
3818 when all of the sources in a directory come from gnulib.
3819 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
3820 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
3821
3822 2006-09-23 Jim Meyering <jim@meyering.net>
3823
3824 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
3825
3826 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3827
3828 * bootstrap: Add support for --force.
3829 (usage): New function. Describe usage less tersely.
3830 (CVS_only_file): New var.
3831
3832 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
3833
3834 * data/push.c (YYPUSH_MORE): Make it an enum instead.
3835 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
3836 Adjust white space and comments to match GNU style better.
3837
3838 2006-09-20 Bob Rossi <bob@brasko.net>
3839
3840 * data/push.c (yyresult_get): Remove function.
3841 (YYPUSH_MORE): Add #define.
3842 (yypushparse): Modify return value.
3843
3844 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3845
3846 * stamp-h.in: Remove; no longer needed.
3847 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
3848 Remove config.h, config.hin, intl (no longer created).
3849 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
3850 stamp-h1.
3851
3852 Sync bootstrap from coreutils, as follows:
3853
3854 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
3855
3856 * bootstrap (symlink_to_gnulib): New function.
3857 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
3858 to copies-of-gnulib.
3859 (cp_mark_as_generated, slurp, gnulib_files):
3860 Avoid making a copy if it's the same as the old version.
3861 (gnulib_files): Add support for this variable (used by Bison).
3862
3863 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3864
3865 * src/getargs.c (usage): Rework to use conventions similar to
3866 coreutils, to make translation a bit easier and the code a bit
3867 smaller. Problem reported by Tim Van Holder.
3868
3869 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
3870
3871 Use some of gnulib's new modules, taken from coreutils.
3872
3873 * bootstrap: Sync from coreutils, except add support for gnulib_files.
3874 * bootstrap.conf: New file.
3875 (gnulib_modules): Add configmake, inttypes, unistd.
3876 (XGETTEXT_OPTIONS): Add complain, complain_at,
3877 fatal, fatal_at, warn, warn_at, unexpected_end.
3878 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
3879 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
3880 (gl_EARLY): Add.
3881 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
3882 (gl_INIT): Add
3883 (GNULIB_AUTOCONF_SNIPPET): Remove.
3884 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
3885 the pickiest.
3886 * lib/.cvsignore: Add inttypes_.h.
3887 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
3888 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
3889 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
3890 no-longer-necessary initializations.
3891 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
3892 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
3893 use the unistd module.
3894 * src/system.h: Likewise.
3895 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
3896 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
3897 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
3898 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
3899 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
3900 * src/system.h: Include inttypes.h unconditionally, now that we
3901 use the inttypes module. Don't bother to include stdint.h, since
3902 inttypes.h now does that for us.
3903 (LOCALEDIR): Remove, now that we use the configmake module.
3904 * src/getargs.c: Include configmake.h.
3905 * src/main.c: Likewise.
3906 * src/output.c: Likewise.
3907 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
3908 not from $abs_top_builddir, since config.h moved.
3909
3910
3911 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
3912 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
3913
3914 * src/parse-gram.y (symbol_declaration): Don't put statements
3915 before declarations; it's not portable to C89.
3916 * src/scan-code.l (handle_action_at): Likewise.
3917
3918 * src/scan-code.l: Always initialize braces_level; the old code
3919 left it uninitialized and therefore had undefined behavior.
3920
3921 Don't attempt to redefine 'assert', since it runs afoul of
3922 systems where standard headers (mistakenly) include <assert.h>.
3923 Instead, define and use our own alternative, called 'aver'.
3924 * src/reader.c: Don't include assert.h, since we no longer
3925 use assert.
3926 * src/scan-code.l: Likewise.
3927 * src/system.h (assert): Remove, replacing with....
3928 (aver): New function, taking a bool arg. All uses changed.
3929 * src/tables.c (pack_vector): Ensure that aver arg is bool,
3930 not merely an integer.
3931
3932 2006-09-15 Bob Rossi <bob@brasko.net>
3933
3934 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
3935 * data/c.m4 (YYPUSH): New.
3936 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
3937 * src/getargs.c (push_parser): New var.
3938 * src/getargs.h (push_parser): New declaration.
3939 * src/output.c (prepare): Add macro insertion of `push_flag'.
3940 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
3941 (prologue_declaration): Parse %push-parser.
3942 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
3943 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
3944 list of removed lines from the traces observed.
3945 (AT_CHECK_CALC_LALR): Added push parser tests.
3946
3947 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
3948
3949 * NEWS: Version 2.3a.
3950 * configure.ac (AC_INIT): Likewise.
3951
3952 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
3953 "#define YYSTYPE int" that caused "make maintainer-check" to fail
3954 due to header ordering dependencies. I don't know why the #define
3955 was there.
3956
3957 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
3958 runtime cost when YYDEBUG is not defined, and so that some tests
3959 that used to fail now work. Problem and initial suggestion by
3960 Paolo Bonzini.
3961 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
3962 * data/glr.cc (b4_parser_class_name):
3963 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
3964 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
3965 (yydebug_) [YYDEBUG]: New member.
3966 (yycdebug_): Now defined only if YYDEBUG.
3967 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
3968 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
3969 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
3970 if YYYDEBUG.
3971 (debug_stream, set_debug_stream, debug_level, set_debug_level):
3972 Define only if YYDEBUG.
3973 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
3974 set_debug_level.
3975 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
3976 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
3977 AT_CHECK_CALC_GLR_CC that are working now.
3978
3979 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
3980
3981 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
3982 We don't need them in glr.cc, and glr.c defines them.
3983 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
3984 assumes that defining it to anything is the same as defining
3985 it to 1. Problem reported by Paolo Bonzini.
3986
3987 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
3988
3989 * data/c.m4 (b4_null, b4_case): Define.
3990 * src/output.c (prepare_symbols): Use b4_null.
3991 (user_actions_output): Use b4_case.
3992
3993 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
3994
3995 * data/glr.c (b4_shared_declarations): Put start-header first,
3996 before any #includes that we generate, so that feature-test
3997 macros work. Problem reported by Michael Deutschmann in
3998 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
3999 * data/lalr1.cc: Likewise.
4000 * doc/bison.texinfo (Prologue): Document that feature-test macros
4001 should be defined before any Bison declarations.
4002 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
4003 that depend on location.hh after, not before, Bison decls, since
4004 we now include location.hh after the first user prologue.
4005
4006 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
4007 Sander Brandenburg in
4008 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
4009 Also, fix minor white space and comment issues.
4010 (Prologue): Mention that it's better to define feature-test macros
4011 before Bison declarations. Problem reported by Michael Deutschmann.
4012
4013 * README-cvs: Fix typo: "&" should be "&&". Problem reported
4014 by Jim Meyering.
4015 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
4016 This adjusts to recent gnulib changes.
4017
4018 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4019
4020 Finish implementation of per-type %destructor/%printer. Discussed
4021 starting at
4022 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
4023 and
4024 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
4025 * NEWS (2.3+): Add a description of this feature to the default
4026 %destructor/%printer description.
4027 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
4028 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4029 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
4030 list node contains a semantic type.
4031 * src/symtab.c, src/symtab.h: Extend with a table that associates
4032 semantic types with their %destructor's and %printer's.
4033 (semantic_type_from_uniqstr, semantic_type_get,
4034 semantic_type_destructor_set, semantic_type_printer_set): New functions
4035 composing the public interface of that table.
4036 (symbol_destructor_get, symbol_destructor_location_get,
4037 symbol_printer_get, symbol_printer_location_get): If there's no
4038 per-symbol %destructor/%printer, look up the per-type before trying
4039 the default.
4040 * tests/actions.at (Per-type %printer and %destructor): New test case.
4041 * tests/input.at (Default %printer and %destructor redeclared):
4042 Extend to check that multiple occurrences of %symbol-default in a
4043 single %destructor/%printer declaration is an error.
4044 (Per-type %printer and %destructor redeclared, Unused values with
4045 per-type %destructor): New test cases.
4046
4047 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4048
4049 Require default %destructor/%printer to be declared using
4050 %symbol-default instead of an empty symbol list, and start working on
4051 new per-type %destructor/%printer. Discussed at
4052 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
4053 * NEWS (2.3+): Add %symbol-default to example.
4054 * bison.texinfo (Freeing Discarded Symbols): Likewise.
4055 (Table of Symbols): Add entry for %symbol-default.
4056 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
4057 (generic_symlist, generic_symlist_item): New nonterminals for creating
4058 a list in which each item is a symbol, semantic type, or
4059 %symbol-default.
4060 (grammar_declaration): Use generic_symlist in %destructor and %printer
4061 declarations instead of symbols.1 or an empty list.
4062 (symbol_declaration, precedence_declaration, symbols.1): Update actions
4063 for changes to symbol_list.
4064 * src/reader.c: Update for changes to symbol_list.
4065 * src/scan-code.l: Likewise.
4066 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
4067 * src/symlist.c, src/symlist.h: Extend such that a list node may
4068 represent a semantic type or a %symbol-default in addition to just an
4069 ordinary symbol. Add switched functions for setting %destructor's and
4070 %printer's.
4071 * tests/actions.at, tests/input.at: Add %symbol-default to all default
4072 %destructor/%printer declarations.
4073
4074 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
4075
4076 Whether the default %destructor/%printer applies to a particular symbol
4077 isn't a question of whether the user *declares* that symbol (in %token,
4078 for example). It's a question of whether the user by any means
4079 *defines* the symbol at all (by simply using a char token, for
4080 example). $end is defined by Bison whereas any other token with token
4081 number 0 is defined by the user. The error token is always defined by
4082 Bison regardless of whether the user declares it with %token, but we
4083 may one day let the user define error as a nonterminal instead.
4084 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
4085 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
4086 the meaning of "user-defined".
4087 * tests/actions.at (Default %printer and %destructor for user-declared
4088 end token): Rename to...
4089 (Default %printer and %destructor for user-defined end token): ...
4090 this.
4091
4092 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
4093 computation of whether to apply the default, don't maintain a list of
4094 every Bison-defined symbol. Instead, just check for a first character
4095 of '$', which a user symbol cannot have, and check for the error token.
4096
4097 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
4098
4099 Don't apply the default %destructor or %printer to the error token,
4100 $undefined, or $accept. This change fits the general rule that the
4101 default %destructor and %printer are only for user-declared symbols,
4102 and it solves several difficulties that are described in the new test
4103 cases listed below.
4104 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4105 * tests/actions.at (Default %printer and %destructor are not for error
4106 or $undefined, Default %printer and %destructor are not for $accept):
4107 New test cases.
4108
4109 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4110
4111 Allow %start after the first rule.
4112 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4113 when parsing the first rule.
4114 (check_and_convert_grammar): Search for it here after all grammar
4115 declarations have been parsed. Skip midrules, which have dummy LHS
4116 nonterminals.
4117 * src/symtab.c (symbol_is_dummy): New function.
4118 * src/symtab.h (symbol_is_dummy): Declare it.
4119 * tests/input.at (%start after first rule): New test.
4120
4121 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4122
4123 Redo some of the previous commit: add back the ability to use
4124 non-aliased/undeclared string literals since it might be useful to
4125 those declaring %token-table.
4126 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4127 commit: don't worry about complaints from symbols_pack.
4128 * src/symtab.c (symbol_new, symbol_class_set,
4129 symbol_check_alias_consistency): Undo changes in previous commit: count
4130 each string literal as a new symbol and token, assign it a symbol
4131 number, and don't complain about non-aliased string literals.
4132 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4133 and token counts but does still set aliased tokens to the same number,
4134 symbol_pack_processor now leaves empty slots in the symbols array.
4135 Remove those slots.
4136 * tests/regression.at (Undeclared string literal): Remove test case
4137 added in previous commit since non-aliased string literals are allowed
4138 again.
4139 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4140 remove unnecessary string literal declarations.
4141 * tests/sets.at (Firsts): Likewise.
4142
4143 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4144
4145 Don't allow an undeclared string literal, but allow a string literal to
4146 be used before its declaration.
4147 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4148 symbols_pack complained.
4149 * src/symtab.c (symbol_new): Don't count a string literal as a new
4150 symbol.
4151 (symbol_class_set): Don't count a string literal as a new token, and
4152 don't assign it a symbol number since symbol_make_alias does that.
4153 (symbol_make_alias): It's not necessary to decrement the symbol and
4154 token counts anymore. Don't assume that an alias declaration occurs
4155 before any uses of the identifier or string, and thus don't assert that
4156 one of them has the highest symbol number so far.
4157 (symbol_check_alias_consistency): Complain if there's a string literal
4158 that wasn't declared as an alias.
4159 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4160 symbol_pack asserts that every token has been assigned a symbol number
4161 although undeclared string literals have not.
4162 * tests/regression.at (String alias declared after use, Undeclared
4163 string literal): New test cases.
4164 (Characters Escapes, Web2c Actions): Declare string literals as
4165 aliases.
4166 * tests/sets.at (Firsts): Likewise.
4167
4168 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4169
4170 In the grammar scanner, STRING_FINISH unclosed constructs and return
4171 them to the parser in order to improve error messages.
4172 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4173 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4174 * tests/input.at (Unclosed constructs): New test case.
4175 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4176 seen.
4177
4178 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4179 unused global.
4180
4181 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4182
4183 Handle string aliases for character tokens correctly.
4184 * src/symtab.c (symbol_user_token_number_set): If the token has an
4185 alias, check and set its alias's user token number instead of its own,
4186 which is set to indicate the alias. Previously, every occurrence of
4187 the character token in the grammar overwrote that alias indicator with
4188 the character code.
4189 * tests/input.at (String aliases for character tokens): New test.
4190
4191 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4192
4193 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4194
4195 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4196
4197 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4198 to prevent failures when building on older platforms.
4199 Check for autopoint failure.
4200 Set XGETTEXT_OPTIONS to values that check for C format strings,
4201 so that translators are warned about them (this also helps
4202 prevent core dumps).
4203
4204 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4205 function, since it simplifies our code a bit.
4206
4207 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4208 rather than -W, so we don't get bogus warnings about sign comparisons.
4209 Add -Wpointer-arith, since that warning is useful (it reports code
4210 that does not conform to C89 and that some compilers reject).
4211 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4212 since it's no longer needed.
4213
4214 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4215
4216 Clean up scanners a bit.
4217 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4218 definitions so gcc won't warn when obstack_for_string is unused.
4219 * src/scan-code.l: config.h and system.h are already #include'd by
4220 scan-code-c.c, so get rid of them here.
4221 * src/scan-gram.l: Likewise.
4222 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4223 definitions rather than duplicating the rest of it.
4224 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4225
4226 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4227
4228 Suppress signed/unsigned comparison warnings for yycheck.
4229 * data/c.m4 (b4_safest_int_type): New macro.
4230 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4231 a signed int type, cast it to b4_safest_int_type first.
4232 * data/yacc.c: Likewise.
4233 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4234 also overwritten.
4235
4236 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4237
4238 * doc/bison.texinfo: Fix some typos.
4239
4240 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4241
4242 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4243 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4244
4245 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4246 the latest gnulib does this a different way.
4247 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4248 translation was patched, so stop omitting it.
4249
4250 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4251
4252 Enable declaration of default %printer/%destructor. Make the parser
4253 use these for all user-declared grammar symbols for which the user does
4254 not declare a specific %printer/%destructor. Thus, the parser uses it
4255 for token 0 if the user declares it but not if Bison generates it as
4256 $end. Discussed starting at
4257 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4258 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4259 and
4260 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4261 * NEWS (2.3+): Mention.
4262 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4263 declare a %destructor for a mid-rule's semantic value. It's just
4264 impossible to declare one specific to it.
4265 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4266 code. Describe default %destructor form.
4267 * src/parse-gram.y (grammar_declaration): Parse default
4268 %printer/%destructor declarations.
4269 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4270 and symbol_destructor_location_get rather than accessing the destructor
4271 and destructor_location members of struct symbol.
4272 (symbol_printers_output): Likewise but for %printer's.
4273 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4274 again.
4275 * src/symtab.c (default_destructor, default_destructor_location,
4276 default_printer, default_printer_location): New static global
4277 variables to record the default %destructor and %printer.
4278 (symbol_destructor_get, symbol_destructor_location_get,
4279 symbol_printer_get, symbol_printer_location_get): New functions to
4280 compute the appropriate %destructor and %printer for a symbol.
4281 (default_destructor_set, default_printer_set): New functions to set the
4282 default %destructor and %printer.
4283 * src/symtab.h: Prototype all those new functions.
4284 * tests/actions.at (Default %printer and %destructor): New test to
4285 check that the right %printer and %destructor are called, that they're
4286 not called for $end, and that $$ and @$ work correctly.
4287 (Default %printer and %destructor for user-declared end token): New
4288 test to check that the default %printer and %destructor are called for
4289 a user-declared end token.
4290 * tests/input.at (Default %printer and %destructor redeclared, Unused
4291 values with default %destructor): New tests to check related grammar
4292 warnings and errors.
4293
4294 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4295
4296 Clean up handling of %destructor for the end token (token 0).
4297 Discussed starting at
4298 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4299 and
4300 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4301
4302 Make the skeletons consistent in how they pop the end token and invoke
4303 its %destructor.
4304 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4305 state, which has token number 0, since this would invoke the
4306 %destructor for the end token.
4307 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4308 until after shifting the end token, or else it won't be popped.
4309 * data/yacc.c (yyparse): Likewise.
4310
4311 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4312 it's the end token. Upon termination, destroy an unshifted lookahead
4313 even when it's the end token.
4314 * data/lalr1.cc (yy::parser::parse): Likewise.
4315 * data/yacc.c (yyparse): Likewise.
4316
4317 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4318 value warnings for the end token when the user gives the end token a
4319 %destructor.
4320
4321 * tests/actions.at (Printers and Destructors): Test all the above.
4322
4323 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4324
4325 Update to latest gnulib and gettext versions.
4326 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4327 Add fopen-safer.
4328 (gnulib_files): Add m4/warning.m4. Don't worry about files
4329 overwritten by autopoint.
4330 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4331 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4332 rejects them.
4333 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4334 so that we can remove the intl files at a better time.
4335 (intl_files_to_remove): Remove aclocal.m4, since it gets
4336 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4337 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4338 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4339 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4340 Remove datarootdir hack; no longer needed.
4341 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4342 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4343 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4344 strdup.h.
4345 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4346 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4347
4348 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4349
4350 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4351 it with --assume-autoconf='latest-stable'.
4352
4353 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4354
4355 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4356 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4357 YYSTYPE' and `{'.
4358 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4359 those from muscle_tab.c since the old ones are misleading.
4360
4361 2006-07-13 Akim Demaille <akim@epita.fr>
4362
4363 Support %define "KEY" {VALUE}.
4364 * src/scan-code.h, src/scan-code.l (translate_action)
4365 (translate_rule_action, translate_symbol_action, translate_code):
4366 Return char *, not const char *.
4367 * src/parse-gram.y (declaration): Rename as...
4368 (prologue_declaration): this.
4369 (string_content): Remove this nonterminal, use STRING.
4370 (braceless, content, content.opt): New nonterminal.
4371 Use them.
4372 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4373 as value.
4374 * src/scan-gram.l (getargs.h): Don't include it.
4375
4376 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4377
4378 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4379 rather than a for-loop that declares a local bool variable. This
4380 should work around a compatibility problem with a Cray x1e C++
4381 compiler reported by Hung Nguyen in
4382 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4383 The for-loop was introduced in the 2004-11-17 change but I don't
4384 know why it was needed.
4385
4386 2006-07-12 Akim Demaille <akim@epita.fr>
4387
4388 * data/c.m4: Comment changes.
4389
4390 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
4391
4392 * src/complain.c (error_message, ERROR_MESSAGE): New.
4393 To factor...
4394 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4395 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4396
4397 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4398
4399 * NEWS: Instead of %union, you can define and use your own union type
4400 YYSTYPE if your grammar contains at least one <type> tag.
4401 Your YYSTYPE need not be a macro; it can be a typedef.
4402 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4403 (Union Decl, Decl Summary): Document this.
4404 * data/glr.c (YYSTYPE): Implement this.
4405 * data/glr.cc (YYSTYPE): Likewise.
4406 * data/lalr1.cc (YYSTYPE): Likewise.
4407 * data/yacc.c (YYSTYPE): Likewise.
4408 * src/output.c (prepare): Output tag_seen_flag.
4409 * src/parse-gram.y (declaration, grammar_declaration):
4410 Use 'union_seen' rather than 'typed' to determine whether
4411 %union has been seen, since grammars can now be typed without
4412 %union.
4413 (symbol_declaration, type.opt, symbol_def):
4414 Keep track of whether a tag has been seen.
4415 * src/reader.c (union_seen, tag_seen): New vars.
4416 (typed): remove.
4417 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4418 * src/scan-code.l (untyped_var_seen): New variable.
4419 (handle_action_dollar): Adjust to above changes.
4420 (handle_action_dollar, handle_action_at):
4421 Improve overflow checking for outlandish numbers.
4422 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4423 avoid new diagnostics generated by above changes.
4424 * tests/regression.at (YYSTYPE typedef): Add test to check
4425 for type tags without %union.
4426
4427 * src/symlist.c (symbol_list_length): Return int, not unsigned
4428 int, since callers expect int. This may need to get revisited
4429 once we have proper integer overflow checking.
4430
4431 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4432 object is now static.
4433
4434 * src/getargs.c (flags_argmatch): Return void, not int,
4435 to pacify ./configure --enable-gcc-warnings.
4436
4437 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4438 since last_string is already defined to FLEX_PREFIX (last_string).
4439
4440 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4441
4442 Implement --warnings/-W.
4443 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4444 replaced by...
4445 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4446 Adjust callers.
4447 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4448 (warnings_args, warnings_types): New.
4449 (getargs, short_options, long_options): Accept -W/--warnings.
4450 Sort the options by alphabetical order, upper case letter right
4451 before its lower case.
4452
4453 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4454
4455 Change %merge result type clash warnings to errors. Discussed at
4456 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4457 * src/reader.c (record_merge_function_type): Use complain_at.
4458 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4459 declared later): Update test case results.
4460
4461 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4462
4463 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4464 to be in alphabetical order.
4465 (trace_args): Spelling fixes.
4466
4467 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4468
4469 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4470 so they don't collide with user-defined macros.
4471 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4472 this was never guaranteed, and now that we're using gnulib stdint,
4473 which defines int_fast16_t to long int, the problem is exposed.
4474
4475 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
4476
4477 * data/c.m4 (b4_basename): Simplify a bit, since we don't
4478 need the full POSIX semantics (and weren't implementing them
4479 anyway).
4480
4481 Adjust to Autoconf 2.60 and today's gnulib.
4482 * bootstrap (gnulib_modules): Add stdint.
4483 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
4484 no longer copies it.
4485 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
4486 since stdint needs the former and wcwidth (which is now required
4487 by mbswidth) needs the latter.
4488 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
4489 work around a compatibility glitch between gettext 0.14.6 and
4490 Autoconf 2.60.
4491 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
4492 Do not check for uintptr_t, since new stdint module does the right
4493 thing.
4494 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
4495 Add stdint.h, stdint_.h, wcwidth.h.
4496 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
4497 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
4498 stdint.m4, wchar_t.m4, wcwidth.m4.
4499 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
4500 usual order for ../lib/*.h files.
4501 (file_name_split): Use last_component, not base_name, to adjust
4502 to gnulib changes.
4503 * src/parse-gram.h: Include <strverscmp.h> in the usual order
4504 for ../lib/*.h files.
4505 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
4506 Define unconditionally, since we now assume the stdint module.
4507 * src/scan-skel.l: Include <dirname.h>.
4508 (BASE_QPUTS): Use last_component, not base_name.
4509 * src/system.h: Include <unlocked-io.h> in the usual order
4510 for ../lib/*.h files. Include <stdint.h> unconditionally,
4511 since we now use the stdint module.
4512 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
4513 HAVE_UINTPTR_T, since we now use the stdint module.
4514 (base_name): Remove decl, since files now include <dirname.h>
4515 to get the decl.
4516
4517 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4518
4519 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
4520 New, default to 1.
4521 * data/yacc.c, data/glr.c, data/location.cc: Use them.
4522 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
4523 default.
4524 * tests/calc.at: Adjust.
4525
4526 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4527
4528 * data/c.m4 (b4_basename): New.
4529 (b4_syncline): Also output the location of its invocation (from
4530 the skeleton).
4531 (b4_user_action, b4_define_user_action, b4_user_actions)
4532 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
4533 (b4_user_stype): New.
4534 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
4535
4536 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4537
4538 In the grammar file, the first column is 1 not 0 on the first line as
4539 on every other line.
4540 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
4541 * tests/input.at (Torturing the Scanner): Update output.
4542
4543 * src/scan-gram.l (scanner_cursor): Declare it static.
4544
4545 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4546
4547 In warnings, say "previous declaration" rather than "first
4548 declaration".
4549 * src/symtab.c (redeclaration): Do that here.
4550 * src/reader.c (record_merge_function_type): In the case of a result
4551 type clash, report the previous declaration rather than the very first
4552 one in the grammar file.
4553 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4554 declared later): Add a third declaration to check this behavior.
4555 * tests/input.at (Incompatible Aliases): Update output.
4556
4557 2006-06-27 Akim Demaille <akim@epita.fr>
4558
4559 * doc/Doxyfile.in: New.
4560 * doc/Makefile.am: Use it.
4561 * src/lalr.h, src/symtab.h: Initial doxygenation.
4562
4563 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4564
4565 Don't miss %merge result type warnings just because the LHS types are
4566 declared after the %merge. This continues the effort of the previous
4567 patch.
4568 * src/reader.c (get_merge_function): Don't set the merger type yet.
4569 (record_merge_function_type): New function for setting the merger type
4570 and checking for clashes.
4571 (grammar_current_rule_merge_set): Set the location of the %merge for
4572 the current rule.
4573 (packgram): Invoke record_merge_function_type for each rule now that
4574 all symbol type declarations have been parsed.
4575 * src/reader.h (merger_list.type_declaration_location): New member
4576 storing the location of the first %merge from which the type for this
4577 merging function was derived.
4578 * src/symlist.h (symbol_list.merger_declaration_location): New member
4579 storing the location of a rule's %merge, if any.
4580 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4581 declared later): New test to catch the error fixed by the above patch.
4582
4583 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4584
4585 Get action warnings (grammar_rule_check) right even when symbol
4586 declarations appear after the rules. Discussed at
4587 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
4588 and
4589 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
4590 Don't mistake the type of $$ in a midrule to be that of its parent
4591 rule's $$.
4592 * src/reader.c (grammar_current_rule_end): Don't invoke
4593 grammar_rule_check yet since not all symbol declarations may have been
4594 parsed yet.
4595 (grammar_midrule_action): Likewise.
4596 Don't record whether the midrule's $$ has been used yet since actions
4597 haven't been translated yet.
4598 Record the midrule's parent rule and its RHS index within the parent
4599 rule.
4600 (grammar_current_rule_action_append): Don't translate the action yet
4601 since not all symbol declarations may have been parsed yet and, thus,
4602 warnings about types for $$, $n, @$, and @n can't be reported yet.
4603 (packgram): Translate the action and invoke grammar_rule_check now that
4604 all symbol declarations have been parsed.
4605 * src/scan-code.l (handle_action_dollar): Now that this is invoked
4606 after parsing the entire grammar file, the symbol list here in the case
4607 of a midrule is actually the midrule's empty RHS, so reference its
4608 parent rule's RHS where necessary.
4609 On the other hand, now that you can already know it's a midrule, you
4610 aren't forced to think $$ has the same type as its parent rule's $$.
4611 (handle_action_at): In the case of a midrule, reference the parent rule
4612 where necessary.
4613 * src/symlist.c (symbol_list_new): Initialize new midrule-related
4614 members.
4615 (symbol_list_length): Now that this is invoked after all rules have
4616 been parsed, a NULL symbol (rather than a NULL symbol list node)
4617 terminates a rule. symbol_list_print already does this correctly.
4618 * src/symlist.h (symbol_list.midrule_parent_rule,
4619 symbol_list.midrule_parent_rhs_index): New members so that midrules can
4620 remember their relationships with their parents.
4621 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
4622 fixed by the above patch.
4623 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
4624 implementing...
4625 (Unused values): ... this old test case and...
4626 (Unused values before symbol declarations): ... this new test case.
4627 This one is the same as `Unused values' except that all symbol
4628 declarations appear after the rules in order to catch the rest of the
4629 errors fixed by the above patch.
4630
4631 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 More cleanup.
4634 * src/reader.c (current_rule): Declare it static since it's no longer
4635 used outside this file.
4636 (grammar_current_rule_action_append): Remove redundant arguments from
4637 translate_rule_action invocation.
4638 * src/reader.h (current_rule): Remove this unused extern.
4639 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
4640 * src/scan-code.l (translate_rule_action): Likewise.
4641
4642 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
4643
4644 Clean up yesterday's patch.
4645 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
4646 to...
4647 * src/reader.c (grammar_current_rule_action_append): ... here for
4648 consistency with grammar_current_rule_symbol_append.
4649 * tests/regression.at (Braced code in declaration in rules section):
4650 Make yyerror and yylex static as usual.
4651
4652 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
4653
4654 Fix bug that mistakes braced code in a declaration in the rules section
4655 to be a rule action. Mentioned at
4656 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
4657 * src/scan-gram.l: Move midrule action detection from the start of the
4658 scanning of any braced code to...
4659 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
4660 action. For readability, use $2 and @2 rather than the equivalent
4661 global variables.
4662 * tests/regression.at (Braced code in declaration in rules section):
4663 New test to catch the error fixed by the above patch.
4664
4665 Work on code readability some.
4666 * src/scan-code.l (current_rule): Get rid of this misleading and
4667 redundant declaration: it's actually extern'ed in reader.h.
4668 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
4669 translate_action): Add a rule argument and use it instead of the global
4670 current_rule.
4671 (translate_rule_action): This already receives current_rule through an
4672 argument, so pass it on to translate_action instead of assigning
4673 current_rule to current_rule.
4674 (translate_symbol_action, translate_code): Pass rule = NULL to
4675 translate_action.
4676
4677 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
4678
4679 Rename %before-definitions to %start-header and %after-definitions to
4680 %end-header. Don't use these declarations to separate pre-prologue
4681 blocks from post-prologue blocks. Add new order-independent
4682 declarations %before-header and %after-header as alternatives to the
4683 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
4684 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
4685 * NEWS (2.3+): Update for these changes.
4686 * data/glr.c (b4_before_definitions): Update to...
4687 (b4_start_header): ... this.
4688 (b4_after_definitions): Update to...
4689 (b4_end_header): ... this.
4690 * data/glr.cc: Likewise.
4691 * data/lalr1.cc: Likewise.
4692 * data/yacc.c: Likewise.
4693 * doc/bison.texinfo (The prologue): Update names, and replace remaining
4694 prologue blocks with %*-header declarations.
4695 (Calc++ Parser): Likewise.
4696 (Decl Summary): Update names.
4697 (Table of Symbols): Update description.
4698 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
4699 (PERCENT_END_HEADER): ... this.
4700 (PERCENT_BEFORE_DEFINITIONS): Update to...
4701 (PERCENT_START_HEADER): ... this.
4702 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4703 (declaration): Update token names and m4 macro names.
4704 When parsing %end-header and %start-header, invoke translate_code
4705 before muscle_code_grow, and no longer set global booleans to remember
4706 whether these declarations have been seen.
4707 Parse new %after-header and %before-header.
4708 * src/reader.c (before_definitions, after_definitions): Remove.
4709 (prologue_augment): Accept a new bool argument to specify whether to
4710 augment the pre-prologue or post-prologue.
4711 * src/reader.h (before_definitions, after_definitions): Remove these
4712 extern's.
4713 (prologue_augment): Add new bool argument.
4714 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
4715 (PERCENT_END_HEADER): ... this.
4716 (PERCENT_BEFORE_DEFINITIONS): Update to...
4717 (PERCENT_START_HEADER): ... this.
4718 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4719 * tests/actions.at (Printers and Destructors): Update names.
4720
4721 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
4722
4723 Add comparison operators for C++ location classes. Discussed at
4724 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
4725 * data/c++.m4 (b4_define_location_comparison): New boolean %define
4726 declaration indicating whether filename_type has an operator==. If
4727 filename_type is `std::string', it defaults to `1', `0' otherwise.
4728 * data/location.cc: Iff b4_define_location_comparison is `1', add
4729 operator== and operator!= for class position and for class location.
4730
4731 Some minor fixes.
4732 * src/scan-action.l: Remove unused file.
4733 * src/symtab.c (symbol_printer_set): Use printer_location not
4734 destructor_location.
4735 * src/symtab.h (struct symbol): Replace incorrect source comment for
4736 printer members.
4737 * tests/input.at (Incompatible Aliases): Update output with correct
4738 printer location.
4739
4740 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
4741
4742 Don't put the pre-prologue in the header file. For the yacc.c code
4743 file and the glr.c header and code files, move the pre-prologue before
4744 the token definitions. Add new %before-definitions and
4745 %after-definitions to declare code that will go in both the header file
4746 and code file. Discussed at
4747 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
4748 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
4749 and
4750 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
4751 * NEWS (2.3+): Describe these changes.
4752 * data/glr.c (b4_pre_prologue): Move from within to before...
4753 (b4_shared_declarations): ... this.
4754 Add new b4_before_definitions before b4_token_enums.
4755 Add new b4_after_definitions at the end.
4756 * data/glr.cc (b4_pre_prologue): Replace with...
4757 (b4_before_definitions): ... this in the header file.
4758 (b4_after_definitions): New near the end of the header file.
4759 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
4760 code file right before including the header file.
4761 (b4_before_definitions): New in the previous position of
4762 b4_pre_prologue in the header file.
4763 (b4_after_definitions): New near the end of the header file.
4764 * data/yacc.c: Clean up some m4 quoting especially in the header file.
4765 (b4_token_enums_defines): In the code file, move to right before
4766 YYSTYPE for consistency with the header file.
4767 (b4_before_definitions): New right before b4_token_enums_defines in
4768 both the header and code file.
4769 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
4770 header and code file.
4771 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
4772 of prologues for %union dependencies.
4773 (Decl Summary): In %defines description, mention the effect of
4774 %before-definitions and %after-definitions on the header file.
4775 (Calc++ Parser): Forward declare driver in a %before-definitions rather
4776 than in the pre-prologue so that make check succeeds.
4777 (Table of Symbols): Add entries for %before-definitions and
4778 %after-definitions.
4779 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
4780 %before-definitions.
4781 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
4782 (declaration): Parse those declarations and append to
4783 b4_before_definitions and b4_after_definitions, respectively.
4784 * src/reader.c (before_definitions, after_definitions): New bools to
4785 track whether those declarations have been seen.
4786 (prologue_augment): Add to the post-prologue if %union,
4787 %before-definitions, or %after-definitions has been seen.
4788 * src/reader.h (before_definitions, after_definitions): New extern's.
4789 * src/scan-gram.l: Scan the new declarations.
4790 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
4791 prologue block in a %before-definitions or a %after-definitions based
4792 on whether the %union is declared.
4793 * tests/regression.at (Early token definitions with --yacc, Early token
4794 definitions without --yacc): Move tests for token definitions into the
4795 post-prologue since token names are no longer defined in the
4796 pre-prologue.
4797
4798 2006-06-20 Akim Demaille <akim@epita.fr>
4799
4800 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
4801 (symbol_get): Use it.
4802 * src/parse-gram.y: Use it.
4803
4804 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
4805
4806 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
4807 build succeeds when configured with --enable-gcc-warnings.
4808
4809 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
4810
4811 * src/parse-gram.y (char_name): New function.
4812 (CHAR, STRING, string_content): For %printer, properly escape.
4813 (ID): Prefer fputs to fprintf.
4814 (id): Reindent to be consistent with other rules.
4815 Properly quote char.
4816
4817 The Translation Project changed its way of publishing translations
4818 to maintainers. I haven't received any responses to my request
4819 for supporting the old way, or for documenting the new way. I
4820 have modified 'bootstrap' to use screen scraping
4821 (in this case, HTML scraping). This is unreliable and inelegant,
4822 but I don't see any better way. Yuck.
4823 * bootstrap (TP_URL, WGET_COMMAND): New vars.
4824 (get_translations): New function, which uses HTML scraping to
4825 deduce locations of latest translations.
4826 Use this function to grab both bison and bison-runtime .po files.
4827 Don't bother priming the pump for the runtime-po domain any more,
4828 as it's now translated better than bison is.
4829
4830 2006-06-19 Akim Demaille <akim@epita.fr>
4831
4832 * src/scan-gram.l: No longer "parse" things after `%union' until
4833 `{'. Rather, return a single "%union" token.
4834 No longer make symbols: return strings, and leave the conversion
4835 to symbols to the parser.
4836 (SC_PRE_CODE, token_type): Remove.
4837 * src/parse-gram.y (%union): New field `character'.
4838 Sort tokens.
4839 (CHAR): New token.
4840 (ID, ID_COLON): Now that the scanner no longer makes them
4841 identifiers, adjust all uses to invoke symbol_get.
4842 (id_colon): New, wraps the conversion from string to symbol.
4843 (%union): Accept a possible union_name.
4844 (symbol): Now can be a char.
4845 * data/c.m4 (b4_union_name): Leave a default value.
4846 * data/glr.c, data/yacc.c: Use it.
4847
4848 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
4849
4850 For associating token numbers with token names for "yacc.c", don't use
4851 #define statements unless `--yacc' is specified; always use enum
4852 yytokentype. Most important discussions start at:
4853 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
4854 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
4855 and
4856 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
4857 * NEWS (2.3+): Mention.
4858 * data/c.m4 (b4_yacc_if): New.
4859 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
4860 token #define's.
4861 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
4862 on token name definitions.
4863 * src/getargs.c (usage): Capitalize `Yacc' in English.
4864 * src/output.c (prepare): Define b4_yacc_flag.
4865 * tests/regression.at (Early token definitions): Test that tokens names
4866 are defined before the pre-prologue not just before the post-prologue.
4867 Remove this test case and copy to...
4868 (Early token definitions with --yacc): ... this to test #define's.
4869 (Early token definitions without --yacc): ... and this to test enums.
4870
4871 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
4872
4873 * NEWS: Reword the post-2.3 change to not be so optimistic about
4874 removing the old "look-ahead" spelling.
4875 Update previous look-ahead/lookahead change reports.
4876 * REFERENCES: look-ahead -> lookahead (since that's
4877 what he actually wrote).
4878 * doc/refcard.tex: look ahead -> lookahead,
4879 look-ahead -> lookahead
4880
4881 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
4882
4883 For consistency, use `lookahead' instead of `look-ahead' or
4884 `look_ahead'. Discussed starting at
4885 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
4886 and then at
4887 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
4888 * NEWS: For the next release, note the change to `--report'.
4889 * TODO, doc/bison.1: Update English.
4890 * doc/bison.texinfo: Update English.
4891 (Understanding Your Parser, Bison Options): Document as
4892 `--report=lookahead' rather than `--report=look-ahead'.
4893 * src/conflicts.c: Update English in comments.
4894 (lookahead_set): Rename from look_ahead_set.
4895 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
4896 (resolve_sr_conflict): Rename local look_ahead_tokens to
4897 lookahead_tokens, and update other uses.
4898 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
4899 count_rr_conflicts, conflicts_free): Update uses.
4900 * src/getargs.c (report_args): Move "lookahead" before alternate
4901 spellings.
4902 (report_types): Update uses.
4903 (usage): For `--report' usage description, state `lookahead' spelling
4904 rather than `look-ahead'.
4905 * src/getargs.h (report.report_lookahead_tokens): Rename from
4906 report_look_ahead_tokens.
4907 * src/lalr.c: Update English in comments.
4908 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
4909 (state_lookahead_tokens_count): Rename from
4910 state_look_ahead_tokens_count.
4911 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4912 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
4913 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4914 Update other uses.
4915 Update English in output.
4916 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
4917 * src/print.c: Update English in comments.
4918 (lookahead_set): Rename from look_ahead_set.
4919 (print_reduction): Rename argument lookahead_token from
4920 look_ahead_token.
4921 (print_core, state_default_rule, print_reductions, print_results):
4922 Update uses.
4923 * src/print_graph.c: Update English in comments.
4924 (print_core): Update uses.
4925 * src/state.c: Update English in comments.
4926 (reductions_new): Update uses.
4927 (state_rule_lookahead_tokens_print): Rename from
4928 state_rule_look_ahead_tokens_print, and update other uses.
4929 * src/state.h: Update English in comments.
4930 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
4931 (state_rule_lookahead_tokens_print): Rename from
4932 state_rule_look_ahead_tokens_print.
4933 * src/tables.c: Update English in comments.
4934 (conflict_row, action_row): Update uses.
4935 * tests/glr-regression.at
4936 (Incorrect lookahead during deterministic GLR,
4937 Incorrect lookahead during nondeterministic GLR): Rename
4938 print_look_ahead to print_lookahead.
4939 * tests/torture.at: Update English in comments.
4940 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
4941 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
4942 (Many lookahead tokens): Update uses.
4943 * data/glr.c: Update English in comments.
4944 * lalr1.cc: Likewise.
4945 * yacc.c: Likewise.
4946 * src/conflicts.h: Likewise.
4947 * src/lalr.h: Likewise.
4948 * src/main.c: Likewise.
4949 * src/output.c: Likewise.
4950 * src/parse-gram.c: Likewise.
4951 * src/tables.h: Likewise.
4952 * tests/calc.at: Likewise.
4953
4954 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
4955
4956 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
4957
4958 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
4959
4960 * TODO: Add request from Nelson H. F. Beebe to be able to install
4961 Bison without installing the yacc script.
4962
4963 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4964
4965 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
4966 and yytext if they're already #define'd.
4967 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
4968 * src/scan-code-c.c: ... here.
4969 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
4970 <config.h>.
4971
4972 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4973
4974 Get Bison to build again when configured with --enable-gcc-warnings.
4975 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
4976 missing #include's.
4977 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
4978 loc argument as it shadows a global.
4979 * src/scan-gram.l: Remove stray comma that prevents boundary_set
4980 invocation.
4981
4982 * src/.cvsignore: Add scan-code.c.
4983
4984 2006-06-07 Akim Demaille <akim@epita.fr>
4985
4986 * src/scan-gram.l: Move the "add a trailing ; to actions" code
4987 to...
4988 * src/scan-code.l: here.
4989 * tests/input.at (Torturing the Scanner): Fix another location
4990 error.
4991
4992 2006-06-07 Akim Demaille <akim@epita.fr>
4993
4994 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
4995
4996 2006-06-06 Akim Demaille <akim@epita.fr>
4997
4998 Extract the parsing of user actions from the grammar scanner.
4999 As a consequence, the relation between the grammar scanner and
5000 parser is much simpler. We can also split "composite tokens" back
5001 into simple tokens.
5002 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
5003 * src/scan-gram.l (add_column_width, adjust_location): Move to and
5004 rename as...
5005 * src/location.h, src/location.c (add_column_width)
5006 (location_compute): these.
5007 Fix the column count: the initial column is 0.
5008 (location_print): Be robust to ending column being 0.
5009 * src/location.h (boundary_set): New.
5010 * src/main.c: Adjust to scanner_free being renamed as
5011 gram_scanner_free.
5012 * src/output.c: Include scan-code.h.
5013 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
5014 Use boundary_set.
5015 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
5016 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
5017 which is now, again, a separate token.
5018 Adjust all dependencies.
5019 Whereever actions with $ and @ are used, use translate_code.
5020 (action): Remove this nonterminal which is now useless.
5021 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
5022 (grammar_current_rule_action_append): Use translate_code.
5023 (packgram): Bound check ruleno, itemno, and rule_length.
5024 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
5025 (last_string, last_braced_code_loc, max_left_semantic_context)
5026 (scanner_initialize, scanner_free, scanner_last_string_free)
5027 (gram_out, gram_lineno, YY_DECL_): Move to...
5028 * src/scan-gram.h: this new file.
5029 (YY_DECL): Rename as...
5030 (GRAM_DECL): this.
5031 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
5032 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5033 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5034 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5035 Move these declarations, and...
5036 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
5037 these to...
5038 * src/flex-scanner.h: this new file.
5039 * src/scan-gram.l (rule_length, rule_length_overflow)
5040 (increment_rule_length): Remove.
5041 (last_braced_code_loc): Rename as...
5042 (gram_last_braced_code_loc): this.
5043 Adjust to the changes of the parser.
5044 Move all the handling of $ and @ into...
5045 * src/scan-code.l: here.
5046 * src/scan-gram.l (handle_dollar, handle_at): Remove.
5047 (handle_action_dollar, handle_action_at): Move to...
5048 * src/scan-code.l: here.
5049 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
5050 scan-code.h, scan-code-c.c, scan-gram.h.
5051 (EXTRA_bison_SOURCES): Add scan-code.l.
5052 (BUILT_SOURCES): Add scan-code.c.
5053 (yacc): Be robust to white spaces.
5054
5055 * tests/conflicts.at, tests/input.at, tests/reduce.at,
5056 * tests/regression.at: Adjust the column numbers.
5057 * tests/regression.at: Adjust the error message.
5058
5059 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5060
5061 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5062 Use Akim's wording from
5063 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
5064
5065 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5066
5067 Between Bison releases, manually append `+' to the previous Bison
5068 release number, and use that as a signal to automatically print the
5069 ChangeLog's CVS Id keyword from --version. Discussed starting at
5070 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
5071 * ChangeLog: Add Id header.
5072 * configure.ac (AC_INIT): Append `+' to `2.3'.
5073 * src/.cvsignore: Add revision.c.
5074 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
5075 (BUILT_SOURCES): Add revision.c.
5076 (revision.c): New target rule. This file defines a new global variable
5077 named revision. It initializes it with either the Id from ChangeLog
5078 or, if VERSION doesn't contain `+', with the empty string.
5079 * src/getargs.c (version): Print the value of revision.
5080 * src/revision.h: Extern revision.
5081
5082 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
5083
5084 * NEWS: Version 2.3.
5085 * configure.ac (AC_INIT): Likewise.
5086
5087 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
5088
5089 * data/glr.c (YYRECOVERING): Define to be a function-like macro
5090 with no arguments, not as an object-like macro. This is for
5091 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
5092 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
5093 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
5094 Document this.
5095
5096 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
5097
5098 * src/getargs.c (usage): Back out yesterday's modification of the
5099 --help output so that we don't have to wait for translation before
5100 releasing 2.3.
5101
5102 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
5103
5104 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5105 Problem reported by Akim Demaille.
5106
5107 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5108
5109 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5110
5111 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5112
5113 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5114 generated source code. Problem reported by Frans Englich in
5115 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5116
5117 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5118
5119 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5120 shell, not within 'make', so that 'make' by an ordinary builder
5121 (using GNU make) does not worry about configuring gzip. This also
5122 works around a bug reported independently by Keith Thompson and by
5123 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5124 stderr rather than stdout, messing up the build logs.
5125
5126 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5127
5128 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5129 to make sure that YYID will never be unused. This fixes a 'make
5130 maintainer-check' failure caused by the recent changes to the 'Trivial
5131 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5132 not used.
5133 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5134
5135 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5136
5137 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5138 state before an empty RHS is always resolved here. Only the location
5139 of that state is guaranteed to be resolved, and that's enough. This
5140 fixes the remaining bug reported by Derek M. Jones in
5141 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5142 * tests/glr-regression.at (Uninitialized location when reporting
5143 ambiguity): Test the above case.
5144 Also, the embedded comments in this test case claim it checks the case
5145 of an empty RHS that has inherited the initial location. However, the
5146 corresponding LHS was already resolved, so yyresolveLocations didn't
5147 actually have reason to modify it. Fix this by forcing
5148 nondeterministic operation at the beginning of the parse.
5149
5150 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5151
5152 * data/c.m4 (b4_yy_symbol_print_generate):
5153 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5154 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5155 of the bugs reported today by Derek M Jones in
5156 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5157 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5158 defined to be a type name without parens or brackets.
5159 (Location Type): Similarly for YYLTYPE.
5160 * tests/regression.at (Trivial grammars): Put in a test for this
5161 bug that will be caught by 'make maintainer-check' (though not,
5162 alas, by 'make check' unless your compiler is picky).
5163
5164 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5165
5166 * NEWS: Version 2.2.
5167 * configure.ac (AC_INIT): Likewise.
5168
5169 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5170
5171 * data/glr.c (yyreportTree): Make room in yystates for the state
5172 preceding the RHS. This fixes the segmentation fault reported by Derek
5173 M. Jones in
5174 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5175 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5176 to the user. Reported for yyreportTree by Derek M. Jones later in the
5177 same thread.
5178 * THANKS: Add Derek M. Jones.
5179 Update my email address.
5180 Fix typo in Steve Murphy's name.
5181
5182 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5183
5184 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5185 checking against YYLAST that caused the parser to miss a potential
5186 alternative in its diagnostic.
5187 Problem reported by Maria Jose Moron Fernandez in
5188 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5189 * data/lalr1.cc (yysyntax_error_): Likewise.
5190 * data/yacc.c (yysyntax_error): Likewise.
5191 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5192 tokens, in case we run into an older C compiler.
5193 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5194 Use them to check for the off-by-one error fixed above.
5195
5196 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5197 YYSIZE_T, not size_t.
5198 * tests/regression.at (Trivial grammars): New test, to catch
5199 the error fixed by the above patch.
5200
5201 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5202
5203 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5204 scheme.
5205 Reported by Steve Murphy.
5206
5207 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5208
5209 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5210 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5211
5212 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5213
5214 Implement --trace=m4.
5215 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5216 * src/output.c (output_skeleton): When set, pass -dV to m4.
5217
5218 Factor the handling of flags in m4.
5219 * src/output.c (prepare): Rename the muscle names debug, defines,
5220 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5221 * data/c.m4: Adjust.
5222 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5223 Use b4_define_flag_if to define other b4_FLAG_if macros.
5224 (b4_location_if): As a consequence, rename as...
5225 (b4_locations_if): this, for consistency.
5226 Adjust all the skeletons.
5227
5228 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5229
5230 * etc/bench.pm: Shorten bench names.
5231
5232 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5233
5234 * src/output.h, src/output.c (error_verbose): Move to...
5235 * src/getargs.h, src/getargs.c: here.
5236 Sort the flags.
5237 Adjust dependencies.
5238
5239 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5240
5241 * data/c.m4 (b4_copyright): Put the special exception for Bison
5242 skeletons here, so we don't have to put it in each skeleton. All
5243 uses changed. Suggested by Akim Demaille. Also, wrap the
5244 copyright notice, in case it is longer than 80 columns. Replace
5245 comma by newline after title.
5246
5247 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5248
5249 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5250 incompatibility, not a bug. Mention that it wasn't fixed as of
5251 flex 2.5.33.
5252
5253 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5254
5255 * examples/extexi: Enforce the precedence of concatenation over
5256 >>.
5257 Reported by Tommy Nordgren.
5258
5259 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5260
5261 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5262 with the member "token".
5263 Reported by Martin Nylin.
5264
5265 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5266
5267 * data/glr.c: Switch to Bison 2.2 special-exception language in
5268 the copyright notice. Use more-regular format for titles and
5269 copyright notices.
5270 * data/glr.cc: Likewise.
5271 * data/location.cc: Likewise.
5272 * data/yacc.cc: Likewise.
5273 * doc/bison.texinfo (Conditions): Document this.
5274 * NEWS: likewise. Upgrade version to 2.2.
5275
5276 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
5277
5278 * data/glr.cc: Remove dead code.
5279
5280 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5281
5282 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5283 that variable and the line breaks the bootstrap. Problem reported
5284 by Juan M. Guerrero.
5285
5286 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5287
5288 * doc/bison.texinfo (Multiple start-symbols): New.
5289
5290 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5291
5292 * etc/README, etc/bench.pl: New.
5293
5294 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
5295
5296 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5297 rule.
5298 Reported by Mickael Labau.
5299 * tests/input.at (Torturing the Scanner): Test it.
5300
5301 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5302
5303 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5304 Problem reported by Bob Rossi.
5305
5306 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5307
5308 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5309 and didn't really work.
5310 For the index, use @ifnotinfo, not @iftex.
5311 Minor cleanups of spacing and terminology.
5312
5313 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5314
5315 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5316 of AT_NAME_PREFIX when %name-prefix is not used.
5317
5318 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5319
5320 Apply --prefix to C++ skeletons too: they change the namespace.
5321 The test suite already exercize these cases.
5322 * data/c++.m4 (b4_namespace): New.
5323 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5324 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5325 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5326 * doc/bison.texinfo: Document it.
5327 (Option Cross Key): Use @multitable in all formats. It looks
5328 nicer, even in TeX outputs.
5329 (Rules): Use the same code whatever the output type is.
5330 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5331 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5332 * tests/calc.at: Use it, instead of hard coding `yy'.
5333
5334 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5335
5336 * TODO: Remove dead items.
5337
5338 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5339
5340 * doc/FAQ: Remove, merged into...
5341 * doc/bison.texinfo (FAQ): this.
5342 * doc/Makefile.am (EXTRA_DIST): Adjust.
5343
5344 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5345
5346 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5347 even if empty.
5348 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5349 * doc/bison.texinfo (Calc++ Scanner): Use it.
5350
5351 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5352
5353 Fix two nits reported by twlevo, plus one more that I discovered.
5354
5355 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5356 this is the usual Bison style.
5357 * src/location.h (location_print): Likewise.
5358
5359 * src/reader.h (token_name): Likewise.
5360
5361 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5362
5363 Fix some nits reported by twlevo.
5364 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5365 and "POSIX". Use more-modern syntax for URLs. Mention C++
5366 and ask for Java. Don't hardwire OS version numbers. Add
5367 copyright notice.
5368 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5369 * src/conflicts.c (solved_conflicts_obstack): Now static.
5370
5371 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5372
5373 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5374 page. Say "you can use it" not "you may use it" as on the web page;
5375 we're describing capabilities not granting permission.
5376
5377 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5378
5379 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5380 shadowing warnings. Use usual patter for iterating through RHS.
5381 * tests/glr-regression.at
5382 (Uninitialized location when reporting ambiguity):
5383 Modify yylex so that it uses its argument, rather than trying
5384 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5385 const char -> char const.
5386
5387 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5388 Don't use tabs inside commands; it messes up 'ps'.
5389 Problem reported by twlevo.
5390
5391 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5392
5393 * tests/glr-regression.at (Uninitialized location when reporting
5394 ambiguity): New test case.
5395 * data/glr.c (yyresolveLocations): New function, which uses
5396 YYLLOC_DEFAULT.
5397 (yyresolveValue): Invoke yyresolveLocations before reporting an
5398 ambiguity.
5399 * doc/bison.texinfo (Default Action for Locations): Note
5400 YYLLOC_DEFAULT's usage for ambiguity locations.
5401 (GLR Semantic Actions): Cross-reference those notes.
5402
5403 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5404
5405 * tests/glr-regression.at (Leaked semantic values when reporting
5406 ambiguity): Remove unnecessary union and type declarations.
5407 (Leaked lookahead after nondeterministic parse syntax error): New test
5408 case.
5409 * data/glr.c (yyparse): Check for zero stacks remaining before
5410 attempting to shift the lookahead so that you don't lose it.
5411
5412 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5413
5414 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5415 * tests/glr-regression.at (Leaked semantic values when reporting
5416 ambiguity): New test case.
5417 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5418 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5419 now unnecessary yystackp parameter.
5420 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5421 destructors can be called.
5422
5423 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5424 in existing testcases.
5425
5426 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5427
5428 Don't leak semantic values for parent RHS when a user action cuts the
5429 parser, and clean up related code a bit.
5430 * tests/glr-regression.at (Leaked merged semantic value if user action
5431 cuts parse): Rename to...
5432 (Leaked semantic values if user action cuts parse): ... this. Add check
5433 for leaked parent RHS values.
5434 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5435 between an unresolved state (non-empty chain of semantic options) and
5436 an incomplete one (signaled by an empty chain).
5437 (yyresolveStates): Document the interface. Move all manipulation of a
5438 successfully or unsuccessfully resolved yyGLRState to...
5439 (yyresolveValue): ... here so that yyresolveValue always leaves a
5440 yyGLRState with consistent data and thus is easier to understand.
5441 Remove the yyvalp and yylocp parameters since they are always just
5442 taken from the yys parameter. When reporting a discarded merged value
5443 in debugging output, note that it is incompletely merged. Document the
5444 interface.
5445 (yyresolveAction): If resolving any of the RHS states fails, destroy
5446 them all rather than leaking them. Thus, as long as user actions are
5447 written to clean up the RHS correctly, yyresolveAction always cleans up
5448 the RHS of a semantic option. Document the interface.
5449
5450 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5451
5452 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5453 led to a segmentation fault in GNU Pascal. Problem reported
5454 by Waldek Hebisch.
5455
5456 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5457
5458 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5459 mid-rule action inside a nonterminal symbol in order to declare a
5460 destructor for its semantic value.
5461
5462 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5463
5464 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5465 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5466 __cplusplus && ! defined _STDLIB_H && !
5467 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5468 defined free))]: Include <stdlib.h> rather than rolling our own
5469 declarations of malloc and free, to avoid problems with
5470 incompatible declarations (using 'throw') C++'s stdlib.h. This
5471 should fix Debian bug 340012
5472 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5473 reported by Guillaume Melquiond.
5474
5475 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5476
5477 * NEWS: Clarify symbols versus types in unused-value warnings.
5478
5479 * configure.ac (AC_INIT): Bump version number.
5480
5481 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5482
5483 * NEWS: Version 2.1a.
5484 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
5485 since C99 requires this.
5486
5487 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
5488
5489 * m4/c-working.m4: New file.
5490 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
5491
5492 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
5493
5494 * Makefile.maint: Merge from coreutils.
5495
5496 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
5497
5498 More portability fixes for problems summarized by Nelson H. F. Beebe.
5499
5500 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
5501 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
5502 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
5503 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
5504 messes up because C++ code is compiled in 32-bit mode but linked
5505 in 64-bit mode.
5506
5507 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
5508
5509 More portability fixes for problems summarized by Nelson H. F. Beebe.
5510
5511 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
5512 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
5513
5514 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
5515 nodist_PROGRAMS, since we don't need to actually compile the
5516 example if we're just doing a plain 'make'. This avoids bothering
5517 the installer unnecessarily about problems due to weird C++
5518 compilers.
5519
5520 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
5521
5522 More portability fixes for problems summarized by Nelson H. F. Beebe.
5523
5524 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
5525 than #include "...", and compile with -I'.'. The old method was
5526 not portable, according to Posix and the C standard, and it does
5527 not work with Sun C 5.7, where previous #line directives affect
5528 the working directory used in later #include "..." directives.
5529
5530 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5531
5532 Various DJGGP specific issues in /djgpp
5533
5534 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
5535
5536 More portability fixes for problems summarized by Nelson H. F. Beebe.
5537
5538 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
5539 '#include <map>' works and that you can apply ++ to iterators.
5540
5541 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 Work around portability problems summarized by Nelson H. F. Beebe in
5544 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
5545
5546 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5547 that '#include <string>' works.
5548
5549 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
5550 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
5551 "warning: sorry: semantics of inline function static data `const
5552 unsigned char translate_table[262]' are wrong (you'll wind up with
5553 multiple copies)".
5554
5555 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
5556 or, xor to not_, and_, or_, and xor_, respectively. This works
5557 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
5558 random system header somewhere that includes the equivalent of
5559 <iso646.h>.
5560
5561 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
5562 -E" works; it apparently doesn't work with PathScale EKO Compiler
5563 Suite Version 2.0.
5564
5565 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
5566
5567 During deterministic GLR operation, user actions should be able to
5568 influence the parse by changing yychar. To make this easier to fix and
5569 to make glr.c easier to evolve in general, don't maintain yytoken in
5570 parallel with yychar; just compute yytoken when needed.
5571 * tests/glr-regression.at (Incorrect lookahead during deterministic
5572 GLR): Check that setting yychar in a user action has the intended
5573 effect.
5574 * data/glr.c (yyGLRStack): Remove yytokenp member.
5575 (yyclearin): Don't set *yytokenp.
5576 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
5577 yychar rather than *yytokenp to determine the current lookahead.
5578 Compute yytoken locally when needed.
5579 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
5580 point to.
5581
5582 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
5583 after `--report' documentation.
5584
5585 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
5586
5587 * src/parse-gram.y (grammar_declaration): Location of printer
5588 symbol is @1, not list->location. Bug reported by twlevo.
5589 * tests/input.at (Incompatible Aliases): Adjust to above change.
5590
5591 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
5592
5593 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
5594 all the test at once. This makes the output easier to read in the
5595 normal case.
5596
5597 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
5598 got from <http://bro-ids.org/download.html>. The bug is that
5599 when two actions appeared in succession, the second one was
5600 scanned before the first one was added to the grammar rule
5601 as a midrule action. Bison then output the incorrect warning
5602 "parse.y:905.17-906.36: warning: unused value: $3".
5603 * src/parse-gram.y (BRACED_CODE, action): These are no longer
5604 associated with a value.
5605 (rhs): Don't invoke grammar_current_rule_action_append.
5606 (action): Invoke it here instead.
5607 * src/reader.c (grammar_midrule_action): Now extern.
5608 (grammar_current_rule_action_append): Don't invoke
5609 grammar_midrule_action; that is now the scanner's job.
5610 * src/reader.h (last_string, last_braced_code_loc):
5611 (grammar_midrule_action): New decls.
5612 * src/scan-gram.l (last_string): Now extern, sigh.
5613 (last_braced_code_loc): New extern variable.
5614 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
5615 rule already has an action.
5616 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
5617 * tests/input.at (AT_CHECK_UNUSED_VALUES):
5618 Add some tests to check that the above changes fixed the bug.
5619
5620 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
5621
5622 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
5623 All used changed. Check whether the symbol has a destructor,
5624 not whether it is typed.
5625 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
5626 that the values are still reported as unused. All line numbers
5627 adjusted.
5628
5629 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
5630
5631 Work around a bug in bro 0.8, which underparenthesizes its
5632 definition of YYLLOC_DEFAULT.
5633 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
5634 their arguments.
5635 * data/lalr1.cc: Likewise.
5636 * data/yacc.cc: Likewise.
5637
5638 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
5639
5640 Work around a bug in Pike 7.0, and give the Pike folks a
5641 better way to override the usual int widths.
5642 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
5643 user can override the types.
5644 (short): #undef, to work around a bug in Pike 7.0.
5645 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
5646 (union yyalloc.yyss): Use yytype_int16 rather than short.
5647 All uses changed.
5648 (yysigned_char): Remove.
5649 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
5650 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
5651 * tests/regression.at (Web2c Actions): Adjust to above changes.
5652
5653 * src/reader.c (check_and_convert_grammar): New function.
5654 (reader): Close the input file even if something went wrong during
5655 parsing. Minor file descriptor leak reported by twlevo.
5656
5657 * src/assoc.c (assoc_to_string): Use a default: abort (); case
5658 to pacify gcc -Wswitch-default.
5659 * src/scan-gram.l (adjust_location): Use a default: break; case
5660 to pacify gcc -Wswitch-default.
5661 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
5662 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
5663 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
5664 Move these decls to scan-skel.l, since they don't need to be
5665 visible elsewhere.
5666 * src/scan-skel.l: Accept the above decls.
5667 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
5668 is used.
5669
5670 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
5671
5672 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
5673 since we don't want to insist on a version number at the start
5674 of the changelog every time.
5675 * Makefile.maint: Sync from coreutils a bit better.
5676 (sc_trailing_blank): Renamed from sc_trailing_space.
5677 All uses changed.
5678 (sc_no_if_have_config_h, sc_require_config_h):
5679 (sc_prohibit_assert_without_use): New rules.
5680 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
5681 (sc_dd_max_sym_length): Fix leading spaces in rule.
5682 (sc_system_h_headers): Prefix with @.
5683 (sc_useless_cpp_parens, m4-check): Output line numbers.
5684 (changelog-check): Allow version only in head.
5685 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
5686 satisfy new Makefile.maint rule.
5687 * data/glr.c: Likewise.
5688 * data/glr.cc: Likewise.
5689 * data/lalr1.cc: Likewise.
5690 * data/yacc.c: Likewise.
5691 * lib/ebitsetv.c: Likewise.
5692 * lib/lbitset.c: Likewise.
5693 * lib/subpipe.c: Likewise.
5694 * lib/timevar.c: Likewise.
5695 * src/system.h: Likewise.
5696 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
5697 * djgpp/Makefile.maint: Add copyright notice.
5698 * djgpp/README.in: Likewise.
5699 * djgpp/config.bat: Likewise.
5700 * djgpp/config.site: Likewise.
5701 * djgpp/config_h.sed: Likewise.
5702 * djgpp/djunpack.bat: Likewise.
5703 * djgpp/config.sed: Fix copyright notice to match standard format.
5704 * djgpp/subpipe.h: Likewise.
5705 * lib/bitsetv-print.c: Likewise.
5706 * lib/bitsetv.c: Likewise.
5707 * lib/subpipe.h: Likewise.
5708 * lib/timevar.c: Likewise.
5709 * lib/timevar.h: Likewise.
5710 * djgpp/subpipe.c: Use standard recipe for config.h.
5711 * lib/abitset.c: Likewise.
5712 * lib/bitset.c: Likewise.
5713 * lib/bitset_stats.c: Likewise.
5714 * lib/bitsetv-print.c: Likewise.
5715 * lib/bitsetv.c: Likewise.
5716 * lib/ebitsetv.c: Likewise.
5717 * lib/get-errno.c: Likewise.
5718 * lib/lbitset.c: Likewise.
5719 * lib/subpipe.c: Likewise.
5720 * lib/timevar.c: Likewise.
5721 * lib/vbitset.c: Likewise.
5722 * tests/local.at: Likewise.
5723 * src/scan-gram.l: Don't include verify.h, since system.h does
5724 that for us.
5725 * .x-sc_require_config_h: New file.
5726 * .x-sc_unmarked_diagnostics: New file.
5727
5728 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
5729
5730 Be a bit more systematic about using 'abort'.
5731 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
5732 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
5733 Put 'default: abort ();' before some other case, to satisfy older
5734 pedantic compilers.
5735 * lib/bitset_stats.c (bitset_stats_init): Likewise.
5736 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
5737 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
5738 * src/conflicts.c (resolve_sr_conflict): Likewise.
5739 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
5740 (get_decision_str, get_orientation_str, get_node_alignment_str):
5741 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
5742 (get_linestyle_str, get_arrowstyle_str): Likewise.
5743 * src/conflicts.c (resolve_sr_conflict):
5744 Use a default case rather than one for the one remaining enum
5745 value, to catch invalid enum values as well.
5746 * src/lalr.c (set_goto_map, map_goto):
5747 Prefer "assert (FOO);" to "if (!FOO) abort ();".
5748 * src/nullable.c (nullable_compute, token_definitions_output):
5749 Likewise.
5750 * src/reader.c (packgram, reader): Likewise.
5751 * src/state.c (transitions_to, state_new, state_reduction_find):
5752 Likewise.
5753 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
5754 (symbol_pack): Likewise.
5755 * src/tables.c (conflict_row, pack_vector): Likewise.
5756 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
5757 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
5758 * src/system.h: Don't include <assert.h>.
5759 (assert): New macro.
5760
5761 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
5762 (Destructor Decl, Parser Function, Pure Calling):
5763 Describe rules for braces inside C code more carefully.
5764
5765 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
5766
5767 Fix some porting glitches found by Nelson H. F. Beebe.
5768 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
5769 compilers that don't understand that abort () does not return.
5770 * src/state.c (transitions_to): Likewise.
5771 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5772 that '#include <cstdlib>' works.
5773 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
5774 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
5775 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
5776 for the benefit of some pre-C99 compilers.
5777
5778 * bootstrap: Undo changes to gnulib files that autoreconf made.
5779
5780 Minor fixups to get 'make maintainer-check' to work.
5781 * configure.ac: Don't use -Wnested-externs, as it's incompatible
5782 with the new verify.h implementation.
5783 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
5784 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
5785 * data/yacc.c (YYUSE): Likewise.
5786 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
5787 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
5788 * src/parse-gram.y (declaration): Don't pass a string constant
5789 to a function that expects char *, since GCC might complain
5790 about the constant value.
5791 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
5792 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
5793 before #defining them.
5794 * tests/glr-regression.at
5795 (Incorrectly initialized location for empty right-hand side in GLR):
5796 In yyerror, use the msg arg.
5797 (Corrupted semantic options if user action cuts parse):
5798 (Incorrect lookahead during deterministic GLR):
5799 (Incorrect lookahead during nondeterministic GLR):
5800 Don't name a local var 'index'; it shadows string.h's 'index'.
5801
5802 2006-01-19 Akim Demaille <akim@epita.fr>
5803
5804 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
5805 location, not just parts of it.
5806
5807 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
5808
5809 * NEWS: Document the fact that multiple %unions are now allowed.
5810 * doc/bison.texinfo (Union Decl): Likewise.
5811 * TODO: This feature is now implemented, so remove it from
5812 the wishlist.
5813
5814 * Makefile.maint: Merge with coreutils Makefile.maint.
5815 (CVS_LIST): Use build-aux version if available.
5816 (VERSION_REGEXP): New macro.
5817 (syntax-check-rules): Add sc_no_if_have_config_h,
5818 sc_prohibit_assert_without_use, sc_require_config_h,
5819 sc_useless_cpp_parens.
5820 (sc_obsolete_symbols): Check for O_NDELAY.
5821 (sc_dd_max_sym_length): Track coreutils.
5822 (sc_unmarked_diagnostics): Look in all files, not just *.c.
5823 (sc_useless_cpp_parens): New rule.
5824 (news-date-check): Look for version or today's date.
5825 (changelog-check): Don't require version number near head.
5826 (copyright-check): Use current year instead of hardwiring 2005.
5827 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
5828 (announcement): Add --gpg-key-ID.
5829
5830 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
5831 with "file system".
5832
5833 Avoid undefined behavior that addressed just before the start of an
5834 array. Problem reported by twlevo.
5835 * src/reader.c (packgram): Prepend a new sentinel before ritem.
5836 * src/lalr.c (build_relations): Rely on new sentinel.
5837 * src/gram.c (gram_free): Adjust to new sentinel.
5838
5839 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
5840
5841 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
5842 yylookaheadNeeds. All uses updated.
5843 (yysplitStack): Rename local yynewLookaheadStatuses to
5844 yynewLookaheadNeeds.
5845 * data/glr-regression.at (Incorrect lookahead during nondeterministic
5846 GLR): In comments, change `lookahead status' to `lookahead need'.
5847
5848 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5849
5850 * data/glr.c (yysplitStack): A little stylistic rewrite.
5851
5852 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5853
5854 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
5855
5856 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
5857
5858 * doc/bison.texinfo: Fix some typos.
5859 (GLR Semantic Actions): New subsection discussing special
5860 considerations because GLR semantic actions might be deferred.
5861 (Actions): Mention look-ahead usage of yylval.
5862 (Actions and Locations): Mention look-ahead usage of yylloc.
5863 (Special Features for Use in Actions): Add YYEOF entry and mention it
5864 in the yychar entry.
5865 In the yychar entry, remove mention of the local yychar case (pure
5866 parser) since this is irrelevant information when writing semantic
5867 actions and since it's already discussed in `Table of Symbols' where
5868 yychar is otherwise described as an external variable.
5869 In the yychar entry, don't call it the `current' look-ahead since it
5870 isn't when semantic actions are deferred.
5871 In the yychar and yyclearin entries, add note about deferred semantic
5872 actions.
5873 Add yylloc and yylval entries discussing look-ahead usage.
5874 (Look-Ahead Tokens): When discussing yychar, don't call it the
5875 `current' look-ahead, and do mention yylval and yylloc.
5876 (Error Recovery): Cross-reference `Action Features' when mentioning
5877 yyclearin.
5878 (Table of Symbols): In the yychar entry, don't call it the `current'
5879 look-ahead.
5880 In the yylloc and yylval entries, mention look-ahead usage.
5881
5882 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5883
5884 * tests/glr-regression.at: Update copyright year to 2006.
5885
5886 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5887
5888 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
5889 use during nondeterministic operation to track which stacks have
5890 actually needed the current lookahead.
5891 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
5892 Allocate, deallocate, resize, and otherwise shuffle space for
5893 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
5894 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
5895 appropriately during nondeterministic operation.
5896 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
5897 members to store the current lookahead to be used by the deferred
5898 user action.
5899 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
5900 from which the RHS is taken. Set the lookahead members of the new
5901 yySemanticOption according to the lookahead status for stack yyk.
5902 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
5903 yyaddDeferredAction.
5904 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
5905 members of yySemanticOption before invoking yyuserAction, and then set
5906 them back to their current values afterward.
5907 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
5908 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
5909 * tests/glr-regression.at: Remove `.' from the ends of recent test case
5910 titles for consistency.
5911 (Leaked merged semantic value if user action cuts parse): In order to
5912 suppress lint warnings, use arguments in merge function, and assign
5913 char value < 128 in main.
5914 (Incorrect lookahead during deterministic GLR): New test case.
5915 (Incorrect lookahead during nondeterministic GLR): New test case.
5916
5917 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5918
5919 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
5920 !yyvaluep as signal that no semantic value is available to print.
5921 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
5922 to print a semantic value.
5923
5924 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5925
5926 * tests/glr-regression.at: For consistency with my newer test cases,
5927 don't thank myself.
5928
5929 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5930
5931 * data/glr.c (yyresolveValue): When merging semantic options, if at
5932 least one user action succeeds but a later one cuts the parse, then
5933 destroy the semantic value before returning rather than leaking it.
5934 (yyresolveStates): If a user action cuts the parse and thus
5935 yyresolveValue fails, ignore the (unset) semantic value rather than
5936 corrupting the yyGLRState, and empty the semantic options list since
5937 the user actions should have called all necessary destructors.
5938 Simplify code with YYCHK.
5939 * tests/glr-regression.at (Corrupted semantic options if user action
5940 cuts parse): New test case.
5941 (Undesirable destructors if user action cuts parse): New test case.
5942 Before applying any of this patch, this test case never actually failed
5943 for me... but only because the corrupted semantic options usually
5944 masked this bug.
5945 (Leaked merged semantic value if user action cuts parse): New test
5946 case.
5947
5948 2006-01-05 Akim Demaille <akim@epita.fr>
5949
5950 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
5951
5952 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
5953
5954 * data/c.m4 (b4_c_modern): New macro, with a new provision for
5955 _MSC_VER. Problem reported by Cenzato Marco.
5956 (b4_c_function_def): Use it.
5957 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
5958 b4_c_modern.
5959 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
5960 than rolling our own.
5961
5962 2006-01-04 Akim Demaille <akim@epita.fr>
5963
5964 Also warn about non-used mid-rule values.
5965 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
5966 member.
5967 (symbol_list_new): Adjust.
5968 * src/reader.c (symbol_typed_p): New.
5969 (grammar_rule_check): Use it.
5970 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
5971 Check its rule.
5972 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
5973 Use it.
5974 * tests/actions.at (Exotic Dollars): Adjust.
5975
5976 2006-01-04 Akim Demaille <akim@epita.fr>
5977
5978 * src/reader.c (grammar_midrule_action): If $$ is set in a
5979 mid-rule, move the `used' bit to its lhs.
5980 * tests/input.at (Unused values): New.
5981 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
5982
5983 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
5984
5985 * doc/bison.texinfo (Bison Options): Say more accurately what
5986 --yacc does.
5987 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
5988 about declarations in the grammar when in Yacc mode, as POSIX does
5989 not require a diagnostic when the grammar uses extensions.
5990
5991 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
5992
5993 Warn about dubious constructions like "%token T T".
5994 Reported by twlevo.
5995 * src/symtab.h (struct symbol.declared): New member.
5996 * src/symtab.c (symbol_new): Initialize it to false.
5997 (symbol_class_set): New arg DECLARING, specifying whether
5998 this is a declaration that we want to warn about, if there
5999 is more than one of them. All uses changed.
6000
6001 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
6002 Allow multiple %union directives, whose contents concatenate.
6003 * src/parse-gram.y (grammar_declaration): Likewise.
6004 Use muscle_code_grow, so that we don't need stype_line any more.
6005 All uses changed.
6006
6007 * src/muscle_tab.c (muscle_grow): Fix comment.
6008
6009 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
6010 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
6011 Update copyright year to 2006.
6012
6013 2006-01-03 Akim Demaille <akim@epita.fr>
6014
6015 Have glr.cc pass (some of) the calc.at tests.
6016 * data/glr.cc (b4_parse_param_orig): New.
6017 (b4_parse_param): Improve its definition, and bound it more
6018 clearly in the skeleton.
6019 (b4_epilogue): Append, instead of prepending, in order to keep
6020 #line consistency.
6021 Simplify the generation of auxiliary functions: locations and
6022 purity are mandated.
6023 (b4_global_tokens_and_yystype): Honor it.
6024 * data/location.cc (c++.m4): Don't include it.
6025 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
6026 and AT_SKEL_CC_IF.
6027 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
6028 AT_LALR1_CC_IF.
6029 Be sure to initialize the first position's filename.
6030 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
6031 mandated anyway.
6032 (AT_CHECK_CALC_GLR_CC): New.
6033 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
6034
6035 2006-01-02 Akim Demaille <akim@epita.fr>
6036
6037 * src/output.c (output_skeleton): Don't hard wire the inclusion of
6038 c.m4.
6039 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
6040 * data/glr.cc: Do not include stack.hh.
6041
6042 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6043
6044 * data/glr.c: Reformat whitespace with tabs.
6045 (b4_lpure_formals): Remove this unused m4 macro.
6046 * tests/cxx-type.at: Reformat whitespace with tabs.
6047 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
6048 since it's a member. Rename type to isNterm for clarity.
6049
6050 2005-12-29 Akim <akim@sulaco.local>
6051
6052 Let glr.cc catch up with symbol_value_print.
6053 * data/glr.cc (b4_yysymprint_generate): Replace by...
6054 (b4_yy_symbol_print_generate): this.
6055 (yy_symbol_print, yy_symbol_value_print): Declare them.
6056
6057 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
6058
6059 * src/location.h (boundary): Note that a line or column equal
6060 to INT_MAX indicates an overflow.
6061 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
6062 (rule_length_overflow, increment_rule_length, add_column_width):
6063 New functions.
6064 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
6065 (<SC_BRACED_CODE>"}"):
6066 Use increment_rule_length rather than incrementing it by hand.
6067 (adjust_location, handle_syncline): Diagnose overflow.
6068 (handle_action_dollar, handle_action_at):
6069 Fix bug with monstrosities like $-2147483648.
6070 Remove now-unnecessary checks.
6071 (scan_integer): Verify assumptions and remove now-unnecessary checks.
6072 (convert_ucn_to_byte): Verify assumptions.
6073 (handle_syncline): New arg LOC. All callers changed.
6074 Don't store through a value derived from char const * pointer.
6075
6076 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
6077 GCC warnings.
6078
6079 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
6080
6081 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
6082 Remove unnecessary forward static decls.
6083
6084 2005-12-27 Akim Demaille <akim@epita.fr>
6085
6086 * src/reader.c (grammar_current_rule_check): Also check that $$
6087 is used.
6088 Take the rule to check as argument, hence rename as...
6089 (grammar_rule_check): this.
6090 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
6091 Rename as...
6092 (grammar_rule_begin, grammar_rule_end): these, for consistency.
6093 (grammar_midrule_action, grammar_symbol_append): Now static.
6094 * tests/torture.at (input): Don't rely on the default action
6095 being always performed.
6096 * tests/calc.at: "Set" $$ even when the action is "cut" with
6097 YYERROR or other.
6098 * tests/actions.at (Exotic Dollars): Instead of using unused
6099 values, check that the warning is issued.
6100
6101 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
6102
6103 * NEWS: Improve wording for unused-value warnings.
6104
6105 2005-12-22 Akim Demaille <akim@epita.fr>
6106
6107 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6108 (b4_yysymprint_generate): Rename as...
6109 (b4_yy_symbol_print_generate): this.
6110 Generate yy_symbol_print instead of yysymprint.
6111 Generate also yy_symbol_value_print, and use it.
6112
6113 2005-12-22 Akim Demaille <akim@epita.fr>
6114
6115 * NEWS: Warn about unused values.
6116 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6117 a `used' member.
6118 (symbol_list_n_get, symbol_list_n_used_set): New.
6119 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6120 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6121 * src/reader.c (grammar_current_rule_check): Check that values are
6122 used.
6123 * src/symtab.c (symbol_print): Accept 0.
6124 * tests/existing.at: Remove the type information.
6125 Empty the actions.
6126 Remove useless actions (beware of mid-rule actions: perl -000
6127 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6128 * tests/actions.at (Exotic Dollars): Use unused values.
6129 * tests/calc.at: Likewise.
6130 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6131 Likewise.
6132
6133 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6134 rule_useful_p.
6135
6136 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6137
6138 Undo 2005-12-01 tentative license wording change. The wording is
6139 still being reviewed by the lawyers, and we don't want to wait for
6140 them before publishing a test release. For now, revert to the
6141 previous wording.
6142 * NEWS: Undo 2005-12-01 change.
6143 * data/glr.c: Revert to previous license wording.
6144 * data/glr.cc: Likewise.
6145 * data/lalr1.cc: Likewise.
6146 * data/location.cc: Likewise.
6147 * data/yacc.c: Likewise.
6148
6149 * NEWS: Reword %destructor vs YYABORT etc.
6150 * data/glr.c: Use American spacing, for consistency.
6151 * data/glr.cc: Likewise.
6152 * data/lalr1.cc: Likewise.
6153 * data/yacc.c: Likewise.
6154 * data/yacc.c: Reformat comments slightly.
6155 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6156 for consistency. Fix some spelling errors and reword recently-included
6157 text slightly.
6158 * tests/cxx-type.at: Cast results of malloc, for C++.
6159
6160 2005-12-21 Joel E. Denny <address@hidden>
6161
6162 * tests/cxx-type.at: Construct a tree, count the parents of shared
6163 nodes, and free each node once and only once. Previously, the memory
6164 for semantic values was leaked instead.
6165
6166 2005-12-21 Joel E. Denny <address@hidden>
6167
6168 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6169 (yylval, yylloc): If pure, #define to yystackp->yyval and
6170 yystackp->yyloc similar to yychar and yynerrs.
6171 (yyparse): If pure, remove local yylval and yylloc. Add local
6172 yystackp to accommodate pure definitions of yylval and yylloc.
6173 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6174 yylvalp and yyllocp to &yylval and &yylloc.
6175 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6176 namespace. Previously, nerrs and char were missing, but lval and lloc
6177 weren't necessary.
6178 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6179 yylvalp and yyllocp parameters since, if pure, these are now always
6180 accessible through yystackp. If not pure, they are still accessible
6181 globally.
6182 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6183 `if (YYID (N))' to pacify lint.
6184
6185 2005-12-21 Akim Demaille <akim@epita.fr>
6186
6187 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6188 destroy the RHS symbols of a rule.
6189 * data/yacc.c (yylen): Initialize to 0.
6190 Keep its value to the number of items to possibly shift.
6191 In particular, a regular successful parse that ends on YYFINAL by
6192 a (internal) YYACCEPT must not have yylen != 0.
6193 (yyerrorlab, yyreturn): Pop the RHS.
6194 Reorder a bit to emphasize the `shifting' bits of code.
6195 (YYPOPSTACK): Now accept a number of items to pop.
6196 * data/lalr1.cc: Likewise.
6197 * data/glr.c: Formatting changes.
6198 Use goto instead of fall through.
6199 * doc/bison.texinfo (Destructor Decl): Complete.
6200
6201 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6202
6203 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6204 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6205 * djgpp/config.bat: Replace every occurence of the file name
6206 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6207 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6208 * djgpp/config.sed: Replace every occurence of the file name
6209 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6210 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6211 * djgpp/djunpack.bat: DJGPP specific file.
6212 * djgpp/fnchange.lst: DJGPP specific file.
6213 * djgpp/README.in: Add new information about how to unpack the bison
6214 source on MSDOS and other systems which have 8.3 file name restrictions
6215 using djunpack.bat and fnchange.lst.
6216
6217 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6218
6219 * bootstrap (build_cvs_prefix): Remove; unused.
6220 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6221 when getting gnulib.
6222
6223 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6224
6225 * data/glr.c: Reorder typedef declarations for structs to match order
6226 of struct declarations.
6227 Rename yystack everywhere to yystackp except in yyparse where it's not
6228 a pointer.
6229 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6230 consistency.
6231 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6232 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6233 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6234 lint.
6235
6236 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6237
6238 * tests/sets.at (Accept): Fix typos in regular expression used to
6239 sed out the final state number.
6240
6241 Work around portability problem on Solaris 10: flex-generated
6242 files include <stdio.h> before <config.h>, which messes up
6243 because the latter defines __EXTENSIONS__. Address the problem
6244 by creating two new little files that include <config.h> first,
6245 then include the flex-generated files. Rewrite everyone else
6246 to include <config.h> first, as well.
6247 * lib/timevar.c: Always include "config.h".
6248 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6249 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6250 (EXTRA_bison_SOURCES): New macro.
6251 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6252 * src/system.h: Don't include config.h.
6253 * src/LR0.c: Include <config.h> first.
6254 * src/assoc.c: Likewise.
6255 * src/closure.c: Likewise.
6256 * src/complain.c: Likewise.
6257 * src/conflicts.c: Likewise.
6258 * src/derives.c: Likewise.
6259 * src/files.c: Likewise.
6260 * src/getargs.c: Likewise.
6261 * src/gram.c: Likewise.
6262 * src/lalr.c: Likewise.
6263 * src/location.c: Likewise.
6264 * src/main.c: Likewise.
6265 * src/muscle_tab.c: Likewise.
6266 * src/nullable.c: Likewise.
6267 * src/output.c: Likewise.
6268 * src/parse-gram.y: Likewise.
6269 * src/print.c: Likewise.
6270 * src/print_graph.c: Likewise.
6271 * src/reader.c: Likewise.
6272 * src/reduce.c: Likewise.
6273 * src/relation.c: Likewise.
6274 * src/state.c: Likewise.
6275 * src/symlist.c: Likewise.
6276 * src/symtab.c: Likewise.
6277 * src/tables.c: Likewise.
6278 * src/uniqstr.c: Likewise.
6279 * src/vcg.c: Likewise.
6280
6281 * src/parse-gram.y: Fix minor problems uncovered by lint.
6282 (current_lhs, current_lhs_location): Now static.
6283 (current_assoc): Remove unused variable.
6284
6285 Cleanups so that Bison-generated parsers have less lint.
6286 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6287 Prepend /*ARGSUSED*/, for lint's sake.
6288 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6289 definition if 'lint' is defined.
6290 (YYID): New macro (or function, if lint).
6291 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6292 * data/yacc.c: Likewise.
6293 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6294 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6295 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6296 is C++ only.
6297 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6298 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6299 Use YYID(0) rather than 0, for lint.
6300 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6301 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6302
6303 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6304
6305 * tests/glr-regression.at
6306 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6307 Close memory leak reported by twlevo.
6308
6309 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6310
6311 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6312 all stacks.
6313 (yyparse): Iterate another stack in order to call user destructors.
6314 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6315 New test case.
6316 (Duplicated user destructor for lookahead): This test now is expected
6317 to succeed.
6318
6319 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6320
6321 * NEWS: Document the following change.
6322 * data/yacc.c: Say "parser skeleton" rather than "file", since
6323 it's no longer just a file.
6324 * data/glr.c: Grant a special exception for C GLR parsers, that
6325 reads like the already-existing exception for C LALR(1) parsers.
6326 * data/glr.cc: Likewise.
6327 * data/lalr1.cc: Likewise.
6328 * data/location.cc: Likewise.
6329 * data/yacc.c: Reword the "written by" statement to clarify that
6330 it was the parser skeleton, not the entire output file.
6331 * data/glr.c: Written by Paul Hilfinger.
6332 * data/glr.cc: Written by Akim Demaille.
6333 * data/lalr1.cc: Likewise.
6334
6335 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6336
6337 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6338 Fix typos in previous change that broke 'make check'.
6339 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6340 supported in C.
6341 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6342 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6343 We can revert this once things settle down.
6344
6345 * src/conflicts.c (conflicts_print): Don't print file name twice
6346 when %expect fails because there were no conflicts.
6347 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6348 change.
6349 * tests/conflicts.at (%expect not enough, %expect too much):
6350 (%expect with reduce conflicts): Adjust to new behavior.
6351
6352 2005-11-18 Akim Demaille <akim@epita.fr>
6353
6354 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6355 errors.
6356 * NEWS: Document this.
6357 * doc/bison.texinfo (Expect Decl): Likewise.
6358
6359 2005-11-16 Akim Demaille <akim@epita.fr>
6360
6361 Generalize the display of semantic values and locations in traces.
6362 * data/glr.c (yy_reduce_print): Fix indices (again).
6363 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6364 literal integers.
6365 * data/lalr1.cc (yyreduce_print): Rename as...
6366 (yy_reduce_print): this.
6367 Display values and locations.
6368 * data/yacc.c (yy_reduce_print): Likewise.
6369 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6370 (yysymprint): Move higher to be visible from yy_reduce_print).
6371 (yyparse): Adjust.
6372 * tests/calc.at: Adjust the expected length of the traces.
6373
6374 2005-11-14 Akim Demaille <akim@epita.fr>
6375
6376 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6377 from 1 to N, while values and location start at 0.
6378 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6379
6380 2005-11-14 Akim Demaille <akim@epita.fr>
6381
6382 * data/glr.c (yy_reduce_print): Fix the $ number.
6383
6384 2005-11-14 Akim Demaille <akim@epita.fr>
6385
6386 "Use" parse parameters.
6387 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6388 * data/glr.c, data/glr.cc: Use them.
6389 * data/glr.c (YYUSE): Have a C++ definition that supports
6390 non-pointer types.
6391
6392 2005-11-14 Akim Demaille <akim@epita.fr>
6393
6394 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6395
6396 2005-11-14 Akim Demaille <akim@epita.fr>
6397
6398 * data/glr.cc: New.
6399 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
6400
6401 2005-11-12 Akim Demaille <akim@epita.fr>
6402
6403 Let position and location be PODs.
6404 * data/location.cc (position::initialize, location::initialize): New.
6405 (position::position, location::location): Define only if
6406 b4_location_constructors is defined.
6407 * data/lalr1.cc (b4_location_constructors): Define it for backward
6408 compatibility.
6409 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6410
6411 2005-11-12 Akim Demaille <akim@epita.fr>
6412
6413 * data/lalr1.cc: Move the body of the ctor and dtor into the
6414 parser file (instead of the header).
6415 Wrap the implementations in a "namespace yy".
6416
6417 2005-11-12 Akim Demaille <akim@epita.fr>
6418
6419 Have glr.c include its header file when created.
6420 * data/glr.c (b4_shared_declarations): New.
6421 Output them verbatim in the parser if !%defines, otherwise
6422 output then in the header file, and include it instead.
6423
6424 2005-11-11 Akim Demaille <akim@epita.fr>
6425
6426 * data/glr.c: Comment changes.
6427
6428 2005-11-11 Akim Demaille <akim@epita.fr>
6429
6430 When yydebug, report semantic and location values for reductions.
6431 * data/glr.c (yy_reduce_print): Report the semantic values and the
6432 locations.
6433 (YY_REDUCE_PRINT): Adjust.
6434 (yyglrReduce): Use them.
6435 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6436 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6437 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6438 traces.
6439
6440 2005-11-10 Akim Demaille <akim@epita.fr>
6441
6442 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6443 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6444 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6445
6446 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6447
6448 * m4/cxx.m4, examples/Makefile.am: Don't build
6449 examples/calc++ if no C++ compiler is available. (trivial change)
6450
6451 2005-11-09 Akim Demaille <akim@epita.fr>
6452
6453 * src/scan-skel.l: Use a couple of asserts.
6454
6455 2005-11-03 Akim Demaille <akim@epita.fr>
6456
6457 In some (weird) cases, the final state number is incorrect.
6458 Reported by Alexandre Duret-Lutz.
6459 * src/LR0.c (state_list_append): Remove the computation of
6460 final_state.
6461 (save_reductions): Do it here.
6462 (get_state): Alpha conversion.
6463 (generate_states): Use a for loop.
6464 * src/gram.h (item_number_is_rule_number)
6465 (item_number_is_symbol_number): New.
6466 * src/state.c: Use assert.
6467 * src/system.h: Include assert.h.
6468 * tests/sets.at (Accept): New.
6469
6470 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6471
6472 * data/glr.c (yyfill): Adjust comment.
6473 (yyresolveAction): Initialize default location properly
6474 for empty right-hand sides.
6475 (yydoAction): Ditto.
6476 Add comment explaining apparently dead code.
6477 * tests/glr-regression.at
6478 (Incorrectly initialized location for empty right-hand side in GLR):
6479 New test.
6480
6481 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
6482
6483 * bootstrap (cleanup_gnulib): New function. Use it to clean up
6484 gnulib when interrupted. This fixes some race conditions and
6485 works around some portability problems (one noted by Paul
6486 Hilfinger).
6487
6488 2005-10-22 Akim <akim@epita.fr>
6489
6490 * Makefile.cfg: Adjust to config -> build-aux.
6491 Reported by twledo.
6492
6493 2005-10-21 Akim Demaille <akim@epita.fr>
6494
6495 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
6496 the %parse-params.
6497 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
6498 * data/yacc.c (b4_Pure_if): Rename as...
6499 (b4_yacc_pure_if): this.
6500 (YY_SYMBOL_PRINT, yyparse): Adjust.
6501 * doc/bison.texinfo: Formatting changes.
6502
6503 2005-10-21 Akim Demaille <akim@epita.fr>
6504
6505 Finish the transition config -> build-aux.
6506 * configure.ac, Makefile.am: Use build-aux.
6507 * config/prev-version, config/announce-gen, config/Makefile.am:
6508 Move to...
6509 * build-aux/prev-version, build-aux/announce-gen,
6510 * build-aux/Makefile.am: here.
6511
6512 2005-10-14 Akim Demaille <akim@epita.fr>
6513
6514 * examples/calc++/test: Use set -x only when VERBOSE.
6515
6516 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
6517
6518 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
6519 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
6520
6521 2005-10-13 Akim Demaille <akim@epita.fr>
6522
6523 * src/scan-skel.l: Output the base name parts of the parser and
6524 header file names.
6525 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
6526 additional checks.
6527 Use this to exercise C++ outputs in subdirs.
6528 Reported by Oleg Smolsky.
6529
6530 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
6531
6532 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
6533 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
6534 Problem reported by John P. Hartmann.
6535 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
6536 already defined it.
6537
6538 2005-10-12 Akim Demaille <akim@epita.fr>
6539
6540 * src/parse-gram.y (version_check): Exit 63 to please missing
6541 (stands for "version mismatch).
6542 * tests/input.at, doc/bison.texinfo: Adjust.
6543
6544 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
6545
6546 Work around portability problems with Visual Age C compiler
6547 (xlc and xlC_r) reported by John P. Hartmann.
6548 * data/location.cc (initial_column, initial_line): Remove.
6549 All uses replaced by 0 and 1.
6550 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
6551 that xlc complains about.
6552 * src/scan-skel.l (skel_wrap): Likewise.
6553 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
6554 as __STDC__.
6555 * data/yacc.c (YYMODERN_C): New macro, which also looks at
6556 __STDC_VERSION__. Use it everywhere instead of looking at
6557 __STDC__ and __cplusplus.
6558
6559 2005-10-10 Akim Demaille <akim@epita.fr>
6560
6561 * examples/calc++/test: Be quiet unless VERBOSE.
6562
6563 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
6564
6565 * data/c.m4 (yydestruct, yysymprint):
6566 Use YYUSE instead of casting to void.
6567 * data/glr.c (YYUSE): New macro.
6568 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6569 Use it instead of rolling our own.
6570 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6571 (YYCHK1):
6572 Use /*CONSTCOND*/ to suppress lint warnings.
6573 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6574 (YY_STACK_PRINT): Use 'false' not '0'.
6575 (YYUSE): New macro.
6576 (yysymprint_, yydestruct_): Use it instead of rolling our own.
6577 * data/yacc.c (YYUSE): New macro.
6578 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
6579 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
6580 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
6581
6582
6583 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
6584 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
6585
6586 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
6587
6588 Undo the parts of the unlocked-I/O change that substituted
6589 putc or puts for printf. This might hurt performance a bit,
6590 but some people prefer the printf style.
6591 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
6592 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
6593 All uses replaced by YYFPRINTF and YYDPRINTF.
6594 * data/yacc.c: Likewise.
6595 * lib/bitset.c (bitset_print): Likewise.
6596 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
6597 putc and puts.
6598 * lib/lbitset.c (debug_lbitset): Likewise.
6599 * src/closure.c (print_firsts, print_fderives): Likewise.
6600 * src/gram.c (grammar_dump): Likewise.
6601 * src/lalr.c (look_ahead_tokens_print): Likewise.
6602 * src/output.c (escaped_output): Likewise.
6603 (user_actions_output): Break apart two printfs.
6604 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
6605 * src/reduce.c (reduce_print): Likewise.
6606 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
6607 * src/system.h: Include unlocked-io.h rathe than stdio.h.
6608
6609 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6610 Use assignments rather than casts-to-void to suppress
6611 unused-variable warnings. This pacifies 'lint'.
6612 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
6613 unused-variable warnings.
6614
6615 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6616
6617 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6618
6619 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
6620
6621 Use unlocked I/O for a minor performance improvement on hosts like
6622 GNU/Linux and Solaris that support unlocked I/O. The basic idea
6623 is to use the gnlib unlocked-io module, and to prefer putc and
6624 puts to printf when either will work (since the latter doesn't
6625 come in an unlocked flavor).
6626 * bootstrap (gnulib_modules): Add unlocked-io.
6627 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
6628 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
6629 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
6630 and similarly for puts and putc and printf.
6631 * data/yacc.c: Likewise.
6632 * lib/bitset.c (bitset_print): Likewise.
6633 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
6634 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
6635 to printf.
6636 * lib/lbitset.c (debug_lbitset): Likewise.
6637 * src/closure.c (print_firsts, print_fderives): Likewise.
6638 * src/gram.c (grammar_dump): Likewise.
6639 * src/lalr.c (look_ahead_tokens_print): Likewise.
6640 * src/output.c (escaped_output): Likewise.
6641 (user_actions_output): Coalesce two printfs.
6642 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
6643 * src/reduce.c (reduce_print): Likewise.
6644 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
6645 * src/system.h: Include unlocked-io.h rather than stdio.h.
6646
6647 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
6648 this confuses xgettext.
6649
6650 2005-10-02 Akim Demaille <akim@epita.fr>
6651
6652 * bootstrap (gnulib_modules): Add strverscmp.
6653 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
6654 * m4/.cvsignore: Add strverscmp.m4.
6655 * src/parse-gram.y (%require): New token, new rule.
6656 (version_check): New.
6657 * src/scan-gram.l (%require): Adjust.
6658 * tests/input.at (AT_REQUIRE): New.
6659 Use it.
6660 * doc/bison.texinfo (Require Decl): New.
6661 (Calc++ Parser): Use %require.
6662
6663 2005-10-02 Akim Demaille <akim@epita.fr>
6664
6665 * data/location.cc: New.
6666
6667 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
6668 Akim Demaille <akim@epita.fr>
6669
6670 Make sure -odir/foo.cc creates dir/location.hh etc.
6671 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
6672 (spec_file_prefix, spec_verbose_file, spec_graph_file)
6673 (spec_defines_file): Now const.
6674 (dir_prefix): New.
6675 (short_base_name): Remove.
6676 * src/files.c: Adjust.
6677 (dirname.h): Include.
6678 (base_name): Don't prototype it.
6679 (finput): Remove, duplicates gram_in.
6680 (full_base_name, short_base_name): Replace by...
6681 (all_but_ext, all_but_tab_ext): these.
6682 (compute_base_names): Rename as...
6683 (compute_file_name_parts): this.
6684 Update to compute the new variables, including dir_prefix.
6685 Adjust dependencies.
6686 * src/output.c (prepare): Output them.
6687 * src/reader.c: Adjust to use gram_in, not finput.
6688 * src/scan-skel.l (@dir_prefix@): New.
6689
6690 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6691
6692 * lib/subpipe.c: New function end_of_output_subpipe() added
6693 to allow support for non-posix systems. This is a no-op function
6694 for posix systems.
6695
6696 * lib/subpipe.h: New function end_of_output_subpipe() added
6697 to allow support for non-posix systems. This is a no-op function
6698 for posix systems.
6699
6700 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
6701 handle the lack of pipe/fork functionality on non-posix systems.
6702
6703 * djgpp/Makefile.maint: DJGPP specific file.
6704
6705 * djgpp/README.in: DJGPP specific file.
6706
6707 * djgpp/config.bat: DJGPP specific configuration file.
6708
6709 * djgpp/config.sed: DJGPP specific configuration file.
6710
6711 * djgpp/config.site: DJGPP specific configuration file.
6712
6713 * djgpp/config_h.sed: DJGPP specific configuration file.
6714
6715 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
6716
6717 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
6718
6719 2005-10-02 Akim Demaille <akim@epita.fr>
6720
6721 * data/location.cc: New, extract from...
6722 * data/lalr1.cc: here.
6723 (location.hh): Include it after the user prologue, in case the
6724 filename type is defined by the user.
6725 Forward declation location and position before the pre-prologue.
6726 (yyresult_): Rename as...
6727 (yyresult): this, it's a local variable, not an attribute.
6728 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
6729
6730 2005-10-01 Akim Demaille <akim@epita.fr>
6731
6732 * examples/extexi: Restore the #line generation.
6733
6734 2005-09-30 Akim Demaille <akim@epita.fr>,
6735 Alexandre Duret-Lutz <adl@gnu.org>
6736
6737 Move the token type and YYSTYPE in the parser class.
6738 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
6739 (parser::token): New, from the moved free definition of tokens.
6740 (parser::semantic_value): Now a full definition instead of an
6741 indirection to YYSTYPE.
6742 (b4_post_prologue): No longer included in the header file, but
6743 in the implementation file.
6744 * doc/bison.texi (C+ Language Interface): Update.
6745 * src/parse-gram.y: Support unary %define.
6746 * tests/actions.at: Define global_tokens_and_yystype for backward
6747 compatibility until we update the tests.
6748 * tests/calc.at: Idem.
6749 (first_line, first_column, last_line, last_column): Define for lalr1.cc
6750 to simplify the code.
6751
6752 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
6753
6754 Port to SunOS 4.1.4, which lacks strtoul and strerror.
6755 Ah, the good old days! Problem reported by Peter Klein.
6756 * bootstrap (gnulib_modules): Add strerror, strtoul.
6757 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
6758 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
6759
6760 2005-09-29 Akim Demaille <akim@epita.fr>
6761
6762 * data/c.m4 (b4_error_verbose_if): New.
6763 * data/lalr1.cc: Use it.
6764 (YYERROR_VERBOSE_IF): Remove.
6765 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
6766 parser members, replaced by...
6767 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
6768 local variables.
6769 (yysyntax_error_): Takes the state number as argument.
6770 (yyreduce_print_): Use the argument yyrule, not the former
6771 attribute yyn_.
6772
6773 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
6774
6775 * bootstrap (gnulib_modules): Add verify.
6776 * lib/.cvsignore: Add verify.h.
6777 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
6778 * src/system.h (verify): Remove.
6779 Include verify.h instead.
6780 * src/tables.c (tables_generate): Use new API for 'verify'.
6781
6782 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
6783
6784 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
6785 local variables whose names begin with 'yy'.
6786 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
6787 Trivial changes from Joel E. Denny.
6788
6789 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
6790 it itself.
6791 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
6792 don't use alloca any more.
6793
6794 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
6795 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
6796 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
6797 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
6798 to match yacc.c, to test more hosts.
6799
6800 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
6801
6802 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
6803 doesn't affect behavior.
6804 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
6805 Solaris, AIX, MSC.
6806 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
6807 This works a bit better with glibc, if user code has already included
6808 stdlib.h.
6809 * doc/bison.texinfo (Bison Parser): Document that users can't
6810 arbitrarily use malloc and free for other purposes. Document
6811 that <alloca.h> and <malloc.h> might be included.
6812 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
6813 user must declare alloca.
6814
6815 * HACKING (release): Forwarn the Translation Project about
6816 stable releses.
6817
6818 2005-09-20 Akim Demaille <akim@epita.fr>
6819
6820 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
6821
6822 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
6823
6824 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
6825 (YYSTACK_ALLOC_MAXIMUM): Use it.
6826 (yysyntax_error): New function.
6827 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
6828 multiple syntax errors are reported, and alloca is being used.
6829 Instead, reallocate buffers twice as big each time, so that
6830 we waste at most half the allocated memory. Start with a small
6831 (128-byte) buffer that will suffice in most cases anyway.
6832 Use yysyntax_error to do most of the work.
6833
6834 * doc/bison.texinfo (Error Reporting, Table of Symbols):
6835 yynerrs is the number of errors reported, not the number of
6836 errors encountered.
6837
6838 * tests/glr-regression.at (Duplicated user destructor for lookahead):
6839 Mark it as expected to fail.
6840 Cast result of malloc; problem reported by twlevo@xs4all.nl.
6841 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
6842 Don't start user-code symbols with "yy", to avoid name space problems.
6843
6844 2005-09-19 Akim Demaille <akim@epita.fr>
6845
6846 Remove the traits, failed experiment.
6847 It never proved useful, and anyway because of the current
6848 definition, it was not possible to have several specialization of
6849 this traits, making it useless.
6850 * data/lalr1.cc (yy:traits): Remove.
6851 Inline its definitions in the parser class.
6852
6853 2005-09-19 Akim Demaille <akim@epita.fr>
6854
6855 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
6856 least Mac OSX with a /usr/local install of gettext.
6857
6858 2005-09-19 Akim Demaille <akim@epita.fr>
6859
6860 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
6861 and yytoken for similarity with the other skeletons.
6862
6863 2005-09-19 Akim Demaille <akim@epita.fr>
6864
6865 * NEWS, configure.ac: update version number to 2.1a.
6866
6867 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
6868
6869 * NEWS: Version 2.1.
6870
6871 * NEWS: Remove notice of yytname change, since it was never in an
6872 official release.
6873 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
6874 diagnostic.
6875 * src/output.c (prepare): Likewise.
6876 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
6877 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
6878 is not defined. This is an awful hack, but it's enough for now.
6879 All callers changed.
6880 * tests/glr-regression-at (make_value): Args are const pointers now,
6881 to avoid GCC warning.
6882 (Duplicated user destructor for lookahead): New test. Currently
6883 skipped. It fails on my host but I'm not sure it'll always fail.
6884
6885 2005-09-16 Akim Demaille <akim@epita.fr>
6886
6887 * src/symtab.h (struct symbol): Declare the printer and destructor
6888 as const, to avoid accidental calls to free.
6889 (symbol_destructor_set, symbol_printer_set): Adjust.
6890 * src/symtab.c: Adjust.
6891
6892 2005-09-16 Akim Demaille <akim@epita.fr>
6893
6894 * data/c.m4 (b4_token_enums): New.
6895 (b4_token_defines): Rename as...
6896 (b4_token_enums_defines): this.
6897 (b4_token_defines): New, output only the #defines.
6898 * data/yacc.c, data/glr.c: Adjust.
6899 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
6900 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
6901 as default values.
6902
6903 2005-09-16 Akim Demaille <akim@epita.fr>
6904
6905 * data/lalr1.cc (yylex_): Remove, inline its code.
6906 (yyreport_syntax_error_): Remove, replaced by...
6907 (yysyntax_error_): this which returns a string and leaves to the
6908 caller the call to the users' error function.
6909 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
6910 Move from members of the parser object...
6911 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
6912 to local variables of the parse function.
6913
6914 2005-09-16 Akim Demaille <akim@epita.fr>
6915
6916 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
6917 since it's in Bison's name space.
6918
6919 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
6920
6921 * data/glr.c (yyresolveValue): Add default case to pacify
6922 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
6923
6924 * NEWS: Document when yyparse started to return 2.
6925 * doc/bison.texinfo (Parser Function): Document when yyparse
6926 returns 2.
6927
6928 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
6929 (b4_filename_type): Renamed back from b4_file_name_type. All uses
6930 changed.
6931 (class position): file_name -> filename (reverting). All uses changed.
6932
6933 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
6934
6935 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
6936 do anything if $@ exists. This reverts part of the 2005-07-07
6937 patch.
6938
6939 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
6940
6941 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
6942 contains obsolete information and isn't worth distributing as a
6943 separate file anyway.
6944 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
6945 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
6946 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
6947 (yyparse): Abort if user code uses longjmp to throw an unexpected
6948 value.
6949
6950 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
6951
6952 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
6953 Suggested by twlevo@xs4all.nl.
6954
6955 * data/glr.c (YYCHK1): Do not assume YYE is in range.
6956 This avoids a diagnostic from gcc -Wswitch-enum.
6957 Problem reported by twlevo@xs4all.nl.
6958
6959 * doc/bison.texinfo: Don't use "filename", as per GNU coding
6960 standards. Use "file name" or "file" or "name", depending on
6961 the context.
6962 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
6963 not to hack/foo.tab.c.
6964 (Calc++ Top Level): 2nd arg of main is not const.
6965 * data/glr.c: b4_filename -> b4_file_name.
6966 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
6967 All uses changed.
6968 (class position): filename -> file_name. All uses changed.
6969 * data/yacc.c: b4_filename -> b4_file_name.
6970 * lib/bitset.h: filename -> file_name in local vars.
6971 * lib/bitset_stats.c: Likewise.
6972 * src/files.c: Likewise.
6973 * src/scan-skel.l ("@output ".*\n): Likewise.
6974 * src/files.c (file_name_split): Renamed from filename_split.
6975 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
6976
6977 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
6978
6979 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
6980 to accommodate latest gnulib.
6981
6982 * tests/glr-regression.at (Duplicate representation of merged trees):
6983 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
6984
6985 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
6986 needed.
6987
6988 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
6989
6990 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
6991 All uses changed. Invoke user destructor after an error during a
6992 split parse (trivial change from Joel E. Denny).
6993
6994 * tests/glr-regression.at
6995 (User destructor after an error during a split parse): New test case.
6996 Problem reported by Joel E. Denny in:
6997 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
6998
6999 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
7000
7001 * README-cvs: Give URLs for recommended tools.
7002 Mention Gzip version problem, and bootstrapping issues.
7003 Remove troubleshooting section, as it's somewhat obsolete.
7004
7005 * bootstrap (no_cache): New var, to accommodate different wget
7006 variants. Use it instead of '-C off'. Problem reported by
7007 twlevo@xs4all.nl.
7008
7009 * data/glr.c (yydestroyStackItem): New function.
7010 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
7011 debugging information. Problem reported by Joel E. Denny.
7012
7013 2005-08-25 Akim Demaille <akim@epita.fr>
7014
7015 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
7016
7017 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
7018
7019 * data/glr.c (yyrecoverSyntaxError, yyreturn):
7020 Don't invoke destructor on unresolved entries.
7021 * tests/glr-regression.at
7022 (User destructor for unresolved GLR semantic value): New test case.
7023 Problem reported by Joel E. Denny in:
7024 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
7025
7026 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
7027
7028 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
7029 Add strnlen.c.
7030 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
7031 lib-prefix.m4, po.m4.
7032
7033 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
7034 in yydestruct diagnostic, since it might not be an error.
7035 Problem reported by Joel Denny near end of
7036 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7037 * data/lalr1.cc (yyerturn): Likewise.
7038 * data/yacc.c (yyreturn): Likewise.
7039 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
7040
7041 * src/files.c: Remove obsolete FIXME comment.
7042
7043 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
7044 with the other templates, and to fix bogus run-on messages such
7045 as the one reported at the end of
7046 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7047 All callers changed to avoid the newline.
7048 (yyprocessOneStack): Output two lines rather than one, to accommodate
7049 the above change. This changes the debug output format slightly.
7050
7051 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
7052 reported by Joel E. Denny in
7053 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
7054 (trivial change).
7055 * tests/glr-regression.at (Duplicate representation of merged trees):
7056 New test, from Joel E. Denny in:
7057 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
7058 * THANKS: Add Joel E. Denny.
7059
7060 * configure.ac (AC_INIT): Bump to 2.0c.
7061
7062 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
7063
7064 * NEWS: Version 2.0b.
7065
7066 * Makefile.am (SUBDIRS): Put examples before tests, so that
7067 "make check" doesn't finish with "All 1 tests passed".
7068
7069 * tests/regression.at (Token definitions): Don't rely on
7070 AT_PARSER_CHECK for data that contains backslashes. It currently
7071 uses 'echo', and 'echo' isn't portable if its argument contains
7072 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
7073 that the byte '\0xff' is not printable in the C locale; it is,
7074 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
7075 not printable, so use '\0x81' to test.
7076
7077 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
7078 version of GCC, since the macro is used with non-GCC compilers.
7079
7080 Fix core dump reported by Pablo De Napoli in
7081 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
7082 * tests/regression.at (Invalid inputs with {}): New test.
7083 * src/parse-gram.y (token_name): Translate type before using
7084 it as an index.
7085
7086 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
7087 the user's name space. All uses changed to __attribute__
7088 ((__unused__)).
7089 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
7090 Add __attribute__ ((__noreturn__)).
7091
7092 * etc/clcommit: Remove. We weren't using it, and it failed
7093 "make maintainer-distcheck".
7094 * Makefile.maint: Merge from coreutils.
7095 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
7096 (syntax-check-rules): Change list of rules as described below.
7097 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
7098 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
7099 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
7100 (sc_trailing_space): New rules.
7101 (sc_xalloc_h_in_src): Remove.
7102 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
7103 (sc_space_tab, sc_error_exit_success, sc_changelog):
7104 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7105 (makefile-check, po-check, author_mark_check):
7106 (makefile_path_separator_check, copyright-check):
7107 Use grep -n, to make it easier to find violations.
7108 Use CVS_LIST and CVS_LIST_EXCEPT.
7109 (header_regexp, h_re): Remove.
7110 (dd_c): New macro.
7111 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7112 (my-distcheck): Use more-modern GCC flags.
7113 (signatures, %.asc): Remove.
7114 (rel-files, announcement): Remove signatures.
7115 Restore old updating code, even though we don't use it, so
7116 that we're the same as coreutils.
7117 (alpha, beta, major): Depend on news-date-check.
7118 Make the upload commands.
7119
7120 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7121 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7122 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7123 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7124 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7125 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7126 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7127 * tests/sets.at: Likewise.
7128
7129 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7130 we comment out the Autoconf version number.
7131 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7132 it's error-prone and "make maintainer-distcheck" rejects it.
7133
7134 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7135 Indent calls to "error" to pacify "make maintainer-distcheck",
7136 when the calls are not intended to be translated.
7137 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7138
7139 * src/Makefile.am (DEFS): Use +=, to pacify
7140 "make maintainer-distcheck".
7141 (bison_SOURCES): Add scan-skel.h.
7142 (sc_tight_scope): New rule, from coreutils.
7143
7144 * src/files.c (src_extension, header_extension):
7145 Now static, not extern.
7146 * src/getargs.c (short_options): Likewise.
7147 * src/muscle_tab.c (muscle_table): Likewise.
7148 * src/parse-gram.y (current_class, current_type, current_prec):
7149 Likewise.
7150 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7151 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7152 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7153 void, to avoid warning when NLS is disabled.
7154 * src/output.c: Include scan-skel.h.
7155 (scan_skel): Remove decl, since scan-skel.h does this.
7156 (output_skeleton):
7157 Indent calls to "error" to pacify "make maintainer-distcheck".
7158 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7159 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7160 "make maintainer-distcheck".
7161 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7162 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7163 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7164 (skel_lex_destroy, scan_skel): Move these decls to...
7165 * src/scan-skel.h: New file.
7166 * src/uniqstr.c (uniqstr_assert):
7167 Indent calls to "error" to pacify "make maintainer-distcheck".
7168
7169 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7170 not @VAR@.
7171
7172 * tests/torture.at: Revamp to avoid misuse of atoi that
7173 "make maintainer-distcheck" complained about.
7174
7175 * examples/extexi (message): Don't print a message more than once,
7176 and omit line-number decoration that makes Emacs compile think
7177 that informative messages are worth worrying about.
7178
7179 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7180
7181 * configure.ac: Update version number.
7182
7183 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7184 accidentally.
7185 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7186 autogenerated by the maintainer.
7187 * examples/calc++/.cvsignore: Add *.yy.
7188
7189 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7190 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7191 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7192
7193 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7194
7195 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7196 from maintainer-distcheck about casting the argument of 'free'.
7197
7198 * NEWS: Mention recent yytname changes.
7199 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7200
7201 * bootstrap: For translations that have not yet been upgraded to
7202 the new runtime-po domain, prime the pump by extracting the
7203 relevant strings from the obsolete translations. This code can be
7204 removed once the bison-runtime domain has been translated by each
7205 team.
7206
7207 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7208 now that token names are already quoted.
7209
7210 Fix problem reported by Anthony Heading.
7211 * data/glr.c (YYTOKEN_TABLE): New macro.
7212 (yytname): Define if YYTOKEN_TABLE.
7213 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7214 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7215 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7216 * src/output.c (prepare_symbols): Output token_table_flag.
7217
7218 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7219
7220 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7221 again if the first call fails.
7222
7223 * data/glr.c (yytnamerr): New function.
7224 (yyreportSyntaxError): Use it to dequote most string literals.
7225 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7226 with other skeletons. All uses changed.
7227 (yytnameerr_): New function.
7228 (yyreport_syntax_error): Use it to dequote most string literals.
7229 * data/yacc.c (yytnamerr): New function.
7230 (yyerrlab): Use it to decode most string literals.
7231 * doc/bison.texinfo (Decl Summary, Calling Convention):
7232 Clarify quoting convention of yytname.
7233 * src/output.c (prepare_symbols): Quote all names. This undoes
7234 the 2005-04-17 change, which is now accomplished (mostly) via
7235 changes in the parsers as described above.
7236 * tests/regression.at (Token definitions, Web2c Actions):
7237 Undo most 2005-04-17 change here, too.
7238
7239 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7240
7241 Fix more problems reported by twlevo@xs4all.nl.
7242 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7243 remove trailing spaces. This loses the exit status of ./types,
7244 and isn't needed since ./types shouldn't be emitting trailing
7245 spaces.
7246 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7247 as the stack isn't valid in that case.
7248
7249 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7250 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7251 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7252 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7253 is used.
7254 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7255 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7256 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7257 Likewise.
7258
7259 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7260 overly-picky compilers that reject 'char *foo = "bar";'.
7261
7262 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7263 to FILE * parameter, not to stderr. This fixes a typo introduced
7264 in the 2005-07-12 change.
7265
7266 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7267 warnings from GCC 4.
7268
7269 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7270 (yyglrShiftDefer, yysplitStack):
7271 Remove unused parameters b4_pure_formals. All uses changed.
7272 (yyglrShift): Remove unused parameters b4_user_formals.
7273 All uses changed.
7274 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7275
7276 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7277
7278 Destructor cleanups and regularization among the three skeletons.
7279 * NEWS: Document the behavior changes.
7280 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7281 stack before failing, as the cleanup code will do it for us now.
7282 * data/lalr1.cc (yyerrlab): Likewise.
7283 * data/glr.c (yyparse): Pop everything off the stack before
7284 freeing it, so that destructors get called properly.
7285 * data/lalr1.cc (yyreturn): Likewise.
7286 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7287 This is more consistent.
7288 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7289 why destructors might be called. 1.875 -> 2.1.
7290 (Destructor Decl, Decl Summary, Table of Symbols):
7291 Some English-language cleanups for %destructor.
7292 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7293 Add output line for destructor of start symbol.
7294 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7295 because of that same extra output line.
7296
7297 * NEWS: Document minor wording changes in diagnostics of
7298 Bison-generated parsers.
7299 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7300 Remove unused formals. All uses changed.
7301 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7302 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7303 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7304 Rename yyoverflowab to yyexhaustedlab.
7305 When memory exhaustion occurs during syntax-error reporting,
7306 report it separately rather than in a single diagnostic; this
7307 eases translation.
7308 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7309 (Memory Exhausted): Renamed from Parser Stack Overflow.
7310 Revamp wording slightly to prefer "memory exhaustion".
7311 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7312
7313 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7314
7315 Add i18n support to the GLR skeleton. Partially fix the C++
7316 skeleton; a C++ expert needs to finish this. Remove debugging
7317 msgids; there's little point to having them translated, since they
7318 can be understood only by someone who can read the
7319 (English-language) source code.
7320
7321 Generate runtime-po/bison-runtime.pot automatically, so that we
7322 don't have to worry about garbage getting in that file. We'll
7323 make sure after the next official release that old msgids don't
7324 get lost. See
7325 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7326
7327 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7328 Now auto-generated.
7329 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7330 Fix typos in explanations of the runtime file.
7331 * bootstrap: Change gettext keyword from YYI18N to YY_.
7332 Use standard Makefile.in.in in runtime-po, since we'll arrange
7333 for backward-compatible bison-runtime.po files in a different way.
7334 * data/glr.c (YY_): New macro, from yacc.c.
7335 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7336 Translate messages intended for users.
7337 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7338 the wording in the other skeletons. We don't know that the memory
7339 is virtual.
7340 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7341 Use same method that yacc.c uses.
7342 Don't translate debugging messages.
7343 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7344 it doesn't work (yet), and requires C++ expertise to fix.
7345 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7346 Move defn to a more logical place, to be consistent with other
7347 skeletons.
7348 Don't translate debugging messages.
7349 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7350 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7351 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7352 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7353
7354 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7355 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7356 void, not int.
7357 * tests/glr-regression.at (Badly Collapsed GLR States):
7358 Likewise.
7359 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7360 yylex should return 0 at EOF rather than aborting.
7361
7362 Improve tests for stack overflow in GLR parser.
7363 Problem reported by twlevo@xs4all.nl.
7364 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7365 All uses removed.
7366 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7367 can handle the problem.
7368 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7369 (yyparse): New local variable yyresult to record the result.
7370 Use result of setjmp to set it, rather than storing itinto
7371 struct.
7372 (yyDone): Remove label.
7373 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7374 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7375 if YYABORT is used).
7376 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7377 yyparse status; put status > 1 into diagnostic.
7378 Check that status==2 works.
7379 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7380 Use exit status 3 for failure to open (which shouldn't happen).
7381
7382 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7383
7384 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7385 1 on syntax error; just let yyparse do its thing.
7386 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7387 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7388 (Exploding the Stack Size with Alloca):
7389 (Exploding the Stack Size with Malloc):
7390 Expect exit status 2, not 1, since the parser is supposed to blow
7391 its stack. Problem reported by twlevo@xs4all.nl.
7392
7393 * data/glr.c (yyparse): Don't assume that the initial calls
7394 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7395 Print a stack-overflow message and fail instead.
7396 Initialize the line-number information before creating the stack,
7397 so that the stack-overflow message can report line zero safely.
7398
7399 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7400
7401 Fix problems reported by twlevo@xs4all.nl.
7402 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7403 (yyuserMerge): Provide a default case if b4_mergers is empty.
7404 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7405 * tests/glr-regression.at
7406 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7407 Add casts to pacify C++ compilers.
7408 * tests/glr-regression.at (Improper merging of GLR delayed action
7409 sets): Declare yylex before using it.
7410 * tests/Makefile.am (maintainer-check-g++): Fix a stray
7411 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7412 test for valgrind; valgrind is independent of g++.
7413 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7414 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7415 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7416 Use a destructor, so that we can expand the stack. Change
7417 YYSTYPE to char * so that we can free it. Cast result of malloc.
7418
7419 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7420
7421 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7422 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7423
7424 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7425
7426 * PACKAGING: New file, suggested by Bruno Haible and taken from
7427 similar wording in gettext's PACKAGING file.
7428 * NEWS: Mention PACKAGING.
7429 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7430
7431 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7432
7433 * NEWS: Document recent i18n improvements.
7434 * bootstrap: Get runtime translations into runtime-po.
7435 Create runtime-po files automatically, if possible.
7436 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7437 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7438 does not infringe on the user's name space.
7439 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7440 * doc/bison.texinfo (Internationalization): Revamp the English
7441 and Texinfo syntax a bit, to try to make it clearer.
7442 (Bison Options, Option Cross Key): Mention --print-localedir.
7443 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7444 YYENABLE_NLS. Quote a bit more.
7445 * runtime-po/.cvsignore: New file.
7446 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7447 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7448 * runtime-po/quot.sed: Likewise.
7449 * runtime-po/boldquot.sed: Likewise.
7450 * runtime-po/en@quot.header: Likewise.
7451 * runtime-po/en@boldquot.header: Likewise.
7452 * runtime-po/insert-header.sin: Likewise.
7453 * runtime-po/remove-potcdate.sin: Likewise.
7454 * runtime-po/Makevars: Likewise.
7455 * runtime-po/LINGUAS: Likewise.
7456 * runtime-po/de.po: Likewise; we will rely on the translation project
7457 to maintain this, so "bootstrap" should get it.
7458 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
7459 its value.
7460 * src/main.c (main): Bind the bison-runtime domain, too.
7461
7462 2005-07-12 Bruno Haible <bruno@clisp.org>
7463
7464 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7465 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7466 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7467 * runtime-po: New directory.
7468 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7469 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7470 * runtime-po/Rules-quot: New file, copied from po/.
7471 * runtime-po/quot.sed: Likewise.
7472 * runtime-po/boldquot.sed: Likewise.
7473 * runtime-po/en@quot.header: Likewise.
7474 * runtime-po/en@boldquot.header: Likewise.
7475 * runtime-po/insert-header.sin: Likewise.
7476 * runtime-po/remove-potcdate.sin: Likewise.
7477 * runtime-po/Makevars: New file.
7478 * runtime-po/POTFILES.in: New file.
7479 * runtime-po/LINGUAS: New file.
7480 * runtime-po/bison-runtime.pot: New file.
7481 * runtime-po/de.po: New file.
7482 * m4/bison.m4: New file.
7483 * Makefile.am (SUBDIRS): Add runtime-po.
7484 (aclocaldir, aclocal_DATA): New variables.
7485 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
7486 Define aclocaldir.
7487 * src/getargs.c (usage): Document --print-localedir option.
7488 (PRINT_LOCALEDIR_OPTION): New enum item.
7489 (long_options): Add --print-localedir option.
7490 (getargs): Handle --print-localedir option.
7491 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
7492 (Internationalization): New section.
7493
7494 2005-07-12 Akim Demaille <akim@epita.fr>
7495
7496 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
7497 for consistency with the rest of the code.
7498 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
7499 Add separators.
7500
7501 2005-07-12 Akim Demaille <akim@epita.fr>
7502
7503 * src/parse-gram.y: Use %printer instead of YYPRINT.
7504
7505 2005-07-12 Akim Demaille <akim@epita.fr>
7506
7507 * src/symtab.h, src/symtab.c (symbol_print): New.
7508 * src/symlist.h, src/symlist.c (symbol_list_print): New.
7509 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
7510
7511 2005-07-12 Akim Demaille <akim@epita.fr>
7512
7513 * data/glr.c (b4_syncline): Fix (swap) the definitions of
7514 b4_at_dollar and b4_dollar_dollar.
7515
7516 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
7517
7518 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
7519 and Pennello's paper.
7520
7521 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
7522
7523 * data/yacc.c (yyparse): Undo previous patch. Instead,
7524 set yylsp[0] and yyvsp[0] only if the initial action
7525 sets yylloc and yylval, respectively.
7526
7527 * data/yacc.c (yyparse): In the initial action, set
7528 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
7529 This avoids the use of undefined variables if the initial
7530 action does not set yylloc and/or yylval.
7531
7532 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
7533
7534 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
7535 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
7536 Remove from CVS. These files are automatically generated.
7537 * examples/extexi: Clarify that this file is now part of Bison,
7538 not GNU M4, and that it works with any POSIX-compatible Awk.
7539 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
7540 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
7541 so that we also get calc++-parser.yy. Geneate it.
7542 Use $(AWK), not gawk, since any conforming Awk will do.
7543 Put comment before action, since older 'make' can't handle comment
7544 in action.
7545 $(BUILT_SOURCES): List all built sources, not just some of them.
7546 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
7547 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
7548 $($(calc_sources_generated)): Remove unnecessary test for existence
7549 of target. (This had a shell syntax error anyway; a stray "x".)
7550 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
7551 calc++-parser.yy.
7552 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
7553
7554 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
7555 implied by the other modules.
7556
7557 2005-07-06 Akim Demaille <akim@epita.fr>
7558
7559 Bind examples/calc++ to the package.
7560 * examples/calc++/Makefile: Remove, replaced by...
7561 * examples/calc++/Makefile.am: ... this new file.
7562 * examples/calc++/test: Remove input.
7563 * examples/calc++/compile: Remove.
7564 * examples/Makefile.am: New.
7565 * configure.ac, Makefile.am: Adjust.
7566 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
7567
7568 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
7569
7570 * data/glr.c (yyFail): Drastically simplify; since the format argument
7571 never had any % directives, we can simply pass it to yyerror.
7572 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
7573 be modified later, as that is the usual style in glr.c.
7574 Problems reported by Paul Hilfinger.
7575
7576 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
7577 and size overflow errors.
7578 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
7579 in case the user prolog sets feature-test macros like _GNU_SOURCE.
7580 (YYSIZEMAX): New macro.
7581 (yystpcpy): New function, taken from yacc.c.
7582 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
7583 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
7584 so that we don't have to maintain their signatures.
7585 (yyFail): Check for buffer overflow, by using vsnprintf rather
7586 than vsprintf. Allocate a bigger buffer if possible.
7587 Report an error if buffer allocation fails.
7588 (yyStackOverflow): New function.
7589 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
7590 the initialization was successful. It might fail if storage was
7591 exhausted.
7592 (yyexpandGLRStack): Add more checks for storage allocation failure.
7593 Use yyStackOverflow to report failures.
7594 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
7595 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
7596 Don't assume stack number fits in int.
7597 (yysplitStack): Check for storage allocation failure.
7598 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
7599 can print diagnostics on storage allocation failure. All callers
7600 changed.
7601 (yyresolveValue): Use yybool for boolean.
7602 (yyreportSyntaxError): Check for size-calculation overflow.
7603 This code is taken from yacc.c.
7604 (yyparse): Check for storage allocation errors when allocating
7605 the initial stack.
7606
7607 2005-07-05 Akim Demaille <akim@epita.fr>
7608
7609 Extract calc++ from the documentation.
7610 * doc/bison.texinfo (Calc++): Add the extraction marks.
7611 * examples/extexi: New, from the aborted GNU Programming 2E.
7612 Separate the different paragraph of a file with empty lines.
7613 * examples/Makefile: Use it to extract the whole calc++ example.
7614
7615 2005-06-24 Akim Demaille <akim@epita.fr>
7616
7617 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
7618 class typedefs.
7619
7620 2005-06-22 Akim Demaille <akim@epita.fr>
7621
7622 * doc/bison.texinfo (C++ Language Interface): First stab.
7623 (C++ Parsers): Remove.
7624
7625 2005-06-22 Akim Demaille <akim@epita.fr>
7626
7627 * data/lalr1.cc (yylex_): Honor %lex-param.
7628
7629 2005-06-22 Akim Demaille <akim@epita.fr>
7630
7631 Start a set of simple examples.
7632 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
7633 * examples/calc++/calc++-driver.hh,
7634 * examples/calc++/calc++-parser.yy,
7635 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
7636 * examples/calc++/compile, examples/calc++/test: New.
7637
7638 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
7639
7640 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
7641 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
7642 which stems from the 2005-05-27 patch.
7643
7644 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7645
7646 * data/glr.c: Modify treatment of unused parameters to permit use
7647 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
7648
7649 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
7650
7651 Fix infringement on user name space reported by Janos Zoltan Szabo.
7652 * data/yacc.c (yyparse): strlen -> yystrlen.
7653
7654 2005-05-30 Akim Demaille <akim@epita.fr>
7655
7656 * data/lalr1.cc (_): New.
7657 Translate the various messages.
7658
7659 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
7660
7661 Fix infringement on user name space reported by Bruno Haible.
7662 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
7663 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
7664 the user's name space.
7665 (alloca): Include <stdlib.h> to get it, if it's not built in.
7666 (YYMALLOC, YYFREE): Define only if needed.
7667 (malloc, free): Declare, but only if needed, as this infringes on
7668 the user name space.
7669
7670 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
7671
7672 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
7673 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
7674 with %d format.
7675 * lib/ebitset.c (min, max): Undef before defining.
7676 * lib/vbitset.c (min, max): Likewise.
7677 * lib/subpipe.c (create_subpipe): Save local variables in case
7678 vfork clobbers them.
7679
7680 2005-05-24 Bruno Haible <bruno@clisp.org>
7681
7682 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
7683 error message syntax used by gcc-4.0.
7684
7685 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
7686
7687 * README: Mention m4 1.4.3. Remove obsolete advice about
7688 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
7689
7690 * bootstrap: Remove workaround for problem I encountered with
7691 gettext 0.14.1; it seems to be fixed now.
7692
7693 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
7694
7695 * NEWS: Version 2.0a.
7696
7697 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
7698 the previous change.
7699
7700 Various maintainer cleanups.
7701 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
7702 conftest*, for benefit of CVS commands run at the same time as
7703 "configure". Add build-aux, since "bootstrap" now creates it and
7704 its subfiles.
7705 * Makefile.cfg (move_if_change): Remove.
7706 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
7707 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
7708 (po_repo, do-po-update, po-update, wget_files, get-targets):
7709 (config.guess-url_prefix, config.sub-url_prefix):
7710 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
7711 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
7712 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
7713 Remove.
7714 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
7715 this is now the recommended name.
7716 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
7717 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
7718 ylwrap. These files now go into build-aux.
7719 * config/move-if-change: Remove.
7720 * config/prev-version.txt: Bump from 1.75 to 2.0.
7721
7722 * bootstrap: Add stdio-safer, unistd-safer modules.
7723 Remove m4/glibc2.m4 (introduced by latest gnulib, but
7724 we don't need it).
7725 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
7726 fopen-safer.c, stdio-safer.h, unistd-safer.h.
7727 * lib/subpipe.c: Include "unistd-safer.h".
7728 (create_subpipe): Make sure all the newly-created
7729 file descriptors are > 2, so that diagnostics don't
7730 get sent down them (which might cause Bison to hang, in theory).
7731 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
7732 * src/files.c (xfopen): Use fopen_safer, not fopen.
7733
7734 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
7735 yesterday's yacc.c fix.
7736
7737 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
7738
7739 * data/glr.c, data/lalr1.cc: Update copyright date.
7740
7741 Fix a destructor bug reported by Wolfgang Spraul in
7742 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
7743 * data/yacc.c (yyabortlab): Don't call destructor, and
7744 don't set yychar to EMPTY.
7745 (yyoverflowlab): Don't call destructor.
7746 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
7747 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
7748 since we no longer output the message "discarding lookahead token
7749 end of input ()".
7750
7751 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7752
7753 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
7754 fix a small glitch in debugging output.
7755 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
7756 after YY_SYMBOL_PRINT where needed.
7757
7758 (struct yyGLRState): Add some comments.
7759 (struct yySemanticOption): Add some comments.
7760 (union yyGLRStackItem): Add comment.
7761
7762 (yymergeOptionSets): Correct this to properly perform the union,
7763 avoiding infinite reported by Michael Rosien.
7764 Update comment.
7765
7766 * tests/glr-regression.at: Add test for GLR merging error reported
7767 by M. Rosien.
7768
7769 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
7770
7771 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
7772 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
7773 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
7774 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
7775 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
7776 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
7777 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
7778 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
7779 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
7780 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
7781 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
7782 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
7783 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
7784 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
7785 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
7786 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
7787 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
7788 src/derives.h, src/files.c, src/files.h, src/getargs.c,
7789 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
7790 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
7791 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
7792 src/output.h, src/parse-gram.c, src/parse-gram.h,
7793 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
7794 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
7795 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
7796 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
7797 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
7798 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
7799 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
7800 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
7801 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
7802 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
7803 tests/reduce.at, tests/regression.at, tests/sets.at,
7804 tests/synclines.at, tests/testsuite.at, tests/torture.at:
7805 Update FSF postal mail address.
7806
7807 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
7808
7809 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
7810 Problem reported by Ralf Menzel.
7811
7812 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
7813
7814 * tests/actions.at: Test that stack overflow invokes destructors.
7815 From Marcus Holland-Moritz.
7816 * data/yacc.c (yyerrlab): Move the code that destroys the stack
7817 from here....
7818 (yyreturn): to here. That way, destructors are called properly
7819 even if the stack overflows, or the user calls YYACCEPT or
7820 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
7821 (yyoverflowlab): Destroy the lookahead.
7822
7823 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
7824
7825 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
7826
7827 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
7828
7829 * NEWS: Bison-generated C parsers no longer quote literal strings
7830 associated with tokens.
7831 * src/output.c (prepare_symbols): Don't escape strings,
7832 since users don't want to see C escapes.
7833 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
7834 in diagnostics.
7835 * tests/input.at (Torturing the Scanner): Likewise.
7836 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
7837
7838 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
7839
7840 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
7841 the data size is known to be too small and we can't increase it.
7842 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
7843
7844 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
7845
7846 * src/parse-gram.y: Include quotearg.h.
7847 (string_as_id): Quote $1 before using it as a key, since the
7848 lexer no longer quotes it for us.
7849 (string_content): Don't strip quotes, since lexer no longer
7850 quotes it for us.
7851 * src/scan-gram.l: Include quotearg.h.
7852 ("\""): Omit quote.
7853 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
7854 a key, since the rest of the lexer doesn't quote it.
7855 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
7856 * tests/regression.at (Token definitions): Check for backslashes
7857 in token strings.
7858
7859 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
7860 (YYSIZE_T): Define to unsigned long int when using an older compiler.
7861 (yyparse): Revamp code to generate long syntax error message, to
7862 make it easier to translate, and to avoid problems with arithmetic
7863 overflow. Change "virtual memory" to "memory" in diagnostic, since
7864 we don't know whether the memory is virtual.
7865
7866 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
7867
7868 * NEWS: Bison-generated C parsers now use the _ macro to
7869 translate strings.
7870 * data/yacc.c (_) [!defined _]: New macro.
7871 All English strings wrapped inside this macro.
7872 * doc/bison.texinfo (Bison Parser): Document _.
7873 * po/POTFILES.in: Include src/parse-gram.c, since it now
7874 includes translateable strings that parse-gram.y doesn't.
7875
7876 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
7877
7878 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
7879 reverting the 2004-10-11 change to this function.
7880 (symbol_check_alias_consistency): Don't call symbol_type_set
7881 if the type name is already correct.
7882 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
7883
7884 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
7885
7886 * tests/regression.at (Token definitions): Don't use a token named
7887 c, as that generates a "#define c ..." that runs afoul of buggy
7888 stdlib.h that uses the identifier c as a member of struct
7889 drand48_data. Problem reported by Horst Wente.
7890
7891 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
7892
7893 * bootstrap: Change translation URL from
7894 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
7895 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
7896 redirection glitches. Problem reported by twlevo@xs4all.nl.
7897
7898 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
7899
7900 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
7901 after operands; POSIX says this isn't portable for the c99 command.
7902
7903 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
7904
7905 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
7906 immediately if a data overrun has occurred; this may help us track
7907 down what may be a spurious failure on MacOS.
7908
7909 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
7910
7911 Respond to problems reported by twlevo@xs4all.nl.
7912
7913 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
7914
7915 * src/vcg.h: Comment fix.
7916 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
7917 (G_CMAX): Change to -1 instead of INT_MAX.
7918
7919 * data/yacc.c (yyparse): Omit spaces before #line.
7920
7921 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
7922
7923 * src/tables.c (state_number_to_vector_number): Put it inside an
7924 "#if 0", since it's not currently used. Problem reported by
7925 Roland McGrath.
7926
7927 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
7928
7929 * src/output.c (escaped_output): Renamed from
7930 escaped_file_name_output, since we now use it for symbol tags as
7931 well. All uses changed.
7932 (symbol_destructors_output, symbol_printers_output):
7933 Escape symbol tags too.
7934 Problem reported by Matyas Forstner in
7935 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
7936
7937 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
7938 not needed.
7939 * src/output.c (user_actions_output, token_definitions_output,
7940 symbol_destructors_output, symbol_printers_output): Likewise.
7941 * src/reader.c (prologue_augment): Likewise.
7942 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
7943
7944 * src/vcg.c (output_edge): Don't quote linestyle arg.
7945 Problem reported by twlevo@xs4all.nl.
7946
7947 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
7948
7949 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
7950 example, reported by Derek M Jones. Also, make the example even
7951 more outrageous, to better illustrate how bad the problem is.
7952
7953 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
7954
7955 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
7956 putsym. Typo reported by Sebastian Piping.
7957
7958 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
7959
7960 * doc/bison.texinfo (Language and Grammar): some -> same
7961 (Epilogue): int he -> in the
7962 Typos reported by Sebastian Piping via Justin Pence.
7963
7964 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
7965
7966 * tests/glr-regression.at (Improper handling of embedded actions
7967 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
7968 embedded actions and $-N in GLR parsers", work around an Autoconf bug
7969 with dollar signs in test names.
7970 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
7971 for a similar reason.
7972
7973 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
7974
7975 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
7976 wants to redefine G_VIEW.
7977
7978 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
7979
7980 * src/vcg.c (get_view_str): Remove case for normal_view.
7981 Problem reported by twlevo@xs4all.nl.
7982
7983 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
7984
7985 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
7986 Problem reported by twlevo@xs4all.nl.
7987
7988 * doc/bison.texinfo: Change @dircategory from "GNU programming
7989 tools" to "Software development". Requested by Richard Stallman
7990 via Karl Berry.
7991
7992 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
7993
7994 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
7995 Problem reported by twlevo@xs4all.nl.
7996
7997 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
7998
7999 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
8000 keyword; it's not needed with modern compilers, and it doesn't
8001 affect correctness with older compilers. Suggested by
8002 twlevo@xs4all.nl.
8003
8004 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
8005
8006 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
8007 gcc -Wswitch-default.
8008 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8009 * data/yacc.c (yyparse): Likewise.
8010
8011 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
8012
8013 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
8014 already. Let config.h define any nonstandard values.
8015
8016 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
8017
8018 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
8019 for the benefit of slower hosts. Problem reported by
8020 Nelson H. F. Beebe.
8021
8022 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
8023
8024 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
8025 being defined and not used.
8026 * data/lalr1.cc (yyparse): Likewise.
8027 Use "if (false)" rather than "if (0)".
8028
8029 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
8030
8031 * TODO: Mention that we should allow NUL bytes in tokens.
8032
8033 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
8034
8035 * src/scan-skel.l (<<EOF>>): Don't close standard output.
8036 Problem reported by Hans Aberg.
8037
8038 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
8039
8040 * src/getargs.c (version): Happy new year; update overall
8041 program copyright date from 2004 to 2005.
8042
8043 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
8044 Problem reported by Hans Aberg.
8045 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
8046 (Output file names.): Add a test for the case when standard output
8047 is closed.
8048
8049 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
8050
8051 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
8052 to fix an oversight in the Bison 2.0 manual.
8053
8054 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
8055
8056 * NEWS: Version 2.0. Reformat the existing news items since
8057 1.875, so that related items are grouped together.
8058 * configure.ac (AC_INIT): Bump version to 2.0.
8059 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
8060
8061 * tests/torture.at (Exploding the Stack Size with Alloca): Set
8062 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
8063 otherwise, we're not testing alloca. Unfortunately there's no
8064 simple way to consult HAVE_ALLOCA here.
8065
8066 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
8067 for yymsg, too.
8068
8069 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
8070 hand. This avoids a warning about comparing int to size_t when
8071 GCC warnings are enabled.
8072
8073 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
8074
8075 * NEWS: Bison-generated parsers no longer default to using the
8076 alloca function (when available) to extend the parser stack, due
8077 to widespread problems in unchecked stack-overflow detection.
8078 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
8079 responsibility to set it to a positive value. This lets the user
8080 specify a value that is not a preprocessor constant.
8081 * data/yacc.c (YYMAXDEPTH): Likewise.
8082 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
8083 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
8084 to be a compile-time constant. However, explain the constraints on it.
8085 Also, explain the constraints on YYINITDEPTH.
8086 (Table of Symbols): Explain that alloca is no longer the default.
8087 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
8088 to 1.
8089
8090 * doc/bison.texinfo (Location Default Action): Mention that n must
8091 be zero when k is zero. Suggested by Frank Heckenbach.
8092
8093 2004-12-22 Akim Demaille <akim@epita.fr>
8094
8095 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
8096 (parser::state_type, parser::semantic_type, parser::location_type):
8097 Private, not public.
8098 (parser::parse): Return ints, not bool.
8099 Returning a bool introduces a problem: 0 corresponds to false, and
8100 it seems weird to return false on success. Returning true changes
8101 the conventions for yyparse.
8102 Alternatively we could return void and send an exception.
8103 There is no clear consensus (yet?).
8104 (state_stack, semantic_stack, location_stack): Rename as...
8105 (state_stack_type, semantic_stack_type, location_stack_type): these.
8106 Private, not public.
8107 * tests/c++.at: New.
8108 * tests/testsuite.at, tests/Makefile.am: Adjust.
8109
8110 2004-12-21 Akim Demaille <akim@epita.fr>
8111
8112 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8113
8114 2004-12-21 Akim Demaille <akim@epita.fr>
8115
8116 Don't impose std::string for filenames.
8117
8118 * data/lalr1.cc (b4_filename_type): New.
8119 (position::filename): Use it.
8120 (parser.hh): Move the inclusion of stack.hh and location.hh below
8121 the user code, so that needed headers for the filename type can be
8122 included first.
8123 Forward declare them before the user code.
8124 * tests/Makefile.am (check-local, installcheck-local): Pass
8125 TESTSUITEFLAGS to the TESTSUITE.
8126
8127 2004-12-20 Akim Demaille <akim@epita.fr>
8128
8129 Use more STL like names: my_class instead of MyClass.
8130
8131 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8132 (SemanticStack, SemanticType, StateStack, StateType)
8133 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8134 (Parser::value): Rename as...
8135 (location_stack, location_type, rhs_number_type, semantic_stack)
8136 (semantic_type, state_stack, state_type, token_number_type, stack)
8137 (slice, traits, parser::yylloc, parser::yylval): these.
8138
8139 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8140
8141 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8142
8143 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8144 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8145
8146 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8147
8148 Remove uses of 'short int' and 'unsigned short int'. This raises
8149 some arbitrary limits. It uses more memory but nowadays that's
8150 not much of an issue.
8151
8152 This change does not affect the generated parsers; that's a different
8153 task, as some users will want to conserve memory there.
8154
8155 Ideally we should use size_t to represent all object counts, and
8156 something like ptrdiff_t to represent signed differences of object
8157 counts; but that will require more code-cleanup than I have the
8158 time to do right now.
8159
8160 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8161 Use size_t, not int or short int, to count objects.
8162 * src/closure.c (nritemset, closure): Likewise.
8163 * src/closure.h (nritemset, closure): Likewise.
8164 * src/nullable.c (nullable_compute): Likewise.
8165 * src/print.c (print_core): Likewise.
8166 * src/print_graph.c (print_core): Likewise.
8167 * src/state.c (state_compare, state_hash): Likewise.
8168 * src/state.h (struct state): Likewise.
8169 * src/tables.c (default_goto, goto_actions): Likewise.
8170
8171 * src/gram.h (rule_number, rule): Use int, not short int.
8172 * src/output.c (prepare_rules): Likewise.
8173 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8174 errs, reductions): Likewise.
8175 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8176 Likewise.
8177 * src/tables.c (vector_number, tally, action_number,
8178 ACTION_NUMBER_MINIMUM): Likewise.
8179 * src/output.c (muscle_insert_short_int_table): Remove.
8180
8181 2004-12-17 Akim Demaille <akim@epita.fr>
8182
8183 * data/lalr1.cc: Extensive Doxygenation.
8184 (error_): Rename as...
8185 (error): this, since it is visible to the user.
8186 Adjust callers.
8187 (Parser::message): Now an automatic variable from...
8188 (Parser::yyreport_syntax_error_): here.
8189 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8190 Parser::error.
8191 * tests/input.at: Escape $.
8192
8193 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8194
8195 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8196 Parenthesize rhs to avoid obscure problems with mistakes like
8197 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8198 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8199 b4_rhs_location): Likewise.
8200 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8201 b4_rhs_location): Likewise.
8202
8203 2004-12-16 Akim Demaille <akim@epita.fr>
8204
8205 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8206 yacc.c: be sure to stay within yycheck_.
8207 * tests/actions.at: Re-enable C++ tests.
8208
8209 2004-12-16 Akim Demaille <akim@epita.fr>
8210
8211 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8212 real.
8213
8214 2004-12-16 Akim Demaille <akim@epita.fr>
8215
8216 Use #define to handle the %name-prefix.
8217
8218 * data/glr.c, data/yacc.c: Comment changes.
8219 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8220 so that one can refer to yylex in the parser file, and have it
8221 renamed, as is the case with other skeletons.
8222
8223 2004-12-16 Akim Demaille <akim@epita.fr>
8224
8225 Move lalr1.cc internals into yy*.
8226
8227 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8228 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8229 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8230 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8231 (empty_, final_, terror_, errcode_, ntokens_)
8232 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8233 (looka_, ilooka_, error_range_, nerrs_):
8234 Rename as...
8235 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8236 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8237 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8238 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8239 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8240 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8241 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8242 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8243 these.
8244
8245 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8246
8247 Fix some problems reported by twlevo at xs4all.
8248 * src/symtab.c (symbol_new): Report an error if the input grammar
8249 contains too many symbols. This is better than calling abort() later.
8250 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8251 (struct node, struct graph):
8252 Rename member expand to stretch. All uses changed.
8253 (struct graph): Remove member layoutalgorithm. All uses removed.
8254 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8255 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8256 All uses changed.
8257 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8258
8259 2004-12-15 Akim Demaille <akim@epita.fr>
8260
8261 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8262 Add more Doxygen comments.
8263 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8264 (report_syntax_error_, translate_): Rename as...
8265 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8266 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8267
8268 2004-12-15 Akim Demaille <akim@epita.fr>
8269
8270 * data/lalr1.cc (lex_): Rename as...
8271 (yylex_): this.
8272 Move the trace here.
8273 Take the %name-prefix into account.
8274 Reported by Alexandre Duret-Lutz.
8275
8276 2004-12-15 Akim Demaille <akim@epita.fr>
8277
8278 Simplify the C++ parser constructor.
8279
8280 * data/lalr1.cc (debug_): Rename as...
8281 (yydebug_): so that the parser's internals are always in the yy*
8282 pseudo namespace.
8283 Adjust uses.
8284 (b4_parse_param_decl): Remove the leading comma as it is now only
8285 called as unique argument list.
8286 (Parser::Parser): Remove the constructor accepting a location and
8287 an initial debugging level.
8288 Remove from the other ctor the argument for the debugging level.
8289 (debug_level_type, debug_level, set_debug_level): New.
8290
8291 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8292 constructor calls.
8293
8294 2004-12-15 Akim Demaille <akim@epita.fr>
8295
8296 Remove b4_root related material: failure experiment
8297 (which goal was to allow to derive from a class).
8298
8299 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8300 definitions and uses.
8301
8302 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8303
8304 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8305 not 2, since it's not portable to subtract 1 from the start of an
8306 array. The new item 0 is never set or used. All uses changed.
8307
8308 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8309 the default definition of YYLLOC_DEFAULT. Problem reported
8310 by Frank Heckenbach.
8311
8312 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8313
8314 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8315 the normal case and one for the error case. Just use the
8316 first one uniformly. Problem reported by Frank Heckenbach.
8317 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8318 use exactly the same macro in both places.
8319 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8320 so that the normal-case YYRHSLOC works for the error case too.
8321 All uses changed.
8322 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8323 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8324 * doc/bison.texinfo (Location Default Action): Don't claim that
8325 we have an array of locations. Use the same macro for both glr
8326 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8327 the index is 0.
8328
8329 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8330
8331 * HACKING: Update email addresses to send announcements to.
8332
8333 * configure.ac (AC_INIT): Bump version to 1.875f.
8334
8335 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8336
8337 * NEWS: Version 1.875e.
8338 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8339
8340 * src/scan-skel.l: Include "complain.h", for "fatal".
8341
8342 * src/relation.h (relation_print, relation_digraph):
8343 Relation sizes are of type relation_node, not size_t (this is
8344 merely a doc fix, since the two types are equivalent).
8345 (relation_transpose): Relation sizes are of type relation_node,
8346 not int.
8347 * src/relation.c: Likewise.
8348 (top, infinity): Now of type relation_node, not int.
8349 (traverse, relation_transpose): Use relation_node, not int.
8350
8351 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8352 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8353 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8354
8355 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
8356 specifying whether the test should be skipped. Use it tp
8357 specify that the [%defines %skeleton "lalr1.cc"] tests currently
8358 fail on some hosts, and should be skipped.
8359
8360 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8361
8362 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8363 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8364 unless otherwise specified below.
8365
8366 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8367 to allocate kernel_base, kernel_items, kernel_size, since
8368 they needn't be initialized to 0.
8369 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8370 * src/closure.c (new_closure): Likewise, for itemset.
8371 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8372 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8373 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8374 (build_relations): Likewise for edge, states1, includes.
8375 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8376 * src/reader.c (packgram): Likewise, for ritem, rules.
8377 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8378 * src/relation.c (relation_digraph): Likewise for VERTICES.
8379 (relation_transpose): Likewise for new_R, end_R.
8380 * src/symtab.c (symbols_token_translations_init): Likewise for
8381 token_translations.
8382 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8383 (token_actions): Likewise for yydefact, actrow, conflrow,
8384 conflict_list.
8385 (save_column): Likewise for froms[symno], tos[symno].
8386 (goto_actions): Likewise for state_count.
8387 (pack_table): Likewise for base, pos, check.
8388 (tables_generate): Likewise for width.
8389
8390 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8391 for initial core. Just have a separate core, so we needn't worry
8392 about whether kernel_size and kernel_base are initialized.
8393
8394 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8395 kernel_size, kernel_items): Remove unnecessary initialization.
8396 * src/conflicts.c (conflicts): Likewise.
8397 * src/derives.c (derives): Likewise.
8398 * src/muscle_tablc (muscle_insert): Likewise.
8399 * src/relation.c (relation_digraph): Likewise.
8400 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8401 conflrow, conflict_table, conflict_list, table, check):
8402 Likewise.
8403
8404 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8405 This is because all callers pass unsigned int.
8406 * src/closure.h (new_closure): Likewise.
8407
8408 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8409 (build_relations): Initialize includes[i] in all cases.
8410 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8411 and rules[ruleno].precsym. Initialize members in order.
8412 * src/relation.c (relation_transpose): Always initialize new_R[i]
8413 and end_R[i].
8414 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8415
8416 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8417 conflict_list[0] was always 0, but now it isn't initialized.
8418
8419 * src/table.c (table_grow): When conflict_table grew, the grown
8420 area wasn't cleared. Fix this.
8421
8422 * lib/.cvsignore: Add strdup.c, strdup.h.
8423 * m4/.cvsignore: Add strdup.m4.
8424
8425 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8426
8427 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8428 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8429 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8430 ngotos + 1 without checking for overflow.
8431 (build_relations): Use END_NODE, not -1, to denote end of edges.
8432 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8433 build_relations): Use goto_number, not int, for goto numbers.
8434 * src/tables.c (save_column, default_goto): Likewise.
8435
8436 2004-11-23 Akim Demaille <akim@epita.fr>
8437
8438 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8439 of #defining from yystype.
8440 Don't typedef yystype, C++ does not need it.
8441 This lets it possible to forward declare it as union.
8442
8443 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8444
8445 * bootstrap (gnulib_modules): Add extensions.
8446 Problem reported by Jim Meyering.
8447
8448 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8449
8450 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8451 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8452 src/system.h, src/tables.c: XFREE -> free, to accommodate
8453 recent change to gnulib xalloc.h.
8454 Problem reported by Jim Meyering.
8455
8456 2004-11-17 Akim Demaille <akim@epita.fr>
8457
8458 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8459
8460 2004-11-17 Akim Demaille <akim@epita.fr>,
8461 Alexandre Duret-Lutz <adl@gnu.org>
8462
8463 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8464 changes.
8465 (YYCDEBUG): Adjust.
8466 Use it instead of cdebug_.
8467 (Parser::debug_stream, Parser::set_debug_stream): New.
8468 (Parser::symprint_): Define cdebug_ for temporary backward
8469 compatibility.
8470 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8471 debug_stream ().
8472
8473 2004-11-17 Akim Demaille <akim@epita.fr>
8474
8475 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
8476 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
8477 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
8478 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8479
8480 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
8481
8482 * data/glr.c (yyloc_default): Remove; not used.
8483 Problem reported by Frank Heckenbach.
8484
8485 2004-10-25 Akim Demaille <akim@epita.fr>
8486
8487 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
8488 Introduce another definition to address simple location arrays.
8489 (yyGLRStack): New member: yyerror_range.
8490 (yyrecoverSyntaxError, yyparse): Update it.
8491 (yyrecoverSyntaxError): Use it when shifting the error token to
8492 have an accurate range, equivalent to the one computed by both
8493 yacc.c and lalr1.cc.
8494 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
8495 that column numbers start at column 0, as per GNU Coding
8496 Standards, the others tests, and the doc.
8497 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
8498 Adjust to the above change (first column is 0).
8499 And adjust the location of the "<error>", now covering the whole
8500 line.
8501
8502 2004-10-22 Akim Demaille <akim@epita.fr>
8503 and Paul Eggert <eggert@cs.ucla.edu>
8504
8505 Remove some arbitrary limits on goto numbers and relations.
8506 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
8507 initial values, since they're never used.
8508 (set_goto_map): ngotos is now unsigned, so test for overflow
8509 by seeing whether it wraps around to zero.
8510 * src/lalr.h (goto_number): Now size_t, not short int.
8511 (GOTO_NUMBER_MAXIMUM): Remove.
8512 * src/relation.c (relation_print, traverse, relation_transpose):
8513 Check for END_NODE rather than looking at sign.
8514 * src/relation.h (END_NODE): New macro.
8515 (relation_node): Now size_t, not short int.
8516
8517 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
8518
8519 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
8520 keyword, not an identifier. Problem reported by Baron Schwartz in
8521 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
8522
8523 2004-10-11 Akim Demaille <akim@epita.fr>
8524
8525 * src/symtab.c (symbol_check_alias_consistency): Also check
8526 type names, destructors, and printers.
8527 Reported by Alexandre Duret-Lutz.
8528 Recode the handling of associativity and precedence in terms
8529 of symbol_precedence_set.
8530 Accept no redeclaration at all, not even equal to the previous
8531 value.
8532 (redeclaration): New.
8533 Use it to factor redeclaration complaints.
8534 (symbol_make_alias): Don't set the type of the alias, let
8535 symbol_check_alias_consistency do it as for other features.
8536 * src/symtab.h (symbol): Add new member prec_location, and
8537 type_location.
8538 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
8539 * tests/input.at (Incompatible Aliases): New.
8540
8541 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
8542
8543 .cvsignore fixes to accommodate gnulib changes,
8544 and the practice of naming build directories "_build".
8545 * .cvsignore: Add "_*". Sort.
8546 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
8547 * m4/.cvsignore: Add "*_gl.m4".
8548
8549 2004-10-06 Akim Demaille <akim@epita.fr>
8550
8551 * src/parse-gram.y (add_param): Fix the truncation of trailing
8552 spaces.
8553
8554 2004-10-05 Akim Demaille <akim@epita.fr>
8555
8556 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
8557 whether the reducion was empty or not. This leaves room to
8558 improve the use of YYLLOC_DEFAULT in such a case.
8559 lalr1.cc is still experimental, so changing this is acceptable.
8560 And finally, there are probably not many users who changed the
8561 handling of locations in GLR, so changing is admissible too.
8562
8563 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
8564 empty reduction, set @$ to an empty location ending the previously
8565 stacked symbol.
8566 Adjust uses to make sure the code is triggered on empty
8567 reductions.
8568 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
8569 expected output: empty reductions have empty locations.
8570
8571 2004-09-29 Akim Demaille <akim@epita.fr>
8572
8573 * data/lalr1.cc: Move towards a more standard C++ coding style
8574 for templates: Class < T > -> Class<T>.
8575
8576 2004-09-29 Akim Demaille <akim@epita.fr>
8577
8578 * data/lalr1.cc: Reinstall the former ctor, for sake of
8579 compatibility, but warn it will be removed.
8580 Move towards a more standard C++ coding style (i.e., type *var ->
8581 type* var).
8582
8583 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
8584
8585 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
8586 since it's less likely to work if NULs are involved in the future.
8587
8588 2004-09-27 Akim Demaille <akim@epita.fr>
8589
8590 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
8591
8592 2004-09-27 Akim Demaille <akim@epita.fr>
8593
8594 * data/lalr1.cc (b4_parse_param_decl_1): New.
8595 (b4_parse_param_decl): Use it to have different names between attribute
8596 and argument names.
8597 (b4_cc_constructor_call): Likewise.
8598
8599 2004-09-24 Akim Demaille <akim@epita.fr>
8600
8601 * src/parse-gram.y (add_param): Strip the leading and trailing
8602 blanks from a formal argument declaration.
8603 (YY_LOCATION_PRINT): New.
8604
8605 2004-09-24 Akim Demaille <akim@epita.fr>
8606
8607 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
8608 after the location.
8609
8610 2004-09-24 Akim Demaille <akim@epita.fr>
8611
8612 * doc/bison.texinfo (Table of Symbols): Sort.
8613
8614 2004-09-21 Akim Demaille <akim@epita.fr>
8615
8616 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
8617 the useless parentheses.
8618 Suggested by Paul Eggert.
8619
8620 2004-09-20 Akim Demaille <akim@epita.fr>
8621
8622 Let the initial-action act on the look-ahead, and use it for the
8623 "initial push" (corresponding to an hypothetical beginning-of-file).
8624 And let lalr1.cc honor %initial-action.
8625
8626 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
8627 example.
8628 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
8629 (Parser::Parser): Remove the ctor that used to initialize it.
8630 (Parser::parse): Like in the other skeletons, issue the "starting
8631 parse" message before any action.
8632 Honor %initial-action.
8633 Initialize the stacks with the lookahead.
8634 * data/yacc.c: Let $$ and @$ in %initial-action designate the
8635 look-ahead.
8636 Push them in the stacks.
8637 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
8638
8639 2004-09-20 Akim Demaille <akim@epita.fr>
8640
8641 * doc/bison.texinfo (Initial Action Decl): New.
8642
8643 2004-09-20 Akim Demaille <akim@epita.fr>
8644
8645 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
8646 clearer criterion to define it.
8647 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
8648 When reducing on an empty RHS, use the latest stacked location as
8649 location.
8650 yylloc is not always available.
8651 * data/glr.c: Likewise.
8652 Also, honor initial-actions.
8653
8654 2004-09-20 Akim Demaille <akim@epita.fr>
8655
8656 * data/yacc.c (YY_LOCATION_PRINT): New.
8657 Define when we know YYLTYPE's structure, i.e., when the default
8658 YYLLOC_DEFAULT is used.
8659 * data/c.m4 (b4_yysymprint_generate): Use it.
8660 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
8661 value of the result.
8662 (error_start_): Replace with...
8663 (error_range_): this location array.
8664 This allows to replace code relying on the implementation of
8665 locations by portable code.
8666 * data/yacc.c (yylerrsp): Replace with...
8667 (yyerror_range): this.
8668 Every time a token is popped, update yyerror_range[0], to have an
8669 accurate location for the error token.
8670 * data/glr.c (YY_LOCATION_PRINT): New.
8671 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
8672 deference a pointer.
8673 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
8674 report the location in %printers.
8675
8676 * src/scan-skel.l: Instead of abort, report error messages to ease
8677 understanding skeleton scanning failures.
8678
8679 2004-09-16 Akim Demaille <akim@epita.fr>
8680
8681 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
8682 (iterator, const_iterator): these, to be more in the C++ spirit.
8683 Also, return reverse iterators so that when displaying the stack
8684 we display its bottom first.
8685 (Parser::stack_print_, Parser::reduce_print_): Match the messages
8686 from yacc.c.
8687 We should probably use vector here though.
8688
8689 2004-09-16 Akim Demaille <akim@epita.fr>
8690
8691 Have more complete shift traces.
8692
8693 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
8694 to report Shifts instead of ad hoc YYDPRINTF invocations,
8695 including for the error token.
8696 * data/lalr1.cc (symprint_): Output the location.
8697 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
8698 output the location within the %printer.
8699 Activate GLR tests, at least to make sure they compile properly.
8700 They still don't pass though.
8701 * tests/calc.at: Adjust expect verbose output, since now "Entering
8702 state..." is on a different line than the "Shifting" message.
8703
8704 2004-09-08 Akim Demaille <akim@epita.fr>
8705
8706 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
8707 Bison directive from the Bison file to the invocation of this
8708 macro, so that these directives are passed to
8709 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
8710 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
8711 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
8712 the extra Bison directives instead of the whole series.
8713 Change the grammar so that there are recoverable errors, and
8714 unrecoverable errors. Now we can have the parser give up before
8715 consuming the whole input. As a result we now can observe that
8716 the lookahead is freed when needed.
8717 Change the parser source to parse argv[1] instead of a hard coded
8718 string.
8719 Simplify yylex, and give a value and location to EOF.
8720 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
8721 passed directives already coded in the file.
8722 Add some tests to check the location of "error".
8723 For some tests, the C++ parser is correct, and not yacc.c.
8724 For other tests, they provide different, but unsatisfying, values,
8725 so keep the C++ value so that at least one parser is "correct"
8726 according to the test suite.
8727 (Actions after errors): Remove, this is subsumed by the
8728 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
8729
8730 2004-09-06 Akim Demaille <akim@epita.fr>
8731
8732 * data/lalr1.cc: Adjust the indentation of the labels.
8733 (Parser::pop): New.
8734 Use it.
8735
8736 2004-09-06 Akim Demaille <akim@epita.fr>
8737
8738 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
8739 argument, an informative message.
8740 Call YY_SYMBOL_PRINT.
8741 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
8742 * data/lalr1.cc (destruct_): Likewise.
8743 In addition, no longer depend on b4_yysymprint_generate and
8744 b4_yydestruct_generate to generate these functions, do it "by
8745 hand".
8746
8747 2004-09-03 Akim Demaille <akim@epita.fr>
8748
8749 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
8750 invoked, yydestruct the lookahead.
8751 * tests/calc.at (Calculator $1): Update the expected lengths of
8752 traces: there is an added line for the discarded lookahead.
8753 * doc/bison.texinfo (Destructor Decl): Some rewording.
8754 Define "discarded" symbols.
8755
8756 2004-09-02 Akim Demaille <akim@epita.fr>
8757
8758 * data/lalr1.cc (translate_, destruct_): No reason to be static.
8759
8760 2004-09-02 Akim Demaille <akim@epita.fr>
8761
8762 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
8763 (YYDSYMPRINTF): Rename as...
8764 (YY_SYMBOL_PRINT): this.
8765 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
8766 two.
8767 Use it instead of direct symprint_ calls.
8768 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
8769 one.
8770
8771 2004-09-02 Akim Demaille <akim@epita.fr>
8772
8773 * data/lalr1.cc (b4_yysymprint_generate): New.
8774 (symprint_): New member function, defined when YYDEBUG.
8775 Use it consistently instead of token/nterm debugging output by
8776 hand.
8777 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
8778 %printer calls to use cdebug_ when using lalr1.cc.
8779
8780 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
8781
8782 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
8783 with #ifdef YYDEBUG.
8784
8785 2004-08-26 Akim Demaille <akim@epita.fr>
8786
8787 * doc/bison.texinfo (Implementing Loops): Rename as...
8788 (Implementing Gotos/Loops): this.
8789
8790 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
8791
8792 Adjust to latest gnulib.
8793 * bootstrap (gnulib_modules): Add xalloc-die.
8794 Set LC_ALL=C so that file names sort consistently.
8795 Prefer the gnulib copies of gettext.m4, glibc21.m4,
8796 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
8797 uintmax_t.m4, ulonglong.m4.
8798 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
8799 po.m4 since we are now using _gl.m4 instead.
8800
8801 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
8802
8803 * src/scan-action.l: Remove. Scanning of semantic actions is
8804 handled in scan-gram.l.
8805
8806 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
8807
8808 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
8809
8810 * src/location.h (struct): The file member is a uniqstr.
8811 (equal_boundaries): Use UNIQSTR_EQ for comparison.
8812
8813 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
8814
8815 Fix bug with non-%union parsers that have printers or destructors,
8816 which led to a Bison core dump. Reported by Peter Fales in
8817 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
8818
8819 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
8820 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
8821 not to our own type.
8822 * src/output.c (symbol_destructors_output, symbol_printers_output):
8823 Don't assume %union.
8824 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
8825 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
8826 UNION-FLAG. All callers changed.
8827 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
8828 Use type char, not unsigned int, when declaring an array of char;
8829 this lets us remove a cast.
8830 (Printers and Destructors): Add non-%union test cases.
8831
8832 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8833
8834 * doc/bison.texinfo: Minor editorial changes, mostly to the new
8835 GLR writeups. E.g., avoid frenchspacing and the future tense,
8836 change "lookahead" to "look-ahead", and change "wrt" to "with
8837 respect to".
8838
8839 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8840
8841 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
8842 New sections, split off from the GLR Parsers section. Put the new
8843 Simple GLR Parser near the start of the GLR section, for clarity.
8844 Rewrite connective text.
8845
8846 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
8847
8848 * doc/bison.texinfo (Simple GLR Parsers): New section.
8849
8850 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8851
8852 * NEWS, TODO, doc/bison.texinfo:
8853 Use "look-ahead" instead of "lookahead", to be consistent.
8854 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
8855 while we're fixing "look-ahead".
8856 * src/conflicts.c (shift_set): Renamed from shiftset.
8857 (look_ahead_set): Renamed from lookaheadset.
8858 * src/print.c: Likewise.
8859 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
8860 name for "lookahead".
8861 (report_types, usage): Likewise.
8862 * src/getargs.h (report_look_ahead_tokens): Renamed from
8863 report_lookaheads.
8864 * src/lalr.c (compute_look_ahead_tokens): Renamed from
8865 compute_lookaheads.
8866 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
8867 (look_ahead_tokens_print): Renamed from lookaheads_print.
8868 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
8869 state_rule_lookaheads_print.
8870 * src/state.h: Likewise.
8871 (reductions.look_ahead_tokens): Renamed from lookaheads.
8872 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
8873 AT_DATA_LOOKAHEADS_GRAMMAR.
8874
8875 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
8876
8877 * README: Update location of patched M4 distribution.
8878
8879 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
8880
8881 Don't assume the C++ compiler takes the same arguments as the C compiler
8882 (trivial change).
8883 * configure.ac (O0CXXFLAGS): New var.
8884 * tests/atlocal.in (CXXFLAGS): Use it.
8885
8886 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
8887
8888 Fix some "make check" problems with C++ reported by
8889 Albert Chin-A-Young for Tru64 C++ in this thread:
8890 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
8891
8892 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
8893 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8894 Output to a .cc file for C++, not to a .c file.
8895 * tests/calc.at (AT_CHECK_CALC): Likewise.
8896 * tests/regression.at (AT_CHECK_DANCER): Likewise.
8897 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
8898
8899 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
8900
8901 * tests/calc.at, tests/actions.at: Workaround for SGI
8902 C++ compiler. (trivial change)
8903
8904 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
8905
8906 Spent a few hours checking out which prerequisite versions the
8907 current sources actually require. I went all the way back to
8908 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
8909 a seemingly endless set of combinations of versions more recent
8910 than that. The bottom line is that the current sources require
8911 fairly recent versions of the build tools, and it'll be some work
8912 to change this.
8913 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
8914 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
8915 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
8916 Add comments explaining why those particular versions are
8917 currently needed.
8918
8919 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
8920 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
8921 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
8922
8923 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
8924 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
8925
8926 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
8927
8928 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
8929 0.11.5. Suggested by Bruno Haible.
8930 * bootstrap: Remove gettext version checking.
8931
8932 * doc/bison.texinfo (Decl Summary): Also mention that %union
8933 can depend on prerequisite types. Problem reported by Tim
8934 Van Holder.
8935
8936 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
8937
8938 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
8939 * README-alpha: Don't tell people not to package this.
8940
8941 * bootstrap: Don't assume $(...) works; use `...` instead.
8942 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
8943 gettext better.
8944
8945 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
8946 put into the -d output file, and mention what to do if YYSTYPE is
8947 defined as a macro.
8948
8949 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
8950
8951 Undo change made earlier today: it caused autopoint to not bring
8952 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
8953 autopoint's.
8954
8955 * bootstrap: Check that gettext version matches what's in
8956 configure.ac. Warn users to ignore robots.txt ERROR 404.
8957 * bootstrap: Undo today's earlier change (logged below).
8958 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
8959
8960 The gettext version checking is causing more trouble than it's
8961 curing; remove it. Problem reported by Paul Hilfinger.
8962
8963 * bootstrap: Issue a warning that one can expect a message
8964 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
8965 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
8966
8967 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
8968
8969 Ensure that the C++ compiler used for testing actually works on a
8970 simple test program; if not, skip the C++-related tests. Problem
8971 reported by Vin Shelton in:
8972 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
8973
8974 * m4/cxx.m4: New file.
8975 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
8976 * tests/atlocal.in (BISON_CXX_WORKS): Add.
8977 * tests/local.at (AT_COMPILE_CXX): Use it.
8978
8979 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
8980
8981 * data/glr.c (yylloc): Output this macro even if locations are not
8982 being generated, as the GLR parser needs it even in that case.
8983 Problem reported by Troy A. Johnson
8984 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
8985
8986 * configure.ac (AC_INIT): Update to 1.875e.
8987
8988 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
8989
8990 * NEWS: Version 1.875d.
8991 * configure.ac (AC_INIT): Likewise.
8992 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
8993
8994 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
8995 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
8996 lalr1.cc runs afoul of the first, and the last two are no longer
8997 supported by GCC 3.4.0.
8998 * README: Mention GNU m4 1.4 or later; mention m4 patches.
8999 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
9000
9001 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
9002
9003 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
9004 unsigned int, for compatibility with latest gnulib hash module.
9005 * src/state.c (state_hash, state_hasher): Likewise.
9006 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
9007 * src/uniqstr.c (hash_uniqstr): Likewise.
9008
9009 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
9010
9011 * NEWS: Unescaped newlines are no longer allowed in char & strings.
9012
9013 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
9014 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
9015 character and string literals.
9016 (unexpected_end): New function.
9017 (unexpected_eof): Use it.
9018 (unexpected_newline): New function.
9019 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
9020 actions.
9021
9022 * NEWS: Document %expect-rr.
9023
9024 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
9025 Fix typo by replacing $1 with $option.
9026 Remove more 'intl'-related files.
9027 Don't DEFUN AM_INTL_SUBDIR twice.
9028
9029 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
9030 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
9031 strtoul.c.
9032 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
9033 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
9034 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
9035 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
9036 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
9037 * src/.cvsignore: Add *.output.
9038
9039 * src/parse-gram.y: Put copyright notice inside %{ %} so it
9040 gets copied to the output file.
9041
9042 2004-04-28 Paul Eggert <eggert@twinsun.com>
9043
9044 Get files from the gnulib and po repositories, instead of relying
9045 on them being in our CVS. Upgrade to latest versions of gnulib
9046 and Automake.
9047
9048 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
9049 * bootstrap: Bootstrap from gnulib and po repositories.
9050 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
9051 * README-cvs: Document these changes. Remove version numbers from
9052 mentions of build tools, since they change so often. Mention Flex.
9053
9054 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
9055 (gl_USE_SYSTEM_EXTENSIONS): Add.
9056 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
9057 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
9058 does this for us.
9059 (AC_ISC_POSIX): Remove; we no longer support this
9060 ancient OS, as it gets in the way of latest Autoconf & gnulib.
9061 (AC_HEADER_STDC): Remove: we now assume C89 or better.
9062 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
9063 Do not check for C89 headers, except for locale.h which is used
9064 by the Yacc library and must port to K&R hosts.
9065 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
9066 Do not check for C89 functions, except for setlocale which is
9067 used by the Yacc library.
9068 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
9069 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
9070 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
9071 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
9072 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
9073 AM_GNU_GETTEXT): Remove; now done by:
9074 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
9075 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
9076 for us.
9077
9078 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
9079 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
9080 Define to empty, as gnulib.mk will do the rest for us.
9081 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
9082 for us.
9083 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
9084 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
9085
9086 * src/files.c: Include gnulib's xstrndup.h.
9087
9088 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
9089 (REALLOC): Use xnrealloc, for likewise.
9090 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
9091 (strnlen, memrchr): Remove decls; functions no longer used.
9092 Include <stpcpy.h>.
9093
9094 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
9095 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9096 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
9097 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
9098 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
9099 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
9100 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
9101 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
9102 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
9103 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9104 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9105 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9106 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9107 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9108 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9109 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9110 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9111 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9112 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9113 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9114 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9115 Remove, as these files are now generated automatically
9116 by bootstrap or automake.
9117
9118 * po/ChangeLog: Remove: all but one entry was a duplicate
9119 of this file, and I moved that 2000-11-02 entry here.
9120
9121 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9122 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9123 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9124 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9125 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9126 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9127 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9128 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9129 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9130 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9131 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9132 xstrndup.h.
9133 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9134 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9135 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9136 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9137 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9138 * src/.cvsignore: Remove *_.c.
9139
9140
9141 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9142 support it. (The latest stable gzip doesn't.)
9143
9144 2004-04-27 Paul Eggert <eggert@twinsun.com>
9145
9146 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9147 case, as stos_ is now used by destructors due to the 2004-02-09
9148 change.
9149
9150 Remove more K&R C support.
9151 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9152 * lib/subpipe.c (errno): Remove decl.
9153 Include <stdlib.h> unconditionally.
9154 (EXIT_FAILURE): Remove macro.
9155 * src/complain.c (vfprintf, strerror): Remove.
9156 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9157 unconditionally.
9158 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9159 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9160 (strchr, strspn, memchr): Remove decls.
9161 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9162 unconditionally. Do not declare perror.
9163 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9164 unconditionally.
9165
9166 * src/complain.c (_): Remove useless defn, as system.h defines this.
9167
9168 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9169 with latest obstack.h.
9170 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9171 to procedure types, as obstack.h now does that for us.
9172 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9173
9174 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9175 so that this include file can stand alone.
9176 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9177 does this now. Include subpipe.h first after config.h, to
9178 test whether it can stand alone.
9179
9180 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9181 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9182 unused declaration.
9183
9184 * tests/synclines.at (%union synch line): Put a dummy member in
9185 the union, because empty unions aren't allowed in C. Caught
9186 by GCC 3.4.0.
9187
9188 2004-04-13 Jim Meyering <jim@meyering.net>
9189
9190 * src/conflicts.c (conflicts_print): Correct format string typo:
9191 use `%%' to produce literal `%'. (trivial change)
9192
9193 2004-03-30 Paul Eggert <eggert@twinsun.com>
9194
9195 * src/getargs.c (version): Update copyright year to 2004.
9196
9197 * data/c.m4 (b4_int_type): Use 'short int' rather than
9198 'short', and similarly for 'long', 'unsigned', etc.
9199 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9200 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9201 yy_yypstack, yydumpstack): Likewise.
9202 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9203 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9204 Likewise.
9205 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9206 yy_stack_print, yyparse): Likewise.
9207 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9208 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9209 * lib/bitset.c (bitset_print): Likewise.
9210 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9211 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9212 * lib/bitsetv.c (bitsetv_dump): Likewise.
9213 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9214 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9215 Likewise.
9216 * src/LR0.c (allocate_itemsets): Likewise.
9217 * src/gram.h (rule_number, rule): Likewise.
9218 * src/lalr.h (goto_number): Likewise.
9219 * src/nullable.c (nullable_compute): Likewise.
9220 * src/output.c (prepare_rules): Likewise.
9221 * src/relation.c (relation_print, relation_digraph): Likewise.
9222 * src/relation.h (relation_node): Likewise.
9223 * src/state.h (state_number, transitions, errs, reductions,
9224 struct state): Likewise.
9225 * src/symtab.h (symbol_number, struct symbol): Likewise.
9226 * src/tables.c (vector_number, tally, action_number,
9227 default_goto, goto_actions): Likewise.
9228 * tests/existing.at (GNU Cim Grammar): Likewise.
9229 * tests/regression.at (Web2c Actions): Likewise.
9230
9231 * src/output.c (muscle_insert_short_int_table): Renamed from
9232 muscle_insert_short_table. All uses changed.
9233
9234 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9235
9236 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9237 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9238 Add %expect-rr rule.
9239
9240 * src/scan-gram.l: Recognize %expect-rr.
9241
9242 * src/conflicts.h (expected_sr_conflicts): Rename from
9243 expected_conflicts.
9244 (expected_rr_conflicts): Declare.
9245
9246 * src/conflicts.c (expected_sr_conflicts): Rename from
9247 expected_conflicts.
9248 (expected_rr_conflicts): Define.
9249 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9250 for GLR parsers.
9251 Use expected_sr_conflicts in place of expected_conflicts.
9252 Warn if expected_rr_conflicts used in non-GLR parser.
9253
9254 * doc/bison.texinfo: Add documentation for %expect-rr.
9255
9256 2004-03-08 Paul Eggert <eggert@gnu.org>
9257
9258 Add support for hex token numbers. Suggested by Odd Arild Olsen in
9259 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
9260
9261 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9262 in lalr1.cc.
9263 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9264 * src/scan-gram.l (scan_integer): New function.
9265 ({int}): Use it.
9266 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9267 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9268 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9269 Say "long int", not "long", for uniformity with GNU style.
9270
9271 2004-02-25 Paul Eggert <eggert@twinsun.com>
9272
9273 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9274 compilers. This fixes a problem with Intel's C++ compiler being
9275 chatty, reported by Guido Trentalancia in
9276 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
9277
9278 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9279
9280 Support %destructor and merge error locations in lalr1.cc.
9281
9282 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9283 (Parser::stos_): Define unconditionally.
9284 (Parser::destruct_): New method. Generate its body with
9285 b4_yydestruct_generate.
9286 (Parser::error_start_): New attribute.
9287 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9288 token which are discarded.
9289 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9290 error_start_ when erroneous token are discarded.
9291 (Parser::parse) <yyerrlab1>: Compute the location of the error
9292 token so that it covers all the discarded tokens.
9293 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9294 it can be called with `%skeleton "lalr1.cc"', and do that.
9295
9296 2004-02-02 Paul Eggert <eggert@twinsun.com>
9297
9298 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9299 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9300 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9301 There's no need to mention top_builddir since Automake does that
9302 for us.
9303 (INCLUDES): Remove, as Automake says it's obsolescent.
9304 Contents migrated into AM_CPPFLAGS as described above.
9305 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9306
9307 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9308
9309 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9310 (yyreportSyntaxError): Handle case where lookahead token is
9311 YYEMPTY.
9312
9313 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9314
9315 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9316 resulting parsers are compilable with C++.
9317
9318 2003-12-23 Paul Eggert <eggert@twinsun.com>
9319
9320 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9321 * src/output.c (output_skeleton): Rename local var.
9322 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9323 Bison tokens, as this runs afoul of the 2003-10-07 change that
9324 disallowed NUL bytes in character constants or string literals.
9325
9326 * tests/local.at: Require Autoconf 2.59's Autotest.
9327 * tests/testsuite.at: Don't include local.at, since we now assume
9328 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9329 including it.
9330 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9331 multiple inclusion warnings.
9332
9333 2003-12-02 Akim Demaille <akim@epita.fr>
9334
9335 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9336 conditions.
9337 From Bruno Haible.
9338
9339 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9340
9341 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9342
9343 2003-10-07 Paul Eggert <eggert@twinsun.com>
9344
9345 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9346 if testsuite doesn't exist.
9347
9348 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9349 literals, unfortunately.
9350 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9351 Complain about NUL bytes in character constants or string literals.
9352
9353 2003-10-05 Paul Eggert <eggert@twinsun.com>
9354
9355 * NEWS: Don't document %no-default-prec, as it's still
9356 too experimental.
9357 * doc/bison.texinfo: Document %no-default-prec only if
9358 the defaultprec flag is set. Normally it's not.
9359
9360 2003-10-04 Paul Eggert <eggert@twinsun.com>
9361
9362 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9363 non-modifiable lvalue, instead of a modifiable one.
9364 * doc/bison.texinfo (Actions): Document that $$ can
9365 be assigned to. Do not claim that $$ and $N are
9366 array element references: user code should not rely on this.
9367
9368 2003-10-01 Paul Eggert <eggert@twinsun.com>
9369
9370 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9371 (grammar_declaration): Use it.
9372 * src/scan-gram.l: New token %no-default-prec.
9373 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9374 * NEWS, doc/bison.texinfo: Document the above.
9375
9376 2003-10-01 Akim Demaille <akim@epita.fr>
9377
9378 VCG no longer supports long_straight_phase.
9379
9380 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9381 * src/print_graph.c (print_graph): Adjust.
9382
9383 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
9384 and Paul Eggert <eggert@twinsun.com>
9385
9386 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9387 Table of Symbols): Document %default-prec.
9388 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9389 (grammar_declaration): Set default_prec on %default-prec.
9390 * src/scan-gram.l (%default-prec): New token.
9391 * src/reader.h (default_prec): New flag.
9392 * src/reader.c: Likewise.
9393 (packgram): Handle it.
9394 * tests/conflicts.at (%default-prec without %prec,
9395 %default-prec with %prec, %default-prec 1): New tests.
9396
9397 2003-09-30 Paul Eggert <eggert@twinsun.com>
9398
9399 * tests/testsuite.at: Include local.at, not input.at, fixing
9400 a typo in the 2003-08-25 patch.
9401
9402 2003-08-27 Akim Demaille <akim@epita.fr>
9403
9404 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9405 GCC warnings.
9406
9407 2003-08-26 Akim Demaille <akim@epita.fr>
9408
9409 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9410 "<\#" to avoid magic from Gnus when posting parts of this script.
9411
9412 2003-08-26 Akim Demaille <akim@epita.fr>
9413
9414 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9415 (Parser::parse): here.
9416 Adjust: nerrs and errstatus is now replaced by...
9417 (Parser::nerrs_, Parser::errstatus_): New.
9418
9419 2003-08-25 Akim Demaille <akim@epita.fr>
9420
9421 * config/announce-gen, Makefile.cfg: New.
9422 * Makefile.am: Adjust.
9423 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9424 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9425
9426 2003-08-25 Akim Demaille <akim@epita.fr>
9427
9428 When reducing initial empty rules, Bison parser read an initial
9429 location that is not defined. This results in garbage, and that
9430 affects Bison's own parser. Therefore we need (i) to extend Bison
9431 to support a means to initialize this location, and (ii) to use
9432 this CVS Bison to fix CVS Bison's parser.
9433
9434 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9435 with...
9436 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9437 * src/parse-gram.y: Adjust.
9438 (%initial-action): New.
9439 (%error-verbose): Since we require CVS Bison, there is no reason
9440 not to use it.
9441 * src/scan-gram.l: Adjust.
9442 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9443 * data/yacc.c (yyparse): Use b4_initial_action.
9444
9445 2003-08-25 Akim Demaille <akim@epita.fr>
9446
9447 * doc/bison.texinfo: Don't promote stdout for error messages.
9448
9449 2003-08-25 Akim Demaille <akim@epita.fr>
9450
9451 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9452 From Alexandre Duret-Lutz.
9453
9454 2003-08-25 Akim Demaille <akim@epita.fr>
9455
9456 Version 1.875c.
9457
9458 2003-08-25 Akim Demaille <akim@epita.fr>
9459
9460 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9461 Use them.
9462
9463 2003-08-25 Akim Demaille <akim@epita.fr>
9464
9465 * data/lalr1.cc (Parser::reduce_print_): New.
9466 Use it.
9467
9468 2003-08-25 Akim Demaille <akim@epita.fr>
9469
9470 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9471 error recovery loops. This patch is based on
9472 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
9473 Also, augment the similarity between lalr1.cc and yacc.c.
9474 Note: the locations of error recovery rules are not correct yet.
9475
9476 * data/lalr1.cc: Comment changes to augment the similarity between
9477 lalr1.cc and yacc.c.
9478 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
9479 (yyerrlab1): Remove, but where it used to be (now the bottom part of
9480 yyerrlab), when hitting EOF, pop the whole stack here instead of
9481 merely falling thru the default error handling mechanism.
9482 (yyerrorlab): New label, with the old contents of YYERROR,
9483 plus the following change: pop the stack of rhs corresponding
9484 to the production that invoked YYERROR. That is how Yacc
9485 behaves (required by POSIX).
9486 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
9487 fail.
9488
9489 2003-08-25 Akim Demaille <akim@epita.fr>
9490
9491 Tune local.at so that people can "autom4te -l autotest calc.at -o
9492 calc" for instance, to extract a sub test suite.
9493
9494 * tests/testsuite.at: Move the initialization, Autotest version
9495 requirement, and AT_TESTED invocation into...
9496 * tests/local.at: here.
9497 * tests/testsuite.at: Include it for compatibility with Autoconf
9498 2.57.
9499 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
9500 be ignore.
9501
9502 2003-08-04 Paul Eggert <eggert@twinsun.com>
9503
9504 Rework code slightly to avoid gcc -Wtraditional warnings.
9505 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
9506 The returned value is now stored in *YY0. All callers changed.
9507 * src/output.c (merge_output): Adjust to the above change.
9508
9509 2003-07-26 Paul Eggert <eggert@twinsun.com>
9510
9511 * data/glr.c (YYASSERT): New macro.
9512 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
9513 yyresolveStates, yyprocessOneStack):
9514 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
9515 Derived from a suggestion by Frank Heckenbach.
9516
9517 2003-07-25 Paul Eggert <eggert@twinsun.com>
9518
9519 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
9520 for portability to K&R C (after ansi2knr, presumably). See
9521 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
9522 by Frank Heckenbach, though I have omitted the structure-initialization
9523 part of his glr-knr.diff patch since I recall that the Portable
9524 C Compiler didn't require that change.
9525
9526 Let the user specify how to allocate and free memory.
9527 Derived from a suggestion by Frank Heckenbach in
9528 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
9529 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
9530 All uses of free, malloc, realloc changed to use these macros,
9531 and unnecessary casts removed.
9532 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
9533
9534 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
9535
9536 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
9537 use s.empty() rather than s == "" to test for empty string; see
9538 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
9539 (trivial change)
9540
9541 2003-06-25 Akim Demaille <akim@epita.fr>
9542
9543 * config/depcomp, config/install-sh: Update from masters.
9544
9545 2003-06-20 Paul Eggert <eggert@twinsun.com>
9546
9547 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
9548 and return properly parenthesized result.
9549 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
9550 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9551 Remove unnecessary parentheses from uses.
9552 * doc/bison.texinfo (Location Default Action): Describe the
9553 conventions for parentheses.
9554
9555 2003-06-19 Paul Eggert <eggert@twinsun.com>
9556
9557 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
9558 yyreportTree): Do not assume that size_t is the same width as int,
9559 when printing sizes. Print sizes using an unsigned format.
9560 Problem reported by Frank Heckenbach in
9561 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
9562
9563 Port to Forte Developer 7 C compiler.
9564 * data/glr.c (struct YYLTYPE): If locations are not being used,
9565 declare a single dummy member, as empty structs do not conform
9566 to the C standard.
9567 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
9568 the Forte Developer 7 C compiler complains that end-of-loop
9569 code is not reached.
9570
9571 2003-06-17 Paul Eggert <eggert@twinsun.com>
9572
9573 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
9574 avoid warnings from picky compilers about redefinition of PARAMS.
9575
9576 2003-06-17 Paul Eggert <eggert@twinsun.com>
9577
9578 Version 1.875b.
9579
9580 * NEWS: Document 1.875b.
9581
9582 * lib/bbitset.h: Do not include config.h; that's the includer's job.
9583 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
9584 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
9585 Don't use 'index' in comments, as it's a builtin fn on some hosts.
9586 * lib/bitset_stats.c: Include gettext.h unconditionally, as
9587 per recent gettext manual's suggestion.
9588 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
9589 Use prototypes, not old-style definitions.
9590 * lib/lbitset.c (lbitset_unused_clear): Likewise.
9591 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
9592 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
9593 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
9594 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
9595 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
9596 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
9597 vbitset_or_and_cmp, vbitset_copy): Likewise.
9598
9599 * lib/libiberty.h: Do not include config.h; that's the includer's job.
9600 Do not include <stdlib.h>.
9601 (PARAMS): Define unconditionally for C89.
9602 (ATTRIBUTE_NORETURN): Remove.
9603 (ATTRIBUTE_UNUSED): Define unconditionally.
9604
9605 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
9606 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
9607 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
9608 * lib/vbitset.c, lib/vbitset.h: New files.
9609 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9610 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
9611 from libbitset.
9612
9613 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
9614 `How Can I Reset @code{yyparse}', since texinfo does not allow
9615 arbitrary @ in node names.
9616
9617 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
9618 shouldn't be needed according to the gettext 0.12.1 documentation
9619 but which seem to be needed anyway: codeset.m4 glibc21.m4
9620 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
9621 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
9622 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
9623
9624 * lib/.cvsignore: Add stdbool.h.
9625 * m4/.cvsignore: Add nls.m4, po.m4.
9626
9627 Upgrade to CVS gnulib.
9628 * stdbool_.h: File renamed from stdbool.h.in.
9629 * configure.ac (AM_STDBOOL_H): Invoke this instead of
9630 AC_HEADER_STDBOOL.
9631 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
9632 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
9633 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
9634 (MOSTLYCLEANFILES): New var.
9635 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
9636 (stdbool.h): New rule.
9637 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
9638 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
9639 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
9640 m4/quote.m4: Upgrade to today's gnulib.
9641
9642 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
9643 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
9644 the tests right now.
9645 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
9646 yyerror are declared before use; C99 requires this.
9647
9648 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9649
9650 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
9651 first.
9652 (yyrecoverSyntaxError): Correct the logic for setting and testing
9653 yyerrState.
9654 Correct comment on handling EOF.
9655 Allow states with only a default reduction, rather than failing
9656 (I can't quite reconstruct why these were not allowed before).
9657
9658 Fixes to avoid problem that $-N rules in GLR parsers can cause
9659 buffer overruns, corrupting state.
9660
9661 * src/output.c (prepare_rules): Output max_left_semantic_context
9662 definition.
9663 * src/reader.h (max_left_semantic_context): New variable declaration.
9664 * src/scan-gram.l (max_left_semantic_context): Define.
9665 (handle_action_dollar): Update max_left_semantic_context.
9666 * data/glr.c (YYMAXLEFT): New definition.
9667 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
9668 (yyresolveAction): Ditto.
9669
9670 Fixes to problems with location handling in GLR parsers reported by
9671 Frank Heckenbach (2003/06/05).
9672
9673 * data/glr.c (YYLTYPE): Make trivial if locations not used.
9674 (YYRHSLOC): Add parentheses, and define only if locations used.
9675 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
9676 locations not used.
9677 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
9678 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
9679
9680 * tests/cxx-type.at: Exercise location information; update tests
9681 to differentiate output with and without locations.
9682 Remove forward declarations of yylex and yyerror---caused errors
9683 because default YYLTYPE not yet defined.
9684 Change semantic actions to compute strings, rather than printing
9685 them directly (to test proper passing of semantics values). Change
9686 output to prefix notation and update test data and expected results.
9687 (yylex): Track locations.
9688 (stmtMerge): Return value rather than printing, and include arguments
9689 in value.
9690
9691 2003-06-03 Paul Eggert <eggert@twinsun.com>
9692
9693 Avoid warnings generated by GCC 2.95.4 when Bison is
9694 configured with --enable-gcc-warnings.
9695 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
9696 yy::]b4_parser_class_name[::translate_,
9697 yy::Stack::operator[] (unsigned),
9698 yy::Stack::operator[] (unsigned) const,
9699 yy::Slice::operator[] (unsigned),
9700 yy::Slice::operator[] (unsigned) const):
9701 Rename local vars to avoid warnings.
9702 * tests/glr-regression.at (Improper handling of embedded actions
9703 and $-N in GLR parsers): Remove unused local variable from yylex.
9704 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
9705 (void) as arg when not pure, since we now assume C89 when building
9706 Bison. Pacify GCC by using parameter.
9707
9708 2003-06-02 Paul Eggert <eggert@twinsun.com>
9709
9710 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
9711 yy::Location::lines, yy::Location::columns): Rename arguments
9712 to avoid shadowing; this removes a warning generated by GCC 3.3.
9713
9714 2003-06-01 Paul Eggert <eggert@twinsun.com>
9715
9716 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
9717 to g++, as GCC 3.3 complains if you do it.
9718 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
9719 everything that WARNING_CFLAGS has, except omit warnings
9720 not suitable for C++.
9721 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
9722 * tests/atlocal.in (CXXFLAGS): New var.
9723 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
9724
9725 Fix a GLR parser bug I reported in February; see
9726 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
9727 The problem was that GLR parsers did not conform to the C standard,
9728 because actions like { $1 = $2 + $3; } expanded to expressions
9729 that invoked YYFILL in separate subexpressions, and YYFILL assigned
9730 to a local variable. The C standard says that expressions
9731 like (var = f ()) + (var = f ()) have undefined behavior.
9732 Another problem was that GCC sometimes issues warnings that
9733 yyfill and its parameters are unused.
9734
9735 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
9736 as possibly unused.
9737 (yyfill): New function.
9738 (YYFILL): Use it.
9739 (yyuserAction): Change type of yynormal to bool, so that it matches
9740 the new yyfill signature. Mark it as possibly unused.
9741
9742
9743 Follow up on a bug I reported in February, where a Bison-generated
9744 parser can loop. Provide a test case and a fix for yacc.c. I
9745 don't have a fix for lalr1.cc or for glr.c, unfortunately.
9746 The original bug report is in:
9747 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
9748
9749 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
9750 macro's size was becoming unwieldy.
9751 (yyerrlab): Do not discard an empty lookahead symbol, as this
9752 might destroy garbage.
9753 (yyerrorlab): New label, with the old contents of YYERROR,
9754 plus the following change: pop the stack of rhs corresponding
9755 to the production that invoked YYERROR. That is how Yacc
9756 behaves, and POSIX requires this behavior.
9757 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
9758 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
9759 Define 'alarm' to do nothing if unistd.h is not available.
9760 Add a new rule "exp: '-' error;" to test the above change to
9761 data/yacc.c. Use 'alarm' to abort any test taking longer than
9762 10 seconds, as it's probably looping.
9763 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
9764 Also, the new yacc.c generates two fewer diagnostics for an
9765 existing test.
9766
9767 2003-05-24 Paul Eggert <eggert@twinsun.com>
9768
9769 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
9770 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
9771 This fixes a problem reported by John Bowman when the Compaq/HP
9772 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
9773 -ansi -Wall -gall).
9774 * data/yacc.c (union yyalloc): Likewise.
9775 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
9776
9777 Switch from 'int' to 'bool' where that makes sense.
9778
9779 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
9780 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
9781 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
9782 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
9783 Return or accept bool, not int. All callers changed.
9784 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
9785 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
9786 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
9787 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
9788 bitset_or_and_cmp_): Likewise.
9789 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
9790 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
9791 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
9792 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
9793 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
9794 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
9795 bitset_stats_or_and_cmp): Likewise.
9796 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
9797 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
9798 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
9799 ebitset_xor_cmp): Likewise.
9800 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
9801 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
9802 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
9803 lbitset_xor_cmp): Likewise.
9804 * lib/bbitset.h: Include <stdbool.h>.
9805 (struct bitset_vtable): The following members now return bool, not
9806 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
9807 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
9808 or_and_cmp).
9809 * src/conflicts.c (count_rr_conflicts): Likewise.
9810 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
9811 All uses changed.
9812 * lib/ebitset.c (ebitset_obstack_init): Likewise.
9813 * lib/lbitset.c (lbitset_obstack_init): Likewise.
9814 * src/getargs.c (debug_flag, defines_flag, locations_flag,
9815 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9816 graph_flag): Likewise.
9817 * src/getargs.h (debug_flag, defines_flag, locations_flag,
9818 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9819 graph_flag): Likewise.
9820 * src/output.c (error_verbose): Likewise.
9821 * src/output.h (error_verbose): Likewise.
9822 * src/reader.c (start_flag, typed): Likewise.
9823 * src/reader.h (typed): Likewise.
9824 * src/getargs.c (LOCATIONS_OPTION): New constant.
9825 (long_options, getargs): Use it.
9826 * src/lalr.c (build_relations): Use bool, not int.
9827 * src/nullable.c (nullable_compute): Likewise.
9828 * src/print.c (print_reductions): Likewise.
9829 * src/tables.c (action_row, pack_vector): Likewise.
9830 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
9831 * src/output.c (prepare): Use it.
9832 * src/output.c (token_definitions_output,
9833 symbol_destructors_output, symbol_destructors_output): Use string,
9834 not boolean integer, to keep track of whether to output separator.
9835 * src/print_graph.c (print_core): Likewise.
9836 * src/state.c (state_rule_lookaheads_print): Likewise.
9837
9838 * config/install-sh: Sync from automake 1.7.5.
9839
9840 2003-05-14 Paul Eggert <eggert@twinsun.com>
9841
9842 * src/parse-gram.y (rules_or_grammar_declaration): Require a
9843 semicolon after a grammar declaration, in the interest of possible
9844 future changes to the Bison input language.
9845 Do not allow a stray semicolon at the start of the grammar.
9846 (rhses.1): Allow one or more semicolons after any rule, including
9847 just before "|" as required by POSIX.
9848 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
9849 grammar.
9850
9851 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
9852
9853 %parse-param support for lalr1.cc.
9854
9855 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
9856 b4_cc_constructor_calls, b4_cc_constructor_call,
9857 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
9858 definitions.
9859 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
9860 parse-param arguments.
9861 (yy::b4_parser_class_name): Declare instance variables to
9862 hold parse-param arguments.
9863 * tests/calc.at: s/value/semantic_value/ because value clashes
9864 with a member of yy::b4_parser_class_name. Adjust C++ code
9865 to handle %parse-param. Enable %parse-param test in C++.
9866
9867 2003-05-12 Paul Eggert <eggert@twinsun.com>
9868
9869 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
9870 English a bit. Fix fclose typo. Change "const char" to "char
9871 const", and use ANSI C rather than K&R for "main". Suggest
9872 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
9873 and suggest yy_switch_to_buffer.
9874
9875 2003-05-05 Paul Eggert <eggert@twinsun.com>
9876
9877 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
9878 C89. This avoids a diagnostic on compilers that define __STDC__
9879 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
9880 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
9881
9882 2003-05-03 Paul Eggert <eggert@twinsun.com>
9883
9884 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
9885 Do not overrun array bounds.
9886 This should fix a bug reported today by Olatunji Oluwabukunmi in
9887 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
9888
9889 2003-04-29 Akim Demaille <akim@epita.fr>
9890
9891 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
9892 * src/getargs.c, src/getargs.h: here, as bool, not int.
9893 (nondeterministic_parser): New.
9894 * src/parse-gram.y, src/scan-gram.l: Support
9895 %nondeterministic-parser.
9896 * src/output.c (prepare): Use nondeterministic_parser instead
9897 of glr_parser where appropriate.
9898 * src/tables.c (conflict_row, action_row, save_row)
9899 (token_actions, token_actions, pack_vector): Ditto.
9900
9901 2003-04-29 Akim Demaille <akim@epita.fr>
9902
9903 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
9904
9905 2003-04-29 Akim Demaille <akim@epita.fr>
9906
9907 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
9908 with %pure-parser and %locations to exercise the patch from Yakov
9909 Markovitch below.
9910
9911 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
9912
9913 * data/yacc.c: (b4_lex_param): Corrected for the case where
9914 %lex-param is provided and %pure-parser isn't.
9915
9916 2003-04-27 Paul Eggert <eggert@twinsun.com>
9917
9918 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
9919 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
9920 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
9921 if it is not defined.
9922 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
9923
9924 2003-04-26 Paul Eggert <eggert@twinsun.com>
9925
9926 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
9927 Declare to be of type suitable for the ninf value itself, not of
9928 type suitable for the corresponding table, since the latter might
9929 be unsigned but the ninf value might be negative. This fixes a
9930 bug reported by Alexandre Duret-Lutz in
9931 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
9932
9933 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
9934 invokes it. We shouldn't invoke it twice because it will attempt
9935 to put error.o in the archive twice. This fixes a glitch reported
9936 by Martin Mokrejs in
9937 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
9938
9939 2003-04-21 Paul Eggert <eggert@twinsun.com>
9940
9941 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
9942 to gnulib.
9943
9944 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
9945
9946 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
9947 Fix obvious typo that results in uncompilable GLR parsers
9948 when both %pure-parser and %locations are used. (trivial change)
9949
9950 2003-04-17 Paul Eggert <eggert@twinsun.com>
9951
9952 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
9953 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
9954 Do not insert the expected token via unput, as this runs afoul
9955 of a POSIX-compatibility bug in flex 2.5.31.
9956 All uses changed to BEGIN the parent state,
9957 since we no longer insert the expected token via unput.
9958 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
9959 that is no longer emitted after the above change.
9960
9961 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
9962 the first one. This change is from Paul Hilfinger, and it fixes
9963 regression reported by Werner Lemberg in
9964 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
9965
9966 (resolve_sr_conflict): Don't invoke state_errs_set
9967 unless one or more tokens have been explicitly made errors.
9968 Otherwise, the above change causes Bison to abort.
9969
9970 * tests/existing.at (GNU pic Grammar): New test case, taken from
9971 Lemberg's email.
9972
9973 2003-03-31 Akim Demaille <akim@epita.fr>
9974
9975 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
9976
9977 2003-03-31 Akim Demaille <akim@epita.fr>
9978
9979 * src/output.c (prepare_symbols): Avoid trailing spaces in the
9980 output.
9981
9982 2003-03-31 Akim Demaille <akim@epita.fr>
9983
9984 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
9985 From Paul Hilfinger.
9986
9987 2003-03-29 Akim Demaille <akim@epita.fr>
9988
9989 * m4/error.m4: Do not put under dynamic conditions some code which
9990 expansion is under static control.
9991
9992 2003-03-29 Akim Demaille <akim@epita.fr>
9993
9994 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
9995
9996 2003-03-29 Akim Demaille <akim@epita.fr>
9997
9998 * doc/bison.texinfo (Strings are Destroyed): New.
9999
10000 2003-03-13 Paul Eggert <eggert@twinsun.com>
10001
10002 * .cvsignore: Add configure.lineno.
10003 * src/.cvsignore: Add yacc.
10004 * tests/.cvsignore: Add testsuite.log.
10005 * doc/fdl.texi: Sync with latest FSF version.
10006
10007 2003-03-12 Paul Eggert <eggert@twinsun.com>
10008
10009 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
10010 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
10011 cursor, instead of leaving it undefined. This fixes a bug
10012 reported by Tim Van Holder in
10013 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
10014 * tests/input.at (Torturing the Scanner): Test the scanner on
10015 an empty input file, which was Tim Van Holder's test case.
10016
10017 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
10018 <sys/resource.h> can be included, include sys/time.h and
10019 sys/times.h first, if available. This works around the SunOS
10020 4.1.4 porting bug reported by Bruce Becker in
10021 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
10022
10023 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
10024 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
10025 AC_HEADER_SYS_WAIT.
10026
10027 Merge changes from gnulib. This was prompted because the CVS
10028 snapshot didn't build on Solaris 7 due to strnlen problems.
10029
10030 These changes need to be merged back into gnulib:
10031 * lib/hash.c: Include <stdbool.h> unconditionally.
10032 * m4/onceonly.m4 (m4_quote): New macro.
10033 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
10034 Quote AC_FOREACH variable-expansions properly.
10035 The 2003-01-03 obstack.h change also needs merging.
10036 {end of changes requiring merging}
10037
10038 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10039 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
10040 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
10041 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
10042 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
10043 New files, imported from gnulib.
10044 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
10045 above.
10046
10047 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
10048 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
10049 gnulib sources.
10050
10051 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
10052 Add.
10053 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
10054 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
10055 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
10056 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
10057 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
10058 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
10059 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
10060 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
10061 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
10062 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
10063 (jm_PREREQ_ARGMATCH): Remove.
10064 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
10065 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
10066
10067 * src/system.h: Include <stdbool.h> unconditionally.
10068
10069 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
10070 assuming at least C89 in the bitset code for some time now.
10071
10072 2003-03-03 Akim Demaille <akim@epita.fr>
10073
10074 * ro.po: New.
10075
10076 2003-03-02 Akim Demaille <akim@epita.fr>
10077
10078 * doc/bison.texinfo (Table of Symbols): Reactivate the
10079 documentation for %lex-param, and %parse-param.
10080
10081 2003-03-02 Akim Demaille <akim@epita.fr>
10082
10083 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
10084 generate verbose error messages.
10085 Use the number of tokens as an upper bound in yytname, as it
10086 cannot be a non terminal.
10087
10088 2003-03-02 Akim Demaille <akim@epita.fr>
10089
10090 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
10091 message.
10092
10093 2003-03-02 Akim Demaille <akim@epita.fr>
10094
10095 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
10096 Use them to exercise yycheck overrun.
10097 Based on Andrew Suffield's grammar.
10098
10099 2003-03-02 Akim Demaille <akim@epita.fr>
10100
10101 Create tests/local.at for Bison generic testing macros.
10102
10103 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10104 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10105 This new file.
10106 * tests/calc.at (AT_CHECK_CALC): Adjust.
10107 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10108 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10109 * tests/local.at: here.
10110 (AT_COMPILE_CXX): Tags the tests using it as c++.
10111 Ignore the test if CXX is not functional.
10112
10113 2003-03-01 Paul Eggert <eggert@twinsun.com>
10114
10115 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10116 not loc->end, since loc->end might contain garbage and this leads
10117 to undefined behavior on some platforms.
10118 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10119 depend on *loc, so that the reader doesn't give the the false
10120 impression that *loc is initialized.
10121 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10122 does not survive the return.
10123
10124 2003-03-01 Akim Demaille <akim@epita.fr>
10125
10126 * src/scan-gram.l (code_start): Always initialize it when entering
10127 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10128 yylex invocation. An alternative would be making it static, but
10129 then it starts with the second %%'s beginning, instead of its end.
10130
10131 2003-02-28 Paul Eggert <eggert@twinsun.com>
10132
10133 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10134 around a UnixWare 7.1.1 porting bug reported by John Hughes in
10135 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
10136
10137 2003-02-26 Paul Eggert <eggert@twinsun.com>
10138
10139 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10140 Remove Sequent/Pyramid discussion (nobody uses them any more).
10141 Merge VMS and MS-DOS discussion; these ports may well be dead
10142 but let's keep mentioning them for now. Put <> around email
10143 addresses. Add copyright notice.
10144
10145 2003-02-24 Paul Eggert <eggert@twinsun.com>
10146
10147 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10148 to avoid collision with flex use of yylineno.
10149 Problem reported by Bruce Lilly in
10150 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
10151 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10152 * data/yacc.c (yy_reduce_print): Likewise.
10153
10154 * config/depcomp: Sync with Automake 1.7.3.
10155
10156 2003-02-21 Akim Demaille <akim@epita.fr>
10157
10158 * data/lalr1.cc: Use temporary variables instead of casts to
10159 change integer types.
10160 Suggested by Paul Eggert.
10161
10162 2003-02-21 Akim Demaille <akim@epita.fr>
10163
10164 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10165 to avoid confusions with lalr1.cc's notion of Position.
10166 Suggested by Paul Eggert.
10167
10168 2003-02-20 Akim Demaille <akim@epita.fr>
10169
10170 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10171 before initial_columns.
10172 (location.hh): Use consistent variable names when defining the
10173 operator<<.
10174 Use "last" so that we subtract from Positions, not from unsigned.
10175
10176 2003-02-20 Akim Demaille <akim@epita.fr>
10177
10178 * data/lalr1.cc (position.hh): New subfile, including the extended
10179 and Doxygen'ed documentation of class Position.
10180 (location.hh): Use it.
10181 Document a` la Doxygen.
10182 With the help of Benoit Perrot.
10183
10184 2003-02-20 Akim Demaille <akim@epita.fr>
10185
10186 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10187 AT_YACC_IF.
10188 Redefine AT_YYERROR_SEES_LOC_IF using it.
10189 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10190 not defined.
10191 Don't use the location in yy::Parser::error_ and
10192 yy::Parser::print_ when not %locations.
10193 Activate more lalr1.cc tests.
10194
10195 2003-02-19 Akim Demaille <akim@epita.fr>
10196
10197 * data/lalr1.cc: When displaying a line number, be sure to make it
10198 an int.
10199
10200 2003-02-19 Akim Demaille <akim@epita.fr>
10201
10202 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10203 Remove, useless.
10204 (YYABORT, YYACCEPT, YYERROR): New.
10205 * tests/calc.at: Renable the lalr1.cc test.
10206
10207 2003-02-19 Akim Demaille <akim@epita.fr>
10208
10209 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10210 error recovery, mixing with/without pops and discarding of the
10211 lookahead.
10212 Exercise YYERROR.
10213 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10214
10215 2003-02-17 Paul Eggert <eggert@twinsun.com>
10216
10217 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10218 * tests/testsuite.at (AT_COMPILE): Use them.
10219 This fixes the testsuite problem reported by Robert Lentz in
10220 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
10221
10222 2003-02-12 Paul Eggert <eggert@twinsun.com>
10223
10224 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10225 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
10226 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
10227 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10228 Check for malloc failure, for consistency with yacc.c.
10229 (yytname_size): Remove, for consistency with yacc.c.
10230
10231 The bug still remains in data/lalr1.cc, as I didn't have time
10232 to fix it there.
10233
10234 2003-02-06 Akim Demaille <akim@epita.fr>
10235
10236 * configure.ac (GXX): Rename as...
10237 (CXX): this, to keep the original Autoconf semantics.
10238 Require 2.57.
10239 * data/lalr1.cc: Fix b4_copyright invocations.
10240 If YYDEBUG is not defined, don't depend upon name_ being defined.
10241 (location.hh): Include string and iostream.
10242 (Position::filename): New member.
10243 (Position::Position ()): New.
10244 (operator<< (Position)): New.
10245 (operator- (Position, int)): New.
10246 (Location::first, Location::last): Rename as...
10247 (Location::begin, Location::end): these, to mock the conventional
10248 iterator names.
10249 (operator<< (Location)): New.
10250 * tests/atlocal.in (CXX): New.
10251 * tests/testsuite.at (AT_COMPILE_CXX): New.
10252 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10253 locations in a more synthetic way.
10254 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10255 lalr1.cc is used.
10256 Adjust the C locations to match those from Emacs: first column is
10257 column 0.
10258 Change all the expected results.
10259 Conform to the GCS: simplify the locations when applicable.
10260 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10261 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10262 these CPP macros with the m4 macros new defined by...
10263 (AT_CHECK_PUSHDEFS): this, i.e.:
10264 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
10265 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
10266 New macros.
10267 (AT_CHECK_POPDEFS): Undefine them.
10268 (AT_CHECK_CALC_LALR1_CC): New.
10269 Use it for the first lalr1.cc test.
10270
10271 2003-02-04 Akim Demaille <akim@epita.fr>
10272
10273 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10274 Location as is defined.
10275
10276 2003-02-04 Akim Demaille <akim@epita.fr>
10277
10278 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10279 name_ being defined.
10280
10281 2003-02-03 Paul Eggert <eggert@twinsun.com>
10282
10283 * src/gram.h (start_symbol): Remove unused decl.
10284
10285 Use more-consistent naming conventions for local vars.
10286
10287 * src/derives.c (derives_compute): Change type of local var from
10288 int to rule_number.
10289 * src/gram.c (grammar_rules_partial_print): Likewise.
10290 * src/print.c (print_core): Likewise.
10291 * src/reduce.c (reduce_grammar_tables): Likewise.
10292
10293 * src/gram.c (grammar_dump): Change name of item_number *
10294 local var from r to rp.
10295 * src/nullable.c (nullable_compute): Likewise.
10296
10297 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10298
10299 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10300 for symbol or symbol_number var.
10301 * src/reader.c (grammar_start_symbol_set): Likewise.
10302 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10303 Likewise.
10304 * src/state.c (transitions_to): Likewise.
10305 * src/state.h: Likewise.
10306 * src/tables.c (symbol_number_to_vector_number): Likewise.
10307
10308 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10309 char * var.
10310
10311 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10312 var.
10313
10314 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10315 var.
10316
10317 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10318 Use str, not s, for char * var. Use ch, not c, for character var.
10319 Use size for size var.
10320
10321 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10322 char * var.
10323 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10324 uniqstr var.
10325 * src/uniqstr.h: Likewise.
10326
10327 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10328 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10329 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10330 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10331 param to have same name as that of enum, so that we don't use
10332 "s" to stand for a non-state.
10333
10334 2003-02-02 Akim Demaille <akim@epita.fr>
10335
10336 * src/scan-skel.l: Scan more than one inert character per yylex
10337 invocation.
10338
10339 2003-02-01 Paul Eggert <eggert@twinsun.com>
10340
10341 Version 1.875a.
10342
10343 * po/LINGUAS: Add ms.
10344
10345 2003-01-30 Akim Demaille <akim@epita.fr>
10346
10347 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10348
10349 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10350
10351 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10352 of $1.
10353
10354 Changes in response to error report by S. Eken: GLR mode does not
10355 handle negative $ indices or $ indices in embedded rules correctly.
10356 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
10357
10358 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10359 (b4_rhs_location): Ditto.
10360 (yyfill): New function to copy from stack tree into array
10361 incrementally.
10362 (yyuserAction): Modify to allow incremental move of semantic values
10363 to rhs array when in GLR mode.
10364 Define YYFILL to use in user-defined actions to fill semantic array
10365 as needed.
10366 Remove dummy use of yystack, as there is now a guaranteed use.
10367 (yydoAction): Modify to allow incremental move of semantic values
10368 to rhs array when in GLR mode.
10369 (yyresolveAction): Ditto.
10370 (yyglrShiftDefer): Update comment.
10371 (yyresolveStates): Use X == NULL for pointers, not !X.
10372 (yyglrReduce): Ditto.
10373 (yydoAction): Ditto
10374
10375 * tests/glr-regr1.at: Rename to ...
10376 * tests/glr-regression.at: Add new regression test for the problems
10377 described above (adapted from S. Eken).
10378 Update copyright notice.
10379 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10380 * tests/Makefile.am: Ditto.
10381
10382 2003-01-28 Paul Eggert <eggert@twinsun.com>
10383
10384 * data/lalr1.cc: Do not use @output_header_name@ unless
10385 b4_defines_flag is set. This fixes two bugs reported by
10386 Tim Van Holder in
10387 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10388 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
10389
10390 2003-01-21 Paul Eggert <eggert@twinsun.com>
10391
10392 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10393 we don't need to worry about yyerrlab1 being reported as an
10394 "unused label" by non-GCC C compilers. The downside is that if
10395 locations are used then a couple of statements are duplicated each
10396 time YYERROR is invoked, but the upside is that the warnings
10397 should vanish.
10398 (yyerrlab1): Move code to YERROR.
10399 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10400 This reverts some of the 2002-12-27 change.
10401
10402 2003-01-17 Paul Eggert <eggert@twinsun.com>
10403
10404 * src/output.c (symbol_printers_output): Fix typo that led
10405 to core dump. Problem reported by Antonio Rus in
10406 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
10407
10408 2003-01-13 Akim Demaille <akim@epita.fr>,
10409 Quoc Peyrot <chojin@lrde.epita.fr>,
10410 Robert Anisko <anisko_r@lrde.epita.fr>
10411
10412 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10413 when the stacks contain one element, as the loop would otherwise
10414 free the last state, and then use the top state (the one we just
10415 popped). This means that the initial elements will not be freed
10416 explicitly, as is the case in yacc.c; it is not a problem, as
10417 these elements have fake values.
10418
10419 2003-01-11 Paul Eggert <eggert@twinsun.com>
10420
10421 * NEWS: %expect-violations are now just warnings, reverting
10422 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10423 bootstrapping problem reported by Matthias Klose; see
10424 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
10425 * src/conflicts.c (conflicts_print): Likewise.
10426 * tests/conflicts.at (%expect not enough, %expect too much,
10427 %expect with reduce conflicts): Likewise.
10428 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10429 that the warning is enabled if the number of conflicts changes
10430 (not necessarily increases).
10431
10432 * src/getargs.c (version): Update copyright year.
10433
10434 2003-01-09 Akim Demaille <akim@epita.fr>
10435
10436 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10437
10438 2003-01-08 Paul Eggert <eggert@twinsun.com>
10439
10440 * Makefile.maint (WGETFLAGS):
10441 New macro, containing "-C off" to disable proxy caches.
10442 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10443 (rel-check): Use $(WGET) instead of wget.
10444
10445 2003-01-06 Paul Eggert <eggert@twinsun.com>
10446
10447 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10448 the GLR paper of Scott, Johnstone and Hussain.
10449
10450 2003-01-04 Paul Eggert <eggert@twinsun.com>
10451
10452 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10453 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10454 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10455 (EXTRA_LIBRARIES): New var, for liby.a.
10456 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10457 (EXTRA_SCRIPTS): New var, for yacc.
10458
10459 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10460 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10461 Problem reported by Nelson H. F. Beebe.
10462
10463 2003-01-03 Paul Eggert <eggert@twinsun.com>
10464
10465 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10466 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10467 when compiling Bison 1.875's `bitset bset = obstack_alloc
10468 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10469
10470 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10471 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10472 grow to a huge size with typical invocation.
10473
10474 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
10475 Use the pattern recommended by Autoconf 2.57, except also protect
10476 against double-definition.
10477 * src/system.h: Likewise.
10478 Portability issues reported by Nelson H. F. Beebe.
10479
10480 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
10481 All uses changed. Provide a definition in both C and C++.
10482 (yytrue, yyfalse): Define even if defined (__cplusplus).
10483
10484 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
10485 Reported by Nelson H. F. Beebe.
10486
10487 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
10488
10489 2003-01-02 Paul Eggert <eggert@twinsun.com>
10490
10491 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
10492 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
10493 Bug reported by Nelson H. F. Beebe.
10494
10495 2003-01-01 Paul Eggert <eggert@twinsun.com>
10496
10497 * Version 1.875.
10498
10499 2002-12-30 Paul Eggert <eggert@twinsun.com>
10500
10501 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
10502 Moved here from...
10503 (<INITIAL>","): Here. This causes stray "," to be treated
10504 more uniformly.
10505
10506 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
10507 last brace in braced code when not in Yacc mode, for compatibility
10508 with Bison 1.35. This resurrects the 2001-12-15 patch to
10509 src/reader.c.
10510
10511 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
10512 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
10513
10514 2002-12-28 Paul Eggert <eggert@twinsun.com>
10515
10516 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
10517 that of SYM's type. This fixes Debian bug 168069, reported by
10518 Thomas Olsson.
10519
10520 2002-12-28 Paul Eggert <eggert@twinsun.com>
10521
10522 Version 1.75f.
10523
10524 Switch back to the Yacc style of conflict reports, undoing some
10525 of the 2002-07-30 change.
10526 * doc/bison.texinfo (Understanding): Use Yacc style for
10527 conflict reports. Also, use new way of locating rules.
10528 * src/conflicts.c (conflict_report):
10529 Renamed from conflict_report_yacc, removing the old
10530 'conflict_report'. Translate the entire conflict report at once,
10531 so that we don't assume that "," has the same interpretation in
10532 all languages.
10533 (conflicts_output): Use Yacc-style conflict report for each state,
10534 instead of our more-complicated style.
10535 (conflicts_print): Use Yacc-style conflict report, except print
10536 the input file name when not emulating Yacc.
10537 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
10538 Conflicted Reduction, %expect not enough, %expect too much,
10539 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
10540 * tests/existing.at (GNU Cim Grammar): Likewise.
10541 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
10542
10543 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
10544 fatal): Don't invoke fflush; it's not needed and it might even be
10545 harmful for stdout, as stdout might not be open.
10546 * src/reduce.c (reduce_print): Likewise.
10547
10548 2002-12-27 Paul Eggert <eggert@twinsun.com>
10549
10550 Fix a bug where error locations were not being recorded correctly.
10551 This problem was originally reported by Paul Hilfinger in
10552 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
10553
10554 * data/yacc.c (yyparse): New local var yylerrsp, to record the
10555 top of the location stack's error locations.
10556 (yyerrlab): Set it. When discarding a token, push its location
10557 onto yylerrsp so that we don't lose track of the error's end.
10558 (yyerrlab1): Now is only the target of YYERROR, so that we can
10559 properly record the location of the action that failed. For GCC
10560 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
10561 GCC warning about yyerrlab1 being unused if YYERROR is unused.
10562 (yyerrlab2): New label, which yyerrlab now falls through to.
10563 Compute the error's location by applying YYLLOC_DEFAULT to
10564 the locations of all the symbols that went into the error.
10565 * doc/bison.texinfo (Location Default Action): Mention that
10566 YYLLOC_DEFAULT is also invoked for syntax errors.
10567 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10568 Error locations include the locations of all the tokens that were
10569 discarded, not just the last token.
10570
10571 2002-12-26 Paul Eggert <eggert@twinsun.com>
10572
10573 * src/files.c: Include quote.h.
10574 (compute_output_file_names): Warn if we detect conflicting
10575 outputs to the same file. This should catch the misunderstanding
10576 exemplified by Debian Bug 165349, reported by Bruce Stephens..
10577
10578 * src/conflicts.c (conflicts_print): If the user specifies
10579 "%expect N", report an error if there are any reduce/reduce
10580 conflicts. This is what the manual says should happen.
10581 This fixes Debian bug 130890, reported by Anthony DeRobertis.
10582 * tests/conflicts.at (%expect with reduce conflicts): New test.
10583
10584 Don't use m4_include on relative file names, as it doesn't work as
10585 desired if there happens to be a file with that name under ".".
10586
10587 * m4sugar/version.m4: Remove; it was included but it wasn't used.
10588 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
10589 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
10590 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
10591 * src/output.c (output_skeleton): Use full path names when
10592 specifying a file to include; don't rely on include path, as
10593 it's unreliable when the working file contains a file with
10594 that name.
10595
10596 2002-12-25 Paul Eggert <eggert@twinsun.com>
10597
10598 Remove obsolete references to bison.simple and bison.hairy.
10599 Problem mentioned by Aubin Mahe in
10600 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
10601 * data/glr.c: Comment fix.
10602 * doc/bison.1: Remove references. Also, mention "yacc".
10603
10604 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
10605 with -g option.
10606
10607 * src/parse-gram.y (declaration): Use enum "report_states" rather
10608 than its numeric value 1.
10609
10610 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
10611 opening a new one. This fixes Debian bug 165349, reported by
10612 Bruce Stephens.
10613
10614 2002-12-24 Paul Eggert <eggert@twinsun.com>
10615
10616 Version 1.75e.
10617
10618 * Makefile.maint (cvs-update): Don't assume that the shell
10619 supports $(...), as Solaris sh doesn't.
10620
10621 * src/parse-gram.y (lloc_default): Remove test for empty
10622 nonterminals at the end, since it didn't change the result.
10623
10624 2002-12-24 Paul Eggert <eggert@twinsun.com>
10625
10626 If the user does not define YYSTYPE as a macro, Bison now declares it
10627 using typedef instead of defining it as a macro. POSIX requires this.
10628 For consistency, YYLTYPE is also declared instead of defined.
10629
10630 %union directives can now have a tag before the `{', e.g., the
10631 directive `%union foo {...}' now generates the C code
10632 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
10633 The default union tag is `YYSTYPE', for compatibility with Solaris 9
10634 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
10635 instead of `yyltype'.
10636
10637 `yystype' and `yyltype' are now obsolescent macros instead of being
10638 typedefs or tags; they are no longer documented and will be
10639 withdrawn in a future release.
10640
10641 * data/glr.c (b4_location_type): Remove.
10642 (YYSTYPE): Renamed from yystype.
10643 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
10644 (struct YYLTYPE): Renamed from struct yyltype.
10645 (YYLTYPE): Renamed from yyltype.
10646 (yyltype, yystype): New (and obsolescent) macros,
10647 for backward compatibility.
10648 * data/yacc.c: Likewise.
10649
10650 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
10651 does not specify a union tag. This is for compatibility with
10652 Solaris 9 yacc.
10653
10654 * src/parse-gram.y (add_param): 2nd arg is now char * not char
10655 const *, since it is now modified by stripping surrounding { }.
10656 (current_braced_code): Remove.
10657 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
10658 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
10659 trailing " {...}". Now of type <chars>.
10660 (grammar_declaration): Adjust to bundled tokens.
10661 (code_content): Remove; stripping is now done by add_param.
10662 (print_token_value): Print contents of bundled tokens.
10663 (token_name): New function.
10664
10665 * src/reader.h (braced_code, current_braced_code): Remove.
10666 (token_name): New decl.
10667
10668 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
10669 token_type, not braced_code code_kind. All uses changed.
10670 (SC_PRE_CODE): New state, for scanning after a keyword that
10671 has (or usually has) an immediately-following braced code.
10672 (token_type): New local var, to keep track of which token type
10673 to return when scanning braced code.
10674 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
10675 <INITIAL>"%parse-param", <INITIAL>"%printer",
10676 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
10677 instead of returning a token type immediately.
10678 (<INITIAL>"{"): Set token type.
10679 (<SC_BRACED_CODE>"}"): Use it.
10680 (handle_action_dollar, handle_action_at): Now returns bool
10681 indicating success. Fail if ! current_rule; this prevents a core dump.
10682 (handle_symbol_code_dollar, handle_symbol_code_at):
10683 Remove; merge body into caller.
10684 (handle_dollar, handle_at): Complain in invalid contexts.
10685
10686 * NEWS, doc/bison.texinfo: Document the above.
10687 * NEWS: Fix years and program names in copyright notice.
10688
10689 2002-12-17 Paul Eggert <eggert@twinsun.com>
10690
10691 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
10692 Reporting, Table of Symbols): Omit mentions of %lex-param and
10693 %parse-param from the documentation for now.
10694
10695 2002-12-15 Paul Eggert <eggert@twinsun.com>
10696
10697 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
10698 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
10699 lookahead symbol, and which sets yychar in parser actions) and it
10700 disagreed with the Bison documentation. Bug
10701 reported by Andrew Walrond.
10702
10703 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
10704 as the caller now does that.
10705 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
10706 (YYEMPTY): Parenthesize right hand side, since others use it.
10707 (yyparse): Don't assume that our generated code is the only code
10708 that sets yychar.
10709
10710 2002-12-13 Paul Eggert <eggert@twinsun.com>
10711
10712 Version 1.75d.
10713
10714 POSIX requires a "yacc" command.
10715 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
10716 (MOSTLYCLEANFILES): Add yacc.
10717 (yacc): New rule.
10718 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
10719 as an alias for bison y.
10720
10721 * po/LINGUAS: Add da.
10722
10723 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
10724 problem with latest <getopt.h>.
10725 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
10726
10727 * doc/fdl.texi: Upgrade to 1.2.
10728 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
10729 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
10730 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
10731 gnulib.
10732 * config/install-sh: Sync with autotools.
10733
10734 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
10735 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
10736 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
10737 locations are requested.
10738 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
10739 locations are requested.
10740
10741 2002-12-12 Paul Eggert <eggert@twinsun.com>
10742
10743 Remove unportable casts and storage allocation tricks.
10744 While we're at it, remove almost all casts, since they
10745 usually aren't needed and are a sign of trouble.
10746
10747 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
10748
10749 * src/derives.c (derives_compute): Do not subtract NTOKENS from
10750 the pointer DSET returned by malloc; this isn't portable.
10751 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
10752 Similarly for DERIVES.
10753 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
10754 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
10755 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
10756
10757 * src/derives.c (derives_compute): Do not bother invoking
10758 int_of_rule_number, since rule numbers are integers.
10759
10760 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
10761 rather than XMALLOC (char, N).
10762
10763 * src/files.c (filename_split): Rewrite to avoid cast.
10764
10765 * src/gram.h (symbol_number_as_item_number,
10766 item_number_as_symbol_number, rule_number_as_item_number,
10767 item_number_as_rule_number):
10768 Now inline functions rather than macros, to avoid casts.
10769 * src/state.h (state_number_as_int): Likewise.
10770 * src/tables.c (state_number_to_vector_number,
10771 symbol_number_to_vector_number): Likewise.
10772
10773 * src/gram.h (int_of_rule_number): Remove; no longer used.
10774
10775 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
10776 since the resulting storage is always stored into.
10777
10778 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
10779 where it's needed.
10780
10781 * src/muscle_tab.c (muscle_m4_output):
10782 Now inline. Return bool, not int.
10783 * src/state.c (state_compare): Likewise.
10784 * src/symtab.c (symbol_check_defined,
10785 symbol_check_alias_consistency, symbol_pack, symbol_translation,
10786 hash_compare_symbol, hash_symbol):
10787 Likewise.
10788 * src/uniqstr.c (uniqstr_print): Likewise.
10789 * src/muscle_tab.c (muscle_m4_output_processor):
10790 New function, to avoid casts.
10791 * src/state.c (state_comparator, stage_hasher): Likewise.
10792 * src/symtab.c (symbol_check_defined_processor,
10793 symbol_check_alias_consistency_processor, symbol_pack_processor,
10794 symbol_translation_processor, hash_symbol_comparator,
10795 hash_symbol_hasher): Likewise.
10796 * src/uniqstr.c (uniqstr_print_processor): Likewise.
10797 * src/muscle_tab.c (muscles_m4_output):
10798 Use new functions instead of casting old functions unportably.
10799 * src/state.c (state_hash_new): Likewise.
10800 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
10801 symbols_token_translations_init):
10802 Likewise.
10803 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
10804
10805 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
10806 var instead of casting to long, to avoid casts.
10807 (prepare_states): Use MALLOC rather than alloca, so that we don't
10808 have to worry about alloca.
10809 * src/state.c (state_hash_lookup): Likewise.
10810
10811 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
10812 local var instead of casting to unsigned char, to avoid casts.
10813
10814 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
10815 STATE_ALLOC): Remove.
10816 (transitions_new, errs_new, reductions_new, state_new): Use malloc
10817 rather than calloc, and use offsetof to avoid allocating slightly
10818 too much storage.
10819 (state_new): Initialize all members.
10820
10821 * src/state.c (state_hash): Use unsigned accumulator, not signed.
10822
10823 * src/symtab.c (symbol_free): Remove; unused.
10824 (symbol_get): Remove cast in lhs of assignment.
10825 (symbols_do): Now static. Accept generic arguments, not
10826 hashing-related ones.
10827
10828 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
10829 (symbol_processor): Remove.
10830 (symbols_do): Remove decl; now static.
10831
10832 * src/system.h (alloca): Remove; decl no longer needed.
10833 (<stddef.h>): Include, for offsetof.
10834 (<inttypes.>, <stdint.h>): Include if available.
10835 (uintptr_t): New type, if system lacks it.
10836 (CALLOC, MALLOC, REALLOC): New macros.
10837 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
10838 new macros.
10839
10840 * src/tables.c (table_size): Now int, to pacify GCC.
10841 (table_grow, table_ninf_remap): Use signed table size.
10842 (save_row): Don't bother initializing locals when not needed.
10843 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
10844 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
10845
10846 * src/vcg.h: Correct misspellings.
10847
10848 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
10849
10850
10851 * src/getargs.c (getargs): Don't assume EOF == -1.
10852
10853 2002-12-09 Paul Eggert <eggert@twinsun.com>
10854
10855 Change identifier spellings to avoid collisions with names
10856 that are reserved by POSIX.
10857
10858 Don't use names ending in _t, since POSIX reserves them.
10859 For consistency, remove _e and _s endings -- they're weren't
10860 needed to remove ambiguity. All uses changed.
10861 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
10862 turn was just renamed from struniq_t.
10863 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
10864 which in turn was just renamed from struniq_processor_t.
10865 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
10866 in turn was renamed from hash_compare_struniq_t.
10867 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
10868 (state_list): Renamed from state_list_t.
10869 * src/assoc.h (assoc): Renamed from assoc_t.
10870 * src/conflicts.c (enum conflict_resolution): Renamed from
10871 enum conflict_resolution_e.
10872 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
10873 (rule_list): Renamed from rule_list_t.
10874 * src/getargs.h (enum trace): Renamed from enum trace_e.
10875 (enum report): Renamed from enum report_e.
10876 * src/gram.h (item_number): Renamed from item_number_t.
10877 (rule_number): Renamed from rule_number_t.
10878 (struct rule_s): Remove the "rule_s" part; not used.
10879 (rule): Renamed from rule_t.
10880 (rule_filter): Renamed from rule_filter_t.
10881 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
10882 (goto_list): Renamed from goto_list_t.
10883 * src/lalr.h (goto_number): Renamed from goto_number_t.
10884 * src/location.h (location): Renamed from location_t.
10885 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
10886 and moved here from:
10887 * src/muscle_tab.h (muscle_entry_t): here.
10888 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
10889 (rule_list): Renamed from rule_list_t.
10890 * src/print_graph.c (static_graph): Renamed from graph.
10891 * src/reader.h (braced_code): Renamed from braced_code_t.
10892 Remove brace_code_e tag.
10893 * src/relation.h (relation_node): Renamed from relation_node_t.
10894 (relation_nodes): Renamed from relation_nodes_t.
10895 (relation): Renamed from relation_t.
10896 * src/state.h (state_number): Renamed from state_number_t.
10897 (struct state): Renamed from struct state_s.
10898 (state): Renamed from state_t.
10899 (transitions): Renamed from transitions_t. Unused (and
10900 misspelled) transtion_s tag removed.
10901 (errs): Renamed from errs_t. Unused errs_s tag removed.
10902 (reductions): Renamed from reductions_t. Unused tag
10903 reductions_s removed.
10904 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
10905 (struct symbol_list): Renamed from struct symbol_list_s.
10906 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
10907 (struct symbol): Renamed from struct symbol_s.
10908 (symbol): Renamed from symbol_t.
10909 * src/tables.c (vector_number): Renamed from vector_number_t.
10910 (action_number): Renamed from action_t.
10911 * src/tables.h (base_number): Renamed from base_t.
10912 * src/vcg.h (enum color): Renamed from enum color_e.
10913 (enum textmode): Renamed from enum textmode_e.
10914 (enum shape): Renamed from enum shape_e.
10915 (struct colorentry): Renamed from struct colorentry_s.
10916 (struct classname): Renamed from struct classname_s.
10917 (struct infoname): Renamed from struct infoname_s.
10918 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
10919 (enum decision): Renamed from enum decision_e.
10920 (enum orientation): Renamed from enum orientation_e.
10921 (enum alignment): Renamed from enum alignment_e.
10922 (enum arrow_mode): Renamed from enum arrow_mode_e.
10923 (enum crossing_type): Renamed from enum crossing_type_e.
10924 (enum view): Renamed from enum view_e.
10925 (struct node): Renamed from struct node_s.
10926 (node): Renamed from node_t.
10927 (enum linestyle): Renamed from enum linestyle_e.
10928 (enum arrowstyle): Renamed from enum arrowstyle_e.
10929 (struct edge): Renamed from struct edge.
10930 (edge): Renamed from edge_t.
10931 (struct graph): Renamed from struct graph_s.
10932 (graph): Renamed from graph_t.
10933 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
10934 Rename value_t -> value.
10935 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
10936 value_t_as_yystype -> value_as_yystype.
10937
10938 Don't include <errno.h> in the mainstream code, since it
10939 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
10940 * lib/get-errno.c, lib/get-errno.h: New files.
10941 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
10942 get-errno.c.
10943 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
10944 * src/output.c (output_skeleton): Likewise.
10945 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
10946 instead of errno.
10947 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
10948 Likewise.
10949 (handle_action_dollar, handle_action_at): Likewise.
10950 * src/system.h: Do not include <errno.h>.
10951 (TAB_EXT): Renamed from EXT_TAB.
10952 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
10953
10954 Avoid str[a-z]*, since <string.h> reserves that name space.
10955 Change all instances of "struniq" in names to "uniqstr", and
10956 likewise for "STRUNIQ" and "UNIQSTR".
10957 * src/uniqstr.c: Renamed from src/struniq.c.
10958 * src/uniqstr.h: Renamed from src/struniq.h.
10959 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
10960 * src/files.c (strsuffix): Remove; unused.
10961 (concat2): Renamed from stringappend. Now static.
10962 * src/files.h (strsuffix, stringappend): Remove; unused.
10963 * src/parse-gram.y (<chars>): Renamed from <string>.
10964 (<uniqstr>): Renamed from <struniq>.
10965 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
10966 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
10967 (struct graph_s.expand): Renamed from struct graph_s.stretch.
10968 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
10969 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
10970 (N_EXPAND): Renamed from N_STRETCH.
10971
10972 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
10973 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
10974 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
10975 Remove; unused.
10976 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
10977 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
10978 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
10979 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
10980 (BASE_MAXIMUM): Renamed from BASE_MAX.
10981 (BASE_MINIMUM): Renamed from BASE_MIN.
10982 (ACTION_MAX): Remove; unused.
10983 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
10984 Unnecessary casts removed from above defines.
10985
10986
10987 Fix misspelling in names.
10988 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
10989 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
10990 G_NODE_ALIGNEMENT.
10991
10992
10993 * lib/timevar.c (timevar_report): Renamed from time_report,
10994 for consistency with other names.
10995 * lib/timevar.h (timevar_report): New decl.
10996 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
10997
10998
10999 Sort include-file uses.
11000
11001 Reorder all include files under src to be in the order "system.h".
11002 then the ../lib include files in angle brackets (alphabetized),
11003 then the . include files in double-quotes (alphabetized). Fix
11004 dependency breakages encountered in this process, as follows:
11005 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
11006 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
11007 * src/state.h: Include "symtab.h".
11008
11009 2002-12-08 Paul Eggert <eggert@twinsun.com>
11010
11011 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
11012 since this causes problems when __file__ contains character
11013 sequences like "@" that are treated specially by src/scan-skel.l.
11014 Instead, just use the file's basename. This fixes the bug
11015 reported by Martin Mokrejs in
11016 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
11017
11018 2002-12-06 Paul Eggert <eggert@twinsun.com>
11019
11020 Add support for rules that do not have trailing semicolons, as
11021 POSIX requires. Improve the quality of locations in Bison
11022 diagnostics.
11023
11024 * src/location.c: Include <quotearg.h>.
11025 (empty_location): Now const.
11026 (location_print): New function. Follow the recommendation of the
11027 GNU Coding Standards for locations that span file boundaries.
11028 * src/location.h: Do not include <quotearg.h>; no longer needed.
11029 (boundary): New type.
11030 (location_t): Use it. This allows locations to span file boundaries.
11031 All member uses changed: file -> start.file or end.file (as needed),
11032 first_line -> start.line, first_column -> start.column,
11033 last_line -> end.line, last_column -> end.column.
11034 (equal_boundaries): New function.
11035 (LOCATION_RESET, LOCATION_STEP): Remove.
11036 (LOCATION_PRINT): Remove. All callers changed to use location_print.
11037 (empty_location): Now const.
11038 (location_print): New decl.
11039 * src/parse-gram.y (lloc_default): New function, which handles
11040 empty locations more accurately.
11041 (YYLLOC_DEFAULT): Use it.
11042 (%token COLON): Remove.
11043 (%token ID_COLON): New token.
11044 (rules): Use it.
11045 (declarations, rules): Remove trailing semicolon.
11046 (declaration, rules_or_grammar_declaration):
11047 Allow empty (";") declaration.
11048 (symbol_def): Remove empty actions; no longer needed.
11049 (rules_or_grammar_declaration): Remove trailing semicolon.
11050 (semi_colon.opt): Remove.
11051 * src/reader.h: Include location.h.
11052 (scanner_cursor): New decl.
11053 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
11054 rolling our own.
11055 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
11056 of *loc.
11057 (STEP): Remove. No longer needed, now that adjust_location does
11058 the work. All uses removed.
11059 (scanner_cursor): New var.
11060 (adjust_location): Renamed from extend_location. It now sets
11061 *loc and adjusts the scanner cursor. All uses changed.
11062 Don't bother testing for CR.
11063 (handle_syncline): Remove location arg; now updates scanner cursor.
11064 All callers changed.
11065 (unexpected_end_of_file): Now accepts start boundary of token or
11066 comment, not location. All callers changed. Update scanner cursor,
11067 not the location.
11068 (SC_AFTER_IDENTIFIER): New state.
11069 (context_state): Renamed from c_context. All uses changed.
11070 (id_loc, code_start, token_start): New local vars.
11071 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
11072 processing of Yacc white space and equivalents here.
11073 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
11074 instead of returning ID immediately, since we need to search for
11075 a subsequent colon.
11076 (<INITIAL>"'", "\""): Save token_start.
11077 (<INITIAL>"%{", "{", "%%"): Save code_start.
11078 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
11079 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
11080 BEGIN context_state at end, not INITIAL.
11081 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
11082 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
11083 Return correct token start.
11084 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
11085 the start of a character, string or multiline comment is found.
11086 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
11087 Reduction): Adjust reported locations to match the more-precise
11088 results now expected.
11089 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
11090 * tests/reduce.at (Useless Rules, Reduced Automaton,
11091 Underivable Rules): Likewise.
11092 * tests/regression.at (Invalid inputs): No longer `expecting ";"
11093 or "|"' now that so many other tokens are allowed by the new grammar.
11094
11095 * src/complain.h (current_file): Remove duplicate decl;
11096 current_file is now owned by files.h.
11097 * src/complain.c, src/scan-gram.l: Include files.h.
11098
11099 2002-12-06 Paul Eggert <eggert@twinsun.com>
11100
11101 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
11102 promotes to int; it might be unsigned int.
11103 * data/yacc.c (yy_reduce_print): Likewise.
11104
11105 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11106 be #defined in the prologue, not in the Bison declarations.
11107 This fixes Debian Bug 102878, reported by Shaul Karl.
11108
11109 2002-12-02 Paul Eggert <eggert@twinsun.com>
11110
11111 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11112 * lib/strtoul.c: New file, from gnulib.
11113 This fixes a porting bug reported by Peter Klein in
11114 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
11115
11116 2002-11-30 Paul Eggert <eggert@twinsun.com>
11117
11118 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11119 and put only a forward declaration in the prologue. This is for
11120 consistency with the other scanner helper functions.
11121
11122 Type clashes now generate warnings, not errors, since it
11123 appears that POSIX may allow some grammars with type clashes.
11124 * src/reader.c (grammar_current_rule_check): Warn about
11125 type clashes instead of complaining.
11126 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11127
11128 Add Yacc library, since POSIX requires it.
11129 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11130 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11131 * lib/main.c, lib/yyerror.c: New files.
11132
11133 gram_error can be static; it need not be extern.
11134 * src/reader.h (gram_error): Remove decl.
11135 * src/parse-gram.y (gram_error): Now static. Add static decl.
11136 (print_token_value): Omit parameter names from forward decl,
11137 for consistency.
11138
11139 2002-11-29 Paul Eggert <eggert@twinsun.com>
11140
11141 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11142 be declared before being used. E.g., one should typically
11143 declare them in the prologue. Use GNU coding style in examples.
11144 Put "const" consistently after the type it modifies. Mention
11145 that C99 supports "inline". Mention that yyerror traditionally
11146 returns "int".
11147
11148 %parse-param and %lex-param now take just one argument, the
11149 declaration; the argument name is deduced from the declaration.
11150
11151 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11152 Reporting, Table of Symbols): Document this.
11153 * src/parse-gram.y (add_param): New function.
11154 (COMMA): Remove.
11155 (declaration): Implement new rule for %parse-param and %lex-param.
11156 * src/scan-gram.l: "," now elicits a warning, rather than being
11157 a token; this is more compatible with byacc.
11158 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11159
11160 2002-11-27 Paul Eggert <eggert@twinsun.com>
11161
11162 Rename identifiers to avoid real and potential collisions.
11163
11164 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11165 to avoid collision with lex macro described by Bruce Lilly in
11166 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11167 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11168 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11169 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11170 All uses changed.
11171 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11172 The name "yycontrol" violates the name space rules, and this stuff
11173 wasn't being used anyway.
11174 (input): Remove action; this stuff wasn't being used.
11175 (gram_error): Rename local variable yylloc -> loc.
11176 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11177 (YY_DECL): Don't use "yy" at start of local variables.
11178 All uses changed, e.g., yylloc -> loc.
11179 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11180 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11181 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11182 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11183
11184 * src/parse-gram.y (gram_error): loc is now const *.
11185 * src/reader.h (gram_error): Likewise.
11186
11187 2002-11-24 Paul Eggert <eggert@twinsun.com>
11188
11189 Version 1.75c.
11190
11191 * tests/actions.at (Actions after errors): Use an output format
11192 more similar to that of the Printers and Destructors test.
11193 Test the position of the ';' token too.
11194 (Printers and Destructors): Likewise.
11195 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11196 unnecessarily alarming people when the test fails.
11197
11198 * data/yacc.c (yyerrlab1): Move this label down, so that the
11199 parser does not discard the lookahead token if the user code
11200 invokes YYERROR. This change is required for POSIX conformance.
11201
11202 * lib/error.c: Sync with gnulib.
11203
11204 2002-11-22 Paul Eggert <eggert@twinsun.com>
11205
11206 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11207 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11208 * lib/xmalloc.c: Likewise.
11209
11210 2002-11-20 Paul Eggert <eggert@twinsun.com>
11211
11212 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11213
11214 2002-11-20 Paul Eggert <eggert@twinsun.com>
11215
11216 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11217 should use `if (! x) abort ();' rather than `assert (x);', and
11218 anyway it's one less thing to worry about configuring.
11219
11220 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11221 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11222 and replace all instances of assert with abort.
11223 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11224 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11225
11226 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11227 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11228 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11229 hash_find_entry, hash_rehash, hash_insert): Likewise.
11230 * src/conflicts.c (resolve_sr_conflict): Likewise.
11231 * src/lalr.c (set_goto_map, map_goto): Likewise.
11232 * src/nullable.c (nullable_compute): Likewise.
11233 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11234 * src/reader.c (packgram, reader): Likewise.
11235 * src/state.c (state_new, state_free, state_transitions_set,
11236 state_reduction_find): Likewise.
11237 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11238 symbol_pack): Likewise.
11239 * src/tables.c (conflict_row, pack_vector): Likewise.
11240 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11241 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11242 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11243 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11244
11245 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11246 (ARGMATCH_CONSTRAINT): New macro.
11247 (ARGMATCH_ASSERT): Use it.
11248
11249 * src/system.h (verify): New macro.
11250 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11251 rather than assert.
11252 * src/tables.c (tables_generate): Likewise.
11253
11254 * src/struniq.c (struniq_assert): Now returns void, and aborts
11255 if the assertion is false.
11256 (struniq_assert_p): Remove.
11257 * src/struniq.h: Likewise.
11258
11259 2002-11-18 Paul Eggert <eggert@twinsun.com>
11260
11261 * data/glr.c (yygetLRActions): Replace `yyindex' with
11262 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11263 This fixes the regression with Sun ONE Studio 7 cc that I reported in
11264 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
11265
11266 2002-11-18 Akim Demaille <akim@epita.fr>
11267
11268 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11269 space.
11270 From Tim Van Holder.
11271
11272 2002-11-17 Paul Eggert <eggert@twinsun.com>
11273
11274 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11275 to "SyntaxError" for consistency with my 2002-11-15 change.
11276
11277 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11278 not define to {}, since this breaks the common use of `YYDPRINTF
11279 ((...));' if a single statement is desired (e.g. before `else').
11280 Work around GCC warnings by surrounding corresponding calls with
11281 {} if needed.
11282 (yyhasResolvedValue): Remove unused function.
11283 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11284 loop body.
11285 (yyreportSyntaxError): Renamed from yyreportParseError.
11286 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11287 All uses changed.
11288 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11289 extern when possible. Remove unused initializations.
11290
11291 2002-11-16 Akim Demaille <akim@epita.fr>
11292
11293 Augment the similarity between GLR and LALR traces.
11294
11295 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11296 (YY_REDUCE_PRINT): New.
11297 (yyparse): Use them.
11298 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11299 YYDPRINT here.
11300 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11301 state reached after the reduction/recovery, since...
11302 (yyparse, yyprocessOneStack): Report the state we are entering in.
11303
11304 2002-11-16 Akim Demaille <akim@epita.fr>
11305
11306 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11307 Add support for --trace=skeleton.
11308 * src/scan-skel.l: %option debug.
11309 Scan strings of non-@ or \n instead of character by character.
11310 (scan_skel): Handle trace_skeleton.
11311 (QPUTS): New.
11312 (@output_parser_name@, @output_header_name@): ``Restore'' their
11313 support (used to be M4 macros).
11314 * data/yacc.c: Quote larger chunks, a la glr.c.
11315 * data/lalr1.cc: Likewise.
11316 The header guards are no longer available, so use some other
11317 string than `YYLSP_NEEDED'.
11318
11319 2002-11-16 Akim Demaille <akim@epita.fr>
11320
11321 Make the ``Printers and Destructors'' test more verbose, taking
11322 `yacc.c''s behavior as (possibly wrong) reference.
11323
11324 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11325 instead of fprint on stdout.
11326 Set and report the last_line of the symbols.
11327 Consistently display values and locations.
11328
11329 2002-11-16 Paul Eggert <eggert@twinsun.com>
11330
11331 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11332
11333 2002-11-15 Paul Eggert <eggert@twinsun.com>
11334
11335 * tests/actions.at (Actions after errors): New test case.
11336
11337 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11338 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11339 tests/action.at, tests/calc.at, tests/conflicts.at,
11340 tests/cxx-type.at, tests/regression.at:
11341 "parse error" -> "syntax error" for POSIX compatibility.
11342 "parsing stack overflow..." -> "parser stack overflow" so
11343 that code matches Bison documentation.
11344
11345 2002-11-15 Akim Demaille <akim@epita.fr>
11346
11347 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11348 take two BRACED_CODE, not two string_content.
11349 Free the scanner's obstack when we are done.
11350 (code_content): New.
11351 * tests/calc.at: Adjust.
11352 * doc/bison.texinfo: Adjust.
11353 Also, make sure to include the `,' for these declarations.
11354
11355 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11356
11357 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11358 definition; avoids potential autoreconf problems.
11359
11360 2002-11-15 Akim Demaille <akim@epita.fr>
11361
11362 Always check the value returned by yyparse.
11363
11364 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11365 returned by yyparse.
11366 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11367 Adjust calls.
11368 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11369 returned by yyparse.
11370
11371 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11372
11373 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11374 on input.at test.
11375
11376 2002-11-14 Paul Eggert <eggert@twinsun.com>
11377
11378 * src/output.c (output_skeleton): Call xfopen instead of
11379 duplicating xfopen's body.
11380
11381 Fix bugs reported by Nelson H. F. Beebe in
11382 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
11383
11384 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11385 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11386 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11387 file twice in the grammar, as an extra check.
11388
11389 * tests/input.at (Torturing the Scanner): Surround the
11390 backslash-newline tests with "#if 0", to make it less likely that
11391 we'll run into compiler bugs. Bring back solitary \ inside
11392 comment, but add a closing comment to work around HP C bug. Don't
11393 test backslash-newline in C character constant.
11394
11395 2002-11-14 Akim Demaille <akim@epita.fr>
11396
11397 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11398 status of the compiler.
11399 Calling `exit 1' is no longer needed.
11400 Reported by Nelson H. F. Beebe.
11401
11402 2002-11-14 Akim Demaille <akim@epita.fr>
11403
11404 * tests/atlocal.in (CPPFLAGS): We have config.h.
11405 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11406 New.
11407 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11408 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11409 * tests/regression.at, tests/torture.at: Use them for all the
11410 grammars that are to be compiled.
11411 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11412 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11413 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11414
11415 2002-11-14 Akim Demaille <akim@epita.fr>
11416
11417 * doc/bison.texinfo: Various formatting changes (alignments in
11418 samples, additional @group/@end group, GCS in samples.
11419 Use @deffn instead of simple @table to define the directives,
11420 macros, variables etc.
11421
11422 2002-11-13 Paul Eggert <eggert@twinsun.com>
11423
11424 Fix some bugs reported by Albert Chin-A-Young in
11425 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
11426
11427 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
11428 -o c"; the HP C compiler chatters during compilation.
11429 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11430 * tests/headers.at (export YYLTYPE): Likewise.
11431
11432 * tests/input.at (Torturing the Scanner): Remove lines containing
11433 solitary backslashes, as they tickle a bug in the HP C compiler.
11434
11435 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11436 comments, since they're not portable. Use GNU coding style.
11437
11438 2002-11-13 Akim Demaille <akim@epita.fr>
11439
11440 * data/yacc.c: Leave bigger chunks of quoted text.
11441 (YYDSYMPRINTF): New.
11442 Use it to report symbol activities.
11443 * data/glr.c (YYDSYMPRINTF): New.
11444 Use it.
11445
11446 2002-11-12 Paul Eggert <eggert@twinsun.com>
11447
11448 Version 1.75b.
11449
11450 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11451 (yyglrReduce): Return yyok, not 0.
11452 This should avoid the enumerated-type warnings reported
11453 by Nelson H. F. Beebe in
11454 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
11455
11456 * lib/bbitset.h (BITSET_INLINE): Remove.
11457 * lib/bitset.h [! BITSET_INLINE]: Remove.
11458 (bitset_set, bitset_reset, bitset_test): Rename local vars
11459 to avoid shadowing warnings by GCC.
11460
11461 * data/glr.c (inline): Remove #define. It's the user's
11462 responsibility to #define it away, just like 'const'.
11463 This fixes one of the bugs reported by Nelson H. F. Beebe in
11464 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
11465
11466 * Makefile.maint (po-check): Scan .l and .y files instead of the
11467 .c and the .h files that they generate. This fixes the bug
11468 reported by Tim Van Holder in:
11469 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
11470 Look for N_ as well as for _. Try to avoid matching #define for
11471 N_ and _.
11472 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11473 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11474 * src/scan-gram.l: Revamp regular expressions so that " and '
11475 do not confuse xgettext.
11476
11477 * src/struniq.h (struniq_new): Do not declare the return type
11478 to be 'const'; this violates the C standard.
11479 * src/struniq.c (struniq_new): Likewise.
11480
11481 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
11482
11483 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
11484 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
11485 linker.
11486
11487 2002-11-12 Akim Demaille <akim@epita.fr>
11488
11489 * Makefile.maint: Sync with Autoconf:
11490 (local_updates): New.
11491
11492 2002-11-12 Akim Demaille <akim@epita.fr>
11493
11494 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
11495
11496 2002-11-12 Akim Demaille <akim@epita.fr>
11497
11498 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
11499 locations.
11500
11501 2002-11-12 Akim Demaille <akim@epita.fr>
11502
11503 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
11504 not yyvalue.
11505
11506 2002-11-12 Akim Demaille <akim@epita.fr>
11507
11508 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
11509 Use it to test the GLR parser.
11510
11511 2002-11-12 Akim Demaille <akim@epita.fr>
11512
11513 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
11514 defines it.
11515 * data/glr.c (yystos): New.
11516 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
11517 (YYDSYMPRINT): New.
11518 (yyval): Don't define it, it is handled via M4.
11519 (yyrecoverParseError): Free verbosely the discarded symbols.
11520 * data/yacc.c (yysymprint): Remove, rather...
11521 (b4_yysymprint_generate): invoke.
11522 * data/c.m4 (b4_yysymprint_generate): New.
11523 Accept pointers as arguments, as opposed to the version from
11524 yacc.c.
11525 (b4_yydestruct_generate): Likewise.
11526 * tests/cations.at (Printers and Destructors): Use Bison directives
11527 instead of CPP macros.
11528 Don't rely on internal details.
11529
11530 2002-11-12 Akim Demaille <akim@epita.fr>
11531
11532 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
11533 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
11534 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
11535 it against YYEMPTY and so forth), work on yytoken (i.e., set
11536 it to YYEMPTY etc.).
11537 (yydestruct): Replace with a b4_yydestruct_generate invocation.
11538 (b4_symbol_actions): Remove.
11539 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
11540 for 0, end-of-input.
11541
11542 2002-11-12 Akim Demaille <akim@epita.fr>
11543
11544 * doc/bison.texinfo (Destructor Decl): New.
11545
11546 2002-11-12 Akim Demaille <akim@epita.fr>
11547
11548 * src/tables.c (tables_generate): Use free for pointers that
11549 cannot be NULL, not XFREE.
11550 (pack_vector): Use assert, not fatal, for bound violations.
11551 * src/state.c (state_new): Likewise.
11552 * src/reader.c (reader): Likewise.
11553 * src/lalr.c (set_goto_map): Likewise.
11554 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
11555 the file name.
11556
11557 2002-11-12 Akim Demaille <akim@epita.fr>
11558
11559 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
11560 Restore.
11561 * src/scan-gram.l (last_string): Is global to the file, not to
11562 yylex.
11563 * src/parse-gram.y (input): Don't append the epilogue here,
11564 (epilogue.opt): do it here, and free the scanner's obstack.
11565 * src/reader.c (epilogue_set): Rename as...
11566 (epilogue_augment): this.
11567 * data/c.m4 (b4_epilogue): Defaults to empty.
11568
11569 2002-11-12 Akim Demaille <akim@epita.fr>
11570
11571 * src/getargs.c (long_options): Remove duplicates.
11572 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
11573 Remove.
11574 * doc/bison.rnh: Remove.
11575 * doc/bison.texinfo (VMS Invocation): Remove.
11576
11577 2002-11-12 Akim Demaille <akim@epita.fr>
11578
11579 * src/struniq.h, src/struniq.c (struniq_t): Is const.
11580 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
11581
11582 Use struniq for symbols.
11583
11584 * src/symtab.h (symbol_t): The tag member is a struniq.
11585 (symbol_type_set): Adjust.
11586 * src/symtab.c (symbol_new): Takes a struniq.
11587 (symbol_free): Don't free the tag member.
11588 (hash_compare_symbol_t, hash_symbol_t): Rename as...
11589 (hash_compare_symbol, hash_symbol): these.
11590 Use the fact that tags as struniqs.
11591 (symbol_get): Use struniq_new.
11592 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
11593 Returns a strniq.
11594 * src/reader.h (merger_list, grammar_currentmerge_set): The name
11595 and type members are struniqs.
11596 * src/reader.c (get_merge_function)
11597 (grammar_current_rule_merge_set): Adjust.
11598 (TYPE, current_type): Are struniq.
11599
11600 Use struniq for file names.
11601
11602 * src/files.h, src/files.c (infile): Split into...
11603 (grammar_file, current_file): these.
11604 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
11605 * src/reduce.c (reduce_print): Likewise.
11606 * src/getargs.c (getargs): Likewise.
11607 * src/complain.h, src/complain.c: Likewise.
11608 * src/main.c (main): Call struniqs_new early enough to use it for
11609 file names.
11610 Don't free the input file name.
11611
11612 2002-11-12 Akim Demaille <akim@epita.fr>
11613
11614 * src/symtab.c (symbol_free): Remove dead deactivated code:
11615 type_name are properly removed.
11616 Don't use XFREE to free items that cannot be NULL.
11617 * src/struniq.h, src/struniq.c: New.
11618 * src/main.c (main): Initialize/free struniqs.
11619 * src/parse-gram.y (%union): Add astruniq member.
11620 (yyprint): Adjust.
11621 * src/scan-gram.l (<{tag}>): Return a struniq.
11622 Free the obstack bit that used to store it.
11623 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
11624
11625 2002-11-11 Paul Eggert <eggert@twinsun.com>
11626
11627 Revamp to fix many (but not all) of the C- and M4-related quoting
11628 problems. Among other things, this fixes the Bison bug reported
11629 by Jan Hubicka when processing the Bash grammar; see:
11630 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
11631
11632 Use new @ escapes consistently. Represent brackets with @{ and @}
11633 rather than @<:@ and @:>@, since this works a bit better with dumb
11634 editors like vi. Represent @ with @@, since @ is now consistently
11635 an escape. Use @oline@ and @ofile@ rather than __oline__ and
11636 __ofile__, to avoid unexpected expansions. Similarly, use @output
11637 rather than #output.
11638
11639 * data/c.m4 (b4_copyright): Omit file name from comment, since
11640 the file name could contain "*/".
11641 (b4_synclines_flag): Don't quote the 2nd argument; it should already
11642 be quoted. All uses changed.
11643
11644 * data/glr.c: Use new @ escapes consistently.
11645 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
11646 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
11647 Remove, since they couldn't handle arbitrary characters in file
11648 names.
11649 * data/lalr1.cc: Likewise.
11650 * data/yacc.c: Likewise.
11651
11652 * src/files.c (output_infix): Remove; all uses removed.
11653 * src/files.h: Likewise.
11654
11655 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
11656 mishandled funny characters in file names, and anyway it isn't
11657 needed any more.
11658 * data/yacc.c: Likewise.
11659 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
11660
11661 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
11662 * data/yacc.c: Likewise.
11663
11664 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
11665 strings now.
11666 (muscle_init): Quote filename as a C string.
11667 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
11668 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
11669 * src/output.c (escaped_file_name_output): New function.
11670 (prepare_symbols): Quote tokens for M4.
11671 (prepare): Don't insert output_infix, output_prefix,
11672 output_parser_name, output_header_name; this is now down by scan-skel.
11673 Insert skeleton as a C string.
11674
11675 * src/output.c (user_actions_output, symbol_destructors_output,
11676 symbol_printers_output): Quote filenames for C and M4.
11677 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11678
11679 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
11680 escapes other than \\ and \'; this simplifies the code.
11681 (<SC_STRING>): Likewise, for \\ and \".
11682 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
11683 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
11684 Use new escapes @{ and @} for [ and ].
11685
11686 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
11687 them with auto vars.
11688 Switch to new escape scheme, where @ is the escape character uniformly.
11689 Abort if a stray escape character is found. Avoid unbounded input
11690 buffer when parsing non-escaped text.
11691
11692 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
11693 __oline__, #output, $@, and @{ do not have unintended meanings.
11694
11695 2002-11-09 Paul Eggert <eggert@twinsun.com>
11696
11697 Fix the test failure due to GCC warnings described in
11698 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
11699 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
11700 evaluate to 0 if it's impossible for NINF to be in the respective
11701 table.
11702 (yygetLRActions, yyrecoverParseError): Use them.
11703
11704 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
11705 counted in the token inserted at end of file. Now takes
11706 location_t *, not location_t, so that the location can be
11707 adjusted. All uses changed.
11708
11709 * tests/regression.at (Invalid inputs): Adjust wording in
11710 diagnostic to match the new behavior.
11711
11712 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
11713 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
11714 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
11715 abort ();'. This reduces the runtime of the "Many lookaheads"
11716 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
11717 GCC 3.2.
11718
11719 2002-11-07 Paul Eggert <eggert@twinsun.com>
11720
11721 * src/parse-gram.y (CHARACTER): Remove unused token.
11722 All uses removed.
11723
11724 * src/scan-gram.l: Remove stack option. We no longer use the
11725 stack, since the stack was never deeper than 1; instead, use the
11726 new auto var c_context to record the stacked value.
11727
11728 Remove nounput option. At an unexpected end of file, we now unput
11729 the minimal input necessary to end cleanly; this simplifies the
11730 code.
11731
11732 Avoid unbounded token sizes where this is easy.
11733
11734 (unexpected_end_of_file): New function.
11735 Use it to systematize the error message on unexpected EOF.
11736 (last-string): Now auto, not static.
11737 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
11738 (scanner_last_string_free): Remove; not used.
11739 (percent_percent_count): Move decl to just before use.
11740 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
11741 not the (never otherwised-used) CHARACTER.
11742
11743 2002-11-07 Akim Demaille <akim@epita.fr>
11744
11745 Let yyerror always receive the msg as last argument, so that
11746 yyerror can be variadic.
11747
11748 * data/yacc.c (b4_yyerror_args): New.
11749 Use it when calling yyerror.
11750 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
11751 Use it when calling yyerror.
11752 * doc/bison.texinfo (Error Reporting): Adjust.
11753 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
11754 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
11755
11756 2002-11-06 Akim Demaille <akim@epita.fr>
11757
11758 #line should have quoted strings.
11759 Ideally, this should be done by m4_quotearg.
11760
11761 * src/scan-skel.l: Include quotearg.h.
11762 Quote __ofile__.
11763 * src/output.c (symbol_printers_output)
11764 (symbol_destructors_output): Quote the file name.
11765
11766 2002-11-06 Akim Demaille <akim@epita.fr>
11767
11768 * tests/regression.at (Invalid inputs): Adjust to the recent
11769 messages.
11770
11771 2002-11-06 Akim Demaille <akim@epita.fr>
11772
11773 Restore --no-lines.
11774 Reported by Jim Kent.
11775
11776 * data/c.m4 (b4_syncline): New.
11777 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
11778 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
11779 * src/output.c (user_actions_output): Likewise.
11780 (prepare): Define 'b4_synclines_flag'.
11781 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
11782
11783 2002-11-06 Akim Demaille <akim@epita.fr>
11784
11785 * src/main.c (main): Free `infile'.
11786 * src/scan-gram.l (handle_syncline): New.
11787 Recognize `#line'.
11788 * src/output.c (user_actions_output, symbol_destructors_output)
11789 (symbol_printers_output): Use the location's file name, not
11790 infile.
11791 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11792
11793 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11794
11795 * src/tables.c (matching_state): Don't allow states to match if
11796 either has GLR conflict entries.
11797
11798 2002-11-05 Paul Eggert <eggert@twinsun.com>
11799
11800 * src/scan-gram.l: Use more accurate diagnostics, e.g.
11801 "integer out of range" rather than "invalid value".
11802 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
11803 accordingly.
11804
11805 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
11806 Also, remove one static variable in the scanner.
11807
11808 * src/scan-gram.l (braces_level): Now auto, not static.
11809 Initialize to zero if the compiler is being picky.
11810 (INITIAL): Clear braces_level instead of incrementing it.
11811 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
11812 as POSIX 1003.1-2001 requires.
11813 * src/system.h (IF_LINT): New macro, taken from coreutils.
11814 * configure.ac: Define "lint" if --enable-gcc-warnings.
11815
11816 2002-11-05 Akim Demaille <akim@epita.fr>
11817
11818 * src/scan-gram.l: When it starts with `%', complain about the
11819 whole directive, not just that `invalid character: %'.
11820
11821 2002-11-04 Akim Demaille <akim@epita.fr>
11822
11823 * Makefile.maint: Update from Autoconf.
11824 (update, cvs-update, po-update, do-po-update): New.
11825
11826 2002-11-04 Akim Demaille <akim@epita.fr>
11827
11828 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
11829 and yyerror.
11830 Have yyerror `use' its arguments.
11831 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
11832 returns true when location & yacc & pure & parse-param.
11833 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
11834
11835 2002-11-04 Akim Demaille <akim@epita.fr>
11836
11837 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
11838 clashes.
11839 * src/scan-gram.l: Use [\'] instead of ['] to pacify
11840 font-lock-mode.
11841 Use complain_at.
11842 Use quote, not quote_n since LOCATION_PRINT no longer uses the
11843 slot 0.
11844
11845 2002-11-03 Paul Eggert <eggert@twinsun.com>
11846
11847 * src/reader.c (get_merge_function, grammar_current_rule_check):
11848 Use consistent diagnostics for reporting type name clashes.
11849 Quote the types with <>, for consistency with Yacc.
11850 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
11851
11852 2002-11-03 Akim Demaille <akim@epita.fr>
11853
11854 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
11855 New.
11856 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
11857 (b4_parse_param): Remove.
11858 Use b4_identification.
11859 Propagate b4_pure_args where needed to pass them to yyerror.
11860 * data/glr.m4 (b4_parse_param): Remove.
11861 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
11862 (b4_lpure_formals): New.
11863 Use b4_identification.
11864 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
11865 b4_user_formals and b4_user_args.
11866 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
11867 (yyreportAmbiguity): When using a pure parser, also need
11868 the location, and the parse-params.
11869 Adjust callers.
11870 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
11871 When using a pure parser, also need the parse-params.
11872 Adjust callers.
11873 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
11874 (%pure-parser + %parse-param) LALR and GLR parsers.
11875 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
11876 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
11877 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
11878 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
11879 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
11880 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
11881 * doc/bison.texinfo: Untabify the whole file.
11882 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
11883 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
11884 (Error Reporting): Adjust to these new directives.
11885 Document %error-verbose, deprecate YYERROR_VERBOSE.
11886
11887 2002-11-03 Akim Demaille <akim@epita.fr>
11888
11889 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
11890 AT_CHECK_CALC_GLR invocations to use % directives, instead of
11891 command line options.
11892 * tests/cxx-type.at: Formatting changes.
11893
11894 2002-11-03 Paul Eggert <eggert@twinsun.com>
11895
11896 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
11897 to count columns correctly, and to check for invalid inputs.
11898
11899 Use mbsnwidth to count columns correctly. Account for tabs, too.
11900 Include mbswidth.h.
11901 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
11902 (extend_location): New function.
11903 (YY_LINES): Remove.
11904
11905 Handle CRLF in C code rather than in Lex code.
11906 (YY_INPUT): New macro.
11907 (no_cr_read): New function.
11908
11909 Scan UCNs, even though we don't fully handle them yet.
11910 (convert_ucn_to_byte): New function.
11911
11912 Handle backslash-newline correctly in C code.
11913 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
11914 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
11915 all uses changed.
11916 (tag, splice): New EREs. Do not allow NUL or newline in tags.
11917 Use {splice} wherever C allows backslash-newline.
11918 YY_STEP after space, newline, vertical-tab.
11919 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
11920
11921 (letter, id): Don't assume ASCII; e.g., spell out a-z.
11922
11923 ({int}, handle_action_dollar, handle_action_at): Check for integer
11924 overflow.
11925
11926 (YY_STEP): Omit trailing semicolon, so that it's more like C.
11927
11928 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
11929 as well as \000. Check for UCHAR_MAX, not 255.
11930 Allow \x with an arbitrary positive number of digits, as in C.
11931 Check for overflow here.
11932 Allow \? and UCNs, for compatibility with C.
11933
11934 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
11935 with quote slot used by complain_at.
11936
11937 * tests/input.at: Add tests for backslash-newline, m4 quotes
11938 in symbols, long literals, and funny escapes in strings.
11939
11940 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
11941 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
11942 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
11943 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
11944 * m4/mbswidth.m4: New file, from GNU coreutils.
11945
11946 * doc/bison.texinfo (Grammar Outline): Document // comments.
11947 (Symbols): Document that trigraphs have no special meaning in Bison,
11948 nor is backslash-newline allowed.
11949 (Actions): Document that trigraphs have no special meaning.
11950
11951 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
11952 no longer used.
11953
11954 2002-11-02 Paul Eggert <eggert@twinsun.com>
11955
11956 * src/reader.c: Don't include quote.h; not needed.
11957 (get_merge_function): Reword warning to be consistent with
11958 type clash diagnostic in grammar_current_rule_check.
11959
11960 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
11961 bug in trigraph handling.
11962
11963 * src/output.c (prepare_symbols): When printing token names,
11964 escape "[" as "@<:@" and likewise for "]".
11965
11966 * src/system.h (errno): Remove declaration, as we are now
11967 assuming C89 or better, and C89 guarantees errno.
11968
11969 2002-10-30 Paul Eggert <eggert@twinsun.com>
11970
11971 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
11972 Check for close failures.
11973 * src/files.h (xfclose): Return void, not int, since it always
11974 returned zero.
11975 * src/files.c (xfclose): Likewise. Report I/O error if ferror
11976 indicates one.
11977 * src/output.c (output_skeleton): Use xfclose rather than fclose
11978 and ferror. xfclose now checks ferror.
11979
11980 * data/glr.c (YYLEFTMOST_STATE): Remove.
11981 (yyreportTree): Use a stack-based leftmost state. This avoids
11982 our continuing battles with bogus warnings about initializers.
11983
11984 2002-10-30 Akim Demaille <akim@epita.fr>
11985
11986 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
11987 #if.
11988
11989 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11990
11991 * tests/glr-regr1.at: New test for reported regressions.
11992 * tests/testsuite.at: Add glr-regr1.at test.
11993 * tests/Makefile.am: Add glr-regr1.at test.
11994
11995 2002-10-24 Paul Eggert <eggert@twinsun.com>
11996
11997 Version 1.75a.
11998
11999 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
12000 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
12001 we use malloc. Don't assume 'A' through 'Z' are contiguous.
12002 Don't assume strdup exists; POSIX says its an XSI extension.
12003 Check for buffer overflow on input.
12004
12005 2002-10-24 Akim Demaille <akim@epita.fr>
12006
12007 * src/output.c (output_skeleton): Don't disable M4sugar comments
12008 too soon: it results in comments being expanded.
12009 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
12010 first output.
12011
12012 2002-10-24 Akim Demaille <akim@epita.fr>
12013
12014 * data/yacc.c (m4_int_type): New.
12015 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
12016 char' as only yacc.c wants K&R portability.
12017 * data/glr.c (yysigned_char): Remove.
12018 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
12019 Reported by Quoc Peyrot.
12020
12021 2002-10-23 Paul Eggert <eggert@twinsun.com>
12022
12023 * src/main.c (main): With --trace=time, report times even if a
12024 non-fatal error occurs. Formerly, the times were reported in some
12025 such cases but not in others.
12026 * src/reader.c (reader): Just return if a complaint has been issued,
12027 instead of exiting, so that 'main' can report times.
12028
12029 2002-10-22 Akim Demaille <akim@epita.fr>
12030
12031 * src/system.h: Include sys/types.
12032 Reported by Bert Deknuydt.
12033
12034 2002-10-23 Paul Eggert <eggert@twinsun.com>
12035
12036 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
12037 Suggested by Art Haas.
12038
12039 2002-10-22 Paul Eggert <eggert@twinsun.com>
12040
12041 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
12042 decl; not needed any more.
12043 * src/main.c (main): Use return to exit, undoing yesterday's change.
12044 The last OS that we could find where this wouldn't work is
12045 SunOS 3.5, and that's too old to worry about now.
12046
12047 * data/glr.c (struct yyltype): Define members even when not
12048 doing locations. This is more consistent with yacc.c, and it
12049 works around the following bug reports:
12050 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
12051 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
12052
12053 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
12054 @acronym consistently. Standardize on "Yacc" instead of "YACC",
12055 "Algol" instead of "ALGOL". Give a bit more history about BNF.
12056
12057 2002-10-22 Akim Demaille <akim@epita.fr>
12058
12059 * data/README: New.
12060
12061 2002-10-21 Paul Eggert <eggert@twinsun.com>
12062
12063 Be consistent about 'bool'; the old code used an enum in one
12064 module and an int in another, and this violates the C standard.
12065 * m4/stdbool.m4: New file, from coreutils 4.5.3.
12066 * configure.ac (AC_HEADER_STDBOOL): Add.
12067 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
12068 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
12069 * src/symtab.c (hash_compare_symbol_t): Likewise.
12070 * src/system.h (bool, false, true): Use a definition consistent
12071 with ../lib/hash.c. All uses changed.
12072
12073 * src/complain.c (warning_issued): Renamed from warn_message_count,
12074 so that we needn't worry about integer overflow (!).
12075 Now of type bool. All uses changed.
12076 (complaint_issued): Renamed from complain_message_count; likewise.
12077
12078 * src/main.c (main): Use exit to exit with failure.
12079
12080 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
12081 rather than 1 and 0.
12082 * src/main.c (main): Likewise.
12083 * src/getargs.c (getargs): Likewise.
12084 * src/reader.c (reader): Likewise.
12085
12086 * src/getarg.c (getargs): Remove duplicate code for
12087 "Try `bison --help'".
12088
12089 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
12090 What was that "2" for?
12091
12092 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
12093 * src/getargs.c (usage): Likewise.
12094
12095 * src/getargs.c (getargs): When there are too few operands, report
12096 the last one. When there are too many, report the first extra
12097 one. This is how diffutils does it.
12098
12099 2002-10-20 Paul Eggert <eggert@twinsun.com>
12100
12101 Remove K&R vestiges.
12102 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
12103 * src/complain.c (VA_START): Remove. Assume prototypes.
12104 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12105 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12106 fatal): Assume prototypes.
12107 * src/complain.h: Assume prototypes.
12108 * src/system.h (PARAMS): Remove.
12109 Include <limits.h> unconditionally, since it's guaranteeed even
12110 for a freestanding C89 compiler.
12111 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12112 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
12113
12114 2002-10-20 Akim Demaille <akim@epita.fr>
12115
12116 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12117 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12118 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12119 (yyresolveStates, yyresolveAction, yyresolveStack)
12120 (yyprocessOneStack): Use them.
12121 (yy_reduce_print): New.
12122 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12123
12124 2002-10-20 Akim Demaille <akim@epita.fr>
12125
12126 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12127 arguments and output `void'.
12128 (b4_c_function): Rename as...
12129 (b4_c_function_def): this.
12130 (b4_c_function_decl, b4_c_ansi_function_def)
12131 (b4_c_ansi_function_decl): New.
12132 Change the interpretation of the arguments: before `int, foo', now
12133 `int foo, foo'.
12134 * data/yacc.c (yyparse): Prototype and define thanks to these.
12135 Adjust b4_c_function_def uses.
12136 * data/glr.c (yyparse): Likewise, but ANSI only.
12137
12138 2002-10-20 Akim Demaille <akim@epita.fr>
12139
12140 * src/output.c (prepare): Move the definition of `tokens_number',
12141 `nterms_number', `undef_token_number', `user_token_number_max'
12142 to...
12143 (prepare_tokens): Here.
12144 (prepare_tokens): Rename as...
12145 (prepare_symbols): this.
12146 (prepare): Move the definition of `rules_number' to...
12147 (prepare_rules): here.
12148 (prepare): Move the definition of `last', `final_state_number',
12149 `states_number' to...
12150 (prepare_states): here.
12151 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12152
12153 2002-10-20 Akim Demaille <akim@epita.fr>
12154
12155 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12156
12157 2002-10-20 Akim Demaille <akim@epita.fr>
12158
12159 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12160 * data/c.m4: here.
12161
12162 2002-10-20 Akim Demaille <akim@epita.fr>
12163
12164 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12165 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12166 `pair'.
12167 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12168 `name' to...
12169 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12170 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12171 These.
12172
12173 2002-10-19 Paul Eggert <eggert@twinsun.com>
12174
12175 Do not create a temporary file, as that involves security and
12176 cleanup headaches. Instead, use a pair of pipes.
12177 Derived from a suggestion by Florian Krohm.
12178 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12179 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12180 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12181 (BISON_PREREQ_SUBPIPE): Add.
12182 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12183 Add subpipe.h, subpipe.c.
12184 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12185 * po/POTFILES.in: Add lib/subpipe.c.
12186 * src/output.c: Include "subpipe.h".
12187 (m4_invoke): Remove decl.
12188 (scan_skel): New decl.
12189 (output_skeleton): Use pipe rather than temporary file for m4 input.
12190 Check that m4sugar.m4 is readable, to avoid deadlock.
12191 Check for pipe I/O error.
12192 * src/scan-skel.l (readpipe): Remove decl.
12193 (scan_skel): New function, to be used in place of m4_invoke.
12194 Read from stream rather than file.
12195
12196 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12197 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12198 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12199 this generates a more-accurate value anyway.
12200
12201 * lib/timevar.c (timervar_accumulate): Rename locals to
12202 avoid confusion with similarly-named more-global.
12203 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12204
12205 * src/output.c (prepare): Use xstrdup to convert char const *
12206 to char *, to avoid GCC warning.
12207
12208 2002-10-19 Akim Demaille <akim@epita.fr>
12209
12210 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12211 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12212 Use them to have `calc.y' ready for %pure-parser.
12213 * data/yacc.c (YYLEX): Pass a yylex return type to
12214 b4_c_function_call.
12215
12216 2002-10-19 Akim Demaille <akim@epita.fr>
12217
12218 Prototype support of %lex-param and %parse-param.
12219
12220 * src/parse-gram.y: Add the definition of the %lex-param and
12221 %parse-param tokens, plus their rules.
12222 Drop the `_' version of %glr-parser.
12223 Add the "," token.
12224 * src/scan-gram.l (INITIAL): Scan them.
12225 * src/muscle_tab.c: Comment changes.
12226 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12227 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12228 (muscle_entry_s): The `value' member is no longer const.
12229 Adjust all dependencies.
12230 * src/muscle_tab.c (muscle_init): Adjust: use
12231 MUSCLE_INSERT_STRING.
12232 Initialize the obstack earlier.
12233 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12234 (muscle_pair_list_grow): New.
12235 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12236 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12237 * tests/calc.at: Use %locations, not --locations.
12238 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12239
12240 2002-10-19 Akim Demaille <akim@epita.fr>
12241
12242 * src/getargs.c (usage): Take status as argument and exit
12243 accordingly.
12244 Report the traditional `Try ... --help' message when status != 0.
12245 (usage, version): Don't take a FILE * as arg, it is pointless.
12246 (getargs): When there is an incorrect number of arguments, make it
12247 an error, and report it GNUlically thanks to `usage ()'.
12248
12249 2002-10-18 Paul Eggert <eggert@twinsun.com>
12250
12251 * data/glr.c (yyreportParseError): Don't assume that sprintf
12252 yields the length of the printed string, as this is not true
12253 on SunOS 4.1.4. Reported by Peter Klein.
12254
12255 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12256 * tests/conflicts.at (%nonassoc and eof): Likewise.
12257 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12258
12259 2002-10-17 Akim Demaille <akim@epita.fr>
12260
12261 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12262 * src/getargs.c (trace_types, trace_args): Adjust.
12263 * src/reader.c (grammar_current_rule_prec_set)
12264 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12265 Standardize error messages.
12266 And s/@prec/%prec/!
12267 (reader): Use trace_flag to enable scanner/parser debugging,
12268 instead of an adhoc scheme.
12269 * src/scan-gram.l: Remove trailing debugging code.
12270
12271 2002-10-16 Paul Eggert <eggert@twinsun.com>
12272
12273 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12274 MUSCLE_TAB_H.
12275
12276 * NEWS: Officially drop support for building Bison with K&R C,
12277 since it didn't work anyway and it's not worth worrying about.
12278 * Makefile.maint (wget_files): Remove ansi2knr.c.
12279 (ansi2knr.c-url_prefix): Remove.
12280 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12281 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12282 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12283
12284 2002-10-15 Paul Eggert <eggert@twinsun.com>
12285
12286 Stop using the "enum_" trick for K&R-style function definitions;
12287 it confused me, and I was the author! Instead, assume that people
12288 who want to use K&R C compilers (when using these modules in GCC,
12289 perhaps?) will run ansi2knr.
12290
12291 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12292 All uses of "enum_" changed to "enum ".
12293 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12294 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12295
12296 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12297 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12298 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12299 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12300 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12301 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12302 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12303 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12304 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12305 Use function prototypes; this removes the need for declaring
12306 static functions simply to provide their prototypes.
12307 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12308 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12309 bitset_count_, bitset_create, bitset_dump, bitset_first,
12310 bitset_free, bitset_init, bitset_last, bitset_next,
12311 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12312 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12313 bitset_print, bitset_release_memory, bitset_toggle_,
12314 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12315 debug_bitset): Likewise.
12316 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12317 * lib/bitset_stats.c (bitset_log_histogram_print,
12318 bitset_percent_histogram_print, bitset_stats_and,
12319 bitset_stats_and_cmp, bitset_stats_and_or,
12320 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12321 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12322 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12323 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12324 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12325 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12326 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12327 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12328 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12329 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12330 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12331 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12332 bitset_stats_zero): Likewise.
12333 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12334 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12335 bitsetv_dump, debug_bitsetv): Likewise.
12336 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12337 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12338 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12339 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12340 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12341 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12342 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12343 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12344 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12345 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12346 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12347 Likewise.
12348 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12349 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12350 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12351 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12352 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12353 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12354 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12355 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12356 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12357 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12358 lbitset_xor_cmp, lbitset_zero): Likewise.
12359
12360 2002-10-14 Akim Demaille <akim@epita.fr>
12361
12362 Version 1.75.
12363
12364 2002-10-14 Akim Demaille <akim@epita.fr>
12365
12366 * tests/Makefile.am (maintainer-check-posix): New.
12367
12368 2002-10-14 Akim Demaille <akim@epita.fr>
12369
12370 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12371 member.
12372
12373 2002-10-14 Akim Demaille <akim@epita.fr>
12374
12375 * src/tables.c (table_ninf_remap): base -> tab.
12376 Reported by Matt Rosing.
12377
12378 2002-10-14 Paul Eggert <eggert@twinsun.com>
12379
12380 * tests/action.at, tests/calc.at, tests/conflicts.at,
12381 tests/cxx-type.at, tests/headers.at, tests/input.at,
12382 tests/regression.at, tests/synclines.at, tests/torture.at:
12383 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12384 so that the tests still work even if POSIXLY_CORRECT is set.
12385 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
12386
12387 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12388 for portability to K&R hosts. Fix typo: signed char is guaranteed
12389 only to 127, not to 128.
12390 * data/glr.c (yysigned_char): New type.
12391 * data/yacc.c (yysigned_char): Likewise.
12392 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12393
12394 2002-10-13 Paul Eggert <eggert@twinsun.com>
12395
12396 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12397 true due to limited range of data type" warning from GCC.
12398
12399 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12400 by wrapping enum yytokentype's definition inside #ifndef
12401 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12402
12403 2002-10-13 Akim Demaille <akim@epita.fr>
12404
12405 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12406 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12407
12408 2002-10-13 Akim Demaille <akim@epita.fr>
12409
12410 * Makefile.maint: Update from Autoconf 2.54.
12411 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12412
12413 2002-10-13 Akim Demaille <akim@epita.fr>
12414
12415 * src/print.c (print_state): Separate the list of solved conflicts
12416 from the other items.
12417 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12418
12419 2002-10-13 Akim Demaille <akim@epita.fr>
12420
12421 Let nondeterministic skeletons be usable with deterministic
12422 tables.
12423
12424 With the patch, GAWK compiled by GCC without -O2 passes its test
12425 suite using a GLR parser driven by LALR tables. It fails with -O2
12426 because `struct stat' gives two different answers on my machine:
12427 88 (definition of an auto var) and later 96 (memset on this var).
12428 Hence the stack is badly corrumpted. The headers inclusion is to
12429 blame: if I move the awk.h inclusion before GLR's system header
12430 inclusion, the two struct stat have the same size.
12431
12432 * src/tables.c (pack_table): Always create conflict_table.
12433 (token_actions): Always create conflict_list.
12434 * data/glr.c (YYFLAG): Remove, unused.
12435
12436 2002-10-13 Akim Demaille <akim@epita.fr>
12437
12438 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12439 (O0FLAGS): New.
12440 (VALGRIND, GXX): New.
12441 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12442 * tests/bison.in: Run $PREBISON a pre-command.
12443 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12444 (maintainer-check-g++): New.
12445 * Makefile.am (maintainer-check): New.
12446
12447 2002-10-13 Akim Demaille <akim@epita.fr>
12448
12449 * data/glr.c: Formatting changes.
12450 Tweak some trace messages to match yacc.c's.
12451
12452 2002-10-13 Akim Demaille <akim@epita.fr>
12453
12454 GLR parsers sometimes raise parse errors instead of performing the
12455 default reduction.
12456 Reported by Charles-Henry de Boysson.
12457
12458 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
12459 check the length of the traces when %glr.
12460 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12461 GLR's traces.
12462 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12463 Test GLR parsers.
12464 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12465 (yyltype): Remove the yy prefix from the member names.
12466 (yytable): Complete its comment.
12467 (yygetLRActions): Map error action number from YYTABLE from
12468 YYTABLE_NINF to 0.
12469 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12470 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12471 not satisfying as we could compare an YYACTION computed from
12472 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12473 only value for error actions.
12474 (yyreportParseError): In verbose parse error messages, don't issue
12475 `error' in the list of expected tokens.
12476 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
12477 next action to perform to match glr.c's decoding.
12478 (yytable): Complete its comment.
12479
12480 2002-10-13 Paul Eggert <eggert@twinsun.com>
12481
12482 Fix problem reported by Henrik Grubbstroem in
12483 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
12484 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
12485 because the Bison parser reads the second action before reducing
12486 the first one.
12487 * src/scan-gram.l (rule_length): New static var.
12488 Use it to keep track of the rule length in the scanner, since
12489 we can't expect the parser to be in lock-step sync with the scanner.
12490 (handle_action_dollar, handle_action_at): Use this var.
12491 * tests/actions.at (Exotic Dollars): Test for the problem.
12492
12493 2002-10-12 Paul Eggert <eggert@twinsun.com>
12494
12495 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
12496 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
12497 Include <sys/time.h> when checking for clock_t and struct tms.
12498 Use same include order as source.
12499 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
12500 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
12501
12502 * lib/timevar.c: Update copyright date and clarify comments.
12503 (get_time) [IN_GCC]: Keep the GCC version for reference.
12504
12505 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
12506 GCC version as of today, then merge Bison's changes.
12507 Change "GCC" to "Bison" in copyright notice. timevar.def's
12508 author is Akim, so change that too.
12509
12510 * src/reader.c (grammar_current_rule_check):
12511 Don't worry about the default action if $$ is untyped.
12512 Prevents bogus warnings reported by Jim Gifford in
12513 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
12514
12515 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
12516 * data/glr.c, data/lalr1.cc, data/yacc.c:
12517 Output token definitions before the first part of user declarations.
12518 Fixes compatibility problem reported by Jim Gifford for kbd in
12519 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
12520
12521 2002-10-11 Paul Eggert <eggert@twinsun.com>
12522
12523 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
12524 (yyparse): here. This undoes some of the 2002-07-25 change.
12525 Compatibility problem reported by Ralf S. Engelschall with
12526 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
12527
12528 2002-10-11 Akim Demaille <akim@epita.fr>
12529
12530 * tests/regression.at Characters Escapes): New.
12531 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
12532 characters.
12533 Reported by Jan Nieuwenhuizen.
12534
12535 2002-10-11 Akim Demaille <akim@epita.fr>
12536
12537 * po/id.po: New.
12538
12539 2002-10-10 Paul Eggert <eggert@twinsun.com>
12540
12541 Portability fixes for bitsets; this also avoids several GCC
12542 warnings.
12543
12544 * lib/abitset.c: Include <stddef.h>, for offsetof.
12545 * lib/lbitset.c: Likewise.
12546
12547 * lib/abitset.c (abitset_bytes): Return a size that is aligned
12548 properly for vectors of objects. Do not assume that adding a
12549 header size to a multiple of a word size yields a value that is
12550 properly aligned for the whole union.
12551 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12552
12553 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
12554 unique names for structures.
12555 * lib/ebitset.c (ebitset_bytes): Likewise.
12556 * lib/lbitset.c (lbitset_bytes): Likewise.
12557
12558 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
12559 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
12560 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
12561 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
12562 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
12563 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
12564 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
12565 to improve the type-checking that GCC can do.
12566 * lib/bitset.c (bitset_op4_cmp): Likewise.
12567 * lib/bitset_stats.c (bitset_stats_count,
12568 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
12569 bitset_stats_copy, bitset_stats_disjoint_p,
12570 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
12571 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
12572 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
12573 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
12574 bitset_stats_and_or_cmp, bitset_stats_andn_or,
12575 bitset_stats_andn_or_cmp, bitset_stats_or_and,
12576 bitset_stats_or_and_cmp): Likewise.
12577 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
12578 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
12579 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
12580 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
12581
12582 * lib/abitset.h: Include bitset.h, not bbitset.h.
12583 * lib/ebitset.h: Likewise.
12584 * lib/lbitset.h: Likewise.
12585
12586 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
12587 All instances of parameters of type enum bitset_opts are now of
12588 type enum_bitset_opts, to conform to the C Standard, and similarly
12589 for enum_bitset_type.
12590 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12591 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12592
12593 Do not use "struct bitset_struct" to mean different things in
12594 different modules. Not only is this confusing, it violates
12595 the C Standard, which requires that structure types in different
12596 modules must be compatible if one is to be passed to the other.
12597 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
12598 All instances of "struct bitset_struct *" replaced with "bitset".
12599 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
12600 (union bitset_union, struct abitset_struct, struct ebitset_struct,
12601 struct lbitset_struct, struct bitset_stats_struct): New types.
12602 All uses of struct bitset_struct changed to union bitset_union,
12603 etc.
12604 * lib/abitset.c (struct abitset_struct, abitset,
12605 struct bitset_struct): Remove.
12606 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
12607 struct bitset_struct): Remove.
12608 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
12609 bitset_struct): Remove.
12610 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
12611 Likewise.
12612
12613 Do not call a function of type T using a call that assumes the
12614 function is of a different type U. Standard C requires that a
12615 function must be called with a type that is compatible with its
12616 definition.
12617 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12618 New decls.
12619 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12620 New functions.
12621 * lib/ebitset.c (PFV): Remove.
12622 * lib/lbitset.c (PFV): Likewise.
12623 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
12624 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
12625 decls.
12626 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
12627 (ebitset_vtable): Use them.
12628 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
12629 lbitset_xor): New functions.
12630 (lbitset_vtable): Use them.
12631
12632 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
12633 Declare.
12634
12635 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
12636 GCC warning.
12637 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
12638 Use offsetof, for simplicity.
12639
12640 2002-10-06 Paul Eggert <eggert@twinsun.com>
12641
12642 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
12643 the same width as int. This reapplies a hunk of the 2002-08-12 patch
12644 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
12645 which was inadvertently undone by the 2002-09-30 patch.
12646 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
12647 the same width as int.
12648
12649 2002-10-04 Paul Eggert <eggert@twinsun.com>
12650
12651 Version 1.50.
12652
12653 * configure.ac (AC_INIT), NEWS: Increment version number.
12654
12655 * doc/bison.texinfo: Minor spelling, grammar, and white space
12656 fixes.
12657 (Symbols): Mention that any negative value returned from yylex
12658 signifies end-of-input. Warn about negative chars. Mention
12659 the portable Standard C character set.
12660
12661 The GNU coding standard says CFLAGS and YFLAGS are reserved
12662 for the installer to set.
12663 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
12664 * src/Makefile.am (AM_CFLAGS): Likewise.
12665 (AM_YFLAGS): Renamed from YFLAGS.
12666
12667 Fix some MAX and MIN problems.
12668 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
12669 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
12670 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
12671 * src/reader.c (reader): Use it.
12672
12673 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
12674 POSIX 1003.1-2001 has removed fgrep.
12675
12676 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12677
12678 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
12679 interpreted as signed.
12680 * lib/ebitset.c (ebitset_list): Fix bug.
12681
12682 2002-10-01 Paul Eggert <eggert@twinsun.com>
12683
12684 More fixes for 64-bit hosts and large bitsets.
12685
12686 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
12687 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
12688 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
12689 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
12690 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
12691 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
12692 bitset_count_): Likewise.
12693 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
12694 bitset_first, bitset_last): Likewise.
12695 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
12696 bitset_stats_list_reverse, bitset_stats_size,
12697 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
12698 Likewise.
12699 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12700 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12701 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12702 bitsetv_reflexive_transitive_closure): Likewise.
12703 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
12704 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
12705 Likewise.
12706 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
12707 Likewise.
12708
12709 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
12710 Use size_t, not unsigned int, to count bytes.
12711 * lib/abitset.h (abitset_bytes): Likewise.
12712 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
12713 Likewise.
12714 * lib/bitset.h (bitset_bytes): Likewise.
12715 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
12716 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
12717 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12718 * lib/ebitset.c (ebitset_bytes): Likewise.
12719 * lib/ebitset.h (ebitset_bytes): Likewise.
12720 * lib/lbitset.c (lbitset_bytes): Likewise.
12721 * lib/lbitset.h (lbitset_bytes): Likewise.
12722
12723 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
12724 abitset_subset_p, abitset_disjoint_p, abitset_and,
12725 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
12726 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
12727 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
12728 abitset_or_and, abitset_or_and_cmp):
12729 Use bitset_windex instead of unsigned int.
12730 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12731 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
12732 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
12733 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
12734 Likewise.
12735 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
12736
12737 * lib/bitset.c (bitset_print):
12738 Use proper printf formats for widths of integer types.
12739 * lib/bitset_stats.c (bitset_percent_histogram_print,
12740 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
12741 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12742 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12743 * lib/lbitset.c (lbitset_bytes): Likewise.
12744
12745 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
12746 BITSET_SIZE_MAX): New macros.
12747 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
12748 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
12749 to BITSET_WINDEX_MAX.
12750
12751 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
12752 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
12753 since we now return the bitset_bindex type (not int).
12754
12755 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
12756 when computing sizes.
12757 * lib/ebitset.c (ebitset_elts_grow): Likewise.
12758
12759 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
12760 and avoid cast to unsigned.
12761
12762 2002-09-30 Akim Demaille <akim@epita.fr>
12763
12764 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12765 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
12766 Updates from Michael Hayes.
12767
12768 2002-09-30 Art Haas <ahaas@neosoft.com>
12769
12770 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
12771 invocations.
12772 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
12773 defined.
12774
12775 2002-09-27 Akim Demaille <akim@epita.fr>
12776
12777 Version 1.49c.
12778
12779 2002-09-27 Akim Demaille <akim@epita.fr>
12780
12781 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
12782 (Because of AC_LIBSOURCE).
12783
12784 2002-09-27 Akim Demaille <akim@epita.fr>
12785
12786 Playing with Autoscan.
12787
12788 * configure.ac: Remove the old LIBOBJ tweaks.
12789 (AC_REPLACE_FUNCS): Add strrchr and strtol.
12790 * lib/strrchr.c: New.
12791 * lib/strtol.c: New, from the Coreutils 4.5.1.
12792
12793 2002-09-27 Akim Demaille <akim@epita.fr>
12794
12795 Playing with Autoscan.
12796
12797 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
12798 * lib/Makefile.am (libbison_a_SOURCES): No longer include
12799 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
12800 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
12801 Coreutils 4.5.1.
12802
12803 2002-09-24 Akim Demaille <akim@epita.fr>
12804
12805 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
12806 (Frequently Asked Questions, Parser Stack Overflow): New.
12807
12808 2002-09-13 Akim Demaille <akim@epita.fr>
12809
12810 Playing with autoscan.
12811
12812 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
12813 * src/files.c (skeleton_find): Remove, unused.
12814 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
12815 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
12816
12817 2002-09-13 Akim Demaille <akim@epita.fr>
12818
12819 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
12820 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
12821
12822 2002-09-13 Akim Demaille <akim@epita.fr>
12823
12824 * configure.ac: Require 2.54.
12825 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
12826 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
12827 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
12828 Remove, provided by Autoconf macros.
12829
12830 2002-09-12 Akim Demaille <akim@epita.fr>
12831
12832 * m4/prereq.m4: Update, from Coreutils 4.5.1.
12833
12834 2002-09-12 Akim Demaille <akim@epita.fr>
12835
12836 * m4/prereq.m4: Update, from Fileutils 4.1.5.
12837 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
12838 Reported by Martin Mokrejs.
12839
12840 2002-09-10 Akim Demaille <akim@epita.fr>
12841
12842 * src/parse-gram.y: Associate a human readable string to each
12843 token type.
12844 * tests/regression.at (Invalid inputs): Adjust.
12845
12846 2002-09-10 Gary V. Vaughan <gary@gnu.org>
12847
12848 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
12849 with an Autoconf-2.5x style configure.ac.
12850
12851 2002-09-06 Paul Eggert <eggert@twinsun.com>
12852
12853 * doc/bison.texinfo (Conditions): Make explicit that the GPL
12854 exception applies only to yacc.c. This is a modification of a
12855 patch originally suggested by Akim Demaille.
12856
12857 2002-09-06 Akim Demaille <akim@epita.fr>
12858
12859 * data/c.m4 (b4_copyright): Move the GPL exception comment from
12860 here to...
12861 * data/yacc.c: here.
12862
12863 * data/lalr1.cc (struct yyltype): Don't define it, since we use
12864 LocationType.
12865 (b4_ltype): Default to yy::Location from location.hh.
12866
12867 2002-09-04 Jim Meyering <jim@meyering.net>
12868
12869 * data/yacc.c: Guard the declaration of yytoknum also with
12870 `#ifdef YYPRINT', so it is declared only when used.
12871
12872 2002-09-04 Akim Demaille <akim@epita.fr>
12873
12874 * configure.in: Rename as...
12875 * configure.ac: this.
12876 Bump to 1.49c.
12877
12878 2002-09-04 Akim Demaille <akim@epita.fr>
12879
12880 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
12881 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
12882 translate maintainer only messages.
12883
12884 2002-08-12 Paul Eggert <eggert@twinsun.com>
12885
12886 Version 1.49b.
12887
12888 * Makefile.am (SUBDIRS): Remove intl.
12889 (DISTCLEANFILES): Remove.
12890 * NEWS: Mention that GNU M4 is now required. Clarify what is
12891 meant by "larger grammars". Mention the pt_BR translation.
12892 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
12893 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
12894 Bump version from 0.11.2 to 0.11.5.
12895 (BISON_PREREQ_STAGE): Remove.
12896 (AM_GNU_GETTEXT): Use external gettext.
12897 (AC_OUTPUT): Remove intl/Makefile.
12898
12899 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
12900
12901 * data/glr.c: Include string.h, for strlen.
12902 (yyreportParseError): Use size_t for yysize.
12903 (yy_yypstack): No longer nested inside yypstates, as nested
12904 functions are not portable. Do not assume size_t is the
12905 same width as int.
12906 (yypstates): Do not assume that ptrdiff_t is the same width
12907 as int, and similarly for yyposn and YYINDEX.
12908
12909 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
12910
12911 * lib/Makefile.am (INCLUDES): Do not include from the intl
12912 directory, which has been removed.
12913 * src/Makefile.am (INCLUDES): Likewise.
12914
12915 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
12916 (bitsets_sources, additional_bitsets_sources, timevars_sources):
12917 New vars.
12918
12919 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
12920 * tests/Makefile.am (EXTRA_DIST): Likewise.
12921
12922 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
12923 Do not assume that bitset_windex is the same width as unsigned.
12924
12925 * lib/abitset.c (abitset_unused_clear): Do not assume that
12926 bitset_word is the same width as int.
12927 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
12928 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
12929 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
12930 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
12931 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
12932
12933 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
12934 portability to one's complement hosts!).
12935 * lib/ebitset.c (ebitset_op1): Likewise.
12936 * lib/lbitset.c (lbitset_op1): Likewise.
12937
12938 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
12939 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12940 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
12941 Sync with fileutils.
12942 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
12943 lib/gettext.h: Sync with diffutils.
12944
12945 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
12946 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
12947
12948 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
12949 PROTOTYPES to check for prototypes, and "defined __STDC__" to
12950 check for void *.
12951
12952 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
12953 size_t; the old version tried to do this but casted improperly.
12954 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
12955 (bitset_test): Now returns int, not unsigned long.
12956
12957 * lib/bitset_stats.c: Include "gettext.h".
12958 (_): New macro.
12959 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
12960 name locals "index", as it generates unnecessary warnings on some
12961 hosts that have an "index" function.
12962
12963 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
12964 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
12965 they need translation.
12966 * src/LR0.c (state_list_append, new_itemsets, get_state,
12967 append_states, generate_states): Likewise.
12968 * src/assoc.c (assoc_to_string): Likewise.
12969 * src/closure.c (print_closure, set_firsts, closure): Likewise.
12970 * src/gram.c (grammar_dump): Likewise.
12971 * src/injections.c (injections_compute): Likewise.
12972 * src/lalr.c (lookaheads_print): Likewise.
12973 * src/relation.c (relation_transpose): Likewise.
12974 * src/scan-gram.l: Likewise.
12975 * src/tables.c (table_grow, pack_vector): Likewise.
12976
12977 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
12978 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
12979 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
12980 * m4/mbstate_t.m4: Sync with fileutils.
12981 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
12982
12983 * po/LINGUAS: Add pt_BR.
12984 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
12985 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
12986 lib/timevar.c.
12987 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
12988 manual recommends.
12989 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
12990
12991 * src/complain.c (strerror_r): Remove decl; not needed.
12992 (strerror): Use same pattern as ../lib/error.c.
12993
12994 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
12995
12996 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
12997
12998 * src/main.c (main): Cast result of bindtextdomain and textdomain
12999 to void, to avoid a GCC warning when --disable-nls is in effect.
13000
13001 * src/scan-gram.l: Use strings rather than escapes when possible,
13002 to minimize the number of warnings from xgettext.
13003 (handle_action_dollar, handle_action_at): Don't use isdigit,
13004 as it mishandles negative chars and it may not work as expected
13005 outside the C locale.
13006
13007 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
13008 this is a GCC extension and is not portable to other compilers.
13009
13010 * src/system.h (alloca): Use same pattern as ../lib/error.c.
13011 Do not include <ctype.h>; no longer needed.
13012 Do not include <malloc.h>; no longer needed (and generates
13013 warnings on OpenBSD 3.0).
13014
13015 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
13016 it's not portable.
13017
13018 * tests/regression.at: Do not use 'cc -c input.c -o input';
13019 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
13020
13021 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
13022 exit status as failure, not just exit status 1. Sun C exits
13023 with status 2 sometimes.
13024
13025 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
13026 Use it for the two large tests.
13027
13028 2002-08-02 Akim Demaille <akim@epita.fr>
13029
13030 * src/conflicts.c (conflicts_output): Don't output rules never
13031 reduced here, since anyway that computation doesn't work.
13032 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
13033 (rule_useless_p, rule_never_reduced_p): New.
13034 (grammar_rules_partial_print): Use a filter instead of a range.
13035 Display the title only if needed.
13036 (grammar_rules_print): Adjust.
13037 (grammar_rules_never_reduced_report): New.
13038 * src/tables.c (action_row): Move the computation of rules never
13039 reduced to...
13040 (token_actions): here.
13041 * src/main.c (main): Make the parser before making the report, so
13042 that rules never reduced are computed.
13043 Call grammar_rules_never_reduced_report.
13044 * src/print.c (print_results): Report rules never reduced.
13045 * tests/conflicts.at, tests/reduce.at: Adjust.
13046
13047 2002-08-01 Akim Demaille <akim@epita.fr>
13048
13049 Instead of attaching lookaheads and duplicating the rules being
13050 reduced by a state, attach the lookaheads to the reductions.
13051
13052 * src/state.h (state_t): Remove the `lookaheads',
13053 `lookaheads_rule' member.
13054 (reductions_t): Add a `lookaheads' member.
13055 Use a regular array for the `rules'.
13056 * src/state.c (reductions_new): Initialize the lookaheads member
13057 to 0.
13058 (state_rule_lookaheads_print): Adjust.
13059 * src/state.h, src/state.c (state_reductions_find): New.
13060 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
13061 (count_rr_conflicts): Adjust.
13062 * src/lalr.c (LArule): Remove.
13063 (add_lookback_edge): Adjust.
13064 (state_lookaheads_count): New.
13065 (states_lookaheads_initialize): Merge into...
13066 (initialize_LA): this.
13067 (lalr_free): Adjust.
13068 * src/main.c (main): Don't free nullable and derives too early: it
13069 is used by --verbose.
13070 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
13071
13072 2002-08-01 Akim Demaille <akim@epita.fr>
13073
13074 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
13075 `rule_number_t**'.
13076 (set_derives, free_derives): Rename as...
13077 (derives_compute, derives_free): this.
13078 Adjust all dependencies.
13079 * src/nullable.c (set_nullable, free_nullable): Rename as...
13080 (nullable_compute, nullable_free): these.
13081 (rule_list_t): Store rule_t *, not rule_number_t.
13082 * src/state.c (state_rule_lookaheads_print): Directly compare rule
13083 pointers, instead of their numbers.
13084 * src/main.c (main): Call nullable_free, and derives_free earlier,
13085 as they were lo longer used.
13086
13087 2002-08-01 Akim Demaille <akim@epita.fr>
13088
13089 * lib/timevar.c (get_time): Include children time.
13090 * src/lalr.h (LA, LArule): Don't export them: used with the
13091 state_t.
13092 * src/lalr.c (LA, LArule): Static.
13093 * src/lalr.h, src/lalr.c (lalr_free): New.
13094 * src/main.c (main): Call it.
13095 * src/tables.c (pack_vector): Check whether loc is >= to the
13096 table_size, not >.
13097 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
13098 (tables_generate): do it, since that's also it which allocates
13099 them.
13100 Don't free LA and LArule, main does.
13101
13102 2002-07-31 Akim Demaille <akim@epita.fr>
13103
13104 Separate parser tables computation and output.
13105
13106 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13107 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13108 (yydefgoto, yydefact, high): Move to...
13109 * src/tables.h, src/tables.c: here.
13110 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13111 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13112 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13113 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13114 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13115 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13116 (action_row, save_row, token_actions, save_column, default_goto)
13117 (goto_actions, sort_actions, matching_state, pack_vector)
13118 (table_ninf_remap, pack_table, prepare_actions): Move to...
13119 * src/tables.c: here.
13120 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13121 * src/output.c (token_actions, output_base, output_conflicts)
13122 (output_check): Merge into...
13123 (prepare_actions): this.
13124 (actions_output): Rename as...
13125 (user_actions_output): this.
13126 * src/main.c (main): Call tables_generate and tables_free.
13127
13128 2002-07-31 Akim Demaille <akim@epita.fr>
13129
13130 Steal GCC's --time-report support.
13131
13132 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13133 stolen/adjusted from GCC.
13134 * m4/stage.m4: Remove time related checks.
13135 * m4/timevar.m4: New.
13136 * configure.in: Adjust.
13137 * src/system.h: Adjust to using timevar.h.
13138 * src/getargs.h, src/getargs.c: Support trace_time for
13139 --trace=time.
13140 * src/main.c (stage): Remove.
13141 (main): Replace `stage' invocations with timevar calls.
13142 * src/output.c: Insert pertinent timevar calls.
13143
13144 2002-07-31 Akim Demaille <akim@epita.fr>
13145
13146 Let --trace have arguments.
13147
13148 * src/getargs.h (enum trace_e): New.
13149 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13150 (long_options, short_options): --trace/-T takes an optional
13151 argument.
13152 Change all the uses of trace_flag to reflect the new flags.
13153 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13154
13155 Strengthen `stage' portability.
13156
13157 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13158 * configure.in: Use it.
13159 Don't check for malloc.h and sys/times.h.
13160 * src/system.h: Include them when appropriate.
13161 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13162 times and struct tms are available.
13163
13164 2002-07-30 Akim Demaille <akim@epita.fr>
13165
13166 In verbose parse error message, don't report `error' as an
13167 expected token.
13168 * tests/actions.at (Printers and Destructors): Adjust.
13169 * tests/calc.at (Calculator $1): Adjust.
13170 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13171 error message, do not report the parser accepts the error token in
13172 that state.
13173
13174 2002-07-30 Akim Demaille <akim@epita.fr>
13175
13176 Normalize conflict related messages.
13177
13178 * src/complain.h, src/complain.c (warn, complain): New.
13179 * src/conflicts.c (conflicts_print): Use them.
13180 (conflict_report_yacc): New, extracted from...
13181 (conflicts_print): here.
13182 * tests/conflicts.at, tests/existing.at: Adjust.
13183
13184 2002-07-30 Akim Demaille <akim@epita.fr>
13185
13186 Report rules which are never reduced by the parser: those hidden
13187 by conflicts.
13188
13189 * src/LR0.c (save_reductions): Don't make the final state too
13190 different: save its reduction (accept) instead of having a state
13191 without any action (no shift or goto, no reduce).
13192 Note: the final state is now a ``regular'' state, i.e., the
13193 parsers now contain `reduce 0' as default reduction.
13194 Nevertheless, since they decide to `accept' when yystate =
13195 final_state, they still will not reduce rule 0.
13196 * src/print.c (print_actions, print_reduction): Adjust.
13197 * src/output.c (action_row): Track reduced rules.
13198 (token_actions): Report rules never reduced.
13199 * tests/conflicts.at, tests/regression.at: Adjust.
13200
13201 2002-07-30 Akim Demaille <akim@epita.fr>
13202
13203 `stage' was accidently included in a previous patch.
13204 Initiate its autoconfiscation.
13205
13206 * configure.in: Look for malloc.h and sys/times.h.
13207 * src/main.c (stage): Adjust.
13208 Report only when trace_flag.
13209
13210 2002-07-29 Akim Demaille <akim@epita.fr>
13211
13212 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13213 state_number_t.
13214 (errs_t): symbol_t*, not symbol_number_t.
13215 (reductions_t): rule_t*, not rule_number_t.
13216 (FOR_EACH_SHIFT): New.
13217 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13218 * src/print.c, src/print_graph.c: Adjust.
13219
13220 2002-07-29 Akim Demaille <akim@epita.fr>
13221
13222 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13223
13224 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13225 (endtoken, accept): these.
13226 * src/reader.c (reader): Set endtoken's default tag to "$end".
13227 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13228 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13229 Adjust.
13230
13231 2002-07-29 Akim Demaille <akim@epita.fr>
13232
13233 * src/reduce.c (reduce_grammar): When the language is empty,
13234 complain about the start symbol, not the axiom.
13235 Use its location.
13236 * tests/reduce.at (Empty Language): New.
13237
13238 2002-07-26 Akim Demaille <akim@epita.fr>
13239
13240 * src/reader.h, src/reader.c (gram_error): ... can't get
13241 yycontrol without making too strong assumptions on the parser
13242 itself.
13243 * src/output.c (prepare_tokens): Use the real 0th value of
13244 token_translations instead of `0'.
13245 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13246 visible here.
13247 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13248 for the time being: %locations ought to provide it to yyerror.
13249
13250 2002-07-25 Akim Demaille <akim@epita.fr>
13251
13252 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13253 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13254 * tests/regression.at (Web2c Actions): Adjust.
13255
13256 2002-07-25 Akim Demaille <akim@epita.fr>
13257
13258 Stop storing rules from 1 to nrules + 1.
13259
13260 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13261 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13262 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13263 Iterate from 0 to nrules.
13264 Use rule_number_as_item_number and item_number_as_rule_number.
13265 Adjust to `derive' now containing possibly 0.
13266 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13267 Handle the `- 1' part in rule numbers from/to item numbers.
13268 * src/conflicts.c (log_resolution): Fix the message which reversed
13269 shift and reduce.
13270 * src/output.c (action_row): Initialize default_rule to -1.
13271 (token_actions): Adjust.
13272 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13273 expected output.
13274 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13275
13276 2002-07-25 Akim Demaille <akim@epita.fr>
13277
13278 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13279 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13280 (b4_c_knr_arg_decl): New.
13281 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13282 yyreport_parse_error.
13283
13284 2002-07-25 Akim Demaille <akim@epita.fr>
13285
13286 * data/yacc.c (yyreport_parse_error): New, extracted from...
13287 (yyparse): here.
13288 (yydestruct, yysymprint): Move above yyparse.
13289 Be K&R compliant.
13290
13291 2002-07-25 Akim Demaille <akim@epita.fr>
13292
13293 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13294 replace...
13295 (b4_sint_type, b4_uint_type): these.
13296 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13297 * tests/regression.at (Web2c Actions): Adjust.
13298
13299 2002-07-25 Akim Demaille <akim@epita.fr>
13300
13301 * src/gram.h (TIEM_NUMBER_MAX): New.
13302 (item_number_of_rule_number, rule_number_of_item_number): Rename
13303 as...
13304 (rule_number_as_item_number, item_number_as_rule_number): these.
13305 Adjust dependencies.
13306 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13307 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13308 (symbol_number_to_vector_number): New.
13309 (order): Of vector_number_t* type.
13310 (base_t, BASE_MAX, BASE_MIN): New.
13311 (froms, tos, width, pos, check): Of base_t type.
13312 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13313 (actrow): Of action_number_t type.
13314 (conflrow): Of unsigned int type.
13315 (table_ninf, base_ninf): New.
13316 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13317 (muscle_insert_int_table, muscle_insert_base_table)
13318 (muscle_insert_rule_number_table): New.
13319 (prepare_tokens): Output `toknum' as int_table.
13320 (action_row): Returns a rule_number_t.
13321 Use ACTION_MIN, not SHRT_MIN.
13322 (token_actions): yydefact is rule_number_t*.
13323 (table_ninf_remap): New.
13324 (pack_table): Use it for `base' and `table'.
13325 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13326 replaced with...
13327 (YYPACT_NINF, YYTABLE_NINF): these.
13328 (yypact, yytable): Compute their types instead of hard-coded
13329 `short'.
13330 * tests/regression.at (Web2c Actions): Adjust.
13331
13332 2002-07-19 Akim Demaille <akim@epita.fr>
13333
13334 * src/scan-gram.l (id): Can start with an underscore.
13335
13336 2002-07-16 Akim Demaille <akim@epita.fr>
13337
13338 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13339 Adjust all former `associativity' dependencies.
13340 * src/symtab.c (symbol_new): Default associativity is `undef', not
13341 `right'.
13342 (symbol_check_alias_consistence): Adjust.
13343
13344 2002-07-09 Akim Demaille <akim@epita.fr>
13345
13346 * doc/bison.texinfo: Properly set the ``header'' part.
13347 Use @dircategory ``GNU programming tools'' as per Texinfo's
13348 documentation.
13349 Use @copying.
13350
13351 2002-07-09 Akim Demaille <akim@epita.fr>
13352
13353 * lib/quotearg.h: Protect against multiple inclusions.
13354 * src/location.h (location_t): Add a `file' member.
13355 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13356 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13357 `error_one_per_line' support.
13358
13359 2002-07-09 Akim Demaille <akim@epita.fr>
13360
13361 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13362 * src/reader.c (lineno): Remove.
13363 Adjust all dependencies.
13364 (get_merge_function): Take a location and use complain_at.
13365 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13366 * tests/regression.at (Invalid inputs, Mixing %token styles):
13367 Adjust.
13368
13369 2002-07-09 Akim Demaille <akim@epita.fr>
13370
13371 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13372 recovery rule, and forbid extensions when --yacc.
13373 (gram_error): Use complain_at.
13374 * src/reader.c (reader): Exit if there were parse errors.
13375
13376 2002-07-09 Akim Demaille <akim@epita.fr>
13377
13378 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13379 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13380 Reported by R Blake <blakers@mac.com>.
13381
13382 2002-07-09 Akim Demaille <akim@epita.fr>
13383
13384 * data/yacc.c: Output the copyright notive in the header.
13385
13386 2002-07-03 Akim Demaille <akim@epita.fr>
13387
13388 * src/output.c (froms, tos): Are state_number_t.
13389 (save_column): sp, sp1, and sp2 are state_number_t.
13390 (prepare): Rename `final' as `final_state_number', `nnts' as
13391 `nterms_number', `nrules' as `rules_number', `nstates' as
13392 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13393 unused.
13394 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13395 * data/lalr1.cc (nsym_): Remove, unused.
13396
13397 2002-07-03 Akim Demaille <akim@epita.fr>
13398
13399 * src/lalr.h, src/lalr.c (goto_number_t): New.
13400 * src/lalr.c (goto_list_t): New.
13401 Propagate them.
13402 * src/nullable.c (rule_list_t): New.
13403 Propagate.
13404 * src/types.h: Remove.
13405
13406 2002-07-03 Akim Demaille <akim@epita.fr>
13407
13408 * src/closure.c (print_fderives): Use rule_rhs_print.
13409 * src/derives.c (print_derives): Use rule_rhs_print.
13410 (rule_list_t): New, replaces `shorts'.
13411 (set_derives): Add comments.
13412 * tests/sets.at (Nullable, Firsts): Adjust.
13413
13414 2002-07-03 Akim Demaille <akim@epita.fr>
13415
13416 * src/output.c (prepare_actions): Free `tally' and `width'.
13417 (prepare_actions): Allocate and free `order'.
13418 * src/symtab.c (symbols_free): Free `symbols'.
13419 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13420 * src/output.c (m4_invoke): Move to...
13421 * src/scan-skel.l: here.
13422 (<<EOF>>): Close yyout, and free its name.
13423
13424 2002-07-03 Akim Demaille <akim@epita.fr>
13425
13426 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13427
13428 * src/LR0.c (new_state): Merge into...
13429 (state_list_append): this.
13430 (new_states): Merge into...
13431 (generate_states): here.
13432 (set_states): Don't ensure a proper `errs' state member here, do it...
13433 * src/conflicts.c (conflicts_solve): here.
13434 * src/state.h, src/state.c: Comment changes.
13435 (state_t): Rename member `shifts' as `transitions'.
13436 Adjust all dependencies.
13437 (errs_new): For consistency, also take the values as argument.
13438 (errs_dup): Remove.
13439 (state_errs_set): New.
13440 (state_reductions_set, state_transitions_set): Assert that no
13441 previous value was assigned.
13442 (state_free): New.
13443 (states_free): Use it.
13444 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13445 temporary storage: use `errs' and `nerrs' as elsewhere.
13446 (set_conflicts): Allocate and free this `errs'.
13447
13448 2002-07-02 Akim Demaille <akim@epita.fr>
13449
13450 * lib/libiberty.h: New.
13451 * lib: Update the bitset implementation from upstream.
13452 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13453 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13454 * src/main.c: Adjust bitset stats calls.
13455
13456 2002-07-01 Paul Eggert <eggert@twinsun.com>
13457
13458 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13459 char, so that negative chars don't collide with $.
13460
13461 2002-06-30 Akim Demaille <akim@epita.fr>
13462
13463 Have the GLR tests be `warning' checked, and fix the warnings.
13464
13465 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13466 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13467 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13468 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13469 (yyaddDeferredAction): static.
13470 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13471 (yyreportParseError): yyprefix is const.
13472 yytokenp is used only when verbose.
13473 (yy__GNUC__): Replace with __GNUC__.
13474 (yypdumpstack): yyi is size_t.
13475 (yypreference): Un-yy local variables and arguments, to avoid
13476 clashes with `yyr1'. Anyway, we are not in the user name space.
13477 (yytname_size): be an int, as is compared with ints.
13478 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
13479 Use them.
13480 * tests/cxx-gram.at: Use quotation to protect $1.
13481 Use AT_COMPILE to enable warnings hunts.
13482 Prototype yylex and yyerror.
13483 `Use' argc.
13484 Include `string.h', not `strings.h'.
13485 Produce and prototype stmtMerge only when used.
13486 yylex takes a location.
13487
13488 2002-06-30 Akim Demaille <akim@epita.fr>
13489
13490 We spend a lot of time in quotearg, in particular when --verbose.
13491
13492 * src/symtab.c (symbol_get): Store a quoted version of the key.
13493 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
13494 Adjust all callers.
13495
13496 2002-06-30 Akim Demaille <akim@epita.fr>
13497
13498 * src/state.h (reductions_t): Rename member `nreds' as num.
13499 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
13500 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
13501
13502 2002-06-30 Akim Demaille <akim@epita.fr>
13503
13504 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
13505 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
13506 (shifts_to): Rename as...
13507 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
13508 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
13509 (TRANSITION_IS_DISABLED, transitions_to): these.
13510
13511 2002-06-30 Akim Demaille <akim@epita.fr>
13512
13513 * src/print.c (print_shifts, print_gotos): Merge into...
13514 (print_transitions): this.
13515 (print_transitions, print_errs, print_reductions): Align the
13516 lookaheads columns.
13517 (print_core, print_transitions, print_errs, print_state,
13518 print_grammar): Output empty lines separator before, not after.
13519 (state_default_rule_compute): Rename as...
13520 (state_default_rule): this.
13521 * tests/conflicts.at (Defaulted Conflicted Reduction),
13522 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
13523 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
13524
13525 2002-06-30 Akim Demaille <akim@epita.fr>
13526
13527 Display items as we display rules.
13528
13529 * src/gram.h, src/gram.c (rule_lhs_print): New.
13530 * src/gram.c (grammar_rules_partial_print): Use it.
13531 * src/print.c (print_core): Likewise.
13532 * tests/conflicts.at (Defaulted Conflicted Reduction),
13533 (Unresolved SR Conflicts): Adjust.
13534 (Unresolved SR Conflicts): Adjust and rename as...
13535 (Resolved SR Conflicts): this, as was meant.
13536 * tests/regression.at (Web2c Report): Adjust.
13537
13538 2002-06-30 Akim Demaille <akim@epita.fr>
13539
13540 * src/print.c (state_default_rule_compute): New, extracted from...
13541 (print_reductions): here.
13542 Pessimize, but clarify the code.
13543 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
13544
13545 2002-06-30 Akim Demaille <akim@epita.fr>
13546
13547 * src/output.c (action_row): Let default_rule be always a rule
13548 number.
13549
13550 2002-06-30 Akim Demaille <akim@epita.fr>
13551
13552 * src/closure.c (print_firsts, print_fderives, closure):
13553 Use BITSET_EXECUTE.
13554 * src/lalr.c (lookaheads_print): Likewise.
13555 * src/state.c (state_rule_lookaheads_print): Likewise.
13556 * src/print_graph.c (print_core): Likewise.
13557 * src/print.c (print_reductions): Likewise.
13558 * src/output.c (action_row): Likewise.
13559 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
13560
13561 2002-06-30 Akim Demaille <akim@epita.fr>
13562
13563 * src/print_graph.c: Use report_flag.
13564
13565 2002-06-30 Akim Demaille <akim@epita.fr>
13566
13567 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
13568 to...
13569 * src/relation.h, src/relation.c (traverse, relation_digraph)
13570 (relation_print, relation_transpose): New.
13571
13572 2002-06-30 Akim Demaille <akim@epita.fr>
13573
13574 * src/state.h, src/state.c (shifts_to): New.
13575 * src/lalr.c (build_relations): Use it.
13576
13577 2002-06-30 Akim Demaille <akim@epita.fr>
13578
13579 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
13580 (item_number_of_rule_number, rule_number_of_item_number): New.
13581 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
13582 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13583 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
13584 Propagate their use.
13585 Much remains to be done, in particular wrt `shorts' from types.h.
13586
13587 2002-06-30 Akim Demaille <akim@epita.fr>
13588
13589 * src/symtab.c (symbol_new): Initialize the `printer' member.
13590
13591 2002-06-30 Akim Demaille <akim@epita.fr>
13592
13593 * src/LR0.c (save_reductions): Remove, replaced by...
13594 * src/state.h, src/state.c (state_reductions_set): New.
13595 (reductions, errs): Rename as...
13596 (reductions_t, errs_t): these.
13597 Adjust all dependencies.
13598
13599 2002-06-30 Akim Demaille <akim@epita.fr>
13600
13601 * src/LR0.c (state_list_t, state_list_append): New.
13602 (first_state, last_state): Now symbol_list_t.
13603 (this_state): Remove.
13604 (new_itemsets, append_states, save_reductions): Take a state_t as
13605 argument.
13606 (set_states, generate_states): Adjust.
13607 (save_shifts): Remove, replaced by...
13608 * src/state.h, src/state.c (state_shifts_set): New.
13609 (shifts): Rename as...
13610 (shifts_t): this.
13611 Adjust all dependencies.
13612 * src/state.h (state_t): Remove the `next' member.
13613
13614 2002-06-30 Akim Demaille <akim@epita.fr>
13615
13616 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
13617 escaped in slot 0.
13618
13619 2002-06-30 Akim Demaille <akim@epita.fr>
13620
13621 Use hash.h for the state hash table.
13622
13623 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
13624 (allocate_storage): Use state_hash_new.
13625 (free_storage): Use state_hash_free.
13626 (new_state, get_state): Adjust.
13627 * src/lalr.h, src/lalr.c (states): Move to...
13628 * src/states.h (state_t): Remove the `link' member, no longer
13629 used.
13630 * src/states.h, src/states.c: here.
13631 (state_hash_new, state_hash_free, state_hash_lookup)
13632 (state_hash_insert, states_free): New.
13633 * src/states.c (state_table, state_compare, state_hash): New.
13634 * src/output.c (output_actions): Do not free states now, since we
13635 still need to know the final_state number in `prepare', called
13636 afterwards. Do it...
13637 * src/main.c (main): here: call states_free after `output'.
13638
13639 2002-06-30 Akim Demaille <akim@epita.fr>
13640
13641 * src/state.h, src/state.c (state_new): New, extracted from...
13642 * src/LR0.c (new_state): here.
13643 * src/state.h (STATE_ALLOC): Move to...
13644 * src/state.c: here.
13645 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
13646 * src/state.h, src/state.c: here.
13647
13648 2002-06-30 Akim Demaille <akim@epita.fr>
13649
13650 * src/reader.c (gensym): Rename as...
13651 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
13652 (getsym): Rename as...
13653 (symbol_get): this.
13654
13655 2002-06-30 Akim Demaille <akim@epita.fr>
13656
13657 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
13658 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
13659 * src/output.c, src/print.c, src/print_graph.c: Propagate.
13660 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
13661
13662 2002-06-30 Akim Demaille <akim@epita.fr>
13663
13664 Make the test suite pass with warnings checked.
13665
13666 * tests/actions.at (Printers and Destructors): Improve.
13667 Avoid unsigned vs. signed issues.
13668 * tests/calc.at: Don't exercise the scanner here, do it...
13669 * tests/input.at (Torturing the Scanner): here.
13670
13671 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13672
13673 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
13674 reorganize first lines parallel to yacc.c.
13675
13676 2002-06-28 Akim Demaille <akim@epita.fr>
13677
13678 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
13679 (b4_token_enum, b4_token_defines): New, factored from...
13680 * data/lalr1.cc, data/yacc.c, glr.c: here.
13681
13682 2002-06-28 Akim Demaille <akim@epita.fr>
13683
13684 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
13685 unused variables.
13686 * src/output.c (merger_output): static.
13687
13688 2002-06-28 Akim Demaille <akim@epita.fr>
13689
13690 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
13691 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
13692 pacify GCC.
13693 * src/output.c (save_row): Initialize all the variables to pacify GCC.
13694
13695 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13696
13697 Accumulated changelog for new GLR parsing features.
13698
13699 * src/conflicts.c (count_total_conflicts): Change name to
13700 conflicts_total_count.
13701 * src/conflicts.h: Ditto.
13702 * src/output.c (token_actions): Use the new name.
13703 (output_conflicts): Change conflp => conflict_list_heads, and
13704 confl => conflict_list for better readability.
13705 * data/glr.c: Use the new names.
13706 * NEWS: Add self to GLR announcement.
13707
13708 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
13709
13710 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
13711 Akim Demaille.
13712
13713 * data/bison.glr: Change name to glr.c
13714 * data/glr.c: Renamed from bison.glr.
13715 * data/Makefile.am: Add glr.c
13716
13717 * src/getargs.c:
13718
13719 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
13720 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
13721
13722 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13723
13724 * data/bison.glr: Be sure to restore the
13725 current #line when returning to the skeleton contents after having
13726 exposed the input file's #line.
13727
13728 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13729
13730 * data/bison.glr: Bring up to date with changes to bison.simple.
13731
13732 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13733
13734 * data/bison.glr: Correct definitions that use b4_prefix.
13735 Various reformatting.
13736 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
13737 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
13738 yytokenp argument; now part of stack.
13739 (yychar): Define to behave as documented.
13740 (yyclearin): Ditto.
13741
13742 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13743
13744 * src/reader.h: Add declaration for free_merger_functions.
13745
13746 * src/reader.c (merge_functions): New variable.
13747 (get_merge_function): New function.
13748 (free_merger_functions): New function.
13749 (readgram): Check for %prec that is not followed by a symbol.
13750 Handle %dprec and %merge declarations.
13751 (packgram): Initialize dprec and merger fields in rules array.
13752
13753 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
13754 conflict_list_cnt, conflict_list_free): New variables.
13755 (table_grow): Also grow conflict_table.
13756 (prepare_rules): Output dprec and merger tables.
13757 (conflict_row): New function.
13758 (action_row): Output conflict lists for GLR parser. Don't use
13759 default reduction in conflicted states for GLR parser so that there
13760 are spaces for the conflict lists.
13761 (save_row): Also save conflict information.
13762 (token_actions): Allocate conflict list.
13763 (merger_output): New function.
13764 (pack_vector): Pack conflict table, too.
13765 (output_conflicts): New function to output yyconflp and yyconfl.
13766 (output_check): Allocate conflict_tos.
13767 (output_actions): Output conflict tables, also.
13768 (output_skeleton): Output b4_mergers definition.
13769 (prepare): Output b4_max_rhs_length definition.
13770 Use 'bison.glr' as default skeleton for GLR parsers.
13771
13772 * src/gram.c (glr_parser): New flag.
13773 (grammar_free): Call free_merger_functions.
13774
13775 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
13776 all pairs of conflicting reductions, rather than just all tokens
13777 causing conflicts. Needed to size conflict tables.
13778 (conflicts_output): Modify call to count_rr_conflicts for new
13779 interface.
13780 (conflicts_print): Ditto.
13781 (count_total_conflicts): New function.
13782
13783 * src/reader.h (merger_list): New type.
13784 (merge_functions): New variable.
13785
13786 * src/lex.h (tok_dprec, tok_merge): New token types.
13787
13788 * src/gram.h (rule_s): Add dprec and merger fields.
13789 (glr_parser): New flag.
13790
13791 * src/conflicts.h (count_total_conflicts): New function.
13792
13793 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
13794
13795 * doc/bison.texinfo (Generalized LR Parsing): New section.
13796 (GLR Parsers): New section.
13797 (Language and Grammar): Mention GLR parsing.
13798 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
13799 Correct typo ("tge" -> "the").
13800
13801 * data/bison.glr: New skeleton for GLR parsing.
13802
13803 * tests/cxx-gram.at: New tests for GLR parsing.
13804
13805 * tests/testsuite.at: Include cxx-gram.at.
13806
13807 * tests/Makefile.am: Add cxx-gram.at.
13808
13809 * src/parse-gram.y:
13810
13811 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
13812
13813 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
13814
13815 2002-06-27 Akim Demaille <akim@epita.fr>
13816
13817 * src/options.h, src/options.c: Remove.
13818 * src/getargs.c (short_options, long_options): New.
13819
13820 2002-06-27 Akim Demaille <akim@epita.fr>
13821
13822 * data/bison.simple, data/bison.c++: Rename as...
13823 * data/yacc.c, data/lalr1.cc: these.
13824 * doc/bison.texinfo (Environment Variables): Remove.
13825
13826 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
13827
13828 * src/getargs.c (report_argmatch): Initialize strtok().
13829
13830 2002-06-20 Akim Demaille <akim@epita.fr>
13831
13832 * data/bison.simple (b4_symbol_actions): New, replaces...
13833 (b4_symbol_destructor, b4_symbol_printer): these.
13834 (yysymprint): Be sure to call YYPRINT only for tokens, and using
13835 user token numbers.
13836
13837 2002-06-20 Akim Demaille <akim@epita.fr>
13838
13839 * data/bison.simple (yydestructor): Rename as...
13840 (yydestruct): this.
13841
13842 2002-06-20 Akim Demaille <akim@epita.fr>
13843
13844 * src/symtab.h, src/symtab.c (symbol_type_set)
13845 (symbol_destructor_set, symbol_precedence_set): The location is
13846 the last argument.
13847 Adjust all callers.
13848
13849 2002-06-20 Akim Demaille <akim@epita.fr>
13850
13851 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
13852 internals.
13853 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
13854 Takes a location.
13855 * src/symtab.h, src/symtab.c (symbol_class_set)
13856 (symbol_user_token_number_set): Likewise.
13857 Adjust all callers.
13858 Promote complain_at.
13859 * tests/input.at (Type Clashes): Adjust.
13860
13861 2002-06-20 Akim Demaille <akim@epita.fr>
13862
13863 * data/bison.simple (YYLEX): Fix the declaration when
13864 %pure-parser.
13865
13866 2002-06-20 Akim Demaille <akim@epita.fr>
13867
13868 * data/bison.simple (yysymprint): Don't print the token number,
13869 just its name.
13870 * tests/actions.at (Destructors): Rename as...
13871 (Printers and Destructors): this.
13872 Also exercise %printer.
13873
13874 2002-06-20 Akim Demaille <akim@epita.fr>
13875
13876 * data/bison.simple (YYDSYMPRINT): New.
13877 Use it to remove many of the #if YYDEBUG/if (yydebug).
13878
13879 2002-06-20 Akim Demaille <akim@epita.fr>
13880
13881 * src/symtab.h, src/symtab.c (symbol_t): printer and
13882 printer_location are new members.
13883 (symbol_printer_set): New.
13884 * src/parse-gram.y (PERCENT_PRINTER): New token.
13885 Handle its associated rule.
13886 * src/scan-gram.l: Adjust.
13887 (handle_destructor_at, handle_destructor_dollar): Rename as...
13888 (handle_symbol_code_at, handle_symbol_code_dollar): these.
13889 * src/output.c (symbol_printers_output): New.
13890 (output_skeleton): Call it.
13891 * data/bison.simple (yysymprint): New. Cannot be named yyprint
13892 since there are already many grammar files with a user `yyprint'.
13893 Replace the calls to YYPRINT to calls to yysymprint.
13894 * tests/calc.at: Adjust.
13895 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
13896 taking advantage of parser very internal details (stack size!).
13897
13898 2002-06-20 Akim Demaille <akim@epita.fr>
13899
13900 * src/scan-gram.l: Complete the scanner with the missing patterns
13901 to pacify Flex.
13902 Use `quote' and `symbol_tag_get' where appropriate.
13903
13904 2002-06-19 Akim Demaille <akim@epita.fr>
13905
13906 * tests/actions.at (Destructors): Augment to test locations.
13907 * data/bison.simple (yydestructor): Pass it the current location
13908 if locations are enabled.
13909 Prototype only when __STDC__ or C++.
13910 Change the argument names to move into the yy name space: there is
13911 user code here.
13912
13913 2002-06-19 Akim Demaille <akim@epita.fr>
13914
13915 * data/bison.simple (b4_pure_if): New.
13916 Use it instead of #ifdef YYPURE.
13917
13918 2002-06-19 Akim Demaille <akim@epita.fr>
13919
13920 * data/bison.simple (b4_location_if): New.
13921 Use it instead of #ifdef YYLSP_NEEDED.
13922
13923 2002-06-19 Akim Demaille <akim@epita.fr>
13924
13925 Prepare @$ in %destructor, but currently don't bind it in the
13926 skeleton, as %location use is not cleaned up yet.
13927
13928 * src/scan-gram.l (handle_dollar, handle_destructor_at)
13929 (handle_action_at): New.
13930 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
13931 a braced_code_t and a location as additional arguments.
13932 (handle_destructor_dollar): Instead of requiring `b4_eval', just
13933 unquote one when outputting `b4_dollar_dollar'.
13934 Adjust callers.
13935 * data/bison.simple (b4_eval): Remove.
13936 (b4_symbol_destructor): Adjust.
13937 * tests/input.at (Invalid @n): Adjust.
13938
13939 2002-06-19 Zack Weinberg <zack@codesourcery.com>
13940
13941 * doc/bison.texinfo: Document ability to have multiple
13942 prologue sections.
13943
13944 2002-06-18 Akim Demaille <akim@epita.fr>
13945
13946 * src/files.c (compute_base_names): When computing the output file
13947 names from the input file name, strip the directory part.
13948
13949 2002-06-18 Akim Demaille <akim@epita.fr>
13950
13951 * data/bison.simple.new: Comment changes.
13952 Reported by Andreas Schwab.
13953
13954 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
13955
13956 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
13957 there are no `label `yyoverflowlab' defined but not used' warnings
13958 when yyoverflow is defined.
13959
13960 2002-06-18 Akim Demaille <akim@epita.fr>
13961
13962 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
13963 new member.
13964 (symbol_destructor_set): Adjust.
13965 * src/output.c (symbol_destructors_output): Output the destructor
13966 locations.
13967 Output the symbol name.
13968 * data/bison.simple (b4_symbol_destructor): Adjust.
13969
13970 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
13971 and Akim Demaille <akim@epita.fr>
13972
13973 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
13974 what's left on the stack when the error recovery hits EOF.
13975 * tests/actions.at (Destructors): Complete to exercise this case.
13976
13977 2002-06-17 Akim Demaille <akim@epita.fr>
13978
13979 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
13980 arguments is really empty, not only equal to `[]'.
13981 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
13982 member.
13983 (symbol_destructor_set): New.
13984 * src/output.c (symbol_destructors_output): New.
13985 * src/reader.h (brace_code_t, current_braced_code): New.
13986 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
13987 (handle_dollar): Rename as...
13988 (handle_action_dollar): this.
13989 (handle_destructor_dollar): New.
13990 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
13991 (grammar_declaration): Use it.
13992 * data/bison.simple (yystos): Is always defined.
13993 (yydestructor): New.
13994 * tests/actions.at (Destructors): New.
13995 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
13996
13997 2002-06-17 Akim Demaille <akim@epita.fr>
13998
13999 * src/symlist.h, src/symlist.c (symbol_list_length): New.
14000 * src/scan-gram.l (handle_dollar, handle_at): Compute the
14001 rule_length only when needed.
14002 * src/output.c (actions_output, token_definitions_output): Output
14003 the full M4 block.
14004 * src/symtab.c: Don't access directly to the symbol tag, use
14005 symbol_tag_get.
14006 * src/parse-gram.y: Use symbol_list_free.
14007
14008 2002-06-17 Akim Demaille <akim@epita.fr>
14009
14010 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
14011 (symbol_list_prepend, get_type_name): Move to...
14012 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
14013 (symbol_list_prepend, symbol_list_n_type_name_get): here.
14014 Adjust all callers.
14015 (symbol_list_free): New.
14016 * src/scan-gram.l (handle_dollar): Takes a location.
14017 * tests/input.at (Invalid $n): Adjust.
14018
14019 2002-06-17 Akim Demaille <akim@epita.fr>
14020
14021 * src/reader.h, src/reader.c (symbol_list_new): Export it.
14022 (symbol_list_prepend): New.
14023 * src/parse-gram.y (%union): `list' is a new member.
14024 (symbols.1): New, replaces...
14025 (terms_to_prec.1, nterms_to_type.1): these.
14026 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
14027 Take a location as additional argument.
14028 Adjust all callers.
14029
14030 2002-06-15 Akim Demaille <akim@epita.fr>
14031
14032 * src/parse-gram.y: Move %token in the declaration section so that
14033 we don't depend upon CVS Bison.
14034
14035 2002-06-15 Akim Demaille <akim@epita.fr>
14036
14037 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
14038 * src/print.c (print_core): Use it.
14039
14040 2002-06-15 Akim Demaille <akim@epita.fr>
14041
14042 * src/conflicts.c (log_resolution): Accept the rule involved in
14043 the sr conflicts instead of the lookahead number that points to
14044 that rule.
14045 (flush_reduce): Accept the current lookahead vector as argument,
14046 instead of the index in LA.
14047 (resolve_sr_conflict): Accept the current number of lookahead
14048 bitset to consider for the STATE, instead of the index in LA.
14049 (set_conflicts): Adjust.
14050 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
14051
14052 2002-06-15 Akim Demaille <akim@epita.fr>
14053
14054 * src/state.h (state_t): Replace the `lookaheadsp' member, a
14055 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
14056 Adjust all dependencies.
14057 * src/lalr.c (initialize_lookaheads): Split into...
14058 (states_lookaheads_count, states_lookaheads_initialize): these.
14059 (lalr): Adjust.
14060
14061 2002-06-15 Akim Demaille <akim@epita.fr>
14062
14063 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
14064 out of...
14065 (grammar_rules_print): here.
14066 * src/reduce.c (reduce_output): Use it.
14067 * tests/reduce.at (Useless Rules, Reduced Automaton)
14068 (Underivable Rules): Adjust.
14069
14070 2002-06-15 Akim Demaille <akim@epita.fr>
14071
14072 Copy BYacc's nice way to report the grammar.
14073
14074 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
14075 New.
14076 Don't print the rules' location, it is confusing and useless.
14077 (rule_print): Use grammar_rhs_print.
14078 * src/print.c (print_grammar): Use grammar_rules_print.
14079
14080 2002-06-15 Akim Demaille <akim@epita.fr>
14081
14082 Complete and rationalize `useless thing' warnings.
14083
14084 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
14085 (symbol_tag_print): New.
14086 Use them everywhere in place of accessing directly the tag member.
14087 * src/gram.h, src/gram.c (rule_print): New.
14088 Use it where a rule used to be printed `by hand'.
14089 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
14090 (reduce_grammar_tables): Report the useless rules.
14091 (reduce_print): Useless things are a warning, not an error.
14092 Report it as such.
14093 * tests/reduce.at (Useless Nonterminals, Useless Rules):
14094 (Reduced Automaton, Underivable Rules): Adjust.
14095 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
14096 * tests/conflicts.at (Unresolved SR Conflicts)
14097 (Solved SR Conflicts): Adjust.
14098
14099 2002-06-15 Akim Demaille <akim@epita.fr>
14100
14101 Let symbols have a location.
14102
14103 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14104 (getsym): Adjust.
14105 Adjust all callers.
14106 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14107 Use location_t, not int.
14108 * src/symtab.c (symbol_check_defined): Take advantage of the
14109 location.
14110 * tests/regression.at (Invalid inputs): Adjust.
14111
14112 2002-06-15 Akim Demaille <akim@epita.fr>
14113
14114 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14115 (input): Don't try to initialize yylloc here, do it in the
14116 scanner.
14117 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14118 * src/gram.h (rule_t): Change line and action_line into location
14119 and action_location, of location_t type.
14120 Adjust all dependencies.
14121 * src/location.h, src/location.c (empty_location): New.
14122 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14123 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14124 (grammar_current_rule_symbol_append)
14125 (grammar_current_rule_action_append): Expect a location as argument.
14126 * src/reader.c (grammar_midrule_action): Adjust to attach an
14127 action's location as dummy symbol location.
14128 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14129 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14130 the line numbers.
14131
14132 2002-06-14 Akim Demaille <akim@epita.fr>
14133
14134 Grammar declarations may be found in the grammar section.
14135
14136 * src/parse-gram.y (rules_or_grammar_declaration): New.
14137 (declarations): Each declaration may end with a semicolon, not
14138 just...
14139 (grammar_declaration): `"%union"'.
14140 (grammar): Branch to rules_or_grammar_declaration.
14141
14142 2002-06-14 Akim Demaille <akim@epita.fr>
14143
14144 * src/main.c (main): Invoke scanner_free.
14145
14146 2002-06-14 Akim Demaille <akim@epita.fr>
14147
14148 * src/output.c (m4_invoke): Extracted from...
14149 (output_skeleton): here.
14150 Free tempfile.
14151
14152 2002-06-14 Akim Demaille <akim@epita.fr>
14153
14154 * src/parse-gram.y (directives, directive, gram)
14155 (grammar_directives, precedence_directives, precedence_directive):
14156 Rename as...
14157 (declarations, declaration, grammar, grammar_declaration)
14158 (precedence_declaration, precedence_declarator): these.
14159 (symbol_declaration): New.
14160
14161 2002-06-14 Akim Demaille <akim@epita.fr>
14162
14163 * src/files.c (action_obstack): Remove, unused.
14164 (output_obstack): Remove it, and all its dependencies, as it is no
14165 longer needed.
14166 * src/reader.c (epilogue_set): Build the epilogue in the
14167 muscle_obstack.
14168 * src/output.h, src/output.c (muscle_obstack): Move to...
14169 * src/muscle_tab.h, src/muscle_tab.h: here.
14170 (muscle_init): Initialize muscle_obstack.
14171 (muscle_free): New.
14172 * src/main.c (main): Call it.
14173
14174 2002-06-14 Akim Demaille <akim@epita.fr>
14175
14176 * src/location.h: New, extracted from...
14177 * src/reader.h: here.
14178 * src/Makefile.am (noinst_HEADERS): Merge into
14179 (bison_SOURCES): this.
14180 Add location.h.
14181 * src/parse-gram.y: Use location_t instead of Bison's.
14182 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14183 Use location_t instead of ints.
14184
14185 2002-06-14 Akim Demaille <akim@epita.fr>
14186
14187 * data/bison.simple, data/bison.c++: Be sure to restore the
14188 current #line when returning to the skeleton contents after having
14189 exposed the input file's #line.
14190
14191 2002-06-12 Akim Demaille <akim@epita.fr>
14192
14193 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14194 eager.
14195 * tests/actions.at (Exotic Dollars): New.
14196
14197 2002-06-12 Akim Demaille <akim@epita.fr>
14198
14199 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14200 ['"/] too eagerly.
14201 * tests/input.at (Torturing the Scanner): New.
14202
14203 2002-06-11 Akim Demaille <akim@epita.fr>
14204
14205 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14206 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14207 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14208 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14209 * src/reader.c (reader): Use it.
14210
14211 2002-06-11 Akim Demaille <akim@epita.fr>
14212
14213 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14214 Adjust all callers.
14215 (scanner_last_string_free): New.
14216
14217 2002-06-11 Akim Demaille <akim@epita.fr>
14218
14219 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14220 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14221 (last_string, YY_OBS_FREE): New.
14222 Use them when returning an ID.
14223
14224 2002-06-11 Akim Demaille <akim@epita.fr>
14225
14226 Have Bison grammars parsed by a Bison grammar.
14227
14228 * src/reader.c, src/reader.h (prologue_augment): New.
14229 * src/reader.c (copy_definition): Remove.
14230
14231 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14232 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14233 (grammar_current_rule_prec_set, grammar_current_rule_check)
14234 (grammar_current_rule_symbol_append)
14235 (grammar_current_rule_action_append): Export.
14236 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14237 (symbol_list_action_append): Remove.
14238 Hook the routines from reader.
14239 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14240 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14241
14242 * src/reader.c (read_declarations): Remove, unused.
14243
14244 * src/parse-gram.y: Handle the epilogue.
14245 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14246 (grammar_start_symbol_set): this.
14247 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14248 * src/reader.c (readgram): Remove, unused.
14249 (reader): Adjust to insert eoftoken and axiom where appropriate.
14250
14251 * src/reader.c (copy_dollar): Replace with...
14252 * src/scan-gram.h (handle_dollar): this.
14253 * src/parse-gram.y: Remove `%thong'.
14254
14255 * src/reader.c (copy_at): Replace with...
14256 * src/scan-gram.h (handle_at): this.
14257
14258 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14259 New.
14260
14261 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14262 time being.
14263
14264 * src/reader.h, src/reader.c (grammar_rule_end): New.
14265
14266 * src/parse.y (current_type, current_class): New.
14267 Implement `%nterm', `%token' support.
14268 Merge `%term' into `%token'.
14269 (string_as_id): New.
14270 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14271 type name.
14272
14273 * src/parse-gram.y: Be sure to handle properly the beginning of
14274 rules.
14275
14276 * src/parse-gram.y: Handle %type.
14277 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14278
14279 * src/parse-gram.y: More directives support.
14280 * src/options.c: No longer handle source directives.
14281
14282 * src/parse-gram.y: Fix %output.
14283
14284 * src/parse-gram.y: Handle %union.
14285 Use the prologue locations.
14286 * src/reader.c (parse_union_decl): Remove.
14287
14288 * src/reader.h, src/reader.c (epilogue_set): New.
14289 * src/parse-gram.y: Use it.
14290
14291 * data/bison.simple, data/bison.c++: b4_stype is now either not
14292 defined, then default to int, or to the contents of %union,
14293 without `union' itself.
14294 Adjust.
14295 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14296
14297 * src/output.c (actions_output): Don't output braces, as they are
14298 already handled by the scanner.
14299
14300 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14301 characters to themselves.
14302
14303 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14304 that the epilogue has a proper #line.
14305
14306 * src/parse-gram.y: Handle precedence/associativity.
14307
14308 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14309 a terminal.
14310 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14311 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14312 at all to define terminals that cannot be emitted.
14313
14314 * src/scan-gram.l: Escape M4 characters.
14315
14316 * src/scan-gram.l: Working properly with escapes in user
14317 strings/characters.
14318
14319 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14320 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14321 grammar.
14322 Use more modest sizes, as for the time being the parser does not
14323 release memory, and therefore the process swallows a huge amount
14324 of memory.
14325
14326 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14327 stricter %token grammar.
14328
14329 * src/symtab.h (associativity): Add `undef_assoc'.
14330 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14331 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14332
14333 * tests/regression.at (Invalid %directive): Remove, as it is now
14334 meaningless.
14335 (Invalid inputs): Adjust to the new error messages.
14336 (Token definitions): The new grammar doesn't allow too many
14337 eccentricities.
14338
14339 * src/lex.h, src/lex.c: Remove.
14340 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14341 (copy_character, copy_string2, copy_string, copy_identifier)
14342 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14343 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14344 (parse_action): Remove.
14345 * po/POTFILES.in: Adjust.
14346
14347 2002-06-11 Akim Demaille <akim@epita.fr>
14348
14349 * src/reader.c (parse_action): Don't store directly into the
14350 rule's action member: return the action as a string.
14351 Don't require `rule_length' as an argument: compute it.
14352 (grammar_current_rule_symbol_append)
14353 (grammar_current_rule_action_append): New, eved out from
14354 (readgram): here.
14355 Remove `action_flag', `rulelength', unused now.
14356
14357 2002-06-11 Akim Demaille <akim@epita.fr>
14358
14359 * src/reader.c (grammar_current_rule_prec_set).
14360 (grammar_current_rule_check): New, eved out from...
14361 (readgram): here.
14362 Remove `xaction', `first_rhs': useless.
14363 * tests/input.at (Type clashes): New.
14364 * tests/existing.at (GNU Cim Grammar): Adjust.
14365
14366 2002-06-11 Akim Demaille <akim@epita.fr>
14367
14368 * src/reader.c (grammar_midrule_action): New, Eved out from
14369 (readgram): here.
14370
14371 2002-06-11 Akim Demaille <akim@epita.fr>
14372
14373 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14374 New.
14375 (readgram): Use them as replacement of inlined code, crule and
14376 crule1.
14377
14378 2002-06-11 Akim Demaille <akim@epita.fr>
14379
14380 * src/reader.c (grammar_end, grammar_symbol_append): New.
14381 (readgram): Use them.
14382 Make the use of `p' as local as possible.
14383
14384 2002-06-10 Akim Demaille <akim@epita.fr>
14385
14386 GCJ's parser requires the tokens to be defined before the prologue.
14387
14388 * data/bison.simple: Output the token definition before the user's
14389 prologue.
14390 * tests/regression.at (Braces parsing, Duplicate string)
14391 (Mixing %token styles): Check the output from bison.
14392 (Early token definitions): New.
14393
14394 2002-06-10 Akim Demaille <akim@epita.fr>
14395
14396 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14397 assigning twice the same user number to a token, so that we can
14398 use it in...
14399 * src/lex.c (lex): here.
14400 Also use `symbol_class_set' instead of hand written code.
14401 * src/reader.c (parse_assoc_decl): Likewise.
14402
14403 2002-06-10 Akim Demaille <akim@epita.fr>
14404
14405 * src/symtab.c, src/symtab.c (symbol_class_set)
14406 (symbol_user_token_number_set): New.
14407 * src/reader.c (parse_token_decl): Use them.
14408 Use a switch instead of ifs.
14409 Use a single argument.
14410
14411 2002-06-10 Akim Demaille <akim@epita.fr>
14412
14413 Remove `%thong' support as it is undocumented, unused, duplicates
14414 `%token's job, and creates useless e-mail traffic with people who
14415 want to know what it is, why it is undocumented, unused, and
14416 duplicates `%token's job.
14417
14418 * src/reader.c (parse_thong_decl): Remove.
14419 * src/options.c (option_table): Remove "thong".
14420 * src/lex.h (tok_thong): Remove.
14421
14422 2002-06-10 Akim Demaille <akim@epita.fr>
14423
14424 * src/symtab.c, src/symtab.c (symbol_type_set)
14425 (symbol_precedence_set): New.
14426 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14427 (value_components_used): Remove, unused.
14428
14429 2002-06-09 Akim Demaille <akim@epita.fr>
14430
14431 Move symbols handling code out of the reader.
14432
14433 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14434 (axiom): Move to...
14435 * src/symtab.h, src/symtab.c: here.
14436
14437 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14438 * src/reader.c (startval): Rename as...
14439 * src/symtab.h, src/symtab.c (startsymbol): this.
14440 * src/reader.c: Adjust.
14441
14442 * src/reader.c (symbol_check_defined, symbol_make_alias)
14443 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14444 (token_translations_init)
14445 Move to...
14446 * src/symtab.c: here.
14447 * src/reader.c (packsymbols): Move to...
14448 * src/symtab.h, src/symtab.c (symbols_pack): here.
14449 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14450 argument.
14451
14452 2002-06-03 Akim Demaille <akim@epita.fr>
14453
14454 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14455 then statements.
14456
14457 2002-06-03 Akim Demaille <akim@epita.fr>
14458
14459 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14460 structs with non literals.
14461 * src/scan-skel.l: never-interactive.
14462 * src/conflicts.c (enum conflict_resolution_e): No trailing
14463 comma.
14464 * src/getargs.c (usage): Split long literal strings.
14465 Reported by Hans Aberg.
14466
14467 2002-05-28 Akim Demaille <akim@epita.fr>
14468
14469 * data/bison.c++: Use C++ ostreams.
14470 (cdebug_): New member.
14471
14472 2002-05-28 Akim Demaille <akim@epita.fr>
14473
14474 * src/output.c (output_skeleton): Be sure to allocate enough room
14475 for `/' _and_ for `\0' in full_skeleton.
14476
14477 2002-05-28 Akim Demaille <akim@epita.fr>
14478
14479 * data/bison.c++: Catch up with bison.simple:
14480 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14481 and Paul Eggert <eggert@twinsun.com>: `error' handing.
14482 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
14483 and popping traces.
14484
14485 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14486
14487 * src/output.c (output_skeleton): Put an explicit path in front of
14488 the skeleton file name, rather than relying on the -I directory,
14489 to partially alleviate effects of having a skeleton file lying around
14490 in the current directory.
14491
14492 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14493
14494 * src/conflicts.c (log_resolution): Correct typo:
14495 obstack_printf should be obstack_fgrow1.
14496
14497 2002-05-26 Akim Demaille <akim@epita.fr>
14498
14499 * src/state.h (state_t): `solved_conflicts' is a new member.
14500 * src/LR0.c (new_state): Set it to 0.
14501 * src/conflicts.h, src/conflicts.c (print_conflicts)
14502 (free_conflicts, solve_conflicts): Rename as...
14503 (conflicts_print, conflicts_free, conflicts_solve): these.
14504 Adjust callers.
14505 * src/conflicts.c (enum conflict_resolution_e)
14506 (solved_conflicts_obstack): New, used by...
14507 (log_resolution): this.
14508 Adjust to attach the conflict resolution to each state.
14509 Complete the description with the precedence/associativity
14510 information.
14511 (resolve_sr_conflict): Adjust.
14512 * src/print.c (print_state): Output its solved_conflicts.
14513 * tests/conflicts.at (Unresolved SR Conflicts)
14514 (Solved SR Conflicts): Exercise --report=all.
14515
14516 2002-05-26 Akim Demaille <akim@epita.fr>
14517
14518 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14519 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
14520 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
14521 (token_number_t, item_number_as_token_number)
14522 (token_number_as_item_number, muscle_insert_token_number_table):
14523 Rename as...
14524 (symbol_number_t, item_number_as_symbol_number)
14525 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
14526 these, since it is more appropriate.
14527
14528 2002-05-26 Akim Demaille <akim@epita.fr>
14529
14530 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
14531 `Error:' lines.
14532 * data/bison.simple (yystos) [YYDEBUG]: New.
14533 (yyparse) [YYDEBUG]: Display the symbols which are popped during
14534 error recovery.
14535 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
14536
14537 2002-05-25 Akim Demaille <akim@epita.fr>
14538
14539 * doc/bison.texinfo (Debugging): Split into...
14540 (Tracing): this new section, its former contents, and...
14541 (Understanding): this new section.
14542 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
14543 by...
14544 (report_flag): this.
14545 Adjust all dependencies.
14546 (report_args, report_types, report_argmatch): New.
14547 (usage, getargs): Report/support -r, --report.
14548 * src/options.h
14549 (struct option_table_struct): Rename as..,
14550 (struct option_table_s): this.
14551 Rename the `set_flag' member to `flag' to match with getopt_long's
14552 struct.
14553 * src/options.c (option_table): Split verbose into an entry for
14554 %verbose, and another for --verbose.
14555 Support --report/-r, so remove -r from the obsolete --raw.
14556 * src/print.c: Attach full item sets and lookaheads reports to
14557 report_flag instead of trace_flag.
14558 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
14559
14560 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14561 and Paul Eggert <eggert@twinsun.com>
14562
14563 * data/bison.simple (yyparse): Correct error handling to conform to
14564 POSIX and yacc. Specifically, after syntax error is discovered,
14565 do not reduce further before shifting the error token.
14566 Clean up the code a bit by removing the labels yyerrdefault,
14567 yyerrhandle, yyerrpop.
14568 * NEWS: Document the above.
14569
14570 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14571
14572 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
14573 type; it isn't always big enough, since it doesn't necessarily
14574 include non-terminals.
14575 (yytranslate): Expand definition of yy_token_number_type, so that
14576 the latter can be removed.
14577 (yy_token_number_type): Remove, only one use.
14578 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
14579 don't use TokenNumberType as element type.
14580
14581 * tests/regression.at: Modify expected output to agree with change
14582 to yyr1 and yytranslate.
14583
14584 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
14585
14586 * src/reader.c (parse_action): Use copy_character instead of
14587 obstack_1grow.
14588
14589 2002-05-13 Akim Demaille <akim@epita.fr>
14590
14591 * tests/regression.at (Token definitions): Prototype yylex and
14592 yyerror.
14593
14594 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14595
14596 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
14597 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
14598 32-bit arithmetic.
14599 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
14600
14601 2002-05-07 Akim Demaille <akim@epita.fr>
14602
14603 * tests/synclines.at: Be sure to prototype yylex and yyerror to
14604 avoid GCC warnings.
14605
14606 2002-05-07 Akim Demaille <akim@epita.fr>
14607
14608 Kill GCC warnings.
14609
14610 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
14611 over the RHS of each rule.
14612 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
14613 * src/state.h (state_t): Member `nitems' is unsigned short.
14614 * src/LR0.c (get_state): Adjust.
14615 * src/reader.c (packgram): Likewise.
14616 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
14617 `Type'.
14618 (muscle_insert_int_table): Remove, unused.
14619 (prepare_rules): Remove `max'.
14620
14621 2002-05-06 Akim Demaille <akim@epita.fr>
14622
14623 * src/closure.c (print_firsts): Display of the symbol tags.
14624 (bitmatrix_print): Move to...
14625 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
14626 here.
14627 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
14628
14629 2002-05-06 Akim Demaille <akim@epita.fr>
14630
14631 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
14632 hash_do_for_each.
14633
14634 2002-05-06 Akim Demaille <akim@epita.fr>
14635
14636 * src/LR0.c (new_state, get_state): Instead of using the global
14637 `kernel_size' and `kernel_base', have two new arguments:
14638 `core_size' and `core'.
14639 Adjust callers.
14640
14641 2002-05-06 Akim Demaille <akim@epita.fr>
14642
14643 * src/reader.c (packgram): No longer end `ritem' with a 0
14644 sentinel: it is not used.
14645
14646 2002-05-05 Akim Demaille <akim@epita.fr>
14647
14648 New experimental feature: display the lookaheads in the report and
14649 graph.
14650
14651 * src/print (print_core): When --trace-flag, display the rules
14652 lookaheads.
14653 * src/print_graph.c (print_core): Likewise.
14654 Swap the arguments.
14655 Adjust caller.
14656
14657 2002-05-05 Akim Demaille <akim@epita.fr>
14658
14659 * tests/torture.at (Many lookaheads): New test.
14660
14661 2002-05-05 Akim Demaille <akim@epita.fr>
14662
14663 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
14664 (GENERATE_MUSCLE_INSERT_TABLE): this.
14665 (output_int_table, output_unsigned_int_table, output_short_table)
14666 (output_token_number_table, output_item_number_table): Replace with...
14667 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
14668 (muscle_insert_short_table, muscle_insert_token_number_table)
14669 (muscle_insert_item_number_table): these.
14670 Adjust all callers.
14671 (prepare_tokens): Don't free `translations', since...
14672 * src/reader.h, src/reader.c (grammar_free): do it.
14673 Move to...
14674 * src/gram.h, src/gram.c (grammar_free): here.
14675 * data/bison.simple, data/bison.c++: b4_token_number_max is now
14676 b4_translate_max.
14677
14678 2002-05-05 Akim Demaille <akim@epita.fr>
14679
14680 * src/output.c (output_unsigned_int_table): New.
14681 (prepare_rules): `i' is unsigned.
14682 `prhs', `rline', `r2' are unsigned int.
14683 Rename muscle `rhs_number_max' as `rhs_max'.
14684 Output muscles `prhs_max', `rline_max', and `r2_max'.
14685 Free rline and r1.
14686 * data/bison.simple, data/bison.c++: Adjust to use these muscles
14687 to compute types instead of constant types.
14688 * tests/regression.at (Web2c Actions): Adjust.
14689
14690 2002-05-04 Akim Demaille <akim@epita.fr>
14691
14692 * src/symtab.h (SALIAS, SUNDEF): Rename as...
14693 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
14694 Adjust dependencies.
14695 * src/output.c (token_definitions_output): Be sure not to output a
14696 `#define 'a'' when fed with `%token 'a' "a"'.
14697 * tests/regression.at (Token definitions): New.
14698
14699 2002-05-03 Paul Eggert <eggert@twinsun.com>
14700
14701 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
14702 for K&R C.
14703
14704 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
14705
14706 * Makefile.am (SUBDIRS): Remove intl.
14707 (EXTRA_DIST): Add config/config.rpath.
14708
14709 2002-05-03 Akim Demaille <akim@epita.fr>
14710
14711 * data/bison.simple (m4_if): Don't output empty enums.
14712 And actually, output valid enum definitions :(.
14713
14714 2002-05-03 Akim Demaille <akim@epita.fr>
14715
14716 * configure.bat: Remove, completely obsolete.
14717 * Makefile.am (EXTRA_DIST): Adjust.
14718 Don't distribute config.rpath...
14719 * config/Makefile.am (EXTRA_DIST): Do it.
14720
14721 2002-05-03 Akim Demaille <akim@epita.fr>
14722
14723 * configure.in (GETTEXT_VERSION): New.
14724 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
14725
14726 2002-05-03 Akim Demaille <akim@epita.fr>
14727
14728 * data/bison.simple (b4_token_enum): New.
14729 (b4_token_defines): Use it to output tokens both as #define and
14730 enums.
14731 Suggested by Paul Eggert.
14732 * src/output.c (token_definitions_output): Don't output spurious
14733 white spaces.
14734
14735 2002-05-03 Akim Demaille <akim@epita.fr>
14736
14737 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
14738
14739 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
14740
14741 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
14742 Update the stack class, give a try to deque as the default container.
14743
14744 2002-05-02 Akim Demaille <akim@epita.fr>
14745
14746 * data/bison.simple (yyparse): Do not implement @$ = @1.
14747 (YYLLOC_DEFAULT): Adjust to do it.
14748 * doc/bison.texinfo (Location Default Action): Fix.
14749
14750 2002-05-02 Akim Demaille <akim@epita.fr>
14751
14752 * src/reader.c (parse_braces): Merge into...
14753 (parse_action): this.
14754
14755 2002-05-02 Akim Demaille <akim@epita.fr>
14756
14757 * configure.in (ALL_LINGUAS): Remove.
14758 * po/LINGUAS, hr.po: New.
14759
14760 2002-05-02 Akim Demaille <akim@epita.fr>
14761
14762 Remove the so called hairy (semantic) parsers.
14763
14764 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
14765 * src/gram.h, src/gram.c (semantic_parser): Remove.
14766 (rule_t): Remove the guard and guard_line members.
14767 * src/lex.h (token_t): remove tok_guard.
14768 * src/options.c (option_table): Remove %guard and %semantic_parser
14769 support.
14770 * src/output.c, src/output.h (guards_output): Remove.
14771 (prepare): Adjust.
14772 (token_definitions_output): Don't output the `T'
14773 tokens (???).
14774 (output_skeleton): Don't output the guards.
14775 * src/files.c, src/files.c (attrsfile): Remove.
14776 * src/reader.c (symbol_list): Remove the guard and guard_line
14777 members.
14778 Adjust dependencies.
14779 (parse_guard): Remove.
14780 * data/bison.hairy: Remove.
14781 * doc/bison.texinfo (Environment Variables): Remove occurrences of
14782 BISON_HAIRY.
14783
14784 2002-05-02 Akim Demaille <akim@epita.fr>
14785
14786 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
14787 (parse_guard): Rename the formal argument `stack_offset' as
14788 `rule_length', which is more readable.
14789 Adjust callers.
14790 (copy_at, copy_dollar): Instead of outputting the hard coded
14791 values of $$, $n and so forth, output invocation to b4_lhs_value,
14792 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
14793 Note: this patch partially drops `semantic-parser' support: it
14794 always does `rule_length - n', where semantic parsers ought to
14795 always use `-n'.
14796 * data/bison.simple, data/bison.c++ (b4_lhs_value)
14797 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
14798
14799 2002-05-02 Akim Demaille <akim@epita.fr>
14800
14801 * configure.in (AC_INIT): Bump to 1.49b.
14802 (AM_INIT_AUTOMAKE): Short invocation.
14803
14804 2002-05-02 Akim Demaille <akim@epita.fr>
14805
14806 Version 1.49a.
14807
14808 2002-05-01 Akim Demaille <akim@epita.fr>
14809
14810 * src/skeleton.h: Remove.
14811
14812 2002-05-01 Akim Demaille <akim@epita.fr>
14813
14814 * src/skeleton.h: Fix the #endif.
14815 Reported by Magnus Fromreide.
14816
14817 2002-04-26 Paul Eggert <eggert@twinsun.com>
14818
14819 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
14820 Define if we define YYSTYPE and YYLTYPE, respectively.
14821 (YYCOPY): Fix [] quoting problem in the non-GCC case.
14822
14823 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
14824
14825 * src/scan-skel.l: Postprocess quadrigraphs.
14826
14827 * src/reader.c (copy_character): New function, used to output
14828 single characters while replacing `[' and `]' with quadrigraphs, to
14829 avoid troubles with M4 quotes.
14830 (copy_comment): Output characters with copy_character.
14831 (read_additionnal_code): Likewise.
14832 (copy_string2): Likewise.
14833 (copy_definition): Likewise.
14834
14835 * tests/calc.at: Exercise M4 quoting.
14836
14837 2002-04-25 Akim Demaille <akim@epita.fr>
14838
14839 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
14840 between `!' and the command.
14841 Reported by Paul Eggert.
14842
14843 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
14844
14845 * tests/calc.at: Exercise prologue splitting.
14846
14847 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
14848 `b4_post_prologue' instead of `b4_prologue'.
14849
14850 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
14851 muscles.
14852 (output): Free pre_prologue_obstack and post_prologue_obstack.
14853 * src/files.h, src/files.c (attrs_obstack): Remove.
14854 (pre_prologue_obstack, post_prologue_obstack): New.
14855 * src/reader.c (copy_definition): Add a parameter to specify the
14856 obstack to fill, instead of using attrs_obstack unconditionally.
14857 (read_declarations): Pass pre_prologue_obstack to copy_definition if
14858 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
14859
14860 2002-04-23 Paul Eggert <eggert@twinsun.com>
14861
14862 * data/bison.simple: Remove unnecessary commentary and white
14863 space differences from 1_29-branch.
14864 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
14865
14866 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
14867 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
14868 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
14869 constructors or destructors.
14870
14871 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
14872
14873 2002-04-23 Akim Demaille <akim@epita.fr>
14874
14875 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
14876 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
14877 location with columns.
14878 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
14879 All reported by Paul Eggert.
14880
14881 2002-04-22 Akim Demaille <akim@epita.fr>
14882
14883 * src/reduce.c (dump_grammar): Move to...
14884 * src/gram.h, src/gram.c (grammar_dump): here.
14885 Be sure to separate long item numbers.
14886 Don't read the members of a rule's prec if its nil.
14887
14888 2002-04-22 Akim Demaille <akim@epita.fr>
14889
14890 * src/output.c (table_size, table_grow): New.
14891 (MAXTABLE): Remove, replace uses with table_size.
14892 (pack_vector): Instead of dying when the table is too big, grow it.
14893
14894 2002-04-22 Akim Demaille <akim@epita.fr>
14895
14896 * data/bison.simple (yyr1): Its type is that of a token number.
14897 * data/bison.c++ (r1_): Likewise.
14898 * tests/regression.at (Web2c Actions): Adjust.
14899
14900 2002-04-22 Akim Demaille <akim@epita.fr>
14901
14902 * src/reader.c (token_translations_init): 256 is now the default
14903 value for the error token, i.e., it will be assigned another
14904 number if the user assigned 256 to one of her tokens.
14905 (reader): Don't force 256 to error.
14906 * doc/bison.texinfo (Symbols): Adjust.
14907 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
14908 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
14909 etc. instead of 10, 20, 30 (which was used to `jump' over error
14910 (256) and undefined (2)).
14911
14912 2002-04-22 Akim Demaille <akim@epita.fr>
14913
14914 Propagate more token_number_t.
14915
14916 * src/gram.h (token_number_as_item_number)
14917 (item_number_as_token_number): New.
14918 * src/output.c (GENERATE_OUTPUT_TABLE): New.
14919 Use it to create output_item_number_table and
14920 output_token_number_table.
14921 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14922 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
14923 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
14924 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
14925
14926 2002-04-22 Akim Demaille <akim@epita.fr>
14927
14928 * src/output.h, src/output.c (get_lines_number): Remove.
14929
14930 2002-04-19 Akim Demaille <akim@epita.fr>
14931
14932 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
14933 as Lex/Flex'.
14934 (Debugging): More details about enabling the debugging features.
14935 (Table of Symbols): Describe $$, $n, @$, and @n.
14936 Suggested by Tim Josling.
14937
14938 2002-04-19 Akim Demaille <akim@epita.fr>
14939
14940 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
14941
14942 2002-04-10 Akim Demaille <akim@epita.fr>
14943
14944 * src/system.h: Rely on HAVE_LIMITS_H.
14945 Suggested by Paul Eggert.
14946
14947 2002-04-09 Akim Demaille <akim@epita.fr>
14948
14949 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
14950 full stderr, and strip it according to the bison options, instead
14951 of composing the error message from different bits.
14952 This makes it easier to check for several error messages.
14953 Adjust all the invocations.
14954 Add an invocation exercising the error token.
14955 Add an invocation demonstrating a stupid error message.
14956 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
14957 Adjust the tests.
14958 Error message are for stderr, not stdout.
14959
14960 2002-04-09 Akim Demaille <akim@epita.fr>
14961
14962 * src/gram.h, src/gram.c (error_token_number): Remove, use
14963 errtoken->number.
14964 * src/reader.c (reader): Don't specify the user token number (2)
14965 for $undefined, as it uselessly prevents using it.
14966 * src/gram.h (token_number_t): Move to...
14967 * src/symtab.h: here.
14968 (state_t.number): Is a token_number_t.
14969 * src/print.c, src/reader.c: Use undeftoken->number instead of
14970 hard coded 2.
14971 (Even though this 2 is not the same as above: the number of the
14972 undeftoken remains being 2, it is its user token number which
14973 might not be 2).
14974 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
14975 `user_token_number_max'.
14976 Output `undef_token_number'.
14977 * data/bison.simple, data/bison.c++: Use them.
14978 Be sure to map invalid yylex return values to
14979 `undef_token_number'. This saves us from gratuitous SEGV.
14980
14981 * tests/conflicts.at (Solved SR Conflicts)
14982 (Unresolved SR Conflicts): Adjust.
14983 * tests/regression.at (Web2c Actions): Adjust.
14984
14985 2002-04-08 Akim Demaille <akim@epita.fr>
14986
14987 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
14988 Adding #line.
14989 Remove the duplicate `typedefs'.
14990 (RhsNumberType): Fix the declaration and various other typos.
14991 Use __ofile__.
14992 * data/bison.simple: Use __ofile__.
14993 * src/scan-skel.l: Handle __ofile__.
14994
14995 2002-04-08 Akim Demaille <akim@epita.fr>
14996
14997 * src/gram.h (item_number_t): New, the type of item numbers in
14998 RITEM. Note that it must be able to code symbol numbers as
14999 positive number, and the negation of rule numbers as negative
15000 numbers.
15001 Adjust all dependencies (pretty many).
15002 * src/reduce.c (rule): Remove this `short *' pointer: use
15003 item_number_t.
15004 * src/system.h (MINSHORT, MAXSHORT): Remove.
15005 Include `limits.h'.
15006 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
15007 (shortcpy): Remove.
15008 (MAXTABLE): Move to...
15009 * src/output.c (MAXTABLE): here.
15010 (prepare_rules): Use output_int_table to output rhs.
15011 * data/bison.simple, data/bison.c++: Adjust.
15012 * tests/torture.at (Big triangle): Move the limit from 254 to
15013 500.
15014 * tests/regression.at (Web2c Actions): Ajust.
15015
15016 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
15017 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
15018 passes, but produces negative #line number, once fixed, GCC is
15019 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
15020 C), it passes.
15021 * src/state.h (state_h): Code input lines on ints, not shorts.
15022
15023 2002-04-08 Akim Demaille <akim@epita.fr>
15024
15025 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
15026 and then the grammar.
15027
15028 2002-04-08 Akim Demaille <akim@epita.fr>
15029
15030 * src/system.h: No longer using strndup.
15031
15032 2002-04-07 Akim Demaille <akim@epita.fr>
15033
15034 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
15035 * src/output.c (output_table_data): Return the longest number.
15036 (prepare_tokens): Output `token_number_max').
15037 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
15038 New.
15039 Use them to define yy_token_number_type/TokenNumberType.
15040 Use this type for yytranslate.
15041 * tests/torture.at (Big triangle): Push the limit from 124 to
15042 253.
15043 * tests/regression.at (Web2c Actions): Adjust.
15044
15045 2002-04-07 Akim Demaille <akim@epita.fr>
15046
15047 * tests/torture.at (Big triangle): New.
15048 (GNU AWK Grammar, GNU Cim Grammar): Move to...
15049 * tests/existing.at: here.
15050
15051 2002-04-07 Akim Demaille <akim@epita.fr>
15052
15053 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
15054 nritems.
15055 Adjust dependencies.
15056
15057 2002-04-07 Akim Demaille <akim@epita.fr>
15058
15059 * src/reader.c: Normalize increments to prefix form.
15060
15061 2002-04-07 Akim Demaille <akim@epita.fr>
15062
15063 * src/reader.c, symtab.c: Remove debugging code.
15064
15065 2002-04-07 Akim Demaille <akim@epita.fr>
15066
15067 Rename all the `bucket's as `symbol_t'.
15068
15069 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
15070 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
15071 * src/symtab.c, src/symtab.h (bucket): Rename as...
15072 (symbol_t): this.
15073 (symbol_list_new, bucket_check_defined, bucket_make_alias)
15074 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
15075 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15076 (buckets_new, buckets_free, buckets_do): Rename as...
15077 (symbol_list_new, symbol_check_defined, symbol_make_alias)
15078 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15079 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
15080 (symbols_new, symbols_free, symbols_do): these.
15081
15082 2002-04-07 Akim Demaille <akim@epita.fr>
15083
15084 Use lib/hash for the symbol table.
15085
15086 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
15087 EOF.
15088 * src/lex.c (lex): Set the `number' member of new terminals.
15089 * src/reader.c (bucket_check_defined, bucket_make_alias)
15090 (bucket_check_alias_consistence, bucket_translation): New.
15091 (reader, grammar_free, readgram, token_translations_init)
15092 (packsymbols): Adjust.
15093 (reader): Number the predefined tokens.
15094 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
15095 for predefined tokens.
15096 * src/symtab.h (bucket): Remove all the hash table related
15097 members.
15098 * src/symtab.c (symtab): Replace by...
15099 (bucket_table): this.
15100 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15101 (buckets_new, buckets_do): New.
15102
15103 2002-04-07 Akim Demaille <akim@epita.fr>
15104
15105 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15106 (start_symbol, max_user_token_number, semantic_parser)
15107 (error_token_number): Initialize.
15108 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15109 Initialize.
15110 (reader): Don't.
15111 (errtoken, eoftoken, undeftoken, axiom): Extern.
15112
15113 2002-04-07 Akim Demaille <akim@epita.fr>
15114
15115 * src/gram.h (rule_s): prec and precsym are now pointers
15116 to the bucket giving the priority/associativity.
15117 Member `associativity' removed: useless.
15118 * src/reduce.c, src/conflicts.c: Adjust.
15119
15120 2002-04-07 Akim Demaille <akim@epita.fr>
15121
15122 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15123 Properly escape the symbols' TAG when outputting them.
15124
15125 2002-04-07 Akim Demaille <akim@epita.fr>
15126
15127 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15128
15129 2002-04-07 Akim Demaille <akim@epita.fr>
15130
15131 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15132 (LArule): this, which is an array to rule_t*.
15133 * src/print.c, src/conflicts.c: Adjust.
15134
15135 2002-04-07 Akim Demaille <akim@epita.fr>
15136
15137 * src/gram.h (rule_t): Rename `number' as `user_number'.
15138 `number' is a new member.
15139 Adjust dependencies.
15140 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15141
15142 2002-04-07 Akim Demaille <akim@epita.fr>
15143
15144 As a result of the previous patch, it is no longer needed
15145 to reorder ritem itself.
15146
15147 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15148
15149 2002-04-07 Akim Demaille <akim@epita.fr>
15150
15151 Be sure never to walk through RITEMS, but use only data related to
15152 the rules themselves. RITEMS should be banished.
15153
15154 * src/output.c (output_token_translations): Rename as...
15155 (prepare_tokens): this.
15156 In addition to `translate', prepare the muscles `tname' and
15157 `toknum', which were handled by...
15158 (output_rule_data): this.
15159 Remove, and move the remainder of its outputs into...
15160 (prepare_rules): this new routines, which also merges content from
15161 (output_gram): this.
15162 (prepare_rules): Be sure never to walk through RITEMS.
15163 (output_stos): Rename as...
15164 (prepare_stos): this.
15165 (output): Always invoke prepare_states, after all, just don't use it
15166 in the output if you don't need it.
15167
15168 2002-04-07 Akim Demaille <akim@epita.fr>
15169
15170 * src/LR0.c (new_state): Display `nstates' as the name of the
15171 newly created state.
15172 Adjust to initialize first_state and last_state if needed.
15173 Be sure to distinguish the initial from the final state.
15174 (new_states): Create the itemset of the initial state, and use
15175 new_state.
15176 * src/closure.c (closure): Now that the initial state has its
15177 items properly set, there is no need for a special case when
15178 creating `ruleset'.
15179
15180 As a result, now the rule 0, reducing to $axiom, is visible in the
15181 outputs. Adjust the test suite.
15182
15183 * tests/conflicts.at (Solved SR Conflicts)
15184 (Unresolved SR Conflicts): Adjust.
15185 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15186 * tests/conflicts.at (S/R in initial): New.
15187
15188 2002-04-07 Akim Demaille <akim@epita.fr>
15189
15190 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15191 the RHS of the rules.
15192 * src/output.c (output_gram): Likewise.
15193
15194 2002-04-07 Akim Demaille <akim@epita.fr>
15195
15196 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15197 bucket.
15198 Adjust all dependencies.
15199 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15200 `number' of the buckets too.
15201 * src/gram.h: Include `symtab.h'.
15202 (associativity): Move to...
15203 * src/symtab.h: here.
15204 No longer include `gram.h'.
15205
15206 2002-04-07 Akim Demaille <akim@epita.fr>
15207
15208 * src/gram.h, src/gram.c (rules_rhs_length): New.
15209 (ritem_longest_rhs): Use it.
15210 * src/gram.h (rule_t): `number' is a new member.
15211 * src/reader.c (packgram): Set it.
15212 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15213 the end of `rules', and count them out of `nrules'.
15214 (reduce_output, dump_grammar): Adjust.
15215 * src/print.c (print_grammar): It is no longer needed to check for
15216 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15217 * tests/reduce.at (Reduced Automaton): New test.
15218
15219 2002-04-07 Akim Demaille <akim@epita.fr>
15220
15221 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15222 lacking `+ 1' to nrules, Bison reported as useless a token if it
15223 was used solely to set the precedence of the last rule...
15224
15225 2002-04-07 Akim Demaille <akim@epita.fr>
15226
15227 * data/bison.c++, data/bison.simple: Don't output the current file
15228 name in #line, to avoid useless diffs between two identical
15229 outputs under different names.
15230
15231 2002-04-07 Akim Demaille <akim@epita.fr>
15232
15233 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15234 Normalize loops to using `< nrules + 1', not `<= nrules'.
15235
15236 2002-04-07 Akim Demaille <akim@epita.fr>
15237
15238 * TODO: Update.
15239
15240 2002-04-07 Akim Demaille <akim@epita.fr>
15241
15242 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15243 bucket.value as bucket.number.
15244
15245 2002-04-07 Akim Demaille <akim@epita.fr>
15246
15247 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15248 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15249 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15250 RHS, instead of being an index in RITEMS.
15251
15252 2002-04-04 Paul Eggert <eggert@twinsun.com>
15253
15254 * doc/bison.texinfo: Update copyright date.
15255 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15256 (Symbols): Warn about running Bison in one character set,
15257 but compiling and/or running in an incompatible one.
15258 Warn about character code 256, too.
15259
15260 2002-04-03 Paul Eggert <eggert@twinsun.com>
15261
15262 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15263 YYERROR_VERBOSE is nonzero, not whether it is defined.
15264
15265 Merge changes from bison-1_29-branch.
15266
15267 2002-03-20 Paul Eggert <eggert@twinsun.com>
15268
15269 Merge fixes from Debian bison_1.34-1.diff.
15270
15271 * configure.in (AC_PREREQ): 2.53.
15272
15273 2002-03-20 Akim Demaille <akim@epita.fr>
15274
15275 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15276
15277 2002-03-19 Paul Eggert <eggert@twinsun.com>
15278
15279 * src/bison.simple (YYCOPY): New macro.
15280 (YYSTACK_RELOCATE): Use it.
15281 Remove Type arg; no longer needed. All callers changed.
15282 (yymemcpy): Remove; no longer needed.
15283
15284 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15285 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15286
15287 2002-03-19 Akim Demaille <akim@epita.fr>
15288
15289 Test and fix the #line outputs.
15290
15291 * tests/atlocal.at (GCC): New.
15292 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
15293 (Prologue synch line, %union synch line, Postprologue synch line)
15294 (Action synch line, Epilogue synch line): New tests.
15295 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15296 * data/bison.simple, data/bison.c++: Use it.
15297
15298 2002-03-19 Akim Demaille <akim@epita.fr>
15299
15300 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15301 (Solved SR Conflicts, %expect not enough, %expect right)
15302 (%expect too much): Move to...
15303 * tests/conflicts.at: this new file.
15304
15305 2002-03-19 Akim Demaille <akim@epita.fr>
15306
15307 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15308 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15309 that we can move to enums for instance.
15310 * src/output.c (token_definitions_output): Output a list of
15311 `token-name, token-number' instead of the #define.
15312 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15313
15314 2002-03-14 Akim Demaille <akim@epita.fr>
15315
15316 Use Gettext 0.11.1.
15317
15318 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
15319
15320 * data/bison.c++: Make the user able to add members to the generated
15321 parser by subclassing.
15322
15323 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
15324
15325 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15326 a character.
15327 Reported by Nicolas Tisserand and Nicolas Burrus.
15328
15329 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15330
15331 * src/reader.c: Warn about lacking semi-colons, do not complain.
15332
15333 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15334
15335 * data/bison.c++: Remove a debug line.
15336
15337 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15338
15339 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15340 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15341 provide a default implementation.
15342
15343 2002-03-04 Akim Demaille <akim@epita.fr>
15344
15345 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15346 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15347 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15348 * tests/semantic.at (Parsing Guards): Similarly.
15349 * src/reader.at (readgram): Complain if the last rule is not ended
15350 with a semi-colon.
15351
15352 2002-03-04 Akim Demaille <akim@epita.fr>
15353
15354 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15355 * src/closure.c: here.
15356 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15357 RTC.
15358 * src/warshall.h, src/warshall.c: Remove.
15359 * tests/sets.at (Broken Closure): Adjust.
15360
15361 2002-03-04 Akim Demaille <akim@epita.fr>
15362
15363 * src/output.c (output_skeleton): tempdir is const.
15364 bytes_read is unused.
15365
15366 2002-03-04 Akim Demaille <akim@epita.fr>
15367
15368 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15369 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15370 Update.
15371 From Michael Hayes.
15372
15373 2002-03-04 Akim Demaille <akim@epita.fr>
15374
15375 * src/closure.c (closure): `r' is unused.
15376
15377 2002-03-04 Akim Demaille <akim@epita.fr>
15378
15379 * tests/sets.at (Broken Closure): Add the ending `;'.
15380 * src/reader.at (readgram): Complain if a rule is not ended with a
15381 semi-colon.
15382
15383 2002-03-04 Akim Demaille <akim@epita.fr>
15384
15385 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15386 (count_sr_conflicts): Use bitset_count.
15387 * src/reduce.c (inaccessable_symbols): Ditto.
15388 (bits_size): Remove.
15389 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15390
15391 2002-03-04 Akim Demaille <akim@epita.fr>
15392
15393 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15394 * src/reduce.c: Remove the `bitset_zero's following the
15395 `bitset_create's, as now it is performed by the latter.
15396
15397 2002-03-04 Akim Demaille <akim@epita.fr>
15398
15399 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15400 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15401 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15402 latest sources from Michael.
15403
15404 2002-03-04 Akim Demaille <akim@epita.fr>
15405
15406 * src/output.c (output): Don't free the grammar.
15407 * src/reader.c (grammar_free): New.
15408 * src/main.c (main): Call it and don't free symtab here.
15409
15410 2002-03-04 Akim Demaille <akim@epita.fr>
15411
15412 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15413 before returning.
15414 Reported by Benoit Perrot.
15415
15416 2002-03-04 Akim Demaille <akim@epita.fr>
15417
15418 Use bitset operations when possible, not loops over bits.
15419
15420 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15421 bitset_or.
15422 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15423 * src/reduce.c (useless_nonterminals): Formatting changes.
15424 * src/warshall.c (TC): Use bitset_or.
15425
15426 2002-03-04 Akim Demaille <akim@epita.fr>
15427
15428 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15429 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15430 Ditto.
15431
15432 2002-03-04 Akim Demaille <akim@epita.fr>
15433
15434 * src/lalr.c (F): Now a bitset*.
15435 Adjust all dependencies.
15436
15437 2002-03-04 Akim Demaille <akim@epita.fr>
15438
15439 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15440 Adjust all dependencies.
15441
15442 2002-03-04 Akim Demaille <akim@epita.fr>
15443
15444 * src/L0.c, src/LR0.h (nstates): Be size_t.
15445 Adjust comparisons (signed vs unsigned).
15446 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15447 bitset*.
15448 Adjust all dependencies.
15449
15450 2002-03-04 Akim Demaille <akim@epita.fr>
15451
15452 * src/closure.c (firsts): Now, also a bitset.
15453 Adjust all dependencies.
15454 (varsetsize): Remove, now unused.
15455 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15456
15457 2002-03-04 Akim Demaille <akim@epita.fr>
15458
15459 * src/print.c: Convert to use bitset.h, not hand coded iterations
15460 over ints.
15461
15462 2002-03-04 Akim Demaille <akim@epita.fr>
15463
15464 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15465
15466 2002-03-04 Akim Demaille <akim@epita.fr>
15467
15468 * src/closure.c (ruleset): Be a bitset.
15469 (rulesetsize): Remove.
15470
15471 2002-03-04 Akim Demaille <akim@epita.fr>
15472
15473 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15474 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
15475 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
15476 * src/closure.c (fderives): Be an array of bitsets.
15477
15478 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
15479
15480 * data/bison.c++: Merge the two generated headers. Insert a copyright
15481 notice in each output file.
15482
15483 2002-02-28 Akim Demaille <akim@epita.fr>
15484
15485 * data/bison.c++: Copy the prologue of bison.simple to fetch
15486 useful M4 definitions, such as b4_header_guard.
15487
15488 2002-02-25 Akim Demaille <akim@epita.fr>
15489
15490 * src/getargs.c (version): Give the name of the authors, and use a
15491 translator friendly scheme for the bgr
15492 copyright notice.
15493
15494 2002-02-25 Akim Demaille <akim@epita.fr>
15495
15496 * src/output.c (header_output): Remove, now handled completely via
15497 M4.
15498
15499 2002-02-25 Akim Demaille <akim@epita.fr>
15500
15501 * m4/m4.m4: New, from CVS Autoconf.
15502 * configure.in: Invoke it.
15503 * src/output.c (output_skeleton): Use its result instead of the
15504 hard coded name.
15505
15506 2002-02-25 Akim Demaille <akim@epita.fr>
15507
15508 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
15509 Fileutils 4.1.5.
15510 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
15511 * src/output.c (output_skeleton): Use mkstemp to create a real
15512 temporary file.
15513 Move the filling of `skeleton' and its muscle to...
15514 (prepare): here.
15515 (output): Move the definition of the prologue muscle to...
15516 (prepare): here.
15517 * src/system.h (DEFAULT_TMPDIR): New.
15518
15519 2002-02-14 Paul Eggert <eggert@twinsun.com>
15520
15521 Remove the support for C++ namespace cleanliness; it was
15522 causing more problems than it was curing, since it didn't work
15523 properly on some nonstandard C++ compilers. This can wait
15524 for a proper C++ parser.
15525
15526 * NEWS: Document this.
15527 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
15528 of C++, as it's treated like C now.
15529 * src/bison.simple (YYSTD): Remove.
15530 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
15531 Treat C++ just like Standard C instead of trying to support
15532 namespace cleanliness.
15533
15534 2002-02-14 Akim Demaille <akim@epita.fr>
15535
15536 * tests/regression.at (else): Adjust to Andreas' change.
15537
15538 2002-02-14 Akim Demaille <akim@epita.fr>
15539
15540 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
15541
15542 2002-02-13 Andreas Schwab <schwab@suse.de>
15543
15544 * src/output.c (output_rule_data): Don't output NULL, it might
15545 not be defined yet.
15546
15547 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
15548
15549 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
15550 (Copyright notice): Update.
15551
15552 2002-02-11 Akim Demaille <akim@epita.fr>
15553
15554 * tests/regression.at (%nonassoc and eof): Don't include
15555 nonportable headers.
15556
15557 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
15558
15559 * data/bison.c++: Correct error recovery. Make the user able to
15560 initialize the starting location.
15561
15562 2002-02-07 Akim Demaille <akim@epita.fr>
15563
15564 * tests/input.at: New.
15565
15566 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15567
15568 * data/bison.c++: Replace some direct m4 expansions by constants. Be
15569 more consistent when naming methods and variables. Put preprocessor
15570 directives around tables only needed for debugging.
15571
15572 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15573
15574 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
15575 C++ parsers.
15576 (yy::b4_name::parse): Use print_.
15577
15578 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15579
15580 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
15581
15582 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
15583
15584 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
15585 C++ parsers.
15586 (yy::b4_name::parse): Build verbose error messages, and use error_.
15587
15588 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
15589
15590 * data/bison.c++: Fix m4 quoting in comments.
15591
15592 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
15593
15594 * data/bison.c++: Adjust the parser code. Fix some muscles that were
15595 not expanded by m4.
15596
15597 2002-02-05 Akim Demaille <akim@epita.fr>
15598
15599 * data/bison.c++: Adjust to the M4 back end.
15600 More is certainly needed.
15601
15602 2002-02-05 Akim Demaille <akim@epita.fr>
15603
15604 Give a try to M4 as a back end.
15605
15606 * lib/readpipe.c: New, from wdiff.
15607 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
15608 BISON_HAIRY.
15609 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
15610 specific values. Now it is m4 that performs the lookup.
15611 * src/parse-skel.y: Remove.
15612 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
15613 * src/output.c (actions_output, guards_output)
15614 (token_definitions_output): No longer keeps track of the output
15615 line number, hence remove the second argument.
15616 (guards_output): Check against the guard member of a rule, not the
15617 action member.
15618 Adjust callers.
15619 (output_skeleton): Don't look for the skeleton location, let m4 do
15620 that.
15621 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
15622 file will be used.
15623 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
15624 (prepare): Given that for the time being changesyntax is not
15625 usable in M4, rename the muscles using `-' to `_'.
15626 Define `defines_flag', `output_parser_name' and `output_header_name'.
15627 * src/output.h (actions_output, guards_output)
15628 (token_definitions_output): Adjust prototypes.
15629 * src/scan-skel.l: Instead of scanning the skeletons, it now
15630 processes the output of m4: `__oline__' and `#output'.
15631 * data/bison.simple: Adjust to be used by M4(sugar).
15632 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
15633 to date.
15634 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
15635 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
15636 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
15637 shamelessly stolen from CVS Autoconf.
15638
15639 2002-02-05 Akim Demaille <akim@epita.fr>
15640
15641 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
15642 * configure.in: Check for the declarations of free and malloc.
15643 * src/muscle_tab.c: Adjust.
15644
15645 2002-02-05 Akim Demaille <akim@epita.fr>
15646
15647 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
15648 which have no values.
15649
15650 2002-02-05 Akim Demaille <akim@epita.fr>
15651
15652 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
15653 * data/: here.
15654
15655 2002-01-29 Paul Eggert <eggert@twinsun.com>
15656
15657 * src/bison.simple (YYSIZE_T): Do not define merely because
15658 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
15659 On some platforms, <alloca.h> does not declare YYSTD (size_t).
15660
15661 2002-01-27 Akim Demaille <akim@epita.fr>
15662
15663 Fix `%nonassoc and eof'.
15664
15665 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
15666 which were not properly copied! Replace
15667 memcpy (res->errs, src->errs, src->nerrs);
15668 with
15669 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
15670 !!!
15671 * tests/regression.at (%nonassoc and eof): Adjust to newest
15672 Autotest: `.' is not in the PATH.
15673
15674 2002-01-27 Akim Demaille <akim@epita.fr>
15675
15676 * tests/sets.at (AT_EXTRACT_SETS): New.
15677 (Nullable): Use it.
15678 (Firsts): New.
15679
15680 2002-01-26 Akim Demaille <akim@epita.fr>
15681
15682 * tests/actions.at, tests/calc.at, tests/headers.at,
15683 * tests/torture.at: Adjust to the newest Autotest which no longer
15684 forces `.' in the PATH.
15685
15686 2002-01-25 Akim Demaille <akim@epita.fr>
15687
15688 * tests/regression.at (%nonassoc and eof): New.
15689 Suggested by Robert Anisko.
15690
15691 2002-01-24 Akim Demaille <akim@epita.fr>
15692
15693 Bison dumps core when trying to complain about broken input files.
15694 Reported by Cris van Pelt.
15695
15696 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
15697 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
15698 into...
15699 (Invalid inputs): Strengthen: exercise parse_percent_token.
15700
15701 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
15702
15703 * src/Makefile.am: Add bison.c++.
15704 * src/bison.c++: New skeleton.
15705
15706 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
15707
15708 * po/it.po: New.
15709
15710 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
15711
15712 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
15713
15714 2002-01-20 Marc Autret <marc@gnu.org>
15715
15716 * src/files.c (compute_output_file_names): Fix
15717
15718 2002-01-20 Marc Autret <marc@gnu.org>
15719
15720 * tests/output.at: New test.
15721 * src/files.c (compute_base_names): Don't map extensions when
15722 the YACC flag is set, use defaults.
15723 Reported by Evgeny Stambulchik.
15724
15725 2002-01-20 Marc Autret <marc@gnu.org>
15726
15727 * src/system.h: Need to define __attribute__ away for non-GCC
15728 compilers as well (i.e., the vendor C compiler).
15729 Suggested by Albert Chin-A-Young.
15730
15731 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
15732
15733 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
15734 canonical definition.
15735 * src/system.h: Use the canonical definition for PARAMS (avoids
15736 a conflict with the macro from lib/hash.h).
15737
15738 2002-01-11 Akim Demaille <akim@epita.fr>
15739
15740 * configure.in: Use AC_FUNC_STRNLEN.
15741 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
15742
15743 2002-01-09 Akim Demaille <akim@epita.fr>
15744
15745 * src/files.c, src/files.h (output_infix): New.
15746 (tab_extension): Remove.
15747 (compute_base_names): Compute the former, drop the latter.
15748 * src/output.c (prepare): Insert the muscles `output-infix', and
15749 `output-suffix'.
15750 * src/parse-skel.y (string, string.1): New.
15751 (section.header): Use it.
15752 (section.yacc): Remove.
15753 (prefix): Remove too.
15754 * src/scan-skel.l: Adjust.
15755 * src/bison.simple, src/bison.hairy: Adjust.
15756
15757 2002-01-09 Akim Demaille <akim@epita.fr>
15758
15759 * configure.in (WERROR_CFLAGS): Compute it.
15760 * src/Makefile.am (CFLAGS): Pass it.
15761 * tests/atlocal.in (CFLAGS): Idem.
15762 * src/files.c: Fix a few warnings.
15763 (get_extension_index): Remove, unused.
15764
15765 2002-01-08 Akim Demaille <akim@epita.fr>
15766
15767 * src/getargs.c (AS_FILE_NAME): New.
15768 (getargs): Use it to convert DOSish file names.
15769 * src/files.c (base_name): Rename as full_base_name to avoid
15770 clashes with `base_name ()'.
15771 (filename_split): New.
15772 (compute_base_names): N-th rewrite, using filename_split.
15773
15774 2002-01-08 Akim Demaille <akim@epita.fr>
15775
15776 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
15777 New, stolen from the Fileutils 4.1.
15778 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
15779 * configure.in: Check for the presence of memrchr, and of its
15780 prototype.
15781
15782 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
15783
15784 * lib/hash.h (__P): Added definition for this macro.
15785 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
15786 BUILT_SOURCES, to ensure they are generated first.
15787 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
15788 %error-verbose to allow bootstrapping with bison 1.30x.
15789
15790 2002-01-06 Akim Demaille <akim@epita.fr>
15791
15792 * src/reader.c (parse_braces): Don't fetch the next char, the
15793 convention is to fetch on entry.
15794 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
15795 'switch' without a following semicolon.
15796 * tests/regression.at (braces parsing): New.
15797
15798 2002-01-06 Akim Demaille <akim@epita.fr>
15799
15800 Bison is dead wrong in its RR conflict reports.
15801
15802 * tests/torture.at (GNU Cim Grammar): New.
15803 * src/conflicts.c (count_rr_conflicts): Fix.
15804
15805 2002-01-06 Akim Demaille <akim@epita.fr>
15806
15807 Creating package.m4 from configure.ac causes too many problems.
15808
15809 * tests/Makefile.am (package.m4): Create it by hand,
15810 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
15811
15812 2002-01-06 Akim Demaille <akim@epita.fr>
15813
15814 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
15815 skeleton.h.
15816
15817 2002-01-04 Paul Eggert <eggert@twinsun.com>
15818
15819 * doc/bison.texinfo (Debugging):
15820 Remove YYSTDERR; it's no longer defined or used.
15821 Also, s/cstdio.h/cstdio/.
15822
15823 2002-01-03 Akim Demaille <akim@epita.fr>
15824
15825 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
15826
15827 2002-01-03 Akim Demaille <akim@epita.fr>
15828
15829 * src/parse-skel.y (process_skeleton): Don't bind the parser's
15830 tracing code to --trace, wait for a better --trace option, with
15831 args.
15832
15833 2002-01-03 Akim Demaille <akim@epita.fr>
15834
15835 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
15836 The ISO C++ standard is extremely clear about it: stderr is
15837 considered a macro, not a regular symbol (see table 94 `Header
15838 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
15839 Therefore std:: does not apply to it. It still does with fprintf.
15840 Also, s/cstdio.h/cstdio/.
15841
15842 2002-01-03 Akim Demaille <akim@epita.fr>
15843
15844 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
15845 for non system headers.
15846
15847 2002-01-02 Akim Demaille <akim@epita.fr>
15848
15849 Equip the skeleton chain with location tracking, runtime trace,
15850 pure parser and scanner.
15851
15852 * src/parse-skel.y: Request a pure parser, locations, and prefix
15853 renaming.
15854 (%union): Having several members with the same type does not help
15855 type mismatches, simplify.
15856 (YYPRINT, yyprint): New.
15857 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
15858 (skel_error): this.
15859 Handle locations.
15860 * src/scan-skel.l: Adjust to these changes.
15861 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
15862 (LOCATION_PRINT, skel_control_t): New.
15863
15864 2001-12-30 Akim Demaille <akim@epita.fr>
15865
15866 * src/parse-skel.y: Get rid of the shift/reduce conflict:
15867 replace `gb' with BLANKS.
15868 * src/scan-skel.l: Adjust.
15869
15870 2001-12-30 Akim Demaille <akim@epita.fr>
15871
15872 * src/system.h: We don't need nor want bcopy.
15873 Throw away MS-DOS crap: we don't need getpid.
15874 * configure.in: We don't need strndup. It was even causing
15875 problems: because Flex includes the headers *before* us,
15876 _GNU_SOURCE is not defined by config.h, and therefore strndup was
15877 not visible.
15878 * lib/xstrndup.c: New.
15879 * src/scan-skel.l: Use it.
15880 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
15881 * src/parse-skel.y: Use %directives instead of #defines.
15882
15883 2001-12-30 Akim Demaille <akim@epita.fr>
15884
15885 * src/skeleton.h: New.
15886 * src/output.c (output_parser, output_master_parser): Remove, dead
15887 code.
15888 * src/output.h (get_lines_number, actions_output, guards_output)
15889 (token_definitions_output): Prototype them.
15890 * src/parse-skel.y: Add the license notice.
15891 Include output.h and skeleton.h.
15892 (process_skeleton): Returns void, and takes a single parameter.
15893 * src/scan-skel.l: Add the license notice.
15894 Include skeleton.h.
15895 Don't use %option yylineno: it seems that then Flex imagines
15896 REJECT has been used, and therefore it won't reallocate its
15897 buffers (which makes no other sense to me than a bug). It results
15898 in warnings for `unused: yy_flex_realloc'.
15899
15900 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
15901
15902 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15903 (MUSCLE_INSERT_PREFIX): ...to there.
15904 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15905 (MUSCLE_INSERT_PREFIX): Move from here...
15906
15907 * src/bison.hairy: Add a section directive. Put braces around muscle
15908 names. This parser skeleton is still broken, but Bison should not
15909 choke on a bad muscle 'syntax'.
15910 * src/bison.simple: Add a section directive. Put braces around muscle
15911 names.
15912
15913 * src/files.h (strsuffix, stringappend): Add declarations.
15914 (tab_extension): Add declaration.
15915 (short_base_name): Add declaration.
15916
15917 * src/files.c (strsuffix, stringappend): No longer static. These
15918 functions are used in the skeleton parser.
15919 (tab_extension): New.
15920 (compute_base_names): Use the computations done in this function
15921 to guess if the generated parsers should have '.tab' in their
15922 names.
15923 (short_base_name): No longer static.
15924
15925 * src/output.c (output_skeleton): New.
15926 (output): Disable call to output_master_parser, and give a try to
15927 a new skeleton handling system.
15928 (guards_output, actions_output): No longer static.
15929 (token_definitions_output, get_lines_number): No longer static.
15930
15931 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
15932
15933 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
15934 parse-skel.y.
15935
15936 * src/parse-skel.y: New file.
15937 * src/scan-skel.l: New file.
15938
15939 2001-12-29 Akim Demaille <akim@epita.fr>
15940
15941 %name-prefix is broken.
15942
15943 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
15944 Adjust all dependencies.
15945 * tests/headers.at (export YYLTYPE): Strengthen this test: use
15946 %name-prefix.
15947
15948 Renaming yylval but not yylloc is not consistent. Now we do.
15949
15950 * src/bison.simple: Prefix yylloc if used.
15951 * doc/bison.texinfo (Decl Summary): Document that.
15952
15953 2001-12-29 Akim Demaille <akim@epita.fr>
15954
15955 * doc/bison.texinfo: Promote `%long-directive' over
15956 `%long_directive'.
15957 Remove all references to fixed-output-files, yacc is enough.
15958
15959 2001-12-29 Akim Demaille <akim@epita.fr>
15960
15961 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
15962 user prologue. These are defaults.
15963 * tests/actions.at (Mid-rule actions): Make sure the user can
15964 define YYDEBUG and YYERROR_VERBOSE.
15965
15966 2001-12-29 Akim Demaille <akim@epita.fr>
15967
15968 * src/output.c (header_output): Don't forget to export YYLTYPE and
15969 yylloc.
15970 * tests/headers.at (export YYLTYPE): New, make sure it does.
15971 * tests/regression.at (%union and --defines, Invalid CPP headers):
15972 Move to...
15973 * tests/headers.at: here.
15974
15975 2001-12-29 Akim Demaille <akim@epita.fr>
15976
15977 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
15978
15979 2001-12-29 Akim Demaille <akim@epita.fr>
15980
15981 * tests/actions.at (Mid-rule actions): Output on a single line
15982 instead of several.
15983
15984 2001-12-29 Akim Demaille <akim@epita.fr>
15985
15986 * doc/bison.texinfo: Formatting changes.
15987
15988 2001-12-29 Akim Demaille <akim@epita.fr>
15989
15990 Don't store the token defs in a muscle, just be ready to output it
15991 on command. Now possible via `symbols'. Fixes a memory leak.
15992
15993 * src/output.c (token_definitions_output): New.
15994 (output_parser, header_output): Use it.
15995 * src/reader.c (symbols_save): Remove.
15996
15997 2001-12-29 Akim Demaille <akim@epita.fr>
15998
15999 * src/bison.simple: Do not provide a default for YYSTYPE and
16000 YYLTYPE before the user's prologue. Otherwise it's hardly... a
16001 default.
16002
16003 2001-12-29 Akim Demaille <akim@epita.fr>
16004
16005 Mid-rule actions are simply... ignored!
16006
16007 * src/reader.c (readgram): Be sure to attach mid-rule actions to
16008 the empty-rule associated to the dummy symbol, not to the host
16009 rule.
16010 * tests/actions.at (Mid-rule actions): New.
16011
16012 2001-12-29 Akim Demaille <akim@epita.fr>
16013
16014 Memory leak.
16015
16016 * src/reader.c (reader): Free grammar.
16017
16018 2001-12-29 Akim Demaille <akim@epita.fr>
16019
16020 Memory leak.
16021
16022 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
16023 since it allocates it for each state, although only one is needed.
16024 (allocate_storage): Do it here.
16025
16026 2001-12-29 Akim Demaille <akim@epita.fr>
16027
16028 * src/options.h, src/options.c (create_long_option_table): Rename
16029 as...
16030 (long_option_table_new): this, with a clearer prototype.
16031 (percent_table): Remove, unused,
16032 * src/getargs.c (getargs): Adjust.
16033
16034 2001-12-29 Akim Demaille <akim@epita.fr>
16035
16036 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
16037 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
16038 as states.
16039
16040 2001-12-29 Akim Demaille <akim@epita.fr>
16041
16042 * src/lalr.c (build_relations): Rename `states' as `states1'.
16043 Sorry, I don't understand exactly what it is, no better name...
16044
16045 2001-12-29 Akim Demaille <akim@epita.fr>
16046
16047 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
16048 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
16049 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
16050 as rules.
16051
16052 2001-12-29 Akim Demaille <akim@epita.fr>
16053
16054 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
16055 ago.
16056
16057 2001-12-29 Akim Demaille <akim@epita.fr>
16058
16059 * src/reader.c, src/reader.h (user_toknums): Remove.
16060 Adjust all users to use symbols[i]->user_token_number.
16061
16062 2001-12-29 Akim Demaille <akim@epita.fr>
16063
16064 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
16065 Adjust all users to use symbols[i]->prec or ->assoc.
16066
16067 2001-12-29 Akim Demaille <akim@epita.fr>
16068
16069 * src/reader.c, src/reader.h (tags): Remove.
16070 Adjust all users to use symbols[i]->tag.
16071
16072 2001-12-29 Akim Demaille <akim@epita.fr>
16073
16074 * src/gram.h, src/gram.c (symbols): New, similar to state_table
16075 and rule_table.
16076 * src/reader.c (packsymbols): Fill this table.
16077 Drop sprec.
16078 * src/conflicts.c (resolve_sr_conflict): Adjust.
16079 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
16080 single table.
16081 Use symbols[i]->tag instead of tags[i].
16082
16083 2001-12-29 Akim Demaille <akim@epita.fr>
16084
16085 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
16086 In addition, put a comment in there, to replace...
16087 * tests/regression.at (%union and C comments): Remove.
16088
16089 2001-12-29 Akim Demaille <akim@epita.fr>
16090
16091 * tests/regression.at (Web2c Actions): Blindly move the actual
16092 output as expected output. The contents *seem* right to me, but I
16093 can't pretend reading perfectly parser tables... Nonetheless, all
16094 the other tests pass correctly, the table look OK, even though the
16095 presence of `$axiom' is to be noted: AFAICS it is useless (but
16096 harmless).
16097
16098 2001-12-29 Akim Demaille <akim@epita.fr>
16099
16100 * src/reader.c (readgram): Don't add the rule 0 if there were no
16101 rules read. In other words, add it _after_ having performed
16102 grammar sanity checks.
16103 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16104
16105 2001-12-29 Akim Demaille <akim@epita.fr>
16106
16107 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16108 visible, and some states have now a different number.
16109
16110 2001-12-29 Akim Demaille <akim@epita.fr>
16111
16112 * src/reader.c (readgram): Bind the initial rule's lineno to that
16113 of the first rule.
16114 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16115 (Solved SR Conflicts): Adjust rule 0's line number.
16116
16117 2001-12-29 Akim Demaille <akim@epita.fr>
16118
16119 Fix the `GAWK Grammar' failure.
16120
16121 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16122 the reductions of the first state which was mistakenly confused
16123 with the final state because precisely final_state was initialized
16124 to 0.
16125 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16126 now noticed by Bison.
16127 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16128 have a reduction on $default.
16129
16130 2001-12-29 Akim Demaille <akim@epita.fr>
16131
16132 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16133 rule line numbers.
16134 * src/closure.c (print_closure): Likewise.
16135 * src/derives.c (print_derives): Likewise.
16136 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16137 now.
16138
16139 2001-12-29 Akim Demaille <akim@epita.fr>
16140
16141 * src/lalr.c (lookaheads_print): New.
16142 (lalr): Call it when --trace-flag.
16143 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16144 are dumped.
16145
16146 2001-12-29 Akim Demaille <akim@epita.fr>
16147
16148 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16149 when walking through ritem, even via rule->rhs.
16150 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16151 (useful_production, useless_nonterminals): Likewise.
16152 (reduce_grammar_tables): Likewise, plus update nritems.
16153 * src/nullable.c (set_nullable): Likewise.
16154 * src/lalr.c (build_relations): Likewise.
16155 * tests/sets.at (Nullable): Adjust.
16156 Fortunately, now, the $axiom is no longer nullable.
16157
16158 2001-12-29 Akim Demaille <akim@epita.fr>
16159
16160 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16161 the 0-sentinel.
16162 * src/gram.c (ritem_longest_rhs): Likewise.
16163 * src/reduce.c (nonterminals_reduce): Likewise.
16164 * src/print_graph.c (print_graph): Likewise.
16165 * src/output.c (output_rule_data): Likewise.
16166 * src/nullable.c (set_nullable): Likewise.
16167
16168 2001-12-29 Akim Demaille <akim@epita.fr>
16169
16170 * src/output.c: Comment changes.
16171
16172 2001-12-27 Paul Eggert <eggert@twinsun.com>
16173
16174 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16175 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16176 Sparc, as they were causing more porting problems than the
16177 (minor) performance improvement was worth.
16178
16179 Also, catch up with 1.31's YYSTD.
16180
16181 2001-12-27 Akim Demaille <akim@epita.fr>
16182
16183 * src/output.c (output_gram): Rely on nritems, not the
16184 0-sentinel. See below.
16185 Use -1 as separator, not 0.
16186 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16187 Rely on -1 as separator in yyrhs, instead of 0.
16188 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16189 twice `Now at end of input', therefore there are two lines less to
16190 expect.
16191
16192 2001-12-27 Akim Demaille <akim@epita.fr>
16193
16194 * tests/regression.at (Unresolved SR Conflicts):
16195 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16196 below.
16197
16198 2001-12-27 Akim Demaille <akim@epita.fr>
16199
16200 * src/LR0.c (new_state): Recognize the final state by the fact it
16201 is reached by eoftoken.
16202 (insert_start_shifting_state, insert_eof_shifting_state)
16203 (insert_accepting_state, augment_automaton): Remove, since now
16204 these states are automatically computed from the initial state.
16205 (generate_states): Adjust.
16206 * src/print.c: When reporting a rule number to the user, substract
16207 1, so that the axiom rule is rule 0, and the first user rule is 1.
16208 * src/reduce.c: Likewise.
16209 * src/print_graph.c (print_core): For the time being, just as for
16210 the report, depend upon --trace-flags to dump the full set of
16211 items.
16212 * src/reader.c (readgram): Once the grammar read, insert the rule
16213 0: `$axiom: START-SYMBOL $'.
16214 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16215 number of the states has changed (the final state is no longer
16216 necessarily the last), catch up.
16217
16218 2001-12-27 Akim Demaille <akim@epita.fr>
16219
16220 Try to make the use of the eoftoken valid. Given that its value
16221 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16222 is used instead of > 0 where appropriate, (ii), depend upon nritems
16223 instead of the 0-sentinel.
16224
16225 * src/gram.h, src/gram.c (nritems): New.
16226 Expected to be duplication of nitems, but for the time being...
16227 * src/reader.c (packgram): Assert nritems and nitems are equal.
16228 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16229 * src/closure.c (print_closure, print_fderives): Likewise.
16230 * src/gram.c (ritem_print): Likewise.
16231 * src/print.c (print_core, print_grammar): Likewise.
16232 * src/print_graph.c: Likewise.
16233
16234 2001-12-27 Akim Demaille <akim@epita.fr>
16235
16236 * src/main.c (main): If there are complains after grammar
16237 reductions, then output the report anyway if requested, then die.
16238 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16239 * src/reader.c (eoftoken): New.
16240 (parse_token_decl): If the token being defined has value `0', it
16241 is the eoftoken.
16242 (packsymbols): No longer hack `tags' to insert `$' by hand.
16243 Be sure to preserve the value of the eoftoken.
16244 (reader): Make sure eoftoken is defined.
16245 Initialize nsyms to 0: now eoftoken is created just like the others.
16246 * src/print.c (print_grammar): Don't special case the eof token.
16247 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16248 lie anyway, albeit pleasant.
16249 * tests/calc.at: Exercise error messages with eoftoken.
16250 Change the grammar so that empty input is invalid.
16251 Adjust expectations.
16252 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16253
16254 2001-12-27 Akim Demaille <akim@epita.fr>
16255
16256 * configure.in: Check the protos of strchr ans strspn.
16257 Replace strchr if needed.
16258 * src/system.h: Provide the protos of strchr, strspn and memchr if
16259 missing.
16260 * lib/strchr.c: New.
16261 * src/reader.c (symbols_save): Use strchr.
16262
16263 2001-12-27 Akim Demaille <akim@epita.fr>
16264
16265 * src/print.c, src/print_graph.c (escape): New.
16266 Use it to quote the TAGS outputs.
16267 * src/print_graph.c (print_state): Now errors are in red, and
16268 reductions in green.
16269 Prefer high to wide: output the state number on a line of its own.
16270
16271 2001-12-27 Akim Demaille <akim@epita.fr>
16272
16273 * src/state.h, src/state.c (reductions_new): New.
16274 * src/LR0.c (set_state_table): Let all the states have a
16275 `reductions', even if reduced to 0.
16276 (save_reductions): Adjust.
16277 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16278 * src/print.c (print_reductions, print_actions): Adjust.
16279 * src/output.c (action_row): Adjust.
16280
16281 2001-12-27 Akim Demaille <akim@epita.fr>
16282
16283 * src/state.h, src/state.c (errs_new, errs_dup): New.
16284 * src/LR0.c (set_state_table): Let all the states have an errs,
16285 even if reduced to 0.
16286 * src/print.c (print_errs, print_reductions): Adjust.
16287 * src/output.c (output_actions, action_row): Adjust.
16288 * src/conflicts.c (resolve_sr_conflict): Adjust.
16289
16290 2001-12-27 Akim Demaille <akim@epita.fr>
16291
16292 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16293
16294 2001-12-27 Akim Demaille <akim@epita.fr>
16295
16296 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16297 * src/print.c: here.
16298 (lookaheadset, shiftset): New, used as additional storage by
16299 print_reductions.
16300 (print_results): Adjust.
16301 (print_shifts, print_gotos, print_errs): New, extracted from...
16302 (print_actions): here.
16303 * src/print_graph.c (print_actions): Remove dead code.
16304
16305 2001-12-27 Akim Demaille <akim@epita.fr>
16306
16307 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16308 `$n' and `@n'.
16309
16310 2001-12-27 Akim Demaille <akim@epita.fr>
16311
16312 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16313 (build_relations): Adjust.
16314
16315 2001-12-27 Akim Demaille <akim@epita.fr>
16316
16317 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16318 duplication.
16319
16320 2001-12-27 Akim Demaille <akim@epita.fr>
16321
16322 * src/reader.c (packgram): Catch nitems overflows.
16323
16324 2001-12-27 Akim Demaille <akim@epita.fr>
16325
16326 * src/files.c, src/files.h (guard_obstack): Remove.
16327 * src/output.c (output): Adjust.
16328 * src/reader.c (parse_braces): New, factoring...
16329 (copy_action, copy_guard): these two which are renamed as...
16330 (parse_action, parse_guard): these.
16331 As a voluntary consequence, using braces around guards is now
16332 mandatory.
16333
16334 2001-12-27 Akim Demaille <akim@epita.fr>
16335
16336 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16337 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16338 members.
16339 (symbol_list_new): Adjust.
16340 (copy_action): action_line is the first line, not the last.
16341 (copy_guard): Just as for actions, store the `action' only, not
16342 the switch/case/break flesh.
16343 Don't parse the user action that might follow the guard, let...
16344 (readgram): do it, i.e., now, there can be an action after a
16345 guard.
16346 In other words the guard is just explicitly optional.
16347 (packgram): Adjust.
16348 * src/output.c (guards_output): New.
16349 (output_parser): Call it when needed.
16350 (output): Also free the guard and attrs obstacks.
16351 * src/files.c, src/files.h (obstack_save): Remove.
16352 (output_files): Remove.
16353 As a result, if one needs the former `.act' file, using an
16354 appropriate skeleton which requires actions and guards is now
16355 required.
16356 * src/main.c (main): Adjust.
16357 * tests/semantic.at: New.
16358 * tests/regression.at: Use `input.y' as input file name.
16359 Avoid 8+3 problems by requiring input.c when the test needs the
16360 parser.
16361
16362 2001-12-27 Akim Demaille <akim@epita.fr>
16363
16364 * src/reader.c (symbol_list_new): Be sure to initialize all the
16365 fields.
16366
16367 2001-12-27 Akim Demaille <akim@epita.fr>
16368
16369 All the hacks using a final pseudo state are now useless.
16370
16371 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16372 * src/lalr.c (nLA): New.
16373 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16374 instead of lookaheadsp from the pseudo state (nstate + 1).
16375
16376 2001-12-27 Akim Demaille <akim@epita.fr>
16377
16378 * src/output.c (action_row, token_actions): Use a state_t instead
16379 of a integer, and nlookaheads instead of the following state's
16380 lookaheadsp.
16381
16382 2001-12-27 Akim Demaille <akim@epita.fr>
16383
16384 * src/conflicts.c (log_resolution, flush_shift)
16385 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16386 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16387 (conflicts_print, print_reductions): Use a state_t instead of an
16388 integer when referring to a state.
16389 As much as possible, depend upon nlookaheads, instead of the
16390 `lookaheadsp' member of the following state (since lookaheads of
16391 successive states are successive, the difference between state n + 1
16392 and n served as the number of lookaheads for state n).
16393 * src/lalr.c (add_lookback_edge): Likewise.
16394 * src/print.c (print_core, print_actions, print_state)
16395 (print_results): Likewise.
16396 * src/print_graph.c (print_core, print_actions, print_state)
16397 (print_graph): Likewise.
16398 * src/conflicts.h: Adjust.
16399
16400 2001-12-27 Akim Demaille <akim@epita.fr>
16401
16402 * src/bison.hairy: Formatting/comment changes.
16403 ANSIfy.
16404 Remove `register' indications.
16405 Add plenty of `static'.
16406
16407 2001-12-27 Akim Demaille <akim@epita.fr>
16408
16409 * src/output.c (prepare): Drop the muscle `ntbase' which
16410 duplicates ntokens.
16411 * src/bison.simple: Formatting/comment changes.
16412 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16413 is an undocumented synonym.
16414
16415 2001-12-22 Akim Demaille <akim@epita.fr>
16416
16417 * src/output.c (output_table_data): Change the prototype to use
16418 `int' for array ranges: some invocations do pass an int, not a
16419 short.
16420 Reported by Wayne Green.
16421
16422 2001-12-22 Akim Demaille <akim@epita.fr>
16423
16424 Some actions of web2c.y are improperly triggered.
16425 Reported by Mike Castle.
16426
16427 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16428 * tests/regression.at (Web2c): Rename as...
16429 (Web2c Report): this.
16430 (Web2c Actions): New.
16431
16432 2001-12-22 Akim Demaille <akim@epita.fr>
16433
16434 Reductions in web2c.y are improperly reported.
16435 Reported by Mike Castle.
16436
16437 * src/conflicts.c (print_reductions): Fix.
16438 * tests/regression.at (Web2c): New.
16439
16440 2001-12-18 Akim Demaille <akim@epita.fr>
16441
16442 Some host fail on `assert (!"foo")', which expands to
16443 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16444 Reported by Nelson Beebee.
16445
16446 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16447 `#define it_succeeded 0' and `assert (it_succeeded)'.
16448
16449 2001-12-17 Marc Autret <autret_m@epita.fr>
16450
16451 * src/bison.simple: Don't hard code the skeleton line and filename.
16452 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16453 New line counter 'skeleton_line' (skeleton-line muscle).
16454
16455 2001-12-17 Paul Eggert <eggert@twinsun.com>
16456
16457 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16458 YYDEBUG must be defined to a nonzero value.
16459
16460 * src/bison.simple (yytname): Do not assume that the user defines
16461 YYDEBUG to a properly parenthesized expression.
16462
16463 2001-12-17 Akim Demaille <akim@epita.fr>
16464
16465 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16466 nlookaheads is a new member.
16467 Adjust all users.
16468 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16469 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16470 state.
16471
16472 2001-12-17 Akim Demaille <akim@epita.fr>
16473
16474 * src/files.h, src/files.c (open_files, close_files): Remove.
16475 * src/main.c (main): Don't open/close files, nor invoke lex_free,
16476 let...
16477 * src/reader.c (reader): Do it.
16478
16479 2001-12-17 Akim Demaille <akim@epita.fr>
16480
16481 * src/conflicts.c (print_reductions): Formatting changes.
16482
16483 2001-12-17 Akim Demaille <akim@epita.fr>
16484
16485 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
16486 (flush_reduce): New.
16487 (resolve_sr_conflict): Adjust.
16488
16489 2001-12-17 Akim Demaille <akim@epita.fr>
16490
16491 * src/output.c (output_obstack): Be static and rename as...
16492 (format_obstack): this, to avoid any confusion with files.c's
16493 output_obstack.
16494 * src/reader.h (muscle_obstack): Move to...
16495 * src/output.h: here, since it's defined in output.c.
16496
16497 2001-12-17 Akim Demaille <akim@epita.fr>
16498
16499 * src/output.c (action_row, save_column, default_goto)
16500 (sort_actions, matching_state, pack_vector): Better variable
16501 locality.
16502
16503 2001-12-17 Akim Demaille <akim@epita.fr>
16504
16505 * src/output.c: Various formatting changes.
16506
16507 2001-12-17 Akim Demaille <akim@epita.fr>
16508
16509 * src/files.c (output_files): Free the output_obstack.
16510 * src/main.c (main): Call print and print_graph conditionally.
16511 * src/print.c (print): Work unconditionally.
16512 * src/print_graph.c (print_graph): Work unconditionally.
16513 * src/conflicts.c (log_resolution): Output only if verbose_flag.
16514
16515 2001-12-16 Marc Autret <autret_m@epita.fr>
16516
16517 * src/output.c (actions_output): Fix. When we use %no-lines,
16518 there is one less line per action.
16519
16520 2001-12-16 Marc Autret <autret_m@epita.fr>
16521
16522 * src/bison.simple: Remove a useless #line directive.
16523 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
16524 * src/output.c (get_lines_number): New.
16525 (output_parser): Adjust, now takes care about the lines of a
16526 output muscles.
16527 Fix line numbering.
16528 (actions_output): Computes the number of lines taken by actions.
16529 (output_master_parser): Insert new skeleton which is the name of
16530 the output parser file name.
16531
16532 2001-12-15 Marc Autret <autret_m@epita.fr>
16533
16534 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
16535
16536 2001-12-15 Marc Autret <autret_m@epita.fr>
16537
16538 * src/output.c (output_gram): Keep track of the hairy one.
16539
16540 2001-12-15 Akim Demaille <akim@epita.fr>
16541
16542 Make `make distcheck' work.
16543
16544 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
16545 system.h which uses libgettext.h.
16546
16547 2001-12-15 Akim Demaille <akim@epita.fr>
16548
16549 * src/nullable.c (set_nullable): Useless rules must be skipped,
16550 otherwise, since we range over their symbols, we might look at a
16551 nonterminal which no longer ``exists'', i.e., it is not counted in
16552 `nvars', hence we overflow our arrays.
16553
16554 2001-12-15 Akim Demaille <akim@epita.fr>
16555
16556 The header can also be produced directly, without any obstack!
16557 Yahoo!
16558
16559 * src/files.c, src/files.h (defines_obstack): Remove.
16560 (compute_header_macro): Global.
16561 (defines_obstack_save): Remove.
16562 * src/reader.c (parse_union_decl): No longer output to
16563 defines_obstack: its content can be found in the `stype' muscle
16564 anyway.
16565 (output_token_translations): Merge into...
16566 (symbols_output): this.
16567 Rename as...
16568 (symbols_save): this.
16569 (reader): Adjust.
16570 * src/output.c (header_output): New.
16571 (output): Call it.
16572
16573 2001-12-15 Akim Demaille <akim@epita.fr>
16574
16575 * src/reader.c (parse_union_decl): Instead of handling two obstack
16576 simultaneously, use one to define the `stype' muscle, and use the
16577 value of the latter to fill defines_obstack.
16578 (copy_comment): Remove.
16579 (copy_comment2): Work for a single obstack.
16580 Rename as...
16581 (copy_comment): this.
16582
16583 2001-12-15 Akim Demaille <akim@epita.fr>
16584
16585 * src/lex.c, src/lex.h (xgetc): No longer static.
16586 * src/reader.c (parse_union_decl): Revamp.
16587
16588 2001-12-15 Akim Demaille <akim@epita.fr>
16589
16590 Still making progress in separating Bison into (i) input, (ii)
16591 process, (iii) output: now we can directly output the parser file
16592 without using table_obstack at all.
16593
16594 * src/files.c, src/files.h (table_obstack): Bye bye.
16595 (parser_file_name): New.
16596 * src/files.c (compute_output_file_names): Compute it.
16597 * src/output.c (actions_output, output_parser)
16598 (output_master_parser): To a file instead of an obstack.
16599
16600 2001-12-15 Akim Demaille <akim@epita.fr>
16601
16602 Attach actions to rules, instead of pre-outputting them to
16603 actions_obstack.
16604
16605 * src/gram.h (rule_t): action and action_line are new members.
16606 * src/reader.c (symbol_list): Likewise.
16607 (copy_action): Save the actions within the rule.
16608 (packgram): Save them in rule_table.
16609 * src/output.c (actions_output): New.
16610 (output_parser): Use it on `%%actions'.
16611 (output_rule_data): Don't free rule_table.
16612 (output): Do it.
16613 (prepare): Don't save the `action' muscle.
16614 * src/bison.simple: s/%%action/%%actions/.
16615
16616 2001-12-15 Akim Demaille <akim@epita.fr>
16617
16618 * src/reader.c (copy_action): When --yacc, don't append a `;'
16619 to the user action: let it fail if lacking.
16620 Suggested by Arnold Robbins and Tom Tromey.
16621
16622 2001-12-14 Akim Demaille <akim@epita.fr>
16623
16624 * src/lex.c (literalchar): Simply return the char you decoded, non
16625 longer mess around with obstacks and int pointers.
16626 Adjust all callers.
16627
16628 2001-12-14 Akim Demaille <akim@epita.fr>
16629
16630 * src/lex.c (literalchar): Don't escape the special characters,
16631 just decode them, and keep them as char (before, eol was output as
16632 the 2 char string `\n' etc.).
16633 * src/output.c (output_rule_data): Use quotearg to output the
16634 token strings.
16635
16636 2001-12-13 Paul Eggert <eggert@twinsun.com>
16637
16638 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
16639 Do not infringe on the global user namespace when using C++.
16640 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
16641 All uses of `fprintf' and `stderr' changed.
16642
16643 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
16644
16645 2001-12-13 Akim Demaille <akim@epita.fr>
16646
16647 The computation of nullable is broken: it doesn't handle empty
16648 RHS's properly.
16649
16650 * tests/torture.at (GNU AWK Grammar): New.
16651 * tests/sets.at (Nullable): New.
16652 * src/nullable.c (set_nullable): Instead of blindly looping over
16653 `ritems', loop over the rules, and then over their rhs's.
16654
16655 Work around Autotest bugs.
16656
16657 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
16658 frame, because Autotest understand lines starting with a `+' as
16659 traces from the shell. Then, they are not processed properly.
16660 Admittedly an Autotest bug, but we don't have time to wait for
16661 Autotest to catch up.
16662 * tests/regression.at (Broken Closure): Adjust to the new table
16663 frames.
16664 Move to...
16665 * tests/sets.at: here.
16666
16667 2001-12-13 Akim Demaille <akim@epita.fr>
16668
16669 * src/closure.c (closure): Use nrules instead of playing tricks
16670 with BITS_PER_WORD.
16671
16672 2001-12-13 Akim Demaille <akim@epita.fr>
16673
16674 * src/print.c (print_actions): Output the handling of `$' as the
16675 traces do: shifting the token EOF. Before EOF was treated as a
16676 nonterminal.
16677 * tests/regression.at: Adjust some tests.
16678 * src/print_graph.c (print_core): Complete the set of items via
16679 closure. The next-to-final and final states are still unsatisfying,
16680 but that's to be addressed elsewhere.
16681 No longer output the rule numbers, but do output the state number.
16682 A single loop for the shifts + gotos is enough, but picked a
16683 distinct color for each.
16684 (print_graph): Initialize and finalize closure.
16685
16686 2001-12-13 Akim Demaille <akim@epita.fr>
16687
16688 * src/reader.c (readgram): Remove dead code, an strip useless
16689 braces.
16690 (get_type): Remove, unused.
16691
16692 2001-12-12 Akim Demaille <akim@epita.fr>
16693
16694 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
16695 on that of lib/error.c.
16696
16697 2001-12-12 Akim Demaille <akim@epita.fr>
16698
16699 Some hosts don't like `/' in includes.
16700
16701 * src/system.h: Include libgettext.h without qualifying the path.
16702 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
16703 $(top_srcdir).
16704
16705 2001-12-11 Marc Autret <autret_m@epita.fr>
16706
16707 * src/output.c (output_parser): Remove useless muscle.
16708
16709 2001-12-11 Marc Autret <autret_m@epita.fr>
16710
16711 * src/bison.simple: Remove #line just before %%epilogue. It
16712 is now handled in ...
16713 * src/reader.c (read_additionnal_code): Add the output of a
16714 #line for the epilogue.
16715
16716 2001-12-10 Marc Autret <autret_m@epita.fr>
16717
16718 * src/reader.c (copy_definition): Re-use CPP-outed code which
16719 replace precedent remove.
16720 * src/bison.simple: Remove #line before %%prologue because
16721 %%input-line is wrong at this time.
16722
16723 2001-12-10 Marc Autret <autret_m@epita.fr>
16724
16725 * src/reader.c (symbols_output): Clean up.
16726 * src/output.c (output_gram, output): Clean up.
16727
16728 2001-12-10 Akim Demaille <akim@epita.fr>
16729
16730 * src/lalr.c (initialize_lookaheads): New. Extracted from...
16731 * src/LR0.c (set_state_table): here.
16732 * src/lalr.c (lalr): Call it.
16733
16734 2001-12-10 Akim Demaille <akim@epita.fr>
16735
16736 * src/state.h (shifts): Remove the `number' member: shifts are
16737 attached to state, hence no longer need to be labelled with a
16738 state number.
16739
16740 2001-12-10 Akim Demaille <akim@epita.fr>
16741
16742 Now that states have a complete set of members, the linked list of
16743 shifts is useless: just fill directly the state's shifts member.
16744
16745 * src/state.h (shifts): Remove the `next' member.
16746 * src/LR0.c (first_state, last_state): Remove.
16747 Adjust the callers.
16748 (augment_automaton): Don't look for the shifts that must be added
16749 a shift on EOF: it is those of the state we looked for! But now,
16750 since shifts are attached, it is no longer needed to looking
16751 merely by its id: its number.
16752
16753 2001-12-10 Akim Demaille <akim@epita.fr>
16754
16755 * src/LR0.c (augment_automaton): Better variable locality.
16756 Remove an impossible branch: if there is a state corresponding to
16757 the start symbol being shifted, then there is shift for the start
16758 symbol from the initial state.
16759
16760 2001-12-10 Akim Demaille <akim@epita.fr>
16761
16762 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
16763 only when appropriate: when insert_start_shifting_state' is not
16764 invoked.
16765 * tests/regression.at (Rule Line Numbers): Adjust.
16766
16767 2001-12-10 Akim Demaille <akim@epita.fr>
16768
16769 * src/LR0.c (augment_automaton): Now that all states have shifts,
16770 merge the two cases addition shifts to the initial state.
16771
16772 2001-12-10 Akim Demaille <akim@epita.fr>
16773
16774 * src/lalr.c (set_state_table): Move to...
16775 * src/LR0.c: here.
16776 * src/lalr.c (lalr): Don't call it...
16777 * src/LR0.c (generate_states): do it.
16778 * src/LR0.h (first_state): Remove, only the table is used.
16779
16780 2001-12-10 Akim Demaille <akim@epita.fr>
16781
16782 * src/LR0.h (first_shift, first_reduction): Remove.
16783 * src/lalr.c: Don't use first_shift: find shifts through the
16784 states.
16785
16786 2001-12-10 Akim Demaille <akim@epita.fr>
16787
16788 * src/LR0.c: Attach shifts to states as soon as they are
16789 computed.
16790 * src/lalr.c (set_state_table): Instead of assigning shifts to
16791 state, just assert that the mapping was properly done.
16792
16793 2001-12-10 Akim Demaille <akim@epita.fr>
16794
16795 * src/LR0.c (insert_start_shift): Rename as...
16796 (insert_start_shifting_state): this.
16797 (insert_eof_shifting_state, insert_accepting_state): New.
16798 (augment_automaton): Adjust.
16799 Better locality of the variables.
16800 When looking if the start_symbol is shifted from the initial
16801 state, using `while (... symbol != start_symbol ...)' sounds
16802 better than `while (... symbol < start_symbol ...)': If fail
16803 to see how the order between symbols could be relevant!
16804
16805 2001-12-10 Akim Demaille <akim@epita.fr>
16806
16807 * src/getargs.h: Don't declare `spec_name_prefix' and
16808 `spec_file_prefix', declared by src/files.h.
16809 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
16810 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
16811 * src/output.c (prepare): Adjust.
16812 * src/reader.c (symbols_output): Likewise.
16813 * src/vmsgetargs.c: Vaguely adjust, but who cares?
16814
16815 2001-12-10 Akim Demaille <akim@epita.fr>
16816
16817 * src/muscle_tab.c (muscle_init): NULL is a better default than
16818 `"0"'.
16819
16820 2001-12-10 Akim Demaille <akim@epita.fr>
16821
16822 * src/reader.c (reader): Calling symbols_output once is enough.
16823
16824 2001-12-10 Akim Demaille <akim@epita.fr>
16825
16826 Now that states have a complete set of members, the linked list of
16827 reductions is useless: just fill directly the state's reductions
16828 member.
16829
16830 * src/state.h (struct reductions): Remove member `number' and
16831 `next'.
16832 * src/LR0.c (first_reduction, last_reduction): Remove.
16833 (save_reductions): Don't link the new reductions, store them in
16834 this_state.
16835 * src/lalr.c (set_state_table): No need to attach reductions to
16836 states, it's already done.
16837 * src/output.c (output_actions): No longer free the shifts, then
16838 the reductions, then the states: free all the states and their
16839 members.
16840
16841 2001-12-10 Akim Demaille <akim@epita.fr>
16842
16843 * src/options.c (OPTN, DRTV, BOTH): New.
16844 (option_table): Use them.
16845
16846 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
16847 the job of system.h.
16848 * src/options.c: Don't include stdio.h and xalloc.h for the same
16849 reasons.
16850
16851 2001-12-10 Akim Demaille <akim@epita.fr>
16852
16853 * src/output.c (output, prepare): Make sure the values of the
16854 muscles `action' and `prologue' are 0-terminated.
16855
16856 2001-12-10 Akim Demaille <akim@epita.fr>
16857
16858 Clean up GCC warnings.
16859
16860 * src/reader.c (copy_action): `buf' is not used.
16861 (parse_skel_decl): Be static.
16862 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
16863 * src/options.h (create_long_option_table): Have a real prototype.
16864 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
16865 (hash_delete_at): Return const void *.
16866 Adjust casts to preserve the const.
16867
16868 2001-12-10 Akim Demaille <akim@epita.fr>
16869
16870 * configure.in: Require 2.52g.
16871 M4 is not needed, but AUTOM4TE is.
16872 * m4/m4.m4: Remove.
16873 * tests/Makefile.am: Adjust.
16874
16875 2001-12-10 Akim Demaille <akim@epita.fr>
16876
16877 One structure for states is enough, even though theoretically
16878 there are LR(0) states and LALR(1) states.
16879
16880 * src/lalr.h (state_t): Remove.
16881 (state_table): Be state_t **, not state_t *.
16882 * src/state.h (core, CORE_ALLOC): Rename as...
16883 (state_t, STATE_ALLOC): this.
16884 Add the LALR(1) members: shifts, reductions, errs.
16885 * src/LR0.c (state_table): Rename as...
16886 (state_hash): this, to avoid name clashes with the global
16887 `state_table'.
16888 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
16889 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
16890
16891 2001-12-10 Akim Demaille <akim@epita.fr>
16892
16893 Bison dumps core on bash.y.
16894 Reported by Pascal Bart.
16895
16896 * src/warshall.c (bitmatrix_print): New.
16897 (TC): Use it.
16898 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
16899 j must be the outer loop.
16900 * tests/regression.at (Broken Closure): New.
16901
16902 2001-12-05 Akim Demaille <akim@epita.fr>
16903
16904 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
16905 its argument.
16906 Reported by Peter Hamorsky.
16907
16908 2001-12-05 Akim Demaille <akim@epita.fr>
16909
16910 * src/conflicts.c (err_table): Remove.
16911 (resolve_sr_conflict): Adjust.
16912 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
16913 Rename as...
16914 (state_t.reductions, state_t.shifts): this.
16915
16916 2001-12-05 Akim Demaille <akim@epita.fr>
16917
16918 * src/reduce.c (reduce_grammar_tables): No longer disable the
16919 removal of useless rules via CPP but via `if (0)', so that the
16920 compiler still check the code is valid.
16921 For instance, it should have noticed `rline' no longer exists: use
16922 the `line' member of rule_t.
16923 * src/gram.c (dummy, rline): Remove, unused.
16924
16925 2001-12-05 Akim Demaille <akim@epita.fr>
16926
16927 * src/output.c (pack_vector): Use assert, not berror.
16928 * src/main.c (berror): Remove, unused.
16929
16930 2001-12-05 Akim Demaille <akim@epita.fr>
16931
16932 New experimental feature: if --verbose --trace output all the
16933 items of a state, not only its kernel.
16934
16935 * src/print.c (print_core): If `trace_flag', then invoke closure
16936 before outputting the items of the state (print_core is no longer
16937 a correct name them).
16938 (print_results): Invoke new_closure/free_closure if needed.
16939
16940 2001-12-05 Akim Demaille <akim@epita.fr>
16941
16942 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
16943 * src/closure.c, src/closure.h (itemsetsize): Rename as...
16944 (nitemset): for consistency with the rest of the project.
16945
16946 2001-12-05 Akim Demaille <akim@epita.fr>
16947
16948 * src/closure.c (print_closure): Improve.
16949 (closure): Use it for printing input and output.
16950
16951 2001-12-05 Akim Demaille <akim@epita.fr>
16952
16953 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
16954 indexed by nonterminals.
16955
16956 2001-12-05 Akim Demaille <akim@epita.fr>
16957
16958 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
16959 what it was!).
16960 * src/warshall.h: Remove accidental duplication of the content.
16961
16962 2001-12-05 Akim Demaille <akim@epita.fr>
16963
16964 * src/closure.c (set_fderives): De-obfuscate.
16965
16966 2001-12-05 Akim Demaille <akim@epita.fr>
16967
16968 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
16969
16970 2001-12-05 Akim Demaille <akim@epita.fr>
16971
16972 * src/closure.c (set_firsts): De-obfuscate.
16973
16974 2001-12-05 Akim Demaille <akim@epita.fr>
16975
16976 * src/output.c (action_row): De-obfuscate
16977 using the good o' techniques: arrays not pointers, variable
16978 locality, BITISSET, RESETBIT etc.
16979
16980 2001-12-05 Akim Demaille <akim@epita.fr>
16981
16982 Pessimize the code to simplify it: from now on, all the states
16983 have a valid SHIFTS, which NSHIFTS is possibly 0.
16984
16985 * src/LR0.c (shifts_new): Be global and move to..
16986 * src/state.c, src/state.h: here.
16987 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
16988 * src/print_graph: Adjust.
16989
16990 2001-12-05 Akim Demaille <akim@epita.fr>
16991
16992 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
16993 * src/conflicts.c: Use it.
16994 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
16995 incorrectly ``simplified''.
16996
16997 2001-12-05 Akim Demaille <akim@epita.fr>
16998
16999 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
17000 using the good o' techniques: arrays not pointers, variable
17001 locality, BITISSET, RESETBIT etc.
17002
17003 2001-12-05 Akim Demaille <akim@epita.fr>
17004
17005 * src/state.h (SHIFT_SYMBOL): New.
17006 * src/conflicts.c: Use it to deobfuscate.
17007
17008 2001-12-05 Akim Demaille <akim@epita.fr>
17009
17010 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
17011 (print_reductions): De-obfuscate using the good o' techniques:
17012 arrays not pointers, variable locality, BITISSET.
17013
17014 2001-12-05 Akim Demaille <akim@epita.fr>
17015
17016 * src/conflicts.c (print_reductions): Arrays, not pointers.
17017 Use BITISSET.
17018
17019 2001-12-05 Akim Demaille <akim@epita.fr>
17020
17021 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17022
17023 2001-12-05 Akim Demaille <akim@epita.fr>
17024
17025 * src/conflicts.c (print_reductions): Improve variable locality.
17026
17027 2001-12-05 Akim Demaille <akim@epita.fr>
17028
17029 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17030
17031 2001-12-05 Akim Demaille <akim@epita.fr>
17032
17033 * src/conflicts.c (print_reductions): Improve variable locality.
17034
17035 2001-12-05 Akim Demaille <akim@epita.fr>
17036
17037 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
17038 * src/lalr.c: Use them.
17039
17040 2001-12-05 Akim Demaille <akim@epita.fr>
17041
17042 * src/LR0.c (augment_automaton): Formatting changes.
17043 Better variable locality.
17044
17045 2001-12-05 Akim Demaille <akim@epita.fr>
17046
17047 * src/lalr.c (matrix_print): New.
17048 (transpose): Use it.
17049 Use arrays instead of pointers.
17050
17051 2001-12-05 Akim Demaille <akim@epita.fr>
17052
17053 * src/lalr.c (maxrhs): Move to...
17054 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
17055 * src/lalr.c (build_relations): Adjust.
17056
17057 2001-12-05 Akim Demaille <akim@epita.fr>
17058
17059 * src/lalr.c (transpose): Free the memory allocated to the
17060 argument, as it is replaced by the results by the unique caller.
17061 (build_relations): Merely invoke transpose: it handles the memory
17062 deallocation.
17063 Improve variable locality.
17064 Avoid variables used as mere abbreviations.
17065 (compute_lookaheads): Use arrays instead of pointers.
17066
17067 2001-12-05 Akim Demaille <akim@epita.fr>
17068
17069 * src/lalr.c (initialize_F): Improve variable locality.
17070 Avoid variables used as mere abbreviations.
17071
17072 2001-12-05 Akim Demaille <akim@epita.fr>
17073
17074 * src/derives.c (print_derives): Display the ruleno.
17075 * src/lalr.c (initialize_F, transpose): Better variable locality
17076 to improve readability.
17077 Avoid variables used as mere abbreviations.
17078
17079 2001-12-05 Akim Demaille <akim@epita.fr>
17080
17081 * src/lalr.c (traverse): Use arrays instead of pointers.
17082
17083 2001-12-05 Akim Demaille <akim@epita.fr>
17084
17085 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
17086 the handling of squeue.
17087 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17088
17089 2001-12-05 Akim Demaille <akim@epita.fr>
17090
17091 Because useless nonterminals are now kept alive (instead of being
17092 `destroyed'), we now sometimes examine them, and store information
17093 related to them. Hence we need to know their number, and adjust
17094 memory allocations.
17095
17096 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
17097 static.
17098 * src/LR0.c (allocate_itemsets): The memory allocated to
17099 `symbol_count' was used for two different purpose: once to count
17100 the number of occurrences of each symbol, and later reassigned to
17101 `shift_symbol', containing the symbol that can be shifted from a
17102 given state.
17103 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17104 only, and...
17105 (new_itemsets): Allocate `shift_symbol' here.
17106 (allocate_itemsets): symbol_count includes useless nonterminals.
17107 Make room for them.
17108 (free_storage): Use `free', not `XFREE', for pointers that cannot
17109 be null.
17110
17111 2001-12-05 Akim Demaille <akim@epita.fr>
17112
17113 * src/nullable.c (set_nullable): Deobfuscate the handling of
17114 ritem.
17115 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17116
17117 2001-12-05 Akim Demaille <akim@epita.fr>
17118
17119 * src/gram.c, src/gram.h (ritem_print): New.
17120 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17121 (This useless function was defined only to work around VMS linkers
17122 that can't handle compilation units with variables only).
17123 * src/reduce.c (dump_grammar): Use it to trace the construction of
17124 ritem.
17125
17126 2001-12-04 Paul Eggert <eggert@twinsun.com>
17127
17128 * src/bison.simple (union yyalloc): Change member names
17129 to be the same as the stack names.
17130 (yyparse): yyptr is now union yyalloc *, not char *.
17131 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17132 and may generate better code on some machines.
17133 (yystpcpy): Use prototype if __STDC__ is defined, not just
17134 if __cplusplus is defined.
17135
17136 2001-11-30 Akim Demaille <akim@epita.fr>
17137
17138 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17139 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17140 Gettext doesn't compile cleanly, and dies with -Werror.
17141 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17142 Include WARNING_CFLAGS here.
17143 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17144 before being defined.
17145
17146 2001-11-27 Paul Eggert <eggert@twinsun.com>
17147
17148 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17149 First arg is int, not unsigned.
17150 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17151 (SIZE_MAX, UINT_MAX): New macros.
17152 (quotearg_n_options): Abort if N is negative.
17153 Avoid overflow check on hosts where size_t is 64 bits and int
17154 is 32 bits, as overflow is impossible there.
17155 Fix off-by-one typo that caused unnecessary reallocation.
17156
17157 2001-11-29 Paul Eggert <eggert@twinsun.com>
17158
17159 Name space cleanup in generated parser.
17160
17161 * doc/bison.texinfo (Bison Parser): Discuss system headers
17162 and their effect on the user name space.
17163
17164 * src/bison.simple:
17165 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17166 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17167 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17168
17169 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17170 on user names when possible.
17171
17172 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17173 Simplify test for whather <alloca.h> exists.
17174
17175 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17176
17177 (<stdio.h>): Include if YYDEBUG.
17178
17179 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17180 ! defined (yyoverflow) && ! defined (yymemcpy).
17181
17182 (yymemcpy, yyparse): Rename local variables as needed so that
17183 they all begin with 'yy'.
17184
17185 (yystrlen, yystpcpy): New functions.
17186
17187 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17188 All uses changed.
17189
17190 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17191 instead of relying on string.h functions. Use YYSTACK_ALLOC
17192 and YYSTACK_FREE instead of malloc and free.
17193
17194 2001-11-30 Akim Demaille <akim@epita.fr>
17195
17196 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17197 before their first uses.
17198 (YYBISON, YYPURE): Move to the top of the output.
17199
17200 2001-11-30 Akim Demaille <akim@epita.fr>
17201
17202 * tests/reduce.at (Useless Nonterminals): Fix.
17203
17204 2001-11-30 Akim Demaille <akim@epita.fr>
17205
17206 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17207 if body instead of `;' to pacify GCC's warnings.
17208
17209 2001-11-30 Akim Demaille <akim@epita.fr>
17210
17211 Instead of mapping the LHS of unused rules to -1, keep the LHS
17212 valid, but flag the rules as invalid.
17213
17214 * src/gram.h (rule_t): `useful' is a new member.
17215 * src/print.c (print_grammar): Adjust.
17216 * src/derives.c (set_derives): Likewise.
17217 * src/reader.c (packgram, reduce_output): Likewise.
17218 * src/reduce.c (reduce_grammar_tables): Likewise.
17219 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17220
17221 2001-11-30 Akim Demaille <akim@epita.fr>
17222
17223 * src/reduce.c (reduce_output): Formatting changes.
17224 * src/print.c (print_results, print_grammar): Likewise.
17225 * tests/regression.at (Rule Line Numbers)
17226 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17227
17228 2001-11-30 Akim Demaille <akim@epita.fr>
17229
17230 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17231 useless nonterminals, move them at the end of the symbol arrays.
17232 (reduce_output): Adjust.
17233 * tests/reduce.at (Useless Nonterminals): Adjust.
17234
17235 2001-11-30 Akim Demaille <akim@epita.fr>
17236
17237 * src/reduce.c: Various comment/formatting changes.
17238 (nonterminals_reduce): New, extracted from...
17239 (reduce_grammar_tables): here.
17240 (reduce_grammar): Call nonterminals_reduce.
17241
17242 2001-11-29 Paul Eggert <eggert@twinsun.com>
17243
17244 * src/bison.simple (YYSTACK_REALLOC): Remove.
17245 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17246 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17247 New macros.
17248 (union yyalloc): New type.
17249 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17250 an arbitrary restriction on hosts where size_t is wider than int.
17251
17252 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17253 a parser stack overflow. Allocate just one block of memory for all
17254 three stacks, instead of allocating three blocks; this typically is
17255 faster and reduces fragmentation.
17256
17257 Do not limit the number of items in the stack to a value that fits
17258 in 'int', as this is an arbitrary limit on hosts with 64-bit
17259 size_t and 32-bit int.
17260
17261 2001-11-29 Marc Autret <autret_m@epita.fr>
17262
17263 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17264 of defining YYERROR_VERBOSE.
17265 [AT_DATA]: $4 is now out of C declarations in the prologue.
17266
17267 2001-11-28 Marc Autret <autret_m@epita.fr>
17268
17269 * src/reader.c (parse_dquoted_param): New.
17270 (parse_skel_decl): Use it.
17271 * src/lex.h: Add its prototype.
17272 * src/lex.c (literalchar): Become not static.
17273
17274 2001-11-28 Marc Autret <autret_m@epita.fr>
17275
17276 * src/output.h: And put its extern declaration here.
17277 * src/output.c (error_verbose): Define here.
17278 (prepare): Echo name modification.
17279 * src/getargs.h: Clean its extern declaration.
17280 * src/getargs.c (error_verbose_flag): Remove.
17281 (getargs): Remove case 'e'.
17282 * src/options.c (option_table): 'error-verbose' is now seen as simple
17283 percent option.
17284 Include output.h.
17285
17286 * src/reader.c (read_declarations): Remove case tok_include.
17287 (parse_include_decl): Remove.
17288 * src/lex.h (token_t): Remove tok_include.
17289 * src/options.c (option_table): 'include' is now a simple command line
17290 option.
17291
17292 2001-11-28 Marc Autret <autret_m@epita.fr>
17293
17294 * src/bison.simple: Adjust muscle names.
17295 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17296 * src/output.c (prepare): s/_/-/ for the muscles names.
17297 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17298
17299 2001-11-28 Marc Autret <autret_m@epita.fr>
17300
17301 * src/bison.simple: Fix debug.
17302 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17303
17304 2001-11-28 Akim Demaille <akim@epita.fr>
17305
17306 * src/LR0.c (shifts_new): New.
17307 (save_shifts, insert_start_shift, augment_automaton): Use it.
17308
17309 2001-11-28 Akim Demaille <akim@epita.fr>
17310
17311 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17312 keep ruleno only.
17313
17314 2001-11-28 Akim Demaille <akim@epita.fr>
17315
17316 * src/closure.c (closure): Instead of looping over word in array
17317 then bits in words, loop over bits in array.
17318
17319 2001-11-28 Akim Demaille <akim@epita.fr>
17320
17321 * src/closure.c (closure): No longer optimize the special case
17322 where all the bits of `ruleset[r]' are set to 0, to make the code
17323 clearer.
17324
17325 2001-11-28 Akim Demaille <akim@epita.fr>
17326
17327 * src/closure.c (closure): `r' and `c' are new variables, used to
17328 de-obfuscate accesses to RULESET and CORE.
17329
17330 2001-11-28 Akim Demaille <akim@epita.fr>
17331
17332 * src/reduce.c (reduce_print): Use ngettext.
17333 (dump_grammar): Improve the trace accuracy.
17334
17335 2001-11-28 Akim Demaille <akim@epita.fr>
17336
17337 * src/reduce.c (dump_grammar): Don't translate trace messages.
17338
17339 2001-11-28 Akim Demaille <akim@epita.fr>
17340
17341 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17342 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17343 as all tags are free'ed afterwards.
17344 From Enrico Scholz.
17345
17346 2001-11-27 Paul Eggert <eggert@twinsun.com>
17347
17348 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17349 use alloca when we didn't want to, and vice versa.
17350
17351 2001-11-27 Marc Autret <autret_m@epita.fr>
17352
17353 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17354 initialization.
17355 * src/output.c (prepare): Remove its update.
17356
17357 2001-11-27 Marc Autret <autret_m@epita.fr>
17358
17359 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17360 Use %error-verbose.
17361
17362 2001-11-27 Marc Autret <autret_m@epita.fr>
17363
17364 * src/bison.simple: Remove YYERROR_VERBOSE using.
17365 Use %%error_verbose.
17366 (yyparse): Likewise.
17367 * src/output.c (prepare): Give its final value.
17368 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17369 * src/getargs.h: Add its extern declaration.
17370 * src/getargs.c (error_verbose_flag): New int.
17371 (getargs): Update to catch new case.
17372 * src/options.c (option_table): 'error-verbose' is a new option.
17373 (shortopts): Update.
17374
17375 2001-11-27 Akim Demaille <akim@epita.fr>
17376
17377 * src/system.h: Use intl/libgettext.h.
17378 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17379
17380 2001-11-27 Akim Demaille <akim@epita.fr>
17381
17382 * tests/torture.at (Exploding the Stack Size with Malloc):
17383 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17384
17385 2001-11-27 Akim Demaille <akim@epita.fr>
17386
17387 * src/files.c: Include error.h.
17388 Reported by Hans Aberg.
17389
17390 2001-11-26 Marc Autret <autret_m@epita.fr>
17391
17392 * src/reader.c (parse_include_decl): New, not yet implemented.
17393 (read_declarations): Add case tok_include.
17394 * src/getargs.h (include): Add its extern definition.
17395 * src/getargs.c (include): New const char *.
17396 (getargs): Add case '-I'.
17397 * src/options.c (option_table): Add include as command line and
17398 percent option.
17399 * src/lex.h (token_t): Add tok_include.
17400
17401 2001-11-26 Akim Demaille <akim@epita.fr>
17402
17403 * src/reader.c (readgram): Make sure rules for mid-rule actions
17404 have a lineno equal to that of their host rule.
17405 Reported by Hans Aberg.
17406 * tests/regression.at (Rule Line Numbers): New.
17407
17408 2001-11-26 Akim Demaille <akim@epita.fr>
17409
17410 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17411 size_ts.
17412
17413 2001-11-26 Akim Demaille <akim@epita.fr>
17414
17415 * src/complain.c, src/complain.h (error): Remove, provided by
17416 lib/error.[ch].
17417
17418 2001-11-26 Akim Demaille <akim@epita.fr>
17419
17420 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17421 issue an error message.
17422 * tests/regression.at (Invalid %directive): New.
17423 Reported by Hans Aberg.
17424
17425 2001-11-26 Akim Demaille <akim@epita.fr>
17426
17427 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17428 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17429
17430 2001-11-26 Akim Demaille <akim@epita.fr>
17431
17432 * src/conflicts.c (conflicts_print): Don't complain at all when
17433 there are no reduce/reduce conflicts, and as many shift/reduce
17434 conflicts as expected.
17435 * tests/regression.at (%expect right): Adjust.
17436
17437 2001-11-23 Akim Demaille <akim@epita.fr>
17438
17439 * lib/alloca.c: Update, from fileutils.
17440
17441 2001-11-23 Akim Demaille <akim@epita.fr>
17442
17443 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17444
17445 2001-11-23 Akim Demaille <akim@epita.fr>
17446
17447 * src/system.h: Include alloca.h.
17448 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17449
17450 2001-11-23 Akim Demaille <akim@epita.fr>
17451
17452 * src/print_graph.c (print_actions): Remove `rule', unused.
17453 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17454 pacify GCC's signed < unsigned warnings.
17455 * src/closure.c (itemsetsize): Likewise.
17456 * src/reader.c (symbol_list_new): Static.
17457
17458 2001-11-23 Akim Demaille <akim@epita.fr>
17459
17460 Attaching lineno to buckets is stupid, since only one copy of each
17461 symbol is kept, only the line of the first occurrence is kept too.
17462
17463 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17464 * src/reader.c (rline_allocated): Remove, unused.
17465 (symbol_list): Have a `line' member.
17466 (symbol_list_new): New.
17467 (readgram): Use it.
17468 * src/print.c (print_grammar): Output the rule line numbers.
17469 * tests/regression.at (Solved SR Conflicts)
17470 (Unresolved SR Conflicts): Adjust.
17471 Reported by Hans Aberg.
17472
17473 2001-11-22 Marc Autret <autret_m@epita.fr>
17474
17475 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
17476
17477 2001-11-22 Marc Autret <autret_m@epita.fr>
17478
17479 * src/muscle_tab.c (muscle_init): Remove initialization of
17480 skeleton muscle.
17481 * src/output.c (output_master_parser): Do it here.
17482
17483 2001-11-20 Akim Demaille <akim@epita.fr>
17484
17485 * po/sv.po: New.
17486 * configure.in (ALL_LINGUAS): Adjust.
17487 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
17488 longer contains strings to translate.
17489
17490 2001-11-19 Akim Demaille <akim@epita.fr>
17491
17492 * src/conflicts.c (conflicts_print): Add a missing \n.
17493
17494 2001-11-19 Akim Demaille <akim@epita.fr>
17495
17496 * src/nullable.c (nullable_print): New.
17497 (set_nullable): Call it when tracing.
17498 Better locality of variables.
17499
17500 2001-11-19 Akim Demaille <akim@epita.fr>
17501
17502 * src/print.c (print_actions): Better locality of variables.
17503
17504 2001-11-19 Akim Demaille <akim@epita.fr>
17505
17506 * src/derives.c (print_derives): Fix and enrich.
17507 * src/closure.c (print_fderives): Likewise.
17508
17509 2001-11-19 Akim Demaille <akim@epita.fr>
17510
17511 * src/closure.c (itemsetend): Remove, replaced with...
17512 (itemsetsize): new.
17513
17514 2001-11-19 Akim Demaille <akim@epita.fr>
17515
17516 * src/LR0.c (kernel_end): Remove, replaced with...
17517 (kernel_size): new.
17518
17519 2001-11-19 Akim Demaille <akim@epita.fr>
17520
17521 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
17522 to clarify.
17523
17524 2001-11-19 Akim Demaille <akim@epita.fr>
17525
17526 * src/closure.c (closure): Use arrays instead of pointers to clarify.
17527
17528 2001-11-19 Akim Demaille <akim@epita.fr>
17529
17530 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
17531 trace messages.
17532 * src/LR0.c: Likewise.
17533 (allocate_itemsets): Use arrays instead of pointers to clarify.
17534
17535 2001-11-19 Akim Demaille <akim@epita.fr>
17536
17537 * src/getargs.c (statistics_flag): Replace with...
17538 (trace_flag): New.
17539 (longopts): Accept --trace instead of --statistics.
17540 * src/getargs.h, src/options.c: Adjust.
17541 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
17542 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
17543
17544 2001-11-19 Akim Demaille <akim@epita.fr>
17545
17546 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
17547 pointers to clarify the code.
17548 (save_reductions, save_shifts): Factor common parts of alternatives.
17549
17550 2001-11-19 Akim Demaille <akim@epita.fr>
17551
17552 * src/LR0.c (new_state, get_state): Complete TRACE code.
17553 * src/closure.c: Include `reader.h' to get `tags', needed by the
17554 trace code.
17555 Rename the conditional DEBUG as TRACE.
17556 Output consistently TRACEs to stderr, not stdout.
17557 * src/derives.c: Likewise.
17558 * src/reduce.c: (inaccessable_symbols): Using if is better style
17559 than goto.
17560 Use `#if TRACE' instead of `#if 0' for tracing code.
17561
17562 2001-11-19 Akim Demaille <akim@epita.fr>
17563
17564 * src/system.h (LIST_FREE, shortcpy): New.
17565 * src/LR0.c: Use them.
17566 * src/output.c (free_itemsets, free_reductions, free_shifts):
17567 Remove, replaced by LIST_FREE.
17568
17569 2001-11-19 Akim Demaille <akim@epita.fr>
17570
17571 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
17572 (REDUCTIONS_ALLOC): New.
17573 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
17574 allocation.
17575
17576 2001-11-19 Akim Demaille <akim@epita.fr>
17577
17578 * src/LR0.c (new_state): Complete trace code.
17579 * src/nullable.c (set_nullable): Don't translate traces.
17580
17581 2001-11-19 Akim Demaille <akim@epita.fr>
17582
17583 * src/print_graph.c (print_core): Better locality of variables.
17584 * src/print.c (print_core): Likewise.
17585
17586 2001-11-19 Akim Demaille <akim@epita.fr>
17587
17588 * src/vcg.c: You do the output, so you are responsible of the
17589 handling of VCG syntax, in particular: use quotearg.
17590 * src/print_graph.c: Don't.
17591 (print_actions): Don't output the actions as part of the nodes,
17592 since that's the job of the edges.
17593 (print_state): Don't output by hand: fill the node description,
17594 and ask for its output.
17595
17596 2001-11-19 Akim Demaille <akim@epita.fr>
17597
17598 * src/bison.simple (yyparse): When verbosely reporting an error,
17599 no longer put additional quotes around token names.
17600 * tests/calc.at: Adjust.
17601
17602 2001-11-19 Akim Demaille <akim@epita.fr>
17603
17604 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
17605 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
17606 * src/output.c: Adjust.
17607
17608 2001-11-19 Akim Demaille <akim@epita.fr>
17609
17610 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
17611 (rule_t): this.
17612 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
17613
17614 2001-11-19 Akim Demaille <akim@epita.fr>
17615
17616 * src/gram.h (rule_t): New.
17617 (rule_table): New.
17618 (rrhs, rlhs): Remove, part of state_t.
17619 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
17620 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17621 * src/reader.c, src/reduce.c: Adjust.
17622
17623 2001-11-19 Akim Demaille <akim@epita.fr>
17624
17625 * src/reader.c (symbols_output): New, extracted from...
17626 (packsymbols): Here.
17627 (reader): Call it.
17628
17629 2001-11-19 Akim Demaille <akim@epita.fr>
17630
17631 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
17632 (maxrhs): this new function.
17633
17634 2001-11-19 Akim Demaille <akim@epita.fr>
17635
17636 * src/lalr.c (F): New macro to access the variable F.
17637 Adjust.
17638
17639 2001-11-19 Akim Demaille <akim@epita.fr>
17640
17641 * src/lalr.h (LA): New macro to access the variable LA.
17642 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17643 * src/lalr.c: Adjust.
17644
17645 2001-11-19 Akim Demaille <akim@epita.fr>
17646
17647 * src/lalr.c (initialize_LA): Only initialize LA. Let...
17648 (set_state_table): handle the `lookaheads' members.
17649
17650 2001-11-19 Akim Demaille <akim@epita.fr>
17651
17652 * src/lalr.h (lookaheads): Removed array, whose contents is now
17653 a member of...
17654 (state_t): this structure.
17655 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17656 Adjust.
17657
17658 2001-11-19 Akim Demaille <akim@epita.fr>
17659
17660 * src/lalr.h (consistent): Removed array, whose contents is now
17661 a member of...
17662 (state_t): this structure.
17663 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17664 Adjust.
17665
17666 2001-11-19 Akim Demaille <akim@epita.fr>
17667
17668 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
17669 contents are now members of...
17670 (state_t): this structure.
17671 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17672 Adjust.
17673
17674 2001-11-19 Akim Demaille <akim@epita.fr>
17675
17676 * src/lalr.h (state_t): New.
17677 (state_table): Be a state_t * instead of a core **.
17678 (accessing_symbol): Remove, part of state_t.
17679 * src/lalr.c: Adjust.
17680 (set_accessing_symbol): Merge into...
17681 (set_state_table): this.
17682 * src/print_graph.c, src/conflicts.c: Adjust.
17683
17684 2001-11-14 Akim Demaille <akim@epita.fr>
17685
17686 * tests/calc.at, tests/output.at, tests/regression.at,
17687 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
17688 now the tests are run in private dirs, therefore AC_CLEANUP and
17689 family can be simplified to 0-ary.
17690 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
17691 use abs. path to find config.h.
17692 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
17693 stderr, there can be way too much random noise.
17694 Instead pass -Werror to GCC and rely on the exit status.
17695 Reported by Wolfram Wagner.
17696
17697 2001-11-14 Akim Demaille <akim@epita.fr>
17698
17699 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
17700 defined only if yyoverflow is defined, to avoid `warning: unused
17701 variable `yyvs1''.
17702 Reported by The Test Suite.
17703
17704 2001-11-14 Akim Demaille <akim@epita.fr>
17705
17706 * src/print.c: Include reduce.h.
17707 Reported by Hans Aberg.
17708
17709 2001-11-14 Akim Demaille <akim@epita.fr>
17710
17711 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
17712 Revert a previous patch: these are really const.
17713 * src/conflicts.c (conflict_report): Additional useless pair of
17714 braces to pacify GCC's warnings for `if () if () {} else {}'.
17715 * src/lex.c (parse_percent_token): Replace equal_offset with
17716 arg_offset.
17717 arg is const.
17718 Be sure to strdup `arg' when used, since there is no reason for
17719 token_buffer not to change.
17720
17721 2001-11-14 Akim Demaille <akim@epita.fr>
17722
17723 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
17724 definition.
17725 * src/main.c (main): Use them.
17726 Suggested by Hans Aberg.
17727
17728 2001-11-12 Akim Demaille <akim@epita.fr>
17729
17730 * src/system.h (ngettext): Now that we use ngettext, be sure to
17731 provide a default definition when NLS are not used.
17732
17733 2001-11-12 Akim Demaille <akim@epita.fr>
17734
17735 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
17736 Use @kbd to denote user input.
17737 (Language and Grammar): ANSIfy the example.
17738 Adjust its layout for info/notinfo.
17739 (Location Tracking Calc): Output error messages to stderr.
17740 Output locations in a more GNUtically correct way.
17741 Fix a couple of Englishos.
17742 Adjust @group/@end group pairs.
17743
17744 2001-11-12 Akim Demaille <akim@epita.fr>
17745
17746 %expect was not functioning at all.
17747
17748 * src/conflicts.c (expected_conflicts): Set to -1.
17749 (conflict_report): Use ngettext.
17750 (conflicts_print): Check %expect and make its violation an error.
17751 * doc/bison.texinfo (Expect Decl): Adjust.
17752 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
17753 * tests/regression.at (%expect not enough, %expect right)
17754 (%expect too much): New.
17755
17756 2001-11-12 Akim Demaille <akim@epita.fr>
17757
17758 * tests/regression.at (Conflicts): Rename as...
17759 (Unresolved SR Conflicts): this.
17760 (Solved SR Conflicts): New.
17761
17762 2001-11-12 Akim Demaille <akim@epita.fr>
17763
17764 * src/reduce.c (print_results): Rename as...
17765 (reduce_output): This.
17766 Output to OUT, passed as argument, instead of output_obstack.
17767 (dump_grammar): Likewise.
17768 (reduce_free): New.
17769 Also free V1.
17770 (reduce_grammar): No longer call reduce_output, since...
17771 * src/print.c (print_results): do it.
17772 * src/main.c (main): Call reduce_free;
17773
17774 2001-11-12 Akim Demaille <akim@epita.fr>
17775
17776 * src/conflicts.c (print_reductions): Accept OUT as argument.
17777 Output to it, not to output_obstack.
17778 * src/print.c (print_actions): Adjust.
17779
17780 2001-11-12 Akim Demaille <akim@epita.fr>
17781
17782 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
17783 the result instead of using...
17784 (src_total, rrc_total, src_count, rrc_count): Remove.
17785 (any_conflicts): Remove.
17786 (print_conflicts): Split into...
17787 (conflicts_print, conflicts_output): New.
17788 * src/conflicts.h: Adjust.
17789 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
17790 * src/print.c (print_grammar): Issue `\n' between two rules.
17791 * tests/regression.at (Conflicts): New.
17792 Reported by Tom Lane.
17793
17794 2001-11-12 Akim Demaille <akim@epita.fr>
17795
17796 * tests/regression.at (Invalid input): Remove, duplicate with
17797 ``Invalid input: 1''.
17798
17799 2001-11-12 Akim Demaille <akim@epita.fr>
17800
17801 * tests/torture.at (AT_DATA_STACK_TORTURE)
17802 (Exploding the Stack Size with Alloca)
17803 (Exploding the Stack Size with Malloc): New.
17804
17805 2001-11-12 Akim Demaille <akim@epita.fr>
17806
17807 * src/bison.simple (YYSTACK_REALLOC): New.
17808 (yyparse) [!yyoverflow]: Use it and free the old stack.
17809 Reported by Per Allansson.
17810
17811 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
17812
17813 * src/bison.simple: Define type yystype instead of YYSTYPE, and
17814 define CPP macro, which substitute YYSTYPE by yystype.
17815 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
17816 with yyltype/YYLTYPE. This allows inclusion of the generated
17817 header within the parser if the compiler, such as GGC, accepts
17818 multiple equivalent #defines.
17819 From Akim.
17820
17821 2001-11-05 Akim Demaille <akim@epita.fr>
17822
17823 * src/reader.c (symbols_output): New, extracted from...
17824 (packsymbols): here.
17825 (reader): Adjust.
17826
17827 2001-11-05 Akim Demaille <akim@epita.fr>
17828
17829 * src/lex.c (parse_percent_token): s/quotearg/quote/.
17830
17831 2001-11-05 Akim Demaille <akim@epita.fr>
17832
17833 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
17834 pattern.
17835
17836 2001-11-05 Akim Demaille <akim@epita.fr>
17837
17838 * src/options.h (struct option_table_struct): set_flags is void*.
17839 * src/options.c (longopts): Support `--output' and `%output'.
17840 (usage): Adjust.
17841 * src/lex.h (tok_setopt): Remove, replaced with...
17842 (tok_intopt, tok_stropt): these new guys.
17843 * src/lex.c (getopt.h): Not needed.
17844 (token_buffer, unlexed_token_buffer): Not const.
17845 (percent_table): Promote `-' over `_' in directive names.
17846 Active `%name-prefix', `file-prefix', and `output'.
17847 (parse_percent_token): Accept possible arguments to directives.
17848 Promote `-' over `_' in directive names.
17849
17850 2001-11-04 Akim Demaille <akim@epita.fr>
17851
17852 * doc/bison.texinfo (Decl Summary): Split the list into
17853 `directives for grammars' and `directives for bison'.
17854 Sort'em.
17855 Add description of `%name-prefix', `file-prefix', and `output'.
17856 Promote `-' over `_' in directive names.
17857 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
17858 Simplify the description of `--name-prefix'.
17859 Promote `-' over `_' in directive names.
17860 Promote `--output' over `--output-file'.
17861 Fix the description of `--defines'.
17862 * tests/output.at: Exercise %file-prefix and %output.
17863
17864 2001-11-02 Akim Demaille <akim@epita.fr>
17865
17866 * doc/refcard.tex: Update.
17867
17868 2001-11-02 Akim Demaille <akim@epita.fr>
17869
17870 * src/symtab.h (SUNDEF): New.
17871 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
17872 stand for `uninitialized', instead of 0.
17873 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
17874 * src/lex.c (lex): Adjust.
17875
17876 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
17877 Number it 0.
17878 Let yylex return it instead of a plain 0.
17879 Reported by Dick Streefland.
17880
17881 2001-11-02 Akim Demaille <akim@epita.fr>
17882
17883 * tests/regression.at (Mixing %token styles): New test.
17884
17885 2001-11-02 Akim Demaille <akim@epita.fr>
17886
17887 * src/reader.c (parse_thong_decl): Formatting changes.
17888 (token_translations_init): New, extracted from...
17889 (packsymbols): Here.
17890 Adjust.
17891
17892 2001-11-01 Akim Demaille <akim@epita.fr>
17893
17894 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
17895 Check that `9foo.y' produces correct cpp guards.
17896 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
17897 guards.
17898 Reported by Wwp.
17899
17900 2001-11-01 Akim Demaille <akim@epita.fr>
17901
17902 * tests/regression.at (Invalid input: 2): New.
17903 * src/lex.c (unlexed_token_buffer): New.
17904 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
17905 too.
17906 Reported by Wwp.
17907
17908 2001-11-01 Akim Demaille <akim@epita.fr>
17909
17910 * tests/calc.at: Catch up with 1.30.
17911 * configure.in: Bump to 1.49a.
17912 Adjust to newer Autotest.
17913
17914 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
17915
17916 * src/conflicts.c: Move global variables rrc_total and src_total ...
17917 (print_conflicts): here.
17918 * src/output.c (output): Free global variable user_toknums.
17919 * src/lex.c (token_obstack): Become static.
17920
17921 2001-10-18 Akim Demaille <akim@epita.fr>
17922
17923 * tests/atlocal.in (GCC): Add.
17924 * tests/calc.at: s/m4_match/m4_bmatch/.
17925 s/m4_patsubst/m4_bpatsubst/.
17926 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
17927 * configure.in: AC_SUBST(GCC).
17928
17929 2001-10-14 Marc Autret <autret_m@epita.fr>
17930
17931 * src/options.c (create_long_option_table): Fix.
17932
17933 2001-10-10 Akim Demaille <akim@epita.fr>
17934
17935 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
17936
17937 2001-10-04 Akim Demaille <akim@epita.fr>
17938
17939 * src/reader.c (parse_union_decl): Push the caracters in
17940 union_obstack, not attrs_obstack.
17941
17942 2001-10-04 Akim Demaille <akim@epita.fr>
17943
17944 Merge in the branch 1.29.
17945
17946 * src/reader.c (packsymbols): Use a temporary obstack for
17947 `%%tokendef', since output_stack is already used elsewhere.
17948
17949 2001-10-02 Akim Demaille <akim@epita.fr>
17950
17951 Bump 1.29d.
17952
17953 2001-10-02 Akim Demaille <akim@epita.fr>
17954
17955 Version 1.29c.
17956
17957 2001-10-02 Akim Demaille <akim@epita.fr>
17958
17959 * tests/regression.at (Invalid CPP headers): New.
17960 From Alexander Belopolsky.
17961 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
17962
17963 2001-10-02 Akim Demaille <akim@epita.fr>
17964
17965 * tests/regression.at (Invalid input): New.
17966 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
17967 Reported by Shura.
17968
17969 2001-10-02 Akim Demaille <akim@epita.fr>
17970
17971 * tests/calc.at: Now that --debug works, the tests must be adjusted.
17972
17973 2001-10-02 Akim Demaille <akim@epita.fr>
17974
17975 * src/output.c (output_parser): Assert `skeleton'.
17976 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
17977 systems.
17978 From Shura.
17979
17980 2001-10-01 Marc Autret <autret_m@epita.fr>
17981
17982 * src/lex.h: Echo modifications.
17983 * src/lex.c (unlex): Parameter is now token_t.
17984 From Hans Aberg.
17985
17986 2001-10-01 Marc Autret <autret_m@epita.fr>
17987
17988 * src/main.c: Include lex.h.
17989 From Hans Aberg.
17990
17991 2001-09-29 Akim Demaille <akim@epita.fr>
17992
17993 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
17994
17995 2001-09-28 Akim Demaille <akim@epita.fr>
17996
17997 * tests/testsuite.at: Update to newer Autotest.
17998 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
17999
18000 2001-09-27 Akim Demaille <akim@epita.fr>
18001
18002 Position independent wrapper.
18003
18004 * tests/bison: Remove.
18005 * tests/bison.in: New.
18006 * configure.in: Adjust.
18007
18008 2001-09-27 Paul Eggert <eggert@twinsun.com>
18009
18010 Port quotearg fixes from tar 1.13.24.
18011
18012 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
18013 tm to be declared.
18014 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18015 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18016
18017 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
18018 * m4/mbrtowc.m4: New file.
18019 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
18020 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
18021
18022 2001-09-27 Akim Demaille <akim@epita.fr>
18023
18024 Bump to 1.29c.
18025
18026 2001-09-27 Akim Demaille <akim@epita.fr>
18027
18028 Version 1.29b.
18029
18030 2001-09-25 Akim Demaille <akim@epita.fr>
18031
18032 * src/system.h: Include `xalloc.h'.
18033 Remove it from the C files.
18034 * src/files.c (output_files): Free the obstacks.
18035 * src/lex.c (init_lex): Rename as...
18036 (lex_init): this.
18037 (lex_free): New.
18038 * src/main.c (main): Use it.
18039
18040 2001-09-24 Marc Autret <autret_m@epita.fr>
18041
18042 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
18043 to output informations in fout (FILE*).
18044 (open_graph, close_graph): Likewise.
18045 (output_graph, output_edge, output_node): Likewise.
18046 * src/vcg.h: Update function prototypes.
18047 * src/print_graph.c (print_graph): Open output graph file.
18048 (print_actions): Adjust.
18049 * src/files.h: Remove extern declaration.
18050 * src/files.c: Remove graph_obstack declaration.
18051 (open_files): Remove graph_obstack initialization.
18052 (output_files): Remove graph_obstack saving.
18053
18054 2001-09-24 Marc Autret <autret_m@epita.fr>
18055
18056 * src/files.c (compute_output_file_names): Fix.
18057
18058 2001-09-24 Marc Autret <autret_m@epita.fr>,
18059 Akim Demaille <akim@epita.fr>
18060
18061 * src/reader.c (reader): Remove call to free_symtab ().
18062 * src/main.c (main): Call it here.
18063 Include symtab.h.
18064 * src/conflicts.c (initialize_conflicts): Rename as...
18065 (solve_conflicts): this.
18066 * src/print.c (print_core, print_actions, print_state)
18067 (print_grammar): Dump to a file instead a `output_obstack'.
18068 (print_results): Dump `output_obstack', and then proceed with the
18069 FILE *.
18070 * src/files.c (compute_output_file_names, close_files): New.
18071 (output_files): Adjust.
18072 * src/main.c (main): Adjust.
18073
18074 2001-09-23 Marc Autret <autret_m@epita.fr>
18075
18076 * src/files.c (compute_header_macro): Computes header macro name
18077 from spec_defines_file when given.
18078
18079 2001-09-23 Marc Autret <autret_m@epita.fr>
18080
18081 * src/files.c (output_files): Add default extensions.
18082
18083 2001-09-22 Akim Demaille <akim@epita.fr>
18084
18085 * src/conflicts.c (finalize_conflicts): Rename as...
18086 (free_conflicts): this.
18087
18088 2001-09-22 Akim Demaille <akim@epita.fr>
18089
18090 * src/gram.c (gram_free): Rename back as...
18091 (dummy): this.
18092 (output_token_translations): Free `token_translations'.
18093 * src/symtab.c (free_symtab): Free the tag field.
18094
18095 2001-09-22 Akim Demaille <akim@epita.fr>
18096
18097 Remove `translations' as it is always set to true.
18098
18099 * src/gram.h: Adjust.
18100 * src/reader.c (packsymbols, parse_token_decl): Adjust
18101 * src/print.c (print_grammar): Adjust.
18102 * src/output.c (output_token_translations): Adjust.
18103 * src/lex.c (lex): Adjust.
18104 * src/gram.c: Be sure the set pointers to NULL.
18105 (dummy): Rename as...
18106 (gram_free): this.
18107
18108 2001-09-22 Akim Demaille <akim@epita.fr>
18109
18110 * configure.in: Invoke AM_LIB_DMALLOC.
18111 * src/system.h: Use dmalloc.
18112 * src/LR0.c: Be sure to have pointers initialized to NULL.
18113 (allocate_itemsets): Allocate kernel_items only if needed.
18114
18115 2001-09-22 Akim Demaille <akim@epita.fr>
18116
18117 * configure.in: Bump to 1.29b.
18118 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18119 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18120 need xmalloc.c in calc.y.
18121 From Pascal Bart.
18122
18123 2001-09-21 Akim Demaille <akim@epita.fr>
18124
18125 Version 1.29a.
18126 * Makefile.maint, config/config.guess, config/config.sub,
18127 * config/missing: Update from masters.
18128 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18129 upon package.m4.
18130 * configure.in (ALL_LINGUAS): Add `tr'.
18131
18132 2001-09-21 Akim Demaille <akim@epita.fr>
18133
18134 * tests/Makefile.am (package.m4): Move to...
18135 ($(srcdir)/$(TESTSUITE)): here.
18136
18137 2001-09-20 Akim Demaille <akim@epita.fr>
18138
18139 * src/complain.c: No longer try to be standalone: use system.h.
18140 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18141 * src/complain.h: Likewise.
18142 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18143 Remove the unused variable `n'.
18144 From Albert Chin-A-Young.
18145
18146 2001-09-18 Marc Autret <autret_m@epita.fr>
18147
18148 * doc/bison.1: Update.
18149 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18150 descriptions.
18151 (Option Cross Key): Update.
18152 Add --graph.
18153
18154 2001-09-18 Marc Autret <autret_m@epita.fr>
18155
18156 * tests/regression.at: New test (comment in %union).
18157
18158 2001-09-18 Marc Autret <autret_m@epita.fr>
18159
18160 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18161 do that.
18162 Reported by Keith Browne.
18163
18164 2001-09-18 Marc Autret <autret_m@epita.fr>
18165
18166 * tests/output.at: Add tests for --defines and --graph.
18167
18168 2001-09-18 Marc Autret <autret_m@epita.fr>
18169
18170 * tests/output.at: Removes tests of %{header,src}_extension features.
18171
18172 2001-09-18 Akim Demaille <akim@epita.fr>
18173
18174 * tests/Makefile.am (package.m4): New.
18175 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18176 (_AT_CHECK_CALC_ERROR): Likewise.
18177 Factor the `, ' part of verbose error messages.
18178
18179 2001-09-18 Marc Autret <autret_m@epita.fr>
18180
18181 * src/getargs.c (longopts): Declare --defines and --graph as options
18182 with optional arguments.
18183 * src/files.h: Add extern declarations.
18184 * src/files.c (spec_graph_file, spec_defines_file): New.
18185 (output_files): Update.
18186 Remove CPP-outed code.
18187
18188 2001-09-18 Marc Autret <autret_m@epita.fr>
18189
18190 Turn off %{source,header}_extension feature.
18191
18192 * src/files.c (compute_exts_from_gf): Update.
18193 (compute_exts_from_src): Update.
18194 (output_files): CPP-out useless code.
18195 * src/files.h: Remove {header,source}_extension extern declarations.
18196 * src/reader.c (parse_dquoted_param): CPP-out.
18197 (parse_header_extension_decl): Remove.
18198 (parse_source_extension_decl): Remove.
18199 (read_declarations): Remove cases tok_{hdrext,srcext}.
18200 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18201 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18202
18203 2001-09-10 Akim Demaille <akim@epita.fr>
18204
18205 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18206 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18207 (AT_CHECK_OUTPUT): this.
18208 Merely check ls' exit status, its output is useless.
18209
18210 2001-09-10 Akim Demaille <akim@epita.fr>
18211
18212 * tests/calc.at: Use m4_match.
18213 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18214
18215 2001-09-10 Marc Autret <autret_m@epita.fr>,
18216 Akim Demaille <akim@epita.fr>
18217
18218 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18219 enum color_e.
18220 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18221 to `normal'.
18222 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18223 * src/lex.h: Adjust prototype.
18224 (token_t): Add `tok_undef'.
18225 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18226 (parse_percent_token): Now returns token_t.
18227 Add default statement in switch.
18228 (lex): Separate `c' as an input variable, from the token_t result
18229 part.
18230 (unlexed): Is a token_t.
18231
18232 2001-09-10 Akim Demaille <akim@epita.fr>
18233
18234 * configure.in: Bump to 1.29a.
18235
18236 2001-09-07 Akim Demaille <akim@epita.fr>
18237
18238 Version 1.29.
18239
18240 2001-08-30 Akim Demaille <akim@epita.fr>
18241
18242 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18243 * m4/atconfig.m4: Remove.
18244 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18245 * tests/bison: New.
18246 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18247 m4_if, m4_patsubst, and m4_regexp.
18248 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18249 `input' file instead of echo.
18250
18251 2001-08-29 Akim Demaille <akim@epita.fr>
18252
18253 Bump to 1.28e.
18254
18255 2001-08-29 Akim Demaille <akim@epita.fr>
18256
18257 Version 1.28d.
18258
18259 2001-08-29 Paul Eggert <eggert@twinsun.com>
18260
18261 * src/bison.simple (yyparse): Don't take the address of an
18262 item before the start of an array, as that doesn't conform to
18263 the C Standard.
18264
18265 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18266
18267 * doc/bison.texinfo (Location Tracking Calc): New node.
18268
18269 2001-08-29 Paul Eggert <eggert@twinsun.com>
18270
18271 * src/output.c (output): Do not define const, as this now
18272 causes more problems than it cures.
18273
18274 2001-08-29 Akim Demaille <akim@epita.fr>
18275
18276 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18277 the nodes.
18278 Be sure to tag the `detailmenu'.
18279
18280 2001-08-29 Akim Demaille <akim@epita.fr>
18281
18282 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18283 download in a tmp dir.
18284
18285 2001-08-28 Marc Autret <autret_m@epita.fr>
18286
18287 * config/depcomp: New file.
18288
18289 2001-08-28 Marc Autret <autret_m@epita.fr>
18290
18291 * doc/bison.1 (mandoc): Adjust.
18292 From Juan Manuel Guerrero.
18293
18294 2001-08-28 Marc Autret <autret_m@epita.fr>
18295
18296 * src/print_graph.c (print_state): Fix.
18297
18298 2001-08-27 Marc Autret <autret_m@epita.fr>
18299
18300 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18301 char * members.
18302 Echo modifications to the functions prototypes.
18303 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18304
18305 2001-08-27 Marc Autret <autret_m@epita.fr>
18306
18307 * src/vcg.c: Include `xalloc.h'.
18308 (add_colorentry): New.
18309 (add_classname): New.
18310 (add_infoname): New.
18311 * src/vcg.h: Add new prototypes.
18312
18313 2001-08-27 Akim Demaille <akim@epita.fr>
18314
18315 * Makefile.maint: Sync. again with CVS Autoconf.
18316
18317 2001-08-27 Akim Demaille <akim@epita.fr>
18318
18319 * Makefile.maint: Formatting changes.
18320 (po-update, cvs-update, update): New targets.
18321 (AMTAR): Remove.
18322
18323 2001-08-27 Akim Demaille <akim@epita.fr>
18324
18325 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18326 * Makefile.maint: Sync. with CVS Autoconf.
18327
18328 2001-08-27 Marc Autret <autret_m@epita.fr>
18329
18330 * src/vcg.h (struct infoname_s): New.
18331 (struct colorentry_s): New.
18332 (graph_s): New fields {vertical,horizontal}_order in structure.
18333 Add `infoname' field.
18334 Add `colorentry' field;
18335 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18336 (G_HORIZONTAL_ORDER): New.
18337 (G_INFONAME): New.
18338 (G_COLORENTRY): New.
18339 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18340 Add output of `infoname'.
18341 Add output of `colorentry'.
18342
18343 2001-08-27 Marc Autret <autret_m@epita.fr>
18344
18345 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18346 This one shadowed a global parameter.
18347
18348 2001-08-24 Marc Autret <autret_m@epita.fr>
18349
18350 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18351 instead of `unsigned'.
18352 (print_state): Do not call obstack_object_size () in obstack_grow ()
18353 to avoid macro variables shadowing.
18354
18355 2001-08-23 Marc Autret <autret_m@epita.fr>
18356
18357 * src/lex.c (percent_table): Typo: s/naem/name/.
18358 Add graph option.
18359 Normalize new options declarations.
18360
18361 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18362
18363 * tests/suite.at: Exercise %header_extension and %source_extension.
18364
18365 2001-08-16 Marc Autret <autret_m@epita.fr>
18366
18367 * src/reader.c (parse_dquoted_param): New.
18368 (parse_header_extension_decl): Use it.
18369 (parse_source_extension_decl): Likewise.
18370
18371 2001-08-16 Marc Autret <autret_m@epita.fr>
18372
18373 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18374 (get_xxxx_str): Use assert () instead of complain ().
18375 Remove return invokations in default cases.
18376 (get_decision_str): Modify default behaviour. Remove second argument.
18377 Echo modifications on calls.
18378 (output_graph): Fix.
18379
18380 2001-08-16 Marc Autret <autret_m@epita.fr>
18381
18382 * src/getargs.c (usage): Update with ``-g, --graph''.
18383
18384 2001-08-16 Marc Autret <autret_m@epita.fr>
18385
18386 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18387 (Option Cross Key): Likewise.
18388 * doc/bison.1: Update.
18389
18390 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
18391
18392 * src/output.c (output_master_parser): Don't finish action_obstack.
18393 (output_parser): Don't care about the muscle action, here.
18394 (prepare): Copy the action_obstack in the action muscle.
18395 (output): Free action_obstack.
18396
18397 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18398
18399 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18400 will contain `%union' declaration.
18401 (parse_union_decl): Delete #line directive output.
18402 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18403 informations about %union.
18404 (parse_union_decl): Copy the union_obstack in the muscle stype.
18405 * src/bison.simple: Add new #line directive.
18406 Add typdef %%stype YYSTYPE.
18407
18408 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18409
18410 * src/bison.simple: Add new `#line' directive.
18411
18412 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
18413
18414 * src/bison.simple: New `#line' directive.
18415 * src/output.c (output_parser): Support new dynamic muscle input_line.
18416
18417 2001-09-22 Marc Autret <autret_m@epita.fr>
18418
18419 * src/output.c (output_master_parser): New.
18420 (output_parser): Be more re-entrant.
18421
18422 2001-09-21 Marc Autret <autret_m@epita.fr>
18423
18424 * src/reader.c (copy_definition, parse_union_decl): Update and use
18425 `linef' muscle.
18426 (copy_action): Likewise.
18427 Use obstack_1grow ().
18428 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18429
18430 2001-09-21 Marc Autret <autret_m@epita.fr>
18431
18432 * src/options.c (option_table): Adjust.
18433 * src/lex.c (parse_percent_token): Fix.
18434
18435 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18436
18437 * src/options.c (symtab.h): Include it, need by lex.h.
18438
18439 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18440
18441 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18442 is now an option_table_struct*.
18443 (option_strcmp): New function option_strcmp.
18444 (parse_percent_token): Call option_strcmp.
18445 * src/getargs.c (xalloc.h, options.h): Include it.
18446 (getargs): Call create_long_option_table.
18447 (getargs): Free longopts at the end of the function.
18448 (shortopts): Move in options.c.
18449 * src/options.c (create_long_option_table): New function. Convert
18450 information from option_table to option structure.
18451 * src/reader.c (options.h): Include it.
18452
18453 * src/Makefile.am: Adjust.
18454 * src/options.c (option_table): Create from longopts and percent_table.
18455 * src/getargs.c (longopts): Delete.
18456 * src/lex.c (struct percent_table_struct): Delete.
18457 (percent_table): Delete.
18458 (options.h): Include it.
18459 * src/options.c: Create.
18460 * src/options.h: Create.
18461 Declare enum opt_access_e.
18462 Define struct option_table_struct.
18463
18464 2001-09-20 Marc Autret <autret_m@epita.fr>
18465
18466 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18467 sections of Bison.
18468
18469 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
18470
18471 * src/bison.simple: s/%%filename/%%skeleton.
18472 * src/muscle_tab.c (getargs.h): Include it.
18473 (muscle_init): Insert new muscle skeleton.
18474
18475 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
18476
18477 * src/output.c (output_parser): Delete unused variable actions_dumped.
18478
18479 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
18480
18481 * src/output.c (output): Delete call to reader_output_yylsp.
18482 * src/reader.c (reader): Likewise.
18483 * src/reader.h: Delete declaration of reader_output_yylsp.
18484
18485 2001-09-02 Marc Autret <autret_m@epita.fr>
18486
18487 * src/reader.c: Include muscle_tab.h.
18488 (parse_union_decl): Update.
18489 (parse_macro_decl): Rename parse_muscle_decl.
18490 Update to use renamed functions and variable.
18491 (read_declarations, copy_action, read_additionnal_code, : Updated
18492 with correct variables and functions names.
18493 (packsymbols, reader): Likewise.
18494
18495 * src/reader.h (muscle_obstack): Extern declaration update.
18496
18497 * src/output.c: Include muscle_tab.h
18498 In all functions using macro_insert, change by using muscle_insert ().
18499 (macro_obstack): Rename muscle_obstack.
18500 Echo modifications in the whole file.
18501 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
18502 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
18503 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
18504
18505 * src/muscle_tab.h: Update double inclusion macros.
18506 (macro_entry_s): Rename muscle_entry_s.
18507 Update prototypes.
18508
18509 * src/muscle_tab.c: Include muscle_tab.h.
18510 Rename macro_tabble to muscle_table.
18511 (mhash1, mhash2, mcmp): Use muscle_entry.
18512 (macro_init): Rename muscle_init. Update.
18513 (macro_insert): Rename muscle_insert. Update.
18514 (macro_find): Rename muscle_find. Update.
18515
18516 * src/main.c: Include muscle_tab.h.
18517 (main): Call muscle_init ().
18518 * src/Makefile.am (bison_SOURCES): Echo modifications.
18519
18520 2001-09-02 Marc Autret <autret_m@epita.fr>
18521
18522 Now the files macro_tab.[ch] are named muscle_tab.[ch].
18523
18524 * src/muscle_tab.c, src/muscle_tab.h: Add files.
18525
18526 2001-09-02 Marc Autret <autret_m@epita.fr>
18527
18528 * src/macrotab.c, src/macrotab.h: Remove.
18529
18530 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
18531
18532 * src/reader.c (copy_guard): Use muscle to specify the `#line'
18533 filename.
18534
18535 2001-09-01 Marc Autret <autret_m@epita.fr>
18536
18537 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
18538 to an explicit value to activate the feature. We do it here.
18539
18540 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18541
18542 * src/output.c (prepare): Delete the `filename' muscule insertion.
18543 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
18544 (parse_union_decl): Likewise.
18545 * src/macrotab.c (macro_init): Initialize filename by infile.
18546
18547 2001-08-31 Marc Autret <autret_m@epita.fr>
18548
18549 * src/bison.simple (YYLSP_NEEDED): New definition.
18550 * src/output.c (prepare): Add macro insertion of `locations_flag'
18551
18552 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18553
18554 * src/output.c (prepare): Delete insertion of previous muscles,
18555 and insert the `prefix' muscles.
18556 * src/macrotab.c (macro_init): Likewise.
18557 (macro_init): Initialization prefix directive by `yy'.
18558 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
18559 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
18560 yylval, yydebug, yyerror, yynerrs and yyparse.
18561 New directive `#define' to substitute yydebug, ... with option
18562 name_prefix.
18563
18564 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18565
18566 * src/main.c (main): Standardize.
18567 * src/output.c (output_table_data, output_parser): Likewise.
18568 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
18569
18570 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr >
18571
18572 * src/reader.c (read_additionnal_code): Rename %%user_code to
18573 %%epilogue.
18574 * src/output.c (output): Rename %%declarations to %%prologue.
18575 * src/bison.simple: Echo modifications.
18576
18577 2001-08-31 Marc Autret <autret_m@epita.fr>
18578
18579 * src/reader.c (readgram): CleanUp.
18580 (output_token_defines): Likewise.
18581 (packsymbols): Likewise.
18582 (reader): Likewise.
18583 * src/output.c (output): CPP-out useless code.
18584
18585 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18586
18587 * src/reader.c (reader): Delete obsolete call to function
18588 output_trailers and output_headers.
18589 * src/output.h: Remove obsolete functions prototypes of output_headers
18590 and output_trailers.
18591
18592 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
18593
18594 * src/main.c: Include macrotab.h.
18595 * src/macrotab.h (macro_entry_s): Constify fields.
18596 Adjust functions prototypes.
18597 * src/macrotab.c (macro_insert): Constify key and value.
18598 (macro_find): Constify key.
18599 (macro_insert): Include 'xalloc.h'
18600 (macro_insert): Use XMALLOC.
18601 (macro_find): Constify return value.
18602 * src/output.c (output_table_data): Rename table to table_data.
18603 (output_parser): Constify macro_key, macro_value.
18604
18605 2001-08-30 Marc Autret <autret_m@epita.fr>
18606
18607 * src/reader.c (parse_skel_decl): New.
18608 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
18609 * src/lex.h (token_t): New token `tok_skel'.
18610 * src/lex.c (percent_table): Add skeleton option entry.
18611 Standardize.
18612
18613 2001-08-29 Marc Autret <autret_m@epita.fr>
18614
18615 * src/bison.simple: Add %%user_code directive at the end.
18616 * src/reader.c (read_additionnal_code): New.
18617 (reader): Use it.
18618 * src/output.c (output_program): Remove.
18619 (output): Update.
18620
18621 2001-08-28 Marc Autret <autret_m@epita.fr>
18622
18623 * src/output.c (output_actions): Clean up.
18624 (output_gram): CPP-out useless code.
18625 * src/reader.c (reader): Clean up, CPP-out useless code.
18626
18627 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
18628
18629 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
18630 directive.
18631 * src/bison.simple: Add `%%definitions'.
18632
18633 2001-08-28 Marc Autret <autret_m@epita.fr>
18634
18635 * config/depcomp: New file.
18636
18637 2001-08-27 Paul Eggert <eggert@twinsun.com>
18638
18639 * src/bison.simple (yyparse): Don't take the address of an
18640 item before the start of an array, as that doesn't conform to
18641 the C Standard.
18642
18643 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
18644
18645 * src/output.c (output): Remove the initialization of the macro
18646 obstack. It was done too late here.
18647
18648 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
18649 completely wrong.
18650 (reader): Initialize the macro obstack here, since we need it to grow
18651 '%define' directives.
18652
18653 * src/reader.h: Declare the macro obstack as extern.
18654
18655 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
18656
18657 * src/output.c (output_parser): Fix. Store single '%' characters in
18658 the output obstack instead of throwing them away.
18659
18660 2001-08-27 Akim Demaille <akim@epita.fr>
18661
18662 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18663
18664 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18665
18666 * lib/Makefile.am: Adjust.
18667
18668 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18669
18670 * src/bison.simple: Update and add '%%' directives.
18671
18672 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18673
18674 * src/reader.c (reader): Remove calls to 'output_headers' and
18675 'output_trailers'. Remove some C output.
18676 (readgram): Disable a piece of code that was writing a default
18677 definition for 'YYSTYPE'.
18678 (reader_output_yylsp): Remove.
18679 (packsymbols): Output token defintions to a macro.
18680 (copy_definition): Disable C output.
18681
18682 * src/reader.c (parse_macro_decl): New function used to parse macro
18683 declarations.
18684 (copy_string2): Put the body of copy_string into this new function.
18685 Add a parameter to let the caller choose whether he wants to copy the
18686 string delimiters or not.
18687 (copy_string): Be a simple call to copy_string2 with the last argument
18688 bound to true.
18689 (read_declarations): Add case for macro definition.
18690 (copy_identifier): New.
18691 (parse_macro_decl): Read macro identifiers using copy_identifier
18692 rather than lex.
18693
18694 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18695
18696 * src/output.c (prepare): Add prefixed names.
18697 (output_parser): Output semantic actions.
18698 (output_parser): Fix bug on '%%line' directives.
18699
18700 * src/output.c (output_headers): Remove. The C code printed by this
18701 function should now be in the skeletons.
18702 (output_trailers): Remove.
18703 (output): Disable call to 'reader_output_yylsp'.
18704 (output_rule_data): Do not output tables to the table obstack.
18705
18706 * src/output.c: Remove some C dedicated output.
18707 Improve the use of macro and output obstacks.
18708 (output_defines): Remove.
18709
18710 * src/output.c (output_token_translations): Associate 'translate'
18711 table with a macro. No output to the table obstack.
18712 (output_gram): Same for 'rhs' and 'prhs'.
18713 (output_stos): Same for 'stos'.
18714 (output_rule_data): Same for 'r1' and 'r2'.
18715 (token_actions): Same for 'defact'.
18716 (goto_actions): Same for 'defgoto'.
18717 (output_base): Same for 'pact' and 'pgoto'.
18718 (output_table): Same for 'table'.
18719 (output_check): Same for 'check'.
18720
18721 * src/output.c (output_table_data): New function.
18722 (output_short_table): Remove.
18723 (output_short_or_char_table): Remove.
18724
18725 * src/output.c (output_parser): Replace most of the skeleton copy code
18726 with something new. Skeletons are now processed character by character
18727 rather than line by line, and Bison looks for '%%' macros. This is the
18728 first step in making Bison's output process (a lot) more flexible.
18729 (output_parser): Use the macro table.
18730
18731 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18732
18733 * src/main.c (main): Initialize the macro table.
18734
18735 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18736
18737 * src/lex.c (percent_table): Add tok_define.
18738 * src/lex.h: Add tok_define.
18739
18740 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18741
18742 * src/macrotab.c: New file.
18743 * src/macrotab.h: New file.
18744 * src/Makefile.am: Update.
18745
18746 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
18747
18748 * lib/hash.c: New file.
18749 * lib/hash.h: New file.
18750 * lib/Makefile.am: Update.
18751
18752 2001-08-15 Akim Demaille <akim@epita.fr>
18753
18754 Version 1.28c.
18755
18756 2001-08-15 Marc Autret <autret_m@epita.fr>
18757
18758 * src/reader.c (readgram): Indent output macro YYSTYPE.
18759 (packsymbols): Likewise.
18760 (output_token_defines): Likewise.
18761 * src/files.c: Standardize.
18762 (compute_header_macro): New.
18763 (defines_obstack_save): New. Use compute_header_macro.
18764 (output_files): Update. Use defines_obstack_save.
18765
18766 2001-08-15 Akim Demaille <akim@epita.fr>
18767
18768 * doc/bison.texinfo (Table of Symbols): Document
18769 YYSTACK_USE_ALLOCA.
18770
18771 2001-08-15 Akim Demaille <akim@epita.fr>
18772
18773 * missing: Update from CVS Automake.
18774 * config/config.guess, config/config.sub, config/texinfo.tex:
18775 Update from gnu.org.
18776
18777 2001-08-15 Akim Demaille <akim@epita.fr>
18778
18779 * Makefile.maint: Sync with CVS Autoconf.
18780
18781 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
18782
18783 * doc/bison.texinfo: Include GNU Free Documentation License from
18784 `fdl.texi'.
18785 * doc/fdl.texi: Add to package.
18786
18787 2001-08-14 Marc Autret <autret_m@epita.fr>
18788
18789 Turn on %{source,header}_extension features.
18790
18791 * src/lex.c (percent_table): Un-CPP out header_extension and
18792 source_extension.
18793 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
18794 (compute_exts_from_src): Remove conditions. It restores priorities
18795 between options.
18796
18797 2001-08-14 Marc Autret <autret_m@epita.fr>
18798
18799 * src/files.c (compute_base_names): Add extensions computing when
18800 `--file-prefix' used.
18801 Standardize function calls.
18802
18803 2001-08-13 Marc Autret <autret_m@epita.fr>
18804
18805 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
18806 defining it (defined but null disables alloca).
18807
18808 2001-08-13 Marc Autret <autret_m@epita.fr>
18809
18810 * src/bison.simple (_yy_memcpy): CPP reformat.
18811
18812 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
18813
18814 * tests/atconfig.in (CPPFLAGS): Fix.
18815
18816 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
18817
18818 * doc/bison.texinfo: Include GNU General Public License from
18819 `gpl.texi'.
18820 * doc/gpl.texi: Add to package.
18821
18822 2001-08-10 Marc Autret <autret_m@epita.fr>
18823
18824 * src/print_graph.h: Fix.
18825 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
18826
18827 2001-08-10 Akim Demaille <akim@epita.fr>
18828
18829 * src/system.h: Provide default declarations for stpcpy, strndup,
18830 and strnlen.
18831
18832 2001-08-10 Robert Anisko <anisko_r@epita.fr>
18833
18834 * doc/bison.texinfo (Locations): Update @$ stuff.
18835
18836 2001-08-09 Robert Anisko <anisko_r@epita.fr>
18837
18838 * src/bison.simple (YYLLOC_DEFAULT): Update.
18839 (yyparse): Adjust.
18840
18841 2001-08-08 Marc Autret <autret_m@epita.fr>
18842
18843 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
18844 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
18845 Reported by Fabrice Bauzac.
18846
18847 2001-08-08 Marc Autret <autret_m@epita.fr>
18848
18849 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
18850 * src/vcg.c (output_node): Fix.
18851 * src/vcg.h: Cleanup.
18852 * src/print_graph.c: Add comments.
18853 (node_output_size): New global variable. Simplify the formatting of
18854 the VCG graph output.
18855 (print_actions): Unused code is now used. It notifies the final state
18856 and no action states in the VCG graph. It also give the reduce actions.
18857 The `shift and goto' edges are red and the `go to state' edges are
18858 blue.
18859 Get the current node name and node_obstack by argument.
18860 (node_obstack): New variable.
18861 (print_state): Manage node_obstack.
18862 (print_core): Use node_obstack given by argument.
18863 A node is not only computed here but in print_actions also.
18864 (print_graph): CPP out useless code instead of commenting it.
18865
18866 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
18867
18868 * tests/atconfig.in (CPPFLAGS): Fix.
18869
18870 2001-08-07 Akim Demaille <akim@epita.fr>
18871
18872 * src/print_graph.c (quote): New.
18873 (print_core): Use it.
18874
18875 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
18876
18877 * src/vcg.c (complain.h): Include it.
18878 Unepitaize `return' invocations.
18879 [NDEBUG] (main): Remove.
18880 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
18881 * src/files.c (open_files): Initialize graph_obstack.
18882 * src/print_graph.c (print_actions): CPP out useless code.
18883 (print_core): Don't output the last `\n' in labels.
18884 Use `quote'.
18885 * src/files.c (output_files): Output the VCG file.
18886 * src/main.c (main): Invoke print_graph ();
18887
18888 2001-08-06 Marc Autret <autret_m@epita.fr>
18889
18890 Automaton VCG graph output.
18891 Using option ``-g'' or long option ``--graph'', you can generate
18892 a gram_filename.vcg file containing a VCG description of the LALR (1)
18893 automaton of your grammar.
18894
18895 * src/main.c: Call to print_graph() function.
18896 * src/getargs.h: Update.
18897 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
18898 (graph_flag): New flag.
18899 (longopts): Update.
18900 (getargs): Add case `g'.
18901 * src/files.c (graph_obstack): New obstack struct.
18902 (open_files): Initialize new obstack.
18903 (output_files): Saves graph_obstack if required.
18904 * src/files.h (graph_obstack): New extern declaration.
18905 * src/Makefile.am: Add new source files.
18906
18907 2001-08-06 Marc Autret <autret_m@epita.fr>
18908
18909 * src/print_graph.c, src/print_graph.h (graph): New.
18910 * src/vcg.h: New file.
18911 * src/vcg.c: New file, VCG graph handling.
18912
18913 2001-08-06 Marc Autret <autret_m@epita.fr>
18914
18915 Add of %source_extension and %header_extension which specify
18916 the source or/and the header output file extension.
18917
18918 * src/files.c (compute_base_names): Remove initialisation of
18919 src_extension and header_extension.
18920 (compute_exts_from_gf): Update.
18921 (compute_exts_from_src): Update.
18922 (output_files): Update.
18923 * src/reader.c (parse_header_extension_decl): New.
18924 (parse_source_extension_decl): New.
18925 (read_declarations): New case statements for the new tokens.
18926 * src/lex.c (percent_table): Add entries for %source_extension
18927 and %header_extension.
18928 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
18929
18930 2001-08-06 Marc Autret <autret_m@epita.fr>
18931
18932 * configure.in: Bump to 1.28c.
18933 * doc/bison.texinfo: Texinfo thingies.
18934
18935 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
18936
18937 * tests/atconfig.in (CPPFLAGS): Add.
18938 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
18939
18940 2001-08-03 Akim Demaille <akim@epita.fr>
18941
18942 Version 1.28b.
18943
18944 2001-08-03 Akim Demaille <akim@epita.fr>
18945
18946 * tests/Makefile.am (check-local): Ship testsuite.
18947 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
18948 Include `string.h'.
18949
18950 2001-08-03 Akim Demaille <akim@epita.fr>
18951
18952 * configure.in: Try using -Wformat when compiling.
18953
18954 2001-08-03 Akim Demaille <akim@epita.fr>
18955
18956 * configure.in: Bump to 1.28b.
18957
18958 2001-08-03 Akim Demaille <akim@epita.fr>
18959
18960 * src/complain.c: Adjust strerror_r portability issues.
18961
18962 2001-08-03 Akim Demaille <akim@epita.fr>
18963
18964 Version 1.28a.
18965
18966 2001-08-03 Akim Demaille <akim@epita.fr>
18967
18968 * src/getargs.c, src/getarg.h (skeleton)): Constify.
18969 * src/lex.c (literalchar): Avoid name clashes on `buf'.
18970 * src/getargs.c: Include complain.h.
18971 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
18972 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
18973
18974 2001-08-03 Akim Demaille <akim@epita.fr>
18975
18976 * src/reader.c (readgram): Display hidden chars in error messages.
18977
18978 2001-08-03 Akim Demaille <akim@epita.fr>
18979
18980 Update to gettext 0.10.39.
18981
18982 2001-08-03 Akim Demaille <akim@epita.fr>
18983
18984 * lib/strspn.c: New.
18985
18986 2001-08-01 Marc Autret <autret_m@epita.fr>
18987
18988 * doc/bison.texinfo: Update.
18989 * doc/bison.1 (mandoc): Update.
18990 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
18991 * src/files.c: Support output files extensions computing.
18992 (src_extension): New static variable.
18993 (header_extension): New static variable.
18994 (tr): New function.
18995 (get_extension_index): New function, gets the index of an extension
18996 filename in a string.
18997 (compute_exts_from_gf): New function, computes extensions from the
18998 grammar file extension.
18999 (compute_exts_from_src): New functions, computes extensions from the
19000 C source file extension, file given by ``-o'' option.
19001 (compute_base_names): Update.
19002 (output_files): Update.
19003
19004 2001-08-01 Robert Anisko <anisko_r@epita.fr>
19005
19006 * doc/bison.texi: Document @$.
19007 (Locations): New section.
19008
19009 2001-07-18 Akim Demaille <akim@epita.fr>
19010
19011 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
19012 * config/prev-version.txt, config/move-if-change: New.
19013 * Makefile.am: Adjust.
19014
19015 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
19016
19017 * src/bison.simple (yyparse): Suppress warning `comparaison
19018 between signed and unsigned'.
19019
19020 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
19021
19022 * src/getargs.h (raw_flag): Remove.
19023 * src/getargs.c: Die on `-r'/`--raw'.
19024 * src/lex.c (parse_percent_token): Die on `%raw'.
19025 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
19026 * tests/calc.at: Suppress test with option `--raw'.
19027
19028 2001-07-14 Akim Demaille <akim@epita.fr>
19029
19030 * config/: New.
19031 * configure.in: Require Autoconf 2.50.
19032 Update to gettext 0.10.38.
19033
19034 2001-03-16 Akim Demaille <akim@epita.fr>
19035
19036 * doc/bison.texinfo: ANSIfy the examples.
19037
19038 2001-03-16 Akim Demaille <akim@epita.fr>
19039
19040 * getargs.c (skeleton): New variable.
19041 (longopts): --skeleton is a new option.
19042 (shortopts, getargs): -S is a new option.
19043 * getargs.h: Declare skeleton.
19044 * output.c (output_parser): Use it.
19045
19046 2001-03-16 Akim Demaille <akim@epita.fr>
19047
19048 * m4/strerror_r.m4: New.
19049 * m4/error.m4: Run AC_FUNC_STRERROR_R.
19050 * lib/error.h, lib/error.c: Update.
19051
19052 2001-03-16 Akim Demaille <akim@epita.fr>
19053
19054 * src/getargs.c (longopts): Clean up.
19055
19056 2001-02-21 Akim Demaille <akim@epita.fr>
19057
19058 * src/reader.c (gensym): `gensym_count' is your own.
19059 Use a static buf to create the symbol name, as token_buffer is no
19060 longer a buffer.
19061
19062 2001-02-08 Akim Demaille <akim@epita.fr>
19063
19064 * src/conflicts.c (conflict_report): Be sure not to append to res
19065 between two calls, which could happen if both first sprintf were
19066 skipped, but not the first cp += strlen.
19067
19068 2001-02-08 Akim Demaille <akim@epita.fr>
19069
19070 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
19071 New, from fileutils 4.0.37.
19072 * configure.in: Require Autoconf 2.49c. I took some time before
19073 making this decision. This is the only way out for portability
19074 issues in Bison, it would mean way too much duplicate effort to
19075 import in Bison features implemented in 2.49c since 2.13.
19076 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
19077
19078 2001-02-02 Akim Demaille <akim@epita.fr>
19079
19080 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
19081 * lib/xalloc.h, lib/xmalloc.c: Update.
19082
19083 2001-01-19 Akim Demaille <akim@epita.fr>
19084
19085 Get rid of the ad hoc handling of token_buffer in the scanner: use
19086 the obstacks.
19087
19088 * src/lex.c (token_obstack): New.
19089 (init_lex): Initialize it. No longer call...
19090 (grow_token_buffer): this. Remove it.
19091 Adjust all the places which used it to use the obstack.
19092
19093 2001-01-19 Akim Demaille <akim@epita.fr>
19094
19095 * src/lex.h: Rename all the tokens:
19096 s/\bENDFILE\b/tok_eof/g;
19097 s/\bIDENTIFIER\b/tok_identifier/g;
19098 etc.
19099 Let them be enums, not #define, to ease debugging.
19100 Adjust all the code.
19101
19102 2001-01-18 Akim Demaille <akim@epita.fr>
19103
19104 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19105 * src/lex.c (maxtoken, grow_token_buffer): Static.
19106
19107 2001-01-18 Akim Demaille <akim@epita.fr>
19108
19109 Since we now use obstacks, more % directives can be enabled.
19110
19111 * src/lex.c (percent_table): Also accept `%yacc',
19112 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19113 `%debug'.
19114 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19115 instead of returning a token.
19116 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19117 * src/reader.c (read_declarations): Adjust.
19118 * src/files.c (open_files): Don't call `compute_base_names', don't
19119 compute `attrsfile' since they depend upon data which might be
19120 *in* the input file now.
19121 (output_files): Do it here.
19122 * src/output.c (output_headers): Document the fact that this patch
19123 introduces a guaranteed SEGV for semantic parsers.
19124 * doc/bison.texinfo: Document them.
19125 * tests/suite.at: Exercise these %options.
19126
19127 2000-12-20 Akim Demaille <akim@epita.fr>
19128
19129 Also handle the output file (--verbose) with obstacks.
19130
19131 * files.c (foutput): Remove.
19132 (output_obstack): New.
19133 Adjust all dependencies.
19134 * src/conflicts.c: Return a string.
19135 * src/system.h (obstack_grow_string): Rename as...
19136 (obstack_sgrow): this. Be ready to work with non literals.
19137 (obstack_fgrow4): New.
19138
19139 2000-12-20 Akim Demaille <akim@epita.fr>
19140
19141 * src/files.c (open_files): Fix the computation of short_base_name
19142 in the case of `-o foo.tab.c'.
19143
19144 2000-12-20 Akim Demaille <akim@epita.fr>
19145
19146 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19147 (copy_dollar): Now that everything uses obstacks, get rid of the
19148 FILE * parameters.
19149
19150 2000-12-20 Akim Demaille <akim@epita.fr>
19151
19152 * src/files.c (open_files): Actually the `.output' file is based
19153 on the short_base_name, not base_name.
19154 * tests/suite.at (Checking output file names): Adjust.
19155
19156 2000-12-20 Akim Demaille <akim@epita.fr>
19157
19158 * src/bison.s1: Remove, we now use directly...
19159 * src/bison.simple: this.
19160 * src/Makefile.am: Use pkgdata instead of data.
19161
19162 2000-12-20 Akim Demaille <akim@epita.fr>
19163
19164 * src/files.c (guard_obstack): New.
19165 (open_files): Initialize it.
19166 (output_files): Dump it...
19167 * src/files.h: Export it.
19168 * src/reader.c (copy_guard): Use it.
19169
19170 2000-12-19 Akim Demaille <akim@epita.fr>
19171
19172 * src/files.c (outfile, defsfile, actfile): Removed as global
19173 vars.
19174 (open_files): Don't compute them.
19175 (output_files): Adjust.
19176 (base_name, short_base_name): Be global.
19177 Adjust dependencies.
19178
19179 2000-12-19 Akim Demaille <akim@epita.fr>
19180
19181 * src/files.c (strsuffix): New.
19182 (stringappend): Be just like strcat but allocate.
19183 (base_names): Eve out from open_files.
19184 Try to simplify the rather hairy computation of base_name and
19185 short_base_name.
19186 (open_files): Use it.
19187 * tests/suite.at (Checking output file names): New test.
19188
19189 2000-12-19 Akim Demaille <akim@epita.fr>
19190
19191 * src/system.h (obstack_grow_literal_string): Rename as...
19192 (obstack_grow_string): this.
19193 * src/output.c (output_parser): Recognize `%% actions' instead of
19194 `$'.
19195 * src/bison.s1: s/$/%% actions/.
19196 * src/bison.hairy: Likewise.
19197
19198 2000-12-19 Akim Demaille <akim@epita.fr>
19199
19200 * src/output.c (output_parser): Compute the `#line' lines when
19201 there are.
19202 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19203 Suggested by Hans Aberg.
19204
19205 2000-12-19 Akim Demaille <akim@epita.fr>
19206
19207 Let the handling of the skeleton files be local to the procedures
19208 that use it.
19209
19210 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19211 longer static.
19212 (fparser, open_extra_files): Remove.
19213 (open_files, output_files): Don't take care of fparser.
19214 * src/files.h: Adjust.
19215 * src/output.c (output_parser): Open and close the file to the
19216 skeleton.
19217 * src/reader.c (read_declarations): When %semantic_parser, open
19218 fguard.
19219
19220 2000-12-19 Akim Demaille <akim@epita.fr>
19221
19222 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19223 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19224
19225 2000-12-19 Akim Demaille <akim@epita.fr>
19226
19227 * src/files.c (open_files): Yipee! We no longer need all the code
19228 looking for `/tmp' since we have no tmp file.
19229
19230 2000-12-19 Akim Demaille <akim@epita.fr>
19231
19232 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19233 New macros.
19234 * src/files.c (open_files): Less dependency on MSDOS etc.
19235
19236 2000-12-14 Akim Demaille <akim@epita.fr>
19237
19238 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19239 Provide a default definition.
19240 Use it when executing the default @ action.
19241 * src/reader.c (reader_output_yylsp): No longer include
19242 `timestamp' and `text' in the default YYLTYPE.
19243
19244 2000-12-12 Akim Demaille <akim@epita.fr>
19245
19246 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19247 (copy_guard): Quote the file names.
19248 Reported by Laurent Mascherpa.
19249
19250 2000-12-12 Akim Demaille <akim@epita.fr>
19251
19252 * src/output.c (output_headers, output_program, output): Be sure
19253 to escape special characters when outputting filenames.
19254 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19255 (output_headers): Don't depend on them, Use ACTSTR.
19256
19257 2000-11-17 Akim Demaille <akim@epita.fr>
19258
19259 * lib/obstack.h: Formatting changes.
19260 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19261 prevents type checking.
19262 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19263 cast the value to (void *): assigning a `foo *' to a `void *'
19264 variable is valid.
19265 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19266 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19267 append characters.
19268
19269 2000-11-17 Akim Demaille <akim@epita.fr>
19270
19271 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19272 as...
19273 (suite.m4, regression.m4, calc.m4): these.
19274 * tests/atgeneral.m4: Update from CVS Autoconf.
19275
19276 2000-11-17 Akim Demaille <akim@epita.fr>
19277
19278 * tests/regression.m4 (%union and --defines): New test,
19279 demonstrating a current bug in the obstack implementation.
19280
19281 2000-11-17 Akim Demaille <akim@epita.fr>
19282
19283 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19284 macros.
19285 Use them to declare the variables which are global or local to
19286 `yyparse'.
19287
19288 2000-11-17 Akim Demaille <akim@epita.fr>
19289
19290 * acconfig.h: Remove, no longer used.
19291
19292 2000-11-07 Akim Demaille <akim@epita.fr>
19293
19294 * src: s/Copyright (C)/Copyright/g.
19295
19296 2000-11-07 Akim Demaille <akim@epita.fr>
19297
19298 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19299 defining.
19300 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19301
19302 2000-11-07 Akim Demaille <akim@epita.fr>
19303
19304 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19305 Merge in a single CPP if/else.
19306
19307 2000-11-07 Akim Demaille <akim@epita.fr>
19308
19309 * src/output.c (output): Remove useless variables.
19310 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19311 argument `data' for consistency with the prototypes.
19312 Qualify it `const'.
19313 (obstack_copy, obstack_copy0): Rename the second argument as
19314 `address' for consistency. Qualify it `const'.
19315 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19316 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19317 `const' their input argument (`data' or `address').
19318 Adjust the corresponding macros to include `const' in casts.
19319
19320 2000-11-03 Akim Demaille <akim@epita.fr>
19321
19322 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19323 s/PFILE1/BISON_HAIRY/.
19324 Adjust dependencies.
19325
19326 2000-11-03 Akim Demaille <akim@epita.fr>
19327
19328 For some reason, this was not applied.
19329
19330 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19331 `unlink': it's no longer used.
19332
19333 2000-11-03 Akim Demaille <akim@epita.fr>
19334
19335 * src/files.c (skeleton_find): New function, eved out of...
19336 (open_files, open_extra_files): here.
19337
19338 2000-11-03 Akim Demaille <akim@epita.fr>
19339
19340 Don't use `atexit'.
19341
19342 * src/files.c (obstack_save): New function.
19343 (done): Rename as...
19344 (output_files): this.
19345 Use `obstack_save'.
19346 * src/main.c (main): Don't use `atexit' to register `done', since
19347 it no longer has to remove tmp files, just call `output_files'
19348 when there are no errors.
19349
19350 2000-11-02 Akim Demaille <akim@epita.fr>
19351
19352 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19353 `unlink': it's no longer used.
19354 * src/files.h: Formatting changes.
19355
19356 2000-11-02 Akim Demaille <akim@epita.fr>
19357
19358 Remove the last uses of mktemp and unlink/delete.
19359
19360 * src/files.c (fdefines, ftable): Removed.
19361 (defines_ostack, table_obstack): New.
19362 Adjust dependencies of the former into uses of the latter.
19363 * src/output.c (output_short_or_char_table, output_short_table):
19364 Convert to using obstacks.
19365 * src/reader.c (copy_comment2): Accept one FILE * and two
19366 obstacks.
19367 (output_token_defines, reader_output_yylsp): Use obstacks.
19368 * src/system.h (obstack_fgrow3): New.
19369 * po/POTFILES.in: Adjust.
19370
19371 2000-11-01 Akim Demaille <akim@epita.fr>
19372
19373 Change each use of `fattrs' into a use of `attrs_obstack'.
19374
19375 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19376 * src/files.c (fattrs): Remove.
19377 (attrs_obstack): New.
19378 Adjust all dependencies.
19379 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19380
19381 2000-11-01 Akim Demaille <akim@epita.fr>
19382
19383 Introduce obstacks.
19384 Change each use of `faction' into a use of `action_obstack'.
19385
19386 * lib/obstack.h, lib/obstack.c: New files.
19387 * src/files.c (faction): Remove.
19388 (action_obstack): New.
19389 Adjust all dependencies.
19390
19391 2000-10-20 Akim Demaille <akim@epita.fr>
19392
19393 * lib/quote.h (PARAMS): New macro. Use it.
19394
19395 2000-10-16 Akim Demaille <akim@epita.fr>
19396
19397 * src/output.c (output_short_or_char_table): New function.
19398 (output_short_table, output_token_translations): Use it.
19399 (goto_actions): Use output_short_table.
19400
19401 2000-10-16 Akim Demaille <akim@epita.fr>
19402
19403 * src/symtab.c (bucket_new): New function.
19404 (getsym): Use it.
19405
19406 * src/output.c (output_short_table): New argument to display the
19407 comment associated with the table.
19408 Adjust dependencies.
19409 (output_gram): Use it.
19410 (output_rule_data): Nicer output layout for YYTNAME.
19411
19412 2000-10-16 Akim Demaille <akim@epita.fr>
19413
19414 * src/lex.c (read_typename): New function.
19415 (lex): Use it.
19416 * src/reader.c (copy_dollar): Likewise.
19417
19418 2000-10-16 Akim Demaille <akim@epita.fr>
19419
19420 * src/reader.c (copy_comment2): Expect the input stream to be on
19421 the `/' which is suspected to open a comment, instead of being
19422 called after `//' or `/*' was read.
19423 (copy_comment, copy_definition, parse_union_decl, copy_action)
19424 (copy_guard): Adjust.
19425
19426 2000-10-16 Akim Demaille <akim@epita.fr>
19427
19428 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19429 `read_signed_integer'.
19430
19431 2000-10-16 Akim Demaille <akim@epita.fr>
19432
19433 * src/reader.c (copy_dollar): New function.
19434 (copy_guard, copy_action): Use it.
19435
19436 2000-10-16 Akim Demaille <akim@epita.fr>
19437
19438 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19439 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19440 New files, from Fileutils 4.0.27.
19441 * src/main.c (printable_version): Remove.
19442 * src/lex.c, src/reader.c: Use `quote'.
19443
19444 2000-10-04 Akim Demaille <akim@epita.fr>
19445
19446 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19447
19448 2000-10-04 Akim Demaille <akim@epita.fr>
19449
19450 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19451
19452 2000-10-04 Akim Demaille <akim@epita.fr>
19453
19454 When a literal string is used to define two different tokens,
19455 `bison -v' segfaults.
19456 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19457
19458 * tests/regression.m4: New file.
19459 Include the core of the sample provided by Piotr Gackiewicz.
19460 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19461 properly.
19462
19463 2000-10-04 Akim Demaille <akim@epita.fr>
19464
19465 * src/reader.c (parse_expect_decl): Keep `count' within the size
19466 of `buffer'.
19467 From Neil Booth.
19468
19469 2000-10-02 Paul Eggert <eggert@twinsun.com>
19470
19471 * bison.s1 (yyparse): Assign the default value
19472 unconditionally, to avoid a GCC warning and make the parser a
19473 tad smaller.
19474
19475 2000-10-02 Akim Demaille <akim@epita.fr>
19476
19477 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
19478 options.
19479
19480 2000-10-02 Akim Demaille <akim@epita.fr>
19481
19482 * src/derives.c, src/print.c, src/reduce.c: To ease the
19483 translation, move some `\n' out of the translated strings.
19484
19485 2000-10-02 Akim Demaille <akim@epita.fr>
19486
19487 The location tracking mechanism is precious for parse error
19488 messages. Nevertheless, it is enabled only when `@n' is used in
19489 the grammar, which is a different issue (you can use it in error
19490 message, but not in the grammar per se). Therefore, there should
19491 be another means to enable it.
19492
19493 * src/getargs.c (getargs): Support `--locations'.
19494 (usage): Report it.
19495 * src/getargs.h (locationsflag): Export it.
19496 * src/lex.c (percent_table): Support `%locations'.
19497 * src/reader.c (yylsp_needed): Remove this variable, now replaced
19498 with `locationsflag'.
19499 * doc/bison.texinfo: Document `--locations' and `%locations'.
19500 Sort the options.
19501 * tests/calc.m4: Test it.
19502
19503 For regularity of the names, replace each
19504 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
19505 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
19506 In addition replace each `flag' with `_flag'.
19507
19508 2000-10-02 Akim Demaille <akim@epita.fr>
19509
19510 Also test parse error messages, including with YYERROR_VERBOSE.
19511
19512 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
19513 associative).
19514 Use it to check the computations.
19515 Use it to check `nonassoc' is honored.
19516 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
19517 `--yyerror-verbose'.
19518 (_AT_CHECK_CALC): Adjust to this option.
19519 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
19520
19521 2000-10-02 Akim Demaille <akim@epita.fr>
19522
19523 Test also `--verbose', `--defines' and `--name-prefix'. Testing
19524 the latter demonstrates a flaw in the handling of non debugging
19525 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
19526 was used in order to simplify:
19527
19528 #if YYDEBUG
19529 if (yydebug)
19530 {
19531 ...
19532 }
19533 #endif
19534
19535 into
19536
19537 if (yydebug)
19538 {
19539 ...
19540 }
19541
19542 unfortunately this leads to a CPP conflict when
19543 `--name-prefix=foo' is used since it produces `#define yydebug
19544 foodebug'.
19545
19546 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
19547 (YYDPRINTF): New macro.
19548 Spread its use.
19549 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
19550 the bison options.
19551 Also test `--verbose', `--defines' and `--name-prefix'.
19552
19553 2000-10-02 Akim Demaille <akim@epita.fr>
19554
19555 Improve the readability of the produced parsers.
19556
19557 * src/bison.s1: Formatting changes.
19558 Improve the comment related to the `$' mark.
19559 (yydefault): Don't fall through to `yyresume': `goto' there.
19560 * src/output.c (output_parser): When the `$' is met, skip the end
19561 of its line.
19562 New variable, `number_of_dollar_signs', to check there's exactly
19563 one `$' in the parser skeleton.
19564
19565 2000-10-02 Akim Demaille <akim@epita.fr>
19566
19567 * lib/xstrdup.c: New file, from the fileutils.
19568 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
19569 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
19570 instead of strlen + xmalloc + strcpy.
19571 * src/symtab.c (copys): Remove, use xstrdup instead.
19572
19573 2000-10-02 Akim Demaille <akim@epita.fr>
19574
19575 * src/gram.h (associativity): New enum type which replaces the
19576 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
19577 `right_assoc', `left_assoc' and `non_assoc'.
19578 Adjust all dependencies.
19579 * src/reader.c: Formatting changes.
19580 (LTYPESTR): Don't define it, use it as a literal in
19581 `reader_output_yylsp'.
19582 * src/symtab.h (symbol_class): New enum type which replaces the
19583 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
19584 `sunknown', `stoken and `snterm'.
19585
19586 2000-10-02 Akim Demaille <akim@epita.fr>
19587
19588 * src/getargs.c (fixed_outfiles): Rename as...
19589 (yaccflag): for consistency and accuracy.
19590 Adjust dependencies.
19591
19592 2000-10-02 Akim Demaille <akim@epita.fr>
19593
19594 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
19595 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
19596 difficult and introduced a lot of core dump. It turns out that
19597 Bison used an implementation of `xmalloc' based on `calloc', and
19598 at various places it does depend upon the initialization to 0. I
19599 have not tried to isolate the pertinent places, and all the former
19600 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
19601 someone should address this issue.
19602
19603 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
19604 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
19605 files.
19606 Adjust dependencies.
19607 * src/warshall.h: New file.
19608 Propagate.
19609
19610 2000-10-02 Akim Demaille <akim@epita.fr>
19611
19612 Various anti-`extern in *.c' changes.
19613
19614 * src/system.h: Include `assert.h'.
19615
19616 2000-10-02 Akim Demaille <akim@epita.fr>
19617
19618 * src/state.h (nstates, final_state, first_state, first_shift)
19619 (first_reduction): Move their exportation from here...
19620 * src/LR0.h: to here.
19621 Adjust dependencies.
19622 * src/getargs.c (statisticsflag): New variable.
19623 Add support for `--statistics'.
19624 Adjust dependencies.
19625
19626 Remove a lot of now useless `extern' statements in most files.
19627
19628 2000-10-02 Akim Demaille <akim@epita.fr>
19629
19630 * src/LR0.h: New file.
19631 Propagate its use.
19632
19633 2000-10-02 Akim Demaille <akim@epita.fr>
19634
19635 * src/print.h: New file.
19636 Propagate its use.
19637 * src/print.c: Formatting and ordering changes.
19638 (verbose, terse): Replace with...
19639 (print_results): this new function.
19640 Adjust dependencies.
19641
19642 2000-10-02 Akim Demaille <akim@epita.fr>
19643
19644 * src/conflicts.c (conflict_report): New function.
19645 (conflict_log, verbose_conflict_log): Replace with...
19646 (print_conflicts): this function.
19647 Adjust dependencies.
19648 * src/conflicts.h: New file.
19649 Propagate its inclusion.
19650
19651 2000-10-02 Akim Demaille <akim@epita.fr>
19652
19653 * src/nullable.h: New file.
19654 Propagate its inclusion.
19655 * src/nullable.c: Formatting changes.
19656
19657 2000-10-02 Akim Demaille <akim@epita.fr>
19658
19659 * src/reduce.h: New file.
19660 Propagate its inclusion.
19661 * src/reduce.c: Topological sort and other formatting changes.
19662 (bool, TRUE, FALSE): Move their definition to...
19663 * src/system.h: here.
19664
19665 2000-10-02 Akim Demaille <akim@epita.fr>
19666
19667 * src/files.c: Formatting changes.
19668 (tryopen, tryclose, openfiles): Rename as...
19669 (xfopen, xfclose, open_files): this.
19670 (stringappend): static.
19671 * src/files.h: Complete the list of exported symbols.
19672 Propagate its use.
19673
19674 2000-10-02 Akim Demaille <akim@epita.fr>
19675
19676 * src/reader.h: New file.
19677 Propagate its use instead of tedious list of `extern' and
19678 prototypes.
19679 * src/reader.c: Formatting changes, topological sort,
19680 s/register//.
19681
19682 2000-10-02 Akim Demaille <akim@epita.fr>
19683
19684 * src/lex.h: Prototype `lex.c' exported functions.
19685 * src/reader.c: Adjust.
19686 * src/lex.c: Formatting changes.
19687 (safegetc): Rename as...
19688 (xgetc): this.
19689
19690 2000-10-02 Akim Demaille <akim@epita.fr>
19691
19692 * src/lalr.h: New file.
19693 Propagate its inclusion instead of prototypes and `extern'.
19694 * src/lalr.c: Formatting changes, topological sorting etc.
19695
19696 2000-10-02 Akim Demaille <akim@epita.fr>
19697
19698 * src/output.c (token_actions): Introduce a temporary array,
19699 YYDEFACT, that makes it possible for this function to use
19700 output_short_table.
19701
19702 2000-10-02 Akim Demaille <akim@epita.fr>
19703
19704 `user_toknums' is output as a `short[]' in `output.c', while it is
19705 defined as a `int[]' in `reader.c'. For consistency with the
19706 other output tables, `user_toknums' is now defined as a table of
19707 shorts.
19708
19709 * src/reader.c (user_toknums): Be a short table instead of an int
19710 table.
19711 Adjust dependencies.
19712
19713 Factor the short table outputs.
19714
19715 * src/output.c (output_short_table): New function.
19716 * src/output.c (output_gram, output_stos, output_rule_data)
19717 (output_base, output_table, output_check): Use it.
19718
19719 2000-10-02 Akim Demaille <akim@epita.fr>
19720
19721 * src/output.c (output): Topological sort of the functions, in
19722 order to get rid of the `static' prototypes.
19723 No longer use `register'.
19724 * src/output.h: New file.
19725 Propagate its inclusion in files explicitly prototyping functions
19726 from output.c.
19727
19728 2000-09-21 Akim Demaille <akim@epita.fr>
19729
19730 * src/atgeneral.m4: Update from Autoconf.
19731
19732 2000-09-21 Akim Demaille <akim@epita.fr>
19733
19734 * src/closure.h: New file.
19735 * src/closure.c: Formatting changes, topological sort over the
19736 functions, use of closure.h.
19737 (initialize_closure, finalize_closure): Rename as...
19738 (new_closure, free_closure): these. Adjust dependencies.
19739 * src/LR0.c: Formatting changes, topological sort, use of
19740 cloture.h.
19741 (initialize_states): Rename as...
19742 (new_states): this.
19743 * src/Makefile.am (noinst_HEADERS): Adjust.
19744
19745 2000-09-20 Akim Demaille <akim@epita.fr>
19746
19747 * src/acconfig.h: Don't protect config.h against multiple
19748 inclusion.
19749 Don't define PARAMS.
19750 * src/system.h: Define PARAMS.
19751 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
19752 purpose of config.h. system.h must not try to fix wrong
19753 definitions in config.h.
19754
19755 2000-09-20 Akim Demaille <akim@epita.fr>
19756
19757 * src/derives.h: New file.
19758 * src/main.c, src/derives.h: Use it.
19759 Formatting changes.
19760 * src/Makefile.am (noinst_HEADERS): Adjust.
19761
19762 2000-09-20 Akim Demaille <akim@epita.fr>
19763
19764 * tests/atgeneral.m4: Update from Autoconf.
19765 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
19766 (AT_CHECK_CALC): New macros.
19767 Use these macros to test bison with options `', `--raw',
19768 `--debug', `--yacc', `--yacc --debug'.
19769
19770 2000-09-19 Akim Demaille <akim@epita.fr>
19771
19772 * src/output.c: Formatting changes.
19773 * src/machine.h: Remove, leaving its contents in...
19774 * src/system.h: here.
19775 Include stdio.h.
19776 Adjust all dependencies on stdio.h and machine.h.
19777 * src/getargs.h: New file.
19778 Let all `extern' declarations about getargs.c be replaced with
19779 inclusion of `getargs.h'.
19780 * src/Makefile.am (noinst_HEADERS): Adjust.
19781
19782 * tests/calc.m4 (yyin): Be initialized in main, not on the global
19783 scope.
19784 (yyerror): Returns void, not int.
19785 * doc/bison.texinfo: Formatting changes.
19786
19787 2000-09-19 Akim Demaille <akim@epita.fr>
19788
19789 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
19790 portable.
19791
19792 2000-09-18 Akim Demaille <akim@epita.fr>
19793
19794 * configure.in: Append WARNING_CFLAGS to CFLAGS.
19795 * src/Makefile.am (INCLUDES): Don't.
19796 Be ready to fetch headers in lib/.
19797
19798 2000-09-18 Akim Demaille <akim@epita.fr>
19799
19800 * doc/bison.texinfo: Update the copyright.
19801 ANSIfy and GNUify the examples.
19802 Remove the old menu.
19803
19804 2000-09-18 Akim Demaille <akim@epita.fr>
19805
19806 First set of tests: use the `calc' example from the documentation.
19807
19808 * src/bison.s1 (yyparse): Condition the code using `yytname' which
19809 is defined only when YYDEBUG is.
19810 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
19811 * src/files.c (tryopen, tryclose): Formatting changes.
19812 Move to the top and be static.
19813 * src/reader.c (read_signed_integer): Likewise.
19814 * tests/calc.m4: New file.
19815 * Makefile.am, suite.m4: Adjust.
19816 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
19817
19818 2000-09-18 Akim Demaille <akim@epita.fr>
19819
19820 Add support for an Autotest test suite for Bison.
19821
19822 * m4/m4.m4, m4/atconfig.m4: New files.
19823 * m4/Makefile.am (EXTRA_DIST): Adjust.
19824 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
19825 files.
19826 * src/getargs.c: Display a more standard --version message.
19827 * src/reader.c (reader): Formatting changes.
19828 No longer depend upon VERSION_STRING.
19829 * configure.in: No longer use `dnl'.
19830 Set up the test suite and the new directory `tests/.
19831 (VERSION_STRING): Remove.
19832
19833 2000-04-14 Akim Demaille <akim@epita.fr>
19834
19835 * src/reader.c (copy_comment2): New function, same as former
19836 `copy_comment', but outputs into two FILE *.
19837 (copy_comment): Use it.
19838 (parse_union_decl): Use it.
19839 (get_type, parse_start_decl): Use the same `invalid' message.
19840 (parse_start_decl, parse_union_decl): Use the same `multiple'
19841 message.
19842 (parse_union_decl, copy_guard, copy_action): Use the same
19843 `unmatched' message.
19844 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
19845
19846 2000-03-31 Akim Demaille <akim@epita.fr>
19847
19848 * src/files.c (tryopen, tryclose): Move to the top.
19849 Be static.
19850
19851 2000-03-31 Akim Demaille <akim@epita.fr>
19852
19853 * src/main.c (main): Don't call `done', exit does it.
19854
19855 2000-03-31 Akim Demaille <akim@epita.fr>
19856
19857 * allocate.c: s/return (foo)/return foo/.
19858 * lalr.c: Likewise.
19859 * LR0.c: Likewise.
19860 * output.c: Likewise.
19861 * reader.c: Likewise.
19862 * symtab.c: Likewise.
19863 * vmsgetargs.c: Likewise.
19864
19865 2000-03-31 Akim Demaille <akim@epita.fr>
19866
19867 Clean up the error reporting functions.
19868
19869 * src/report.c: New file.
19870 * src/report.h: Likewise.
19871 * src/Makefile.am: Adjust.
19872 * m4/error.m4: New file.
19873 * m4/Makefile.am: Adjust.
19874 * configure.in (jm_PREREQ_ERROR): Call it.
19875 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
19876 Remove.
19877 (fatal, fatals): Remove. All callers use complain.c::fatal.
19878 (warn, warni, warns, warnss, warnss): Remove. All callers use
19879 complain.c::complain.
19880 (toomany): Remove, use fatal instead.
19881 * src/files.c (done): No argument, use complain_message_count.
19882 * src/main.c (main): Register `done' to `atexit'.
19883
19884 * src/getargs.c (usage): More `fputs', less `fprintf'.
19885
19886 2000-03-28 Akim Demaille <akim@epita.fr>
19887
19888 * lib/: New directory.
19889 * Makefile.am (SUBDIRS): Adjust.
19890 * configure.in: Adjust.
19891 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
19892 useless.
19893 * src/alloca.c: Moved to lib/.
19894 * src/getopt.c: Likewise.
19895 * src/getopt1.c: Likewise.
19896 * src/getopt.h: Likewise.
19897 * src/ansi2knr.c: Likewise.
19898 * src/ansi2knr.1: Likewise.
19899 * src/Makefile.am: Adjust.
19900 * lib/Makefile.am: New file.
19901
19902 2000-03-28 Akim Demaille <akim@epita.fr>
19903
19904 * src/getargs.c (usage): Refresh the help message.
19905
19906 2000-03-17 Akim Demaille <akim@epita.fr>
19907
19908 * src/getopt1.c: Updated from textutils 2.0e
19909 * src/getopt.c: Likewise.
19910 * src/getopt.h: Likewise.
19911
19912 2000-03-17 Akim Demaille <akim@epita.fr>
19913
19914 * src/Makefile.am (bison.simple): Fix the awk program: quote only
19915 the file name, not the whole `#line LINE FILE'.
19916
19917 2000-03-17 Akim Demaille <akim@epita.fr>
19918
19919 On syntax errors, report the token on which we choked.
19920
19921 * src/bison.s1 (yyparse): In the label yyerrlab, when
19922 YYERROR_VERBOSE, add yychar in msg.
19923
19924 2000-03-17 Akim Demaille <akim@epita.fr>
19925
19926 * src/reader.c (copy_at): New function.
19927 (copy_guard): Use it.
19928 (copy_action): Use it.
19929
19930 2000-03-17 Akim Demaille <akim@epita.fr>
19931
19932 Be kind to translators, save some useless translations.
19933
19934 * src/main.c (banner): New function.
19935 (fatal_banner): Use it.
19936 (warn_banner): Use it.
19937
19938 2000-03-17 Akim Demaille <akim@epita.fr>
19939
19940 * src/reader.c (copy_definition): Use copy_string and
19941 copy_comment. Removed now unused `match', `ended',
19942 `cplus_comment'.
19943 (copy_comment, copy_string): Moved, to be visible from
19944 copy_definition.
19945
19946 2000-03-17 Akim Demaille <akim@epita.fr>
19947
19948 * src/reader.c (copy_string): Declare `static inline'. No
19949 problems with inline, since it is checked by configure.
19950 (copy_comment): Likewise.
19951
19952 2000-03-17 Akim Demaille <akim@epita.fr>
19953
19954 * src/reader.c (packsymbols): Formatting changes.
19955
19956 2000-03-17 Akim Demaille <akim@epita.fr>
19957
19958 * src/reader.c (copy_comment): New function, factored out from:
19959 (copy_action): Use it. Removed now unused `match', `ended',
19960 `cplus_comment'.
19961 (copy_guard): Likewise.
19962
19963 2000-03-17 Akim Demaille <akim@epita.fr>
19964
19965 * src/reader.c (copy_string): New function, factored out from:
19966 (copy_action): Use it.
19967 (copy_guard): Likewise.
19968
19969 2000-03-17 Akim Demaille <akim@epita.fr>
19970
19971 Change the handling of @s so that they behave exactly like $s.
19972 There is now a pseudo variable @$ (readble and writable), location
19973 of the lhs of the rule (by default ranging from the location of
19974 the first symbol of the rhs, to the location of the last symbol,
19975 or, if the rhs is empty, YYLLOC).
19976
19977 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
19978 yyval.
19979 (yyparse): When providing a default semantic action, provide a
19980 default location action.
19981 (after the $): No longer change `*YYLSP', just stack YYLOC the
19982 same way you stack YYVAL.
19983 * src/reader.c (read_declarations): Use warns.
19984 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
19985 (copy_action, case '@'): Likewise.
19986 Use a standard error message, to save useless work from
19987 translators.
19988
19989 2000-03-17 Akim Demaille <akim@epita.fr>
19990
19991 * src/bison.s1: Formatting and cosmetics changes.
19992 * src/reader.c: Likewise.
19993 Update the Copyright notice.
19994
19995 2000-03-17 Akim Demaille <akim@epita.fr>
19996
19997 * src/bison.s1 (#line): All set to `#line' only, since the
19998 Makefile now handles them.
19999
20000 2000-03-16 Akim Demaille <akim@epita.fr>
20001
20002 * src/output.c (output_rule_data): Output the documentation of
20003 some of the tables.
20004 (Copyright notice): Update.
20005 Formatting changes.
20006
20007 2000-03-16 Akim Demaille <akim@epita.fr>
20008
20009 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
20010 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
20011 One `#if YYDEBUG' remains, since it uses variables which are
20012 defined only if `YYDEBUG != 0'.
20013
20014 2000-03-16 Akim Demaille <akim@epita.fr>
20015
20016 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
20017 and related variables so that the similarities are highlighted.
20018
20019 2000-03-16 Akim Demaille <akim@epita.fr>
20020
20021 * src/bison.s1: Properly indent CPP directives.
20022
20023 2000-03-16 Akim Demaille <akim@epita.fr>
20024
20025 * src/bison.s1: Properly indent the `alloca' CPP section.
20026
20027 2000-03-16 Akim Demaille <akim@epita.fr>
20028
20029 Do not hard code values of directories in `configure.in'.
20030 Update the `configure' tool chain.
20031
20032 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
20033 src/makefile.am.
20034 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
20035 (AC_OUTPUT): Add m4/Makefile.
20036 Bump to bison 1.28a, 1.29 has never been released.
20037 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
20038 handled via src/Makefile.am.
20039 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
20040 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
20041 autoheader.
20042 * Makefile.am (SUBDIRS): Add m4.
20043 (ACLOCAL_AM_FLAGS): New variable.
20044 (AUTOMAKE_OPTIONS): Add check-news.
20045 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
20046 the proper line number and file name.
20047 (DEFS): Propagate the location of bison library files and of the
20048 locale files.
20049 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
20050 builddir.
20051 * acinclude.m4: Remove, replaced by the directory m4.
20052 * m4/Makefile.am (EXTRA_DIST): New variable.
20053 * m4/gettext.m4: New file, from the fileutils.
20054 * m4/lcmessage.m4: Likewise
20055 * m4/progtest.m4: Likewise.
20056 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
20057
20058 2000-03-10 Akim Demaille <akim@epita.fr>
20059
20060 * src/closure.c:
20061 Formatting changes of various comments.
20062 Respect the GNU coding standards at various places.
20063 Don't use `_()' when no translation is needed.
20064
20065 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20066
20067 * src/files.c:
20068 OS/2 honors TMPDIR environment variable.
20069
20070 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20071
20072 * doc/bison.texinfo: Tweaked spelling and grammar.
20073 Updated ISBN.
20074 Removed reference to price of printed copy.
20075 Mention BISON_SIMPLE and BISON_HAIRY.
20076
20077 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20078
20079 * configure.in, NEWS:
20080 Bison 1.29 released.
20081
20082 1999-10-27 Jesse Thilo <jthilo@gnu.org>
20083
20084 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
20085 Added reference card.
20086
20087 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20088
20089 * po/ru.po: Added Russian translation.
20090
20091 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20092
20093 * configure.in: Added Russian translation.
20094
20095 1999-07-06 Jesse Thilo <jthilo@gnu.org>
20096
20097 * configure.in, NEWS, README:
20098 Released version 1.28.
20099
20100 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20101
20102 * src/system.h:
20103 Squashed redefinition warning on some systems.
20104
20105 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20106 Have configure build version string instead of relying on ANSI string
20107 concatentation.
20108
20109 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20110
20111 * po/POTFILES.in: Got rid of version.c.
20112
20113 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20114
20115 * acconfig.h, configure.in:
20116 Have configure build version string instead of relying on ANSI string
20117 concatentation.
20118
20119 1999-06-08 Jesse Thilo <jthilo@gnu.org>
20120
20121 * doc/bison.1:
20122 Dropped mention of `+' for long-named options.
20123
20124 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20125
20126 * src/files.c: Added <unistd.h> for unlink().
20127
20128 * src/Makefile.am, src/system.h:
20129 I18n fixes.
20130
20131 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20132
20133 * README: Added a FAQ list.
20134
20135 * configure.in, acconfig.h:
20136 I18n fixes.
20137
20138 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20139
20140 * doc/FAQ, doc/Makefile.am:
20141 Added a FAQ list.
20142
20143 1999-05-19 Jesse Thilo <jthilo@gnu.org>
20144
20145 * src/alloc.h, src/symtab.h, src/version.c:
20146 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20147
20148 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20149
20150 * src/.cvsignore, src/Makefile.am:
20151 Reorganized: sources in `src', documentation in `doc'.
20152
20153 * src/lex.c (literalchar):
20154 fixed the code for escaping double quotes (thanks
20155 Jonathan Czisny.)
20156
20157 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20158
20159 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20160 Adjusted paths to reflect directory reorganization.
20161
20162 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20163
20164 * doc/.cvsignore, doc/Makefile.am:
20165 Reorganized: sources in `src', documentation in `doc'.
20166
20167 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20168
20169 * configure.in:
20170 Updated AC_INIT file to reflect directory reorganization.
20171
20172 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20173 Reorganized: sources in `src', documentation in `doc'.
20174
20175 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20176
20177 * src/allocate.c:
20178 Don't declare calloc() and realloc() if not necessary.
20179
20180 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20181
20182 * configure.in, acconfig.h, acinclude.m4:
20183 Don't declare calloc() and realloc() if not necessary.
20184
20185 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20186
20187 * po/.cvsignore: Added i18n support.
20188
20189 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20190
20191 * acconfig.h, configure.in, Makefile.am:
20192 Added i18n support.
20193
20194 1999-03-22 Jesse Thilo <jthilo@gnu.org>
20195
20196 * src/bison.s1: Fixed #line numbers.
20197
20198 1999-03-15 Jesse Thilo <jthilo@gnu.org>
20199
20200 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20201 Added PO files from Translation Project.
20202
20203 1999-03-03 Jesse Thilo <jthilo@gnu.org>
20204
20205 * Makefile.am:
20206 Added support for non-ANSI compilers (ansi2knr).
20207
20208 1999-02-16 Jesse Thilo <jthilo@gnu.org>
20209
20210 * configure.in: Bumped version number to 1.27.
20211
20212 * Makefile.am:
20213 Added `bison.simple' to list of files removed by `make distclean'.
20214
20215 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20216
20217 * src/files.c, src/files.h:
20218 Defined locations of parser files in config.h instead of Makefile.
20219
20220 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20221
20222 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20223 Defined locations of parser files in config.h instead of Makefile.
20224
20225 1999-02-09 Jesse Thilo <jthilo@gnu.org>
20226
20227 * Makefile.am:
20228 Removed inappropriate use of $< macro.
20229
20230 1999-02-05 Jesse Thilo <jthilo@gnu.org>
20231
20232 * po/Makefile.in.in, po/POTFILES.in:
20233 Add `po' directory skeleton.
20234
20235 1999-01-27 Jesse Thilo <jthilo@gnu.org>
20236
20237 * README: Document help-bison list.
20238
20239 * configure.in: Add check for mkstemp().
20240
20241 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20242
20243 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20244 Hush a few compiler warnings.
20245
20246 * src/files.c:
20247 Add tryclose(), which verifies that fclose was successful.
20248 Hush a couple of compiler warnings.
20249
20250 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20251
20252 * Makefile.am, OChangeLog:
20253 ChangeLog is now automatically generated. Include the old version as
20254 OChangeLog.
20255
20256 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20257
20258 * 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/st ate.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:
20259 Update FSF address.
20260
20261 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20262
20263 * doc/bison.texinfo: Fix formatting glitch.
20264
20265 * doc/bison.texinfo: Update FSF address.
20266
20267 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20268
20269 * acconfig.h: Update FSF address.
20270
20271 1999-01-08 Jesse Thilo <jthilo@gnu.org>
20272
20273 * src/system.h:
20274 Don't define PACKAGE here, since config.h defines it.
20275
20276 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20277
20278 * src/reader.c: Update copyright date.
20279
20280 * src/main.c:
20281 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20282 favor of output directly to stderr (avoids buffer overruns).
20283
20284 * src/reader.c: Some checks for premature EOF.
20285
20286 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/deriv es.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, s rc/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab .h, src/warshall.c:
20287 Use prototypes if the compiler understands them.
20288
20289 * src/files.c: Honor TMPDIR on Unix hosts.
20290 Use prototypes if the compiler understands them.
20291
20292 * src/reader.c:
20293 Fix a couple of buffer overrun bugs.
20294 Use prototypes if the compiler understands them.
20295
20296 * src/system.h: Include unistd.h and ctype.h.
20297 Use #ifdef instead of #if for NLS symbols.
20298
20299 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20300
20301 * doc/bison.texinfo:
20302 Delete comment "consider using @set for edition number, etc..." since
20303 we now are doing so.
20304
20305 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20306
20307 * configure.in:
20308 Use prototypes if the compiler understands them.
20309
20310 * NEWS: Document 1.26 highlights.
20311
20312 * Makefile.am: Require Automake 1.3 or later.
20313
20314 * acconfig.h:
20315 Use prototypes if the compiler understands them.
20316
20317 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20318
20319 * src/version.c:
20320 Use VERSION symbol from automake for version number.
20321
20322 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20323
20324 * acconfig.h, configure.in, version.cin:
20325 Use VERSION symbol from automake for version number.
20326
20327 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20328
20329 * Makefile.am:
20330 Distribute original version of simple parser (bison.s1), not built
20331 version (bison.simple).
20332
20333 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20334
20335 * doc/bison.texinfo: Add info dir entry.
20336
20337 * doc/bison.texinfo:
20338 Let automake put version number into documentation.
20339
20340 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20341
20342 * src/bison.cld, src/build.com, src/vmshlp.mar:
20343 Add non-RCS files from /gd/gnu/bison.
20344
20345 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20346
20347 * doc/bison.1:
20348 Document the BISON_HAIRY and BISON_SIMPLE variables.
20349
20350 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20351
20352 * src/version.c: Build version.c automatically.
20353
20354 * src/reader.c:
20355 Fix token numbering (used to start at 258, not 257).
20356
20357 * src/system.h: Include config.h.
20358
20359 * src/getargs.c: Update bug report address.
20360
20361 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20362 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.or g.
20363
20364 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20365
20366 * Makefile.am:
20367 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s 1).
20368
20369 * configure.in, version.cin:
20370 Build version.c automatically.
20371
20372 * AUTHORS: Add AUTHORS file.
20373
20374 * README: Update bug report address.
20375
20376 * bison.simple:
20377 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s 1).
20378
20379 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20380 Add automake stuff.
20381
20382 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20383
20384 * doc/bison.texinfo: Clean up some formatting.
20385
20386 1998-05-05 Richard Stallman <rms@gnu.org>
20387
20388 * doc/bison.texinfo:
20389 Explain better why to make a pure parser.
20390
20391 1998-01-05 Richard Stallman <rms@gnu.org>
20392
20393 * src/files.c (openfiles):
20394 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20395 find a temporary directory, if possible. Do not unlink files while
20396 they are open.
20397
20398 1997-08-25 Richard Stallman <rms@gnu.org>
20399
20400 * src/reader.c (stack_offset;):
20401 Change some warni to warns.
20402
20403 * src/lex.c (literalchar): Use warns, not warni.
20404
20405 1997-06-28 Richard Stallman <rms@gnu.org>
20406
20407 * src/bison.s1: Add a Bison version comment.
20408
20409 * src/main.c (fatal, warn, berror):
20410 Use program_name.
20411
20412 1997-06-28 Richard Stallman <rms@gnu.org>
20413
20414 * Makefile.in (bison_version): New variable.
20415 (dist): Use that variable.
20416 (bison.s1): Substitute the Bison version into bison.simple.
20417
20418 * bison.simple: Add a Bison version comment.
20419
20420 1997-06-18 Richard Stallman <rms@gnu.org>
20421
20422 * src/main.c (fatal, warn, berror):
20423 Make error messages standard.
20424 (toomany): Improve error message text.
20425
20426 * 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:
20427 new.h renamed to alloc.h.
20428
20429 1997-06-18 Richard Stallman <rms@gnu.org>
20430
20431 * Makefile.in: new.h renamed to alloc.h.
20432
20433 1997-05-24 Richard Stallman <rms@gnu.org>
20434
20435 * src/lex.c (literalchar):
20436 Fix the code for escaping \, " and '.
20437
20438 (lex): Avoid trouble when there are many chars
20439 to discard in a char literal with just several chars in it.
20440
20441 1997-05-17 Richard Stallman <rms@gnu.org>
20442
20443 * src/bison.s1:
20444 Use malloc, if using alloca is troublesome.
20445 (YYSTACK_USE_ALLOCA): New flag macro.
20446 Define it for some systems and compilers.
20447 (YYSTACK_ALLOC): New macro.
20448 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20449 If it was malloc'd, free it.
20450
20451 1997-05-17 Richard Stallman <rms@gnu.org>
20452
20453 * bison.simple:
20454 Use malloc, if using alloca is troublesome.
20455 (YYSTACK_USE_ALLOCA): New flag macro.
20456 Define it for some systems and compilers.
20457 (YYSTACK_ALLOC): New macro.
20458 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20459 If it was malloc'd, free it.
20460
20461 1997-04-23 Richard Stallman <rms@gnu.org>
20462
20463 * src/bison.s1:
20464 (alloca) [__hpux]: Always define as __builtin_alloca.
20465
20466 1997-04-23 Richard Stallman <rms@gnu.org>
20467
20468 * bison.simple:
20469 (alloca) [__hpux]: Always define as __builtin_alloca.
20470
20471 1997-04-22 Richard Stallman <rms@gnu.org>
20472
20473 * src/bison.s1:
20474 [__hpux]: Include alloca.h (right for HPUX 10)
20475 instead of declaring alloca (right for HPUX 9).
20476
20477 * src/bison.s1 (__yy_memcpy):
20478 Declare arg `count' as unsigned int.
20479 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20480
20481 1997-04-22 Richard Stallman <rms@gnu.org>
20482
20483 * bison.simple:
20484 [__hpux]: Include alloca.h (right for HPUX 10)
20485 instead of declaring alloca (right for HPUX 9).
20486
20487 * bison.simple (__yy_memcpy):
20488 Declare arg `count' as unsigned int.
20489 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20490
20491 1997-01-03 Richard Stallman <rms@gnu.org>
20492
20493 * src/allocate.c: [__STDC__ or _MSC_VER]:
20494 Declare calloc and realloc to return void *.
20495
20496 1997-01-02 Richard Stallman <rms@gnu.org>
20497
20498 * src/system.h:
20499 [_MSC_VER]: Include stdlib.h and process.h.
20500 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
20501
20502 * src/main.c (main): Return FAILURE as a value.
20503 (printable_version): Declare arg as int, not char.
20504
20505 1997-01-02 Richard Stallman <rms@gnu.org>
20506
20507 * Makefile.in (dist):
20508 Explicitly check for symlinks, and copy them.
20509
20510 1996-12-19 Richard Stallman <rms@gnu.org>
20511
20512 * src/files.c:
20513 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
20514
20515 1996-12-18 Paul Eggert <eggert@gnu.org>
20516
20517 * src/bison.s1 (yyparse):
20518 If __GNUC__ and YYPARSE_PARAM are both defined,
20519 declare yyparse to have a void * argument.
20520
20521 1996-12-18 Paul Eggert <eggert@gnu.org>
20522
20523 * bison.simple (yyparse):
20524 If __GNUC__ and YYPARSE_PARAM are both defined,
20525 declare yyparse to have a void * argument.
20526
20527 1996-12-17 Richard Stallman <rms@gnu.org>
20528
20529 * src/reduce.c (nbits): Add some casts.
20530
20531 1996-08-12 Richard Stallman <rms@gnu.org>
20532
20533 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
20534
20535 1996-08-12 Richard Stallman <rms@gnu.org>
20536
20537 * bison.simple: Test _MSDOS as well as _MSDOS_.
20538
20539 1996-07-31 Richard Stallman <rms@gnu.org>
20540
20541 * src/bison.s1:
20542 [__sun && __i386]: Include alloca.h.
20543
20544 1996-07-31 Richard Stallman <rms@gnu.org>
20545
20546 * bison.simple:
20547 [__sun && __i386]: Include alloca.h.
20548
20549 1996-07-30 Richard Stallman <rms@gnu.org>
20550
20551 * src/bison.s1: Comment change.
20552
20553 * src/bison.s1: Test _MSDOS_, not MSDOS.
20554
20555 1996-07-30 Richard Stallman <rms@gnu.org>
20556
20557 * bison.simple: Comment change.
20558
20559 * bison.simple: Test _MSDOS_, not MSDOS.
20560
20561 1996-06-01 Richard Stallman <rms@gnu.org>
20562
20563 * 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/closu re.c, src/allocate.c:
20564 Insert `_' macro around many string constants.
20565
20566 * src/main.c:
20567 Insert `_' macro around many string constants.
20568
20569 (main): Call setlocale, bindtextdomain and textdomain.
20570
20571 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
20572 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
20573 [ENABLE_NLS]: Include libintl.h.
20574 [ENABLE_NLS] (gettext): Define.
20575 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
20576 (N_, PACKAGE, LOCALEDIR): New macros.
20577
20578 1996-06-01 Richard Stallman <rms@gnu.org>
20579
20580 * POTFILES.in: New file.
20581
20582 * Makefile.in (allocate.o):
20583 Define target explicitly.
20584
20585 * Makefile.in (CFLAGS): Set to @CFLAGS@.
20586 (LDFLAGS): Set to @LDFLAGS@.
20587 (configure): Run autoconf only if preceding `cd' succeeds.
20588 (bison.s1): Redirect output to temporary file then move the
20589 temporary to the target, rather than redirecting directly to bison.s1.
20590 (clean): Remove config.status and config.log.
20591 (distclean): Don't remove config.status here.
20592
20593 1996-05-12 Richard Stallman <rms@gnu.org>
20594
20595 * src/bison.s1:
20596 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20597
20598 1996-05-12 Richard Stallman <rms@gnu.org>
20599
20600 * bison.simple:
20601 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20602
20603 1996-05-11 Richard Stallman <rms@gnu.org>
20604
20605 * src/bison.s1 (__yy_memcpy):
20606 Really reorder the args, as was supposedly done on Feb 14 1995.
20607 (yyparse): Calls changed accordingly.
20608
20609 1996-05-11 Richard Stallman <rms@gnu.org>
20610
20611 * Makefile.in (dist): Don't use $(srcdir).
20612
20613 * bison.simple (__yy_memcpy):
20614 Really reorder the args, as was supposedly done on Feb 14 1995.
20615 (yyparse): Calls changed accordingly.
20616
20617 1996-01-27 Richard Stallman <rms@gnu.org>
20618
20619 * src/output.c (output_rule_data):
20620 Test YYERROR_VERBOSE in the conditional
20621 around the definition of ttyname.
20622
20623 1995-12-29 Richard Stallman <rms@gnu.org>
20624
20625 * src/bison.s1:
20626 Fix line numbers in #line commands.
20627
20628 1995-12-29 Richard Stallman <rms@gnu.org>
20629
20630 * bison.simple:
20631 Fix line numbers in #line commands.
20632
20633 1995-12-27 Richard Stallman <rms@gnu.org>
20634
20635 * src/bison.s1 (YYPARSE_PARAM_DECL):
20636 In C++, make it always null.
20637 (YYPARSE_PARAM_ARG): New macro.
20638 (yyparse): Use YYPARSE_PARAM_ARG.
20639
20640 1995-12-27 Richard Stallman <rms@gnu.org>
20641
20642 * bison.simple (YYPARSE_PARAM_DECL):
20643 In C++, make it always null.
20644 (YYPARSE_PARAM_ARG): New macro.
20645 (yyparse): Use YYPARSE_PARAM_ARG.
20646
20647 1995-11-29 Richard Stallman <rms@gnu.org>
20648
20649 * doc/bison.texinfo:
20650 Describe literal string tokens, %raw, %no_lines, %token_table.
20651
20652 1995-11-29 Daniel Hagerty <hag@gnu.org>
20653
20654 * doc/bison.texinfo: Fixed update date
20655
20656 1995-10-16 Richard Stallman <rms@gnu.org>
20657
20658 * src/version.c: Version 1.25.
20659
20660 1995-10-16 Richard Stallman <rms@gnu.org>
20661
20662 * NEWS: *** empty log message ***
20663
20664 1995-10-16 Richard Stallman <rms@gnu.org>
20665
20666 * doc/bison.1, doc/bison.rnh:
20667 Add new options.
20668
20669 1995-10-15 Richard Stallman <rms@gnu.org>
20670
20671 * src/vmsgetargs.c, src/getargs.c:
20672 Added -n, -k, and -raw switches.
20673 (noparserflag, toknumflag, rawtoknumflag): New variables.
20674
20675 * src/symtab.h (SALIAS):
20676 New #define for adding aliases to %token.
20677 (struct bucket): Added `alias' field.
20678
20679 * src/reduce.c (reduce_grammar):
20680 Revise error message.
20681 (print_notices): Remove final `.' from error message.
20682
20683 * src/reader.c (reader_output_yylsp):
20684 New function.
20685 (readgram): Use `#if 0' around code that accepted %command
20686 inside grammar rules: The documentation doesn't allow it,
20687 and it will fail since the %command processors scan for the next %.
20688 (parse_token_decl): Extended the %token
20689 declaration to allow a multi-character symbol as an alias.
20690 (parse_thong_decl): New function.
20691 (read_declarations): Added %thong declarations.
20692 (read_declarations): Handle NOOP to deal with allowing
20693 % declarations as another means to specify the flags.
20694 (readgram): Allow %prec prior to semantics embedded in a rule.
20695 (skip_to_char, read_declarations, copy_definition)
20696 (parse_token_decl, parse_start_decl, parse_type_decl)
20697 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
20698 (get_type_name, copy_guard, copy_action, readgram)
20699 (get_type, packsymbols): Revised most error messages.
20700 Changed `fatal' to `warnxxx' to avoid aborting for error.
20701 Revised and use multiple warnxxx functions to avoid using VARARGS1.
20702 (read_declarations): Improve the error message for
20703 an invalid character. Do not abort.
20704 (read_declarations, copy_guard, copy_action): Use
20705 printable_version to avoid unprintable characters in printed output.
20706 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
20707 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
20708 Allow the type of a non-terminal can be given
20709 more than once, as long as all specifications give the same type.
20710
20711 * src/output.c:
20712 (output_headers, output_trailers, output, output_gram)
20713 (output_rule_data): Implement noparserflag variable.
20714 Implement toknumflag variable.
20715 (output): Call reader_output_yylsp to output LTYPESTR.
20716
20717 * src/main.c (main):
20718 If reader sees an error, don't process the grammar.
20719 (fatals): Updated to not use VARARGS1.
20720 (printable_version, int_to_string, warn, warni, warns, warnss)
20721 (warnsss): New error reporting functions. Avoid abort for error.
20722
20723 * src/lex.h:
20724 Added THONG and NOOP for alias processing.
20725 Added SETOPT for the new code that allows setting options with %flags.
20726
20727 * src/lex.c:
20728 Include getopt.h. Add some extern decls.
20729 (safegetc): New function to deal with EOF gracefully.
20730 (literalchar); new function to deal with reading \ escapes.
20731 (lex): Use literalchar.
20732 (lex): Implemented "..." tokens.
20733 (literalchar, lex, parse_percent_token): Made tokenbuffer
20734 always contain the token. This includes growing the token
20735 buffer while reading an integer.
20736 (parse_percent_token): Replaced if-else statement with percent_table.
20737 (parse_percent_token): Added % declarations as another
20738 way to specify the flags -n, -l, and -r. Also added hooks for
20739 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
20740 major changes to files.c.
20741 (lex) Retain in the incoming stream a character following
20742 an incorrect '/'.
20743 (skip_white_space, lex): Revised most error messages
20744 and changed fatal to warn to avoid aborting.
20745 (percent_table): Added %thong declarations.
20746
20747 * src/gram.h: Comment changes.
20748
20749 * src/files.c (openfiles, open_extra_files, done):
20750 Add faction flag
20751 and actfile file. Handle noparserflag. Both for -n switch.
20752
20753 * src/conflicts.c (resolve_sr_conflict):
20754 Remove use of alloca.
20755
20756 1995-06-01 Jim Meyering <meyering@gnu.org>
20757
20758 * doc/bison.texinfo: *** empty log message ***
20759
20760 1995-05-06 Richard Stallman <rms@gnu.org>
20761
20762 * src/bison.s1: Comment change.
20763
20764 1995-05-06 Richard Stallman <rms@gnu.org>
20765
20766 * bison.simple: Comment change.
20767
20768 1995-05-03 Richard Stallman <rms@gnu.org>
20769
20770 * src/version.c: Version now 1.24.
20771
20772 * src/bison.s1: Change distribution terms.
20773
20774 * src/version.c: Version now 1.23.
20775
20776 1995-05-03 Richard Stallman <rms@gnu.org>
20777
20778 * doc/bison.texinfo:
20779 Rewrite "Conditions for Using Bison".
20780 Update version to 1.24.
20781
20782 1995-05-03 Richard Stallman <rms@gnu.org>
20783
20784 * bison.simple: Change distribution terms.
20785
20786 1995-02-23 Richard Stallman <rms@gnu.org>
20787
20788 * src/files.c: Test __VMS_POSIX as well as VMS.
20789
20790 1995-02-14 Jim Meyering <meyering@gnu.org>
20791
20792 * src/bison.s1 (__yy_memcpy):
20793 Renamed from __yy_bcopy to avoid
20794 confusion. Reverse FROM and TO arguments to be consistent with
20795 those of memcpy.
20796
20797 1995-02-14 Jim Meyering <meyering@gnu.org>
20798
20799 * bison.simple (__yy_memcpy):
20800 Renamed from __yy_bcopy to avoid
20801 confusion. Reverse FROM and TO arguments to be consistent with
20802 those of memcpy.
20803
20804 1994-11-10 David J. MacKenzie <djm@gnu.org>
20805
20806 * NEWS: reformat
20807
20808 * NEWS: New file.
20809
20810 * Makefile.in (DISTFILES): Include NEWS.
20811
20812 * Makefile.in (DISTFILES):
20813 Include install-sh, not install.sh.
20814
20815 * configure.in: Update to Autoconf v2 macro names.
20816
20817 1994-10-05 David J. MacKenzie <djm@gnu.org>
20818
20819 * Makefile.in: fix typo
20820
20821 * Makefile.in (prefix, exec_prefix):
20822 Let configure set them.
20823
20824 1994-09-28 David J. MacKenzie <djm@gnu.org>
20825
20826 * Makefile.in: Set datadir to $(prefix)/share.
20827
20828 1994-09-15 Richard Stallman <rms@gnu.org>
20829
20830 * src/bison.s1:
20831 Update copyright notice and GPL version.
20832
20833 1994-09-15 Richard Stallman <rms@gnu.org>
20834
20835 * bison.simple:
20836 Update copyright notice and GPL version.
20837
20838 1994-07-12 Richard Stallman <rms@gnu.org>
20839
20840 * src/reduce.c, src/reader.c:
20841 entered into RCS
20842
20843 1994-05-05 David J. MacKenzie <djm@gnu.org>
20844
20845 * Makefile.in: entered into RCS
20846
20847 1994-03-26 Richard Stallman <rms@gnu.org>
20848
20849 * src/bison.s1: entered into RCS
20850
20851 1994-03-26 Richard Stallman <rms@gnu.org>
20852
20853 * bison.simple: entered into RCS
20854
20855 1994-03-25 Richard Stallman <rms@gnu.org>
20856
20857 * src/main.c: entered into RCS
20858
20859 1994-03-24 Richard Stallman <rms@gnu.org>
20860
20861 * src/conflicts.c: entered into RCS
20862
20863 1994-01-02 Richard Stallman <rms@gnu.org>
20864
20865 * Makefile.in: *** empty log message ***
20866
20867 1993-11-21 Richard Stallman <rms@gnu.org>
20868
20869 * src/bison.s1: *** empty log message ***
20870
20871 1993-11-21 Richard Stallman <rms@gnu.org>
20872
20873 * doc/bison.texinfo: entered into RCS
20874
20875 * doc/bison.texinfo: *** empty log message ***
20876
20877 1993-11-21 Richard Stallman <rms@gnu.org>
20878
20879 * bison.simple: *** empty log message ***
20880
20881 1993-10-25 David J. MacKenzie <djm@gnu.org>
20882
20883 * doc/bison.texinfo: *** empty log message ***
20884
20885 1993-10-19 Richard Stallman <rms@gnu.org>
20886
20887 * src/bison.s1: *** empty log message ***
20888
20889 1993-10-19 Richard Stallman <rms@gnu.org>
20890
20891 * bison.simple: *** empty log message ***
20892
20893 1993-10-14 Richard Stallman <rms@gnu.org>
20894
20895 * src/bison.s1: *** empty log message ***
20896
20897 1993-10-14 Richard Stallman <rms@gnu.org>
20898
20899 * bison.simple: *** empty log message ***
20900
20901 1993-09-14 David J. MacKenzie <djm@gnu.org>
20902
20903 * doc/bison.texinfo: *** empty log message ***
20904
20905 1993-09-13 Noah Friedman <friedman@gnu.org>
20906
20907 * Makefile.in: *** empty log message ***
20908
20909 1993-09-10 Richard Stallman <rms@gnu.org>
20910
20911 * src/conflicts.c: *** empty log message ***
20912
20913 * src/system.h: entered into RCS
20914
20915 1993-09-10 Richard Stallman <rms@gnu.org>
20916
20917 * doc/bison.1: entered into RCS
20918
20919 1993-09-06 Noah Friedman <friedman@gnu.org>
20920
20921 * src/version.c: entered into RCS
20922
20923 1993-09-06 Noah Friedman <friedman@gnu.org>
20924
20925 * Makefile.in: *** empty log message ***
20926
20927 1993-07-30 David J. MacKenzie <djm@gnu.org>
20928
20929 * Makefile.in: *** empty log message ***
20930
20931 1993-07-24 Richard Stallman <rms@gnu.org>
20932
20933 * src/bison.s1: *** empty log message ***
20934
20935 1993-07-24 Richard Stallman <rms@gnu.org>
20936
20937 * bison.simple: *** empty log message ***
20938
20939 1993-07-08 David J. MacKenzie <djm@gnu.org>
20940
20941 * Makefile.in: *** empty log message ***
20942
20943 1993-07-04 Richard Stallman <rms@gnu.org>
20944
20945 * src/bison.s1: *** empty log message ***
20946
20947 1993-07-04 Richard Stallman <rms@gnu.org>
20948
20949 * bison.simple: *** empty log message ***
20950
20951 1993-06-26 David J. MacKenzie <djm@gnu.org>
20952
20953 * src/getargs.c: entered into RCS
20954
20955 1993-06-26 David J. MacKenzie <djm@gnu.org>
20956
20957 * doc/bison.texinfo: *** empty log message ***
20958
20959 * doc/bison.1: New file.
20960
20961 1993-06-25 Richard Stallman <rms@gnu.org>
20962
20963 * src/getargs.c: New file.
20964
20965 1993-06-16 Richard Stallman <rms@gnu.org>
20966
20967 * src/bison.s1: *** empty log message ***
20968
20969 1993-06-16 Richard Stallman <rms@gnu.org>
20970
20971 * bison.simple: *** empty log message ***
20972
20973 1993-06-03 Richard Stallman <rms@gnu.org>
20974
20975 * src/bison.s1: New file.
20976
20977 1993-06-03 Richard Stallman <rms@gnu.org>
20978
20979 * doc/bison.texinfo: *** empty log message ***
20980
20981 1993-06-03 Richard Stallman <rms@gnu.org>
20982
20983 * bison.simple: New file.
20984
20985 1993-05-19 Richard Stallman <rms@gnu.org>
20986
20987 * doc/bison.texinfo: New file.
20988
20989 1993-05-07 Noah Friedman <friedman@gnu.org>
20990
20991 * Makefile.in: *** empty log message ***
20992
20993 1993-04-28 Noah Friedman <friedman@gnu.org>
20994
20995 * src/reader.c: *** empty log message ***
20996
20997 1993-04-23 Noah Friedman <friedman@gnu.org>
20998
20999 * src/alloc.h: entered into RCS
21000
21001 1993-04-20 David J. MacKenzie <djm@gnu.org>
21002
21003 * src/version.c: *** empty log message ***
21004
21005 * src/files.c, src/allocate.c:
21006 entered into RCS
21007
21008 * src/reader.c: *** empty log message ***
21009
21010 * src/lex.c: entered into RCS
21011
21012 * src/conflicts.c: New file.
21013
21014 * src/symtab.c: entered into RCS
21015
21016 * src/alloc.h: New file.
21017
21018 * src/LR0.c: entered into RCS
21019
21020 1993-04-18 Noah Friedman <friedman@gnu.org>
21021
21022 * src/reader.c: New file.
21023
21024 * src/version.c: *** empty log message ***
21025
21026 1993-04-18 Noah Friedman <friedman@gnu.org>
21027
21028 * Makefile.in: *** empty log message ***
21029
21030 1993-04-17 Noah Friedman <friedman@gnu.org>
21031
21032 * Makefile.in: *** empty log message ***
21033
21034 1993-04-15 Richard Stallman <rms@gnu.org>
21035
21036 * src/main.c, src/files.c:
21037 New file.
21038
21039 1993-04-15 Noah Friedman <friedman@gnu.org>
21040
21041 * configure.in: entered into RCS
21042
21043 * configure.in: *** empty log message ***
21044
21045 * configure.in: New file.
21046
21047 1993-04-14 Richard Stallman <rms@gnu.org>
21048
21049 * Makefile.in: New file.
21050
21051 1993-04-13 Richard Stallman <rms@gnu.org>
21052
21053 * src/version.c: New file.
21054
21055 1993-03-25 Richard Stallman <rms@gnu.org>
21056
21057 * src/output.c: entered into RCS
21058
21059 1992-09-25 Richard Stallman <rms@gnu.org>
21060
21061 * configure.bat: entered into RCS
21062
21063 1992-06-22 Richard Stallman <rms@gnu.org>
21064
21065 * src/vmsgetargs.c: entered into RCS
21066
21067 1992-06-22 Richard Stallman <rms@gnu.org>
21068
21069 * doc/bison.rnh: entered into RCS
21070
21071 1992-04-20 David J. MacKenzie <djm@gnu.org>
21072
21073 * README: entered into RCS
21074
21075 1992-01-22 Richard Stallman <rms@gnu.org>
21076
21077 * src/machine.h: entered into RCS
21078
21079 1991-12-21 Richard Stallman <rms@gnu.org>
21080
21081 * src/lalr.c, src/closure.c:
21082 entered into RCS
21083
21084 1991-12-20 Richard Stallman <rms@gnu.org>
21085
21086 * src/state.h: entered into RCS
21087
21088 1991-12-18 Richard Stallman <rms@gnu.org>
21089
21090 * src/print.c, src/nullable.c, src/derives.c:
21091 entered into RCS
21092
21093 1991-11-03 David J. MacKenzie <djm@gnu.org>
21094
21095 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/ gram.h, src/files.h:
21096 entered into RCS
21097
21098 1988-09-09 Richard Stallman <rms@gnu.org>
21099
21100 * src/bison.hairy: entered into RCS
21101
21102 1987-12-16 Richard Stallman <rms@gnu.org>
21103
21104 * REFERENCES: entered into RCS
21105
21106
21107 -----
21108
21109 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
21110 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
21111 Free Software Foundation, Inc.
21112
21113 Copying and distribution of this file, with or without
21114 modification, are permitted provided the copyright notice and this
21115 notice are preserved.
OLDNEW
« no previous file with comments | « bison/contrib/bison/2.4.1/bison-2.4.1-src/COPYING ('k') | bison/contrib/bison/2.4.1/bison-2.4.1-src/INSTALL » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698