]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
Fix some error-reporting macro bugs.
[bison.git] / ChangeLog
... / ...
CommitLineData
12007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Fix some error-reporting macro bugs.
4 * data/bison.m4 (b4_cat): New.
5 (b4_error, b4_error_at): Use b4_cat to send error directives directly
6 to stdout so they don't become arguments to other macros. Update
7 comments and add examples.
8 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
9 add examples.
10 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
11 after printing the error directive so that M4 doesn't report subsequent
12 problems that are induced by this problem.
13 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
14 instead of just in them. Recognize @\n in both places. Both expand to
15 the empty string. Needed by b4_cat.
16 * tests/skeletons.at (Complaining during macro argument expansion):
17 New test case.
18 (Fatal errors make M4 exit immediately): New test case.
19
202007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
21
22 Implement --print-datadir.
23 * src/getargs.c (usage): Mention.
24 (PRINT_DATADIR_OPTION): New anonymous enum member.
25 (long_options): Add entry for it.
26 (getargs): Add case for it calling compute_pkgdatadir.
27 * src/output.c (output_skeleton): Encapsulate data directory
28 computation from here...
29 (prepare): ... and from here...
30 (compute_pkgdatadir): ... into this new function.
31 * src/output.h (compute_pkgdatadir): Prototype.
32
332007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
34
35 * src/print-xml.c (escape_bufs): New static global variable
36 replacing...
37 (xml_escape_n): ... the static local variable buf here.
38 (print_xml): Free memory for escape_bufs.
39 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
40
412007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
42
43 Replace `%push-parser' and `%push-pull-parser' with
44 `%define push_pull "push"' and `%define push_pull "both"'.
45 `%define push_pull "pull"' is the default.
46 * doc/bison.texinfo (Push Decl, Push Parser Function,
47 Pull Parser Function, Parser Create Function, Parser Delete Function):
48 Update declarations.
49 (Decl Summary, Table of Symbols): Replace %push-parser and
50 %push-pull-parser entries with a %define push_pull entry.
51 * data/bison.m4 (b4_percent_define_check_values): New macro.
52 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
53 definitions...
54 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
55 definitions...
56 * data/push.c: ... to here and compute them from the value of the
57 %define variable push_pull.
58 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
59 parsing requests here...
60 * data/yacc.c: ... hack this to switch to push.c any time
61 b4_use_push_pull_flag or the %define variable push_pull is set. This
62 will go away when we mv push.c yacc.c.
63 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
64 push parsing is not supported since unused %define variables are
65 reported anyway.
66 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
67 * src/muscle_tab.h (muscle_percent_define_check_values): Update
68 comments for consistency with b4_percent_define_check_values.
69 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
70 muscles.
71 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
72 Remove.
73 (prologue_declaration): Remove %push-parser and %push-pull-parser
74 rules.
75 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
76 * tests/calc.at: Update declarations.
77 * tests/input.at (%define enum variables): New test case.
78 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
79 declaration.
80 (Push Parsing: Multiple impure instances): Update declaration.
81 (Push Parsing: Unsupported Skeletons): New test case.
82 * tests/torture.at (Exploding the Stack Size with Alloca): Update
83 declaration.
84 (Exploding the Stack Size with Malloc): Update declaration.
85
862007-09-24 Wojciech Polak <polak@gnu.org>
87
88 Add XSLT transformations.
89
90 * data/xslt/xml2dot.xsl: Transform XML into DOT.
91 * data/xslt/xml2text.xsl: Transform XML into plain text.
92 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
93 * data/Makefile.am (xsltdir): New variable.
94 (dist_xslt_DATA): Add xslt/*.xsl files.
95
962007-09-23 Paul Eggert <eggert@cs.ucla.edu>
97
98 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
99 Problem reported by Wojciech Polak.
100 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
101 (xml_printf): Undo change I made on 21 September; that is,
102 indent 2 spaces, not 1.
103
1042007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
105
106 Pacify ./configure --enable-gcc-warnings.
107 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
108 `char const *' instead of `char *'.
109 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
110 local variable `sep'.
111
1122007-09-21 Paul Eggert <eggert@cs.ucla.edu>
113
114 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
115 elsewhere.
116 * src/print-xml.c: Prefer "const" after types; that's more consistent.
117 (xml_printf): Indent just 1 space for level.
118 (e_char, xlate_char): Remove.
119 (xml_escape_string): Rewrite to avoid undefined behavior (used
120 storage that was freed from the stack).
121 (xml_escape_n): Don't bother checking for subscript error.
122
1232007-09-21 Wojciech Polak <polak@gnu.org>
124
125 Add Bison XML Automaton Report.
126
127 Add support for an -x option to generate an XML report.
128 It is not documented yet.
129 * src/print-xml.c: New file.
130 * src/print-xml.h: Likewise.
131 * lib/timevar.def (TV_XML): New var.
132 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
133 * src/conflicts.c: Include print-xml.h.
134 (solved_conflicts_xml_obstack): New var.
135 (log_resolution, conflicts_solve, conflicts_free):
136 Add support for XML report.
137 (conflicts_output_val): New function.
138 * src/conflicts.h (conflicts_output_val): New decl.
139 * src/files.c (spec_xml_file): New var.
140 (compute_output_file_names, output_file_names_free): Add XML support.
141 * src/files.h (spec_xml_file): New decl.
142 * src/getargs.c (xml_flag): New var.
143 (usage, short_options, long_options, getargs): Add XML support.
144 * src/getargs.h (xml_flag): New decl.
145 * src/gram.c: Include print-xml.h.
146 (rule_lhs_print_xml, rule_rhs_print_xml):
147 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
148 New functions.
149 * src/gram.h: Declare external ones.
150 * src/main.c: Include print-xml.h.
151 (main): Add XML support.
152 * src/reduce.c: Include print-xml.h.
153 (reduce_xml): New function.
154 * src/reduce.h: Declare it.
155 * src/state.c: Include print-xml.h.
156 (state_new): Add XML support.
157 (state_rule_lookahead_tokens_print_xml): New function.
158 * src/state.h: Declare it.
159 (struct state): New member solved_conflicts_xml.
160 * src/symtab.c (symbol_class_get_string): New function.
161 * src/symtab.h: Declare it.
162
1632007-09-21 Paul Eggert <eggert@cs.ucla.edu>
164
165 * GNUmakefile: Switch to coreutils's version.
166 * bootstrap: Likewise.
167 * Makefile.cfg: Adjust to new GNUmakefile.
168 * README-hacking: Likewise.
169
170 Import from gnulib:
171
172 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
173 Bruno Haible <bruno@clisp.org>
174
175 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
176 and is a script that invokes bison. Tighten the code. Add comments.
177
1782007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
179
180 Spell "boolean" as "Boolean". Reported by Akim Demaille.
181 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
182 * doc/bison.texinfo (Decl Summary): Fix.
183 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
184 * tests/input.at (Boolean %define variables): Update output.
185 * tests/skeletons.at (%define boolean variables: invalid skeleton
186 defaults): Rename to...
187 (%define Boolean variables: invalid skeleton defaults): ... this and
188 update output.
189
1902007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
191
192 In impure push mode, don't allow more than one yypstate to be allocated
193 since multiple impure parsers would corrupt yynerrs.
194 * data/push.c (yypstate_allocated): New static global variable
195 initialized to 0.
196 (yypull_parse): If yypstate_new returns 0, don't report it as memory
197 exhaustion if yypstate_allocated is 1, but still return 2.
198 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
199 already 1. Otherwise, set it to 1.
200 (yypstate_delete): Set it to 0.
201 * tests/push.at (Push Parsing: Multiple impure instances): New test
202 case.
203
2042007-08-17 Bob Rossi <bob@brasko.net>
205
206 * doc/bison.texinfo (Push Decl): Document the push parser.
207 (Table of Symbols): Ditto.
208 (Pure Decl): Ditto.
209 (Decl Summary): Ditto.
210 (Multiple Parsers, Push Parser Function, Pull Parser Function,
211 Parser Create Function, Parser Delete Function):
212 Add new push parser symbols.
213 (Table of Symbols): Document push-parser, push-pull-parser,
214 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
215
2162007-08-15 Paul Eggert <eggert@cs.ucla.edu>
217
218 Update to GPLv3.
219 * doc/gpl-3.0.texi: New file.
220 * doc/gpl.texi: Remove.
221 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
222 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
223 * README-hacking, TODO, bootstrap, bootstrap.conf:
224 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
225 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
226 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
227 * data/lalr1.cc, data/lalr1.java, data/location.cc:
228 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
229 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
230 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
231 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
232 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
233 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
234 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
235 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
236 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
237 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
238 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
239 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
240 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
241 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
242 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
243 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
244 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
245 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
246 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
247 * src/complain.c, src/complain.h, src/conflicts.c:
248 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
249 * src/files.h, src/flex-scanner.h, src/getargs.c:
250 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
251 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
252 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
253 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
254 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
255 * src/print.c, src/print.h, src/print_graph.c:
256 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
257 * src/reduce.h, src/relation.c, src/relation.h:
258 * src/revision.h, src/scan-code.h, src/scan-code.l:
259 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
260 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
261 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
262 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
263 * tests/Makefile.am, tests/actions.at, tests/c++.at:
264 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
265 * tests/existing.at, tests/glr-regression.at:
266 * tests/headers.at, tests/input.at, tests/java.at:
267 * tests/local.at, tests/output.at, tests/push.at:
268 * tests/reduce.at, tests/regression.at, tests/sets.at:
269 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
270 * tests/torture.at:
271 Update to GPLv3.
272
2732007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
274
275 Get rid of broken %no-parser, -n, and --no-parser implementation and
276 documentation.
277 * TODO: Don't mention them.
278 * doc/bison.1: Likewise.
279 * doc/bison.texinfo (Decl Summary): Likewise.
280 (Bison Options): Likewise.
281 (Option Cross Key): Likewise.
282 * src/getargs.c (no_parser_flag): Remove global variable.
283 (usage): Don't print description of -n and --no-parser.
284 (long_options): Remove --no-parser entry here.
285 (getargs): Remove -n case in the switch here.
286 * src/getargs.h (no_parser_flag): Remove extern.
287 * tests/regression.at (Web2c Actions): Remove comment that mentions
288 --no-parser.
289
2902007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
291
292 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
293 name user variables starting with `yy'. Just pass NULL instead of a
294 dummy local &yylval to yypush_parse.
295 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
296 starting with `yy'.
297
2982007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
299
300 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
301 true since it's then always used regardless of whether yyoverflow is
302 defined. Reported by Christian Burger at
303 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
304 * THANKS: Add Christian Burger.
305
306 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
307 node names: say "Decl Summary" not "Bison Declaration Summary".
308
3092007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
310
311 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
312 determine whether this function has already complained about an invalid
313 value for a %define boolean variable, don't check whether Bison has
314 ever examined the value. As written, the check was a tautology.
315 Instead, record and check for this complaint using a separate muscle.
316
3172007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
318
319 Fix push parsing memory leak reported by Brandon Lucia at
320 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
321 * THANKS: Add Brandon Lucia.
322 * data/push.c (yypstate_delete): Free the stack if it was reallocated
323 but the parse never completed and thus freed it.
324 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
325 * tests/testsuite.at: Include push.at.
326 * test/push.at: New.
327 (Push Parsing: Memory Leak for Early Deletion): New test case.
328
3292007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
330
331 Improve handling of multiple S/R conflicts in the same state and of S/R
332 conflicts involving multiple reductions.
333 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
334 set for a state here or Bison will abort if it is reassigned on a
335 later conflicted reduction in the same state.
336 Similarly, don't finalize and assign the solved conflicts report here
337 or it will be lost if it is reassigned on a later conflicted reduction
338 in the same state.
339 (set_conflicts): Instead, assign them both here after all S/R conflicts
340 in the state have been fully examined.
341 * src/print.c (shift_set): Rename to...
342 (no_reduce_set): ... this.
343 (print_reductions): Update for rename, and add %nonassoc error action
344 tokens to no_reduce_set so that, when printing the first remaining
345 reduction on an error action token, the reduction is enclosed in
346 brackets.
347 (print_results): Update for rename.
348 * tests/conflicts.at (Solved conflicts report for multiple reductions
349 in a state): New test case.
350 (%nonassoc error actions for multiple reductions in a state): New test
351 case.
352
353 * src/main.c (main): Don't depend on C99 features.
354
3552007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
356
357 * build-aux/.cvsignore: Add compile.
358 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
359 uniwidth.
360
3612007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
362
363 * bootstrap (slurp): Create target directories that don't exist.
364 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
365
3662007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
367
368 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
369 than item number.
370 * closure.c (closure): Likewise.
371 * state.h (reductions): Comment sorting of rules.
372 (state): Comment sorting of items.
373
3742007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
375
376 Fix C++ test cases after recent Gnulib changes. Discussed starting at
377 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
378 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
379 definition in order to avoid Gnulib headers since we don't use config.h
380 here.
381 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
382 rather than AT_DATA so that config.h is included.
383
3842007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
385
386 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
387 instead of fprintf. Guard these functions with #if YYDEBUG instead of
388 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
389 and so that YYFPRINTF is guaranteed to be defined here.
390
3912007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
392
393 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
394 with...
395 (muscle_percent_define_check_values): ... this more helpful function.
396 Again, it's not used yet, but it will be.
397 * src/muscle_tab.h: Likewise.
398
399 Improve some comments in parser table construction.
400 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
401 (generate_states): Don't mention ruleset, which is internal to closure.
402 * src/closure.c (closure): Explain sorting of core and itemset, which
403 is required for this function to behave correctly.
404 * src/closure.h (closure): Mention sorting.
405
4062007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
407
408 * src/lalr.c (state_lookahead_tokens_count): For code readability,
409 move the check for disabled transitions to an aver since conflict
410 resolution hasn't happened yet.
411
412 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
413 labels a state as inconsistent just because it has error transitions.
414 The original form of this check appeared in revision 1.1 of lalr.c,
415 which was committed on 1991-12-21. Now (at least), changing the
416 consistency label on such a state appears to have no useful effect in
417 any of the places it is examined, which I enumerate below. The key
418 point to understanding each item in this enumeration is that a state
419 with an error transition is labelled consistent in the first place only
420 if it has no rules, so the check cannot matter for states that have
421 rules. (1) Labelling a state as inconsistent will cause set_conflicts
422 to try to identify its conflicts, and a state must have *rules* to have
423 conflicts. (2) Labelling a state as inconsistent will affect how
424 action_row sets the default *rule* for the state. (3) Labelling a
425 state as inconsistent will cause build_relations to add lookback edges
426 to *rules* in that state.
427 * src/state.h (struct state): Word the comment for member consistent
428 more carefully.
429
4302007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
431
432 Don't depend on C99 features.
433 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
434 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
435 * src/reader.c (check_and_convert_grammar): Fix for-loop.
436 * src/state.c (state_mark_reachable_states): Fix for-loop.
437 (state_remove_unreachable_states): Fix for-loop.
438
439 Don't widen struct state with member reachable just to temporarily
440 record reachability. Instead, use a local bitset.
441 * src/state.h (struct state): Remove member.
442 * src/state.c (state_new): Don't initialize it.
443 (state_mark_reachable_states): Rename to...
444 (state_record_reachable_states): ... this, and use bitset.
445 (state_remove_unreachable_states): Use bitset.
446
4472007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
448
449 * src/Makefile.am (yacc): Quote target action commands properly so
450 that the yacc script isn't corrupt. Reported by Hans Aberg at
451 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
452
453 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
454 the case of pure parsers. Reported by Frans Englich at
455 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
456 * THANKS: Add Frans Englich.
457
458 * NEWS (2.3a+): In the %code entry, reference section `Bison
459 Declaration Summary' from the manual now since the %code summary has
460 moved there.
461 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
462 in the rules section must be terminated by semicolons.
463
4642007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
465
466 Extend the front-end API for %define variables to more completely
467 mirror the back-end. This will be useful in the future.
468 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
469 Update comments to mention the new front-end counterparts of these
470 macros.
471 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
472 for muscle_string_decode and muscle_location_decode.
473 (muscle_string_decode): New static function.
474 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
475 (muscle_percent_define_get, muscle_percent_define_ifdef): New
476 functions.
477 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
478 muscle_percent_define_get to mimic the b4_percent_define_flag_if
479 implementation more closely.
480 (muscle_percent_define_invalid_value): New function.
481 * src/muscle_tab.h (muscle_percent_define_get,
482 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
483 Prototype.
484
4852007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
486
487 * NEWS (2.3a+): Mention yesterday's state-removal change.
488 (2.3a): Remove the %language entry, which was added after 2.3a.
489 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
490 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
491 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
492 tests/existing.at: Update copyright date.
493
4942007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
495
496 If conflict resolution makes states unreachable, remove those states,
497 report rules that are then unused, and don't report conflicts in those
498 states.
499 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
500 New global function.
501 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
502 function.
503 * src/main.c (main): After conflict resolution, remove the unreachable
504 states and update all data structures that reference states by number.
505 * src/state.c (state_new): Initialize each state's reachable member to
506 false.
507 (state_mark_reachable_states): New static function.
508 (state_remove_unreachable_states): New global function.
509 * src/state.h (struct state): Add member bool reachable.
510 (state_remove_unreachable_states): Prototype.
511 * tests/conflicts.at (Unreachable States After Conflict Resolution):
512 New test case.
513 * tests/existing.at (GNU pic Grammar): Update test case output now that
514 an unused rule is discovered.
515
5162007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
517
518 Minor code cleanup in parser table construction.
519 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
520 (new_itemsets, save_reductions): Update for rename to nitemset.
521 * src/closure.c (nritemset): Rename to...
522 (nitemset): ... this since the "r" appears to meaningless and isn't
523 used in the comments.
524 (closure): Update for rename.
525 * src/closure.h (nritemset): Update extern to...
526 (nitemset): ... this.
527 * src/lalr.c (LA): Fix a typo in comments.
528 * src/print.c (print_core): Update for rename to nitemset.
529 * src/print_graph.c (print_graph): Likewise.
530 * src/state.h: Fix some typos in header comments.
531
5322007-04-04 Paul Eggert <eggert@cs.ucla.edu>
533
534 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
535 still sticks to ASCII. Sorry!
536
537 * README-hacking: New file, taken mostly from coreutils, with changes
538 for Bison. Contains much of the contents of:
539 * README-cvs: Remove.
540 * bootstrap: Sync from gnulib.
541 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
542 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
543
5442007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
545
546 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
547 Setzer.
548 (Java Differences): Fix some typos.
549 * THANKS: Add Sebastian Setzer.
550
5512007-03-07 Paolo Bonzini <bonzini@gnu.org>
552
553 * data/java.m4 (b4_single_class_if): Remove.
554 (b4_abstract_if): Look at "%define abstract".
555 (b4_lexer_if): New.
556 (b4_union_name): Rename...
557 (b4_yystype): ... to this. Map to "%define stype".
558 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
559 b4_maybe_throws): Fix quoting.
560 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
561 * data/lalr1.java (Lexer interface): Always define.
562 (Lexer interface within parser class): Remove.
563 (YYLexer class): New, used when "%code lexer" is present.
564 (constructor): When "%code lexer" is used, pass %lex-param
565 to the lexer constructor.
566 (yylex, yyparse): Remove %lex-param from method invocations
567 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
568
569 * doc/bison.texinfo (Java Bison Interface): Mention "%define
570 abstract". Rename "%define union_name" to "%define stype".
571 Rename method names according to previous patch.
572 (Java Scanner Interface): Describe "%code lexer" instead of
573 "%pure-parser" and "%define single_class".
574 (Java Differences): Mention "%code lexer".
575
576 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
577 Include scanner here, using macros from tests/local.at.
578 (AT_DATA_CALC_Y): Remove final argument.
579 (_AT_CHECK_JAVA_CALC): Likewise.
580 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
581 of %locations and %error-verbose.
582 (main): Test with and without %lex-param.
583 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
584 (AT_BISON_OPTION_POPDEFS): Pop it.
585
5862007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
587
588 DJGPP spefic issue. Inhibit the use of disallowed characters for
589 file name genertion on Win98, WinXP, etc. These are |<>":?*\
590 and concern testsuite case 46.
591 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
592 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
593 * djgpp/config.bat: Inhibit the use of disallowed characters.
594
5952007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
596
597 Miscellaneous %define and %code cleanup.
598 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
599 values are interpreted.
600 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
601 documentation a little more.
602 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
603 muscle_percent_define_insert, muscle_percent_code_grow): New
604 functions/macros.
605 * src/muscle_tab.h (muscle_percent_define_insert,
606 muscle_percent_code_grow): Prototype.
607 * src/parse-gram.y (prologue_declaration): Use
608 muscle_percent_define_insert and muscle_percent_code_grow when parsing
609 %define and %code directives.
610
611 Make it easy to share %define boolean variables between the front-end
612 and back-end. Though not used yet, this will be useful in the future.
613 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
614 Bison uses of names rather than just skeleton uses of names.
615 (b4_percent_define_get, b4_percent_define_ifdef): Rename
616 b4_percent_define_skeleton_variables(VARIABLE) to
617 b4_percent_define_bison_variables(VARIABLE).
618 (b4_percent_code_get, b4_percent_code_ifdef): Rename
619 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
620 b4_percent_code_bison_qualifiers(QUALIFIER).
621 (b4_check_user_names_wrap): Update for renames.
622 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
623 muscle_percent_define_default): New functions mimicking
624 b4_percent_define_flag_if and b4_percent_define_default.
625
626 For %define variables, report locations for invalid values and
627 redefinitions.
628 * data/bison.m4 (b4_percent_define_flag_if): Read
629 b4_percent_define_loc(VARIABLE) to report the location of an invalid
630 value for VARIABLE.
631 (b4_percent_define_default): Save a special location in
632 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
633 must later be reported as invalid.
634 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
635 functions.
636 (muscle_percent_define_insert): Record the location of VARIABLE in
637 muscle percent_define_loc(VARIABLE), and use it to report the previous
638 location for a redefinition.
639 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
640 (muscle_percent_define_default): Update like b4_percent_define_default.
641 (muscle_grow_user_name_list): Rename to...
642 (muscle_user_name_list_grow): ... this for consistency and use
643 muscle_location_grow.
644 * src/muscle_tab.h (muscle_location_grow): Prototype.
645 * tests/input.at (%define errors): Update expected output.
646 * tests/skeletons.at (%define boolean variables: invalid skeleton
647 defaults): New test case.
648
6492007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
650
651 * src/print.c (lookahead_set, state_default_rule): Remove.
652 (print_reductions): Replace state_default_rule invocation with
653 equivalent use of yydefact, which was computed in token_actions in
654 tables.c.
655 (print_results): Don't allocate lookahead_set.
656
6572007-02-27 Paolo Bonzini <bonzini@gnu.org>
658
659 * data/lalr1.java: Prefix all private members with yy.
660
6612007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
662
663 Use YYFPRINTF instead of fprintf where appropriate. Reported by
664 Sebastien Fricker at
665 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
666 * THANKS: Add Sebastien Fricker.
667 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
668 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
669 accept a variable number of arguments.
670
6712007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
672
673 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
674
6752007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
676
677 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
678 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
679 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
680
6812007-02-11 Paul Eggert <eggert@cs.ucla.edu>
682
683 Undo my 2007-02-07 change, switching back to the c-strcase module
684 introduced in the 2007-02-03 change. Bruno Haible reported that
685 the 2007-02-07 change would be dangerous in Turkish if we add a
686 language whose name contains "i", since "i" is not lowercase "I"
687 in Turkish.
688 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
689 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
690 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
691 * m4/.cvsignore: Remove strcase.m4.
692 * src/getargs.c: Revert 2007-02-07 change, as follows.
693 Include c-strcase.h.
694 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
695
6962007-02-11 Bruno Haible <bruno@clisp.org>
697
698 Enable the Java related testsuite tests when the only Java compiler
699 found is a gcj < 4.3. Discussed at
700 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
701 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
702
7032007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
704
705 * data/Makefile.am: Update copyright date.
706 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
707 yypstate_new returns NULL.
708 (yypstate_new): Return NULL if malloc does.
709 * src/reader.c (packgram): Move translation of rule actions from the
710 beginning of packgram to...
711 (check_and_convert_grammar): ... here right before packgram is invoked
712 so it's easier to write more complete comments, and remove redundant
713 code.
714
7152007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
716
717 As in semantic actions, make @$ in %initial-action, %destructor, and
718 %printer imply %locations.
719 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
720 scanning @$.
721 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
722 (@$ in %initial-action implies %locations,
723 @$ in %destructor implies %locations,
724 @$ in %printer implies %locations): ... these new test cases.
725
7262007-02-07 Paul Eggert <eggert@cs.ucla.edu>
727
728 Undo most of the 2007-02-03 change, switching to the strcase module
729 now that gnulib strcase has been fixed.
730 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
731 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
732 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
733 * m4/.cvsignore: Add strcase.m4.
734 * src/getargs.c: Revert 2007-02-03 change, as follows.
735 Don't include c-strcase.h.
736 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
737 strcasecmp has "unspecified behavior" outside the POSIX locale,
738 but it works fine in practice if at least one argument is ASCII,
739 as is the case in Bison.
740
7412007-02-07 Paolo Bonzini <bonzini@gnu.org>
742
743 * tests/java.at: Skip tests if only one of javac/java is present.
744 Reported by Joel E. Denny.
745 * tests/atlocal.in: Adjust copyright years.
746
7472007-02-05 Paolo Bonzini <bonzini@gnu.org>
748
749 * data/lalr1.java (Stack): Work around old verifiers that disallow
750 access to the private fields of an inner class, from the outer class.
751 We can make Stack's fields public because user code doesn't have access
752 to the instance of Stack used by parse(). Reported by Paul Eggert.
753
7542007-02-03 Paul Eggert <eggert@cs.ucla.edu>
755
756 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
757 the right spot for these files?
758 * bootstrap.conf (gnulib_modules): Add c-strcase.
759 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
760 c-strncasecmp.c.
761 * src/getargs.c: Include c-strcase.h.
762 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
763 to avoid unspecified behavior.
764
7652007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
766
767 * doc/bison.texinfo (Decl Summary): Correct typo.
768
7692007-01-30 Paolo Bonzini <bonzini@gnu.org>
770
771 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
772 Complain if the value does not match empty, "true" or "false".
773 * data/c++.m4: Adjust default definitions of %define variables.
774 * data/java.m4: Adjust default definitions of %define variables.
775 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
776 to above behavior.
777 * tests/input.at (Boolean %define variables): Test new behavior.
778
7792007-01-29 Paolo Bonzini <bonzini@gnu.org>
780
781 * NEWS: Mention java.
782 * TODO: Remove things that are done.
783 * bootstrap.conf: Add javacomp-script and javaexec-script.
784 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
785
786 * data/Makefile.am: Add new files.
787 * data/java-skel.m4: New.
788 * data/java.m4: New.
789 * data/lalr1.java: New.
790
791 * doc/bison.texinfo: Put "A Complete C++ Example" under
792 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
793 under Other Languages.
794
795 * src/getargs.c (valid_languages): Add Java.
796 * src/getargs.h (struct bison_language): Update size of string fields.
797
798 * tests/Makefile.am: Add java.at.
799 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
800 * tests/java.at: New.
801 * tests/testsuite.at: Include it.
802
8032007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
804
805 Clean up.
806 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
807 at_directive_argv arguments so these no longer have to be global
808 variables. Also, update the implementation for the following changes.
809 (fail_for_at_directive_too_many_args,
810 fail_for_at_directive_too_few_args): Add at_directive_name argument.
811 (at_directive_name): Remove as at_directive_argv[0] will be used for
812 this now.
813 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
814 for the directive name.
815 (at_directive_argc, at_directive_argv): Make these local within
816 skel_lex instead of global.
817 (INITIAL): Update directive start action for above changes.
818 (SC_AT_DIRECTIVE_ARG): Rename to...
819 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
820 (SC_AT_DIRECTIVE_SKIP_WS): Update.
821 (scan_skel): Move yylex_destroy to...
822 (skel_scanner_free): ... here.
823 * tests/skeletons.at (installed skeleton file name): Rename to...
824 (installed skeleton file names): ... this.
825
8262007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
827
828 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
829 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
830 Summary" not "Directives".
831 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
832 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
833 since the former is now the more complete one.
834 (Prologue Alternatives): Likewise and do the same for %defines.
835 (Table of Symbols): Add summary of %code, add summary of %define, and
836 move full %code documentation to...
837 (Decl Summary): ... here for consistency with other entries in these
838 sections.
839 Move %define entry in order to keep this list alphabetized.
840 Reword %define entry a little to put less emphasis on the skeleton
841 concept, which most users shouldn't have to think about.
842
8432007-01-26 Paul Eggert <eggert@cs.ucla.edu>
844
845 Adjust to recent gnulib changes.
846 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
847 Add string.h, string_.h, unistd_.h, wchar_.h.
848 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
849 * src/system.h: Don't include <stpcpy.h>; this is now done by
850 <string.h>.
851
8522007-01-23 Paolo Bonzini <bonzini@gnu.org>
853
854 Simplify implementation of unqualified %code, implement macros for
855 uniform treatment of boolean %define flags. Document %define.
856 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
857 b4_percent_code_ifdef): New.
858 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
859 * data/c++.m4: Define default value for global_tokens_and_yystype.
860 * data/glr.cc: Likewise.
861 * data/location.cc: Use b4_percent_define_flag_if.
862
863 * doc/bison.texinfo (Decl Summary): Document %define.
864
865 * src/parse-gram.y (Unqualified %code): Change muscle name to
866 b4_percent_code().
867 (content.opt): Default to empty.
868
8692007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
870
871 Implement support for relative and absolute skeleton file names.
872 Discussed starting at
873 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
874 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
875 (Bison Options): Document in --skeleton entry.
876 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
877 full_skeleton can't necessarily hold all of pkgdatadir.
878 If the specified skeleton file name contains a `/', don't prepend
879 pkgdatadir.
880 * src/parse-gram.y (prologue_declaration): If the specified skeleton
881 file name contains a `/', prepend the grammar file directory.
882 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
883 * skeletons.at: New file.
884 (relative skeleton file names): New test case.
885 (installed skeleton file names): New test case.
886 * tests/testsuite.at: Include skeletons.at.
887
888 * bootstrap: Update copyright to 2007.
889
8902007-01-17 Paolo Bonzini <bonzini@gnu.org>
891
892 * bootstrap: Remove occurrences of .#bootmp from the files.
893
8942007-01-17 Akim Demaille <akim@epita.fr>
895
896 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
897 nonterminals.
898 Use per-type %printer.
899
9002007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
901
902 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
903 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
904 djgpp/config.site, src/files.c, src/files.h, src/main.c,
905 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
906 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
907 tests/glr-regression.at, tests/input.at, tests/local.at,
908 tests/output.at, tests/torture.at: Update copyright to 2007.
909
9102007-01-16 Akim Demaille <akim@epita.fr>
911
912 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
913 error code.
914 (Calc++ Scanner): Exit with failure if we can't open the input
915 file.
916 Accept "-" standing for stdin.
917 (Calc++ Top Level): Print the result only if the parsing was
918 successful.
919
9202007-01-16 Akim Demaille <akim@epita.fr>
921
922 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
923
9242007-01-15 Paolo Bonzini <bonzini@gnu.org>
925 and Joel E. Denny <jdenny@ces.clemson.edu>
926
927 Clean up %define and %code implementation in M4 some. Most
928 importantly, rename all related macros to be in the b4_percent_define
929 and b4_percent_code namespaces. Also, complete support for `.' in
930 %define variable names and %code qualifiers.
931 * data/bison.m4 (b4_check_user_names): Check for special
932 "SKELETON-NAMESPACE(name)" macros instead of using two nested
933 m4_foreach loops.
934 (b4_get_percent_define, b4_get_percent_code): Rename to...
935 (b4_percent_define_get, b4_percent_code_get): ... these.
936 Extend documentation with examples.
937 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
938 b4_percent_define_skeleton_variables and
939 b4_percent_code_skeleton_qualifiers.
940 Expect any value for the %define variable `foo' to be stored in the
941 macro named `b4_percent_define(foo)'; expect any %code blocks for the
942 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
943 expect any unqualified %code blocks to be stored in a macro named
944 `b4_percent_code_unqualified'.
945 Use m4_indir so that %define variable names and %code qualifiers can
946 contain `.', which is allowed by the grammar parser.
947 (b4_percent_define_default): New macro to set a default value for a
948 %define variable.
949 (m4_wrap): Update wrapped code, and fix some underquoting.
950 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
951 Expect grammar uses of %define variables and %code qualifiers to be
952 defined in b4_percent_define_user_variables and
953 b4_percent_code_user_qualifiers.
954 * data/c++.m4: Use b4_percent_define_default rather than
955 m4_define_default. Fix some underquoting. Skeleton usage of %define
956 variable define_location_comparison now implies skeleton usage of
957 %define variable filename_type.
958 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
959 data/push.c, data/yacc.c: Update macro names.
960 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
961 muscle names.
962
9632007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
964
965 DJGPP specific issues.
966
967 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
968 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
969
9702007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
971
972 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
973 run parsers in all tests so that Valgrind is invoked during
974 maintainer-check-valgrind.
975 (Duplicate representation of merged trees): Free all semantic values.
976 (Duplicated user destructor for lookahead): Likewise.
977
9782007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
979
980 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
981 command-line prefix.
982 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
983 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
984 miss Valgrind messages.
985 (Exploding the Stack Size with Malloc): Likewise.
986
9872007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
988
989 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
990 locals. Reported by Juan Manuel Guerrero at
991 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
992 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
993 Fix some indentation also.
994 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
995 explaining this issue.
996
9972007-01-09 Paolo Bonzini <bonzini@gnu.org>
998 and Joel E. Denny <jdenny@ces.clemson.edu>
999
1000 Simplify union and prologue handling, and escape union and lex/parse
1001 params with digraphs.
1002 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
1003 values to the empty string since these are no longer guaranteed
1004 initialized by the front-end.
1005 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
1006 braces around b4_user_stype since this is no longer done by the
1007 front-end.
1008 * src/files.c, src/files.h (pre_prologue_obstack,
1009 post_prologue_obstack): Remove.
1010 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
1011 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
1012 with digraphs. This fixes lex params and parse params.
1013 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
1014 * src/output.c (prepare): Remove muscle insertion of the prologues.
1015 (output): Remove freeing of pre_prologue_obstack and
1016 post_prologue_obstack.
1017 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
1018 than prologue_augment for prologue parsing so you don't need prologue
1019 obstacks.
1020 (grammar_declaration): For %union RHS, use `braceless' instead of
1021 "{...}" so that braces are already stripped and code is escaped with
1022 digraphs.
1023 * src/reader.c (prologue_augment): Remove.
1024 (reader): Remove initialization of pre_prologue_obstack and
1025 post_prologue_obstack.
1026 * src/reader.h (prologue_augment): Remove.
1027
1028 * data/c.m4: Remove stray parenthesis.
1029
10302007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1031
1032 Remove quotes from variables names in %define directives and from
1033 qualifiers in %code directives, and restrict the characters that are
1034 allowed in them to M4-friendly ones. For %define, continue to support
1035 the quoted form as a deprecated feature. Discussed starting at
1036 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
1037 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
1038 %code.
1039 * doc/bison.texinfo (Prologue Alternatives): Update.
1040 (Decl Summary): In %defines entry, update mention of `%code requires'
1041 and `%code provides'.
1042 (C++ Location Values): Update %define uses.
1043 (Calc++ Parser Interface): Likewise.
1044 (Calc++ Parser): Likewise, and update `%code requires' uses.
1045 (Table of Symbols): Update %code documentation.
1046 * src/parse-gram.y (prologue_declaration): For %define variables, use
1047 `variable' instead of `STRING'.
1048 (grammar_declaration): For %code qualifiers, use `ID' instead of
1049 `STRING'.
1050 (variable): New nonterminal that takes an `ID' or a `STRING'.
1051 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
1052 and %define uses.
1053 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
1054 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
1055 (%define errors): Update %define uses.
1056
10572007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1058
1059 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
1060 instead of muscle_insert for %define values so that M4-special
1061 characters are replaced with digraphs.
1062 * tests/input.at (%define errors): Extend to check weird values.
1063
10642007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
1065
1066 Instead of having skeletons declare all valid %define variables and
1067 %code qualifiers, provide macros that retrieve the associated values
1068 and build these lists automatically. Thus Bison will now warn when a
1069 variable or qualifier is not used by the skeleton in the current
1070 invocation regardless of whether it might sometimes be used by that
1071 skeleton in other invocations. Also, move all %define value macros to
1072 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
1073 form, which is replaced by %code.
1074 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
1075 (b4_check_user_names): ... this, and change the series of valid name
1076 arguments to a single list argument for names used in the skeleton
1077 similar to the existing list argument for names used in the grammar.
1078 Warn instead of complaining.
1079 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
1080 values and %code code, to format %code code properly, and to build
1081 lists of all %define variables and %code qualifiers used in the
1082 skeleton: b4_skeleton_percent_define_variables and
1083 b4_skeleton_percent_code_qualifiers.
1084 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
1085 Remove, and...
1086 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
1087 the skeleton names lists can finish building first. In place of
1088 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
1089 expect the lists b4_user_percent_define_variables and
1090 b4_user_percent_code_qualifiers.
1091 * data/c++.m4: Where setting default values for b4_parser_class_name,
1092 b4_location_type, b4_filename_type, b4_namespace, and
1093 b4_define_location_comparison, update their names to the
1094 b4_percent_define_ namespace.
1095 * data/glr.c: Don't use b4_check_percent_define_variables and
1096 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
1097 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
1098 (b4_parser_class_name, b4_namespace): Define these using
1099 b4_get_percent_define for parser_class_name and namespace.
1100 * data/location.cc: Use b4_get_percent_define.
1101 * data/push.c: Don't use b4_check_percent_define_variables and
1102 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
1103 * data/yacc.c: Likewise, and don't call m4_exit in
1104 b4_use_push_for_pull_if or m4_wrap code will never execute.
1105 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
1106 Rename to...
1107 (muscle_grow_user_name_list): ... this for consistency with the
1108 terminology used in bison.m4.
1109 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
1110 %define variable names, and rename muscle used_percent_define_variables
1111 to user_percent_define_variables.
1112 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
1113 user_percent_code_qualifiers.
1114 (content): Remove.
1115 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
1116 {CODE} form is no longer accepted.
1117 * tests/input.at (Reject bad %code qualifiers): Rename to...
1118 (Reject unused %code qualifiers): ... this, and update test output.
1119 (%define error): Update test output.
1120
11212007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
1122
1123 Check for unrecognized %define variables similar to checking for
1124 unrecognized %code qualifiers. Check for redefined %define variables.
1125 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
1126 generalizes...
1127 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
1128 (b4_check_percent_define_variables): New, also wraps it.
1129 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
1130 variables using b4_check_percent_define_variables.
1131 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
1132 all those exercised in the test suite and all those listed in the
1133 `Default values' section of c++.m4. Are there others?
1134 * data/push.c, data/yacc.c: Declare no valid %define variables.
1135 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
1136 similar to muscle_find, but it works even when the muscle stores a
1137 const value.
1138 (muscle_grow_used_name_list): New function for constructing the used
1139 name list muscles that b4_check_for_unrecognized_names requires.
1140 * src/parse-gram.y (prologue_declaration): Warn if a variable is
1141 %define'd more than once. Define the b4_used_percent_define_variables
1142 muscle with muscle_grow_used_name_list.
1143 (grammar_declaration): Abbreviate %code code with
1144 muscle_grow_used_name_list.
1145 * tests/input.at (%define errors): New.
1146
11472007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1148
1149 Provide warn_at, complain_at, and fatal_at function callbacks to the
1150 skeletons, and use this for %code qualifier complaints.
1151 * data/bison.m4 (b4_error_at): New, invoked by...
1152 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
1153 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
1154 @fatal_at(...@) directives.
1155 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
1156 qualifiers in b4_used_percent_code_qualifiers and to use
1157 b4_complain_at.
1158 * src/location.c, src/location.h (boundary_set_from_string): New global
1159 function.
1160 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
1161 function.
1162 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
1163 to b4_used_percent_code_qualifiers.
1164 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
1165 function.
1166 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
1167 (lineno): Rename to...
1168 (out_lineno): ... this so I don't misunderstand it again.
1169 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
1170 here; these newlines are in the input but not the output file.
1171 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
1172 (at_directive_perform): ... this new static function, and add handling
1173 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
1174 directives.
1175 * tests/input.at (Reject bad %code qualifiers): Update test output with
1176 locations and extend.
1177
1178 * tests/output.at (Output file name: [, Output file name: ]): Remove
1179 bogus comment about these tests failing.
1180
11812007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
1182
1183 Clean up b4_check_percent_code_qualifiers a little.
1184 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
1185 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
1186 documentation and add examples.
1187 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
1188 qualifiers here.
1189
11902007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
1191
1192 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
1193 unreliable -- especially when they're hidden inside another macro.
1194 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
1195 data/c.m4: Remove m4_divert(-1).
1196 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
1197 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
1198 m4_divert_push(0) and m4_divert_pop(0).
1199 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
1200 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
1201 pushed and popped by m4sugar, should be first on the stack.
1202
1203 Provide warn, complain, and fatal function callbacks to the skeletons.
1204 This provides more flexibility than m4_fatal, improves the error
1205 message format, and captures messages for translation. Discussed
1206 starting at
1207 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
1208 * data/bison.m4 (b4_error): New, invoked by...
1209 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
1210 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
1211 directives. Because these M4 macros might be called when the current
1212 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
1213 the previous removal of uses of m4_divert, which caused trouble.
1214 (b4_check_percent_code_qualifiers): Use b4_complain instead of
1215 m4_fatal to report unrecognized %code qualifiers.
1216 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
1217 push parser requests.
1218 * data/glr.c: Use b4_complain instead of m4_fatal to report
1219 non-deterministic push parser requests.
1220 Update @output usage to @output(...@) form.
1221 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
1222 report missing %defines. Update @output usage to @output(...@) form.
1223 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
1224 @output(...@) form.
1225 * src/main.c (main): Invoke skel_scanner_free.
1226 * src/scan-skel.h (skel_scanner_free): Prototype new function.
1227 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
1228 obstack_for_string from flex-scanner.h.
1229 (YY_DECL): Use to declare skel_lex static.
1230 (decode_at_digraphs): Remove; now handled in the new
1231 SC_AT_DIRECTIVE_ARG start condition.
1232 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
1233 functions.
1234 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
1235 at_directive_argv): New static globals.
1236 (INITIAL): Use fail_for_invalid_at.
1237 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
1238 recognize the start of a generalized `@directive(...@)' form and
1239 start...
1240 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
1241 directive args (using the new obstack_for_string), to decode the
1242 contained @ diagraphs, and to perform the directive. It recognizes
1243 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
1244 @output(...@).
1245 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
1246 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
1247 `@,'.
1248 (scan_skel): Initialize obstack_for_string on the first call.
1249 (skel_scanner_free): New function to free obstack_for_string.
1250 * tests/input.at (Reject bad %code qualifiers): Update test output.
1251
12522007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
1253
1254 Consolidate the 4 prologue alternative directives (%code, %requires,
1255 %provides, and %code-top) into a single %code directive with an
1256 optional qualifier field. Discussed at
1257 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
1258 * NEWS (2.3a+): Rewrite the existing entry for the prologue
1259 alternatives.
1260 * doc/bison.texinfo (Prologue Alternatives): Update.
1261 (Decl Summary): Update to %code "requires" and %code "provides".
1262 (Calc++ Parser): Update to %code "requires".
1263 (Table of Symbols): Remove entries for %requires, %provides, and
1264 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
1265 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
1266 are replaced by b4_percent_code_provides and b4_percent_code_requires,
1267 which are skeleton-specific.
1268 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
1269 declare what %code qualifiers it supports and to complain if any other
1270 qualifiers were used in the grammar.
1271 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
1272 and b4_user_code([b4_percent_code_provides]) in place of
1273 b4_user_requires and b4_user_provides.
1274 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
1275 Add b4_user_code([b4_percent_code_top]) and
1276 b4_user_code([b4_percent_code]).
1277 Invoke b4_check_percent_code_qualifiers.
1278 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
1279 PERCENT_REQUIRES): Remove.
1280 (grammar_declaration): Remove RHS's for %code-top, %provides, and
1281 %requires. Rewrite the %code RHS as the unqualified form defining the
1282 muscle b4_percent_code. Add another RHS for the qualified %code form,
1283 which defines muscles of the form b4_percent_code_QUALIFIER and the
1284 b4_used_percent_code_qualifiers muscle.
1285 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
1286 PERCENT_REQUIRES): Remove.
1287 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
1288 %code "requires" and %code "provides".
1289 * tests/input.at (Reject bad %code qualifiers): New.
1290
12912007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
1292
1293 Use the new code_props interface for destructors and printers.
1294 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
1295 printer_location members, and change the type of the destructor and
1296 printer members to code_props.
1297 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
1298 symbol_printer_get, semantic_type_destructor_set,
1299 semantic_type_printer_set, default_tagged_destructor_set,
1300 default_tagless_destructor_set, default_tagged_printer_set,
1301 default_tagless_printer_set): Use code_props in arguments and return
1302 types in place of char const * and location.
1303 (symbol_destructor_location_get, symbol_printer_location_get): Remove
1304 since the locations are now contained in the return of
1305 symbol_destructor_get and symbol_printer_get.
1306 * src/output.c (symbol_destructors_output, symbol_printers_output):
1307 Replace with...
1308 (symbol_code_props_output): ... this to eliminate duplicate code.
1309 (output_skeleton): Update to use symbol_code_props_output.
1310 * src/reader.c (symbol_should_be_used): Update use of
1311 symbol_destructor_get.
1312 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
1313 Update uses of the various _destructor_set and _printer_set functions.
1314 * src/symtab.c: (default_tagged_destructor_location,
1315 default_tagless_destructor_location, default_tagged_printer_location,
1316 default_tagless_printer_location): Remove since we...
1317 (default_tagged_destructor, default_tagless_destructor,
1318 default_tagged_printer, default_tagless_printer): ... change the type
1319 of these to code_props.
1320 (symbol_new, semantic_type_new, symbol_destructor_set,
1321 semantic_type_destructor_set, symbol_destructor_get,
1322 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
1323 symbol_check_alias_consistency, default_tagged_destructor_set,
1324 default_tagless_destructor_set, default_tagged_printer_set,
1325 default_tagless_printer_set): Update.
1326 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
1327 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
1328 code_props members.
1329 (symbol_print): Use SYMBOL_CODE_PRINT.
1330
13312007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
1332
1333 Use the new code_props interface for rule actions.
1334 * src/symlist.h (symbol_list): Replace action, action_location, and
1335 used members with a code_props action_props member.
1336 * src/reader.c (symbol_should_be_used, grammar_rule_check,
1337 grammar_midrule_action, grammar_current_rule_merge_set,
1338 grammar_current_rule_symbol_append, packgram): Update.
1339 * src/scan-code.h (translate_rule_action): Remove, no longer used.
1340 * src/scan-code.l (handle_action_dollar): Update.
1341 (translate_rule_action): Remove, no longer used.
1342 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
1343
13442007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1345
1346 Use the new code_props interface in parse-gram.y.
1347 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
1348 Update all uses of translate_* functions to use the new code_props
1349 interface and to use gram_scanner_last_string_free and
1350 code_scanner_last_string_free where possible.
1351 (grammar_declaration): symbol_list_destructor_set and
1352 symbol_list_printer_set now perform the translation, so don't do it
1353 here. Use gram_scanner_last_string_free where possible.
1354 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
1355 translate_code): Remove, no longer used.
1356 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
1357 symbol_list_printer_set): Perform code translation here rather than
1358 depending on the caller to do so.
1359
1360 * src/symlist.h (struct symbol_list): Correct some documentation typos.
1361 * src/scan-gram.h (gram_last_string): Remove declaration.
1362 * src/scan-gram.l (last_string): Declare it static.
1363
13642007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
1365
1366 Encapsulate code properties and related functionality for the various
1367 destructors, printers, and actions into a code_props structure and
1368 interface. This patch merely implements code_props in scan-code.h and
1369 scan-code.l. Future patches will rewrite other modules to use it.
1370 Discussed starting at
1371 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
1372 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
1373 consistently initialize const structs that have an empty location
1374 field.
1375 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
1376 to ensure consistency.
1377 * src/scan-code.h (code_props): New structure.
1378 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
1379 function, macro, and const global variable for initializing a
1380 code_props with no code.
1381 (code_props_plain_init, code_props_symbol_action_init,
1382 code_props_rule_action_init, code_props_translate_code): The rest of
1383 the new code_props functional interface. Among other things, the init
1384 functions set the code_props kind field so that
1385 code_props_translate_code will know whether to behave like
1386 translate_symbol_action, translate_rule_action, or translate_code.
1387 These old translate functions must remain until all other modules are
1388 updated to use the new code_props interface.
1389 (code_scanner_last_string_free): New function similar to
1390 gram_scanner_last_string_free.
1391 (code_scanner_free): Add documentation.
1392 * src/scan-code.l: Implement the new interface.
1393 (code_lex): Make it static, add a code_props* argument, and remove the
1394 rule argument.
1395 (last_string): New static global similar to the one in scan-gram.l.
1396 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
1397 instead of rule.
1398 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
1399 code_props since Bison may one day use this information for destructors
1400 and printers.
1401 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
1402 (handle_action_dollar): Use symbol_list_n_get and set used flag
1403 directly since symbol_list_n_used_set is removed.
1404 (translate_action): Add a code_props* argument and remove the rule,
1405 action, and location arguments. Pass the code_props* on to code_lex.
1406 (translate_rule_action, translate_symbol_action, translate_code):
1407 Rewrite as wrappers around the new code_props interface.
1408 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
1409 it would eventually need to break the encapsulation of code_props.
1410
14112007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
1412
1413 * etc/.cvsignore: New.
1414
14152007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
1416
1417 Add maintainer-push-check to run maintainer-check using push parsing in
1418 place of pull parsing where available.
1419 * Makefile.am (maintainer-push-check): New.
1420 * data/bison.m4 (b4_use_push_for_pull_if): New.
1421 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
1422 appropriately based on their existing values.
1423 (yypush_parse): Don't print push-parser-specific diagnostics if push
1424 parsing is being used in place of pull parsing.
1425 * data/yacc.c: If push parsing should replace pull parsing, redirect to
1426 push.c.
1427 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
1428 variable, and insert b4_use_push_for_pull_flag into muscles.
1429 * tests/Makefile.am (maintainer-push-check): New.
1430
14312006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
1432
1433 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
1434 (whether successful or failed) so that yypush_parse can be invoked
1435 again to start a new parse using the same yypstate.
1436 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
1437 check multiple yypull_parse invocations on the same yypstate. For pull
1438 mode, extend to check multiple yyparse invocations.
1439 (Exploding the Stack Size with Alloca): Extend to try with
1440 %push-pull-parser.
1441 (Exploding the Stack Size with Malloc): Likewise.
1442
1443 * tests/calc.at (Simple LALR Calculator): Don't specify
1444 %skeleton "push.c" since %push-pull-parser implies that now.
1445 * tests/headers.at (export YYLTYPE): Don't check for the push
1446 declarations. Otherwise, this test case can't be used to see if push
1447 mode can truly emulate pull mode.
1448 * tests/input.at (Torturing the Scanner): Likewise.
1449 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
1450 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
1451 AT_YACC_IF, which now includes the case of push mode since %skeleton
1452 need not be used for push mode. This will be more intuitive once
1453 push.c is renamed to yacc.c.
1454
14552006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
1456
1457 For push mode, convert yyparse from a macro to a function, invoke yylex
1458 instead of passing a yylexp argument to yypull_parse, and don't
1459 generate yypull_parse or yyparse unless %push-pull-parser is declared.
1460 Discussed starting at
1461 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
1462 * data/bison.m4 (b4_pull_if): New.
1463 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
1464 * data/push.c: Improve M4 quoting a little.
1465 (b4_generate_macro_args, b4_parenthesize): Remove.
1466 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
1467 any time a pull parser is requested.
1468 Don't #define this as a wrapper around yypull_parse. Instead, when
1469 both push and pull are requested, make it a function that does that
1470 same thing.
1471 (yypull_parse): If there's a b4_prefix, #define this to
1472 b4_prefix[pull_parse] when both push and pull are requested.
1473 Don't define this as a function unless both push and pull are
1474 requested.
1475 Remove the yylexp argument and hard-code yylex invocation instead.
1476 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
1477 %push-parser.
1478 * src/getargs.c (pull_parser): New global initialized to true.
1479 * getargs.h (pull_parser): extern it.
1480 * src/output.c (prepare): Insert pull_flag muscle.
1481 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
1482 (prologue_declaration): Set both push_parser and pull_parser = true for
1483 %push-pull-parser. Set push_parser = true and pull_parser = false for
1484 %push-parser.
1485 * src/scan-gram.l: Don't accept %push_parser as an alternative to
1486 %push-parser since there's no backward-compatibility concern here.
1487 Scan %push-pull-parser.
1488 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
1489 instead of %push-parser.
1490 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
1491 prototype it in the module that calls yyparse.
1492 * tests/input.at (Torturing the Scanner): Likewise.
1493 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
1494
14952006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
1496
1497 Update etc/bench.pl. Optimize push mode a little (the yyn change
1498 deserves most of the credit).
1499 * Makefile.am (SUBDIRS): Add etc subdirectory.
1500 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
1501 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
1502 yytoken, yyval, and yyloc declarations to...
1503 (yyparse or yypush_parse): ... here to improve performance. For
1504 yypush_parse invocations after the first, be sure to assign yyn its old
1505 value again.
1506 (yypstate_new): Don't bother initializing the yyresult field since the
1507 initial value isn't used.
1508 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
1509 remove the #define that, in push mode, set it to yyps->NAME.
1510 * etc/Makefile.am: New.
1511 * etc/bench.pl: Remove and build it instead from...
1512 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
1513 "tests/bison" from the build directory by default rather than just
1514 invoking "bison" from $PATH.
1515 (calc_grammar): Update push parser code: don't declare yylval globally,
1516 don't define yyparse_wrapper, and don't #define yyparse.
1517 (bench_grammar): Update to check all working combinations of yacc.c,
1518 push.c, impure, pure, pull, and push.
1519
15202006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
1521
1522 For push mode, add pull wrappers around yypush_parse.
1523 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
1524 (yypull_parse): New function wrapping yypush_parse.
1525 (yyparse): New #define wrapping yypull_parse.
1526 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
1527 is declared.
1528 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
1529 prototype yylex in the module that calls yyparse, and don't prototype
1530 yyparse there. Otherwise, the yyparse expansion won't compile.
1531 * tests/input.at (Torturing the Scanner): Likewise.
1532
15332006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
1534
1535 Enable push parsers to operate in impure mode. Thus, %push-parser no
1536 longer implies %pure-parser. The point of this change is to move
1537 towards being able to test the push parser code by running the entire
1538 test suite as if %push-parser had been declared.
1539 * data/push.c (yypush_parse): For impure mode, remove the
1540 yypushed_char, yypushed_val, and yypushed_loc arguments.
1541 Instead, declare these as local variables initialized to the global
1542 yychar, yylval, and yylloc.
1543 For the first yypush_parse invocation only, restore the initial values
1544 of these global variables when it's time to read a token since they
1545 have been overwritten.
1546 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
1547 %push-parser.
1548 * tests/calc.at (Simple LALR(1) Calculator): Always declare
1549 %pure-parser along with %push-parser since this test case was designed
1550 for pure push parsers.
1551 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
1552 (AT_YACC_OR_PUSH_IF): New.
1553 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
1554 add a note that it's still wrong for some cases (as it has been for a
1555 while).
1556 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
1557 %push-parser no longer implies %pure-parser.
1558
15592006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1560
1561 Remove some unnecessary differences between the pull parser code and
1562 the push parser code. This patch enables yynerrs in push mode.
1563 * data/push.c: Reformat M4 a little.
1564 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
1565 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
1566 because push mode is on. Instead, if pure mode is on, move yynerrs
1567 to...
1568 (b4_declare_parser_state_variables): ... here.
1569 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
1570 to yyps->NAME so it can be used in yypush_parse.
1571 (yypush_parse): Don't omit uses of yynerrs in push mode.
1572
15732006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1574
1575 Fix bug such that the first pushed token's value and location are
1576 sometimes overwritten (sometimes by %initial-action) before being used.
1577 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
1578 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
1579 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
1580 more closely mimic the pull parser logic.
1581 Don't copy the pushed token to yychar, yylval, and yylloc until it's
1582 time to read a token, which is after any initialization of yylval and
1583 yylloc.
1584 (gottoken): Rename label to...
1585 (yyread_pushed_token): ... for clarity and to avoid infringing on the
1586 user namespace.
1587
15882006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
1589
1590 Rearrange initialization of the parser state variables so that the
1591 skeleton doesn't have to have a copy for pull mode and another for push
1592 mode. This patch also fixes at least a bug such that yylloc was not
1593 initialized (with b4_location_initial_line and
1594 b4_location_initial_column) upon calling yypush_parse. However, that
1595 initialization now overwrites the first token's location;
1596 %initial-action assigning @$ already did the same thing, and both bugs
1597 will be fixed in a later patch.
1598 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
1599 (b4_declare_parser_state_variables): Remove initialization of yytoken,
1600 yyss, yyvs, yyls, and yystacksize.
1601 (yypstate_new): Remove initialization of some yypstate fields: yystate,
1602 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
1603 yylsp.
1604 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
1605 yyps->NAME so it can be used in yypush_parse.
1606 (yyparse or yypush_parse): For yypush_parse, don't print the
1607 "Starting parse" diagnostic for invocations after the first.
1608 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
1609 yypush_parse, only do it for the first invocation.
1610 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
1611 initialization to occur in yypush_parse but only on the first
1612 invocation.
1613
16142006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1615
1616 * data/push.c: Add CPP guards around push parser declarations in both
1617 the header and the code file.
1618 In the code file, move the push parser declarations to the same place
1619 they appear in the header file.
1620 Clean up the M4 some, especially the inconsistent underquoting in
1621 some b4_c_function_def and b4_c_function_decl uses.
1622
16232006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1624
1625 Encapsulate the push parser state variables into an M4 macro so the
1626 push skeleton doesn't have to list them again for pull mode's yyparse.
1627 For push mode, remove yypush_parse's local equivalents of these
1628 variables to eliminate unnecessary copying between the two sets at
1629 run-time. This patch also fixes at least a bug related to multiple
1630 %initial-action invocations in push mode.
1631 * data/push.c (b4_declare_parser_variables): Rename to...
1632 (b4_declare_scanner_communication_variables): ... this for clarity and
1633 update both uses.
1634 (b4_declare_yyparse_variables): Remove and move its contents to the one
1635 spot where it was invoked.
1636 (b4_declare_parser_state_variables): New macro containing the parser
1637 state variables required by push mode.
1638 (struct yypstate): Replace all fields but yynew with
1639 b4_declare_parser_state_variables.
1640 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
1641 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
1642 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
1643 (yyparse or yypush_parse): For yyparse in pull mode, replace local
1644 parser state variable declarations with
1645 b4_declare_parser_state_variables.
1646 Don't initialize parser state variables when calling yypush_parse since
1647 yypstate_new already does that.
1648 Invoke the user's initial action only upon the first yypush_parse
1649 invocation.
1650 Remove all code that copies between the local parser state variables
1651 and the yypstate.
1652
16532006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
1654
1655 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
1656 prevent a name collision in a future patch where these names will
1657 sometimes be #define'd.
1658 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
1659 since it no longer has the same name as the existing argument.
1660 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
1661
16622006-12-19 Paolo Bonzini <bonzini@gnu.org>
1663 and Joel E. Denny <jdenny@ces.clemson.edu>
1664
1665 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1666 that the argument is case-insensitive, and there's no `=' here.
1667 For the %skeleton entry, mention that %language is better.
1668 (Bison Options): Likewise for --language and --skeleton. Move the
1669 --skeleton entry so that the `Tuning the parser' section is sorted
1670 alphabetically on long options.
1671 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
1672 %language directive in detail here; cross-reference the %language
1673 documentation instead.
1674 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
1675 `%require "2.3b"' so that the example is always up-to-date.
1676 (Table of Symbols): Add entries for %language and %skeleton.
1677 * examples/extexi (normalize): Instead of replacing every %require
1678 argument with the current Bison version, just substitute for
1679 `@value{VERSION}'. This guarantees that we're testing what actually
1680 appears in the documentation.
1681 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
1682 rather than `@VERSION@'.
1683
16842006-12-18 Paul Eggert <eggert@cs.ucla.edu>
1685
1686 * NEWS: Reword the %language news a bit, and put it earlier.
1687
1688 * src/getargs.c (skeleton_arg): Last arg is now location const *.
1689 Rewrite to simplify the logic.
1690 (language_argmatch): Likewise.
1691 (program_name): We now own this var.
1692 * src/getargs.h (struct bison_language): Use char[] rather than
1693 const char *.
1694
1695 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
1696 Java is supported.
1697 * src/complain.c (program_name): Remove decl; no longer needed.
1698 * src/main.c (program_name): Remove; now belongs to getargs.
1699
17002006-12-18 Paolo Bonzini <bonzini@gnu.org>
1701
1702 * NEWS: Document %language.
1703
1704 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
1705
1706 * data/c-skel.m4, data/c++-skel.m4: New files.
1707 * data/glr.c: Complain on push parsers.
1708
1709 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
1710 over %skeleton.
1711 (Decl Summary): Document %language and %skeleton.
1712 (Command line): Document -L.
1713
1714 * examples/extexi: Rewrite %require directive.
1715 * examples/calc++/Makefile.am: Pass VERSION to extexi.
1716
1717 * src/files.c (compute_exts_from_gc): Look in language structure
1718 for .y extension.
1719 (compute_file_name_parts): Check whether .tab should be added.
1720 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
1721 (language, skeleton_arg, language_argmatch): New.
1722 (long_options): Add --language.
1723 (getargs): Use skeleton_arg, add -L/--language.
1724 * src/getargs.h: Include location.h.
1725 (struct bison_language, language, skeleton_arg, language_argmatch): New.
1726 * src/output.c (prepare): Pick default skeleton from struct language.
1727 Don't dispatch C skeletons here.
1728 * src/parse-gram.y (PERCENT_LANGUAGE): New.
1729 (prologue_declaration): Add "%language" rule, use skeleton_arg.
1730 * src/scan-gram.l ("%language"): New rule.
1731
1732 * tests/calc.at: Test %skeleton and %language.
1733 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
1734 (AT_GLR_IF): Look for %skeleton "glr.cc".
1735 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
1736 (AT_YACC_IF): Reject %language.
1737
17382006-12-18 Paul Eggert <eggert@cs.ucla.edu>
1739
1740 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
1741 since it wasn't used; only the typedef name 'semantic_type' is needed.
1742 Also, omit trailing white space.
1743
1744 * bootstrap: Sync from coreutils.
1745 (gnulib_extra_files): Add build-aux/announce.gen.
1746 (slurp): Adjust .gitignore files like .cvsignore files.
1747 * build-aux/announce-gen: Remove from CVS, since bootstrap
1748 now creates this.
1749
17502006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
1751
1752 Make %push-parser imply %pure-parser. This fixes several bugs; see
1753 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
1754 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
1755 pure_parser = true.
1756 * data/push.c: Don't bother testing b4_push_if when deciding whether
1757 to expand b4_declare_parser_variables globally.
1758 (yypush_parse): Likewise in here.
1759
1760 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
1761 (yy_reduce_print): Reformat M4 for readability.
1762
17632006-12-15 Bob Rossi <bob@brasko.net>
1764 and Joel Denny <jdenny@ces.clemson.edu>
1765
1766 * data/push.c (yypstate): Add typedef, and update all uses of
1767 struct yypstate to just yypstate.
1768 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
1769
17702006-12-14 Bob Rossi <bob@brasko.net>
1771
1772 * data/push.c (yypush_parse): Declare prototype regardless of
1773 %locations option.
1774
17752006-12-14 Bob Rossi <bob@brasko.net>
1776
1777 * data/push.c (yyparse): Remove the prototype and the #define when in
1778 push-parser mode.
1779
17802006-12-13 Bob Rossi <bob@brasko.net>
1781
1782 * data/push.c (yypstate_init): Rename to...
1783 (yypstate_new): ... this and use b4_c_function_def.
1784 (yypstate_delete): New.
1785 (yypush_parse): Change parameters yynval and yynlloc to be const.
1786 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
1787 yypstate_delete functions.
1788
17892006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
1790
1791 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
1792 strange test case titles. Reported by Bob Rossi.
1793
17942006-12-13 Paul Eggert <eggert@cs.ucla.edu>
1795
1796 * TODO: Add pointer to Sylvain Schmitz's work on static detection
1797 of potential ambiguities in GLR grammers.
1798
17992006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
1800
1801 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
1802 `bison ', use m4_index instead of m4_substr since chopping up a string
1803 containing M4-special characters causes problems here.
1804
1805 Fix a couple of bugs related to special characters in user-specified
1806 file names, and make it easier for skeletons to compute output file
1807 names with the same file name prefix as Bison-computed output file
1808 names.
1809 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
1810 b4_parser_file_name and b4_spec_defines_file instead of
1811 @output_parser_name@ and @output_header_name@, which are now redundant.
1812 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
1813 b4_parser_file_name, b4_spec_defines_file, and the new
1814 @basename(FILENAME@) instead of @output_parser_name@ and
1815 @output_header_name@, which inappropriately escaped the file names as
1816 C string literals.
1817 * src/files.c (all_but_ext): Remove static qualifier.
1818 (compute_output_file_names): Move `free (all_but_ext)' to...
1819 (output_file_names_free): ... here since all_but_ext is needed later.
1820 * src/files.h (all_but_ext): Extern.
1821 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
1822 exactly what MUSCLE_INSERT_STRING used to do.
1823 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
1824 characters are escaped properly.
1825 * src/output.c (prepare): Define muscle file_name_all_but_ext as
1826 all_but_ext.
1827 For pkgdatadir muscle, maintain previous functionality by using
1828 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
1829 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
1830 digraphs would never be expanded. Hopefully no one has M4-special
1831 characters in his Bison installation path.
1832 * src/scan-skel.l: Don't parse @output_header_name@ and
1833 @output_parser_name@ anymore since they're now redundant.
1834 In @output, use decode_at_digraphs.
1835 Parse a new @basename command that invokes last_component.
1836 (decode_at_digraphs): New.
1837 (BASE_QPUTS): Remove unused.
1838 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
1839 (Output file name): New tests.
1840
18412006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
1842
1843 Warn about output files that are generated by the skeletons and that
1844 conflict with other output files.
1845 * data/glr.c: Don't generate the header file here when glr.cc does.
1846 * src/files.c (file_names, file_names_count): New static globals.
1847 (compute_output_file_names): Invoke output_file_name_check for files
1848 not generated by the skeletons and remove existing checks.
1849 (output_file_name_check): New function that warns about conflicting
1850 output file names.
1851 (output_file_names_free): Free file_names.
1852 * src/files.h (output_file_name_check): Declare.
1853 * src/scan-skel.l: Invoke output_file_name_check for files generated by
1854 the skeletons.
1855 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
1856 (Conflicting output files): New tests.
1857
18582006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1859
1860 * doc/bison.texinfo: Fix a couple of typos.
1861
18622006-12-08 Bob Rossi <bob@brasko.net>
1863
1864 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
1865 Rename to...
1866 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
1867 update all uses.
1868 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
1869 (yypush_parse): Rename yypvars argument to yyps and remove redundant
1870 local pv.
1871 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
1872 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
1873
18742006-12-07 Bob Rossi <bob@brasko.net>
1875 and Joel Denny <jdenny@ces.clemson.edu>
1876
1877 * data/push.c (yypvarsinit): Change return type from void* to struct
1878 yypvars*. No longer cast to void* on return.
1879 (struct yypvars): Remove yylen since it need not be remembered between
1880 yypushparse invocations.
1881 (yypushparse): Don't copy between yylen and pv->yylen.
1882
18832006-12-05 Bob Rossi <bob@brasko.net>
1884
1885 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
1886 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
1887 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
1888 (struct yypvars): Remove b4_declare_parser_variables.
1889 (yypvarsinit): Remove init code for removed variables.
1890 (global scope): Do not declare b4_declare_parser_variables if
1891 push or pure mode.
1892 (yypushparse): Add b4_declare_parser_variables.
1893 Init new local variables, and remove init code for removed
1894 yypvars variables.
1895 (yyparse): Delete.
1896 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
1897 and yyparse for other modes.
1898 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
1899 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
1900 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
1901 (AT_PURE_LEX_IF): True if pure or push parser.
1902
19032006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
1904
1905 Document Yacc prologue alternatives and default %destructor's and
1906 %printer's as experimental. Don't mention Java yet. Discussed at
1907 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
1908 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
1909 (2.3a): Annotate this entry to say the old forms of these features were
1910 also experimental.
1911 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
1912 Table of Symbols): Say they're experimental. Comment out any mention
1913 of Java (we'll want this back eventually).
1914
19152006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1916
1917 Support a file name argument to %defines. Deprecate `=' in
1918 %file-prefix, %name-prefix, and %output. Discussed at
1919 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
1920 * NEWS (2.3a+): Mention.
1921 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
1922 form of %defines, and remove `=' from entries for %file-prefix,
1923 %name-prefix, and %output.
1924 * src/parse-gram.y (prologue_declaration): Implement.
1925 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
1926 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
1927 all but one occurrence of %name-prefix.
1928 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
1929 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
1930 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
1931 occurrence of each of %file-prefix and %output. Add check for %defines
1932 with argument.
1933 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
1934 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
1935 Remove the `=' from %output.
1936
19372006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
1938
1939 Don't escape $ in test case titles since Autoconf 2.61 now does that
1940 correctly.
1941 * tests/actions.at (Default %printer and %destructor are not for error
1942 or $undefined): Here.
1943 (Default %printer and %destructor are not for $accept): Here.
1944 * tests/input.at (Invalid $n and @n): Here.
1945
19462006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
1947
1948 Rename <!> to <>. Discussed starting at
1949 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
1950 * NEWS (2.3a+): Update.
1951 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
1952 Update.
1953 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
1954 * src/scan-gram.l (INITIAL): Implement.
1955 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
1956 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
1957 comment.
1958 * tests/actions.at (Default tagless %printer and %destructor,
1959 Default tagged and per-type %printer and %destructor,
1960 Default %printer and %destructor are not for error or $undefined,
1961 Default %printer and %destructor are not for $accept,
1962 Default %printer and %destructor for mid-rule values): Update.
1963 * tests/input.at (Default %printer and %destructor redeclared,
1964 Unused values with default %destructor): Update.
1965
19662006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1967
1968 Don't let %prec take a nonterminal.
1969 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
1970 token.
1971 * tests/input.at (%prec takes a token): New test checking that %prec
1972 won't take a nonterminal.
1973
19742006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1975
1976 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
1977 it was double-quoted.
1978 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
1979 grammar is maintained with Bison's highest standards.
1980 * src/getargs.c: Fix some typos in Doxygen comments.
1981
19822006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1983
1984 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
1985 later. Reported by Paul Eggert in
1986 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
1987 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
1988 * src/scan-code.l (translate_action): Don't bother invoking
1989 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
1990 (code_scanner_free): Instead of invoking
1991 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
1992 which frees more.
1993 * src/scan-gram.l (gram_scanner_free): Likewise.
1994 * src/scan-skel.l (scan_skel): Likewise.
1995
19962006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1997
1998 * src/files.c (tr): Change return type to void.
1999 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
2000 has been called previously for the same key.
2001 (muscle_find): Return storage instead of value so that
2002 --enable-gcc-warnings doesn't produce warnings that the return discards
2003 const. aver that the value and storage are the same since storage
2004 could potentially be NULL when value is not.
2005 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
2006 same as 0.
2007
20082006-11-08 Paul Eggert <eggert@cs.ucla.edu>
2009
2010 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
2011 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
2012 us a slightly cleaner distribution, and also works.
2013 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
2014 gnulib changes.
2015
20162006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
2017 and Paul Eggert <eggert@cs.ucla.edu>
2018
2019 Don't let Bison leak memory except when it complains.
2020 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
2021 (spec_defines_file, dir_prefix): Now char *, not const char *,
2022 since they are freed.
2023 * src/files.c: Likewise.
2024 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
2025 Likewise.
2026 (tr): Now operates in-place. All uses changed.
2027 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
2028 values.
2029 (compute_file_name_parts, compute_output_file_names): Don't store
2030 read-only data in variables that will be freed.
2031 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
2032 src_extension, and header_extension.
2033 (output_file_names_free): New public function to free
2034 spec_verbose_file, spec_graph_file, spec_defines_file,
2035 parser_file_name, and dir_prefix.
2036 * src/getargs.c (getargs): Don't store read-only data in variables that
2037 will be freed.
2038 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
2039 (which previously existed but was unused), and quotearg_free.
2040 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
2041 * src/muscle_tab.c: Likewise.
2042 (muscle_entry): Make the value char const *,
2043 and add a new storage member that is char * and can be freed.
2044 (muscle_entry_free): New private function.
2045 (muscle_init): Use it instead of free.
2046 (muscle_insert, muscle_grow): Update and use new storage member.
2047 (muscle_code_grow): Free the string passed to muscle_grow
2048 since it's not needed anymore.
2049 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
2050 add a new `char *code' member.
2051 ("{...}"): Declare semantic type as code.
2052 * src/scan-code.h (translate_rule_action):
2053 (translate_symbol_action, translate_code, translate_action): Return
2054 `char const *' rather than `char *' since external code should not free
2055 these strings.
2056 * src/scan-code.l: Likewise.
2057 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
2058 which is "{...}" in the parser.
2059 * tests/Makefile.am (maintainer-check-valgrind): Set
2060 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
2061 Valgrind.
2062 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
2063 complain.
2064 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
2065 expecting a non-zero exit status sets --leak-check=summary and
2066 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
2067 this case, and we don't want to hear about it.
2068
20692006-11-08 Paul Eggert <eggert@cs.ucla.edu>
2070
2071 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
2072 instead of from the template, to simplify configuration a bit.
2073 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
2074 and m4/wint_t.m4, as they are needed with the latest gnulib.
2075
20762006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
2077
2078 Disable unset/unused mid-rule value warnings by default, and recognize
2079 --warnings=midrule-values to enable them. Discussed starting at
2080 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
2081 * NEWS (2.3a+): Mention.
2082 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
2083 warnings): Add entry for midrule-values subargument.
2084 * src/reader.c (symbol_should_be_used): Don't return true just because
2085 the value is a set/used mid-rule value unless
2086 --warnings=midrule-values was specified.
2087 * tests/input.at (Unused values, Unused values before symbol
2088 declarations): Run tests with and without --warnings=midrule-values.
2089
2090 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
2091 than LIST_FREE directly.
2092
20932006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
2094
2095 Finish implementing --warnings=error, which should not be implied by
2096 --warnings=all (or by its synonyms -W and --warnings without
2097 subarguments).
2098 * src/complain.c (set_warning_issued): New function to report that
2099 warnings are being treated as errors and to record an error if so.
2100 Invoke...
2101 (warn_at, warn): ... here.
2102 * src/getargs.c (warnings_args, warnings_types): Reorder so that
2103 "error - warnings are errors" does not appear above "all - all of the
2104 above".
2105 (getargs): For -W and --warnings without subarguments, don't let
2106 FLAGS_ARGMATCH set warnings_error in warnings_flag.
2107 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
2108
21092006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
2110
2111 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
2112 empty subargument list. For example: `bison --warnings= parser.y'.
2113
21142006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2115
2116 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
2117 the parser header file so that gcc doesn't warn.
2118
21192006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2120
2121 Split the default %destructor/%printer into two kinds: <*> and <!>.
2122 Discussed starting at
2123 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
2124 * NEWS (2.3a+): Mention.
2125 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
2126 previous change today related to mid-rules.
2127 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
2128 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
2129 (TYPE_TAG_ANY): Add as <*>.
2130 (TYPE_TAG_NONE): Add as <!>.
2131 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
2132 for <*> and <!>.
2133 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
2134 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
2135 * src/symlist.c (symbol_list_default_new): Split into tagged and
2136 tagless versions.
2137 (symbol_list_destructor_set, symbol_list_printer_set): Split
2138 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
2139 SYMLIST_DEFAULT_TAGLESS.
2140 * src/symlist.h: Update symbol_list_default*_new prototypes.
2141 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
2142 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
2143 * src/symtab.c (default_destructor, default_destructor_location,
2144 default_printer, default_printer_location): Split each into tagged and
2145 tagless versions.
2146 (symbol_destructor_get, symbol_destructor_location_get,
2147 symbol_printer_get, symbol_printer_location_get): Implement tagged
2148 default and tagless default cases.
2149 (default_destructor_set, default_printer_set): Split each into tagged
2150 and tagless versions.
2151 * src/symtab.h: Update prototypes.
2152 * tests/actions.at (Default %printer and %destructor): Rename to...
2153 (Default tagless %printer and %destructor): ... this, and extend.
2154 (Per-type %printer and %destructor): Rename to...
2155 (Default tagged and per-type %printer and %destructor): ... this, and
2156 extend.
2157 (Default %printer and %destructor for user-defined end token): Extend.
2158 (Default %printer and %destructor are not for error or $undefined):
2159 Update.
2160 (Default %printer and %destructor are not for $accept): Update.
2161 (Default %printer and %destructor for mid-rule values): Extend.
2162 * tests/input.at (Default %printer and %destructor redeclared): Extend.
2163 (Unused values with default %destructor): Extend.
2164
21652006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2166
2167 Don't apply the default %destructor/%printer to an unreferenced midrule
2168 value. Mentioned at
2169 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
2170 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
2171 like $@n instead of just @n so that the default %destructor/%printer
2172 logic doesn't see them as user-defined symbols.
2173 (symbol_is_dummy): Check for both forms of the name.
2174 * src/reader.c (packgram): Remove the `$' from each midrule symbol
2175 name for which the midrule value is referenced in any action.
2176 * tests/actions.at (Default %printer and %destructor for mid-rule
2177 values): New test.
2178 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
2179 for change to dummy symbol names.
2180
21812006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 Warn about unset midrule $$ if the corresponding $n is used.
2184 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
2185 $n usage.
2186 (packgram): Before invoking grammar_rule_check on any rule, make sure
2187 all actions have already been scanned in order to set `used' flags.
2188 Otherwise, checking that a midrule's $$ is set will not always work
2189 properly because the midrule check must forward-reference the midrule's
2190 parent rule.
2191 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
2192 warning.
2193
21942006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
2195
2196 More improvements to the documentation of the prologue alternatives:
2197 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
2198 Bison manual.
2199 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
2200 some text to clarify the relative importance of the new directives and
2201 to show how these directives may be viewed as code labels.
2202
22032006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
2204
2205 Similar to the recently removed %before-header, add %code-top as the
2206 alternative to the pre-prologue. Mentioned at
2207 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
2208 Also, let the prologue alternatives appear in the grammar section.
2209 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
2210 (prologue_declaration): Move the existing prologue alternatives to...
2211 (grammar_declaration): ... here and add %code-top.
2212 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
2213
2214 Clean up and extend documentation for the prologue alternatives.
2215 * NEWS (2.3a+): Describe prologue alternatives.
2216 * doc/bison.texinfo (Prologue): Move discussion of prologue
2217 alternatives to...
2218 (Prologue Alternatives): ... this new section, and extend it to discuss
2219 all 4 directives in detail.
2220 (Table of Symbols): Clean up discussion of prologue alternatives and
2221 add %code-top.
2222
22232006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2224
2225 DJGPP specific issues.
2226
2227 * djgpp/config.bat: config.hin has been moved to lib. Adjust
2228 config.bat accordingly.
2229 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
2230 * djgpp/config.site: Likewise.
2231
22322006-10-16 Paolo Bonzini <bonzini@gnu.org>
2233
2234 Replace %*-header with %provides, %requires, %code. See discussion at
2235 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
2236
2237 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
2238 (b4_user_start_header): Remove.
2239 * data/glr.c: Use new macros instead of b4_*start_header
2240 and b4_*end_header.
2241 * data/glr.cc: Likewise.
2242 * data/lalr1.cc: Likewise.
2243 * data/push.c: Likewise.
2244 * data/yacc.c: Likewise.
2245
2246 * doc/bison.texinfo: Remove %before-header, rename
2247 %{start,end,after}-header to %requires, %provides, %code.
2248
2249 * src/parse-gram.y: Likewise (also rename token names accordingly).
2250 * src/scan-gram.l: Likewise.
2251 * tests/actions.at: Likewise.
2252
22532006-10-14 Paul Eggert <eggert@cs.ucla.edu>
2254
2255 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
2256 Problem reported by Joel E. Denny.
2257
22582006-10-14 Jim Meyering <jim@meyering.net>
2259
2260 (Sync from coreutils.)
2261 Work also when the working directory (with e.g. coreutils sources)
2262 is version controlled with git, rather than CVS.
2263 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
2264 rather than CVS.
2265 In messages and comments, say e.g., "checked-out sources",
2266 rather than "CVS sources".
2267 (version_controlled_file): New function. Work for git as well as
2268 for CVS. Don't use grep's -q option.
2269 (slurp): Call it here, in place of CVS-specific code.
2270
22712006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
2272
2273 Fix testsuite for ./configure --enable-gcc-warnings:
2274 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
2275 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
2276 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
2277 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
2278 * test/regression.at (Diagnostic that expects two alternatives):
2279 Likewise.
2280
22812006-10-12 Paul Eggert <eggert@cs.ucla.edu>
2282
2283 * bootstrap.conf (gnulib_modules): Add config-h.
2284 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
2285 worry about HAVE_CONFIG_H.
2286 * lib/abitset.c: Likewise.
2287 * lib/bitset.c: Likewise.
2288 * lib/bitset_stats.c: Likewise.
2289 * lib/bitsetv-print.c: Likewise.
2290 * lib/bitsetv.c: Likewise.
2291 * lib/ebitset.c: Likewise.
2292 * lib/get-errno.c: Likewise.
2293 * lib/lbitset.c: Likewise.
2294 * lib/subpipe.c: Likewise.
2295 * lib/timevar.c: Likewise.
2296 * lib/vbitset.c: Likewise.
2297 * lib/bitset.c: Include "bitset.h" first, to test interface.
2298 * lib/bitset_stats.c: Include "bitset_stats.h" first.
2299 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
2300 * lib/bitsetv.c: Include "bitsetv.h" first.
2301 * lib/get-errno.c: Include "get-errno.h" first.
2302 * m4/.cvsignore: Add config-h.m4.
2303 * tests/actions.at (Default %printer and %destructor for ...):
2304 Adjust expected line numbers in output to reflect removal of #if
2305 HAVE_CONFIG_H lines.
2306 * tests/glr-regression.at (Missed %merge type warnings when ...):
2307 Likewise.
2308 * tests/regression.at (Braced code in declaration in rules section):
2309 Likewise.
2310 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
2311 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
2312 Include <config.h> unconditionally.
2313
2314 * bootstrap: Sync from coreutils, as follows:
2315
2316 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
2317
2318 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
2319 variable was sometimes used without being initialized. This
2320 messed up the installation of the INSTALL file in some cases.
2321
2322 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
2323
2324 * bootstrap (usage, main program, symlink_to_gnulib): Add option
2325 --copy. Inspired by a suggestion from Bruno Haible.
2326
2327 2006-10-03 Jim Meyering <jim@meyering.net>
2328
2329 * bootstrap: Undo last change to this file, since now gnulib-tool
2330 sticks with the automake default in generating dependencies.
2331
23322006-10-12 Paul Eggert <eggert@cs.ucla.edu>
2333
2334 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
2335 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
2336
2337 * doc/bison.1: Add copyright notice.
2338
2339 * data/glr.c: Don't include <stdarg.h>; not used.
2340
2341 * NEWS: The -g and --graph options now output graphs in Graphviz
2342 DOT format, not VCG format.
2343 * doc/bison.1: Likewise.
2344 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
2345 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
2346 of this change in
2347 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
2348 * TODO: Remove Graphviz entry.
2349 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
2350 remove vcg.c, vcg.h, vcg_defaults.h.
2351 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
2352 * src/graphviz.c, src/graphviz.h: New files.
2353 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
2354 * src/files.h: Make comment more generic.
2355 * src/main.c (main): Likewise.
2356 * src/print_graph.h: Likewise.
2357 * src/getargs.c (usage): Make usage description more generic.
2358 * src/print_graph.c: Include graphviz.h rather than vcg.h.
2359 (static_graph, fgraph): Remove. All uses changed to pass
2360 arguments instead of sharing a static var.
2361 (print_core, print_actions, print_state, print_graph):
2362 Output graphviz format rather than VCG format.
2363 * tests/.cvsignore: Remove *.vcg; add *.dot.
2364 * tests/output.at: Expect *.dot files, not *.vcg files.
2365
2366 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
2367 accommodates the 2006-10-08 change.
2368
23692006-10-11 Bob Rossi <bob@brasko.net>
2370
2371 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
2372 (b4_yyssa, b4_yyerror_range): New macros.
2373 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
2374 (yypvarsinit): Remove init of removed fields.
2375 (yypushparse): Remove use of removed fields; use new macros instead.
2376
23772006-10-11 Paul Eggert <eggert@cs.ucla.edu>
2378
2379 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
2380 in a push parser. Reindent slightly to match yacc.c better.
2381
23822006-10-11 Bob Rossi <bob@brasko.net>
2383
2384 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
2385 yymsg_alloc fields.
2386 (yypvarsinit, yypushparse): Remove init of removed fields.
2387 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
2388
23892006-10-09 Paul Eggert <eggert@cs.ucla.edu>
2390
2391 * THANKS: Add Paolo Bonzini and Bob Rossi.
2392
23932006-10-08 Paolo Bonzini <bonzini@gnu.org>
2394
2395 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
2396 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
2397 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
2398 b4_define_user_cde and uses): Remove.
2399 (b4_comment, b4_prefix, b4_sync_start): New.
2400 * data/bison.m4: New file, with most of the content removed from c.m4.
2401 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
2402 * src/output.c (output_skeleton): Pass bison.m4.
2403 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
2404 only if specified.
2405
24062006-10-05 Paul Eggert <eggert@cs.ucla.edu>
2407
2408 Fix test failure reported by Tom Lane in
2409 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
2410 and try to make such failures easier to catch in the future.
2411 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
2412 that's now the caller's responsibility.
2413 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
2414 Set yychar = YYEOF if it's negative.
2415 * tests/actions.at (yylex): Abort if asked to read past EOF.
2416 * tests/conflicts.at (yylex): Likewise.
2417 * tests/cxx-type.at (yylex): Likewise.
2418 * tests/glr-regression.at (yylex): Likewise.
2419 * tests/input.at (yylex): Likewise.
2420 * tests/regression.at (yylex): Likewise.
2421 * tests/torture.at (yylex): Likewise.
2422
24232006-10-01 Paul Eggert <eggert@cs.ucla.edu>
2424
2425 Fix problems with translating English-language diagnostics.
2426 * bootstrap: Fix bug introduced in recent bootstrap changes, with
2427 respect to bison-runtime pot generation. The YY_ stuff
2428 wasn't being captured.
2429 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
2430 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
2431 * runtime-po/POTFILES.in: Add data/push.c.
2432
24332006-09-29 Paul Eggert <eggert@cs.ucla.edu>
2434
2435 Merge bootstrap changes from coreutils.
2436
2437 2006-09-28 Jim Meyering <jim@meyering.net>
2438
2439 Automatically generated dependencies are important even
2440 when all of the sources in a directory come from gnulib.
2441 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
2442 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
2443
2444 2006-09-23 Jim Meyering <jim@meyering.net>
2445
2446 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
2447
2448 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2449
2450 * bootstrap: Add support for --force.
2451 (usage): New function. Describe usage less tersely.
2452 (CVS_only_file): New var.
2453
24542006-09-21 Paul Eggert <eggert@cs.ucla.edu>
2455
2456 * data/push.c (YYPUSH_MORE): Make it an enum instead.
2457 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
2458 Adjust white space and comments to match GNU style better.
2459
24602006-09-20 Bob Rossi <bob@brasko.net>
2461
2462 * data/push.c (yyresult_get): Remove function.
2463 (YYPUSH_MORE): Add #define.
2464 (yypushparse): Modify return value.
2465
24662006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2467
2468 * stamp-h.in: Remove; no longer needed.
2469 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
2470 Remove config.h, config.hin, intl (no longer created).
2471 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
2472 stamp-h1.
2473
2474 Sync bootstrap from coreutils, as follows:
2475
2476 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
2477
2478 * bootstrap (symlink_to_gnulib): New function.
2479 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
2480 to copies-of-gnulib.
2481 (cp_mark_as_generated, slurp, gnulib_files):
2482 Avoid making a copy if it's the same as the old version.
2483 (gnulib_files): Add support for this variable (used by Bison).
2484
24852006-09-20 Paul Eggert <eggert@cs.ucla.edu>
2486
2487 * src/getargs.c (usage): Rework to use conventions similar to
2488 coreutils, to make translation a bit easier and the code a bit
2489 smaller. Problem reported by Tim Van Holder.
2490
24912006-09-15 Paul Eggert <eggert@cs.ucla.edu>
2492
2493 Use some of gnulib's new modules, taken from coreutils.
2494
2495 * bootstrap: Sync from coreutils, except add support for gnulib_files.
2496 * bootstrap.conf: New file.
2497 (gnulib_modules): Add configmake, inttypes, unistd.
2498 (XGETTEXT_OPTIONS): Add complain, complain_at,
2499 fatal, fatal_at, warn, warn_at, unexpected_end.
2500 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
2501 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
2502 (gl_EARLY): Add.
2503 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
2504 (gl_INIT): Add
2505 (GNULIB_AUTOCONF_SNIPPET): Remove.
2506 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
2507 the pickiest.
2508 * lib/.cvsignore: Add inttypes_.h.
2509 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
2510 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
2511 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
2512 no-longer-necessary initializations.
2513 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
2514 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
2515 use the unistd module.
2516 * src/system.h: Likewise.
2517 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
2518 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
2519 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
2520 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
2521 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
2522 * src/system.h: Include inttypes.h unconditionally, now that we
2523 use the inttypes module. Don't bother to include stdint.h, since
2524 inttypes.h now does that for us.
2525 (LOCALEDIR): Remove, now that we use the configmake module.
2526 * src/getargs.c: Include configmake.h.
2527 * src/main.c: Likewise.
2528 * src/output.c: Likewise.
2529 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
2530 not from $abs_top_builddir, since config.h moved.
2531
2532
2533 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
2534 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
2535
2536 * src/parse-gram.y (symbol_declaration): Don't put statements
2537 before declarations; it's not portable to C89.
2538 * src/scan-code.l (handle_action_at): Likewise.
2539
2540 * src/scan-code.l: Always initialize braces_level; the old code
2541 left it uninitialized and therefore had undefined behavior.
2542
2543 Don't attempt to redefine 'assert', since it runs afoul of
2544 systems where standard headers (mistakenly) include <assert.h>.
2545 Instead, define and use our own alternative, called 'aver'.
2546 * src/reader.c: Don't include assert.h, since we no longer
2547 use assert.
2548 * src/scan-code.l: Likewise.
2549 * src/system.h (assert): Remove, replacing with....
2550 (aver): New function, taking a bool arg. All uses changed.
2551 * src/tables.c (pack_vector): Ensure that aver arg is bool,
2552 not merely an integer.
2553
25542006-09-15 Bob Rossi <bob@brasko.net>
2555
2556 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
2557 * data/c.m4 (YYPUSH): New.
2558 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
2559 * src/getargs.c (push_parser): New var.
2560 * src/getargs.h (push_parser): New declaration.
2561 * src/output.c (prepare): Add macro insertion of `push_flag'.
2562 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
2563 (prologue_declaration): Parse %push-parser.
2564 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
2565 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
2566 list of removed lines from the traces observed.
2567 (AT_CHECK_CALC_LALR): Added push parser tests.
2568
25692006-09-13 Paul Eggert <eggert@cs.ucla.edu>
2570
2571 * NEWS: Version 2.3a.
2572 * configure.ac (AC_INIT): Likewise.
2573
2574 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
2575 "#define YYSTYPE int" that caused "make maintainer-check" to fail
2576 due to header ordering dependencies. I don't know why the #define
2577 was there.
2578
2579 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
2580 runtime cost when YYDEBUG is not defined, and so that some tests
2581 that used to fail now work. Problem and initial suggestion by
2582 Paolo Bonzini.
2583 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
2584 * data/glr.cc (b4_parser_class_name):
2585 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
2586 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
2587 (yydebug_) [YYDEBUG]: New member.
2588 (yycdebug_): Now defined only if YYDEBUG.
2589 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
2590 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
2591 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
2592 if YYYDEBUG.
2593 (debug_stream, set_debug_stream, debug_level, set_debug_level):
2594 Define only if YYDEBUG.
2595 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
2596 set_debug_level.
2597 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
2598 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
2599 AT_CHECK_CALC_GLR_CC that are working now.
2600
26012006-09-12 Paul Eggert <eggert@cs.ucla.edu>
2602
2603 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
2604 We don't need them in glr.cc, and glr.c defines them.
2605 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
2606 assumes that defining it to anything is the same as defining
2607 it to 1. Problem reported by Paolo Bonzini.
2608
26092006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
2610
2611 * data/c.m4 (b4_null, b4_case): Define.
2612 * src/output.c (prepare_symbols): Use b4_null.
2613 (user_actions_output): Use b4_case.
2614
26152006-09-11 Paul Eggert <eggert@cs.ucla.edu>
2616
2617 * data/glr.c (b4_shared_declarations): Put start-header first,
2618 before any #includes that we generate, so that feature-test
2619 macros work. Problem reported by Michael Deutschmann in
2620 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
2621 * data/lalr1.cc: Likewise.
2622 * doc/bison.texinfo (Prologue): Document that feature-test macros
2623 should be defined before any Bison declarations.
2624 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
2625 that depend on location.hh after, not before, Bison decls, since
2626 we now include location.hh after the first user prologue.
2627
2628 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
2629 Sander Brandenburg in
2630 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
2631 Also, fix minor white space and comment issues.
2632 (Prologue): Mention that it's better to define feature-test macros
2633 before Bison declarations. Problem reported by Michael Deutschmann.
2634
2635 * README-cvs: Fix typo: "&" should be "&&". Problem reported
2636 by Jim Meyering.
2637 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
2638 This adjusts to recent gnulib changes.
2639
26402006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
2641
2642 Finish implementation of per-type %destructor/%printer. Discussed
2643 starting at
2644 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
2645 and
2646 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
2647 * NEWS (2.3+): Add a description of this feature to the default
2648 %destructor/%printer description.
2649 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
2650 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
2651 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
2652 list node contains a semantic type.
2653 * src/symtab.c, src/symtab.h: Extend with a table that associates
2654 semantic types with their %destructor's and %printer's.
2655 (semantic_type_from_uniqstr, semantic_type_get,
2656 semantic_type_destructor_set, semantic_type_printer_set): New functions
2657 composing the public interface of that table.
2658 (symbol_destructor_get, symbol_destructor_location_get,
2659 symbol_printer_get, symbol_printer_location_get): If there's no
2660 per-symbol %destructor/%printer, look up the per-type before trying
2661 the default.
2662 * tests/actions.at (Per-type %printer and %destructor): New test case.
2663 * tests/input.at (Default %printer and %destructor redeclared):
2664 Extend to check that multiple occurrences of %symbol-default in a
2665 single %destructor/%printer declaration is an error.
2666 (Per-type %printer and %destructor redeclared, Unused values with
2667 per-type %destructor): New test cases.
2668
26692006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
2670
2671 Require default %destructor/%printer to be declared using
2672 %symbol-default instead of an empty symbol list, and start working on
2673 new per-type %destructor/%printer. Discussed at
2674 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
2675 * NEWS (2.3+): Add %symbol-default to example.
2676 * bison.texinfo (Freeing Discarded Symbols): Likewise.
2677 (Table of Symbols): Add entry for %symbol-default.
2678 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
2679 (generic_symlist, generic_symlist_item): New nonterminals for creating
2680 a list in which each item is a symbol, semantic type, or
2681 %symbol-default.
2682 (grammar_declaration): Use generic_symlist in %destructor and %printer
2683 declarations instead of symbols.1 or an empty list.
2684 (symbol_declaration, precedence_declaration, symbols.1): Update actions
2685 for changes to symbol_list.
2686 * src/reader.c: Update for changes to symbol_list.
2687 * src/scan-code.l: Likewise.
2688 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
2689 * src/symlist.c, src/symlist.h: Extend such that a list node may
2690 represent a semantic type or a %symbol-default in addition to just an
2691 ordinary symbol. Add switched functions for setting %destructor's and
2692 %printer's.
2693 * tests/actions.at, tests/input.at: Add %symbol-default to all default
2694 %destructor/%printer declarations.
2695
26962006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
2697
2698 Whether the default %destructor/%printer applies to a particular symbol
2699 isn't a question of whether the user *declares* that symbol (in %token,
2700 for example). It's a question of whether the user by any means
2701 *defines* the symbol at all (by simply using a char token, for
2702 example). $end is defined by Bison whereas any other token with token
2703 number 0 is defined by the user. The error token is always defined by
2704 Bison regardless of whether the user declares it with %token, but we
2705 may one day let the user define error as a nonterminal instead.
2706 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
2707 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
2708 the meaning of "user-defined".
2709 * tests/actions.at (Default %printer and %destructor for user-declared
2710 end token): Rename to...
2711 (Default %printer and %destructor for user-defined end token): ...
2712 this.
2713
2714 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
2715 computation of whether to apply the default, don't maintain a list of
2716 every Bison-defined symbol. Instead, just check for a first character
2717 of '$', which a user symbol cannot have, and check for the error token.
2718
27192006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
2720
2721 Don't apply the default %destructor or %printer to the error token,
2722 $undefined, or $accept. This change fits the general rule that the
2723 default %destructor and %printer are only for user-declared symbols,
2724 and it solves several difficulties that are described in the new test
2725 cases listed below.
2726 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
2727 * tests/actions.at (Default %printer and %destructor are not for error
2728 or $undefined, Default %printer and %destructor are not for $accept):
2729 New test cases.
2730
27312006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
2732
2733 Allow %start after the first rule.
2734 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
2735 when parsing the first rule.
2736 (check_and_convert_grammar): Search for it here after all grammar
2737 declarations have been parsed. Skip midrules, which have dummy LHS
2738 nonterminals.
2739 * src/symtab.c (symbol_is_dummy): New function.
2740 * src/symtab.h (symbol_is_dummy): Declare it.
2741 * tests/input.at (%start after first rule): New test.
2742
27432006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
2744
2745 Redo some of the previous commit: add back the ability to use
2746 non-aliased/undeclared string literals since it might be useful to
2747 those declaring %token-table.
2748 * src/reader.c (check_and_convert_grammar): Undo changes in previous
2749 commit: don't worry about complaints from symbols_pack.
2750 * src/symtab.c (symbol_new, symbol_class_set,
2751 symbol_check_alias_consistency): Undo changes in previous commit: count
2752 each string literal as a new symbol and token, assign it a symbol
2753 number, and don't complain about non-aliased string literals.
2754 (symbols_pack): Since symbol_make_alias still does not decrement symbol
2755 and token counts but does still set aliased tokens to the same number,
2756 symbol_pack_processor now leaves empty slots in the symbols array.
2757 Remove those slots.
2758 * tests/regression.at (Undeclared string literal): Remove test case
2759 added in previous commit since non-aliased string literals are allowed
2760 again.
2761 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
2762 remove unnecessary string literal declarations.
2763 * tests/sets.at (Firsts): Likewise.
2764
27652006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
2766
2767 Don't allow an undeclared string literal, but allow a string literal to
2768 be used before its declaration.
2769 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
2770 symbols_pack complained.
2771 * src/symtab.c (symbol_new): Don't count a string literal as a new
2772 symbol.
2773 (symbol_class_set): Don't count a string literal as a new token, and
2774 don't assign it a symbol number since symbol_make_alias does that.
2775 (symbol_make_alias): It's not necessary to decrement the symbol and
2776 token counts anymore. Don't assume that an alias declaration occurs
2777 before any uses of the identifier or string, and thus don't assert that
2778 one of them has the highest symbol number so far.
2779 (symbol_check_alias_consistency): Complain if there's a string literal
2780 that wasn't declared as an alias.
2781 (symbols_pack): Bail if symbol_check_alias_consistency failed since
2782 symbol_pack asserts that every token has been assigned a symbol number
2783 although undeclared string literals have not.
2784 * tests/regression.at (String alias declared after use, Undeclared
2785 string literal): New test cases.
2786 (Characters Escapes, Web2c Actions): Declare string literals as
2787 aliases.
2788 * tests/sets.at (Firsts): Likewise.
2789
27902006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
2791
2792 In the grammar scanner, STRING_FINISH unclosed constructs and return
2793 them to the parser in order to improve error messages.
2794 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
2795 SC_BRACED_CODE, SC_PROLOGUE): Implement.
2796 * tests/input.at (Unclosed constructs): New test case.
2797 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
2798 seen.
2799
2800 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
2801 unused global.
2802
28032006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
2804
2805 Handle string aliases for character tokens correctly.
2806 * src/symtab.c (symbol_user_token_number_set): If the token has an
2807 alias, check and set its alias's user token number instead of its own,
2808 which is set to indicate the alias. Previously, every occurrence of
2809 the character token in the grammar overwrote that alias indicator with
2810 the character code.
2811 * tests/input.at (String aliases for character tokens): New test.
2812
28132006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
2814
2815 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
2816
28172006-08-11 Paul Eggert <eggert@cs.ucla.edu>
2818
2819 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
2820 to prevent failures when building on older platforms.
2821 Check for autopoint failure.
2822 Set XGETTEXT_OPTIONS to values that check for C format strings,
2823 so that translators are warned about them (this also helps
2824 prevent core dumps).
2825
2826 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
2827 function, since it simplifies our code a bit.
2828
2829 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
2830 rather than -W, so we don't get bogus warnings about sign comparisons.
2831 Add -Wpointer-arith, since that warning is useful (it reports code
2832 that does not conform to C89 and that some compilers reject).
2833 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
2834 since it's no longer needed.
2835
28362006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
2837
2838 Clean up scanners a bit.
2839 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
2840 definitions so gcc won't warn when obstack_for_string is unused.
2841 * src/scan-code.l: config.h and system.h are already #include'd by
2842 scan-code-c.c, so get rid of them here.
2843 * src/scan-gram.l: Likewise.
2844 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
2845 definitions rather than duplicating the rest of it.
2846 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
2847
28482006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
2849
2850 Suppress signed/unsigned comparison warnings for yycheck.
2851 * data/c.m4 (b4_safest_int_type): New macro.
2852 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
2853 a signed int type, cast it to b4_safest_int_type first.
2854 * data/yacc.c: Likewise.
2855 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
2856 also overwritten.
2857
28582006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
2859
2860 * doc/bison.texinfo: Fix some typos.
2861
28622006-08-02 Paul Eggert <eggert@cs.ucla.edu>
2863
2864 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
2865 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
2866
2867 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
2868 the latest gnulib does this a different way.
2869 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
2870 translation was patched, so stop omitting it.
2871
28722006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2873
2874 Enable declaration of default %printer/%destructor. Make the parser
2875 use these for all user-declared grammar symbols for which the user does
2876 not declare a specific %printer/%destructor. Thus, the parser uses it
2877 for token 0 if the user declares it but not if Bison generates it as
2878 $end. Discussed starting at
2879 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
2880 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
2881 and
2882 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
2883 * NEWS (2.3+): Mention.
2884 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
2885 declare a %destructor for a mid-rule's semantic value. It's just
2886 impossible to declare one specific to it.
2887 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
2888 code. Describe default %destructor form.
2889 * src/parse-gram.y (grammar_declaration): Parse default
2890 %printer/%destructor declarations.
2891 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
2892 and symbol_destructor_location_get rather than accessing the destructor
2893 and destructor_location members of struct symbol.
2894 (symbol_printers_output): Likewise but for %printer's.
2895 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
2896 again.
2897 * src/symtab.c (default_destructor, default_destructor_location,
2898 default_printer, default_printer_location): New static global
2899 variables to record the default %destructor and %printer.
2900 (symbol_destructor_get, symbol_destructor_location_get,
2901 symbol_printer_get, symbol_printer_location_get): New functions to
2902 compute the appropriate %destructor and %printer for a symbol.
2903 (default_destructor_set, default_printer_set): New functions to set the
2904 default %destructor and %printer.
2905 * src/symtab.h: Prototype all those new functions.
2906 * tests/actions.at (Default %printer and %destructor): New test to
2907 check that the right %printer and %destructor are called, that they're
2908 not called for $end, and that $$ and @$ work correctly.
2909 (Default %printer and %destructor for user-declared end token): New
2910 test to check that the default %printer and %destructor are called for
2911 a user-declared end token.
2912 * tests/input.at (Default %printer and %destructor redeclared, Unused
2913 values with default %destructor): New tests to check related grammar
2914 warnings and errors.
2915
29162006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2917
2918 Clean up handling of %destructor for the end token (token 0).
2919 Discussed starting at
2920 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
2921 and
2922 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
2923
2924 Make the skeletons consistent in how they pop the end token and invoke
2925 its %destructor.
2926 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
2927 state, which has token number 0, since this would invoke the
2928 %destructor for the end token.
2929 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
2930 until after shifting the end token, or else it won't be popped.
2931 * data/yacc.c (yyparse): Likewise.
2932
2933 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
2934 it's the end token. Upon termination, destroy an unshifted lookahead
2935 even when it's the end token.
2936 * data/lalr1.cc (yy::parser::parse): Likewise.
2937 * data/yacc.c (yyparse): Likewise.
2938
2939 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
2940 value warnings for the end token when the user gives the end token a
2941 %destructor.
2942
2943 * tests/actions.at (Printers and Destructors): Test all the above.
2944
29452006-07-24 Paul Eggert <eggert@cs.ucla.edu>
2946
2947 Update to latest gnulib and gettext versions.
2948 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
2949 Add fopen-safer.
2950 (gnulib_files): Add m4/warning.m4. Don't worry about files
2951 overwritten by autopoint.
2952 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
2953 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
2954 rejects them.
2955 Don't use autoreconf; instead, invoke autopoint etc. by hand,
2956 so that we can remove the intl files at a better time.
2957 (intl_files_to_remove): Remove aclocal.m4, since it gets
2958 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
2959 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
2960 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
2961 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
2962 Remove datarootdir hack; no longer needed.
2963 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
2964 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
2965 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
2966 strdup.h.
2967 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
2968 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
2969
29702006-07-20 Paul Eggert <eggert@cs.ucla.edu>
2971
2972 * bootstrap: Adjust to today's change to gnulib-tool by invoking
2973 it with --assume-autoconf='latest-stable'.
2974
29752006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
2976
2977 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
2978 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
2979 YYSTYPE' and `{'.
2980 * src/muscle_tab.h (muscle_grow): Replace the header comments with
2981 those from muscle_tab.c since the old ones are misleading.
2982
29832006-07-13 Akim Demaille <akim@epita.fr>
2984
2985 Support %define "KEY" {VALUE}.
2986 * src/scan-code.h, src/scan-code.l (translate_action)
2987 (translate_rule_action, translate_symbol_action, translate_code):
2988 Return char *, not const char *.
2989 * src/parse-gram.y (declaration): Rename as...
2990 (prologue_declaration): this.
2991 (string_content): Remove this nonterminal, use STRING.
2992 (braceless, content, content.opt): New nonterminal.
2993 Use them.
2994 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
2995 as value.
2996 * src/scan-gram.l (getargs.h): Don't include it.
2997
29982006-07-12 Paul Eggert <eggert@cs.ucla.edu>
2999
3000 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
3001 rather than a for-loop that declares a local bool variable. This
3002 should work around a compatibility problem with a Cray x1e C++
3003 compiler reported by Hung Nguyen in
3004 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
3005 The for-loop was introduced in the 2004-11-17 change but I don't
3006 know why it was needed.
3007
30082006-07-12 Akim Demaille <akim@epita.fr>
3009
3010 * data/c.m4: Comment changes.
3011
30122006-07-10 Akim Demaille <akim@lrde.epita.fr>
3013
3014 * src/complain.c (error_message, ERROR_MESSAGE): New.
3015 To factor...
3016 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
3017 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
3018
30192006-07-09 Paul Eggert <eggert@cs.ucla.edu>
3020
3021 * NEWS: Instead of %union, you can define and use your own union type
3022 YYSTYPE if your grammar contains at least one <type> tag.
3023 Your YYSTYPE need not be a macro; it can be a typedef.
3024 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
3025 (Union Decl, Decl Summary): Document this.
3026 * data/glr.c (YYSTYPE): Implement this.
3027 * data/glr.cc (YYSTYPE): Likewise.
3028 * data/lalr1.cc (YYSTYPE): Likewise.
3029 * data/yacc.c (YYSTYPE): Likewise.
3030 * src/output.c (prepare): Output tag_seen_flag.
3031 * src/parse-gram.y (declaration, grammar_declaration):
3032 Use 'union_seen' rather than 'typed' to determine whether
3033 %union has been seen, since grammars can now be typed without
3034 %union.
3035 (symbol_declaration, type.opt, symbol_def):
3036 Keep track of whether a tag has been seen.
3037 * src/reader.c (union_seen, tag_seen): New vars.
3038 (typed): remove.
3039 * src/reader.h (union_seen, tag_seen, typed): Likewise.
3040 * src/scan-code.l (untyped_var_seen): New variable.
3041 (handle_action_dollar): Adjust to above changes.
3042 (handle_action_dollar, handle_action_at):
3043 Improve overflow checking for outlandish numbers.
3044 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
3045 avoid new diagnostics generated by above changes.
3046 * tests/regression.at (YYSTYPE typedef): Add test to check
3047 for type tags without %union.
3048
3049 * src/symlist.c (symbol_list_length): Return int, not unsigned
3050 int, since callers expect int. This may need to get revisited
3051 once we have proper integer overflow checking.
3052
3053 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
3054 object is now static.
3055
3056 * src/getargs.c (flags_argmatch): Return void, not int,
3057 to pacify ./configure --enable-gcc-warnings.
3058
3059 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
3060 since last_string is already defined to FLEX_PREFIX (last_string).
3061
30622006-07-09 Akim Demaille <akim@lrde.epita.fr>
3063
3064 Implement --warnings/-W.
3065 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
3066 replaced by...
3067 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
3068 Adjust callers.
3069 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
3070 (warnings_args, warnings_types): New.
3071 (getargs, short_options, long_options): Accept -W/--warnings.
3072 Sort the options by alphabetical order, upper case letter right
3073 before its lower case.
3074
30752006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3076
3077 Change %merge result type clash warnings to errors. Discussed at
3078 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
3079 * src/reader.c (record_merge_function_type): Use complain_at.
3080 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
3081 declared later): Update test case results.
3082
30832006-07-09 Akim Demaille <akim@lrde.epita.fr>
3084
3085 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
3086 to be in alphabetical order.
3087 (trace_args): Spelling fixes.
3088
30892006-07-09 Paul Eggert <eggert@cs.ucla.edu>
3090
3091 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
3092 so they don't collide with user-defined macros.
3093 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
3094 this was never guaranteed, and now that we're using gnulib stdint,
3095 which defines int_fast16_t to long int, the problem is exposed.
3096
30972006-07-08 Paul Eggert <eggert@cs.ucla.edu>
3098
3099 * data/c.m4 (b4_basename): Simplify a bit, since we don't
3100 need the full POSIX semantics (and weren't implementing them
3101 anyway).
3102
3103 Adjust to Autoconf 2.60 and today's gnulib.
3104 * bootstrap (gnulib_modules): Add stdint.
3105 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
3106 no longer copies it.
3107 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
3108 since stdint needs the former and wcwidth (which is now required
3109 by mbswidth) needs the latter.
3110 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
3111 work around a compatibility glitch between gettext 0.14.6 and
3112 Autoconf 2.60.
3113 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
3114 Do not check for uintptr_t, since new stdint module does the right
3115 thing.
3116 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
3117 Add stdint.h, stdint_.h, wcwidth.h.
3118 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
3119 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
3120 stdint.m4, wchar_t.m4, wcwidth.m4.
3121 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
3122 usual order for ../lib/*.h files.
3123 (file_name_split): Use last_component, not base_name, to adjust
3124 to gnulib changes.
3125 * src/parse-gram.h: Include <strverscmp.h> in the usual order
3126 for ../lib/*.h files.
3127 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
3128 Define unconditionally, since we now assume the stdint module.
3129 * src/scan-skel.l: Include <dirname.h>.
3130 (BASE_QPUTS): Use last_component, not base_name.
3131 * src/system.h: Include <unlocked-io.h> in the usual order
3132 for ../lib/*.h files. Include <stdint.h> unconditionally,
3133 since we now use the stdint module.
3134 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
3135 HAVE_UINTPTR_T, since we now use the stdint module.
3136 (base_name): Remove decl, since files now include <dirname.h>
3137 to get the decl.
3138
31392006-07-08 Akim Demaille <akim@lrde.epita.fr>
3140
3141 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
3142 New, default to 1.
3143 * data/yacc.c, data/glr.c, data/location.cc: Use them.
3144 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
3145 default.
3146 * tests/calc.at: Adjust.
3147
31482006-07-08 Akim Demaille <akim@lrde.epita.fr>
3149
3150 * data/c.m4 (b4_basename): New.
3151 (b4_syncline): Also output the location of its invocation (from
3152 the skeleton).
3153 (b4_user_action, b4_define_user_action, b4_user_actions)
3154 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
3155 (b4_user_stype): New.
3156 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
3157
31582006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
3159
3160 In the grammar file, the first column is 1 not 0 on the first line as
3161 on every other line.
3162 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
3163 * tests/input.at (Torturing the Scanner): Update output.
3164
3165 * src/scan-gram.l (scanner_cursor): Declare it static.
3166
31672006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
3168
3169 In warnings, say "previous declaration" rather than "first
3170 declaration".
3171 * src/symtab.c (redeclaration): Do that here.
3172 * src/reader.c (record_merge_function_type): In the case of a result
3173 type clash, report the previous declaration rather than the very first
3174 one in the grammar file.
3175 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
3176 declared later): Add a third declaration to check this behavior.
3177 * tests/input.at (Incompatible Aliases): Update output.
3178
31792006-06-27 Akim Demaille <akim@epita.fr>
3180
3181 * doc/Doxyfile.in: New.
3182 * doc/Makefile.am: Use it.
3183 * src/lalr.h, src/symtab.h: Initial doxygenation.
3184
31852006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
3186
3187 Don't miss %merge result type warnings just because the LHS types are
3188 declared after the %merge. This continues the effort of the previous
3189 patch.
3190 * src/reader.c (get_merge_function): Don't set the merger type yet.
3191 (record_merge_function_type): New function for setting the merger type
3192 and checking for clashes.
3193 (grammar_current_rule_merge_set): Set the location of the %merge for
3194 the current rule.
3195 (packgram): Invoke record_merge_function_type for each rule now that
3196 all symbol type declarations have been parsed.
3197 * src/reader.h (merger_list.type_declaration_location): New member
3198 storing the location of the first %merge from which the type for this
3199 merging function was derived.
3200 * src/symlist.h (symbol_list.merger_declaration_location): New member
3201 storing the location of a rule's %merge, if any.
3202 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
3203 declared later): New test to catch the error fixed by the above patch.
3204
32052006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
3206
3207 Get action warnings (grammar_rule_check) right even when symbol
3208 declarations appear after the rules. Discussed at
3209 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
3210 and
3211 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
3212 Don't mistake the type of $$ in a midrule to be that of its parent
3213 rule's $$.
3214 * src/reader.c (grammar_current_rule_end): Don't invoke
3215 grammar_rule_check yet since not all symbol declarations may have been
3216 parsed yet.
3217 (grammar_midrule_action): Likewise.
3218 Don't record whether the midrule's $$ has been used yet since actions
3219 haven't been translated yet.
3220 Record the midrule's parent rule and its RHS index within the parent
3221 rule.
3222 (grammar_current_rule_action_append): Don't translate the action yet
3223 since not all symbol declarations may have been parsed yet and, thus,
3224 warnings about types for $$, $n, @$, and @n can't be reported yet.
3225 (packgram): Translate the action and invoke grammar_rule_check now that
3226 all symbol declarations have been parsed.
3227 * src/scan-code.l (handle_action_dollar): Now that this is invoked
3228 after parsing the entire grammar file, the symbol list here in the case
3229 of a midrule is actually the midrule's empty RHS, so reference its
3230 parent rule's RHS where necessary.
3231 On the other hand, now that you can already know it's a midrule, you
3232 aren't forced to think $$ has the same type as its parent rule's $$.
3233 (handle_action_at): In the case of a midrule, reference the parent rule
3234 where necessary.
3235 * src/symlist.c (symbol_list_new): Initialize new midrule-related
3236 members.
3237 (symbol_list_length): Now that this is invoked after all rules have
3238 been parsed, a NULL symbol (rather than a NULL symbol list node)
3239 terminates a rule. symbol_list_print already does this correctly.
3240 * src/symlist.h (symbol_list.midrule_parent_rule,
3241 symbol_list.midrule_parent_rhs_index): New members so that midrules can
3242 remember their relationships with their parents.
3243 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
3244 fixed by the above patch.
3245 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
3246 implementing...
3247 (Unused values): ... this old test case and...
3248 (Unused values before symbol declarations): ... this new test case.
3249 This one is the same as `Unused values' except that all symbol
3250 declarations appear after the rules in order to catch the rest of the
3251 errors fixed by the above patch.
3252
32532006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
3254
3255 More cleanup.
3256 * src/reader.c (current_rule): Declare it static since it's no longer
3257 used outside this file.
3258 (grammar_current_rule_action_append): Remove redundant arguments from
3259 translate_rule_action invocation.
3260 * src/reader.h (current_rule): Remove this unused extern.
3261 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
3262 * src/scan-code.l (translate_rule_action): Likewise.
3263
32642006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
3265
3266 Clean up yesterday's patch.
3267 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
3268 to...
3269 * src/reader.c (grammar_current_rule_action_append): ... here for
3270 consistency with grammar_current_rule_symbol_append.
3271 * tests/regression.at (Braced code in declaration in rules section):
3272 Make yyerror and yylex static as usual.
3273
32742006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
3275
3276 Fix bug that mistakes braced code in a declaration in the rules section
3277 to be a rule action. Mentioned at
3278 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
3279 * src/scan-gram.l: Move midrule action detection from the start of the
3280 scanning of any braced code to...
3281 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
3282 action. For readability, use $2 and @2 rather than the equivalent
3283 global variables.
3284 * tests/regression.at (Braced code in declaration in rules section):
3285 New test to catch the error fixed by the above patch.
3286
3287 Work on code readability some.
3288 * src/scan-code.l (current_rule): Get rid of this misleading and
3289 redundant declaration: it's actually extern'ed in reader.h.
3290 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
3291 translate_action): Add a rule argument and use it instead of the global
3292 current_rule.
3293 (translate_rule_action): This already receives current_rule through an
3294 argument, so pass it on to translate_action instead of assigning
3295 current_rule to current_rule.
3296 (translate_symbol_action, translate_code): Pass rule = NULL to
3297 translate_action.
3298
32992006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
3300
3301 Rename %before-definitions to %start-header and %after-definitions to
3302 %end-header. Don't use these declarations to separate pre-prologue
3303 blocks from post-prologue blocks. Add new order-independent
3304 declarations %before-header and %after-header as alternatives to the
3305 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
3306 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
3307 * NEWS (2.3+): Update for these changes.
3308 * data/glr.c (b4_before_definitions): Update to...
3309 (b4_start_header): ... this.
3310 (b4_after_definitions): Update to...
3311 (b4_end_header): ... this.
3312 * data/glr.cc: Likewise.
3313 * data/lalr1.cc: Likewise.
3314 * data/yacc.c: Likewise.
3315 * doc/bison.texinfo (The prologue): Update names, and replace remaining
3316 prologue blocks with %*-header declarations.
3317 (Calc++ Parser): Likewise.
3318 (Decl Summary): Update names.
3319 (Table of Symbols): Update description.
3320 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
3321 (PERCENT_END_HEADER): ... this.
3322 (PERCENT_BEFORE_DEFINITIONS): Update to...
3323 (PERCENT_START_HEADER): ... this.
3324 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
3325 (declaration): Update token names and m4 macro names.
3326 When parsing %end-header and %start-header, invoke translate_code
3327 before muscle_code_grow, and no longer set global booleans to remember
3328 whether these declarations have been seen.
3329 Parse new %after-header and %before-header.
3330 * src/reader.c (before_definitions, after_definitions): Remove.
3331 (prologue_augment): Accept a new bool argument to specify whether to
3332 augment the pre-prologue or post-prologue.
3333 * src/reader.h (before_definitions, after_definitions): Remove these
3334 extern's.
3335 (prologue_augment): Add new bool argument.
3336 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
3337 (PERCENT_END_HEADER): ... this.
3338 (PERCENT_BEFORE_DEFINITIONS): Update to...
3339 (PERCENT_START_HEADER): ... this.
3340 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
3341 * tests/actions.at (Printers and Destructors): Update names.
3342
33432006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
3344
3345 Add comparison operators for C++ location classes. Discussed at
3346 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
3347 * data/c++.m4 (b4_define_location_comparison): New boolean %define
3348 declaration indicating whether filename_type has an operator==. If
3349 filename_type is `std::string', it defaults to `1', `0' otherwise.
3350 * data/location.cc: Iff b4_define_location_comparison is `1', add
3351 operator== and operator!= for class position and for class location.
3352
3353 Some minor fixes.
3354 * src/scan-action.l: Remove unused file.
3355 * src/symtab.c (symbol_printer_set): Use printer_location not
3356 destructor_location.
3357 * src/symtab.h (struct symbol): Replace incorrect source comment for
3358 printer members.
3359 * tests/input.at (Incompatible Aliases): Update output with correct
3360 printer location.
3361
33622006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
3363
3364 Don't put the pre-prologue in the header file. For the yacc.c code
3365 file and the glr.c header and code files, move the pre-prologue before
3366 the token definitions. Add new %before-definitions and
3367 %after-definitions to declare code that will go in both the header file
3368 and code file. Discussed at
3369 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
3370 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
3371 and
3372 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
3373 * NEWS (2.3+): Describe these changes.
3374 * data/glr.c (b4_pre_prologue): Move from within to before...
3375 (b4_shared_declarations): ... this.
3376 Add new b4_before_definitions before b4_token_enums.
3377 Add new b4_after_definitions at the end.
3378 * data/glr.cc (b4_pre_prologue): Replace with...
3379 (b4_before_definitions): ... this in the header file.
3380 (b4_after_definitions): New near the end of the header file.
3381 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
3382 code file right before including the header file.
3383 (b4_before_definitions): New in the previous position of
3384 b4_pre_prologue in the header file.
3385 (b4_after_definitions): New near the end of the header file.
3386 * data/yacc.c: Clean up some m4 quoting especially in the header file.
3387 (b4_token_enums_defines): In the code file, move to right before
3388 YYSTYPE for consistency with the header file.
3389 (b4_before_definitions): New right before b4_token_enums_defines in
3390 both the header and code file.
3391 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
3392 header and code file.
3393 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
3394 of prologues for %union dependencies.
3395 (Decl Summary): In %defines description, mention the effect of
3396 %before-definitions and %after-definitions on the header file.
3397 (Calc++ Parser): Forward declare driver in a %before-definitions rather
3398 than in the pre-prologue so that make check succeeds.
3399 (Table of Symbols): Add entries for %before-definitions and
3400 %after-definitions.
3401 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
3402 %before-definitions.
3403 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
3404 (declaration): Parse those declarations and append to
3405 b4_before_definitions and b4_after_definitions, respectively.
3406 * src/reader.c (before_definitions, after_definitions): New bools to
3407 track whether those declarations have been seen.
3408 (prologue_augment): Add to the post-prologue if %union,
3409 %before-definitions, or %after-definitions has been seen.
3410 * src/reader.h (before_definitions, after_definitions): New extern's.
3411 * src/scan-gram.l: Scan the new declarations.
3412 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
3413 prologue block in a %before-definitions or a %after-definitions based
3414 on whether the %union is declared.
3415 * tests/regression.at (Early token definitions with --yacc, Early token
3416 definitions without --yacc): Move tests for token definitions into the
3417 post-prologue since token names are no longer defined in the
3418 pre-prologue.
3419
34202006-06-20 Akim Demaille <akim@epita.fr>
3421
3422 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
3423 (symbol_get): Use it.
3424 * src/parse-gram.y: Use it.
3425
34262006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
3427
3428 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
3429 build succeeds when configured with --enable-gcc-warnings.
3430
34312006-06-19 Paul Eggert <eggert@cs.ucla.edu>
3432
3433 * src/parse-gram.y (char_name): New function.
3434 (CHAR, STRING, string_content): For %printer, properly escape.
3435 (ID): Prefer fputs to fprintf.
3436 (id): Reindent to be consistent with other rules.
3437 Properly quote char.
3438
3439 The Translation Project changed its way of publishing translations
3440 to maintainers. I haven't received any responses to my request
3441 for supporting the old way, or for documenting the new way. I
3442 have modified 'bootstrap' to use screen scraping
3443 (in this case, HTML scraping). This is unreliable and inelegant,
3444 but I don't see any better way. Yuck.
3445 * bootstrap (TP_URL, WGET_COMMAND): New vars.
3446 (get_translations): New function, which uses HTML scraping to
3447 deduce locations of latest translations.
3448 Use this function to grab both bison and bison-runtime .po files.
3449 Don't bother priming the pump for the runtime-po domain any more,
3450 as it's now translated better than bison is.
3451
34522006-06-19 Akim Demaille <akim@epita.fr>
3453
3454 * src/scan-gram.l: No longer "parse" things after `%union' until
3455 `{'. Rather, return a single "%union" token.
3456 No longer make symbols: return strings, and leave the conversion
3457 to symbols to the parser.
3458 (SC_PRE_CODE, token_type): Remove.
3459 * src/parse-gram.y (%union): New field `character'.
3460 Sort tokens.
3461 (CHAR): New token.
3462 (ID, ID_COLON): Now that the scanner no longer makes them
3463 identifiers, adjust all uses to invoke symbol_get.
3464 (id_colon): New, wraps the conversion from string to symbol.
3465 (%union): Accept a possible union_name.
3466 (symbol): Now can be a char.
3467 * data/c.m4 (b4_union_name): Leave a default value.
3468 * data/glr.c, data/yacc.c: Use it.
3469
34702006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
3471
3472 For associating token numbers with token names for "yacc.c", don't use
3473 #define statements unless `--yacc' is specified; always use enum
3474 yytokentype. Most important discussions start at:
3475 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
3476 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
3477 and
3478 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
3479 * NEWS (2.3+): Mention.
3480 * data/c.m4 (b4_yacc_if): New.
3481 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
3482 token #define's.
3483 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
3484 on token name definitions.
3485 * src/getargs.c (usage): Capitalize `Yacc' in English.
3486 * src/output.c (prepare): Define b4_yacc_flag.
3487 * tests/regression.at (Early token definitions): Test that tokens names
3488 are defined before the pre-prologue not just before the post-prologue.
3489 Remove this test case and copy to...
3490 (Early token definitions with --yacc): ... this to test #define's.
3491 (Early token definitions without --yacc): ... and this to test enums.
3492
34932006-06-11 Paul Eggert <eggert@cs.ucla.edu>
3494
3495 * NEWS: Reword the post-2.3 change to not be so optimistic about
3496 removing the old "look-ahead" spelling.
3497 Update previous look-ahead/lookahead change reports.
3498 * REFERENCES: look-ahead -> lookahead (since that's
3499 what he actually wrote).
3500 * doc/refcard.tex: look ahead -> lookahead,
3501 look-ahead -> lookahead
3502
35032006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
3504
3505 For consistency, use `lookahead' instead of `look-ahead' or
3506 `look_ahead'. Discussed starting at
3507 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
3508 and then at
3509 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
3510 * NEWS: For the next release, note the change to `--report'.
3511 * TODO, doc/bison.1: Update English.
3512 * doc/bison.texinfo: Update English.
3513 (Understanding Your Parser, Bison Options): Document as
3514 `--report=lookahead' rather than `--report=look-ahead'.
3515 * src/conflicts.c: Update English in comments.
3516 (lookahead_set): Rename from look_ahead_set.
3517 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
3518 (resolve_sr_conflict): Rename local look_ahead_tokens to
3519 lookahead_tokens, and update other uses.
3520 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
3521 count_rr_conflicts, conflicts_free): Update uses.
3522 * src/getargs.c (report_args): Move "lookahead" before alternate
3523 spellings.
3524 (report_types): Update uses.
3525 (usage): For `--report' usage description, state `lookahead' spelling
3526 rather than `look-ahead'.
3527 * src/getargs.h (report.report_lookahead_tokens): Rename from
3528 report_look_ahead_tokens.
3529 * src/lalr.c: Update English in comments.
3530 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
3531 (state_lookahead_tokens_count): Rename from
3532 state_look_ahead_tokens_count.
3533 Rename local n_look_ahead_tokens to n_lookahead_tokens.
3534 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
3535 Rename local n_look_ahead_tokens to n_lookahead_tokens.
3536 Update other uses.
3537 Update English in output.
3538 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
3539 * src/print.c: Update English in comments.
3540 (lookahead_set): Rename from look_ahead_set.
3541 (print_reduction): Rename argument lookahead_token from
3542 look_ahead_token.
3543 (print_core, state_default_rule, print_reductions, print_results):
3544 Update uses.
3545 * src/print_graph.c: Update English in comments.
3546 (print_core): Update uses.
3547 * src/state.c: Update English in comments.
3548 (reductions_new): Update uses.
3549 (state_rule_lookahead_tokens_print): Rename from
3550 state_rule_look_ahead_tokens_print, and update other uses.
3551 * src/state.h: Update English in comments.
3552 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
3553 (state_rule_lookahead_tokens_print): Rename from
3554 state_rule_look_ahead_tokens_print.
3555 * src/tables.c: Update English in comments.
3556 (conflict_row, action_row): Update uses.
3557 * tests/glr-regression.at
3558 (Incorrect lookahead during deterministic GLR,
3559 Incorrect lookahead during nondeterministic GLR): Rename
3560 print_look_ahead to print_lookahead.
3561 * tests/torture.at: Update English in comments.
3562 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
3563 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
3564 (Many lookahead tokens): Update uses.
3565 * data/glr.c: Update English in comments.
3566 * lalr1.cc: Likewise.
3567 * yacc.c: Likewise.
3568 * src/conflicts.h: Likewise.
3569 * src/lalr.h: Likewise.
3570 * src/main.c: Likewise.
3571 * src/output.c: Likewise.
3572 * src/parse-gram.c: Likewise.
3573 * src/tables.h: Likewise.
3574 * tests/calc.at: Likewise.
3575
35762006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
3577
3578 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
3579
35802006-06-07 Paul Eggert <eggert@cs.ucla.edu>
3581
3582 * TODO: Add request from Nelson H. F. Beebe to be able to install
3583 Bison without installing the yacc script.
3584
35852006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
3586
3587 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
3588 and yytext if they're already #define'd.
3589 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
3590 * src/scan-code-c.c: ... here.
3591 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
3592 <config.h>.
3593
35942006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
3595
3596 Get Bison to build again when configured with --enable-gcc-warnings.
3597 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
3598 missing #include's.
3599 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
3600 loc argument as it shadows a global.
3601 * src/scan-gram.l: Remove stray comma that prevents boundary_set
3602 invocation.
3603
3604 * src/.cvsignore: Add scan-code.c.
3605
36062006-06-07 Akim Demaille <akim@epita.fr>
3607
3608 * src/scan-gram.l: Move the "add a trailing ; to actions" code
3609 to...
3610 * src/scan-code.l: here.
3611 * tests/input.at (Torturing the Scanner): Fix another location
3612 error.
3613
36142006-06-07 Akim Demaille <akim@epita.fr>
3615
3616 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
3617
36182006-06-06 Akim Demaille <akim@epita.fr>
3619
3620 Extract the parsing of user actions from the grammar scanner.
3621 As a consequence, the relation between the grammar scanner and
3622 parser is much simpler. We can also split "composite tokens" back
3623 into simple tokens.
3624 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
3625 * src/scan-gram.l (add_column_width, adjust_location): Move to and
3626 rename as...
3627 * src/location.h, src/location.c (add_column_width)
3628 (location_compute): these.
3629 Fix the column count: the initial column is 0.
3630 (location_print): Be robust to ending column being 0.
3631 * src/location.h (boundary_set): New.
3632 * src/main.c: Adjust to scanner_free being renamed as
3633 gram_scanner_free.
3634 * src/output.c: Include scan-code.h.
3635 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
3636 Use boundary_set.
3637 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
3638 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
3639 which is now, again, a separate token.
3640 Adjust all dependencies.
3641 Whereever actions with $ and @ are used, use translate_code.
3642 (action): Remove this nonterminal which is now useless.
3643 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
3644 (grammar_current_rule_action_append): Use translate_code.
3645 (packgram): Bound check ruleno, itemno, and rule_length.
3646 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
3647 (last_string, last_braced_code_loc, max_left_semantic_context)
3648 (scanner_initialize, scanner_free, scanner_last_string_free)
3649 (gram_out, gram_lineno, YY_DECL_): Move to...
3650 * src/scan-gram.h: this new file.
3651 (YY_DECL): Rename as...
3652 (GRAM_DECL): this.
3653 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
3654 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3655 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3656 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3657 Move these declarations, and...
3658 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
3659 these to...
3660 * src/flex-scanner.h: this new file.
3661 * src/scan-gram.l (rule_length, rule_length_overflow)
3662 (increment_rule_length): Remove.
3663 (last_braced_code_loc): Rename as...
3664 (gram_last_braced_code_loc): this.
3665 Adjust to the changes of the parser.
3666 Move all the handling of $ and @ into...
3667 * src/scan-code.l: here.
3668 * src/scan-gram.l (handle_dollar, handle_at): Remove.
3669 (handle_action_dollar, handle_action_at): Move to...
3670 * src/scan-code.l: here.
3671 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
3672 scan-code.h, scan-code-c.c, scan-gram.h.
3673 (EXTRA_bison_SOURCES): Add scan-code.l.
3674 (BUILT_SOURCES): Add scan-code.c.
3675 (yacc): Be robust to white spaces.
3676
3677 * tests/conflicts.at, tests/input.at, tests/reduce.at,
3678 * tests/regression.at: Adjust the column numbers.
3679 * tests/regression.at: Adjust the error message.
3680
36812006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
3682
3683 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
3684 Use Akim's wording from
3685 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
3686
36872006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
3688
3689 Between Bison releases, manually append `+' to the previous Bison
3690 release number, and use that as a signal to automatically print the
3691 ChangeLog's CVS Id keyword from --version. Discussed starting at
3692 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
3693 * ChangeLog: Add Id header.
3694 * configure.ac (AC_INIT): Append `+' to `2.3'.
3695 * src/.cvsignore: Add revision.c.
3696 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
3697 (BUILT_SOURCES): Add revision.c.
3698 (revision.c): New target rule. This file defines a new global variable
3699 named revision. It initializes it with either the Id from ChangeLog
3700 or, if VERSION doesn't contain `+', with the empty string.
3701 * src/getargs.c (version): Print the value of revision.
3702 * src/revision.h: Extern revision.
3703
37042006-06-05 Paul Eggert <eggert@cs.ucla.edu>
3705
3706 * NEWS: Version 2.3.
3707 * configure.ac (AC_INIT): Likewise.
3708
37092006-05-30 Paul Eggert <eggert@cs.ucla.edu>
3710
3711 * data/glr.c (YYRECOVERING): Define to be a function-like macro
3712 with no arguments, not as an object-like macro. This is for
3713 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
3714 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
3715 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
3716 Document this.
3717
37182006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
3719
3720 * src/getargs.c (usage): Back out yesterday's modification of the
3721 --help output so that we don't have to wait for translation before
3722 releasing 2.3.
3723
37242006-05-29 Paul Eggert <eggert@cs.ucla.edu>
3725
3726 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
3727 Problem reported by Akim Demaille.
3728
37292006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3730
3731 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
3732
37332006-05-26 Paul Eggert <eggert@cs.ucla.edu>
3734
3735 * data/yacc.c (yy_reduce_print): Omit trailing white space in
3736 generated source code. Problem reported by Frans Englich in
3737 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
3738
37392006-05-22 Paul Eggert <eggert@cs.ucla.edu>
3740
3741 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
3742 shell, not within 'make', so that 'make' by an ordinary builder
3743 (using GNU make) does not worry about configuring gzip. This also
3744 works around a bug reported independently by Keith Thompson and by
3745 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
3746 stderr rather than stdout, messing up the build logs.
3747
37482006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
3749
3750 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
3751 to make sure that YYID will never be unused. This fixes a 'make
3752 maintainer-check' failure caused by the recent changes to the 'Trivial
3753 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
3754 not used.
3755 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
3756
37572006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
3758
3759 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
3760 state before an empty RHS is always resolved here. Only the location
3761 of that state is guaranteed to be resolved, and that's enough. This
3762 fixes the remaining bug reported by Derek M. Jones in
3763 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
3764 * tests/glr-regression.at (Uninitialized location when reporting
3765 ambiguity): Test the above case.
3766 Also, the embedded comments in this test case claim it checks the case
3767 of an empty RHS that has inherited the initial location. However, the
3768 corresponding LHS was already resolved, so yyresolveLocations didn't
3769 actually have reason to modify it. Fix this by forcing
3770 nondeterministic operation at the beginning of the parse.
3771
37722006-05-20 Paul Eggert <eggert@cs.ucla.edu>
3773
3774 * data/c.m4 (b4_yy_symbol_print_generate):
3775 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
3776 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
3777 of the bugs reported today by Derek M Jones in
3778 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
3779 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
3780 defined to be a type name without parens or brackets.
3781 (Location Type): Similarly for YYLTYPE.
3782 * tests/regression.at (Trivial grammars): Put in a test for this
3783 bug that will be caught by 'make maintainer-check' (though not,
3784 alas, by 'make check' unless your compiler is picky).
3785
37862006-05-19 Paul Eggert <eggert@cs.ucla.edu>
3787
3788 * NEWS: Version 2.2.
3789 * configure.ac (AC_INIT): Likewise.
3790
37912006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
3792
3793 * data/glr.c (yyreportTree): Make room in yystates for the state
3794 preceding the RHS. This fixes the segmentation fault reported by Derek
3795 M. Jones in
3796 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
3797 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
3798 to the user. Reported for yyreportTree by Derek M. Jones later in the
3799 same thread.
3800 * THANKS: Add Derek M. Jones.
3801 Update my email address.
3802 Fix typo in Steve Murphy's name.
3803
38042006-05-14 Paul Eggert <eggert@cs.ucla.edu>
3805
3806 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
3807 checking against YYLAST that caused the parser to miss a potential
3808 alternative in its diagnostic.
3809 Problem reported by Maria Jose Moron Fernandez in
3810 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
3811 * data/lalr1.cc (yysyntax_error_): Likewise.
3812 * data/yacc.c (yysyntax_error): Likewise.
3813 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
3814 tokens, in case we run into an older C compiler.
3815 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
3816 Use them to check for the off-by-one error fixed above.
3817
3818 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
3819 YYSIZE_T, not size_t.
3820 * tests/regression.at (Trivial grammars): New test, to catch
3821 the error fixed by the above patch.
3822
38232006-05-14 Akim Demaille <akim@lrde.epita.fr>
3824
3825 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
3826 scheme.
3827 Reported by Steve Murphy.
3828
38292006-05-14 Akim Demaille <akim@lrde.epita.fr>
3830
3831 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
3832 * data/glr.cc: b4_location_flag is now b4_locations_flag.
3833
38342006-05-14 Akim Demaille <akim@lrde.epita.fr>
3835
3836 Implement --trace=m4.
3837 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
3838 * src/output.c (output_skeleton): When set, pass -dV to m4.
3839
3840 Factor the handling of flags in m4.
3841 * src/output.c (prepare): Rename the muscle names debug, defines,
3842 error_verbose to debug_flag, defines_flag, error_verbose_flag.
3843 * data/c.m4: Adjust.
3844 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
3845 Use b4_define_flag_if to define other b4_FLAG_if macros.
3846 (b4_location_if): As a consequence, rename as...
3847 (b4_locations_if): this, for consistency.
3848 Adjust all the skeletons.
3849
38502006-05-14 Akim Demaille <akim@lrde.epita.fr>
3851
3852 * etc/bench.pm: Shorten bench names.
3853
38542006-05-14 Akim Demaille <akim@lrde.epita.fr>
3855
3856 * src/output.h, src/output.c (error_verbose): Move to...
3857 * src/getargs.h, src/getargs.c: here.
3858 Sort the flags.
3859 Adjust dependencies.
3860
38612006-05-13 Paul Eggert <eggert@cs.ucla.edu>
3862
3863 * data/c.m4 (b4_copyright): Put the special exception for Bison
3864 skeletons here, so we don't have to put it in each skeleton. All
3865 uses changed. Suggested by Akim Demaille. Also, wrap the
3866 copyright notice, in case it is longer than 80 columns. Replace
3867 comma by newline after title.
3868
38692006-05-11 Paul Eggert <eggert@cs.ucla.edu>
3870
3871 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
3872 incompatibility, not a bug. Mention that it wasn't fixed as of
3873 flex 2.5.33.
3874
38752006-05-11 Akim Demaille <akim@lrde.epita.fr>
3876
3877 * examples/extexi: Enforce the precedence of concatenation over
3878 >>.
3879 Reported by Tommy Nordgren.
3880
38812006-05-11 Akim Demaille <akim@lrde.epita.fr>
3882
3883 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
3884 with the member "token".
3885 Reported by Martin Nylin.
3886
38872006-05-08 Paul Eggert <eggert@cs.ucla.edu>
3888
3889 * data/glr.c: Switch to Bison 2.2 special-exception language in
3890 the copyright notice. Use more-regular format for titles and
3891 copyright notices.
3892 * data/glr.cc: Likewise.
3893 * data/location.cc: Likewise.
3894 * data/yacc.cc: Likewise.
3895 * doc/bison.texinfo (Conditions): Document this.
3896 * NEWS: likewise. Upgrade version to 2.2.
3897
38982006-04-27 Akim Demaille <akim@lrde.epita.fr>
3899
3900 * data/glr.cc: Remove dead code.
3901
39022006-04-25 Paul Eggert <eggert@cs.ucla.edu>
3903
3904 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
3905 that variable and the line breaks the bootstrap. Problem reported
3906 by Juan M. Guerrero.
3907
39082006-04-24 Akim Demaille <akim@lrde.epita.fr>
3909
3910 * doc/bison.texinfo (Multiple start-symbols): New.
3911
39122006-04-24 Akim Demaille <akim@lrde.epita.fr>
3913
3914 * etc/README, etc/bench.pl: New.
3915
39162006-04-03 Akim Demaille <akim@lrde.epita.fr>
3917
3918 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
3919 rule.
3920 Reported by Mickael Labau.
3921 * tests/input.at (Torturing the Scanner): Test it.
3922
39232006-03-16 Paul Eggert <eggert@cs.ucla.edu>
3924
3925 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
3926 Problem reported by Bob Rossi.
3927
39282006-03-13 Paul Eggert <eggert@cs.ucla.edu>
3929
3930 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
3931 and didn't really work.
3932 For the index, use @ifnotinfo, not @iftex.
3933 Minor cleanups of spacing and terminology.
3934
39352006-03-12 Akim Demaille <akim@lrde.epita.fr>
3936
3937 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
3938 of AT_NAME_PREFIX when %name-prefix is not used.
3939
39402006-03-12 Akim Demaille <akim@lrde.epita.fr>
3941
3942 Apply --prefix to C++ skeletons too: they change the namespace.
3943 The test suite already exercize these cases.
3944 * data/c++.m4 (b4_namespace): New.
3945 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
3946 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
3947 * data/yacc.c, data/glr.c: Remove a useless `[]'.
3948 * doc/bison.texinfo: Document it.
3949 (Option Cross Key): Use @multitable in all formats. It looks
3950 nicer, even in TeX outputs.
3951 (Rules): Use the same code whatever the output type is.
3952 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
3953 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
3954 * tests/calc.at: Use it, instead of hard coding `yy'.
3955
39562006-03-10 Akim Demaille <akim@lrde.epita.fr>
3957
3958 * TODO: Remove dead items.
3959
39602006-03-10 Akim Demaille <akim@lrde.epita.fr>
3961
3962 * doc/FAQ: Remove, merged into...
3963 * doc/bison.texinfo (FAQ): this.
3964 * doc/Makefile.am (EXTRA_DIST): Adjust.
3965
39662006-03-10 Akim Demaille <akim@lrde.epita.fr>
3967
3968 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
3969 even if empty.
3970 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
3971 * doc/bison.texinfo (Calc++ Scanner): Use it.
3972
39732006-03-09 Paul Eggert <eggert@cs.ucla.edu>
3974
3975 Fix two nits reported by twlevo, plus one more that I discovered.
3976
3977 * src/assoc.h (assoc_to_string): Give a name to the arg, as
3978 this is the usual Bison style.
3979 * src/location.h (location_print): Likewise.
3980
3981 * src/reader.h (token_name): Likewise.
3982
39832006-03-08 Paul Eggert <eggert@cs.ucla.edu>
3984
3985 Fix some nits reported by twlevo.
3986 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
3987 and "POSIX". Use more-modern syntax for URLs. Mention C++
3988 and ask for Java. Don't hardwire OS version numbers. Add
3989 copyright notice.
3990 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
3991 * src/conflicts.c (solved_conflicts_obstack): Now static.
3992
39932006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3994
3995 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
3996 page. Say "you can use it" not "you may use it" as on the web page;
3997 we're describing capabilities not granting permission.
3998
39992006-03-06 Paul Eggert <eggert@cs.ucla.edu>
4000
4001 * data/glr.c (yyresolveLocations): Rename local variables to avoid
4002 shadowing warnings. Use usual patter for iterating through RHS.
4003 * tests/glr-regression.at
4004 (Uninitialized location when reporting ambiguity):
4005 Modify yylex so that it uses its argument, rather than trying
4006 to rely on ARGSUSED (which doesn't work for gcc with warnings).
4007 const char -> char const.
4008
4009 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
4010 Don't use tabs inside commands; it messes up 'ps'.
4011 Problem reported by twlevo.
4012
40132006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
4014
4015 * tests/glr-regression.at (Uninitialized location when reporting
4016 ambiguity): New test case.
4017 * data/glr.c (yyresolveLocations): New function, which uses
4018 YYLLOC_DEFAULT.
4019 (yyresolveValue): Invoke yyresolveLocations before reporting an
4020 ambiguity.
4021 * doc/bison.texinfo (Default Action for Locations): Note
4022 YYLLOC_DEFAULT's usage for ambiguity locations.
4023 (GLR Semantic Actions): Cross-reference those notes.
4024
40252006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
4026
4027 * tests/glr-regression.at (Leaked semantic values when reporting
4028 ambiguity): Remove unnecessary union and type declarations.
4029 (Leaked lookahead after nondeterministic parse syntax error): New test
4030 case.
4031 * data/glr.c (yyparse): Check for zero stacks remaining before
4032 attempting to shift the lookahead so that you don't lose it.
4033
40342006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4035
4036 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
4037 * tests/glr-regression.at (Leaked semantic values when reporting
4038 ambiguity): New test case.
4039 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
4040 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
4041 now unnecessary yystackp parameter.
4042 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
4043 destructors can be called.
4044
4045 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
4046 in existing testcases.
4047
40482006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4049
4050 Don't leak semantic values for parent RHS when a user action cuts the
4051 parser, and clean up related code a bit.
4052 * tests/glr-regression.at (Leaked merged semantic value if user action
4053 cuts parse): Rename to...
4054 (Leaked semantic values if user action cuts parse): ... this. Add check
4055 for leaked parent RHS values.
4056 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
4057 between an unresolved state (non-empty chain of semantic options) and
4058 an incomplete one (signaled by an empty chain).
4059 (yyresolveStates): Document the interface. Move all manipulation of a
4060 successfully or unsuccessfully resolved yyGLRState to...
4061 (yyresolveValue): ... here so that yyresolveValue always leaves a
4062 yyGLRState with consistent data and thus is easier to understand.
4063 Remove the yyvalp and yylocp parameters since they are always just
4064 taken from the yys parameter. When reporting a discarded merged value
4065 in debugging output, note that it is incompletely merged. Document the
4066 interface.
4067 (yyresolveAction): If resolving any of the RHS states fails, destroy
4068 them all rather than leaking them. Thus, as long as user actions are
4069 written to clean up the RHS correctly, yyresolveAction always cleans up
4070 the RHS of a semantic option. Document the interface.
4071
40722006-02-27 Paul Eggert <eggert@cs.ucla.edu>
4073
4074 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
4075 led to a segmentation fault in GNU Pascal. Problem reported
4076 by Waldek Hebisch.
4077
40782006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
4079
4080 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
4081 mid-rule action inside a nonterminal symbol in order to declare a
4082 destructor for its semantic value.
4083
40842006-02-16 Paul Eggert <eggert@cs.ucla.edu>
4085
4086 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
4087 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
4088 __cplusplus && ! defined _STDLIB_H && !
4089 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
4090 defined free))]: Include <stdlib.h> rather than rolling our own
4091 declarations of malloc and free, to avoid problems with
4092 incompatible declarations (using 'throw') C++'s stdlib.h. This
4093 should fix Debian bug 340012
4094 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
4095 reported by Guillaume Melquiond.
4096
40972006-02-13 Paul Eggert <eggert@cs.ucla.edu>
4098
4099 * NEWS: Clarify symbols versus types in unused-value warnings.
4100
4101 * configure.ac (AC_INIT): Bump version number.
4102
41032006-02-13 Paul Eggert <eggert@cs.ucla.edu>
4104
4105 * NEWS: Version 2.1a.
4106 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
4107 since C99 requires this.
4108
41092006-02-11 Paul Eggert <eggert@cs.ucla.edu>
4110
4111 * m4/c-working.m4: New file.
4112 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
4113
41142006-02-10 Paul Eggert <eggert@cs.ucla.edu>
4115
4116 * Makefile.maint: Merge from coreutils.
4117
41182006-02-09 Paul Eggert <eggert@cs.ucla.edu>
4119
4120 More portability fixes for problems summarized by Nelson H. F. Beebe.
4121
4122 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
4123 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
4124 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
4125 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
4126 messes up because C++ code is compiled in 32-bit mode but linked
4127 in 64-bit mode.
4128
41292006-02-08 Paul Eggert <eggert@cs.ucla.edu>
4130
4131 More portability fixes for problems summarized by Nelson H. F. Beebe.
4132
4133 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
4134 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
4135
4136 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
4137 nodist_PROGRAMS, since we don't need to actually compile the
4138 example if we're just doing a plain 'make'. This avoids bothering
4139 the installer unnecessarily about problems due to weird C++
4140 compilers.
4141
41422006-02-06 Paul Eggert <eggert@cs.ucla.edu>
4143
4144 More portability fixes for problems summarized by Nelson H. F. Beebe.
4145
4146 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
4147 than #include "...", and compile with -I'.'. The old method was
4148 not portable, according to Posix and the C standard, and it does
4149 not work with Sun C 5.7, where previous #line directives affect
4150 the working directory used in later #include "..." directives.
4151
41522006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4153
4154 Various DJGGP specific issues in /djgpp
4155
41562006-02-02 Paul Eggert <eggert@cs.ucla.edu>
4157
4158 More portability fixes for problems summarized by Nelson H. F. Beebe.
4159
4160 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
4161 '#include <map>' works and that you can apply ++ to iterators.
4162
41632006-02-01 Paul Eggert <eggert@cs.ucla.edu>
4164
4165 Work around portability problems summarized by Nelson H. F. Beebe in
4166 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
4167
4168 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
4169 that '#include <string>' works.
4170
4171 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
4172 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
4173 "warning: sorry: semantics of inline function static data `const
4174 unsigned char translate_table[262]' are wrong (you'll wind up with
4175 multiple copies)".
4176
4177 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
4178 or, xor to not_, and_, or_, and xor_, respectively. This works
4179 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
4180 random system header somewhere that includes the equivalent of
4181 <iso646.h>.
4182
4183 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
4184 -E" works; it apparently doesn't work with PathScale EKO Compiler
4185 Suite Version 2.0.
4186
41872006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
4188
4189 During deterministic GLR operation, user actions should be able to
4190 influence the parse by changing yychar. To make this easier to fix and
4191 to make glr.c easier to evolve in general, don't maintain yytoken in
4192 parallel with yychar; just compute yytoken when needed.
4193 * tests/glr-regression.at (Incorrect lookahead during deterministic
4194 GLR): Check that setting yychar in a user action has the intended
4195 effect.
4196 * data/glr.c (yyGLRStack): Remove yytokenp member.
4197 (yyclearin): Don't set *yytokenp.
4198 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
4199 yychar rather than *yytokenp to determine the current lookahead.
4200 Compute yytoken locally when needed.
4201 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
4202 point to.
4203
4204 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
4205 after `--report' documentation.
4206
42072006-01-30 Paul Eggert <eggert@cs.ucla.edu>
4208
4209 * src/parse-gram.y (grammar_declaration): Location of printer
4210 symbol is @1, not list->location. Bug reported by twlevo.
4211 * tests/input.at (Incompatible Aliases): Adjust to above change.
4212
42132006-01-29 Paul Eggert <eggert@cs.ucla.edu>
4214
4215 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
4216 all the test at once. This makes the output easier to read in the
4217 normal case.
4218
4219 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
4220 got from <http://bro-ids.org/download.html>. The bug is that
4221 when two actions appeared in succession, the second one was
4222 scanned before the first one was added to the grammar rule
4223 as a midrule action. Bison then output the incorrect warning
4224 "parse.y:905.17-906.36: warning: unused value: $3".
4225 * src/parse-gram.y (BRACED_CODE, action): These are no longer
4226 associated with a value.
4227 (rhs): Don't invoke grammar_current_rule_action_append.
4228 (action): Invoke it here instead.
4229 * src/reader.c (grammar_midrule_action): Now extern.
4230 (grammar_current_rule_action_append): Don't invoke
4231 grammar_midrule_action; that is now the scanner's job.
4232 * src/reader.h (last_string, last_braced_code_loc):
4233 (grammar_midrule_action): New decls.
4234 * src/scan-gram.l (last_string): Now extern, sigh.
4235 (last_braced_code_loc): New extern variable.
4236 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
4237 rule already has an action.
4238 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
4239 * tests/input.at (AT_CHECK_UNUSED_VALUES):
4240 Add some tests to check that the above changes fixed the bug.
4241
42422006-01-27 Paul Eggert <eggert@cs.ucla.edu>
4243
4244 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
4245 All used changed. Check whether the symbol has a destructor,
4246 not whether it is typed.
4247 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
4248 that the values are still reported as unused. All line numbers
4249 adjusted.
4250
42512006-01-23 Paul Eggert <eggert@cs.ucla.edu>
4252
4253 Work around a bug in bro 0.8, which underparenthesizes its
4254 definition of YYLLOC_DEFAULT.
4255 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
4256 their arguments.
4257 * data/lalr1.cc: Likewise.
4258 * data/yacc.cc: Likewise.
4259
42602006-01-22 Paul Eggert <eggert@cs.ucla.edu>
4261
4262 Work around a bug in Pike 7.0, and give the Pike folks a
4263 better way to override the usual int widths.
4264 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
4265 user can override the types.
4266 (short): #undef, to work around a bug in Pike 7.0.
4267 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
4268 (union yyalloc.yyss): Use yytype_int16 rather than short.
4269 All uses changed.
4270 (yysigned_char): Remove.
4271 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
4272 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
4273 * tests/regression.at (Web2c Actions): Adjust to above changes.
4274
4275 * src/reader.c (check_and_convert_grammar): New function.
4276 (reader): Close the input file even if something went wrong during
4277 parsing. Minor file descriptor leak reported by twlevo.
4278
4279 * src/assoc.c (assoc_to_string): Use a default: abort (); case
4280 to pacify gcc -Wswitch-default.
4281 * src/scan-gram.l (adjust_location): Use a default: break; case
4282 to pacify gcc -Wswitch-default.
4283 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
4284 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
4285 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
4286 Move these decls to scan-skel.l, since they don't need to be
4287 visible elsewhere.
4288 * src/scan-skel.l: Accept the above decls.
4289 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
4290 is used.
4291
42922006-01-21 Paul Eggert <eggert@cs.ucla.edu>
4293
4294 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
4295 since we don't want to insist on a version number at the start
4296 of the changelog every time.
4297 * Makefile.maint: Sync from coreutils a bit better.
4298 (sc_trailing_blank): Renamed from sc_trailing_space.
4299 All uses changed.
4300 (sc_no_if_have_config_h, sc_require_config_h):
4301 (sc_prohibit_assert_without_use): New rules.
4302 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
4303 (sc_dd_max_sym_length): Fix leading spaces in rule.
4304 (sc_system_h_headers): Prefix with @.
4305 (sc_useless_cpp_parens, m4-check): Output line numbers.
4306 (changelog-check): Allow version only in head.
4307 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
4308 satisfy new Makefile.maint rule.
4309 * data/glr.c: Likewise.
4310 * data/glr.cc: Likewise.
4311 * data/lalr1.cc: Likewise.
4312 * data/yacc.c: Likewise.
4313 * lib/ebitsetv.c: Likewise.
4314 * lib/lbitset.c: Likewise.
4315 * lib/subpipe.c: Likewise.
4316 * lib/timevar.c: Likewise.
4317 * src/system.h: Likewise.
4318 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
4319 * djgpp/Makefile.maint: Add copyright notice.
4320 * djgpp/README.in: Likewise.
4321 * djgpp/config.bat: Likewise.
4322 * djgpp/config.site: Likewise.
4323 * djgpp/config_h.sed: Likewise.
4324 * djgpp/djunpack.bat: Likewise.
4325 * djgpp/config.sed: Fix copyright notice to match standard format.
4326 * djgpp/subpipe.h: Likewise.
4327 * lib/bitsetv-print.c: Likewise.
4328 * lib/bitsetv.c: Likewise.
4329 * lib/subpipe.h: Likewise.
4330 * lib/timevar.c: Likewise.
4331 * lib/timevar.h: Likewise.
4332 * djgpp/subpipe.c: Use standard recipe for config.h.
4333 * lib/abitset.c: Likewise.
4334 * lib/bitset.c: Likewise.
4335 * lib/bitset_stats.c: Likewise.
4336 * lib/bitsetv-print.c: Likewise.
4337 * lib/bitsetv.c: Likewise.
4338 * lib/ebitsetv.c: Likewise.
4339 * lib/get-errno.c: Likewise.
4340 * lib/lbitset.c: Likewise.
4341 * lib/subpipe.c: Likewise.
4342 * lib/timevar.c: Likewise.
4343 * lib/vbitset.c: Likewise.
4344 * tests/local.at: Likewise.
4345 * src/scan-gram.l: Don't include verify.h, since system.h does
4346 that for us.
4347 * .x-sc_require_config_h: New file.
4348 * .x-sc_unmarked_diagnostics: New file.
4349
43502006-01-20 Paul Eggert <eggert@cs.ucla.edu>
4351
4352 Be a bit more systematic about using 'abort'.
4353 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
4354 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
4355 Put 'default: abort ();' before some other case, to satisfy older
4356 pedantic compilers.
4357 * lib/bitset_stats.c (bitset_stats_init): Likewise.
4358 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
4359 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
4360 * src/conflicts.c (resolve_sr_conflict): Likewise.
4361 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
4362 (get_decision_str, get_orientation_str, get_node_alignment_str):
4363 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
4364 (get_linestyle_str, get_arrowstyle_str): Likewise.
4365 * src/conflicts.c (resolve_sr_conflict):
4366 Use a default case rather than one for the one remaining enum
4367 value, to catch invalid enum values as well.
4368 * src/lalr.c (set_goto_map, map_goto):
4369 Prefer "assert (FOO);" to "if (!FOO) abort ();".
4370 * src/nullable.c (nullable_compute, token_definitions_output):
4371 Likewise.
4372 * src/reader.c (packgram, reader): Likewise.
4373 * src/state.c (transitions_to, state_new, state_reduction_find):
4374 Likewise.
4375 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
4376 (symbol_pack): Likewise.
4377 * src/tables.c (conflict_row, pack_vector): Likewise.
4378 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
4379 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
4380 * src/system.h: Don't include <assert.h>.
4381 (assert): New macro.
4382
4383 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
4384 (Destructor Decl, Parser Function, Pure Calling):
4385 Describe rules for braces inside C code more carefully.
4386
43872006-01-19 Paul Eggert <eggert@cs.ucla.edu>
4388
4389 Fix some porting glitches found by Nelson H. F. Beebe.
4390 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
4391 compilers that don't understand that abort () does not return.
4392 * src/state.c (transitions_to): Likewise.
4393 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
4394 that '#include <cstdlib>' works.
4395 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
4396 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
4397 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
4398 for the benefit of some pre-C99 compilers.
4399
4400 * bootstrap: Undo changes to gnulib files that autoreconf made.
4401
4402 Minor fixups to get 'make maintainer-check' to work.
4403 * configure.ac: Don't use -Wnested-externs, as it's incompatible
4404 with the new verify.h implementation.
4405 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
4406 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
4407 * data/yacc.c (YYUSE): Likewise.
4408 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
4409 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
4410 * src/parse-gram.y (declaration): Don't pass a string constant
4411 to a function that expects char *, since GCC might complain
4412 about the constant value.
4413 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
4414 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
4415 before #defining them.
4416 * tests/glr-regression.at
4417 (Incorrectly initialized location for empty right-hand side in GLR):
4418 In yyerror, use the msg arg.
4419 (Corrupted semantic options if user action cuts parse):
4420 (Incorrect lookahead during deterministic GLR):
4421 (Incorrect lookahead during nondeterministic GLR):
4422 Don't name a local var 'index'; it shadows string.h's 'index'.
4423
44242006-01-19 Akim Demaille <akim@epita.fr>
4425
4426 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
4427 location, not just parts of it.
4428
44292006-01-18 Paul Eggert <eggert@cs.ucla.edu>
4430
4431 * NEWS: Document the fact that multiple %unions are now allowed.
4432 * doc/bison.texinfo (Union Decl): Likewise.
4433 * TODO: This feature is now implemented, so remove it from
4434 the wishlist.
4435
4436 * Makefile.maint: Merge with coreutils Makefile.maint.
4437 (CVS_LIST): Use build-aux version if available.
4438 (VERSION_REGEXP): New macro.
4439 (syntax-check-rules): Add sc_no_if_have_config_h,
4440 sc_prohibit_assert_without_use, sc_require_config_h,
4441 sc_useless_cpp_parens.
4442 (sc_obsolete_symbols): Check for O_NDELAY.
4443 (sc_dd_max_sym_length): Track coreutils.
4444 (sc_unmarked_diagnostics): Look in all files, not just *.c.
4445 (sc_useless_cpp_parens): New rule.
4446 (news-date-check): Look for version or today's date.
4447 (changelog-check): Don't require version number near head.
4448 (copyright-check): Use current year instead of hardwiring 2005.
4449 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
4450 (announcement): Add --gpg-key-ID.
4451
4452 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
4453 with "file system".
4454
4455 Avoid undefined behavior that addressed just before the start of an
4456 array. Problem reported by twlevo.
4457 * src/reader.c (packgram): Prepend a new sentinel before ritem.
4458 * src/lalr.c (build_relations): Rely on new sentinel.
4459 * src/gram.c (gram_free): Adjust to new sentinel.
4460
44612006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
4462
4463 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
4464 yylookaheadNeeds. All uses updated.
4465 (yysplitStack): Rename local yynewLookaheadStatuses to
4466 yynewLookaheadNeeds.
4467 * data/glr-regression.at (Incorrect lookahead during nondeterministic
4468 GLR): In comments, change `lookahead status' to `lookahead need'.
4469
44702006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4471
4472 * data/glr.c (yysplitStack): A little stylistic rewrite.
4473
44742006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
4475
4476 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
4477
44782006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
4479
4480 * doc/bison.texinfo: Fix some typos.
4481 (GLR Semantic Actions): New subsection discussing special
4482 considerations because GLR semantic actions might be deferred.
4483 (Actions): Mention look-ahead usage of yylval.
4484 (Actions and Locations): Mention look-ahead usage of yylloc.
4485 (Special Features for Use in Actions): Add YYEOF entry and mention it
4486 in the yychar entry.
4487 In the yychar entry, remove mention of the local yychar case (pure
4488 parser) since this is irrelevant information when writing semantic
4489 actions and since it's already discussed in `Table of Symbols' where
4490 yychar is otherwise described as an external variable.
4491 In the yychar entry, don't call it the `current' look-ahead since it
4492 isn't when semantic actions are deferred.
4493 In the yychar and yyclearin entries, add note about deferred semantic
4494 actions.
4495 Add yylloc and yylval entries discussing look-ahead usage.
4496 (Look-Ahead Tokens): When discussing yychar, don't call it the
4497 `current' look-ahead, and do mention yylval and yylloc.
4498 (Error Recovery): Cross-reference `Action Features' when mentioning
4499 yyclearin.
4500 (Table of Symbols): In the yychar entry, don't call it the `current'
4501 look-ahead.
4502 In the yylloc and yylval entries, mention look-ahead usage.
4503
45042006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4505
4506 * tests/glr-regression.at: Update copyright year to 2006.
4507
45082006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4509
4510 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
4511 use during nondeterministic operation to track which stacks have
4512 actually needed the current lookahead.
4513 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
4514 Allocate, deallocate, resize, and otherwise shuffle space for
4515 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
4516 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
4517 appropriately during nondeterministic operation.
4518 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
4519 members to store the current lookahead to be used by the deferred
4520 user action.
4521 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
4522 from which the RHS is taken. Set the lookahead members of the new
4523 yySemanticOption according to the lookahead status for stack yyk.
4524 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
4525 yyaddDeferredAction.
4526 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
4527 members of yySemanticOption before invoking yyuserAction, and then set
4528 them back to their current values afterward.
4529 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
4530 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
4531 * tests/glr-regression.at: Remove `.' from the ends of recent test case
4532 titles for consistency.
4533 (Leaked merged semantic value if user action cuts parse): In order to
4534 suppress lint warnings, use arguments in merge function, and assign
4535 char value < 128 in main.
4536 (Incorrect lookahead during deterministic GLR): New test case.
4537 (Incorrect lookahead during nondeterministic GLR): New test case.
4538
45392006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4540
4541 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
4542 !yyvaluep as signal that no semantic value is available to print.
4543 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
4544 to print a semantic value.
4545
45462006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4547
4548 * tests/glr-regression.at: For consistency with my newer test cases,
4549 don't thank myself.
4550
45512006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4552
4553 * data/glr.c (yyresolveValue): When merging semantic options, if at
4554 least one user action succeeds but a later one cuts the parse, then
4555 destroy the semantic value before returning rather than leaking it.
4556 (yyresolveStates): If a user action cuts the parse and thus
4557 yyresolveValue fails, ignore the (unset) semantic value rather than
4558 corrupting the yyGLRState, and empty the semantic options list since
4559 the user actions should have called all necessary destructors.
4560 Simplify code with YYCHK.
4561 * tests/glr-regression.at (Corrupted semantic options if user action
4562 cuts parse): New test case.
4563 (Undesirable destructors if user action cuts parse): New test case.
4564 Before applying any of this patch, this test case never actually failed
4565 for me... but only because the corrupted semantic options usually
4566 masked this bug.
4567 (Leaked merged semantic value if user action cuts parse): New test
4568 case.
4569
45702006-01-05 Akim Demaille <akim@epita.fr>
4571
4572 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
4573
45742006-01-04 Paul Eggert <eggert@cs.ucla.edu>
4575
4576 * data/c.m4 (b4_c_modern): New macro, with a new provision for
4577 _MSC_VER. Problem reported by Cenzato Marco.
4578 (b4_c_function_def): Use it.
4579 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
4580 b4_c_modern.
4581 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
4582 than rolling our own.
4583
45842006-01-04 Akim Demaille <akim@epita.fr>
4585
4586 Also warn about non-used mid-rule values.
4587 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
4588 member.
4589 (symbol_list_new): Adjust.
4590 * src/reader.c (symbol_typed_p): New.
4591 (grammar_rule_check): Use it.
4592 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
4593 Check its rule.
4594 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
4595 Use it.
4596 * tests/actions.at (Exotic Dollars): Adjust.
4597
45982006-01-04 Akim Demaille <akim@epita.fr>
4599
4600 * src/reader.c (grammar_midrule_action): If $$ is set in a
4601 mid-rule, move the `used' bit to its lhs.
4602 * tests/input.at (Unused values): New.
4603 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
4604
46052006-01-03 Paul Eggert <eggert@cs.ucla.edu>
4606
4607 * doc/bison.texinfo (Bison Options): Say more accurately what
4608 --yacc does.
4609 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
4610 about declarations in the grammar when in Yacc mode, as POSIX does
4611 not require a diagnostic when the grammar uses extensions.
4612
4613 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
4614
4615 Warn about dubious constructions like "%token T T".
4616 Reported by twlevo.
4617 * src/symtab.h (struct symbol.declared): New member.
4618 * src/symtab.c (symbol_new): Initialize it to false.
4619 (symbol_class_set): New arg DECLARING, specifying whether
4620 this is a declaration that we want to warn about, if there
4621 is more than one of them. All uses changed.
4622
4623 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
4624 Allow multiple %union directives, whose contents concatenate.
4625 * src/parse-gram.y (grammar_declaration): Likewise.
4626 Use muscle_code_grow, so that we don't need stype_line any more.
4627 All uses changed.
4628
4629 * src/muscle_tab.c (muscle_grow): Fix comment.
4630
4631 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
4632 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
4633 Update copyright year to 2006.
4634
46352006-01-03 Akim Demaille <akim@epita.fr>
4636
4637 Have glr.cc pass (some of) the calc.at tests.
4638 * data/glr.cc (b4_parse_param_orig): New.
4639 (b4_parse_param): Improve its definition, and bound it more
4640 clearly in the skeleton.
4641 (b4_epilogue): Append, instead of prepending, in order to keep
4642 #line consistency.
4643 Simplify the generation of auxiliary functions: locations and
4644 purity are mandated.
4645 (b4_global_tokens_and_yystype): Honor it.
4646 * data/location.cc (c++.m4): Don't include it.
4647 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
4648 and AT_SKEL_CC_IF.
4649 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
4650 AT_LALR1_CC_IF.
4651 Be sure to initialize the first position's filename.
4652 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
4653 mandated anyway.
4654 (AT_CHECK_CALC_GLR_CC): New.
4655 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
4656
46572006-01-02 Akim Demaille <akim@epita.fr>
4658
4659 * src/output.c (output_skeleton): Don't hard wire the inclusion of
4660 c.m4.
4661 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
4662 * data/glr.cc: Do not include stack.hh.
4663
46642006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4665
4666 * data/glr.c: Reformat whitespace with tabs.
4667 (b4_lpure_formals): Remove this unused m4 macro.
4668 * tests/cxx-type.at: Reformat whitespace with tabs.
4669 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
4670 since it's a member. Rename type to isNterm for clarity.
4671
46722005-12-29 Akim <akim@sulaco.local>
4673
4674 Let glr.cc catch up with symbol_value_print.
4675 * data/glr.cc (b4_yysymprint_generate): Replace by...
4676 (b4_yy_symbol_print_generate): this.
4677 (yy_symbol_print, yy_symbol_value_print): Declare them.
4678
46792005-12-28 Paul Eggert <eggert@cs.ucla.edu>
4680
4681 * src/location.h (boundary): Note that a line or column equal
4682 to INT_MAX indicates an overflow.
4683 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
4684 (rule_length_overflow, increment_rule_length, add_column_width):
4685 New functions.
4686 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
4687 (<SC_BRACED_CODE>"}"):
4688 Use increment_rule_length rather than incrementing it by hand.
4689 (adjust_location, handle_syncline): Diagnose overflow.
4690 (handle_action_dollar, handle_action_at):
4691 Fix bug with monstrosities like $-2147483648.
4692 Remove now-unnecessary checks.
4693 (scan_integer): Verify assumptions and remove now-unnecessary checks.
4694 (convert_ucn_to_byte): Verify assumptions.
4695 (handle_syncline): New arg LOC. All callers changed.
4696 Don't store through a value derived from char const * pointer.
4697
4698 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
4699 GCC warnings.
4700
47012005-12-27 Paul Eggert <eggert@cs.ucla.edu>
4702
4703 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
4704 Remove unnecessary forward static decls.
4705
47062005-12-27 Akim Demaille <akim@epita.fr>
4707
4708 * src/reader.c (grammar_current_rule_check): Also check that $$
4709 is used.
4710 Take the rule to check as argument, hence rename as...
4711 (grammar_rule_check): this.
4712 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
4713 Rename as...
4714 (grammar_rule_begin, grammar_rule_end): these, for consistency.
4715 (grammar_midrule_action, grammar_symbol_append): Now static.
4716 * tests/torture.at (input): Don't rely on the default action
4717 being always performed.
4718 * tests/calc.at: "Set" $$ even when the action is "cut" with
4719 YYERROR or other.
4720 * tests/actions.at (Exotic Dollars): Instead of using unused
4721 values, check that the warning is issued.
4722
47232005-12-22 Paul Eggert <eggert@cs.ucla.edu>
4724
4725 * NEWS: Improve wording for unused-value warnings.
4726
47272005-12-22 Akim Demaille <akim@epita.fr>
4728
4729 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
4730 (b4_yysymprint_generate): Rename as...
4731 (b4_yy_symbol_print_generate): this.
4732 Generate yy_symbol_print instead of yysymprint.
4733 Generate also yy_symbol_value_print, and use it.
4734
47352005-12-22 Akim Demaille <akim@epita.fr>
4736
4737 * NEWS: Warn about unused values.
4738 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
4739 a `used' member.
4740 (symbol_list_n_get, symbol_list_n_used_set): New.
4741 (symbol_list_n_type_name_get): Use symbol_list_n_get.
4742 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
4743 * src/reader.c (grammar_current_rule_check): Check that values are
4744 used.
4745 * src/symtab.c (symbol_print): Accept 0.
4746 * tests/existing.at: Remove the type information.
4747 Empty the actions.
4748 Remove useless actions (beware of mid-rule actions: perl -000
4749 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
4750 * tests/actions.at (Exotic Dollars): Use unused values.
4751 * tests/calc.at: Likewise.
4752 * tests/glr-regression.at (No users destructors if stack 0 deleted):
4753 Likewise.
4754
4755 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
4756 rule_useful_p.
4757
47582005-12-21 Paul Eggert <eggert@cs.ucla.edu>
4759
4760 Undo 2005-12-01 tentative license wording change. The wording is
4761 still being reviewed by the lawyers, and we don't want to wait for
4762 them before publishing a test release. For now, revert to the
4763 previous wording.
4764 * NEWS: Undo 2005-12-01 change.
4765 * data/glr.c: Revert to previous license wording.
4766 * data/glr.cc: Likewise.
4767 * data/lalr1.cc: Likewise.
4768 * data/location.cc: Likewise.
4769 * data/yacc.c: Likewise.
4770
4771 * NEWS: Reword %destructor vs YYABORT etc.
4772 * data/glr.c: Use American spacing, for consistency.
4773 * data/glr.cc: Likewise.
4774 * data/lalr1.cc: Likewise.
4775 * data/yacc.c: Likewise.
4776 * data/yacc.c: Reformat comments slightly.
4777 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
4778 for consistency. Fix some spelling errors and reword recently-included
4779 text slightly.
4780 * tests/cxx-type.at: Cast results of malloc, for C++.
4781
47822005-12-21 Joel E. Denny <address@hidden>
4783
4784 * tests/cxx-type.at: Construct a tree, count the parents of shared
4785 nodes, and free each node once and only once. Previously, the memory
4786 for semantic values was leaked instead.
4787
47882005-12-21 Joel E. Denny <address@hidden>
4789
4790 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
4791 (yylval, yylloc): If pure, #define to yystackp->yyval and
4792 yystackp->yyloc similar to yychar and yynerrs.
4793 (yyparse): If pure, remove local yylval and yylloc. Add local
4794 yystackp to accommodate pure definitions of yylval and yylloc.
4795 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
4796 yylvalp and yyllocp to &yylval and &yylloc.
4797 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
4798 namespace. Previously, nerrs and char were missing, but lval and lloc
4799 weren't necessary.
4800 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
4801 yylvalp and yyllocp parameters since, if pure, these are now always
4802 accessible through yystackp. If not pure, they are still accessible
4803 globally.
4804 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
4805 `if (YYID (N))' to pacify lint.
4806
48072005-12-21 Akim Demaille <akim@epita.fr>
4808
4809 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
4810 destroy the RHS symbols of a rule.
4811 * data/yacc.c (yylen): Initialize to 0.
4812 Keep its value to the number of items to possibly shift.
4813 In particular, a regular successful parse that ends on YYFINAL by
4814 a (internal) YYACCEPT must not have yylen != 0.
4815 (yyerrorlab, yyreturn): Pop the RHS.
4816 Reorder a bit to emphasize the `shifting' bits of code.
4817 (YYPOPSTACK): Now accept a number of items to pop.
4818 * data/lalr1.cc: Likewise.
4819 * data/glr.c: Formatting changes.
4820 Use goto instead of fall through.
4821 * doc/bison.texinfo (Destructor Decl): Complete.
4822
48232005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4824
4825 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
4826 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
4827 * djgpp/config.bat: Replace every occurence of the file name
4828 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
4829 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
4830 * djgpp/config.sed: Replace every occurence of the file name
4831 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
4832 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
4833 * djgpp/djunpack.bat: DJGPP specific file.
4834 * djgpp/fnchange.lst: DJGPP specific file.
4835 * djgpp/README.in: Add new information about how to unpack the bison
4836 source on MSDOS and other systems which have 8.3 file name restrictions
4837 using djunpack.bat and fnchange.lst.
4838
48392005-12-12 Paul Eggert <eggert@cs.ucla.edu>
4840
4841 * bootstrap (build_cvs_prefix): Remove; unused.
4842 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
4843 when getting gnulib.
4844
48452005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
4846
4847 * data/glr.c: Reorder typedef declarations for structs to match order
4848 of struct declarations.
4849 Rename yystack everywhere to yystackp except in yyparse where it's not
4850 a pointer.
4851 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
4852 consistency.
4853 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
4854 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
4855 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
4856 lint.
4857
48582005-12-09 Paul Eggert <eggert@cs.ucla.edu>
4859
4860 * tests/sets.at (Accept): Fix typos in regular expression used to
4861 sed out the final state number.
4862
4863 Work around portability problem on Solaris 10: flex-generated
4864 files include <stdio.h> before <config.h>, which messes up
4865 because the latter defines __EXTENSIONS__. Address the problem
4866 by creating two new little files that include <config.h> first,
4867 then include the flex-generated files. Rewrite everyone else
4868 to include <config.h> first, as well.
4869 * lib/timevar.c: Always include "config.h".
4870 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
4871 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
4872 (EXTRA_bison_SOURCES): New macro.
4873 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
4874 * src/system.h: Don't include config.h.
4875 * src/LR0.c: Include <config.h> first.
4876 * src/assoc.c: Likewise.
4877 * src/closure.c: Likewise.
4878 * src/complain.c: Likewise.
4879 * src/conflicts.c: Likewise.
4880 * src/derives.c: Likewise.
4881 * src/files.c: Likewise.
4882 * src/getargs.c: Likewise.
4883 * src/gram.c: Likewise.
4884 * src/lalr.c: Likewise.
4885 * src/location.c: Likewise.
4886 * src/main.c: Likewise.
4887 * src/muscle_tab.c: Likewise.
4888 * src/nullable.c: Likewise.
4889 * src/output.c: Likewise.
4890 * src/parse-gram.y: Likewise.
4891 * src/print.c: Likewise.
4892 * src/print_graph.c: Likewise.
4893 * src/reader.c: Likewise.
4894 * src/reduce.c: Likewise.
4895 * src/relation.c: Likewise.
4896 * src/state.c: Likewise.
4897 * src/symlist.c: Likewise.
4898 * src/symtab.c: Likewise.
4899 * src/tables.c: Likewise.
4900 * src/uniqstr.c: Likewise.
4901 * src/vcg.c: Likewise.
4902
4903 * src/parse-gram.y: Fix minor problems uncovered by lint.
4904 (current_lhs, current_lhs_location): Now static.
4905 (current_assoc): Remove unused variable.
4906
4907 Cleanups so that Bison-generated parsers have less lint.
4908 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
4909 Prepend /*ARGSUSED*/, for lint's sake.
4910 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
4911 definition if 'lint' is defined.
4912 (YYID): New macro (or function, if lint).
4913 All uses of /*CONSTCOND*/0 replaced by YYID(0).
4914 * data/yacc.c: Likewise.
4915 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
4916 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
4917 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
4918 is C++ only.
4919 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
4920 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
4921 Use YYID(0) rather than 0, for lint.
4922 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
4923 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
4924
49252005-12-07 Paul Eggert <eggert@cs.ucla.edu>
4926
4927 * tests/glr-regression.at
4928 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
4929 Close memory leak reported by twlevo.
4930
49312005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
4932
4933 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
4934 all stacks.
4935 (yyparse): Iterate another stack in order to call user destructors.
4936 * tests/glr-regression.at (No users destructors if stack 0 deleted):
4937 New test case.
4938 (Duplicated user destructor for lookahead): This test now is expected
4939 to succeed.
4940
49412005-12-01 Paul Eggert <eggert@cs.ucla.edu>
4942
4943 * NEWS: Document the following change.
4944 * data/yacc.c: Say "parser skeleton" rather than "file", since
4945 it's no longer just a file.
4946 * data/glr.c: Grant a special exception for C GLR parsers, that
4947 reads like the already-existing exception for C LALR(1) parsers.
4948 * data/glr.cc: Likewise.
4949 * data/lalr1.cc: Likewise.
4950 * data/location.cc: Likewise.
4951 * data/yacc.c: Reword the "written by" statement to clarify that
4952 it was the parser skeleton, not the entire output file.
4953 * data/glr.c: Written by Paul Hilfinger.
4954 * data/glr.cc: Written by Akim Demaille.
4955 * data/lalr1.cc: Likewise.
4956
49572005-11-18 Paul Eggert <eggert@cs.ucla.edu>
4958
4959 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
4960 Fix typos in previous change that broke 'make check'.
4961 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
4962 supported in C.
4963 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
4964 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
4965 We can revert this once things settle down.
4966
4967 * src/conflicts.c (conflicts_print): Don't print file name twice
4968 when %expect fails because there were no conflicts.
4969 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
4970 change.
4971 * tests/conflicts.at (%expect not enough, %expect too much):
4972 (%expect with reduce conflicts): Adjust to new behavior.
4973
49742005-11-18 Akim Demaille <akim@epita.fr>
4975
4976 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
4977 errors.
4978 * NEWS: Document this.
4979 * doc/bison.texinfo (Expect Decl): Likewise.
4980
49812005-11-16 Akim Demaille <akim@epita.fr>
4982
4983 Generalize the display of semantic values and locations in traces.
4984 * data/glr.c (yy_reduce_print): Fix indices (again).
4985 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
4986 literal integers.
4987 * data/lalr1.cc (yyreduce_print): Rename as...
4988 (yy_reduce_print): this.
4989 Display values and locations.
4990 * data/yacc.c (yy_reduce_print): Likewise.
4991 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
4992 (yysymprint): Move higher to be visible from yy_reduce_print).
4993 (yyparse): Adjust.
4994 * tests/calc.at: Adjust the expected length of the traces.
4995
49962005-11-14 Akim Demaille <akim@epita.fr>
4997
4998 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
4999 from 1 to N, while values and location start at 0.
5000 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
5001
50022005-11-14 Akim Demaille <akim@epita.fr>
5003
5004 * data/glr.c (yy_reduce_print): Fix the $ number.
5005
50062005-11-14 Akim Demaille <akim@epita.fr>
5007
5008 "Use" parse parameters.
5009 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
5010 * data/glr.c, data/glr.cc: Use them.
5011 * data/glr.c (YYUSE): Have a C++ definition that supports
5012 non-pointer types.
5013
50142005-11-14 Akim Demaille <akim@epita.fr>
5015
5016 * data/glr.c (yyexpandGLRStack): Declare only if defined.
5017
50182005-11-14 Akim Demaille <akim@epita.fr>
5019
5020 * data/glr.cc: New.
5021 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5022
50232005-11-12 Akim Demaille <akim@epita.fr>
5024
5025 Let position and location be PODs.
5026 * data/location.cc (position::initialize, location::initialize): New.
5027 (position::position, location::location): Define only if
5028 b4_location_constructors is defined.
5029 * data/lalr1.cc (b4_location_constructors): Define it for backward
5030 compatibility.
5031 * doc/bison.texinfo (Initial Action Decl): Use initialize.
5032
50332005-11-12 Akim Demaille <akim@epita.fr>
5034
5035 * data/lalr1.cc: Move the body of the ctor and dtor into the
5036 parser file (instead of the header).
5037 Wrap the implementations in a "namespace yy".
5038
50392005-11-12 Akim Demaille <akim@epita.fr>
5040
5041 Have glr.c include its header file when created.
5042 * data/glr.c (b4_shared_declarations): New.
5043 Output them verbatim in the parser if !%defines, otherwise
5044 output then in the header file, and include it instead.
5045
50462005-11-11 Akim Demaille <akim@epita.fr>
5047
5048 * data/glr.c: Comment changes.
5049
50502005-11-11 Akim Demaille <akim@epita.fr>
5051
5052 When yydebug, report semantic and location values for reductions.
5053 * data/glr.c (yy_reduce_print): Report the semantic values and the
5054 locations.
5055 (YY_REDUCE_PRINT): Adjust.
5056 (yyglrReduce): Use them.
5057 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
5058 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
5059 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
5060 traces.
5061
50622005-11-10 Akim Demaille <akim@epita.fr>
5063
5064 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
5065 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
5066 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
5067
50682005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
5069
5070 * m4/cxx.m4, examples/Makefile.am: Don't build
5071 examples/calc++ if no C++ compiler is available. (trivial change)
5072
50732005-11-09 Akim Demaille <akim@epita.fr>
5074
5075 * src/scan-skel.l: Use a couple of asserts.
5076
50772005-11-03 Akim Demaille <akim@epita.fr>
5078
5079 In some (weird) cases, the final state number is incorrect.
5080 Reported by Alexandre Duret-Lutz.
5081 * src/LR0.c (state_list_append): Remove the computation of
5082 final_state.
5083 (save_reductions): Do it here.
5084 (get_state): Alpha conversion.
5085 (generate_states): Use a for loop.
5086 * src/gram.h (item_number_is_rule_number)
5087 (item_number_is_symbol_number): New.
5088 * src/state.c: Use assert.
5089 * src/system.h: Include assert.h.
5090 * tests/sets.at (Accept): New.
5091
50922005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5093
5094 * data/glr.c (yyfill): Adjust comment.
5095 (yyresolveAction): Initialize default location properly
5096 for empty right-hand sides.
5097 (yydoAction): Ditto.
5098 Add comment explaining apparently dead code.
5099 * tests/glr-regression.at
5100 (Incorrectly initialized location for empty right-hand side in GLR):
5101 New test.
5102
51032005-10-30 Paul Eggert <eggert@cs.ucla.edu>
5104
5105 * bootstrap (cleanup_gnulib): New function. Use it to clean up
5106 gnulib when interrupted. This fixes some race conditions and
5107 works around some portability problems (one noted by Paul
5108 Hilfinger).
5109
51102005-10-22 Akim <akim@epita.fr>
5111
5112 * Makefile.cfg: Adjust to config -> build-aux.
5113 Reported by twledo.
5114
51152005-10-21 Akim Demaille <akim@epita.fr>
5116
5117 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
5118 the %parse-params.
5119 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
5120 * data/yacc.c (b4_Pure_if): Rename as...
5121 (b4_yacc_pure_if): this.
5122 (YY_SYMBOL_PRINT, yyparse): Adjust.
5123 * doc/bison.texinfo: Formatting changes.
5124
51252005-10-21 Akim Demaille <akim@epita.fr>
5126
5127 Finish the transition config -> build-aux.
5128 * configure.ac, Makefile.am: Use build-aux.
5129 * config/prev-version, config/announce-gen, config/Makefile.am:
5130 Move to...
5131 * build-aux/prev-version, build-aux/announce-gen,
5132 * build-aux/Makefile.am: here.
5133
51342005-10-14 Akim Demaille <akim@epita.fr>
5135
5136 * examples/calc++/test: Use set -x only when VERBOSE.
5137
51382005-10-13 Paul Eggert <eggert@cs.ucla.edu>
5139
5140 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
5141 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
5142
51432005-10-13 Akim Demaille <akim@epita.fr>
5144
5145 * src/scan-skel.l: Output the base name parts of the parser and
5146 header file names.
5147 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
5148 additional checks.
5149 Use this to exercise C++ outputs in subdirs.
5150 Reported by Oleg Smolsky.
5151
51522005-10-12 Paul Eggert <eggert@cs.ucla.edu>
5153
5154 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
5155 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
5156 Problem reported by John P. Hartmann.
5157 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
5158 already defined it.
5159
51602005-10-12 Akim Demaille <akim@epita.fr>
5161
5162 * src/parse-gram.y (version_check): Exit 63 to please missing
5163 (stands for "version mismatch).
5164 * tests/input.at, doc/bison.texinfo: Adjust.
5165
51662005-10-10 Paul Eggert <eggert@cs.ucla.edu>
5167
5168 Work around portability problems with Visual Age C compiler
5169 (xlc and xlC_r) reported by John P. Hartmann.
5170 * data/location.cc (initial_column, initial_line): Remove.
5171 All uses replaced by 0 and 1.
5172 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
5173 that xlc complains about.
5174 * src/scan-skel.l (skel_wrap): Likewise.
5175 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
5176 as __STDC__.
5177 * data/yacc.c (YYMODERN_C): New macro, which also looks at
5178 __STDC_VERSION__. Use it everywhere instead of looking at
5179 __STDC__ and __cplusplus.
5180
51812005-10-10 Akim Demaille <akim@epita.fr>
5182
5183 * examples/calc++/test: Be quiet unless VERBOSE.
5184
51852005-10-05 Paul Eggert <eggert@cs.ucla.edu>
5186
5187 * data/c.m4 (yydestruct, yysymprint):
5188 Use YYUSE instead of casting to void.
5189 * data/glr.c (YYUSE): New macro.
5190 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
5191 Use it instead of rolling our own.
5192 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
5193 (YYCHK1):
5194 Use /*CONSTCOND*/ to suppress lint warnings.
5195 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
5196 (YY_STACK_PRINT): Use 'false' not '0'.
5197 (YYUSE): New macro.
5198 (yysymprint_, yydestruct_): Use it instead of rolling our own.
5199 * data/yacc.c (YYUSE): New macro.
5200 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
5201 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
5202 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
5203
5204
5205 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
5206 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
5207
52082005-10-04 Paul Eggert <eggert@cs.ucla.edu>
5209
5210 Undo the parts of the unlocked-I/O change that substituted
5211 putc or puts for printf. This might hurt performance a bit,
5212 but some people prefer the printf style.
5213 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
5214 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
5215 All uses replaced by YYFPRINTF and YYDPRINTF.
5216 * data/yacc.c: Likewise.
5217 * lib/bitset.c (bitset_print): Likewise.
5218 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
5219 putc and puts.
5220 * lib/lbitset.c (debug_lbitset): Likewise.
5221 * src/closure.c (print_firsts, print_fderives): Likewise.
5222 * src/gram.c (grammar_dump): Likewise.
5223 * src/lalr.c (look_ahead_tokens_print): Likewise.
5224 * src/output.c (escaped_output): Likewise.
5225 (user_actions_output): Break apart two printfs.
5226 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
5227 * src/reduce.c (reduce_print): Likewise.
5228 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
5229 * src/system.h: Include unlocked-io.h rathe than stdio.h.
5230
5231 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
5232 Use assignments rather than casts-to-void to suppress
5233 unused-variable warnings. This pacifies 'lint'.
5234 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
5235 unused-variable warnings.
5236
52372005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5238
5239 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
5240
52412005-10-02 Paul Eggert <eggert@cs.ucla.edu>
5242
5243 Use unlocked I/O for a minor performance improvement on hosts like
5244 GNU/Linux and Solaris that support unlocked I/O. The basic idea
5245 is to use the gnlib unlocked-io module, and to prefer putc and
5246 puts to printf when either will work (since the latter doesn't
5247 come in an unlocked flavor).
5248 * bootstrap (gnulib_modules): Add unlocked-io.
5249 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
5250 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
5251 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
5252 and similarly for puts and putc and printf.
5253 * data/yacc.c: Likewise.
5254 * lib/bitset.c (bitset_print): Likewise.
5255 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
5256 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
5257 to printf.
5258 * lib/lbitset.c (debug_lbitset): Likewise.
5259 * src/closure.c (print_firsts, print_fderives): Likewise.
5260 * src/gram.c (grammar_dump): Likewise.
5261 * src/lalr.c (look_ahead_tokens_print): Likewise.
5262 * src/output.c (escaped_output): Likewise.
5263 (user_actions_output): Coalesce two printfs.
5264 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
5265 * src/reduce.c (reduce_print): Likewise.
5266 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
5267 * src/system.h: Include unlocked-io.h rather than stdio.h.
5268
5269 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
5270 this confuses xgettext.
5271
52722005-10-02 Akim Demaille <akim@epita.fr>
5273
5274 * bootstrap (gnulib_modules): Add strverscmp.
5275 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
5276 * m4/.cvsignore: Add strverscmp.m4.
5277 * src/parse-gram.y (%require): New token, new rule.
5278 (version_check): New.
5279 * src/scan-gram.l (%require): Adjust.
5280 * tests/input.at (AT_REQUIRE): New.
5281 Use it.
5282 * doc/bison.texinfo (Require Decl): New.
5283 (Calc++ Parser): Use %require.
5284
52852005-10-02 Akim Demaille <akim@epita.fr>
5286
5287 * data/location.cc: New.
5288
52892005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
5290 Akim Demaille <akim@epita.fr>
5291
5292 Make sure -odir/foo.cc creates dir/location.hh etc.
5293 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
5294 (spec_file_prefix, spec_verbose_file, spec_graph_file)
5295 (spec_defines_file): Now const.
5296 (dir_prefix): New.
5297 (short_base_name): Remove.
5298 * src/files.c: Adjust.
5299 (dirname.h): Include.
5300 (base_name): Don't prototype it.
5301 (finput): Remove, duplicates gram_in.
5302 (full_base_name, short_base_name): Replace by...
5303 (all_but_ext, all_but_tab_ext): these.
5304 (compute_base_names): Rename as...
5305 (compute_file_name_parts): this.
5306 Update to compute the new variables, including dir_prefix.
5307 Adjust dependencies.
5308 * src/output.c (prepare): Output them.
5309 * src/reader.c: Adjust to use gram_in, not finput.
5310 * src/scan-skel.l (@dir_prefix@): New.
5311
53122005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5313
5314 * lib/subpipe.c: New function end_of_output_subpipe() added
5315 to allow support for non-posix systems. This is a no-op function
5316 for posix systems.
5317
5318 * lib/subpipe.h: New function end_of_output_subpipe() added
5319 to allow support for non-posix systems. This is a no-op function
5320 for posix systems.
5321
5322 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
5323 handle the lack of pipe/fork functionality on non-posix systems.
5324
5325 * djgpp/Makefile.maint: DJGPP specific file.
5326
5327 * djgpp/README.in: DJGPP specific file.
5328
5329 * djgpp/config.bat: DJGPP specific configuration file.
5330
5331 * djgpp/config.sed: DJGPP specific configuration file.
5332
5333 * djgpp/config.site: DJGPP specific configuration file.
5334
5335 * djgpp/config_h.sed: DJGPP specific configuration file.
5336
5337 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
5338
5339 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
5340
53412005-10-02 Akim Demaille <akim@epita.fr>
5342
5343 * data/location.cc: New, extract from...
5344 * data/lalr1.cc: here.
5345 (location.hh): Include it after the user prologue, in case the
5346 filename type is defined by the user.
5347 Forward declation location and position before the pre-prologue.
5348 (yyresult_): Rename as...
5349 (yyresult): this, it's a local variable, not an attribute.
5350 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
5351
53522005-10-01 Akim Demaille <akim@epita.fr>
5353
5354 * examples/extexi: Restore the #line generation.
5355
53562005-09-30 Akim Demaille <akim@epita.fr>,
5357 Alexandre Duret-Lutz <adl@gnu.org>
5358
5359 Move the token type and YYSTYPE in the parser class.
5360 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
5361 (parser::token): New, from the moved free definition of tokens.
5362 (parser::semantic_value): Now a full definition instead of an
5363 indirection to YYSTYPE.
5364 (b4_post_prologue): No longer included in the header file, but
5365 in the implementation file.
5366 * doc/bison.texi (C+ Language Interface): Update.
5367 * src/parse-gram.y: Support unary %define.
5368 * tests/actions.at: Define global_tokens_and_yystype for backward
5369 compatibility until we update the tests.
5370 * tests/calc.at: Idem.
5371 (first_line, first_column, last_line, last_column): Define for lalr1.cc
5372 to simplify the code.
5373
53742005-09-29 Paul Eggert <eggert@cs.ucla.edu>
5375
5376 Port to SunOS 4.1.4, which lacks strtoul and strerror.
5377 Ah, the good old days! Problem reported by Peter Klein.
5378 * bootstrap (gnulib_modules): Add strerror, strtoul.
5379 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
5380 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
5381
53822005-09-29 Akim Demaille <akim@epita.fr>
5383
5384 * data/c.m4 (b4_error_verbose_if): New.
5385 * data/lalr1.cc: Use it.
5386 (YYERROR_VERBOSE_IF): Remove.
5387 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
5388 parser members, replaced by...
5389 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
5390 local variables.
5391 (yysyntax_error_): Takes the state number as argument.
5392 (yyreduce_print_): Use the argument yyrule, not the former
5393 attribute yyn_.
5394
53952005-09-26 Paul Eggert <eggert@cs.ucla.edu>
5396
5397 * bootstrap (gnulib_modules): Add verify.
5398 * lib/.cvsignore: Add verify.h.
5399 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
5400 * src/system.h (verify): Remove.
5401 Include verify.h instead.
5402 * src/tables.c (tables_generate): Use new API for 'verify'.
5403
54042005-09-21 Paul Eggert <eggert@cs.ucla.edu>
5405
5406 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
5407 local variables whose names begin with 'yy'.
5408 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
5409 Trivial changes from Joel E. Denny.
5410
5411 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
5412 it itself.
5413 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
5414 don't use alloca any more.
5415
5416 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
5417 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
5418 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
5419 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
5420 to match yacc.c, to test more hosts.
5421
54222005-09-20 Paul Eggert <eggert@cs.ucla.edu>
5423
5424 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
5425 doesn't affect behavior.
5426 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
5427 Solaris, AIX, MSC.
5428 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
5429 This works a bit better with glibc, if user code has already included
5430 stdlib.h.
5431 * doc/bison.texinfo (Bison Parser): Document that users can't
5432 arbitrarily use malloc and free for other purposes. Document
5433 that <alloca.h> and <malloc.h> might be included.
5434 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
5435 user must declare alloca.
5436
5437 * HACKING (release): Forwarn the Translation Project about
5438 stable releses.
5439
54402005-09-20 Akim Demaille <akim@epita.fr>
5441
5442 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
5443
54442005-09-19 Paul Eggert <eggert@cs.ucla.edu>
5445
5446 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
5447 (YYSTACK_ALLOC_MAXIMUM): Use it.
5448 (yysyntax_error): New function.
5449 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
5450 multiple syntax errors are reported, and alloca is being used.
5451 Instead, reallocate buffers twice as big each time, so that
5452 we waste at most half the allocated memory. Start with a small
5453 (128-byte) buffer that will suffice in most cases anyway.
5454 Use yysyntax_error to do most of the work.
5455
5456 * doc/bison.texinfo (Error Reporting, Table of Symbols):
5457 yynerrs is the number of errors reported, not the number of
5458 errors encountered.
5459
5460 * tests/glr-regression.at (Duplicated user destructor for lookahead):
5461 Mark it as expected to fail.
5462 Cast result of malloc; problem reported by twlevo@xs4all.nl.
5463 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
5464 Don't start user-code symbols with "yy", to avoid name space problems.
5465
54662005-09-19 Akim Demaille <akim@epita.fr>
5467
5468 Remove the traits, failed experiment.
5469 It never proved useful, and anyway because of the current
5470 definition, it was not possible to have several specialization of
5471 this traits, making it useless.
5472 * data/lalr1.cc (yy:traits): Remove.
5473 Inline its definitions in the parser class.
5474
54752005-09-19 Akim Demaille <akim@epita.fr>
5476
5477 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
5478 least Mac OSX with a /usr/local install of gettext.
5479
54802005-09-19 Akim Demaille <akim@epita.fr>
5481
5482 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
5483 and yytoken for similarity with the other skeletons.
5484
54852005-09-19 Akim Demaille <akim@epita.fr>
5486
5487 * NEWS, configure.ac: update version number to 2.1a.
5488
54892005-09-16 Paul Eggert <eggert@cs.ucla.edu>
5490
5491 * NEWS: Version 2.1.
5492
5493 * NEWS: Remove notice of yytname change, since it was never in an
5494 official release.
5495 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
5496 diagnostic.
5497 * src/output.c (prepare): Likewise.
5498 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
5499 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
5500 is not defined. This is an awful hack, but it's enough for now.
5501 All callers changed.
5502 * tests/glr-regression-at (make_value): Args are const pointers now,
5503 to avoid GCC warning.
5504 (Duplicated user destructor for lookahead): New test. Currently
5505 skipped. It fails on my host but I'm not sure it'll always fail.
5506
55072005-09-16 Akim Demaille <akim@epita.fr>
5508
5509 * src/symtab.h (struct symbol): Declare the printer and destructor
5510 as const, to avoid accidental calls to free.
5511 (symbol_destructor_set, symbol_printer_set): Adjust.
5512 * src/symtab.c: Adjust.
5513
55142005-09-16 Akim Demaille <akim@epita.fr>
5515
5516 * data/c.m4 (b4_token_enums): New.
5517 (b4_token_defines): Rename as...
5518 (b4_token_enums_defines): this.
5519 (b4_token_defines): New, output only the #defines.
5520 * data/yacc.c, data/glr.c: Adjust.
5521 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
5522 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
5523 as default values.
5524
55252005-09-16 Akim Demaille <akim@epita.fr>
5526
5527 * data/lalr1.cc (yylex_): Remove, inline its code.
5528 (yyreport_syntax_error_): Remove, replaced by...
5529 (yysyntax_error_): this which returns a string and leaves to the
5530 caller the call to the users' error function.
5531 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
5532 Move from members of the parser object...
5533 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
5534 to local variables of the parse function.
5535
55362005-09-16 Akim Demaille <akim@epita.fr>
5537
5538 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
5539 since it's in Bison's name space.
5540
55412005-09-15 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 * data/glr.c (yyresolveValue): Add default case to pacify
5544 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
5545
5546 * NEWS: Document when yyparse started to return 2.
5547 * doc/bison.texinfo (Parser Function): Document when yyparse
5548 returns 2.
5549
5550 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
5551 (b4_filename_type): Renamed back from b4_file_name_type. All uses
5552 changed.
5553 (class position): file_name -> filename (reverting). All uses changed.
5554
55552005-09-14 Paul Eggert <eggert@cs.ucla.edu>
5556
5557 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
5558 do anything if $@ exists. This reverts part of the 2005-07-07
5559 patch.
5560
55612005-09-11 Paul Eggert <eggert@cs.ucla.edu>
5562
5563 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
5564 contains obsolete information and isn't worth distributing as a
5565 separate file anyway.
5566 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
5567 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
5568 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
5569 (yyparse): Abort if user code uses longjmp to throw an unexpected
5570 value.
5571
55722005-09-09 Paul Eggert <eggert@cs.ucla.edu>
5573
5574 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
5575 Suggested by twlevo@xs4all.nl.
5576
5577 * data/glr.c (YYCHK1): Do not assume YYE is in range.
5578 This avoids a diagnostic from gcc -Wswitch-enum.
5579 Problem reported by twlevo@xs4all.nl.
5580
5581 * doc/bison.texinfo: Don't use "filename", as per GNU coding
5582 standards. Use "file name" or "file" or "name", depending on
5583 the context.
5584 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
5585 not to hack/foo.tab.c.
5586 (Calc++ Top Level): 2nd arg of main is not const.
5587 * data/glr.c: b4_filename -> b4_file_name.
5588 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
5589 All uses changed.
5590 (class position): filename -> file_name. All uses changed.
5591 * data/yacc.c: b4_filename -> b4_file_name.
5592 * lib/bitset.h: filename -> file_name in local vars.
5593 * lib/bitset_stats.c: Likewise.
5594 * src/files.c: Likewise.
5595 * src/scan-skel.l ("@output ".*\n): Likewise.
5596 * src/files.c (file_name_split): Renamed from filename_split.
5597 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
5598
55992005-09-08 Paul Eggert <eggert@cs.ucla.edu>
5600
5601 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
5602 to accommodate latest gnulib.
5603
5604 * tests/glr-regression.at (Duplicate representation of merged trees):
5605 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
5606
5607 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
5608 needed.
5609
56102005-08-26 Paul Eggert <eggert@cs.ucla.edu>
5611
5612 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
5613 All uses changed. Invoke user destructor after an error during a
5614 split parse (trivial change from Joel E. Denny).
5615
5616 * tests/glr-regression.at
5617 (User destructor after an error during a split parse): New test case.
5618 Problem reported by Joel E. Denny in:
5619 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
5620
56212005-08-25 Paul Eggert <eggert@cs.ucla.edu>
5622
5623 * README-cvs: Give URLs for recommended tools.
5624 Mention Gzip version problem, and bootstrapping issues.
5625 Remove troubleshooting section, as it's somewhat obsolete.
5626
5627 * bootstrap (no_cache): New var, to accommodate different wget
5628 variants. Use it instead of '-C off'. Problem reported by
5629 twlevo@xs4all.nl.
5630
5631 * data/glr.c (yydestroyStackItem): New function.
5632 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
5633 debugging information. Problem reported by Joel E. Denny.
5634
56352005-08-25 Akim Demaille <akim@epita.fr>
5636
5637 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
5638
56392005-08-24 Paul Eggert <eggert@cs.ucla.edu>
5640
5641 * data/glr.c (yyrecoverSyntaxError, yyreturn):
5642 Don't invoke destructor on unresolved entries.
5643 * tests/glr-regression.at
5644 (User destructor for unresolved GLR semantic value): New test case.
5645 Problem reported by Joel E. Denny in:
5646 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
5647
56482005-08-21 Paul Eggert <eggert@cs.ucla.edu>
5649
5650 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
5651 Add strnlen.c.
5652 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
5653 lib-prefix.m4, po.m4.
5654
5655 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
5656 in yydestruct diagnostic, since it might not be an error.
5657 Problem reported by Joel Denny near end of
5658 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
5659 * data/lalr1.cc (yyerturn): Likewise.
5660 * data/yacc.c (yyreturn): Likewise.
5661 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
5662
5663 * src/files.c: Remove obsolete FIXME comment.
5664
5665 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
5666 with the other templates, and to fix bogus run-on messages such
5667 as the one reported at the end of
5668 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
5669 All callers changed to avoid the newline.
5670 (yyprocessOneStack): Output two lines rather than one, to accommodate
5671 the above change. This changes the debug output format slightly.
5672
5673 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
5674 reported by Joel E. Denny in
5675 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
5676 (trivial change).
5677 * tests/glr-regression.at (Duplicate representation of merged trees):
5678 New test, from Joel E. Denny in:
5679 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
5680 * THANKS: Add Joel E. Denny.
5681
5682 * configure.ac (AC_INIT): Bump to 2.0c.
5683
56842005-07-24 Paul Eggert <eggert@cs.ucla.edu>
5685
5686 * NEWS: Version 2.0b.
5687
5688 * Makefile.am (SUBDIRS): Put examples before tests, so that
5689 "make check" doesn't finish with "All 1 tests passed".
5690
5691 * tests/regression.at (Token definitions): Don't rely on
5692 AT_PARSER_CHECK for data that contains backslashes. It currently
5693 uses 'echo', and 'echo' isn't portable if its argument contains
5694 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
5695 that the byte '\0xff' is not printable in the C locale; it is,
5696 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
5697 not printable, so use '\0x81' to test.
5698
5699 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
5700 version of GCC, since the macro is used with non-GCC compilers.
5701
5702 Fix core dump reported by Pablo De Napoli in
5703 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
5704 * tests/regression.at (Invalid inputs with {}): New test.
5705 * src/parse-gram.y (token_name): Translate type before using
5706 it as an index.
5707
5708 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
5709 the user's name space. All uses changed to __attribute__
5710 ((__unused__)).
5711 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
5712 Add __attribute__ ((__noreturn__)).
5713
5714 * etc/clcommit: Remove. We weren't using it, and it failed
5715 "make maintainer-distcheck".
5716 * Makefile.maint: Merge from coreutils.
5717 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
5718 (syntax-check-rules): Change list of rules as described below.
5719 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
5720 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
5721 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
5722 (sc_trailing_space): New rules.
5723 (sc_xalloc_h_in_src): Remove.
5724 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
5725 (sc_space_tab, sc_error_exit_success, sc_changelog):
5726 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
5727 (makefile-check, po-check, author_mark_check):
5728 (makefile_path_separator_check, copyright-check):
5729 Use grep -n, to make it easier to find violations.
5730 Use CVS_LIST and CVS_LIST_EXCEPT.
5731 (header_regexp, h_re): Remove.
5732 (dd_c): New macro.
5733 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
5734 (my-distcheck): Use more-modern GCC flags.
5735 (signatures, %.asc): Remove.
5736 (rel-files, announcement): Remove signatures.
5737 Restore old updating code, even though we don't use it, so
5738 that we're the same as coreutils.
5739 (alpha, beta, major): Depend on news-date-check.
5740 Make the upload commands.
5741
5742 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
5743 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
5744 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
5745 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
5746 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
5747 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
5748 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
5749 * tests/sets.at: Likewise.
5750
5751 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
5752 we comment out the Autoconf version number.
5753 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
5754 it's error-prone and "make maintainer-distcheck" rejects it.
5755
5756 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
5757 Indent calls to "error" to pacify "make maintainer-distcheck",
5758 when the calls are not intended to be translated.
5759 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
5760
5761 * src/Makefile.am (DEFS): Use +=, to pacify
5762 "make maintainer-distcheck".
5763 (bison_SOURCES): Add scan-skel.h.
5764 (sc_tight_scope): New rule, from coreutils.
5765
5766 * src/files.c (src_extension, header_extension):
5767 Now static, not extern.
5768 * src/getargs.c (short_options): Likewise.
5769 * src/muscle_tab.c (muscle_table): Likewise.
5770 * src/parse-gram.y (current_class, current_type, current_prec):
5771 Likewise.
5772 * src/reader.c (grammar_end, previous_rule_end): Likewise.
5773 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
5774 * src/main.c (main): Cast bindtextdomain and textdomain calls to
5775 void, to avoid warning when NLS is disabled.
5776 * src/output.c: Include scan-skel.h.
5777 (scan_skel): Remove decl, since scan-skel.h does this.
5778 (output_skeleton):
5779 Indent calls to "error" to pacify "make maintainer-distcheck".
5780 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
5781 * src/reader.h (gram_end, gram_lineno): New decls to pacify
5782 "make maintainer-distcheck".
5783 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
5784 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
5785 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
5786 (skel_lex_destroy, scan_skel): Move these decls to...
5787 * src/scan-skel.h: New file.
5788 * src/uniqstr.c (uniqstr_assert):
5789 Indent calls to "error" to pacify "make maintainer-distcheck".
5790
5791 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
5792 not @VAR@.
5793
5794 * tests/torture.at: Revamp to avoid misuse of atoi that
5795 "make maintainer-distcheck" complained about.
5796
5797 * examples/extexi (message): Don't print a message more than once,
5798 and omit line-number decoration that makes Emacs compile think
5799 that informative messages are worth worrying about.
5800
58012005-07-22 Paul Eggert <eggert@cs.ucla.edu>
5802
5803 * configure.ac: Update version number.
5804
5805 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
5806 accidentally.
5807 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
5808 autogenerated by the maintainer.
5809 * examples/calc++/.cvsignore: Add *.yy.
5810
5811 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
5812 * lib/bitset_stats.c (bitset_stats_init): Likewise.
5813 * lib/bitsetv.c (bitsetv_alloc): Likewise.
5814
5815 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
5816
5817 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
5818 from maintainer-distcheck about casting the argument of 'free'.
5819
5820 * NEWS: Mention recent yytname changes.
5821 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
5822
5823 * bootstrap: For translations that have not yet been upgraded to
5824 the new runtime-po domain, prime the pump by extracting the
5825 relevant strings from the obsolete translations. This code can be
5826 removed once the bison-runtime domain has been translated by each
5827 team.
5828
5829 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
5830 now that token names are already quoted.
5831
5832 Fix problem reported by Anthony Heading.
5833 * data/glr.c (YYTOKEN_TABLE): New macro.
5834 (yytname): Define if YYTOKEN_TABLE.
5835 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
5836 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
5837 (YYERROR_VERBOSE): Define the same way the other skeletons do.
5838 * src/output.c (prepare_symbols): Output token_table_flag.
5839
58402005-07-21 Paul Eggert <eggert@cs.ucla.edu>
5841
5842 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
5843 again if the first call fails.
5844
5845 * data/glr.c (yytnamerr): New function.
5846 (yyreportSyntaxError): Use it to dequote most string literals.
5847 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
5848 with other skeletons. All uses changed.
5849 (yytnameerr_): New function.
5850 (yyreport_syntax_error): Use it to dequote most string literals.
5851 * data/yacc.c (yytnamerr): New function.
5852 (yyerrlab): Use it to decode most string literals.
5853 * doc/bison.texinfo (Decl Summary, Calling Convention):
5854 Clarify quoting convention of yytname.
5855 * src/output.c (prepare_symbols): Quote all names. This undoes
5856 the 2005-04-17 change, which is now accomplished (mostly) via
5857 changes in the parsers as described above.
5858 * tests/regression.at (Token definitions, Web2c Actions):
5859 Undo most 2005-04-17 change here, too.
5860
58612005-07-20 Paul Eggert <eggert@cs.ucla.edu>
5862
5863 Fix more problems reported by twlevo@xs4all.nl.
5864 * tests/cxx-type.at: Don't pipe output of ./types through sed to
5865 remove trailing spaces. This loses the exit status of ./types,
5866 and isn't needed since ./types shouldn't be emitting trailing
5867 spaces.
5868 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
5869 as the stack isn't valid in that case.
5870
5871 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5872 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5873 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5874 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
5875 is used.
5876 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
5877 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
5878 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
5879 Likewise.
5880
5881 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
5882 overly-picky compilers that reject 'char *foo = "bar";'.
5883
5884 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
5885 to FILE * parameter, not to stderr. This fixes a typo introduced
5886 in the 2005-07-12 change.
5887
5888 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
5889 warnings from GCC 4.
5890
5891 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
5892 (yyglrShiftDefer, yysplitStack):
5893 Remove unused parameters b4_pure_formals. All uses changed.
5894 (yyglrShift): Remove unused parameters b4_user_formals.
5895 All uses changed.
5896 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
5897
58982005-07-18 Paul Eggert <eggert@cs.ucla.edu>
5899
5900 Destructor cleanups and regularization among the three skeletons.
5901 * NEWS: Document the behavior changes.
5902 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
5903 stack before failing, as the cleanup code will do it for us now.
5904 * data/lalr1.cc (yyerrlab): Likewise.
5905 * data/glr.c (yyparse): Pop everything off the stack before
5906 freeing it, so that destructors get called properly.
5907 * data/lalr1.cc (yyreturn): Likewise.
5908 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
5909 This is more consistent.
5910 * doc/bison.texinfo (Destructor Decl): Mention more reasons
5911 why destructors might be called. 1.875 -> 2.1.
5912 (Destructor Decl, Decl Summary, Table of Symbols):
5913 Some English-language cleanups for %destructor.
5914 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5915 Add output line for destructor of start symbol.
5916 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
5917 because of that same extra output line.
5918
5919 * NEWS: Document minor wording changes in diagnostics of
5920 Bison-generated parsers.
5921 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
5922 Remove unused formals. All uses changed.
5923 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
5924 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
5925 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
5926 Rename yyoverflowab to yyexhaustedlab.
5927 When memory exhaustion occurs during syntax-error reporting,
5928 report it separately rather than in a single diagnostic; this
5929 eases translation.
5930 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
5931 (Memory Exhausted): Renamed from Parser Stack Overflow.
5932 Revamp wording slightly to prefer "memory exhaustion".
5933 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
5934
5935 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
5936
5937 Add i18n support to the GLR skeleton. Partially fix the C++
5938 skeleton; a C++ expert needs to finish this. Remove debugging
5939 msgids; there's little point to having them translated, since they
5940 can be understood only by someone who can read the
5941 (English-language) source code.
5942
5943 Generate runtime-po/bison-runtime.pot automatically, so that we
5944 don't have to worry about garbage getting in that file. We'll
5945 make sure after the next official release that old msgids don't
5946 get lost. See
5947 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
5948
5949 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
5950 Now auto-generated.
5951 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
5952 Fix typos in explanations of the runtime file.
5953 * bootstrap: Change gettext keyword from YYI18N to YY_.
5954 Use standard Makefile.in.in in runtime-po, since we'll arrange
5955 for backward-compatible bison-runtime.po files in a different way.
5956 * data/glr.c (YY_): New macro, from yacc.c.
5957 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
5958 Translate messages intended for users.
5959 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
5960 the wording in the other skeletons. We don't know that the memory
5961 is virtual.
5962 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
5963 Use same method that yacc.c uses.
5964 Don't translate debugging messages.
5965 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
5966 it doesn't work (yet), and requires C++ expertise to fix.
5967 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
5968 Move defn to a more logical place, to be consistent with other
5969 skeletons.
5970 Don't translate debugging messages.
5971 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
5972 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
5973 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
5974 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
5975
5976 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
5977 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
5978 void, not int.
5979 * tests/glr-regression.at (Badly Collapsed GLR States):
5980 Likewise.
5981 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
5982 yylex should return 0 at EOF rather than aborting.
5983
5984 Improve tests for stack overflow in GLR parser.
5985 Problem reported by twlevo@xs4all.nl.
5986 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
5987 All uses removed.
5988 (yyStackOverflow): Just longjmp, but with value 2 so that caller
5989 can handle the problem.
5990 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
5991 (yyparse): New local variable yyresult to record the result.
5992 Use result of setjmp to set it, rather than storing itinto
5993 struct.
5994 (yyDone): Remove label.
5995 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
5996 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
5997 if YYABORT is used).
5998 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
5999 yyparse status; put status > 1 into diagnostic.
6000 Check that status==2 works.
6001 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
6002 Use exit status 3 for failure to open (which shouldn't happen).
6003
60042005-07-17 Paul Eggert <eggert@cs.ucla.edu>
6005
6006 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
6007 1 on syntax error; just let yyparse do its thing.
6008 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
6009 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
6010 (Exploding the Stack Size with Alloca):
6011 (Exploding the Stack Size with Malloc):
6012 Expect exit status 2, not 1, since the parser is supposed to blow
6013 its stack. Problem reported by twlevo@xs4all.nl.
6014
6015 * data/glr.c (yyparse): Don't assume that the initial calls
6016 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
6017 Print a stack-overflow message and fail instead.
6018 Initialize the line-number information before creating the stack,
6019 so that the stack-overflow message can report line zero safely.
6020
60212005-07-14 Paul Eggert <eggert@cs.ucla.edu>
6022
6023 Fix problems reported by twlevo@xs4all.nl.
6024 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
6025 (yyuserMerge): Provide a default case if b4_mergers is empty.
6026 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
6027 * tests/glr-regression.at
6028 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6029 Add casts to pacify C++ compilers.
6030 * tests/glr-regression.at (Improper merging of GLR delayed action
6031 sets): Declare yylex before using it.
6032 * tests/Makefile.am (maintainer-check-g++): Fix a stray
6033 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
6034 test for valgrind; valgrind is independent of g++.
6035 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
6036 for compatibility with POSIX 1003.1-2001 (if running coreutils).
6037 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
6038 Use a destructor, so that we can expand the stack. Change
6039 YYSTYPE to char * so that we can free it. Cast result of malloc.
6040
60412005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
6042
6043 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
6044 a valgrind failure. Problem reported by twlevo@xs4all.nl.
6045
60462005-07-13 Paul Eggert <eggert@cs.ucla.edu>
6047
6048 * PACKAGING: New file, suggested by Bruno Haible and taken from
6049 similar wording in gettext's PACKAGING file.
6050 * NEWS: Mention PACKAGING.
6051 * Makefile.am (EXTRA_DIST): Add PACKAGING.
6052
60532005-07-12 Paul Eggert <eggert@cs.ucla.edu>
6054
6055 * NEWS: Document recent i18n improvements.
6056 * bootstrap: Get runtime translations into runtime-po.
6057 Create runtime-po files automatically, if possible.
6058 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
6059 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
6060 does not infringe on the user's name space.
6061 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
6062 * doc/bison.texinfo (Internationalization): Revamp the English
6063 and Texinfo syntax a bit, to try to make it clearer.
6064 (Bison Options, Option Cross Key): Mention --print-localedir.
6065 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
6066 YYENABLE_NLS. Quote a bit more.
6067 * runtime-po/.cvsignore: New file.
6068 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
6069 * runtime-po/Rules-quot: Remove; now created by bootstrap.
6070 * runtime-po/quot.sed: Likewise.
6071 * runtime-po/boldquot.sed: Likewise.
6072 * runtime-po/en@quot.header: Likewise.
6073 * runtime-po/en@boldquot.header: Likewise.
6074 * runtime-po/insert-header.sin: Likewise.
6075 * runtime-po/remove-potcdate.sin: Likewise.
6076 * runtime-po/Makevars: Likewise.
6077 * runtime-po/LINGUAS: Likewise.
6078 * runtime-po/de.po: Likewise; we will rely on the translation project
6079 to maintain this, so "bootstrap" should get it.
6080 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
6081 its value.
6082 * src/main.c (main): Bind the bison-runtime domain, too.
6083
60842005-07-12 Bruno Haible <bruno@clisp.org>
6085
6086 * data/yacc.c: Include <libintl.h> when NLS is enabled.
6087 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
6088 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
6089 * runtime-po: New directory.
6090 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
6091 $(DOMAIN).pot-update rule, so that old messages are never dropped.
6092 * runtime-po/Rules-quot: New file, copied from po/.
6093 * runtime-po/quot.sed: Likewise.
6094 * runtime-po/boldquot.sed: Likewise.
6095 * runtime-po/en@quot.header: Likewise.
6096 * runtime-po/en@boldquot.header: Likewise.
6097 * runtime-po/insert-header.sin: Likewise.
6098 * runtime-po/remove-potcdate.sin: Likewise.
6099 * runtime-po/Makevars: New file.
6100 * runtime-po/POTFILES.in: New file.
6101 * runtime-po/LINGUAS: New file.
6102 * runtime-po/bison-runtime.pot: New file.
6103 * runtime-po/de.po: New file.
6104 * m4/bison.m4: New file.
6105 * Makefile.am (SUBDIRS): Add runtime-po.
6106 (aclocaldir, aclocal_DATA): New variables.
6107 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
6108 Define aclocaldir.
6109 * src/getargs.c (usage): Document --print-localedir option.
6110 (PRINT_LOCALEDIR_OPTION): New enum item.
6111 (long_options): Add --print-localedir option.
6112 (getargs): Handle --print-localedir option.
6113 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
6114 (Internationalization): New section.
6115
61162005-07-12 Akim Demaille <akim@epita.fr>
6117
6118 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
6119 for consistency with the rest of the code.
6120 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
6121 Add separators.
6122
61232005-07-12 Akim Demaille <akim@epita.fr>
6124
6125 * src/parse-gram.y: Use %printer instead of YYPRINT.
6126
61272005-07-12 Akim Demaille <akim@epita.fr>
6128
6129 * src/symtab.h, src/symtab.c (symbol_print): New.
6130 * src/symlist.h, src/symlist.c (symbol_list_print): New.
6131 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
6132
61332005-07-12 Akim Demaille <akim@epita.fr>
6134
6135 * data/glr.c (b4_syncline): Fix (swap) the definitions of
6136 b4_at_dollar and b4_dollar_dollar.
6137
61382005-07-11 Paul Eggert <eggert@cs.ucla.edu>
6139
6140 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
6141 and Pennello's paper.
6142
61432005-07-09 Paul Eggert <eggert@cs.ucla.edu>
6144
6145 * data/yacc.c (yyparse): Undo previous patch. Instead,
6146 set yylsp[0] and yyvsp[0] only if the initial action
6147 sets yylloc and yylval, respectively.
6148
6149 * data/yacc.c (yyparse): In the initial action, set
6150 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
6151 This avoids the use of undefined variables if the initial
6152 action does not set yylloc and/or yylval.
6153
61542005-07-07 Paul Eggert <eggert@cs.ucla.edu>
6155
6156 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
6157 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
6158 Remove from CVS. These files are automatically generated.
6159 * examples/extexi: Clarify that this file is now part of Bison,
6160 not GNU M4, and that it works with any POSIX-compatible Awk.
6161 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
6162 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
6163 so that we also get calc++-parser.yy. Geneate it.
6164 Use $(AWK), not gawk, since any conforming Awk will do.
6165 Put comment before action, since older 'make' can't handle comment
6166 in action.
6167 $(BUILT_SOURCES): List all built sources, not just some of them.
6168 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
6169 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
6170 $($(calc_sources_generated)): Remove unnecessary test for existence
6171 of target. (This had a shell syntax error anyway; a stray "x".)
6172 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
6173 calc++-parser.yy.
6174 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
6175
6176 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
6177 implied by the other modules.
6178
61792005-07-06 Akim Demaille <akim@epita.fr>
6180
6181 Bind examples/calc++ to the package.
6182 * examples/calc++/Makefile: Remove, replaced by...
6183 * examples/calc++/Makefile.am: ... this new file.
6184 * examples/calc++/test: Remove input.
6185 * examples/calc++/compile: Remove.
6186 * examples/Makefile.am: New.
6187 * configure.ac, Makefile.am: Adjust.
6188 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
6189
61902005-07-05 Paul Eggert <eggert@cs.ucla.edu>
6191
6192 * data/glr.c (yyFail): Drastically simplify; since the format argument
6193 never had any % directives, we can simply pass it to yyerror.
6194 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
6195 be modified later, as that is the usual style in glr.c.
6196 Problems reported by Paul Hilfinger.
6197
6198 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
6199 and size overflow errors.
6200 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
6201 in case the user prolog sets feature-test macros like _GNU_SOURCE.
6202 (YYSIZEMAX): New macro.
6203 (yystpcpy): New function, taken from yacc.c.
6204 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
6205 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
6206 so that we don't have to maintain their signatures.
6207 (yyFail): Check for buffer overflow, by using vsnprintf rather
6208 than vsprintf. Allocate a bigger buffer if possible.
6209 Report an error if buffer allocation fails.
6210 (yyStackOverflow): New function.
6211 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
6212 the initialization was successful. It might fail if storage was
6213 exhausted.
6214 (yyexpandGLRStack): Add more checks for storage allocation failure.
6215 Use yyStackOverflow to report failures.
6216 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
6217 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
6218 Don't assume stack number fits in int.
6219 (yysplitStack): Check for storage allocation failure.
6220 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
6221 can print diagnostics on storage allocation failure. All callers
6222 changed.
6223 (yyresolveValue): Use yybool for boolean.
6224 (yyreportSyntaxError): Check for size-calculation overflow.
6225 This code is taken from yacc.c.
6226 (yyparse): Check for storage allocation errors when allocating
6227 the initial stack.
6228
62292005-07-05 Akim Demaille <akim@epita.fr>
6230
6231 Extract calc++ from the documentation.
6232 * doc/bison.texinfo (Calc++): Add the extraction marks.
6233 * examples/extexi: New, from the aborted GNU Programming 2E.
6234 Separate the different paragraph of a file with empty lines.
6235 * examples/Makefile: Use it to extract the whole calc++ example.
6236
62372005-06-24 Akim Demaille <akim@epita.fr>
6238
6239 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
6240 class typedefs.
6241
62422005-06-22 Akim Demaille <akim@epita.fr>
6243
6244 * doc/bison.texinfo (C++ Language Interface): First stab.
6245 (C++ Parsers): Remove.
6246
62472005-06-22 Akim Demaille <akim@epita.fr>
6248
6249 * data/lalr1.cc (yylex_): Honor %lex-param.
6250
62512005-06-22 Akim Demaille <akim@epita.fr>
6252
6253 Start a set of simple examples.
6254 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
6255 * examples/calc++/calc++-driver.hh,
6256 * examples/calc++/calc++-parser.yy,
6257 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
6258 * examples/calc++/compile, examples/calc++/test: New.
6259
62602005-06-09 Paul Eggert <eggert@cs.ucla.edu>
6261
6262 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
6263 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
6264 which stems from the 2005-05-27 patch.
6265
62662005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6267
6268 * data/glr.c: Modify treatment of unused parameters to permit use
6269 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
6270
62712005-05-30 Paul Eggert <eggert@cs.ucla.edu>
6272
6273 Fix infringement on user name space reported by Janos Zoltan Szabo.
6274 * data/yacc.c (yyparse): strlen -> yystrlen.
6275
62762005-05-30 Akim Demaille <akim@epita.fr>
6277
6278 * data/lalr1.cc (_): New.
6279 Translate the various messages.
6280
62812005-05-27 Paul Eggert <eggert@cs.ucla.edu>
6282
6283 Fix infringement on user name space reported by Bruno Haible.
6284 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
6285 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
6286 the user's name space.
6287 (alloca): Include <stdlib.h> to get it, if it's not built in.
6288 (YYMALLOC, YYFREE): Define only if needed.
6289 (malloc, free): Declare, but only if needed, as this infringes on
6290 the user name space.
6291
62922005-05-25 Paul Eggert <eggert@cs.ucla.edu>
6293
6294 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
6295 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
6296 with %d format.
6297 * lib/ebitset.c (min, max): Undef before defining.
6298 * lib/vbitset.c (min, max): Likewise.
6299 * lib/subpipe.c (create_subpipe): Save local variables in case
6300 vfork clobbers them.
6301
63022005-05-24 Bruno Haible <bruno@clisp.org>
6303
6304 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
6305 error message syntax used by gcc-4.0.
6306
63072005-05-23 Paul Eggert <eggert@cs.ucla.edu>
6308
6309 * README: Mention m4 1.4.3. Remove obsolete advice about
6310 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
6311
6312 * bootstrap: Remove workaround for problem I encountered with
6313 gettext 0.14.1; it seems to be fixed now.
6314
63152005-05-22 Paul Eggert <eggert@cs.ucla.edu>
6316
6317 * NEWS: Version 2.0a.
6318
6319 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
6320 the previous change.
6321
6322 Various maintainer cleanups.
6323 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
6324 conftest*, for benefit of CVS commands run at the same time as
6325 "configure". Add build-aux, since "bootstrap" now creates it and
6326 its subfiles.
6327 * Makefile.cfg (move_if_change): Remove.
6328 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
6329 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
6330 (po_repo, do-po-update, po-update, wget_files, get-targets):
6331 (config.guess-url_prefix, config.sub-url_prefix):
6332 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
6333 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
6334 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
6335 Remove.
6336 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
6337 this is now the recommended name.
6338 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
6339 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
6340 ylwrap. These files now go into build-aux.
6341 * config/move-if-change: Remove.
6342 * config/prev-version.txt: Bump from 1.75 to 2.0.
6343
6344 * bootstrap: Add stdio-safer, unistd-safer modules.
6345 Remove m4/glibc2.m4 (introduced by latest gnulib, but
6346 we don't need it).
6347 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
6348 fopen-safer.c, stdio-safer.h, unistd-safer.h.
6349 * lib/subpipe.c: Include "unistd-safer.h".
6350 (create_subpipe): Make sure all the newly-created
6351 file descriptors are > 2, so that diagnostics don't
6352 get sent down them (which might cause Bison to hang, in theory).
6353 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
6354 * src/files.c (xfopen): Use fopen_safer, not fopen.
6355
6356 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
6357 yesterday's yacc.c fix.
6358
63592005-05-21 Paul Eggert <eggert@cs.ucla.edu>
6360
6361 * data/glr.c, data/lalr1.cc: Update copyright date.
6362
6363 Fix a destructor bug reported by Wolfgang Spraul in
6364 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
6365 * data/yacc.c (yyabortlab): Don't call destructor, and
6366 don't set yychar to EMPTY.
6367 (yyoverflowlab): Don't call destructor.
6368 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
6369 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
6370 since we no longer output the message "discarding lookahead token
6371 end of input ()".
6372
63732005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
6374
6375 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
6376 fix a small glitch in debugging output.
6377 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
6378 after YY_SYMBOL_PRINT where needed.
6379
6380 (struct yyGLRState): Add some comments.
6381 (struct yySemanticOption): Add some comments.
6382 (union yyGLRStackItem): Add comment.
6383
6384 (yymergeOptionSets): Correct this to properly perform the union,
6385 avoiding infinite reported by Michael Rosien.
6386 Update comment.
6387
6388 * tests/glr-regression.at: Add test for GLR merging error reported
6389 by M. Rosien.
6390
63912005-05-13 Paul Eggert <eggert@cs.ucla.edu>
6392
6393 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
6394 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
6395 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
6396 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
6397 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
6398 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
6399 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
6400 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
6401 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
6402 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
6403 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
6404 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
6405 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
6406 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
6407 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
6408 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
6409 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
6410 src/derives.h, src/files.c, src/files.h, src/getargs.c,
6411 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
6412 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
6413 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
6414 src/output.h, src/parse-gram.c, src/parse-gram.h,
6415 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
6416 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
6417 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
6418 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
6419 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
6420 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
6421 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
6422 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
6423 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
6424 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
6425 tests/reduce.at, tests/regression.at, tests/sets.at,
6426 tests/synclines.at, tests/testsuite.at, tests/torture.at:
6427 Update FSF postal mail address.
6428
64292005-05-11 Paul Eggert <eggert@cs.ucla.edu>
6430
6431 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
6432 Problem reported by Ralf Menzel.
6433
64342005-05-01 Paul Eggert <eggert@cs.ucla.edu>
6435
6436 * tests/actions.at: Test that stack overflow invokes destructors.
6437 From Marcus Holland-Moritz.
6438 * data/yacc.c (yyerrlab): Move the code that destroys the stack
6439 from here....
6440 (yyreturn): to here. That way, destructors are called properly
6441 even if the stack overflows, or the user calls YYACCEPT or
6442 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
6443 (yyoverflowlab): Destroy the lookahead.
6444
64452005-04-24 Paul Eggert <eggert@cs.ucla.edu>
6446
6447 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
6448
64492005-04-17 Paul Eggert <eggert@cs.ucla.edu>
6450
6451 * NEWS: Bison-generated C parsers no longer quote literal strings
6452 associated with tokens.
6453 * src/output.c (prepare_symbols): Don't escape strings,
6454 since users don't want to see C escapes.
6455 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
6456 in diagnostics.
6457 * tests/input.at (Torturing the Scanner): Likewise.
6458 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
6459
64602005-04-16 Paul Eggert <eggert@cs.ucla.edu>
6461
6462 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
6463 the data size is known to be too small and we can't increase it.
6464 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
6465
64662005-04-15 Paul Eggert <eggert@cs.ucla.edu>
6467
6468 * src/parse-gram.y: Include quotearg.h.
6469 (string_as_id): Quote $1 before using it as a key, since the
6470 lexer no longer quotes it for us.
6471 (string_content): Don't strip quotes, since lexer no longer
6472 quotes it for us.
6473 * src/scan-gram.l: Include quotearg.h.
6474 ("\""): Omit quote.
6475 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
6476 a key, since the rest of the lexer doesn't quote it.
6477 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
6478 * tests/regression.at (Token definitions): Check for backslashes
6479 in token strings.
6480
6481 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
6482 (YYSIZE_T): Define to unsigned long int when using an older compiler.
6483 (yyparse): Revamp code to generate long syntax error message, to
6484 make it easier to translate, and to avoid problems with arithmetic
6485 overflow. Change "virtual memory" to "memory" in diagnostic, since
6486 we don't know whether the memory is virtual.
6487
64882005-04-13 Paul Eggert <eggert@cs.ucla.edu>
6489
6490 * NEWS: Bison-generated C parsers now use the _ macro to
6491 translate strings.
6492 * data/yacc.c (_) [!defined _]: New macro.
6493 All English strings wrapped inside this macro.
6494 * doc/bison.texinfo (Bison Parser): Document _.
6495 * po/POTFILES.in: Include src/parse-gram.c, since it now
6496 includes translateable strings that parse-gram.y doesn't.
6497
64982005-04-12 Paul Eggert <eggert@cs.ucla.edu>
6499
6500 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
6501 reverting the 2004-10-11 change to this function.
6502 (symbol_check_alias_consistency): Don't call symbol_type_set
6503 if the type name is already correct.
6504 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
6505
65062005-03-25 Paul Eggert <eggert@cs.ucla.edu>
6507
6508 * tests/regression.at (Token definitions): Don't use a token named
6509 c, as that generates a "#define c ..." that runs afoul of buggy
6510 stdlib.h that uses the identifier c as a member of struct
6511 drand48_data. Problem reported by Horst Wente.
6512
65132005-03-21 Paul Eggert <eggert@cs.ucla.edu>
6514
6515 * bootstrap: Change translation URL from
6516 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
6517 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
6518 redirection glitches. Problem reported by twlevo@xs4all.nl.
6519
65202005-03-20 Paul Eggert <eggert@cs.ucla.edu>
6521
6522 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
6523 after operands; POSIX says this isn't portable for the c99 command.
6524
65252005-03-18 Paul Eggert <eggert@cs.ucla.edu>
6526
6527 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
6528 immediately if a data overrun has occurred; this may help us track
6529 down what may be a spurious failure on MacOS.
6530
65312005-03-17 Paul Eggert <eggert@cs.ucla.edu>
6532
6533 Respond to problems reported by twlevo@xs4all.nl.
6534
6535 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
6536
6537 * src/vcg.h: Comment fix.
6538 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
6539 (G_CMAX): Change to -1 instead of INT_MAX.
6540
6541 * data/yacc.c (yyparse): Omit spaces before #line.
6542
65432005-03-15 Paul Eggert <eggert@cs.ucla.edu>
6544
6545 * src/tables.c (state_number_to_vector_number): Put it inside an
6546 "#if 0", since it's not currently used. Problem reported by
6547 Roland McGrath.
6548
65492005-03-06 Paul Eggert <eggert@cs.ucla.edu>
6550
6551 * src/output.c (escaped_output): Renamed from
6552 escaped_file_name_output, since we now use it for symbol tags as
6553 well. All uses changed.
6554 (symbol_destructors_output, symbol_printers_output):
6555 Escape symbol tags too.
6556 Problem reported by Matyas Forstner in
6557 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
6558
6559 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
6560 not needed.
6561 * src/output.c (user_actions_output, token_definitions_output,
6562 symbol_destructors_output, symbol_printers_output): Likewise.
6563 * src/reader.c (prologue_augment): Likewise.
6564 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
6565
6566 * src/vcg.c (output_edge): Don't quote linestyle arg.
6567 Problem reported by twlevo@xs4all.nl.
6568
65692005-02-28 Paul Eggert <eggert@cs.ucla.edu>
6570
6571 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
6572 example, reported by Derek M Jones. Also, make the example even
6573 more outrageous, to better illustrate how bad the problem is.
6574
65752005-02-24 Paul Eggert <eggert@cs.ucla.edu>
6576
6577 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
6578 putsym. Typo reported by Sebastian Piping.
6579
65802005-02-23 Paul Eggert <eggert@cs.ucla.edu>
6581
6582 * doc/bison.texinfo (Language and Grammar): some -> same
6583 (Epilogue): int he -> in the
6584 Typos reported by Sebastian Piping via Justin Pence.
6585
65862005-02-07 Paul Eggert <eggert@cs.ucla.edu>
6587
6588 * tests/glr-regression.at (Improper handling of embedded actions
6589 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
6590 embedded actions and $-N in GLR parsers", work around an Autoconf bug
6591 with dollar signs in test names.
6592 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
6593 for a similar reason.
6594
65952005-01-28 Paul Eggert <eggert@cs.ucla.edu>
6596
6597 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
6598 wants to redefine G_VIEW.
6599
66002005-01-27 Paul Eggert <eggert@cs.ucla.edu>
6601
6602 * src/vcg.c (get_view_str): Remove case for normal_view.
6603 Problem reported by twlevo@xs4all.nl.
6604
66052005-01-24 Paul Eggert <eggert@cs.ucla.edu>
6606
6607 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
6608 Problem reported by twlevo@xs4all.nl.
6609
6610 * doc/bison.texinfo: Change @dircategory from "GNU programming
6611 tools" to "Software development". Requested by Richard Stallman
6612 via Karl Berry.
6613
66142005-01-23 Paul Eggert <eggert@cs.ucla.edu>
6615
6616 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
6617 Problem reported by twlevo@xs4all.nl.
6618
66192005-01-21 Paul Eggert <eggert@cs.ucla.edu>
6620
6621 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
6622 keyword; it's not needed with modern compilers, and it doesn't
6623 affect correctness with older compilers. Suggested by
6624 twlevo@xs4all.nl.
6625
66262005-01-17 Paul Eggert <eggert@cs.ucla.edu>
6627
6628 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
6629 gcc -Wswitch-default.
6630 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6631 * data/yacc.c (yyparse): Likewise.
6632
66332005-01-12 Paul Eggert <eggert@cs.ucla.edu>
6634
6635 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
6636 already. Let config.h define any nonstandard values.
6637
66382005-01-10 Paul Eggert <eggert@cs.ucla.edu>
6639
6640 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
6641 for the benefit of slower hosts. Problem reported by
6642 Nelson H. F. Beebe.
6643
66442005-01-07 Paul Eggert <eggert@cs.ucla.edu>
6645
6646 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
6647 being defined and not used.
6648 * data/lalr1.cc (yyparse): Likewise.
6649 Use "if (false)" rather than "if (0)".
6650
66512005-01-05 Paul Eggert <eggert@cs.ucla.edu>
6652
6653 * TODO: Mention that we should allow NUL bytes in tokens.
6654
66552005-01-02 Paul Eggert <eggert@cs.ucla.edu>
6656
6657 * src/scan-skel.l (<<EOF>>): Don't close standard output.
6658 Problem reported by Hans Aberg.
6659
66602005-01-01 Paul Eggert <eggert@cs.ucla.edu>
6661
6662 * src/getargs.c (version): Happy new year; update overall
6663 program copyright date from 2004 to 2005.
6664
6665 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
6666 Problem reported by Hans Aberg.
6667 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
6668 (Output file names.): Add a test for the case when standard output
6669 is closed.
6670
66712004-12-26 Paul Eggert <eggert@cs.ucla.edu>
6672
6673 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
6674 to fix an oversight in the Bison 2.0 manual.
6675
66762004-12-25 Paul Eggert <eggert@cs.ucla.edu>
6677
6678 * NEWS: Version 2.0. Reformat the existing news items since
6679 1.875, so that related items are grouped together.
6680 * configure.ac (AC_INIT): Bump version to 2.0.
6681 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
6682
6683 * tests/torture.at (Exploding the Stack Size with Alloca): Set
6684 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
6685 otherwise, we're not testing alloca. Unfortunately there's no
6686 simple way to consult HAVE_ALLOCA here.
6687
6688 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
6689 for yymsg, too.
6690
6691 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
6692 hand. This avoids a warning about comparing int to size_t when
6693 GCC warnings are enabled.
6694
66952004-12-22 Paul Eggert <eggert@cs.ucla.edu>
6696
6697 * NEWS: Bison-generated parsers no longer default to using the
6698 alloca function (when available) to extend the parser stack, due
6699 to widespread problems in unchecked stack-overflow detection.
6700 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
6701 responsibility to set it to a positive value. This lets the user
6702 specify a value that is not a preprocessor constant.
6703 * data/yacc.c (YYMAXDEPTH): Likewise.
6704 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
6705 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
6706 to be a compile-time constant. However, explain the constraints on it.
6707 Also, explain the constraints on YYINITDEPTH.
6708 (Table of Symbols): Explain that alloca is no longer the default.
6709 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
6710 to 1.
6711
6712 * doc/bison.texinfo (Location Default Action): Mention that n must
6713 be zero when k is zero. Suggested by Frank Heckenbach.
6714
67152004-12-22 Akim Demaille <akim@epita.fr>
6716
6717 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
6718 (parser::state_type, parser::semantic_type, parser::location_type):
6719 Private, not public.
6720 (parser::parse): Return ints, not bool.
6721 Returning a bool introduces a problem: 0 corresponds to false, and
6722 it seems weird to return false on success. Returning true changes
6723 the conventions for yyparse.
6724 Alternatively we could return void and send an exception.
6725 There is no clear consensus (yet?).
6726 (state_stack, semantic_stack, location_stack): Rename as...
6727 (state_stack_type, semantic_stack_type, location_stack_type): these.
6728 Private, not public.
6729 * tests/c++.at: New.
6730 * tests/testsuite.at, tests/Makefile.am: Adjust.
6731
67322004-12-21 Akim Demaille <akim@epita.fr>
6733
6734 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
6735
67362004-12-21 Akim Demaille <akim@epita.fr>
6737
6738 Don't impose std::string for filenames.
6739
6740 * data/lalr1.cc (b4_filename_type): New.
6741 (position::filename): Use it.
6742 (parser.hh): Move the inclusion of stack.hh and location.hh below
6743 the user code, so that needed headers for the filename type can be
6744 included first.
6745 Forward declare them before the user code.
6746 * tests/Makefile.am (check-local, installcheck-local): Pass
6747 TESTSUITEFLAGS to the TESTSUITE.
6748
67492004-12-20 Akim Demaille <akim@epita.fr>
6750
6751 Use more STL like names: my_class instead of MyClass.
6752
6753 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
6754 (SemanticStack, SemanticType, StateStack, StateType)
6755 (TokenNumberType, Stack, Slice, Traits, Parser::location)
6756 (Parser::value): Rename as...
6757 (location_stack, location_type, rhs_number_type, semantic_stack)
6758 (semantic_type, state_stack, state_type, token_number_type, stack)
6759 (slice, traits, parser::yylloc, parser::yylval): these.
6760
6761 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
6762
67632004-12-19 Paul Eggert <eggert@cs.ucla.edu>
6764
6765 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
6766 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
6767
67682004-12-17 Paul Eggert <eggert@cs.ucla.edu>
6769
6770 Remove uses of 'short int' and 'unsigned short int'. This raises
6771 some arbitrary limits. It uses more memory but nowadays that's
6772 not much of an issue.
6773
6774 This change does not affect the generated parsers; that's a different
6775 task, as some users will want to conserve memory there.
6776
6777 Ideally we should use size_t to represent all object counts, and
6778 something like ptrdiff_t to represent signed differences of object
6779 counts; but that will require more code-cleanup than I have the
6780 time to do right now.
6781
6782 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
6783 Use size_t, not int or short int, to count objects.
6784 * src/closure.c (nritemset, closure): Likewise.
6785 * src/closure.h (nritemset, closure): Likewise.
6786 * src/nullable.c (nullable_compute): Likewise.
6787 * src/print.c (print_core): Likewise.
6788 * src/print_graph.c (print_core): Likewise.
6789 * src/state.c (state_compare, state_hash): Likewise.
6790 * src/state.h (struct state): Likewise.
6791 * src/tables.c (default_goto, goto_actions): Likewise.
6792
6793 * src/gram.h (rule_number, rule): Use int, not short int.
6794 * src/output.c (prepare_rules): Likewise.
6795 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
6796 errs, reductions): Likewise.
6797 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
6798 Likewise.
6799 * src/tables.c (vector_number, tally, action_number,
6800 ACTION_NUMBER_MINIMUM): Likewise.
6801 * src/output.c (muscle_insert_short_int_table): Remove.
6802
68032004-12-17 Akim Demaille <akim@epita.fr>
6804
6805 * data/lalr1.cc: Extensive Doxygenation.
6806 (error_): Rename as...
6807 (error): this, since it is visible to the user.
6808 Adjust callers.
6809 (Parser::message): Now an automatic variable from...
6810 (Parser::yyreport_syntax_error_): here.
6811 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
6812 Parser::error.
6813 * tests/input.at: Escape $.
6814
68152004-12-16 Paul Eggert <eggert@cs.ucla.edu>
6816
6817 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
6818 Parenthesize rhs to avoid obscure problems with mistakes like
6819 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
6820 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
6821 b4_rhs_location): Likewise.
6822 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
6823 b4_rhs_location): Likewise.
6824
68252004-12-16 Akim Demaille <akim@epita.fr>
6826
6827 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
6828 yacc.c: be sure to stay within yycheck_.
6829 * tests/actions.at: Re-enable C++ tests.
6830
68312004-12-16 Akim Demaille <akim@epita.fr>
6832
6833 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
6834 real.
6835
68362004-12-16 Akim Demaille <akim@epita.fr>
6837
6838 Use #define to handle the %name-prefix.
6839
6840 * data/glr.c, data/yacc.c: Comment changes.
6841 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
6842 so that one can refer to yylex in the parser file, and have it
6843 renamed, as is the case with other skeletons.
6844
68452004-12-16 Akim Demaille <akim@epita.fr>
6846
6847 Move lalr1.cc internals into yy*.
6848
6849 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
6850 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
6851 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
6852 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
6853 (empty_, final_, terror_, errcode_, ntokens_)
6854 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
6855 (looka_, ilooka_, error_range_, nerrs_):
6856 Rename as...
6857 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
6858 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
6859 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
6860 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
6861 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
6862 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
6863 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
6864 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
6865 these.
6866
68672004-12-15 Paul Eggert <eggert@cs.ucla.edu>
6868
6869 Fix some problems reported by twlevo at xs4all.
6870 * src/symtab.c (symbol_new): Report an error if the input grammar
6871 contains too many symbols. This is better than calling abort() later.
6872 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
6873 (struct node, struct graph):
6874 Rename member expand to stretch. All uses changed.
6875 (struct graph): Remove member layoutalgorithm. All uses removed.
6876 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
6877 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
6878 All uses changed.
6879 (N_STRETCH): Rename from N_EXPAND. All uses changed.
6880
68812004-12-15 Akim Demaille <akim@epita.fr>
6882
6883 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
6884 Add more Doxygen comments.
6885 (symprint_, stack_print_, reduce_print_, destruct_, pop)
6886 (report_syntax_error_, translate_): Rename as...
6887 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
6888 (yypop_, yyreport_syntax_error_, yytranslate_): this.
6889
68902004-12-15 Akim Demaille <akim@epita.fr>
6891
6892 * data/lalr1.cc (lex_): Rename as...
6893 (yylex_): this.
6894 Move the trace here.
6895 Take the %name-prefix into account.
6896 Reported by Alexandre Duret-Lutz.
6897
68982004-12-15 Akim Demaille <akim@epita.fr>
6899
6900 Simplify the C++ parser constructor.
6901
6902 * data/lalr1.cc (debug_): Rename as...
6903 (yydebug_): so that the parser's internals are always in the yy*
6904 pseudo namespace.
6905 Adjust uses.
6906 (b4_parse_param_decl): Remove the leading comma as it is now only
6907 called as unique argument list.
6908 (Parser::Parser): Remove the constructor accepting a location and
6909 an initial debugging level.
6910 Remove from the other ctor the argument for the debugging level.
6911 (debug_level_type, debug_level, set_debug_level): New.
6912
6913 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
6914 constructor calls.
6915
69162004-12-15 Akim Demaille <akim@epita.fr>
6917
6918 Remove b4_root related material: failure experiment
6919 (which goal was to allow to derive from a class).
6920
6921 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
6922 definitions and uses.
6923
69242004-12-14 Paul Eggert <eggert@cs.ucla.edu>
6925
6926 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
6927 not 2, since it's not portable to subtract 1 from the start of an
6928 array. The new item 0 is never set or used. All uses changed.
6929
6930 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
6931 the default definition of YYLLOC_DEFAULT. Problem reported
6932 by Frank Heckenbach.
6933
69342004-12-12 Paul Eggert <eggert@cs.ucla.edu>
6935
6936 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
6937 the normal case and one for the error case. Just use the
6938 first one uniformly. Problem reported by Frank Heckenbach.
6939 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
6940 use exactly the same macro in both places.
6941 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
6942 so that the normal-case YYRHSLOC works for the error case too.
6943 All uses changed.
6944 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
6945 (YYLLOC_DEFAULT): Use the same macro as glr.c.
6946 * doc/bison.texinfo (Location Default Action): Don't claim that
6947 we have an array of locations. Use the same macro for both glr
6948 and lalr parsers. Mention YYRHSLOC. Mention what happens when
6949 the index is 0.
6950
69512004-12-10 Paul Eggert <eggert@cs.ucla.edu>
6952
6953 * HACKING: Update email addresses to send announcements to.
6954
6955 * configure.ac (AC_INIT): Bump version to 1.875f.
6956
69572004-12-10 Paul Eggert <eggert@cs.ucla.edu>
6958
6959 * NEWS: Version 1.875e.
6960 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
6961
6962 * src/scan-skel.l: Include "complain.h", for "fatal".
6963
6964 * src/relation.h (relation_print, relation_digraph):
6965 Relation sizes are of type relation_node, not size_t (this is
6966 merely a doc fix, since the two types are equivalent).
6967 (relation_transpose): Relation sizes are of type relation_node,
6968 not int.
6969 * src/relation.c: Likewise.
6970 (top, infinity): Now of type relation_node, not int.
6971 (traverse, relation_transpose): Use relation_node, not int.
6972
6973 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
6974 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
6975 (yyparse): Remove unused local introduced in 2004-10-25 patch.
6976
6977 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
6978 specifying whether the test should be skipped. Use it tp
6979 specify that the [%defines %skeleton "lalr1.cc"] tests currently
6980 fail on some hosts, and should be skipped.
6981
69822004-12-08 Paul Eggert <eggert@cs.ucla.edu>
6983
6984 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
6985 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
6986 unless otherwise specified below.
6987
6988 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
6989 to allocate kernel_base, kernel_items, kernel_size, since
6990 they needn't be initialized to 0.
6991 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
6992 * src/closure.c (new_closure): Likewise, for itemset.
6993 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
6994 * src/lalr.c (set_goto_map): Likewise, for temp_map.
6995 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
6996 (build_relations): Likewise for edge, states1, includes.
6997 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
6998 * src/reader.c (packgram): Likewise, for ritem, rules.
6999 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
7000 * src/relation.c (relation_digraph): Likewise for VERTICES.
7001 (relation_transpose): Likewise for new_R, end_R.
7002 * src/symtab.c (symbols_token_translations_init): Likewise for
7003 token_translations.
7004 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
7005 (token_actions): Likewise for yydefact, actrow, conflrow,
7006 conflict_list.
7007 (save_column): Likewise for froms[symno], tos[symno].
7008 (goto_actions): Likewise for state_count.
7009 (pack_table): Likewise for base, pos, check.
7010 (tables_generate): Likewise for width.
7011
7012 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
7013 for initial core. Just have a separate core, so we needn't worry
7014 about whether kernel_size and kernel_base are initialized.
7015
7016 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
7017 kernel_size, kernel_items): Remove unnecessary initialization.
7018 * src/conflicts.c (conflicts): Likewise.
7019 * src/derives.c (derives): Likewise.
7020 * src/muscle_tablc (muscle_insert): Likewise.
7021 * src/relation.c (relation_digraph): Likewise.
7022 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
7023 conflrow, conflict_table, conflict_list, table, check):
7024 Likewise.
7025
7026 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
7027 This is because all callers pass unsigned int.
7028 * src/closure.h (new_closure): Likewise.
7029
7030 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
7031 (build_relations): Initialize includes[i] in all cases.
7032 * src/reader.c (packgram): Always initialize rules[ruleno].prec
7033 and rules[ruleno].precsym. Initialize members in order.
7034 * src/relation.c (relation_transpose): Always initialize new_R[i]
7035 and end_R[i].
7036 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
7037
7038 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
7039 conflict_list[0] was always 0, but now it isn't initialized.
7040
7041 * src/table.c (table_grow): When conflict_table grew, the grown
7042 area wasn't cleared. Fix this.
7043
7044 * lib/.cvsignore: Add strdup.c, strdup.h.
7045 * m4/.cvsignore: Add strdup.m4.
7046
70472004-12-07 Paul Eggert <eggert@cs.ucla.edu>
7048
7049 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
7050 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
7051 GOTO_NUMBER_MAXIMUM, since we occasionally compute
7052 ngotos + 1 without checking for overflow.
7053 (build_relations): Use END_NODE, not -1, to denote end of edges.
7054 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
7055 build_relations): Use goto_number, not int, for goto numbers.
7056 * src/tables.c (save_column, default_goto): Likewise.
7057
70582004-11-23 Akim Demaille <akim@epita.fr>
7059
7060 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
7061 of #defining from yystype.
7062 Don't typedef yystype, C++ does not need it.
7063 This lets it possible to forward declare it as union.
7064
70652004-11-23 Paul Eggert <eggert@cs.ucla.edu>
7066
7067 * bootstrap (gnulib_modules): Add extensions.
7068 Problem reported by Jim Meyering.
7069
70702004-11-22 Paul Eggert <eggert@cs.ucla.edu>
7071
7072 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
7073 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
7074 src/system.h, src/tables.c: XFREE -> free, to accommodate
7075 recent change to gnulib xalloc.h.
7076 Problem reported by Jim Meyering.
7077
70782004-11-17 Akim Demaille <akim@epita.fr>
7079
7080 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
7081
70822004-11-17 Akim Demaille <akim@epita.fr>,
7083 Alexandre Duret-Lutz <adl@gnu.org>
7084
7085 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
7086 changes.
7087 (YYCDEBUG): Adjust.
7088 Use it instead of cdebug_.
7089 (Parser::debug_stream, Parser::set_debug_stream): New.
7090 (Parser::symprint_): Define cdebug_ for temporary backward
7091 compatibility.
7092 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
7093 debug_stream ().
7094
70952004-11-17 Akim Demaille <akim@epita.fr>
7096
7097 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
7098 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
7099 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
7100 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
7101
71022004-10-27 Paul Eggert <eggert@cs.ucla.edu>
7103
7104 * data/glr.c (yyloc_default): Remove; not used.
7105 Problem reported by Frank Heckenbach.
7106
71072004-10-25 Akim Demaille <akim@epita.fr>
7108
7109 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
7110 Introduce another definition to address simple location arrays.
7111 (yyGLRStack): New member: yyerror_range.
7112 (yyrecoverSyntaxError, yyparse): Update it.
7113 (yyrecoverSyntaxError): Use it when shifting the error token to
7114 have an accurate range, equivalent to the one computed by both
7115 yacc.c and lalr1.cc.
7116 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
7117 that column numbers start at column 0, as per GNU Coding
7118 Standards, the others tests, and the doc.
7119 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
7120 Adjust to the above change (first column is 0).
7121 And adjust the location of the "<error>", now covering the whole
7122 line.
7123
71242004-10-22 Akim Demaille <akim@epita.fr>
7125 and Paul Eggert <eggert@cs.ucla.edu>
7126
7127 Remove some arbitrary limits on goto numbers and relations.
7128 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
7129 initial values, since they're never used.
7130 (set_goto_map): ngotos is now unsigned, so test for overflow
7131 by seeing whether it wraps around to zero.
7132 * src/lalr.h (goto_number): Now size_t, not short int.
7133 (GOTO_NUMBER_MAXIMUM): Remove.
7134 * src/relation.c (relation_print, traverse, relation_transpose):
7135 Check for END_NODE rather than looking at sign.
7136 * src/relation.h (END_NODE): New macro.
7137 (relation_node): Now size_t, not short int.
7138
71392004-10-22 Paul Eggert <eggert@cs.ucla.edu>
7140
7141 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
7142 keyword, not an identifier. Problem reported by Baron Schwartz in
7143 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
7144
71452004-10-11 Akim Demaille <akim@epita.fr>
7146
7147 * src/symtab.c (symbol_check_alias_consistency): Also check
7148 type names, destructors, and printers.
7149 Reported by Alexandre Duret-Lutz.
7150 Recode the handling of associativity and precedence in terms
7151 of symbol_precedence_set.
7152 Accept no redeclaration at all, not even equal to the previous
7153 value.
7154 (redeclaration): New.
7155 Use it to factor redeclaration complaints.
7156 (symbol_make_alias): Don't set the type of the alias, let
7157 symbol_check_alias_consistency do it as for other features.
7158 * src/symtab.h (symbol): Add new member prec_location, and
7159 type_location.
7160 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
7161 * tests/input.at (Incompatible Aliases): New.
7162
71632004-10-09 Paul Eggert <eggert@cs.ucla.edu>
7164
7165 .cvsignore fixes to accommodate gnulib changes,
7166 and the practice of naming build directories "_build".
7167 * .cvsignore: Add "_*". Sort.
7168 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
7169 * m4/.cvsignore: Add "*_gl.m4".
7170
71712004-10-06 Akim Demaille <akim@epita.fr>
7172
7173 * src/parse-gram.y (add_param): Fix the truncation of trailing
7174 spaces.
7175
71762004-10-05 Akim Demaille <akim@epita.fr>
7177
7178 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
7179 whether the reducion was empty or not. This leaves room to
7180 improve the use of YYLLOC_DEFAULT in such a case.
7181 lalr1.cc is still experimental, so changing this is acceptable.
7182 And finally, there are probably not many users who changed the
7183 handling of locations in GLR, so changing is admissible too.
7184
7185 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
7186 empty reduction, set @$ to an empty location ending the previously
7187 stacked symbol.
7188 Adjust uses to make sure the code is triggered on empty
7189 reductions.
7190 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
7191 expected output: empty reductions have empty locations.
7192
71932004-09-29 Akim Demaille <akim@epita.fr>
7194
7195 * data/lalr1.cc: Move towards a more standard C++ coding style
7196 for templates: Class < T > -> Class<T>.
7197
71982004-09-29 Akim Demaille <akim@epita.fr>
7199
7200 * data/lalr1.cc: Reinstall the former ctor, for sake of
7201 compatibility, but warn it will be removed.
7202 Move towards a more standard C++ coding style (i.e., type *var ->
7203 type* var).
7204
72052004-09-27 Paul Eggert <eggert@cs.ucla.edu>
7206
7207 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
7208 since it's less likely to work if NULs are involved in the future.
7209
72102004-09-27 Akim Demaille <akim@epita.fr>
7211
7212 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
7213
72142004-09-27 Akim Demaille <akim@epita.fr>
7215
7216 * data/lalr1.cc (b4_parse_param_decl_1): New.
7217 (b4_parse_param_decl): Use it to have different names between attribute
7218 and argument names.
7219 (b4_cc_constructor_call): Likewise.
7220
72212004-09-24 Akim Demaille <akim@epita.fr>
7222
7223 * src/parse-gram.y (add_param): Strip the leading and trailing
7224 blanks from a formal argument declaration.
7225 (YY_LOCATION_PRINT): New.
7226
72272004-09-24 Akim Demaille <akim@epita.fr>
7228
7229 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
7230 after the location.
7231
72322004-09-24 Akim Demaille <akim@epita.fr>
7233
7234 * doc/bison.texinfo (Table of Symbols): Sort.
7235
72362004-09-21 Akim Demaille <akim@epita.fr>
7237
7238 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
7239 the useless parentheses.
7240 Suggested by Paul Eggert.
7241
72422004-09-20 Akim Demaille <akim@epita.fr>
7243
7244 Let the initial-action act on the look-ahead, and use it for the
7245 "initial push" (corresponding to an hypothetical beginning-of-file).
7246 And let lalr1.cc honor %initial-action.
7247
7248 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
7249 example.
7250 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
7251 (Parser::Parser): Remove the ctor that used to initialize it.
7252 (Parser::parse): Like in the other skeletons, issue the "starting
7253 parse" message before any action.
7254 Honor %initial-action.
7255 Initialize the stacks with the lookahead.
7256 * data/yacc.c: Let $$ and @$ in %initial-action designate the
7257 look-ahead.
7258 Push them in the stacks.
7259 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
7260
72612004-09-20 Akim Demaille <akim@epita.fr>
7262
7263 * doc/bison.texinfo (Initial Action Decl): New.
7264
72652004-09-20 Akim Demaille <akim@epita.fr>
7266
7267 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
7268 clearer criterion to define it.
7269 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
7270 When reducing on an empty RHS, use the latest stacked location as
7271 location.
7272 yylloc is not always available.
7273 * data/glr.c: Likewise.
7274 Also, honor initial-actions.
7275
72762004-09-20 Akim Demaille <akim@epita.fr>
7277
7278 * data/yacc.c (YY_LOCATION_PRINT): New.
7279 Define when we know YYLTYPE's structure, i.e., when the default
7280 YYLLOC_DEFAULT is used.
7281 * data/c.m4 (b4_yysymprint_generate): Use it.
7282 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
7283 value of the result.
7284 (error_start_): Replace with...
7285 (error_range_): this location array.
7286 This allows to replace code relying on the implementation of
7287 locations by portable code.
7288 * data/yacc.c (yylerrsp): Replace with...
7289 (yyerror_range): this.
7290 Every time a token is popped, update yyerror_range[0], to have an
7291 accurate location for the error token.
7292 * data/glr.c (YY_LOCATION_PRINT): New.
7293 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
7294 deference a pointer.
7295 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
7296 report the location in %printers.
7297
7298 * src/scan-skel.l: Instead of abort, report error messages to ease
7299 understanding skeleton scanning failures.
7300
73012004-09-16 Akim Demaille <akim@epita.fr>
7302
7303 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
7304 (iterator, const_iterator): these, to be more in the C++ spirit.
7305 Also, return reverse iterators so that when displaying the stack
7306 we display its bottom first.
7307 (Parser::stack_print_, Parser::reduce_print_): Match the messages
7308 from yacc.c.
7309 We should probably use vector here though.
7310
73112004-09-16 Akim Demaille <akim@epita.fr>
7312
7313 Have more complete shift traces.
7314
7315 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
7316 to report Shifts instead of ad hoc YYDPRINTF invocations,
7317 including for the error token.
7318 * data/lalr1.cc (symprint_): Output the location.
7319 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
7320 output the location within the %printer.
7321 Activate GLR tests, at least to make sure they compile properly.
7322 They still don't pass though.
7323 * tests/calc.at: Adjust expect verbose output, since now "Entering
7324 state..." is on a different line than the "Shifting" message.
7325
73262004-09-08 Akim Demaille <akim@epita.fr>
7327
7328 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
7329 Bison directive from the Bison file to the invocation of this
7330 macro, so that these directives are passed to
7331 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
7332 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
7333 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
7334 the extra Bison directives instead of the whole series.
7335 Change the grammar so that there are recoverable errors, and
7336 unrecoverable errors. Now we can have the parser give up before
7337 consuming the whole input. As a result we now can observe that
7338 the lookahead is freed when needed.
7339 Change the parser source to parse argv[1] instead of a hard coded
7340 string.
7341 Simplify yylex, and give a value and location to EOF.
7342 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
7343 passed directives already coded in the file.
7344 Add some tests to check the location of "error".
7345 For some tests, the C++ parser is correct, and not yacc.c.
7346 For other tests, they provide different, but unsatisfying, values,
7347 so keep the C++ value so that at least one parser is "correct"
7348 according to the test suite.
7349 (Actions after errors): Remove, this is subsumed by the
7350 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
7351
73522004-09-06 Akim Demaille <akim@epita.fr>
7353
7354 * data/lalr1.cc: Adjust the indentation of the labels.
7355 (Parser::pop): New.
7356 Use it.
7357
73582004-09-06 Akim Demaille <akim@epita.fr>
7359
7360 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
7361 argument, an informative message.
7362 Call YY_SYMBOL_PRINT.
7363 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
7364 * data/lalr1.cc (destruct_): Likewise.
7365 In addition, no longer depend on b4_yysymprint_generate and
7366 b4_yydestruct_generate to generate these functions, do it "by
7367 hand".
7368
73692004-09-03 Akim Demaille <akim@epita.fr>
7370
7371 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
7372 invoked, yydestruct the lookahead.
7373 * tests/calc.at (Calculator $1): Update the expected lengths of
7374 traces: there is an added line for the discarded lookahead.
7375 * doc/bison.texinfo (Destructor Decl): Some rewording.
7376 Define "discarded" symbols.
7377
73782004-09-02 Akim Demaille <akim@epita.fr>
7379
7380 * data/lalr1.cc (translate_, destruct_): No reason to be static.
7381
73822004-09-02 Akim Demaille <akim@epita.fr>
7383
7384 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
7385 (YYDSYMPRINTF): Rename as...
7386 (YY_SYMBOL_PRINT): this.
7387 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
7388 two.
7389 Use it instead of direct symprint_ calls.
7390 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
7391 one.
7392
73932004-09-02 Akim Demaille <akim@epita.fr>
7394
7395 * data/lalr1.cc (b4_yysymprint_generate): New.
7396 (symprint_): New member function, defined when YYDEBUG.
7397 Use it consistently instead of token/nterm debugging output by
7398 hand.
7399 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
7400 %printer calls to use cdebug_ when using lalr1.cc.
7401
74022004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
7403
7404 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
7405 with #ifdef YYDEBUG.
7406
74072004-08-26 Akim Demaille <akim@epita.fr>
7408
7409 * doc/bison.texinfo (Implementing Loops): Rename as...
7410 (Implementing Gotos/Loops): this.
7411
74122004-08-13 Paul Eggert <eggert@cs.ucla.edu>
7413
7414 Adjust to latest gnulib.
7415 * bootstrap (gnulib_modules): Add xalloc-die.
7416 Set LC_ALL=C so that file names sort consistently.
7417 Prefer the gnulib copies of gettext.m4, glibc21.m4,
7418 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
7419 uintmax_t.m4, ulonglong.m4.
7420 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
7421 po.m4 since we are now using _gl.m4 instead.
7422
74232004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
7424
7425 * src/scan-action.l: Remove. Scanning of semantic actions is
7426 handled in scan-gram.l.
7427
74282004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
7429
7430 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
7431
7432 * src/location.h (struct): The file member is a uniqstr.
7433 (equal_boundaries): Use UNIQSTR_EQ for comparison.
7434
74352004-07-22 Paul Eggert <eggert@cs.ucla.edu>
7436
7437 Fix bug with non-%union parsers that have printers or destructors,
7438 which led to a Bison core dump. Reported by Peter Fales in
7439 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
7440
7441 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
7442 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
7443 not to our own type.
7444 * src/output.c (symbol_destructors_output, symbol_printers_output):
7445 Don't assume %union.
7446 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
7447 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
7448 UNION-FLAG. All callers changed.
7449 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
7450 Use type char, not unsigned int, when declaring an array of char;
7451 this lets us remove a cast.
7452 (Printers and Destructors): Add non-%union test cases.
7453
74542004-06-21 Paul Eggert <eggert@cs.ucla.edu>
7455
7456 * doc/bison.texinfo: Minor editorial changes, mostly to the new
7457 GLR writeups. E.g., avoid frenchspacing and the future tense,
7458 change "lookahead" to "look-ahead", and change "wrt" to "with
7459 respect to".
7460
74612004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7462
7463 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
7464 New sections, split off from the GLR Parsers section. Put the new
7465 Simple GLR Parser near the start of the GLR section, for clarity.
7466 Rewrite connective text.
7467
74682004-06-21 Frank Heckenbach <frank@g-n-u.de>
7469
7470 * doc/bison.texinfo (Simple GLR Parsers): New section.
7471
74722004-06-21 Paul Eggert <eggert@cs.ucla.edu>
7473
7474 * NEWS, TODO, doc/bison.texinfo:
7475 Use "look-ahead" instead of "lookahead", to be consistent.
7476 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
7477 while we're fixing "look-ahead".
7478 * src/conflicts.c (shift_set): Renamed from shiftset.
7479 (look_ahead_set): Renamed from lookaheadset.
7480 * src/print.c: Likewise.
7481 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
7482 name for "lookahead".
7483 (report_types, usage): Likewise.
7484 * src/getargs.h (report_look_ahead_tokens): Renamed from
7485 report_lookaheads.
7486 * src/lalr.c (compute_look_ahead_tokens): Renamed from
7487 compute_lookaheads.
7488 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
7489 (look_ahead_tokens_print): Renamed from lookaheads_print.
7490 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
7491 state_rule_lookaheads_print.
7492 * src/state.h: Likewise.
7493 (reductions.look_ahead_tokens): Renamed from lookaheads.
7494 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
7495 AT_DATA_LOOKAHEADS_GRAMMAR.
7496
74972004-06-03 Paul Eggert <eggert@cs.ucla.edu>
7498
7499 * README: Update location of patched M4 distribution.
7500
75012004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
7502
7503 Don't assume the C++ compiler takes the same arguments as the C compiler
7504 (trivial change).
7505 * configure.ac (O0CXXFLAGS): New var.
7506 * tests/atlocal.in (CXXFLAGS): Use it.
7507
75082004-05-29 Paul Eggert <eggert@cs.ucla.edu>
7509
7510 Fix some "make check" problems with C++ reported by
7511 Albert Chin-A-Young for Tru64 C++ in this thread:
7512 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
7513
7514 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
7515 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7516 Output to a .cc file for C++, not to a .c file.
7517 * tests/calc.at (AT_CHECK_CALC): Likewise.
7518 * tests/regression.at (AT_CHECK_DANCER): Likewise.
7519 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
7520
75212004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
7522
7523 * tests/calc.at, tests/actions.at: Workaround for SGI
7524 C++ compiler. (trivial change)
7525
75262004-05-27 Paul Eggert <eggert@cs.ucla.edu>
7527
7528 Spent a few hours checking out which prerequisite versions the
7529 current sources actually require. I went all the way back to
7530 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
7531 a seemingly endless set of combinations of versions more recent
7532 than that. The bottom line is that the current sources require
7533 fairly recent versions of the build tools, and it'll be some work
7534 to change this.
7535 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
7536 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
7537 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
7538 Add comments explaining why those particular versions are
7539 currently needed.
7540
7541 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
7542 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
7543 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
7544
7545 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
7546 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
7547
75482004-05-26 Paul Eggert <eggert@cs.ucla.edu>
7549
7550 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
7551 0.11.5. Suggested by Bruno Haible.
7552 * bootstrap: Remove gettext version checking.
7553
7554 * doc/bison.texinfo (Decl Summary): Also mention that %union
7555 can depend on prerequisite types. Problem reported by Tim
7556 Van Holder.
7557
75582004-05-25 Paul Eggert <eggert@cs.ucla.edu>
7559
7560 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
7561 * README-alpha: Don't tell people not to package this.
7562
7563 * bootstrap: Don't assume $(...) works; use `...` instead.
7564 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
7565 gettext better.
7566
7567 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
7568 put into the -d output file, and mention what to do if YYSTYPE is
7569 defined as a macro.
7570
75712004-05-24 Paul Eggert <eggert@cs.ucla.edu>
7572
7573 Undo change made earlier today: it caused autopoint to not bring
7574 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
7575 autopoint's.
7576
7577 * bootstrap: Check that gettext version matches what's in
7578 configure.ac. Warn users to ignore robots.txt ERROR 404.
7579 * bootstrap: Undo today's earlier change (logged below).
7580 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
7581
7582 The gettext version checking is causing more trouble than it's
7583 curing; remove it. Problem reported by Paul Hilfinger.
7584
7585 * bootstrap: Issue a warning that one can expect a message
7586 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
7587 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
7588
75892004-05-23 Paul Eggert <eggert@cs.ucla.edu>
7590
7591 Ensure that the C++ compiler used for testing actually works on a
7592 simple test program; if not, skip the C++-related tests. Problem
7593 reported by Vin Shelton in:
7594 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
7595
7596 * m4/cxx.m4: New file.
7597 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
7598 * tests/atlocal.in (BISON_CXX_WORKS): Add.
7599 * tests/local.at (AT_COMPILE_CXX): Use it.
7600
76012004-05-21 Paul Eggert <eggert@cs.ucla.edu>
7602
7603 * data/glr.c (yylloc): Output this macro even if locations are not
7604 being generated, as the GLR parser needs it even in that case.
7605 Problem reported by Troy A. Johnson
7606 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
7607
7608 * configure.ac (AC_INIT): Update to 1.875e.
7609
76102004-05-21 Paul Eggert <eggert@cs.ucla.edu>
7611
7612 * NEWS: Version 1.875d.
7613 * configure.ac (AC_INIT): Likewise.
7614 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
7615
7616 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
7617 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
7618 lalr1.cc runs afoul of the first, and the last two are no longer
7619 supported by GCC 3.4.0.
7620 * README: Mention GNU m4 1.4 or later; mention m4 patches.
7621 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
7622
76232004-05-06 Paul Eggert <eggert@cs.ucla.edu>
7624
7625 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
7626 unsigned int, for compatibility with latest gnulib hash module.
7627 * src/state.c (state_hash, state_hasher): Likewise.
7628 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
7629 * src/uniqstr.c (hash_uniqstr): Likewise.
7630
76312004-05-03 Paul Eggert <eggert@cs.ucla.edu>
7632
7633 * NEWS: Unescaped newlines are no longer allowed in char & strings.
7634
7635 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
7636 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
7637 character and string literals.
7638 (unexpected_end): New function.
7639 (unexpected_eof): Use it.
7640 (unexpected_newline): New function.
7641 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
7642 actions.
7643
7644 * NEWS: Document %expect-rr.
7645
7646 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
7647 Fix typo by replacing $1 with $option.
7648 Remove more 'intl'-related files.
7649 Don't DEFUN AM_INTL_SUBDIR twice.
7650
7651 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
7652 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
7653 strtoul.c.
7654 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
7655 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
7656 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
7657 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
7658 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
7659 * src/.cvsignore: Add *.output.
7660
7661 * src/parse-gram.y: Put copyright notice inside %{ %} so it
7662 gets copied to the output file.
7663
76642004-04-28 Paul Eggert <eggert@twinsun.com>
7665
7666 Get files from the gnulib and po repositories, instead of relying
7667 on them being in our CVS. Upgrade to latest versions of gnulib
7668 and Automake.
7669
7670 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
7671 * bootstrap: Bootstrap from gnulib and po repositories.
7672 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
7673 * README-cvs: Document these changes. Remove version numbers from
7674 mentions of build tools, since they change so often. Mention Flex.
7675
7676 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
7677 (gl_USE_SYSTEM_EXTENSIONS): Add.
7678 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
7679 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
7680 does this for us.
7681 (AC_ISC_POSIX): Remove; we no longer support this
7682 ancient OS, as it gets in the way of latest Autoconf & gnulib.
7683 (AC_HEADER_STDC): Remove: we now assume C89 or better.
7684 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
7685 Do not check for C89 headers, except for locale.h which is used
7686 by the Yacc library and must port to K&R hosts.
7687 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
7688 Do not check for C89 functions, except for setlocale which is
7689 used by the Yacc library.
7690 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
7691 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
7692 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
7693 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
7694 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
7695 AM_GNU_GETTEXT): Remove; now done by:
7696 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
7697 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
7698 for us.
7699
7700 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
7701 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
7702 Define to empty, as gnulib.mk will do the rest for us.
7703 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
7704 for us.
7705 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
7706 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
7707
7708 * src/files.c: Include gnulib's xstrndup.h.
7709
7710 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
7711 (REALLOC): Use xnrealloc, for likewise.
7712 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
7713 (strnlen, memrchr): Remove decls; functions no longer used.
7714 Include <stpcpy.h>.
7715
7716 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
7717 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
7718 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
7719 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
7720 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
7721 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
7722 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
7723 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
7724 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
7725 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
7726 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
7727 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
7728 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
7729 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
7730 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
7731 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
7732 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
7733 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
7734 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
7735 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
7736 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
7737 Remove, as these files are now generated automatically
7738 by bootstrap or automake.
7739
7740 * po/ChangeLog: Remove: all but one entry was a duplicate
7741 of this file, and I moved that 2000-11-02 entry here.
7742
7743 * config/.cvsignore: Add Makefile, depcomp, install-sh.
7744 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
7745 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
7746 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
7747 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
7748 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
7749 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
7750 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
7751 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
7752 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
7753 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
7754 xstrndup.h.
7755 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
7756 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
7757 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
7758 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
7759 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
7760 * src/.cvsignore: Remove *_.c.
7761
7762
7763 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
7764 support it. (The latest stable gzip doesn't.)
7765
77662004-04-27 Paul Eggert <eggert@twinsun.com>
7767
7768 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
7769 case, as stos_ is now used by destructors due to the 2004-02-09
7770 change.
7771
7772 Remove more K&R C support.
7773 * lib/libiberty.y (PARAMS): Remove. All uses removed.
7774 * lib/subpipe.c (errno): Remove decl.
7775 Include <stdlib.h> unconditionally.
7776 (EXIT_FAILURE): Remove macro.
7777 * src/complain.c (vfprintf, strerror): Remove.
7778 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
7779 unconditionally.
7780 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
7781 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
7782 (strchr, strspn, memchr): Remove decls.
7783 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
7784 unconditionally. Do not declare perror.
7785 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
7786 unconditionally.
7787
7788 * src/complain.c (_): Remove useless defn, as system.h defines this.
7789
7790 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
7791 with latest obstack.h.
7792 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
7793 to procedure types, as obstack.h now does that for us.
7794 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
7795
7796 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
7797 so that this include file can stand alone.
7798 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
7799 does this now. Include subpipe.h first after config.h, to
7800 test whether it can stand alone.
7801
7802 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
7803 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
7804 unused declaration.
7805
7806 * tests/synclines.at (%union synch line): Put a dummy member in
7807 the union, because empty unions aren't allowed in C. Caught
7808 by GCC 3.4.0.
7809
78102004-04-13 Jim Meyering <jim@meyering.net>
7811
7812 * src/conflicts.c (conflicts_print): Correct format string typo:
7813 use `%%' to produce literal `%'. (trivial change)
7814
78152004-03-30 Paul Eggert <eggert@twinsun.com>
7816
7817 * src/getargs.c (version): Update copyright year to 2004.
7818
7819 * data/c.m4 (b4_int_type): Use 'short int' rather than
7820 'short', and similarly for 'long', 'unsigned', etc.
7821 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
7822 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
7823 yy_yypstack, yydumpstack): Likewise.
7824 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
7825 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
7826 Likewise.
7827 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
7828 yy_stack_print, yyparse): Likewise.
7829 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
7830 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
7831 * lib/bitset.c (bitset_print): Likewise.
7832 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
7833 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
7834 * lib/bitsetv.c (bitsetv_dump): Likewise.
7835 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
7836 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
7837 Likewise.
7838 * src/LR0.c (allocate_itemsets): Likewise.
7839 * src/gram.h (rule_number, rule): Likewise.
7840 * src/lalr.h (goto_number): Likewise.
7841 * src/nullable.c (nullable_compute): Likewise.
7842 * src/output.c (prepare_rules): Likewise.
7843 * src/relation.c (relation_print, relation_digraph): Likewise.
7844 * src/relation.h (relation_node): Likewise.
7845 * src/state.h (state_number, transitions, errs, reductions,
7846 struct state): Likewise.
7847 * src/symtab.h (symbol_number, struct symbol): Likewise.
7848 * src/tables.c (vector_number, tally, action_number,
7849 default_goto, goto_actions): Likewise.
7850 * tests/existing.at (GNU Cim Grammar): Likewise.
7851 * tests/regression.at (Web2c Actions): Likewise.
7852
7853 * src/output.c (muscle_insert_short_int_table): Renamed from
7854 muscle_insert_short_table. All uses changed.
7855
78562004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7857
7858 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
7859 (declaration): Replace expected_conflicts with expected_sr_conflicts.
7860 Add %expect-rr rule.
7861
7862 * src/scan-gram.l: Recognize %expect-rr.
7863
7864 * src/conflicts.h (expected_sr_conflicts): Rename from
7865 expected_conflicts.
7866 (expected_rr_conflicts): Declare.
7867
7868 * src/conflicts.c (expected_sr_conflicts): Rename from
7869 expected_conflicts.
7870 (expected_rr_conflicts): Define.
7871 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
7872 for GLR parsers.
7873 Use expected_sr_conflicts in place of expected_conflicts.
7874 Warn if expected_rr_conflicts used in non-GLR parser.
7875
7876 * doc/bison.texinfo: Add documentation for %expect-rr.
7877
78782004-03-08 Paul Eggert <eggert@gnu.org>
7879
7880 Add support for hex token numbers. Suggested by Odd Arild Olsen in
7881 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
7882
7883 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
7884 in lalr1.cc.
7885 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
7886 * src/scan-gram.l (scan_integer): New function.
7887 ({int}): Use it.
7888 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
7889 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
7890 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
7891 Say "long int", not "long", for uniformity with GNU style.
7892
78932004-02-25 Paul Eggert <eggert@twinsun.com>
7894
7895 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
7896 compilers. This fixes a problem with Intel's C++ compiler being
7897 chatty, reported by Guido Trentalancia in
7898 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
7899
79002004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
7901
7902 Support %destructor and merge error locations in lalr1.cc.
7903
7904 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
7905 (Parser::stos_): Define unconditionally.
7906 (Parser::destruct_): New method. Generate its body with
7907 b4_yydestruct_generate.
7908 (Parser::error_start_): New attribute.
7909 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
7910 token which are discarded.
7911 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
7912 error_start_ when erroneous token are discarded.
7913 (Parser::parse) <yyerrlab1>: Compute the location of the error
7914 token so that it covers all the discarded tokens.
7915 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
7916 it can be called with `%skeleton "lalr1.cc"', and do that.
7917
79182004-02-02 Paul Eggert <eggert@twinsun.com>
7919
7920 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
7921 $(top_srcdir)/lib and ../lib. This fixes a bug reported
7922 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
7923 There's no need to mention top_builddir since Automake does that
7924 for us.
7925 (INCLUDES): Remove, as Automake says it's obsolescent.
7926 Contents migrated into AM_CPPFLAGS as described above.
7927 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
7928
79292004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7930
7931 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
7932 (yyreportSyntaxError): Handle case where lookahead token is
7933 YYEMPTY.
7934
79352004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7936
7937 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
7938 resulting parsers are compilable with C++.
7939
79402003-12-23 Paul Eggert <eggert@twinsun.com>
7941
7942 * config/depcomp, config/install-sh: Sync with Automake 1.8.
7943 * src/output.c (output_skeleton): Rename local var.
7944 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
7945 Bison tokens, as this runs afoul of the 2003-10-07 change that
7946 disallowed NUL bytes in character constants or string literals.
7947
7948 * tests/local.at: Require Autoconf 2.59's Autotest.
7949 * tests/testsuite.at: Don't include local.at, since we now assume
7950 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
7951 including it.
7952 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
7953 multiple inclusion warnings.
7954
79552003-12-02 Akim Demaille <akim@epita.fr>
7956
7957 * doc/bison.texinfo (How Can I Reset the Parser): More about start
7958 conditions.
7959 From Bruno Haible.
7960
79612003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
7962
7963 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
7964
79652003-10-07 Paul Eggert <eggert@twinsun.com>
7966
7967 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
7968 if testsuite doesn't exist.
7969
7970 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
7971 literals, unfortunately.
7972 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
7973 Complain about NUL bytes in character constants or string literals.
7974
79752003-10-05 Paul Eggert <eggert@twinsun.com>
7976
7977 * NEWS: Don't document %no-default-prec, as it's still
7978 too experimental.
7979 * doc/bison.texinfo: Document %no-default-prec only if
7980 the defaultprec flag is set. Normally it's not.
7981
79822003-10-04 Paul Eggert <eggert@twinsun.com>
7983
7984 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
7985 non-modifiable lvalue, instead of a modifiable one.
7986 * doc/bison.texinfo (Actions): Document that $$ can
7987 be assigned to. Do not claim that $$ and $N are
7988 array element references: user code should not rely on this.
7989
79902003-10-01 Paul Eggert <eggert@twinsun.com>
7991
7992 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
7993 (grammar_declaration): Use it.
7994 * src/scan-gram.l: New token %no-default-prec.
7995 * tests/conflicts.at: Revamp tests to use %no-default-prec.
7996 * NEWS, doc/bison.texinfo: Document the above.
7997
79982003-10-01 Akim Demaille <akim@epita.fr>
7999
8000 VCG no longer supports long_straight_phase.
8001
8002 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
8003 * src/print_graph.c (print_graph): Adjust.
8004
80052003-09-30 Frank Heckenbach <frank@g-n-u.de>
8006 and Paul Eggert <eggert@twinsun.com>
8007
8008 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
8009 Table of Symbols): Document %default-prec.
8010 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
8011 (grammar_declaration): Set default_prec on %default-prec.
8012 * src/scan-gram.l (%default-prec): New token.
8013 * src/reader.h (default_prec): New flag.
8014 * src/reader.c: Likewise.
8015 (packgram): Handle it.
8016 * tests/conflicts.at (%default-prec without %prec,
8017 %default-prec with %prec, %default-prec 1): New tests.
8018
80192003-09-30 Paul Eggert <eggert@twinsun.com>
8020
8021 * tests/testsuite.at: Include local.at, not input.at, fixing
8022 a typo in the 2003-08-25 patch.
8023
80242003-08-27 Akim Demaille <akim@epita.fr>
8025
8026 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
8027 GCC warnings.
8028
80292003-08-26 Akim Demaille <akim@epita.fr>
8030
8031 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
8032 "<\#" to avoid magic from Gnus when posting parts of this script.
8033
80342003-08-26 Akim Demaille <akim@epita.fr>
8035
8036 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
8037 (Parser::parse): here.
8038 Adjust: nerrs and errstatus is now replaced by...
8039 (Parser::nerrs_, Parser::errstatus_): New.
8040
80412003-08-25 Akim Demaille <akim@epita.fr>
8042
8043 * config/announce-gen, Makefile.cfg: New.
8044 * Makefile.am: Adjust.
8045 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
8046 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
8047
80482003-08-25 Akim Demaille <akim@epita.fr>
8049
8050 When reducing initial empty rules, Bison parser read an initial
8051 location that is not defined. This results in garbage, and that
8052 affects Bison's own parser. Therefore we need (i) to extend Bison
8053 to support a means to initialize this location, and (ii) to use
8054 this CVS Bison to fix CVS Bison's parser.
8055
8056 * src/reader.h, reader.c (epilogue_augment): Remove, replace
8057 with...
8058 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
8059 * src/parse-gram.y: Adjust.
8060 (%initial-action): New.
8061 (%error-verbose): Since we require CVS Bison, there is no reason
8062 not to use it.
8063 * src/scan-gram.l: Adjust.
8064 * src/Makefile.am (YACC): New, to make sure we use our own parser.
8065 * data/yacc.c (yyparse): Use b4_initial_action.
8066
80672003-08-25 Akim Demaille <akim@epita.fr>
8068
8069 * doc/bison.texinfo: Don't promote stdout for error messages.
8070
80712003-08-25 Akim Demaille <akim@epita.fr>
8072
8073 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
8074 From Alexandre Duret-Lutz.
8075
80762003-08-25 Akim Demaille <akim@epita.fr>
8077
8078 Version 1.875c.
8079
80802003-08-25 Akim Demaille <akim@epita.fr>
8081
8082 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
8083 Use them.
8084
80852003-08-25 Akim Demaille <akim@epita.fr>
8086
8087 * data/lalr1.cc (Parser::reduce_print_): New.
8088 Use it.
8089
80902003-08-25 Akim Demaille <akim@epita.fr>
8091
8092 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
8093 error recovery loops. This patch is based on
8094 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
8095 Also, augment the similarity between lalr1.cc and yacc.c.
8096 Note: the locations of error recovery rules are not correct yet.
8097
8098 * data/lalr1.cc: Comment changes to augment the similarity between
8099 lalr1.cc and yacc.c.
8100 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
8101 (yyerrlab1): Remove, but where it used to be (now the bottom part of
8102 yyerrlab), when hitting EOF, pop the whole stack here instead of
8103 merely falling thru the default error handling mechanism.
8104 (yyerrorlab): New label, with the old contents of YYERROR,
8105 plus the following change: pop the stack of rhs corresponding
8106 to the production that invoked YYERROR. That is how Yacc
8107 behaves (required by POSIX).
8108 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
8109 fail.
8110
81112003-08-25 Akim Demaille <akim@epita.fr>
8112
8113 Tune local.at so that people can "autom4te -l autotest calc.at -o
8114 calc" for instance, to extract a sub test suite.
8115
8116 * tests/testsuite.at: Move the initialization, Autotest version
8117 requirement, and AT_TESTED invocation into...
8118 * tests/local.at: here.
8119 * tests/testsuite.at: Include it for compatibility with Autoconf
8120 2.57.
8121 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
8122 be ignore.
8123
81242003-08-04 Paul Eggert <eggert@twinsun.com>
8125
8126 Rework code slightly to avoid gcc -Wtraditional warnings.
8127 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
8128 The returned value is now stored in *YY0. All callers changed.
8129 * src/output.c (merge_output): Adjust to the above change.
8130
81312003-07-26 Paul Eggert <eggert@twinsun.com>
8132
8133 * data/glr.c (YYASSERT): New macro.
8134 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
8135 yyresolveStates, yyprocessOneStack):
8136 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
8137 Derived from a suggestion by Frank Heckenbach.
8138
81392003-07-25 Paul Eggert <eggert@twinsun.com>
8140
8141 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
8142 for portability to K&R C (after ansi2knr, presumably). See
8143 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
8144 by Frank Heckenbach, though I have omitted the structure-initialization
8145 part of his glr-knr.diff patch since I recall that the Portable
8146 C Compiler didn't require that change.
8147
8148 Let the user specify how to allocate and free memory.
8149 Derived from a suggestion by Frank Heckenbach in
8150 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
8151 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
8152 All uses of free, malloc, realloc changed to use these macros,
8153 and unnecessary casts removed.
8154 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
8155
81562003-07-06 Matthias Mann <MatthiasMann@gmx.de>
8157
8158 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
8159 use s.empty() rather than s == "" to test for empty string; see
8160 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
8161 (trivial change)
8162
81632003-06-25 Akim Demaille <akim@epita.fr>
8164
8165 * config/depcomp, config/install-sh: Update from masters.
8166
81672003-06-20 Paul Eggert <eggert@twinsun.com>
8168
8169 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
8170 and return properly parenthesized result.
8171 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
8172 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8173 Remove unnecessary parentheses from uses.
8174 * doc/bison.texinfo (Location Default Action): Describe the
8175 conventions for parentheses.
8176
81772003-06-19 Paul Eggert <eggert@twinsun.com>
8178
8179 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
8180 yyreportTree): Do not assume that size_t is the same width as int,
8181 when printing sizes. Print sizes using an unsigned format.
8182 Problem reported by Frank Heckenbach in
8183 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
8184
8185 Port to Forte Developer 7 C compiler.
8186 * data/glr.c (struct YYLTYPE): If locations are not being used,
8187 declare a single dummy member, as empty structs do not conform
8188 to the C standard.
8189 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
8190 the Forte Developer 7 C compiler complains that end-of-loop
8191 code is not reached.
8192
81932003-06-17 Paul Eggert <eggert@twinsun.com>
8194
8195 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
8196 avoid warnings from picky compilers about redefinition of PARAMS.
8197
81982003-06-17 Paul Eggert <eggert@twinsun.com>
8199
8200 Version 1.875b.
8201
8202 * NEWS: Document 1.875b.
8203
8204 * lib/bbitset.h: Do not include config.h; that's the includer's job.
8205 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
8206 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
8207 Don't use 'index' in comments, as it's a builtin fn on some hosts.
8208 * lib/bitset_stats.c: Include gettext.h unconditionally, as
8209 per recent gettext manual's suggestion.
8210 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
8211 Use prototypes, not old-style definitions.
8212 * lib/lbitset.c (lbitset_unused_clear): Likewise.
8213 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
8214 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
8215 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
8216 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
8217 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
8218 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
8219 vbitset_or_and_cmp, vbitset_copy): Likewise.
8220
8221 * lib/libiberty.h: Do not include config.h; that's the includer's job.
8222 Do not include <stdlib.h>.
8223 (PARAMS): Define unconditionally for C89.
8224 (ATTRIBUTE_NORETURN): Remove.
8225 (ATTRIBUTE_UNUSED): Define unconditionally.
8226
8227 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
8228 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8229 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
8230 * lib/vbitset.c, lib/vbitset.h: New files.
8231 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
8232 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
8233 from libbitset.
8234
8235 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
8236 `How Can I Reset @code{yyparse}', since texinfo does not allow
8237 arbitrary @ in node names.
8238
8239 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
8240 shouldn't be needed according to the gettext 0.12.1 documentation
8241 but which seem to be needed anyway: codeset.m4 glibc21.m4
8242 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8243 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
8244 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
8245
8246 * lib/.cvsignore: Add stdbool.h.
8247 * m4/.cvsignore: Add nls.m4, po.m4.
8248
8249 Upgrade to CVS gnulib.
8250 * stdbool_.h: File renamed from stdbool.h.in.
8251 * configure.ac (AM_STDBOOL_H): Invoke this instead of
8252 AC_HEADER_STDBOOL.
8253 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
8254 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
8255 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
8256 (MOSTLYCLEANFILES): New var.
8257 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
8258 (stdbool.h): New rule.
8259 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
8260 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
8261 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
8262 m4/quote.m4: Upgrade to today's gnulib.
8263
8264 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
8265 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
8266 the tests right now.
8267 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
8268 yyerror are declared before use; C99 requires this.
8269
82702003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8271
8272 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
8273 first.
8274 (yyrecoverSyntaxError): Correct the logic for setting and testing
8275 yyerrState.
8276 Correct comment on handling EOF.
8277 Allow states with only a default reduction, rather than failing
8278 (I can't quite reconstruct why these were not allowed before).
8279
8280 Fixes to avoid problem that $-N rules in GLR parsers can cause
8281 buffer overruns, corrupting state.
8282
8283 * src/output.c (prepare_rules): Output max_left_semantic_context
8284 definition.
8285 * src/reader.h (max_left_semantic_context): New variable declaration.
8286 * src/scan-gram.l (max_left_semantic_context): Define.
8287 (handle_action_dollar): Update max_left_semantic_context.
8288 * data/glr.c (YYMAXLEFT): New definition.
8289 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
8290 (yyresolveAction): Ditto.
8291
8292 Fixes to problems with location handling in GLR parsers reported by
8293 Frank Heckenbach (2003/06/05).
8294
8295 * data/glr.c (YYLTYPE): Make trivial if locations not used.
8296 (YYRHSLOC): Add parentheses, and define only if locations used.
8297 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
8298 locations not used.
8299 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
8300 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8301
8302 * tests/cxx-type.at: Exercise location information; update tests
8303 to differentiate output with and without locations.
8304 Remove forward declarations of yylex and yyerror---caused errors
8305 because default YYLTYPE not yet defined.
8306 Change semantic actions to compute strings, rather than printing
8307 them directly (to test proper passing of semantics values). Change
8308 output to prefix notation and update test data and expected results.
8309 (yylex): Track locations.
8310 (stmtMerge): Return value rather than printing, and include arguments
8311 in value.
8312
83132003-06-03 Paul Eggert <eggert@twinsun.com>
8314
8315 Avoid warnings generated by GCC 2.95.4 when Bison is
8316 configured with --enable-gcc-warnings.
8317 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
8318 yy::]b4_parser_class_name[::translate_,
8319 yy::Stack::operator[] (unsigned),
8320 yy::Stack::operator[] (unsigned) const,
8321 yy::Slice::operator[] (unsigned),
8322 yy::Slice::operator[] (unsigned) const):
8323 Rename local vars to avoid warnings.
8324 * tests/glr-regression.at (Improper handling of embedded actions
8325 and $-N in GLR parsers): Remove unused local variable from yylex.
8326 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
8327 (void) as arg when not pure, since we now assume C89 when building
8328 Bison. Pacify GCC by using parameter.
8329
83302003-06-02 Paul Eggert <eggert@twinsun.com>
8331
8332 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
8333 yy::Location::lines, yy::Location::columns): Rename arguments
8334 to avoid shadowing; this removes a warning generated by GCC 3.3.
8335
83362003-06-01 Paul Eggert <eggert@twinsun.com>
8337
8338 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
8339 to g++, as GCC 3.3 complains if you do it.
8340 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
8341 everything that WARNING_CFLAGS has, except omit warnings
8342 not suitable for C++.
8343 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
8344 * tests/atlocal.in (CXXFLAGS): New var.
8345 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
8346
8347 Fix a GLR parser bug I reported in February; see
8348 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
8349 The problem was that GLR parsers did not conform to the C standard,
8350 because actions like { $1 = $2 + $3; } expanded to expressions
8351 that invoked YYFILL in separate subexpressions, and YYFILL assigned
8352 to a local variable. The C standard says that expressions
8353 like (var = f ()) + (var = f ()) have undefined behavior.
8354 Another problem was that GCC sometimes issues warnings that
8355 yyfill and its parameters are unused.
8356
8357 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
8358 as possibly unused.
8359 (yyfill): New function.
8360 (YYFILL): Use it.
8361 (yyuserAction): Change type of yynormal to bool, so that it matches
8362 the new yyfill signature. Mark it as possibly unused.
8363
8364
8365 Follow up on a bug I reported in February, where a Bison-generated
8366 parser can loop. Provide a test case and a fix for yacc.c. I
8367 don't have a fix for lalr1.cc or for glr.c, unfortunately.
8368 The original bug report is in:
8369 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
8370
8371 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
8372 macro's size was becoming unwieldy.
8373 (yyerrlab): Do not discard an empty lookahead symbol, as this
8374 might destroy garbage.
8375 (yyerrorlab): New label, with the old contents of YYERROR,
8376 plus the following change: pop the stack of rhs corresponding
8377 to the production that invoked YYERROR. That is how Yacc
8378 behaves, and POSIX requires this behavior.
8379 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
8380 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
8381 Define 'alarm' to do nothing if unistd.h is not available.
8382 Add a new rule "exp: '-' error;" to test the above change to
8383 data/yacc.c. Use 'alarm' to abort any test taking longer than
8384 10 seconds, as it's probably looping.
8385 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
8386 Also, the new yacc.c generates two fewer diagnostics for an
8387 existing test.
8388
83892003-05-24 Paul Eggert <eggert@twinsun.com>
8390
8391 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
8392 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
8393 This fixes a problem reported by John Bowman when the Compaq/HP
8394 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
8395 -ansi -Wall -gall).
8396 * data/yacc.c (union yyalloc): Likewise.
8397 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
8398
8399 Switch from 'int' to 'bool' where that makes sense.
8400
8401 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
8402 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
8403 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
8404 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
8405 Return or accept bool, not int. All callers changed.
8406 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
8407 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
8408 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
8409 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
8410 bitset_or_and_cmp_): Likewise.
8411 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
8412 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
8413 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
8414 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
8415 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
8416 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
8417 bitset_stats_or_and_cmp): Likewise.
8418 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
8419 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
8420 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
8421 ebitset_xor_cmp): Likewise.
8422 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
8423 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
8424 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
8425 lbitset_xor_cmp): Likewise.
8426 * lib/bbitset.h: Include <stdbool.h>.
8427 (struct bitset_vtable): The following members now return bool, not
8428 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
8429 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
8430 or_and_cmp).
8431 * src/conflicts.c (count_rr_conflicts): Likewise.
8432 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
8433 All uses changed.
8434 * lib/ebitset.c (ebitset_obstack_init): Likewise.
8435 * lib/lbitset.c (lbitset_obstack_init): Likewise.
8436 * src/getargs.c (debug_flag, defines_flag, locations_flag,
8437 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
8438 graph_flag): Likewise.
8439 * src/getargs.h (debug_flag, defines_flag, locations_flag,
8440 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
8441 graph_flag): Likewise.
8442 * src/output.c (error_verbose): Likewise.
8443 * src/output.h (error_verbose): Likewise.
8444 * src/reader.c (start_flag, typed): Likewise.
8445 * src/reader.h (typed): Likewise.
8446 * src/getargs.c (LOCATIONS_OPTION): New constant.
8447 (long_options, getargs): Use it.
8448 * src/lalr.c (build_relations): Use bool, not int.
8449 * src/nullable.c (nullable_compute): Likewise.
8450 * src/print.c (print_reductions): Likewise.
8451 * src/tables.c (action_row, pack_vector): Likewise.
8452 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
8453 * src/output.c (prepare): Use it.
8454 * src/output.c (token_definitions_output,
8455 symbol_destructors_output, symbol_destructors_output): Use string,
8456 not boolean integer, to keep track of whether to output separator.
8457 * src/print_graph.c (print_core): Likewise.
8458 * src/state.c (state_rule_lookaheads_print): Likewise.
8459
8460 * config/install-sh: Sync from automake 1.7.5.
8461
84622003-05-14 Paul Eggert <eggert@twinsun.com>
8463
8464 * src/parse-gram.y (rules_or_grammar_declaration): Require a
8465 semicolon after a grammar declaration, in the interest of possible
8466 future changes to the Bison input language.
8467 Do not allow a stray semicolon at the start of the grammar.
8468 (rhses.1): Allow one or more semicolons after any rule, including
8469 just before "|" as required by POSIX.
8470 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
8471 grammar.
8472
84732003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
8474
8475 %parse-param support for lalr1.cc.
8476
8477 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
8478 b4_cc_constructor_calls, b4_cc_constructor_call,
8479 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
8480 definitions.
8481 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
8482 parse-param arguments.
8483 (yy::b4_parser_class_name): Declare instance variables to
8484 hold parse-param arguments.
8485 * tests/calc.at: s/value/semantic_value/ because value clashes
8486 with a member of yy::b4_parser_class_name. Adjust C++ code
8487 to handle %parse-param. Enable %parse-param test in C++.
8488
84892003-05-12 Paul Eggert <eggert@twinsun.com>
8490
8491 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
8492 English a bit. Fix fclose typo. Change "const char" to "char
8493 const", and use ANSI C rather than K&R for "main". Suggest
8494 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
8495 and suggest yy_switch_to_buffer.
8496
84972003-05-05 Paul Eggert <eggert@twinsun.com>
8498
8499 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
8500 C89. This avoids a diagnostic on compilers that define __STDC__
8501 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
8502 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
8503
85042003-05-03 Paul Eggert <eggert@twinsun.com>
8505
8506 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
8507 Do not overrun array bounds.
8508 This should fix a bug reported today by Olatunji Oluwabukunmi in
8509 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
8510
85112003-04-29 Akim Demaille <akim@epita.fr>
8512
8513 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
8514 * src/getargs.c, src/getargs.h: here, as bool, not int.
8515 (nondeterministic_parser): New.
8516 * src/parse-gram.y, src/scan-gram.l: Support
8517 %nondeterministic-parser.
8518 * src/output.c (prepare): Use nondeterministic_parser instead
8519 of glr_parser where appropriate.
8520 * src/tables.c (conflict_row, action_row, save_row)
8521 (token_actions, token_actions, pack_vector): Ditto.
8522
85232003-04-29 Akim Demaille <akim@epita.fr>
8524
8525 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
8526
85272003-04-29 Akim Demaille <akim@epita.fr>
8528
8529 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
8530 with %pure-parser and %locations to exercise the patch from Yakov
8531 Markovitch below.
8532
85332003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
8534
8535 * data/yacc.c: (b4_lex_param): Corrected for the case where
8536 %lex-param is provided and %pure-parser isn't.
8537
85382003-04-27 Paul Eggert <eggert@twinsun.com>
8539
8540 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
8541 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
8542 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
8543 if it is not defined.
8544 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
8545
85462003-04-26 Paul Eggert <eggert@twinsun.com>
8547
8548 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
8549 Declare to be of type suitable for the ninf value itself, not of
8550 type suitable for the corresponding table, since the latter might
8551 be unsigned but the ninf value might be negative. This fixes a
8552 bug reported by Alexandre Duret-Lutz in
8553 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
8554
8555 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
8556 invokes it. We shouldn't invoke it twice because it will attempt
8557 to put error.o in the archive twice. This fixes a glitch reported
8558 by Martin Mokrejs in
8559 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
8560
85612003-04-21 Paul Eggert <eggert@twinsun.com>
8562
8563 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
8564 to gnulib.
8565
85662003-04-21 Yakov Markovitch <Markovitch@iso.ru>
8567
8568 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
8569 Fix obvious typo that results in uncompilable GLR parsers
8570 when both %pure-parser and %locations are used. (trivial change)
8571
85722003-04-17 Paul Eggert <eggert@twinsun.com>
8573
8574 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
8575 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
8576 Do not insert the expected token via unput, as this runs afoul
8577 of a POSIX-compatibility bug in flex 2.5.31.
8578 All uses changed to BEGIN the parent state,
8579 since we no longer insert the expected token via unput.
8580 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
8581 that is no longer emitted after the above change.
8582
8583 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
8584 the first one. This change is from Paul Hilfinger, and it fixes
8585 regression reported by Werner Lemberg in
8586 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
8587
8588 (resolve_sr_conflict): Don't invoke state_errs_set
8589 unless one or more tokens have been explicitly made errors.
8590 Otherwise, the above change causes Bison to abort.
8591
8592 * tests/existing.at (GNU pic Grammar): New test case, taken from
8593 Lemberg's email.
8594
85952003-03-31 Akim Demaille <akim@epita.fr>
8596
8597 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
8598
85992003-03-31 Akim Demaille <akim@epita.fr>
8600
8601 * src/output.c (prepare_symbols): Avoid trailing spaces in the
8602 output.
8603
86042003-03-31 Akim Demaille <akim@epita.fr>
8605
8606 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
8607 From Paul Hilfinger.
8608
86092003-03-29 Akim Demaille <akim@epita.fr>
8610
8611 * m4/error.m4: Do not put under dynamic conditions some code which
8612 expansion is under static control.
8613
86142003-03-29 Akim Demaille <akim@epita.fr>
8615
8616 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
8617
86182003-03-29 Akim Demaille <akim@epita.fr>
8619
8620 * doc/bison.texinfo (Strings are Destroyed): New.
8621
86222003-03-13 Paul Eggert <eggert@twinsun.com>
8623
8624 * .cvsignore: Add configure.lineno.
8625 * src/.cvsignore: Add yacc.
8626 * tests/.cvsignore: Add testsuite.log.
8627 * doc/fdl.texi: Sync with latest FSF version.
8628
86292003-03-12 Paul Eggert <eggert@twinsun.com>
8630
8631 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
8632 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
8633 cursor, instead of leaving it undefined. This fixes a bug
8634 reported by Tim Van Holder in
8635 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
8636 * tests/input.at (Torturing the Scanner): Test the scanner on
8637 an empty input file, which was Tim Van Holder's test case.
8638
8639 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
8640 <sys/resource.h> can be included, include sys/time.h and
8641 sys/times.h first, if available. This works around the SunOS
8642 4.1.4 porting bug reported by Bruce Becker in
8643 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
8644
8645 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
8646 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
8647 AC_HEADER_SYS_WAIT.
8648
8649 Merge changes from gnulib. This was prompted because the CVS
8650 snapshot didn't build on Solaris 7 due to strnlen problems.
8651
8652 These changes need to be merged back into gnulib:
8653 * lib/hash.c: Include <stdbool.h> unconditionally.
8654 * m4/onceonly.m4 (m4_quote): New macro.
8655 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
8656 Quote AC_FOREACH variable-expansions properly.
8657 The 2003-01-03 obstack.h change also needs merging.
8658 {end of changes requiring merging}
8659
8660 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
8661 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
8662 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
8663 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
8664 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
8665 New files, imported from gnulib.
8666 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
8667 above.
8668
8669 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
8670 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
8671 gnulib sources.
8672
8673 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
8674 Add.
8675 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
8676 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
8677 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
8678 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
8679 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
8680 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
8681 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
8682 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
8683 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
8684 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
8685 (jm_PREREQ_ARGMATCH): Remove.
8686 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
8687 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
8688
8689 * src/system.h: Include <stdbool.h> unconditionally.
8690
8691 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
8692 assuming at least C89 in the bitset code for some time now.
8693
86942003-03-03 Akim Demaille <akim@epita.fr>
8695
8696 * ro.po: New.
8697
86982003-03-02 Akim Demaille <akim@epita.fr>
8699
8700 * doc/bison.texinfo (Table of Symbols): Reactivate the
8701 documentation for %lex-param, and %parse-param.
8702
87032003-03-02 Akim Demaille <akim@epita.fr>
8704
8705 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
8706 generate verbose error messages.
8707 Use the number of tokens as an upper bound in yytname, as it
8708 cannot be a non terminal.
8709
87102003-03-02 Akim Demaille <akim@epita.fr>
8711
8712 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
8713 message.
8714
87152003-03-02 Akim Demaille <akim@epita.fr>
8716
8717 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
8718 Use them to exercise yycheck overrun.
8719 Based on Andrew Suffield's grammar.
8720
87212003-03-02 Akim Demaille <akim@epita.fr>
8722
8723 Create tests/local.at for Bison generic testing macros.
8724
8725 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
8726 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
8727 This new file.
8728 * tests/calc.at (AT_CHECK_CALC): Adjust.
8729 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
8730 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
8731 * tests/local.at: here.
8732 (AT_COMPILE_CXX): Tags the tests using it as c++.
8733 Ignore the test if CXX is not functional.
8734
87352003-03-01 Paul Eggert <eggert@twinsun.com>
8736
8737 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
8738 not loc->end, since loc->end might contain garbage and this leads
8739 to undefined behavior on some platforms.
8740 (id_loc, token_start): Use (IF_LINTed) initial values that do not
8741 depend on *loc, so that the reader doesn't give the the false
8742 impression that *loc is initialized.
8743 (<INITIAL>"%%"): Do not bother setting code_start, since its value
8744 does not survive the return.
8745
87462003-03-01 Akim Demaille <akim@epita.fr>
8747
8748 * src/scan-gram.l (code_start): Always initialize it when entering
8749 into yylex, as SC_EPILOGUE is activated *before* the corresponding
8750 yylex invocation. An alternative would be making it static, but
8751 then it starts with the second %%'s beginning, instead of its end.
8752
87532003-02-28 Paul Eggert <eggert@twinsun.com>
8754
8755 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
8756 around a UnixWare 7.1.1 porting bug reported by John Hughes in
8757 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
8758
87592003-02-26 Paul Eggert <eggert@twinsun.com>
8760
8761 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
8762 Remove Sequent/Pyramid discussion (nobody uses them any more).
8763 Merge VMS and MS-DOS discussion; these ports may well be dead
8764 but let's keep mentioning them for now. Put <> around email
8765 addresses. Add copyright notice.
8766
87672003-02-24 Paul Eggert <eggert@twinsun.com>
8768
8769 * data/glr.c (yy_reduce_print): yylineno -> yylno,
8770 to avoid collision with flex use of yylineno.
8771 Problem reported by Bruce Lilly in
8772 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
8773 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8774 * data/yacc.c (yy_reduce_print): Likewise.
8775
8776 * config/depcomp: Sync with Automake 1.7.3.
8777
87782003-02-21 Akim Demaille <akim@epita.fr>
8779
8780 * data/lalr1.cc: Use temporary variables instead of casts to
8781 change integer types.
8782 Suggested by Paul Eggert.
8783
87842003-02-21 Akim Demaille <akim@epita.fr>
8785
8786 * doc/bison.texinfo: Use "location" consistently to refer to @n,
8787 to avoid confusions with lalr1.cc's notion of Position.
8788 Suggested by Paul Eggert.
8789
87902003-02-20 Akim Demaille <akim@epita.fr>
8791
8792 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
8793 before initial_columns.
8794 (location.hh): Use consistent variable names when defining the
8795 operator<<.
8796 Use "last" so that we subtract from Positions, not from unsigned.
8797
87982003-02-20 Akim Demaille <akim@epita.fr>
8799
8800 * data/lalr1.cc (position.hh): New subfile, including the extended
8801 and Doxygen'ed documentation of class Position.
8802 (location.hh): Use it.
8803 Document a` la Doxygen.
8804 With the help of Benoit Perrot.
8805
88062003-02-20 Akim Demaille <akim@epita.fr>
8807
8808 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
8809 AT_YACC_IF.
8810 Redefine AT_YYERROR_SEES_LOC_IF using it.
8811 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
8812 not defined.
8813 Don't use the location in yy::Parser::error_ and
8814 yy::Parser::print_ when not %locations.
8815 Activate more lalr1.cc tests.
8816
88172003-02-19 Akim Demaille <akim@epita.fr>
8818
8819 * data/lalr1.cc: When displaying a line number, be sure to make it
8820 an int.
8821
88222003-02-19 Akim Demaille <akim@epita.fr>
8823
8824 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
8825 Remove, useless.
8826 (YYABORT, YYACCEPT, YYERROR): New.
8827 * tests/calc.at: Renable the lalr1.cc test.
8828
88292003-02-19 Akim Demaille <akim@epita.fr>
8830
8831 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
8832 error recovery, mixing with/without pops and discarding of the
8833 lookahead.
8834 Exercise YYERROR.
8835 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
8836
88372003-02-17 Paul Eggert <eggert@twinsun.com>
8838
8839 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
8840 * tests/testsuite.at (AT_COMPILE): Use them.
8841 This fixes the testsuite problem reported by Robert Lentz in
8842 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
8843
88442003-02-12 Paul Eggert <eggert@twinsun.com>
8845
8846 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
8847 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
8848 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
8849 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
8850 Check for malloc failure, for consistency with yacc.c.
8851 (yytname_size): Remove, for consistency with yacc.c.
8852
8853 The bug still remains in data/lalr1.cc, as I didn't have time
8854 to fix it there.
8855
88562003-02-06 Akim Demaille <akim@epita.fr>
8857
8858 * configure.ac (GXX): Rename as...
8859 (CXX): this, to keep the original Autoconf semantics.
8860 Require 2.57.
8861 * data/lalr1.cc: Fix b4_copyright invocations.
8862 If YYDEBUG is not defined, don't depend upon name_ being defined.
8863 (location.hh): Include string and iostream.
8864 (Position::filename): New member.
8865 (Position::Position ()): New.
8866 (operator<< (Position)): New.
8867 (operator- (Position, int)): New.
8868 (Location::first, Location::last): Rename as...
8869 (Location::begin, Location::end): these, to mock the conventional
8870 iterator names.
8871 (operator<< (Location)): New.
8872 * tests/atlocal.in (CXX): New.
8873 * tests/testsuite.at (AT_COMPILE_CXX): New.
8874 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
8875 locations in a more synthetic way.
8876 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
8877 lalr1.cc is used.
8878 Adjust the C locations to match those from Emacs: first column is
8879 column 0.
8880 Change all the expected results.
8881 Conform to the GCS: simplify the locations when applicable.
8882 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
8883 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
8884 these CPP macros with the m4 macros new defined by...
8885 (AT_CHECK_PUSHDEFS): this, i.e.:
8886 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
8887 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
8888 New macros.
8889 (AT_CHECK_POPDEFS): Undefine them.
8890 (AT_CHECK_CALC_LALR1_CC): New.
8891 Use it for the first lalr1.cc test.
8892
88932003-02-04 Akim Demaille <akim@epita.fr>
8894
8895 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
8896 Location as is defined.
8897
88982003-02-04 Akim Demaille <akim@epita.fr>
8899
8900 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
8901 name_ being defined.
8902
89032003-02-03 Paul Eggert <eggert@twinsun.com>
8904
8905 * src/gram.h (start_symbol): Remove unused decl.
8906
8907 Use more-consistent naming conventions for local vars.
8908
8909 * src/derives.c (derives_compute): Change type of local var from
8910 int to rule_number.
8911 * src/gram.c (grammar_rules_partial_print): Likewise.
8912 * src/print.c (print_core): Likewise.
8913 * src/reduce.c (reduce_grammar_tables): Likewise.
8914
8915 * src/gram.c (grammar_dump): Change name of item_number *
8916 local var from r to rp.
8917 * src/nullable.c (nullable_compute): Likewise.
8918
8919 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
8920
8921 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
8922 for symbol or symbol_number var.
8923 * src/reader.c (grammar_start_symbol_set): Likewise.
8924 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
8925 Likewise.
8926 * src/state.c (transitions_to): Likewise.
8927 * src/state.h: Likewise.
8928 * src/tables.c (symbol_number_to_vector_number): Likewise.
8929
8930 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
8931 char * var.
8932
8933 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
8934 var.
8935
8936 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
8937 var.
8938
8939 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
8940 Use str, not s, for char * var. Use ch, not c, for character var.
8941 Use size for size var.
8942
8943 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
8944 char * var.
8945 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
8946 uniqstr var.
8947 * src/uniqstr.h: Likewise.
8948
8949 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
8950 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
8951 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
8952 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
8953 param to have same name as that of enum, so that we don't use
8954 "s" to stand for a non-state.
8955
89562003-02-02 Akim Demaille <akim@epita.fr>
8957
8958 * src/scan-skel.l: Scan more than one inert character per yylex
8959 invocation.
8960
89612003-02-01 Paul Eggert <eggert@twinsun.com>
8962
8963 Version 1.875a.
8964
8965 * po/LINGUAS: Add ms.
8966
89672003-01-30 Akim Demaille <akim@epita.fr>
8968
8969 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
8970
89712003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8972
8973 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
8974 of $1.
8975
8976 Changes in response to error report by S. Eken: GLR mode does not
8977 handle negative $ indices or $ indices in embedded rules correctly.
8978 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
8979
8980 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
8981 (b4_rhs_location): Ditto.
8982 (yyfill): New function to copy from stack tree into array
8983 incrementally.
8984 (yyuserAction): Modify to allow incremental move of semantic values
8985 to rhs array when in GLR mode.
8986 Define YYFILL to use in user-defined actions to fill semantic array
8987 as needed.
8988 Remove dummy use of yystack, as there is now a guaranteed use.
8989 (yydoAction): Modify to allow incremental move of semantic values
8990 to rhs array when in GLR mode.
8991 (yyresolveAction): Ditto.
8992 (yyglrShiftDefer): Update comment.
8993 (yyresolveStates): Use X == NULL for pointers, not !X.
8994 (yyglrReduce): Ditto.
8995 (yydoAction): Ditto
8996
8997 * tests/glr-regr1.at: Rename to ...
8998 * tests/glr-regression.at: Add new regression test for the problems
8999 described above (adapted from S. Eken).
9000 Update copyright notice.
9001 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
9002 * tests/Makefile.am: Ditto.
9003
90042003-01-28 Paul Eggert <eggert@twinsun.com>
9005
9006 * data/lalr1.cc: Do not use @output_header_name@ unless
9007 b4_defines_flag is set. This fixes two bugs reported by
9008 Tim Van Holder in
9009 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
9010 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
9011
90122003-01-21 Paul Eggert <eggert@twinsun.com>
9013
9014 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
9015 we don't need to worry about yyerrlab1 being reported as an
9016 "unused label" by non-GCC C compilers. The downside is that if
9017 locations are used then a couple of statements are duplicated each
9018 time YYERROR is invoked, but the upside is that the warnings
9019 should vanish.
9020 (yyerrlab1): Move code to YERROR.
9021 (yyerrlab2): Remove. Change uses back to yyerrlab1.
9022 This reverts some of the 2002-12-27 change.
9023
90242003-01-17 Paul Eggert <eggert@twinsun.com>
9025
9026 * src/output.c (symbol_printers_output): Fix typo that led
9027 to core dump. Problem reported by Antonio Rus in
9028 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
9029
90302003-01-13 Akim Demaille <akim@epita.fr>,
9031 Quoc Peyrot <chojin@lrde.epita.fr>,
9032 Robert Anisko <anisko_r@lrde.epita.fr>
9033
9034 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
9035 when the stacks contain one element, as the loop would otherwise
9036 free the last state, and then use the top state (the one we just
9037 popped). This means that the initial elements will not be freed
9038 explicitly, as is the case in yacc.c; it is not a problem, as
9039 these elements have fake values.
9040
90412003-01-11 Paul Eggert <eggert@twinsun.com>
9042
9043 * NEWS: %expect-violations are now just warnings, reverting
9044 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
9045 bootstrapping problem reported by Matthias Klose; see
9046 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
9047 * src/conflicts.c (conflicts_print): Likewise.
9048 * tests/conflicts.at (%expect not enough, %expect too much,
9049 %expect with reduce conflicts): Likewise.
9050 * doc/bison.texinfo (Expect Decl): Document this. Also mention
9051 that the warning is enabled if the number of conflicts changes
9052 (not necessarily increases).
9053
9054 * src/getargs.c (version): Update copyright year.
9055
90562003-01-09 Akim Demaille <akim@epita.fr>
9057
9058 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
9059
90602003-01-08 Paul Eggert <eggert@twinsun.com>
9061
9062 * Makefile.maint (WGETFLAGS):
9063 New macro, containing "-C off" to disable proxy caches.
9064 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
9065 (rel-check): Use $(WGET) instead of wget.
9066
90672003-01-06 Paul Eggert <eggert@twinsun.com>
9068
9069 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
9070 the GLR paper of Scott, Johnstone and Hussain.
9071
90722003-01-04 Paul Eggert <eggert@twinsun.com>
9073
9074 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
9075 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
9076 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
9077 (EXTRA_LIBRARIES): New var, for liby.a.
9078 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
9079 (EXTRA_SCRIPTS): New var, for yacc.
9080
9081 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
9082 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
9083 Problem reported by Nelson H. F. Beebe.
9084
90852003-01-03 Paul Eggert <eggert@twinsun.com>
9086
9087 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
9088 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
9089 when compiling Bison 1.875's `bitset bset = obstack_alloc
9090 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
9091
9092 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
9093 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
9094 grow to a huge size with typical invocation.
9095
9096 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
9097 Use the pattern recommended by Autoconf 2.57, except also protect
9098 against double-definition.
9099 * src/system.h: Likewise.
9100 Portability issues reported by Nelson H. F. Beebe.
9101
9102 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
9103 All uses changed. Provide a definition in both C and C++.
9104 (yytrue, yyfalse): Define even if defined (__cplusplus).
9105
9106 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
9107 Reported by Nelson H. F. Beebe.
9108
9109 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
9110
91112003-01-02 Paul Eggert <eggert@twinsun.com>
9112
9113 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
9114 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
9115 Bug reported by Nelson H. F. Beebe.
9116
91172003-01-01 Paul Eggert <eggert@twinsun.com>
9118
9119 * Version 1.875.
9120
91212002-12-30 Paul Eggert <eggert@twinsun.com>
9122
9123 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
9124 Moved here from...
9125 (<INITIAL>","): Here. This causes stray "," to be treated
9126 more uniformly.
9127
9128 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
9129 last brace in braced code when not in Yacc mode, for compatibility
9130 with Bison 1.35. This resurrects the 2001-12-15 patch to
9131 src/reader.c.
9132
9133 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
9134 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
9135
91362002-12-28 Paul Eggert <eggert@twinsun.com>
9137
9138 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
9139 that of SYM's type. This fixes Debian bug 168069, reported by
9140 Thomas Olsson.
9141
91422002-12-28 Paul Eggert <eggert@twinsun.com>
9143
9144 Version 1.75f.
9145
9146 Switch back to the Yacc style of conflict reports, undoing some
9147 of the 2002-07-30 change.
9148 * doc/bison.texinfo (Understanding): Use Yacc style for
9149 conflict reports. Also, use new way of locating rules.
9150 * src/conflicts.c (conflict_report):
9151 Renamed from conflict_report_yacc, removing the old
9152 'conflict_report'. Translate the entire conflict report at once,
9153 so that we don't assume that "," has the same interpretation in
9154 all languages.
9155 (conflicts_output): Use Yacc-style conflict report for each state,
9156 instead of our more-complicated style.
9157 (conflicts_print): Use Yacc-style conflict report, except print
9158 the input file name when not emulating Yacc.
9159 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
9160 Conflicted Reduction, %expect not enough, %expect too much,
9161 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
9162 * tests/existing.at (GNU Cim Grammar): Likewise.
9163 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
9164
9165 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
9166 fatal): Don't invoke fflush; it's not needed and it might even be
9167 harmful for stdout, as stdout might not be open.
9168 * src/reduce.c (reduce_print): Likewise.
9169
91702002-12-27 Paul Eggert <eggert@twinsun.com>
9171
9172 Fix a bug where error locations were not being recorded correctly.
9173 This problem was originally reported by Paul Hilfinger in
9174 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
9175
9176 * data/yacc.c (yyparse): New local var yylerrsp, to record the
9177 top of the location stack's error locations.
9178 (yyerrlab): Set it. When discarding a token, push its location
9179 onto yylerrsp so that we don't lose track of the error's end.
9180 (yyerrlab1): Now is only the target of YYERROR, so that we can
9181 properly record the location of the action that failed. For GCC
9182 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
9183 GCC warning about yyerrlab1 being unused if YYERROR is unused.
9184 (yyerrlab2): New label, which yyerrlab now falls through to.
9185 Compute the error's location by applying YYLLOC_DEFAULT to
9186 the locations of all the symbols that went into the error.
9187 * doc/bison.texinfo (Location Default Action): Mention that
9188 YYLLOC_DEFAULT is also invoked for syntax errors.
9189 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9190 Error locations include the locations of all the tokens that were
9191 discarded, not just the last token.
9192
91932002-12-26 Paul Eggert <eggert@twinsun.com>
9194
9195 * src/files.c: Include quote.h.
9196 (compute_output_file_names): Warn if we detect conflicting
9197 outputs to the same file. This should catch the misunderstanding
9198 exemplified by Debian Bug 165349, reported by Bruce Stephens..
9199
9200 * src/conflicts.c (conflicts_print): If the user specifies
9201 "%expect N", report an error if there are any reduce/reduce
9202 conflicts. This is what the manual says should happen.
9203 This fixes Debian bug 130890, reported by Anthony DeRobertis.
9204 * tests/conflicts.at (%expect with reduce conflicts): New test.
9205
9206 Don't use m4_include on relative file names, as it doesn't work as
9207 desired if there happens to be a file with that name under ".".
9208
9209 * m4sugar/version.m4: Remove; it was included but it wasn't used.
9210 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
9211 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
9212 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
9213 * src/output.c (output_skeleton): Use full path names when
9214 specifying a file to include; don't rely on include path, as
9215 it's unreliable when the working file contains a file with
9216 that name.
9217
92182002-12-25 Paul Eggert <eggert@twinsun.com>
9219
9220 Remove obsolete references to bison.simple and bison.hairy.
9221 Problem mentioned by Aubin Mahe in
9222 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
9223 * data/glr.c: Comment fix.
9224 * doc/bison.1: Remove references. Also, mention "yacc".
9225
9226 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
9227 with -g option.
9228
9229 * src/parse-gram.y (declaration): Use enum "report_states" rather
9230 than its numeric value 1.
9231
9232 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
9233 opening a new one. This fixes Debian bug 165349, reported by
9234 Bruce Stephens.
9235
92362002-12-24 Paul Eggert <eggert@twinsun.com>
9237
9238 Version 1.75e.
9239
9240 * Makefile.maint (cvs-update): Don't assume that the shell
9241 supports $(...), as Solaris sh doesn't.
9242
9243 * src/parse-gram.y (lloc_default): Remove test for empty
9244 nonterminals at the end, since it didn't change the result.
9245
92462002-12-24 Paul Eggert <eggert@twinsun.com>
9247
9248 If the user does not define YYSTYPE as a macro, Bison now declares it
9249 using typedef instead of defining it as a macro. POSIX requires this.
9250 For consistency, YYLTYPE is also declared instead of defined.
9251
9252 %union directives can now have a tag before the `{', e.g., the
9253 directive `%union foo {...}' now generates the C code
9254 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
9255 The default union tag is `YYSTYPE', for compatibility with Solaris 9
9256 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
9257 instead of `yyltype'.
9258
9259 `yystype' and `yyltype' are now obsolescent macros instead of being
9260 typedefs or tags; they are no longer documented and will be
9261 withdrawn in a future release.
9262
9263 * data/glr.c (b4_location_type): Remove.
9264 (YYSTYPE): Renamed from yystype.
9265 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
9266 (struct YYLTYPE): Renamed from struct yyltype.
9267 (YYLTYPE): Renamed from yyltype.
9268 (yyltype, yystype): New (and obsolescent) macros,
9269 for backward compatibility.
9270 * data/yacc.c: Likewise.
9271
9272 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
9273 does not specify a union tag. This is for compatibility with
9274 Solaris 9 yacc.
9275
9276 * src/parse-gram.y (add_param): 2nd arg is now char * not char
9277 const *, since it is now modified by stripping surrounding { }.
9278 (current_braced_code): Remove.
9279 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
9280 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
9281 trailing " {...}". Now of type <chars>.
9282 (grammar_declaration): Adjust to bundled tokens.
9283 (code_content): Remove; stripping is now done by add_param.
9284 (print_token_value): Print contents of bundled tokens.
9285 (token_name): New function.
9286
9287 * src/reader.h (braced_code, current_braced_code): Remove.
9288 (token_name): New decl.
9289
9290 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
9291 token_type, not braced_code code_kind. All uses changed.
9292 (SC_PRE_CODE): New state, for scanning after a keyword that
9293 has (or usually has) an immediately-following braced code.
9294 (token_type): New local var, to keep track of which token type
9295 to return when scanning braced code.
9296 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
9297 <INITIAL>"%parse-param", <INITIAL>"%printer",
9298 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
9299 instead of returning a token type immediately.
9300 (<INITIAL>"{"): Set token type.
9301 (<SC_BRACED_CODE>"}"): Use it.
9302 (handle_action_dollar, handle_action_at): Now returns bool
9303 indicating success. Fail if ! current_rule; this prevents a core dump.
9304 (handle_symbol_code_dollar, handle_symbol_code_at):
9305 Remove; merge body into caller.
9306 (handle_dollar, handle_at): Complain in invalid contexts.
9307
9308 * NEWS, doc/bison.texinfo: Document the above.
9309 * NEWS: Fix years and program names in copyright notice.
9310
93112002-12-17 Paul Eggert <eggert@twinsun.com>
9312
9313 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
9314 Reporting, Table of Symbols): Omit mentions of %lex-param and
9315 %parse-param from the documentation for now.
9316
93172002-12-15 Paul Eggert <eggert@twinsun.com>
9318
9319 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
9320 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
9321 lookahead symbol, and which sets yychar in parser actions) and it
9322 disagreed with the Bison documentation. Bug
9323 reported by Andrew Walrond.
9324
9325 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
9326 as the caller now does that.
9327 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
9328 (YYEMPTY): Parenthesize right hand side, since others use it.
9329 (yyparse): Don't assume that our generated code is the only code
9330 that sets yychar.
9331
93322002-12-13 Paul Eggert <eggert@twinsun.com>
9333
9334 Version 1.75d.
9335
9336 POSIX requires a "yacc" command.
9337 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
9338 (MOSTLYCLEANFILES): Add yacc.
9339 (yacc): New rule.
9340 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
9341 as an alias for bison y.
9342
9343 * po/LINGUAS: Add da.
9344
9345 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
9346 problem with latest <getopt.h>.
9347 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
9348
9349 * doc/fdl.texi: Upgrade to 1.2.
9350 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
9351 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
9352 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
9353 gnulib.
9354 * config/install-sh: Sync with autotools.
9355
9356 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
9357 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
9358 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
9359 locations are requested.
9360 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
9361 locations are requested.
9362
93632002-12-12 Paul Eggert <eggert@twinsun.com>
9364
9365 Remove unportable casts and storage allocation tricks.
9366 While we're at it, remove almost all casts, since they
9367 usually aren't needed and are a sign of trouble.
9368
9369 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
9370
9371 * src/derives.c (derives_compute): Do not subtract NTOKENS from
9372 the pointer DSET returned by malloc; this isn't portable.
9373 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
9374 Similarly for DERIVES.
9375 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
9376 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
9377 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
9378
9379 * src/derives.c (derives_compute): Do not bother invoking
9380 int_of_rule_number, since rule numbers are integers.
9381
9382 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
9383 rather than XMALLOC (char, N).
9384
9385 * src/files.c (filename_split): Rewrite to avoid cast.
9386
9387 * src/gram.h (symbol_number_as_item_number,
9388 item_number_as_symbol_number, rule_number_as_item_number,
9389 item_number_as_rule_number):
9390 Now inline functions rather than macros, to avoid casts.
9391 * src/state.h (state_number_as_int): Likewise.
9392 * src/tables.c (state_number_to_vector_number,
9393 symbol_number_to_vector_number): Likewise.
9394
9395 * src/gram.h (int_of_rule_number): Remove; no longer used.
9396
9397 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
9398 since the resulting storage is always stored into.
9399
9400 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
9401 where it's needed.
9402
9403 * src/muscle_tab.c (muscle_m4_output):
9404 Now inline. Return bool, not int.
9405 * src/state.c (state_compare): Likewise.
9406 * src/symtab.c (symbol_check_defined,
9407 symbol_check_alias_consistency, symbol_pack, symbol_translation,
9408 hash_compare_symbol, hash_symbol):
9409 Likewise.
9410 * src/uniqstr.c (uniqstr_print): Likewise.
9411 * src/muscle_tab.c (muscle_m4_output_processor):
9412 New function, to avoid casts.
9413 * src/state.c (state_comparator, stage_hasher): Likewise.
9414 * src/symtab.c (symbol_check_defined_processor,
9415 symbol_check_alias_consistency_processor, symbol_pack_processor,
9416 symbol_translation_processor, hash_symbol_comparator,
9417 hash_symbol_hasher): Likewise.
9418 * src/uniqstr.c (uniqstr_print_processor): Likewise.
9419 * src/muscle_tab.c (muscles_m4_output):
9420 Use new functions instead of casting old functions unportably.
9421 * src/state.c (state_hash_new): Likewise.
9422 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
9423 symbols_token_translations_init):
9424 Likewise.
9425 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
9426
9427 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
9428 var instead of casting to long, to avoid casts.
9429 (prepare_states): Use MALLOC rather than alloca, so that we don't
9430 have to worry about alloca.
9431 * src/state.c (state_hash_lookup): Likewise.
9432
9433 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
9434 local var instead of casting to unsigned char, to avoid casts.
9435
9436 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
9437 STATE_ALLOC): Remove.
9438 (transitions_new, errs_new, reductions_new, state_new): Use malloc
9439 rather than calloc, and use offsetof to avoid allocating slightly
9440 too much storage.
9441 (state_new): Initialize all members.
9442
9443 * src/state.c (state_hash): Use unsigned accumulator, not signed.
9444
9445 * src/symtab.c (symbol_free): Remove; unused.
9446 (symbol_get): Remove cast in lhs of assignment.
9447 (symbols_do): Now static. Accept generic arguments, not
9448 hashing-related ones.
9449
9450 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
9451 (symbol_processor): Remove.
9452 (symbols_do): Remove decl; now static.
9453
9454 * src/system.h (alloca): Remove; decl no longer needed.
9455 (<stddef.h>): Include, for offsetof.
9456 (<inttypes.>, <stdint.h>): Include if available.
9457 (uintptr_t): New type, if system lacks it.
9458 (CALLOC, MALLOC, REALLOC): New macros.
9459 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
9460 new macros.
9461
9462 * src/tables.c (table_size): Now int, to pacify GCC.
9463 (table_grow, table_ninf_remap): Use signed table size.
9464 (save_row): Don't bother initializing locals when not needed.
9465 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
9466 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
9467
9468 * src/vcg.h: Correct misspellings.
9469
9470 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
9471
9472
9473 * src/getargs.c (getargs): Don't assume EOF == -1.
9474
94752002-12-09 Paul Eggert <eggert@twinsun.com>
9476
9477 Change identifier spellings to avoid collisions with names
9478 that are reserved by POSIX.
9479
9480 Don't use names ending in _t, since POSIX reserves them.
9481 For consistency, remove _e and _s endings -- they're weren't
9482 needed to remove ambiguity. All uses changed.
9483 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
9484 turn was just renamed from struniq_t.
9485 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
9486 which in turn was just renamed from struniq_processor_t.
9487 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
9488 in turn was renamed from hash_compare_struniq_t.
9489 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
9490 (state_list): Renamed from state_list_t.
9491 * src/assoc.h (assoc): Renamed from assoc_t.
9492 * src/conflicts.c (enum conflict_resolution): Renamed from
9493 enum conflict_resolution_e.
9494 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
9495 (rule_list): Renamed from rule_list_t.
9496 * src/getargs.h (enum trace): Renamed from enum trace_e.
9497 (enum report): Renamed from enum report_e.
9498 * src/gram.h (item_number): Renamed from item_number_t.
9499 (rule_number): Renamed from rule_number_t.
9500 (struct rule_s): Remove the "rule_s" part; not used.
9501 (rule): Renamed from rule_t.
9502 (rule_filter): Renamed from rule_filter_t.
9503 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
9504 (goto_list): Renamed from goto_list_t.
9505 * src/lalr.h (goto_number): Renamed from goto_number_t.
9506 * src/location.h (location): Renamed from location_t.
9507 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
9508 and moved here from:
9509 * src/muscle_tab.h (muscle_entry_t): here.
9510 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
9511 (rule_list): Renamed from rule_list_t.
9512 * src/print_graph.c (static_graph): Renamed from graph.
9513 * src/reader.h (braced_code): Renamed from braced_code_t.
9514 Remove brace_code_e tag.
9515 * src/relation.h (relation_node): Renamed from relation_node_t.
9516 (relation_nodes): Renamed from relation_nodes_t.
9517 (relation): Renamed from relation_t.
9518 * src/state.h (state_number): Renamed from state_number_t.
9519 (struct state): Renamed from struct state_s.
9520 (state): Renamed from state_t.
9521 (transitions): Renamed from transitions_t. Unused (and
9522 misspelled) transtion_s tag removed.
9523 (errs): Renamed from errs_t. Unused errs_s tag removed.
9524 (reductions): Renamed from reductions_t. Unused tag
9525 reductions_s removed.
9526 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
9527 (struct symbol_list): Renamed from struct symbol_list_s.
9528 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
9529 (struct symbol): Renamed from struct symbol_s.
9530 (symbol): Renamed from symbol_t.
9531 * src/tables.c (vector_number): Renamed from vector_number_t.
9532 (action_number): Renamed from action_t.
9533 * src/tables.h (base_number): Renamed from base_t.
9534 * src/vcg.h (enum color): Renamed from enum color_e.
9535 (enum textmode): Renamed from enum textmode_e.
9536 (enum shape): Renamed from enum shape_e.
9537 (struct colorentry): Renamed from struct colorentry_s.
9538 (struct classname): Renamed from struct classname_s.
9539 (struct infoname): Renamed from struct infoname_s.
9540 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
9541 (enum decision): Renamed from enum decision_e.
9542 (enum orientation): Renamed from enum orientation_e.
9543 (enum alignment): Renamed from enum alignment_e.
9544 (enum arrow_mode): Renamed from enum arrow_mode_e.
9545 (enum crossing_type): Renamed from enum crossing_type_e.
9546 (enum view): Renamed from enum view_e.
9547 (struct node): Renamed from struct node_s.
9548 (node): Renamed from node_t.
9549 (enum linestyle): Renamed from enum linestyle_e.
9550 (enum arrowstyle): Renamed from enum arrowstyle_e.
9551 (struct edge): Renamed from struct edge.
9552 (edge): Renamed from edge_t.
9553 (struct graph): Renamed from struct graph_s.
9554 (graph): Renamed from graph_t.
9555 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
9556 Rename value_t -> value.
9557 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
9558 value_t_as_yystype -> value_as_yystype.
9559
9560 Don't include <errno.h> in the mainstream code, since it
9561 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
9562 * lib/get-errno.c, lib/get-errno.h: New files.
9563 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
9564 get-errno.c.
9565 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
9566 * src/output.c (output_skeleton): Likewise.
9567 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
9568 instead of errno.
9569 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
9570 Likewise.
9571 (handle_action_dollar, handle_action_at): Likewise.
9572 * src/system.h: Do not include <errno.h>.
9573 (TAB_EXT): Renamed from EXT_TAB.
9574 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
9575
9576 Avoid str[a-z]*, since <string.h> reserves that name space.
9577 Change all instances of "struniq" in names to "uniqstr", and
9578 likewise for "STRUNIQ" and "UNIQSTR".
9579 * src/uniqstr.c: Renamed from src/struniq.c.
9580 * src/uniqstr.h: Renamed from src/struniq.h.
9581 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
9582 * src/files.c (strsuffix): Remove; unused.
9583 (concat2): Renamed from stringappend. Now static.
9584 * src/files.h (strsuffix, stringappend): Remove; unused.
9585 * src/parse-gram.y (<chars>): Renamed from <string>.
9586 (<uniqstr>): Renamed from <struniq>.
9587 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
9588 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
9589 (struct graph_s.expand): Renamed from struct graph_s.stretch.
9590 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
9591 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
9592 (N_EXPAND): Renamed from N_STRETCH.
9593
9594 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
9595 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
9596 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
9597 Remove; unused.
9598 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
9599 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
9600 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
9601 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
9602 (BASE_MAXIMUM): Renamed from BASE_MAX.
9603 (BASE_MINIMUM): Renamed from BASE_MIN.
9604 (ACTION_MAX): Remove; unused.
9605 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
9606 Unnecessary casts removed from above defines.
9607
9608
9609 Fix misspelling in names.
9610 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
9611 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
9612 G_NODE_ALIGNEMENT.
9613
9614
9615 * lib/timevar.c (timevar_report): Renamed from time_report,
9616 for consistency with other names.
9617 * lib/timevar.h (timevar_report): New decl.
9618 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
9619
9620
9621 Sort include-file uses.
9622
9623 Reorder all include files under src to be in the order "system.h".
9624 then the ../lib include files in angle brackets (alphabetized),
9625 then the . include files in double-quotes (alphabetized). Fix
9626 dependency breakages encountered in this process, as follows:
9627 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
9628 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
9629 * src/state.h: Include "symtab.h".
9630
96312002-12-08 Paul Eggert <eggert@twinsun.com>
9632
9633 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
9634 since this causes problems when __file__ contains character
9635 sequences like "@" that are treated specially by src/scan-skel.l.
9636 Instead, just use the file's basename. This fixes the bug
9637 reported by Martin Mokrejs in
9638 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
9639
96402002-12-06 Paul Eggert <eggert@twinsun.com>
9641
9642 Add support for rules that do not have trailing semicolons, as
9643 POSIX requires. Improve the quality of locations in Bison
9644 diagnostics.
9645
9646 * src/location.c: Include <quotearg.h>.
9647 (empty_location): Now const.
9648 (location_print): New function. Follow the recommendation of the
9649 GNU Coding Standards for locations that span file boundaries.
9650 * src/location.h: Do not include <quotearg.h>; no longer needed.
9651 (boundary): New type.
9652 (location_t): Use it. This allows locations to span file boundaries.
9653 All member uses changed: file -> start.file or end.file (as needed),
9654 first_line -> start.line, first_column -> start.column,
9655 last_line -> end.line, last_column -> end.column.
9656 (equal_boundaries): New function.
9657 (LOCATION_RESET, LOCATION_STEP): Remove.
9658 (LOCATION_PRINT): Remove. All callers changed to use location_print.
9659 (empty_location): Now const.
9660 (location_print): New decl.
9661 * src/parse-gram.y (lloc_default): New function, which handles
9662 empty locations more accurately.
9663 (YYLLOC_DEFAULT): Use it.
9664 (%token COLON): Remove.
9665 (%token ID_COLON): New token.
9666 (rules): Use it.
9667 (declarations, rules): Remove trailing semicolon.
9668 (declaration, rules_or_grammar_declaration):
9669 Allow empty (";") declaration.
9670 (symbol_def): Remove empty actions; no longer needed.
9671 (rules_or_grammar_declaration): Remove trailing semicolon.
9672 (semi_colon.opt): Remove.
9673 * src/reader.h: Include location.h.
9674 (scanner_cursor): New decl.
9675 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
9676 rolling our own.
9677 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
9678 of *loc.
9679 (STEP): Remove. No longer needed, now that adjust_location does
9680 the work. All uses removed.
9681 (scanner_cursor): New var.
9682 (adjust_location): Renamed from extend_location. It now sets
9683 *loc and adjusts the scanner cursor. All uses changed.
9684 Don't bother testing for CR.
9685 (handle_syncline): Remove location arg; now updates scanner cursor.
9686 All callers changed.
9687 (unexpected_end_of_file): Now accepts start boundary of token or
9688 comment, not location. All callers changed. Update scanner cursor,
9689 not the location.
9690 (SC_AFTER_IDENTIFIER): New state.
9691 (context_state): Renamed from c_context. All uses changed.
9692 (id_loc, code_start, token_start): New local vars.
9693 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
9694 processing of Yacc white space and equivalents here.
9695 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
9696 instead of returning ID immediately, since we need to search for
9697 a subsequent colon.
9698 (<INITIAL>"'", "\""): Save token_start.
9699 (<INITIAL>"%{", "{", "%%"): Save code_start.
9700 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
9701 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
9702 BEGIN context_state at end, not INITIAL.
9703 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
9704 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
9705 Return correct token start.
9706 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
9707 the start of a character, string or multiline comment is found.
9708 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
9709 Reduction): Adjust reported locations to match the more-precise
9710 results now expected.
9711 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
9712 * tests/reduce.at (Useless Rules, Reduced Automaton,
9713 Underivable Rules): Likewise.
9714 * tests/regression.at (Invalid inputs): No longer `expecting ";"
9715 or "|"' now that so many other tokens are allowed by the new grammar.
9716
9717 * src/complain.h (current_file): Remove duplicate decl;
9718 current_file is now owned by files.h.
9719 * src/complain.c, src/scan-gram.l: Include files.h.
9720
97212002-12-06 Paul Eggert <eggert@twinsun.com>
9722
9723 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
9724 promotes to int; it might be unsigned int.
9725 * data/yacc.c (yy_reduce_print): Likewise.
9726
9727 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
9728 be #defined in the prologue, not in the Bison declarations.
9729 This fixes Debian Bug 102878, reported by Shaul Karl.
9730
97312002-12-02 Paul Eggert <eggert@twinsun.com>
9732
9733 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
9734 * lib/strtoul.c: New file, from gnulib.
9735 This fixes a porting bug reported by Peter Klein in
9736 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
9737
97382002-11-30 Paul Eggert <eggert@twinsun.com>
9739
9740 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
9741 and put only a forward declaration in the prologue. This is for
9742 consistency with the other scanner helper functions.
9743
9744 Type clashes now generate warnings, not errors, since it
9745 appears that POSIX may allow some grammars with type clashes.
9746 * src/reader.c (grammar_current_rule_check): Warn about
9747 type clashes instead of complaining.
9748 * tests/input.at (Type Clashes): Expect warnings, not complaints.
9749
9750 Add Yacc library, since POSIX requires it.
9751 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
9752 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
9753 * lib/main.c, lib/yyerror.c: New files.
9754
9755 gram_error can be static; it need not be extern.
9756 * src/reader.h (gram_error): Remove decl.
9757 * src/parse-gram.y (gram_error): Now static. Add static decl.
9758 (print_token_value): Omit parameter names from forward decl,
9759 for consistency.
9760
97612002-11-29 Paul Eggert <eggert@twinsun.com>
9762
9763 * doc/bison.texinfo: Emphasize that yylex and yyerror must
9764 be declared before being used. E.g., one should typically
9765 declare them in the prologue. Use GNU coding style in examples.
9766 Put "const" consistently after the type it modifies. Mention
9767 that C99 supports "inline". Mention that yyerror traditionally
9768 returns "int".
9769
9770 %parse-param and %lex-param now take just one argument, the
9771 declaration; the argument name is deduced from the declaration.
9772
9773 * doc/bison.texinfo (Parser Function, Pure Calling, Error
9774 Reporting, Table of Symbols): Document this.
9775 * src/parse-gram.y (add_param): New function.
9776 (COMMA): Remove.
9777 (declaration): Implement new rule for %parse-param and %lex-param.
9778 * src/scan-gram.l: "," now elicits a warning, rather than being
9779 a token; this is more compatible with byacc.
9780 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
9781
97822002-11-27 Paul Eggert <eggert@twinsun.com>
9783
9784 Rename identifiers to avoid real and potential collisions.
9785
9786 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
9787 to avoid collision with lex macro described by Bruce Lilly in
9788 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
9789 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9790 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
9791 * src/parse-gram.y (print_token_value): Renamed from yyprint.
9792 All uses changed.
9793 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
9794 The name "yycontrol" violates the name space rules, and this stuff
9795 wasn't being used anyway.
9796 (input): Remove action; this stuff wasn't being used.
9797 (gram_error): Rename local variable yylloc -> loc.
9798 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
9799 (YY_DECL): Don't use "yy" at start of local variables.
9800 All uses changed, e.g., yylloc -> loc.
9801 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
9802 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
9803 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
9804 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
9805
9806 * src/parse-gram.y (gram_error): loc is now const *.
9807 * src/reader.h (gram_error): Likewise.
9808
98092002-11-24 Paul Eggert <eggert@twinsun.com>
9810
9811 Version 1.75c.
9812
9813 * tests/actions.at (Actions after errors): Use an output format
9814 more similar to that of the Printers and Destructors test.
9815 Test the position of the ';' token too.
9816 (Printers and Destructors): Likewise.
9817 (Printers and Destructors: %glr-parser): Remove for now, to avoid
9818 unnecessarily alarming people when the test fails.
9819
9820 * data/yacc.c (yyerrlab1): Move this label down, so that the
9821 parser does not discard the lookahead token if the user code
9822 invokes YYERROR. This change is required for POSIX conformance.
9823
9824 * lib/error.c: Sync with gnulib.
9825
98262002-11-22 Paul Eggert <eggert@twinsun.com>
9827
9828 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
9829 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
9830 * lib/xmalloc.c: Likewise.
9831
98322002-11-20 Paul Eggert <eggert@twinsun.com>
9833
9834 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
9835
98362002-11-20 Paul Eggert <eggert@twinsun.com>
9837
9838 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
9839 should use `if (! x) abort ();' rather than `assert (x);', and
9840 anyway it's one less thing to worry about configuring.
9841
9842 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
9843 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
9844 and replace all instances of assert with abort.
9845 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9846 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
9847
9848 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
9849 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
9850 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
9851 hash_find_entry, hash_rehash, hash_insert): Likewise.
9852 * src/conflicts.c (resolve_sr_conflict): Likewise.
9853 * src/lalr.c (set_goto_map, map_goto): Likewise.
9854 * src/nullable.c (nullable_compute): Likewise.
9855 * src/output.c (prepare_rules, token_definitions_output): Likewise.
9856 * src/reader.c (packgram, reader): Likewise.
9857 * src/state.c (state_new, state_free, state_transitions_set,
9858 state_reduction_find): Likewise.
9859 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
9860 symbol_pack): Likewise.
9861 * src/tables.c (conflict_row, pack_vector): Likewise.
9862 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
9863 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
9864 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
9865 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
9866
9867 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
9868 (ARGMATCH_CONSTRAINT): New macro.
9869 (ARGMATCH_ASSERT): Use it.
9870
9871 * src/system.h (verify): New macro.
9872 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
9873 rather than assert.
9874 * src/tables.c (tables_generate): Likewise.
9875
9876 * src/struniq.c (struniq_assert): Now returns void, and aborts
9877 if the assertion is false.
9878 (struniq_assert_p): Remove.
9879 * src/struniq.h: Likewise.
9880
98812002-11-18 Paul Eggert <eggert@twinsun.com>
9882
9883 * data/glr.c (yygetLRActions): Replace `yyindex' with
9884 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
9885 This fixes the regression with Sun ONE Studio 7 cc that I reported in
9886 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
9887
98882002-11-18 Akim Demaille <akim@epita.fr>
9889
9890 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
9891 space.
9892 From Tim Van Holder.
9893
98942002-11-17 Paul Eggert <eggert@twinsun.com>
9895
9896 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
9897 to "SyntaxError" for consistency with my 2002-11-15 change.
9898
9899 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
9900 not define to {}, since this breaks the common use of `YYDPRINTF
9901 ((...));' if a single statement is desired (e.g. before `else').
9902 Work around GCC warnings by surrounding corresponding calls with
9903 {} if needed.
9904 (yyhasResolvedValue): Remove unused function.
9905 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
9906 loop body.
9907 (yyreportSyntaxError): Renamed from yyreportParseError.
9908 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
9909 All uses changed.
9910 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
9911 extern when possible. Remove unused initializations.
9912
99132002-11-16 Akim Demaille <akim@epita.fr>
9914
9915 Augment the similarity between GLR and LALR traces.
9916
9917 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
9918 (YY_REDUCE_PRINT): New.
9919 (yyparse): Use them.
9920 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
9921 YYDPRINT here.
9922 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
9923 state reached after the reduction/recovery, since...
9924 (yyparse, yyprocessOneStack): Report the state we are entering in.
9925
99262002-11-16 Akim Demaille <akim@epita.fr>
9927
9928 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
9929 Add support for --trace=skeleton.
9930 * src/scan-skel.l: %option debug.
9931 Scan strings of non-@ or \n instead of character by character.
9932 (scan_skel): Handle trace_skeleton.
9933 (QPUTS): New.
9934 (@output_parser_name@, @output_header_name@): ``Restore'' their
9935 support (used to be M4 macros).
9936 * data/yacc.c: Quote larger chunks, a la glr.c.
9937 * data/lalr1.cc: Likewise.
9938 The header guards are no longer available, so use some other
9939 string than `YYLSP_NEEDED'.
9940
99412002-11-16 Akim Demaille <akim@epita.fr>
9942
9943 Make the ``Printers and Destructors'' test more verbose, taking
9944 `yacc.c''s behavior as (possibly wrong) reference.
9945
9946 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
9947 instead of fprint on stdout.
9948 Set and report the last_line of the symbols.
9949 Consistently display values and locations.
9950
99512002-11-16 Paul Eggert <eggert@twinsun.com>
9952
9953 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
9954
99552002-11-15 Paul Eggert <eggert@twinsun.com>
9956
9957 * tests/actions.at (Actions after errors): New test case.
9958
9959 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
9960 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
9961 tests/action.at, tests/calc.at, tests/conflicts.at,
9962 tests/cxx-type.at, tests/regression.at:
9963 "parse error" -> "syntax error" for POSIX compatibility.
9964 "parsing stack overflow..." -> "parser stack overflow" so
9965 that code matches Bison documentation.
9966
99672002-11-15 Akim Demaille <akim@epita.fr>
9968
9969 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
9970 take two BRACED_CODE, not two string_content.
9971 Free the scanner's obstack when we are done.
9972 (code_content): New.
9973 * tests/calc.at: Adjust.
9974 * doc/bison.texinfo: Adjust.
9975 Also, make sure to include the `,' for these declarations.
9976
99772002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
9978
9979 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
9980 definition; avoids potential autoreconf problems.
9981
99822002-11-15 Akim Demaille <akim@epita.fr>
9983
9984 Always check the value returned by yyparse.
9985
9986 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
9987 returned by yyparse.
9988 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
9989 Adjust calls.
9990 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
9991 returned by yyparse.
9992
99932002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9994
9995 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
9996 on input.at test.
9997
99982002-11-14 Paul Eggert <eggert@twinsun.com>
9999
10000 * src/output.c (output_skeleton): Call xfopen instead of
10001 duplicating xfopen's body.
10002
10003 Fix bugs reported by Nelson H. F. Beebe in
10004 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
10005
10006 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
10007 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
10008 Group compiler. Instead, use "$CC -E bar.c". Include the .h
10009 file twice in the grammar, as an extra check.
10010
10011 * tests/input.at (Torturing the Scanner): Surround the
10012 backslash-newline tests with "#if 0", to make it less likely that
10013 we'll run into compiler bugs. Bring back solitary \ inside
10014 comment, but add a closing comment to work around HP C bug. Don't
10015 test backslash-newline in C character constant.
10016
100172002-11-14 Akim Demaille <akim@epita.fr>
10018
10019 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
10020 status of the compiler.
10021 Calling `exit 1' is no longer needed.
10022 Reported by Nelson H. F. Beebe.
10023
100242002-11-14 Akim Demaille <akim@epita.fr>
10025
10026 * tests/atlocal.in (CPPFLAGS): We have config.h.
10027 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
10028 New.
10029 * tests/actions.at, tests/calc.at, tests/conflicts.at,
10030 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
10031 * tests/regression.at, tests/torture.at: Use them for all the
10032 grammars that are to be compiled.
10033 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
10034 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
10035 * doc/bison.texinfo (GLR Parsers): Document `inline'.
10036
100372002-11-14 Akim Demaille <akim@epita.fr>
10038
10039 * doc/bison.texinfo: Various formatting changes (alignments in
10040 samples, additional @group/@end group, GCS in samples.
10041 Use @deffn instead of simple @table to define the directives,
10042 macros, variables etc.
10043
100442002-11-13 Paul Eggert <eggert@twinsun.com>
10045
10046 Fix some bugs reported by Albert Chin-A-Young in
10047 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
10048
10049 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
10050 -o c"; the HP C compiler chatters during compilation.
10051 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
10052 * tests/headers.at (export YYLTYPE): Likewise.
10053
10054 * tests/input.at (Torturing the Scanner): Remove lines containing
10055 solitary backslashes, as they tickle a bug in the HP C compiler.
10056
10057 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
10058 comments, since they're not portable. Use GNU coding style.
10059
100602002-11-13 Akim Demaille <akim@epita.fr>
10061
10062 * data/yacc.c: Leave bigger chunks of quoted text.
10063 (YYDSYMPRINTF): New.
10064 Use it to report symbol activities.
10065 * data/glr.c (YYDSYMPRINTF): New.
10066 Use it.
10067
100682002-11-12 Paul Eggert <eggert@twinsun.com>
10069
10070 Version 1.75b.
10071
10072 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
10073 (yyglrReduce): Return yyok, not 0.
10074 This should avoid the enumerated-type warnings reported
10075 by Nelson H. F. Beebe in
10076 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
10077
10078 * lib/bbitset.h (BITSET_INLINE): Remove.
10079 * lib/bitset.h [! BITSET_INLINE]: Remove.
10080 (bitset_set, bitset_reset, bitset_test): Rename local vars
10081 to avoid shadowing warnings by GCC.
10082
10083 * data/glr.c (inline): Remove #define. It's the user's
10084 responsibility to #define it away, just like 'const'.
10085 This fixes one of the bugs reported by Nelson H. F. Beebe in
10086 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
10087
10088 * Makefile.maint (po-check): Scan .l and .y files instead of the
10089 .c and the .h files that they generate. This fixes the bug
10090 reported by Tim Van Holder in:
10091 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
10092 Look for N_ as well as for _. Try to avoid matching #define for
10093 N_ and _.
10094 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
10095 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
10096 * src/scan-gram.l: Revamp regular expressions so that " and '
10097 do not confuse xgettext.
10098
10099 * src/struniq.h (struniq_new): Do not declare the return type
10100 to be 'const'; this violates the C standard.
10101 * src/struniq.c (struniq_new): Likewise.
10102
101032002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
10104
10105 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
10106 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
10107 linker.
10108
101092002-11-12 Akim Demaille <akim@epita.fr>
10110
10111 * Makefile.maint: Sync with Autoconf:
10112 (local_updates): New.
10113
101142002-11-12 Akim Demaille <akim@epita.fr>
10115
10116 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
10117
101182002-11-12 Akim Demaille <akim@epita.fr>
10119
10120 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
10121 locations.
10122
101232002-11-12 Akim Demaille <akim@epita.fr>
10124
10125 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
10126 not yyvalue.
10127
101282002-11-12 Akim Demaille <akim@epita.fr>
10129
10130 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
10131 Use it to test the GLR parser.
10132
101332002-11-12 Akim Demaille <akim@epita.fr>
10134
10135 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
10136 defines it.
10137 * data/glr.c (yystos): New.
10138 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
10139 (YYDSYMPRINT): New.
10140 (yyval): Don't define it, it is handled via M4.
10141 (yyrecoverParseError): Free verbosely the discarded symbols.
10142 * data/yacc.c (yysymprint): Remove, rather...
10143 (b4_yysymprint_generate): invoke.
10144 * data/c.m4 (b4_yysymprint_generate): New.
10145 Accept pointers as arguments, as opposed to the version from
10146 yacc.c.
10147 (b4_yydestruct_generate): Likewise.
10148 * tests/cations.at (Printers and Destructors): Use Bison directives
10149 instead of CPP macros.
10150 Don't rely on internal details.
10151
101522002-11-12 Akim Demaille <akim@epita.fr>
10153
10154 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
10155 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
10156 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
10157 it against YYEMPTY and so forth), work on yytoken (i.e., set
10158 it to YYEMPTY etc.).
10159 (yydestruct): Replace with a b4_yydestruct_generate invocation.
10160 (b4_symbol_actions): Remove.
10161 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
10162 for 0, end-of-input.
10163
101642002-11-12 Akim Demaille <akim@epita.fr>
10165
10166 * doc/bison.texinfo (Destructor Decl): New.
10167
101682002-11-12 Akim Demaille <akim@epita.fr>
10169
10170 * src/tables.c (tables_generate): Use free for pointers that
10171 cannot be NULL, not XFREE.
10172 (pack_vector): Use assert, not fatal, for bound violations.
10173 * src/state.c (state_new): Likewise.
10174 * src/reader.c (reader): Likewise.
10175 * src/lalr.c (set_goto_map): Likewise.
10176 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
10177 the file name.
10178
101792002-11-12 Akim Demaille <akim@epita.fr>
10180
10181 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
10182 Restore.
10183 * src/scan-gram.l (last_string): Is global to the file, not to
10184 yylex.
10185 * src/parse-gram.y (input): Don't append the epilogue here,
10186 (epilogue.opt): do it here, and free the scanner's obstack.
10187 * src/reader.c (epilogue_set): Rename as...
10188 (epilogue_augment): this.
10189 * data/c.m4 (b4_epilogue): Defaults to empty.
10190
101912002-11-12 Akim Demaille <akim@epita.fr>
10192
10193 * src/getargs.c (long_options): Remove duplicates.
10194 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
10195 Remove.
10196 * doc/bison.rnh: Remove.
10197 * doc/bison.texinfo (VMS Invocation): Remove.
10198
101992002-11-12 Akim Demaille <akim@epita.fr>
10200
10201 * src/struniq.h, src/struniq.c (struniq_t): Is const.
10202 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
10203
10204 Use struniq for symbols.
10205
10206 * src/symtab.h (symbol_t): The tag member is a struniq.
10207 (symbol_type_set): Adjust.
10208 * src/symtab.c (symbol_new): Takes a struniq.
10209 (symbol_free): Don't free the tag member.
10210 (hash_compare_symbol_t, hash_symbol_t): Rename as...
10211 (hash_compare_symbol, hash_symbol): these.
10212 Use the fact that tags as struniqs.
10213 (symbol_get): Use struniq_new.
10214 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
10215 Returns a strniq.
10216 * src/reader.h (merger_list, grammar_currentmerge_set): The name
10217 and type members are struniqs.
10218 * src/reader.c (get_merge_function)
10219 (grammar_current_rule_merge_set): Adjust.
10220 (TYPE, current_type): Are struniq.
10221
10222 Use struniq for file names.
10223
10224 * src/files.h, src/files.c (infile): Split into...
10225 (grammar_file, current_file): these.
10226 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
10227 * src/reduce.c (reduce_print): Likewise.
10228 * src/getargs.c (getargs): Likewise.
10229 * src/complain.h, src/complain.c: Likewise.
10230 * src/main.c (main): Call struniqs_new early enough to use it for
10231 file names.
10232 Don't free the input file name.
10233
102342002-11-12 Akim Demaille <akim@epita.fr>
10235
10236 * src/symtab.c (symbol_free): Remove dead deactivated code:
10237 type_name are properly removed.
10238 Don't use XFREE to free items that cannot be NULL.
10239 * src/struniq.h, src/struniq.c: New.
10240 * src/main.c (main): Initialize/free struniqs.
10241 * src/parse-gram.y (%union): Add astruniq member.
10242 (yyprint): Adjust.
10243 * src/scan-gram.l (<{tag}>): Return a struniq.
10244 Free the obstack bit that used to store it.
10245 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
10246
102472002-11-11 Paul Eggert <eggert@twinsun.com>
10248
10249 Revamp to fix many (but not all) of the C- and M4-related quoting
10250 problems. Among other things, this fixes the Bison bug reported
10251 by Jan Hubicka when processing the Bash grammar; see:
10252 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
10253
10254 Use new @ escapes consistently. Represent brackets with @{ and @}
10255 rather than @<:@ and @:>@, since this works a bit better with dumb
10256 editors like vi. Represent @ with @@, since @ is now consistently
10257 an escape. Use @oline@ and @ofile@ rather than __oline__ and
10258 __ofile__, to avoid unexpected expansions. Similarly, use @output
10259 rather than #output.
10260
10261 * data/c.m4 (b4_copyright): Omit file name from comment, since
10262 the file name could contain "*/".
10263 (b4_synclines_flag): Don't quote the 2nd argument; it should already
10264 be quoted. All uses changed.
10265
10266 * data/glr.c: Use new @ escapes consistently.
10267 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
10268 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
10269 Remove, since they couldn't handle arbitrary characters in file
10270 names.
10271 * data/lalr1.cc: Likewise.
10272 * data/yacc.c: Likewise.
10273
10274 * src/files.c (output_infix): Remove; all uses removed.
10275 * src/files.h: Likewise.
10276
10277 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
10278 mishandled funny characters in file names, and anyway it isn't
10279 needed any more.
10280 * data/yacc.c: Likewise.
10281 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
10282
10283 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
10284 * data/yacc.c: Likewise.
10285
10286 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
10287 strings now.
10288 (muscle_init): Quote filename as a C string.
10289 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
10290 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
10291 * src/output.c (escaped_file_name_output): New function.
10292 (prepare_symbols): Quote tokens for M4.
10293 (prepare): Don't insert output_infix, output_prefix,
10294 output_parser_name, output_header_name; this is now down by scan-skel.
10295 Insert skeleton as a C string.
10296
10297 * src/output.c (user_actions_output, symbol_destructors_output,
10298 symbol_printers_output): Quote filenames for C and M4.
10299 * src/reader.c (prologue_augment, epilogue_set): Likewise.
10300
10301 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
10302 escapes other than \\ and \'; this simplifies the code.
10303 (<SC_STRING>): Likewise, for \\ and \".
10304 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
10305 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
10306 Use new escapes @{ and @} for [ and ].
10307
10308 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
10309 them with auto vars.
10310 Switch to new escape scheme, where @ is the escape character uniformly.
10311 Abort if a stray escape character is found. Avoid unbounded input
10312 buffer when parsing non-escaped text.
10313
10314 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
10315 __oline__, #output, $@, and @{ do not have unintended meanings.
10316
103172002-11-09 Paul Eggert <eggert@twinsun.com>
10318
10319 Fix the test failure due to GCC warnings described in
10320 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
10321 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
10322 evaluate to 0 if it's impossible for NINF to be in the respective
10323 table.
10324 (yygetLRActions, yyrecoverParseError): Use them.
10325
10326 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
10327 counted in the token inserted at end of file. Now takes
10328 location_t *, not location_t, so that the location can be
10329 adjusted. All uses changed.
10330
10331 * tests/regression.at (Invalid inputs): Adjust wording in
10332 diagnostic to match the new behavior.
10333
10334 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
10335 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
10336 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
10337 abort ();'. This reduces the runtime of the "Many lookaheads"
10338 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
10339 GCC 3.2.
10340
103412002-11-07 Paul Eggert <eggert@twinsun.com>
10342
10343 * src/parse-gram.y (CHARACTER): Remove unused token.
10344 All uses removed.
10345
10346 * src/scan-gram.l: Remove stack option. We no longer use the
10347 stack, since the stack was never deeper than 1; instead, use the
10348 new auto var c_context to record the stacked value.
10349
10350 Remove nounput option. At an unexpected end of file, we now unput
10351 the minimal input necessary to end cleanly; this simplifies the
10352 code.
10353
10354 Avoid unbounded token sizes where this is easy.
10355
10356 (unexpected_end_of_file): New function.
10357 Use it to systematize the error message on unexpected EOF.
10358 (last-string): Now auto, not static.
10359 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
10360 (scanner_last_string_free): Remove; not used.
10361 (percent_percent_count): Move decl to just before use.
10362 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
10363 not the (never otherwised-used) CHARACTER.
10364
103652002-11-07 Akim Demaille <akim@epita.fr>
10366
10367 Let yyerror always receive the msg as last argument, so that
10368 yyerror can be variadic.
10369
10370 * data/yacc.c (b4_yyerror_args): New.
10371 Use it when calling yyerror.
10372 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
10373 Use it when calling yyerror.
10374 * doc/bison.texinfo (Error Reporting): Adjust.
10375 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
10376 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
10377
103782002-11-06 Akim Demaille <akim@epita.fr>
10379
10380 #line should have quoted strings.
10381 Ideally, this should be done by m4_quotearg.
10382
10383 * src/scan-skel.l: Include quotearg.h.
10384 Quote __ofile__.
10385 * src/output.c (symbol_printers_output)
10386 (symbol_destructors_output): Quote the file name.
10387
103882002-11-06 Akim Demaille <akim@epita.fr>
10389
10390 * tests/regression.at (Invalid inputs): Adjust to the recent
10391 messages.
10392
103932002-11-06 Akim Demaille <akim@epita.fr>
10394
10395 Restore --no-lines.
10396 Reported by Jim Kent.
10397
10398 * data/c.m4 (b4_syncline): New.
10399 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
10400 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
10401 * src/output.c (user_actions_output): Likewise.
10402 (prepare): Define 'b4_synclines_flag'.
10403 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
10404
104052002-11-06 Akim Demaille <akim@epita.fr>
10406
10407 * src/main.c (main): Free `infile'.
10408 * src/scan-gram.l (handle_syncline): New.
10409 Recognize `#line'.
10410 * src/output.c (user_actions_output, symbol_destructors_output)
10411 (symbol_printers_output): Use the location's file name, not
10412 infile.
10413 * src/reader.c (prologue_augment, epilogue_set): Likewise.
10414
104152002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10416
10417 * src/tables.c (matching_state): Don't allow states to match if
10418 either has GLR conflict entries.
10419
104202002-11-05 Paul Eggert <eggert@twinsun.com>
10421
10422 * src/scan-gram.l: Use more accurate diagnostics, e.g.
10423 "integer out of range" rather than "invalid value".
10424 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
10425 accordingly.
10426
10427 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
10428 Also, remove one static variable in the scanner.
10429
10430 * src/scan-gram.l (braces_level): Now auto, not static.
10431 Initialize to zero if the compiler is being picky.
10432 (INITIAL): Clear braces_level instead of incrementing it.
10433 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
10434 as POSIX 1003.1-2001 requires.
10435 * src/system.h (IF_LINT): New macro, taken from coreutils.
10436 * configure.ac: Define "lint" if --enable-gcc-warnings.
10437
104382002-11-05 Akim Demaille <akim@epita.fr>
10439
10440 * src/scan-gram.l: When it starts with `%', complain about the
10441 whole directive, not just that `invalid character: %'.
10442
104432002-11-04 Akim Demaille <akim@epita.fr>
10444
10445 * Makefile.maint: Update from Autoconf.
10446 (update, cvs-update, po-update, do-po-update): New.
10447
104482002-11-04 Akim Demaille <akim@epita.fr>
10449
10450 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
10451 and yyerror.
10452 Have yyerror `use' its arguments.
10453 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
10454 returns true when location & yacc & pure & parse-param.
10455 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
10456
104572002-11-04 Akim Demaille <akim@epita.fr>
10458
10459 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
10460 clashes.
10461 * src/scan-gram.l: Use [\'] instead of ['] to pacify
10462 font-lock-mode.
10463 Use complain_at.
10464 Use quote, not quote_n since LOCATION_PRINT no longer uses the
10465 slot 0.
10466
104672002-11-03 Paul Eggert <eggert@twinsun.com>
10468
10469 * src/reader.c (get_merge_function, grammar_current_rule_check):
10470 Use consistent diagnostics for reporting type name clashes.
10471 Quote the types with <>, for consistency with Yacc.
10472 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
10473
104742002-11-03 Akim Demaille <akim@epita.fr>
10475
10476 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
10477 New.
10478 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
10479 (b4_parse_param): Remove.
10480 Use b4_identification.
10481 Propagate b4_pure_args where needed to pass them to yyerror.
10482 * data/glr.m4 (b4_parse_param): Remove.
10483 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
10484 (b4_lpure_formals): New.
10485 Use b4_identification.
10486 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
10487 b4_user_formals and b4_user_args.
10488 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
10489 (yyreportAmbiguity): When using a pure parser, also need
10490 the location, and the parse-params.
10491 Adjust callers.
10492 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
10493 When using a pure parser, also need the parse-params.
10494 Adjust callers.
10495 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
10496 (%pure-parser + %parse-param) LALR and GLR parsers.
10497 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
10498 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
10499 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
10500 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
10501 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
10502 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
10503 * doc/bison.texinfo: Untabify the whole file.
10504 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
10505 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
10506 (Error Reporting): Adjust to these new directives.
10507 Document %error-verbose, deprecate YYERROR_VERBOSE.
10508
105092002-11-03 Akim Demaille <akim@epita.fr>
10510
10511 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
10512 AT_CHECK_CALC_GLR invocations to use % directives, instead of
10513 command line options.
10514 * tests/cxx-type.at: Formatting changes.
10515
105162002-11-03 Paul Eggert <eggert@twinsun.com>
10517
10518 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
10519 to count columns correctly, and to check for invalid inputs.
10520
10521 Use mbsnwidth to count columns correctly. Account for tabs, too.
10522 Include mbswidth.h.
10523 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
10524 (extend_location): New function.
10525 (YY_LINES): Remove.
10526
10527 Handle CRLF in C code rather than in Lex code.
10528 (YY_INPUT): New macro.
10529 (no_cr_read): New function.
10530
10531 Scan UCNs, even though we don't fully handle them yet.
10532 (convert_ucn_to_byte): New function.
10533
10534 Handle backslash-newline correctly in C code.
10535 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
10536 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
10537 all uses changed.
10538 (tag, splice): New EREs. Do not allow NUL or newline in tags.
10539 Use {splice} wherever C allows backslash-newline.
10540 YY_STEP after space, newline, vertical-tab.
10541 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
10542
10543 (letter, id): Don't assume ASCII; e.g., spell out a-z.
10544
10545 ({int}, handle_action_dollar, handle_action_at): Check for integer
10546 overflow.
10547
10548 (YY_STEP): Omit trailing semicolon, so that it's more like C.
10549
10550 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
10551 as well as \000. Check for UCHAR_MAX, not 255.
10552 Allow \x with an arbitrary positive number of digits, as in C.
10553 Check for overflow here.
10554 Allow \? and UCNs, for compatibility with C.
10555
10556 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
10557 with quote slot used by complain_at.
10558
10559 * tests/input.at: Add tests for backslash-newline, m4 quotes
10560 in symbols, long literals, and funny escapes in strings.
10561
10562 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
10563 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
10564 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
10565 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
10566 * m4/mbswidth.m4: New file, from GNU coreutils.
10567
10568 * doc/bison.texinfo (Grammar Outline): Document // comments.
10569 (Symbols): Document that trigraphs have no special meaning in Bison,
10570 nor is backslash-newline allowed.
10571 (Actions): Document that trigraphs have no special meaning.
10572
10573 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
10574 no longer used.
10575
105762002-11-02 Paul Eggert <eggert@twinsun.com>
10577
10578 * src/reader.c: Don't include quote.h; not needed.
10579 (get_merge_function): Reword warning to be consistent with
10580 type clash diagnostic in grammar_current_rule_check.
10581
10582 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
10583 bug in trigraph handling.
10584
10585 * src/output.c (prepare_symbols): When printing token names,
10586 escape "[" as "@<:@" and likewise for "]".
10587
10588 * src/system.h (errno): Remove declaration, as we are now
10589 assuming C89 or better, and C89 guarantees errno.
10590
105912002-10-30 Paul Eggert <eggert@twinsun.com>
10592
10593 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
10594 Check for close failures.
10595 * src/files.h (xfclose): Return void, not int, since it always
10596 returned zero.
10597 * src/files.c (xfclose): Likewise. Report I/O error if ferror
10598 indicates one.
10599 * src/output.c (output_skeleton): Use xfclose rather than fclose
10600 and ferror. xfclose now checks ferror.
10601
10602 * data/glr.c (YYLEFTMOST_STATE): Remove.
10603 (yyreportTree): Use a stack-based leftmost state. This avoids
10604 our continuing battles with bogus warnings about initializers.
10605
106062002-10-30 Akim Demaille <akim@epita.fr>
10607
10608 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
10609 #if.
10610
106112002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10612
10613 * tests/glr-regr1.at: New test for reported regressions.
10614 * tests/testsuite.at: Add glr-regr1.at test.
10615 * tests/Makefile.am: Add glr-regr1.at test.
10616
106172002-10-24 Paul Eggert <eggert@twinsun.com>
10618
10619 Version 1.75a.
10620
10621 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
10622 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
10623 we use malloc. Don't assume 'A' through 'Z' are contiguous.
10624 Don't assume strdup exists; POSIX says its an XSI extension.
10625 Check for buffer overflow on input.
10626
106272002-10-24 Akim Demaille <akim@epita.fr>
10628
10629 * src/output.c (output_skeleton): Don't disable M4sugar comments
10630 too soon: it results in comments being expanded.
10631 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
10632 first output.
10633
106342002-10-24 Akim Demaille <akim@epita.fr>
10635
10636 * data/yacc.c (m4_int_type): New.
10637 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
10638 char' as only yacc.c wants K&R portability.
10639 * data/glr.c (yysigned_char): Remove.
10640 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
10641 Reported by Quoc Peyrot.
10642
106432002-10-23 Paul Eggert <eggert@twinsun.com>
10644
10645 * src/main.c (main): With --trace=time, report times even if a
10646 non-fatal error occurs. Formerly, the times were reported in some
10647 such cases but not in others.
10648 * src/reader.c (reader): Just return if a complaint has been issued,
10649 instead of exiting, so that 'main' can report times.
10650
106512002-10-22 Akim Demaille <akim@epita.fr>
10652
10653 * src/system.h: Include sys/types.
10654 Reported by Bert Deknuydt.
10655
106562002-10-23 Paul Eggert <eggert@twinsun.com>
10657
10658 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
10659 Suggested by Art Haas.
10660
106612002-10-22 Paul Eggert <eggert@twinsun.com>
10662
10663 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
10664 decl; not needed any more.
10665 * src/main.c (main): Use return to exit, undoing yesterday's change.
10666 The last OS that we could find where this wouldn't work is
10667 SunOS 3.5, and that's too old to worry about now.
10668
10669 * data/glr.c (struct yyltype): Define members even when not
10670 doing locations. This is more consistent with yacc.c, and it
10671 works around the following bug reports:
10672 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
10673 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
10674
10675 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
10676 @acronym consistently. Standardize on "Yacc" instead of "YACC",
10677 "Algol" instead of "ALGOL". Give a bit more history about BNF.
10678
106792002-10-22 Akim Demaille <akim@epita.fr>
10680
10681 * data/README: New.
10682
106832002-10-21 Paul Eggert <eggert@twinsun.com>
10684
10685 Be consistent about 'bool'; the old code used an enum in one
10686 module and an int in another, and this violates the C standard.
10687 * m4/stdbool.m4: New file, from coreutils 4.5.3.
10688 * configure.ac (AC_HEADER_STDBOOL): Add.
10689 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
10690 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
10691 * src/symtab.c (hash_compare_symbol_t): Likewise.
10692 * src/system.h (bool, false, true): Use a definition consistent
10693 with ../lib/hash.c. All uses changed.
10694
10695 * src/complain.c (warning_issued): Renamed from warn_message_count,
10696 so that we needn't worry about integer overflow (!).
10697 Now of type bool. All uses changed.
10698 (complaint_issued): Renamed from complain_message_count; likewise.
10699
10700 * src/main.c (main): Use exit to exit with failure.
10701
10702 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
10703 rather than 1 and 0.
10704 * src/main.c (main): Likewise.
10705 * src/getargs.c (getargs): Likewise.
10706 * src/reader.c (reader): Likewise.
10707
10708 * src/getarg.c (getargs): Remove duplicate code for
10709 "Try `bison --help'".
10710
10711 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
10712 What was that "2" for?
10713
10714 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
10715 * src/getargs.c (usage): Likewise.
10716
10717 * src/getargs.c (getargs): When there are too few operands, report
10718 the last one. When there are too many, report the first extra
10719 one. This is how diffutils does it.
10720
107212002-10-20 Paul Eggert <eggert@twinsun.com>
10722
10723 Remove K&R vestiges.
10724 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
10725 * src/complain.c (VA_START): Remove. Assume prototypes.
10726 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
10727 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
10728 fatal): Assume prototypes.
10729 * src/complain.h: Assume prototypes.
10730 * src/system.h (PARAMS): Remove.
10731 Include <limits.h> unconditionally, since it's guaranteeed even
10732 for a freestanding C89 compiler.
10733 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
10734 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
10735
107362002-10-20 Akim Demaille <akim@epita.fr>
10737
10738 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
10739 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
10740 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
10741 (yyresolveStates, yyresolveAction, yyresolveStack)
10742 (yyprocessOneStack): Use them.
10743 (yy_reduce_print): New.
10744 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
10745
107462002-10-20 Akim Demaille <akim@epita.fr>
10747
10748 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
10749 arguments and output `void'.
10750 (b4_c_function): Rename as...
10751 (b4_c_function_def): this.
10752 (b4_c_function_decl, b4_c_ansi_function_def)
10753 (b4_c_ansi_function_decl): New.
10754 Change the interpretation of the arguments: before `int, foo', now
10755 `int foo, foo'.
10756 * data/yacc.c (yyparse): Prototype and define thanks to these.
10757 Adjust b4_c_function_def uses.
10758 * data/glr.c (yyparse): Likewise, but ANSI only.
10759
107602002-10-20 Akim Demaille <akim@epita.fr>
10761
10762 * src/output.c (prepare): Move the definition of `tokens_number',
10763 `nterms_number', `undef_token_number', `user_token_number_max'
10764 to...
10765 (prepare_tokens): Here.
10766 (prepare_tokens): Rename as...
10767 (prepare_symbols): this.
10768 (prepare): Move the definition of `rules_number' to...
10769 (prepare_rules): here.
10770 (prepare): Move the definition of `last', `final_state_number',
10771 `states_number' to...
10772 (prepare_states): here.
10773 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
10774
107752002-10-20 Akim Demaille <akim@epita.fr>
10776
10777 * src/tables.h, src/tables.c, src/output.c: Comment changes.
10778
107792002-10-20 Akim Demaille <akim@epita.fr>
10780
10781 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
10782 * data/c.m4: here.
10783
107842002-10-20 Akim Demaille <akim@epita.fr>
10785
10786 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
10787 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
10788 `pair'.
10789 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
10790 `name' to...
10791 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
10792 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
10793 These.
10794
107952002-10-19 Paul Eggert <eggert@twinsun.com>
10796
10797 Do not create a temporary file, as that involves security and
10798 cleanup headaches. Instead, use a pair of pipes.
10799 Derived from a suggestion by Florian Krohm.
10800 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
10801 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
10802 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
10803 (BISON_PREREQ_SUBPIPE): Add.
10804 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
10805 Add subpipe.h, subpipe.c.
10806 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
10807 * po/POTFILES.in: Add lib/subpipe.c.
10808 * src/output.c: Include "subpipe.h".
10809 (m4_invoke): Remove decl.
10810 (scan_skel): New decl.
10811 (output_skeleton): Use pipe rather than temporary file for m4 input.
10812 Check that m4sugar.m4 is readable, to avoid deadlock.
10813 Check for pipe I/O error.
10814 * src/scan-skel.l (readpipe): Remove decl.
10815 (scan_skel): New function, to be used in place of m4_invoke.
10816 Read from stream rather than file.
10817
10818 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
10819 float, as this generates a warning on Solaris 8 + GCC 3.2 with
10820 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
10821 this generates a more-accurate value anyway.
10822
10823 * lib/timevar.c (timervar_accumulate): Rename locals to
10824 avoid confusion with similarly-named more-global.
10825 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
10826
10827 * src/output.c (prepare): Use xstrdup to convert char const *
10828 to char *, to avoid GCC warning.
10829
108302002-10-19 Akim Demaille <akim@epita.fr>
10831
10832 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
10833 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
10834 Use them to have `calc.y' ready for %pure-parser.
10835 * data/yacc.c (YYLEX): Pass a yylex return type to
10836 b4_c_function_call.
10837
108382002-10-19 Akim Demaille <akim@epita.fr>
10839
10840 Prototype support of %lex-param and %parse-param.
10841
10842 * src/parse-gram.y: Add the definition of the %lex-param and
10843 %parse-param tokens, plus their rules.
10844 Drop the `_' version of %glr-parser.
10845 Add the "," token.
10846 * src/scan-gram.l (INITIAL): Scan them.
10847 * src/muscle_tab.c: Comment changes.
10848 (muscle_insert, muscle_find): Rename `pair' as `probe'.
10849 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
10850 (muscle_entry_s): The `value' member is no longer const.
10851 Adjust all dependencies.
10852 * src/muscle_tab.c (muscle_init): Adjust: use
10853 MUSCLE_INSERT_STRING.
10854 Initialize the obstack earlier.
10855 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
10856 (muscle_pair_list_grow): New.
10857 * data/c.m4 (b4_c_function_call, b4_c_args): New.
10858 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
10859 * tests/calc.at: Use %locations, not --locations.
10860 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
10861
108622002-10-19 Akim Demaille <akim@epita.fr>
10863
10864 * src/getargs.c (usage): Take status as argument and exit
10865 accordingly.
10866 Report the traditional `Try ... --help' message when status != 0.
10867 (usage, version): Don't take a FILE * as arg, it is pointless.
10868 (getargs): When there is an incorrect number of arguments, make it
10869 an error, and report it GNUlically thanks to `usage ()'.
10870
108712002-10-18 Paul Eggert <eggert@twinsun.com>
10872
10873 * data/glr.c (yyreportParseError): Don't assume that sprintf
10874 yields the length of the printed string, as this is not true
10875 on SunOS 4.1.4. Reported by Peter Klein.
10876
10877 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
10878 * tests/conflicts.at (%nonassoc and eof): Likewise.
10879 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
10880
108812002-10-17 Akim Demaille <akim@epita.fr>
10882
10883 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
10884 * src/getargs.c (trace_types, trace_args): Adjust.
10885 * src/reader.c (grammar_current_rule_prec_set)
10886 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
10887 Standardize error messages.
10888 And s/@prec/%prec/!
10889 (reader): Use trace_flag to enable scanner/parser debugging,
10890 instead of an adhoc scheme.
10891 * src/scan-gram.l: Remove trailing debugging code.
10892
108932002-10-16 Paul Eggert <eggert@twinsun.com>
10894
10895 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
10896 MUSCLE_TAB_H.
10897
10898 * NEWS: Officially drop support for building Bison with K&R C,
10899 since it didn't work anyway and it's not worth worrying about.
10900 * Makefile.maint (wget_files): Remove ansi2knr.c.
10901 (ansi2knr.c-url_prefix): Remove.
10902 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
10903 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10904 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
10905
109062002-10-15 Paul Eggert <eggert@twinsun.com>
10907
10908 Stop using the "enum_" trick for K&R-style function definitions;
10909 it confused me, and I was the author! Instead, assume that people
10910 who want to use K&R C compilers (when using these modules in GCC,
10911 perhaps?) will run ansi2knr.
10912
10913 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
10914 All uses of "enum_" changed to "enum ".
10915 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
10916 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
10917
10918 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
10919 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
10920 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
10921 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
10922 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
10923 abitset_not, abitset_ones, abitset_or, abitset_or_and,
10924 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
10925 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
10926 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
10927 Use function prototypes; this removes the need for declaring
10928 static functions simply to provide their prototypes.
10929 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
10930 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
10931 bitset_count_, bitset_create, bitset_dump, bitset_first,
10932 bitset_free, bitset_init, bitset_last, bitset_next,
10933 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
10934 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
10935 bitset_print, bitset_release_memory, bitset_toggle_,
10936 bitset_type_choose, bitset_type_get, bitset_type_name_get,
10937 debug_bitset): Likewise.
10938 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
10939 * lib/bitset_stats.c (bitset_log_histogram_print,
10940 bitset_percent_histogram_print, bitset_stats_and,
10941 bitset_stats_and_cmp, bitset_stats_and_or,
10942 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
10943 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
10944 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
10945 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
10946 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
10947 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
10948 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
10949 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
10950 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
10951 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
10952 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
10953 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
10954 bitset_stats_zero): Likewise.
10955 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
10956 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
10957 bitsetv_dump, debug_bitsetv): Likewise.
10958 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
10959 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
10960 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
10961 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
10962 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
10963 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
10964 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
10965 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
10966 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
10967 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
10968 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
10969 Likewise.
10970 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
10971 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
10972 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
10973 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
10974 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
10975 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
10976 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
10977 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
10978 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
10979 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
10980 lbitset_xor_cmp, lbitset_zero): Likewise.
10981
109822002-10-14 Akim Demaille <akim@epita.fr>
10983
10984 Version 1.75.
10985
109862002-10-14 Akim Demaille <akim@epita.fr>
10987
10988 * tests/Makefile.am (maintainer-check-posix): New.
10989
109902002-10-14 Akim Demaille <akim@epita.fr>
10991
10992 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
10993 member.
10994
109952002-10-14 Akim Demaille <akim@epita.fr>
10996
10997 * src/tables.c (table_ninf_remap): base -> tab.
10998 Reported by Matt Rosing.
10999
110002002-10-14 Paul Eggert <eggert@twinsun.com>
11001
11002 * tests/action.at, tests/calc.at, tests/conflicts.at,
11003 tests/cxx-type.at, tests/headers.at, tests/input.at,
11004 tests/regression.at, tests/synclines.at, tests/torture.at:
11005 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
11006 so that the tests still work even if POSIXLY_CORRECT is set.
11007 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
11008
11009 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
11010 for portability to K&R hosts. Fix typo: signed char is guaranteed
11011 only to 127, not to 128.
11012 * data/glr.c (yysigned_char): New type.
11013 * data/yacc.c (yysigned_char): Likewise.
11014 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
11015
110162002-10-13 Paul Eggert <eggert@twinsun.com>
11017
11018 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
11019 true due to limited range of data type" warning from GCC.
11020
11021 * data/c.m4 (b4_token_defines): Protect against double-inclusion
11022 by wrapping enum yytokentype's definition inside #ifndef
11023 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
11024
110252002-10-13 Akim Demaille <akim@epita.fr>
11026
11027 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
11028 Un yy- yyrhs to avoid the name clash with the global YYRHS.
11029
110302002-10-13 Akim Demaille <akim@epita.fr>
11031
11032 * Makefile.maint: Update from Autoconf 2.54.
11033 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
11034
110352002-10-13 Akim Demaille <akim@epita.fr>
11036
11037 * src/print.c (print_state): Separate the list of solved conflicts
11038 from the other items.
11039 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
11040
110412002-10-13 Akim Demaille <akim@epita.fr>
11042
11043 Let nondeterministic skeletons be usable with deterministic
11044 tables.
11045
11046 With the patch, GAWK compiled by GCC without -O2 passes its test
11047 suite using a GLR parser driven by LALR tables. It fails with -O2
11048 because `struct stat' gives two different answers on my machine:
11049 88 (definition of an auto var) and later 96 (memset on this var).
11050 Hence the stack is badly corrumpted. The headers inclusion is to
11051 blame: if I move the awk.h inclusion before GLR's system header
11052 inclusion, the two struct stat have the same size.
11053
11054 * src/tables.c (pack_table): Always create conflict_table.
11055 (token_actions): Always create conflict_list.
11056 * data/glr.c (YYFLAG): Remove, unused.
11057
110582002-10-13 Akim Demaille <akim@epita.fr>
11059
11060 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
11061 (O0FLAGS): New.
11062 (VALGRIND, GXX): New.
11063 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
11064 * tests/bison.in: Run $PREBISON a pre-command.
11065 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
11066 (maintainer-check-g++): New.
11067 * Makefile.am (maintainer-check): New.
11068
110692002-10-13 Akim Demaille <akim@epita.fr>
11070
11071 * data/glr.c: Formatting changes.
11072 Tweak some trace messages to match yacc.c's.
11073
110742002-10-13 Akim Demaille <akim@epita.fr>
11075
11076 GLR parsers sometimes raise parse errors instead of performing the
11077 default reduction.
11078 Reported by Charles-Henry de Boysson.
11079
11080 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
11081 check the length of the traces when %glr.
11082 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
11083 GLR's traces.
11084 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
11085 Test GLR parsers.
11086 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
11087 (yyltype): Remove the yy prefix from the member names.
11088 (yytable): Complete its comment.
11089 (yygetLRActions): Map error action number from YYTABLE from
11090 YYTABLE_NINF to 0.
11091 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
11092 (which was a bug: it should have been YYTABEL_NINF, and yet it was
11093 not satisfying as we could compare an YYACTION computed from
11094 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
11095 only value for error actions.
11096 (yyreportParseError): In verbose parse error messages, don't issue
11097 `error' in the list of expected tokens.
11098 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
11099 next action to perform to match glr.c's decoding.
11100 (yytable): Complete its comment.
11101
111022002-10-13 Paul Eggert <eggert@twinsun.com>
11103
11104 Fix problem reported by Henrik Grubbstroem in
11105 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
11106 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
11107 because the Bison parser reads the second action before reducing
11108 the first one.
11109 * src/scan-gram.l (rule_length): New static var.
11110 Use it to keep track of the rule length in the scanner, since
11111 we can't expect the parser to be in lock-step sync with the scanner.
11112 (handle_action_dollar, handle_action_at): Use this var.
11113 * tests/actions.at (Exotic Dollars): Test for the problem.
11114
111152002-10-12 Paul Eggert <eggert@twinsun.com>
11116
11117 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
11118 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
11119 Include <sys/time.h> when checking for clock_t and struct tms.
11120 Use same include order as source.
11121 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
11122 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
11123
11124 * lib/timevar.c: Update copyright date and clarify comments.
11125 (get_time) [IN_GCC]: Keep the GCC version for reference.
11126
11127 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
11128 GCC version as of today, then merge Bison's changes.
11129 Change "GCC" to "Bison" in copyright notice. timevar.def's
11130 author is Akim, so change that too.
11131
11132 * src/reader.c (grammar_current_rule_check):
11133 Don't worry about the default action if $$ is untyped.
11134 Prevents bogus warnings reported by Jim Gifford in
11135 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
11136
11137 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
11138 * data/glr.c, data/lalr1.cc, data/yacc.c:
11139 Output token definitions before the first part of user declarations.
11140 Fixes compatibility problem reported by Jim Gifford for kbd in
11141 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
11142
111432002-10-11 Paul Eggert <eggert@twinsun.com>
11144
11145 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
11146 (yyparse): here. This undoes some of the 2002-07-25 change.
11147 Compatibility problem reported by Ralf S. Engelschall with
11148 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
11149
111502002-10-11 Akim Demaille <akim@epita.fr>
11151
11152 * tests/regression.at Characters Escapes): New.
11153 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
11154 characters.
11155 Reported by Jan Nieuwenhuizen.
11156
111572002-10-11 Akim Demaille <akim@epita.fr>
11158
11159 * po/id.po: New.
11160
111612002-10-10 Paul Eggert <eggert@twinsun.com>
11162
11163 Portability fixes for bitsets; this also avoids several GCC
11164 warnings.
11165
11166 * lib/abitset.c: Include <stddef.h>, for offsetof.
11167 * lib/lbitset.c: Likewise.
11168
11169 * lib/abitset.c (abitset_bytes): Return a size that is aligned
11170 properly for vectors of objects. Do not assume that adding a
11171 header size to a multiple of a word size yields a value that is
11172 properly aligned for the whole union.
11173 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11174
11175 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
11176 unique names for structures.
11177 * lib/ebitset.c (ebitset_bytes): Likewise.
11178 * lib/lbitset.c (lbitset_bytes): Likewise.
11179
11180 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
11181 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
11182 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
11183 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
11184 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
11185 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
11186 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
11187 to improve the type-checking that GCC can do.
11188 * lib/bitset.c (bitset_op4_cmp): Likewise.
11189 * lib/bitset_stats.c (bitset_stats_count,
11190 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
11191 bitset_stats_copy, bitset_stats_disjoint_p,
11192 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
11193 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
11194 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
11195 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
11196 bitset_stats_and_or_cmp, bitset_stats_andn_or,
11197 bitset_stats_andn_or_cmp, bitset_stats_or_and,
11198 bitset_stats_or_and_cmp): Likewise.
11199 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
11200 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
11201 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
11202 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
11203
11204 * lib/abitset.h: Include bitset.h, not bbitset.h.
11205 * lib/ebitset.h: Likewise.
11206 * lib/lbitset.h: Likewise.
11207
11208 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
11209 All instances of parameters of type enum bitset_opts are now of
11210 type enum_bitset_opts, to conform to the C Standard, and similarly
11211 for enum_bitset_type.
11212 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
11213 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
11214
11215 Do not use "struct bitset_struct" to mean different things in
11216 different modules. Not only is this confusing, it violates
11217 the C Standard, which requires that structure types in different
11218 modules must be compatible if one is to be passed to the other.
11219 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
11220 All instances of "struct bitset_struct *" replaced with "bitset".
11221 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
11222 (union bitset_union, struct abitset_struct, struct ebitset_struct,
11223 struct lbitset_struct, struct bitset_stats_struct): New types.
11224 All uses of struct bitset_struct changed to union bitset_union,
11225 etc.
11226 * lib/abitset.c (struct abitset_struct, abitset,
11227 struct bitset_struct): Remove.
11228 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
11229 struct bitset_struct): Remove.
11230 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
11231 bitset_struct): Remove.
11232 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
11233 Likewise.
11234
11235 Do not call a function of type T using a call that assumes the
11236 function is of a different type U. Standard C requires that a
11237 function must be called with a type that is compatible with its
11238 definition.
11239 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
11240 New decls.
11241 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
11242 New functions.
11243 * lib/ebitset.c (PFV): Remove.
11244 * lib/lbitset.c (PFV): Likewise.
11245 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
11246 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
11247 decls.
11248 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
11249 (ebitset_vtable): Use them.
11250 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
11251 lbitset_xor): New functions.
11252 (lbitset_vtable): Use them.
11253
11254 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
11255 Declare.
11256
11257 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
11258 GCC warning.
11259 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
11260 Use offsetof, for simplicity.
11261
112622002-10-06 Paul Eggert <eggert@twinsun.com>
11263
11264 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
11265 the same width as int. This reapplies a hunk of the 2002-08-12 patch
11266 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
11267 which was inadvertently undone by the 2002-09-30 patch.
11268 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
11269 the same width as int.
11270
112712002-10-04 Paul Eggert <eggert@twinsun.com>
11272
11273 Version 1.50.
11274
11275 * configure.ac (AC_INIT), NEWS: Increment version number.
11276
11277 * doc/bison.texinfo: Minor spelling, grammar, and white space
11278 fixes.
11279 (Symbols): Mention that any negative value returned from yylex
11280 signifies end-of-input. Warn about negative chars. Mention
11281 the portable Standard C character set.
11282
11283 The GNU coding standard says CFLAGS and YFLAGS are reserved
11284 for the installer to set.
11285 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
11286 * src/Makefile.am (AM_CFLAGS): Likewise.
11287 (AM_YFLAGS): Renamed from YFLAGS.
11288
11289 Fix some MAX and MIN problems.
11290 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
11291 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
11292 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
11293 * src/reader.c (reader): Use it.
11294
11295 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
11296 POSIX 1003.1-2001 has removed fgrep.
11297
112982002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11299
11300 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
11301 interpreted as signed.
11302 * lib/ebitset.c (ebitset_list): Fix bug.
11303
113042002-10-01 Paul Eggert <eggert@twinsun.com>
11305
11306 More fixes for 64-bit hosts and large bitsets.
11307
11308 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
11309 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
11310 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
11311 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
11312 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
11313 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
11314 bitset_count_): Likewise.
11315 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
11316 bitset_first, bitset_last): Likewise.
11317 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
11318 bitset_stats_list_reverse, bitset_stats_size,
11319 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
11320 Likewise.
11321 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11322 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
11323 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
11324 bitsetv_reflexive_transitive_closure): Likewise.
11325 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
11326 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
11327 Likewise.
11328 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
11329 Likewise.
11330
11331 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
11332 Use size_t, not unsigned int, to count bytes.
11333 * lib/abitset.h (abitset_bytes): Likewise.
11334 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
11335 Likewise.
11336 * lib/bitset.h (bitset_bytes): Likewise.
11337 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
11338 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
11339 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11340 * lib/ebitset.c (ebitset_bytes): Likewise.
11341 * lib/ebitset.h (ebitset_bytes): Likewise.
11342 * lib/lbitset.c (lbitset_bytes): Likewise.
11343 * lib/lbitset.h (lbitset_bytes): Likewise.
11344
11345 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
11346 abitset_subset_p, abitset_disjoint_p, abitset_and,
11347 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
11348 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
11349 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
11350 abitset_or_and, abitset_or_and_cmp):
11351 Use bitset_windex instead of unsigned int.
11352 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
11353 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
11354 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
11355 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
11356 Likewise.
11357 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
11358
11359 * lib/bitset.c (bitset_print):
11360 Use proper printf formats for widths of integer types.
11361 * lib/bitset_stats.c (bitset_percent_histogram_print,
11362 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
11363 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11364 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
11365 * lib/lbitset.c (lbitset_bytes): Likewise.
11366
11367 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
11368 BITSET_SIZE_MAX): New macros.
11369 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
11370 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
11371 to BITSET_WINDEX_MAX.
11372
11373 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
11374 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
11375 since we now return the bitset_bindex type (not int).
11376
11377 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
11378 when computing sizes.
11379 * lib/ebitset.c (ebitset_elts_grow): Likewise.
11380
11381 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
11382 and avoid cast to unsigned.
11383
113842002-09-30 Akim Demaille <akim@epita.fr>
11385
11386 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11387 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
11388 Updates from Michael Hayes.
11389
113902002-09-30 Art Haas <ahaas@neosoft.com>
11391
11392 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
11393 invocations.
11394 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
11395 defined.
11396
113972002-09-27 Akim Demaille <akim@epita.fr>
11398
11399 Version 1.49c.
11400
114012002-09-27 Akim Demaille <akim@epita.fr>
11402
11403 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
11404 (Because of AC_LIBSOURCE).
11405
114062002-09-27 Akim Demaille <akim@epita.fr>
11407
11408 Playing with Autoscan.
11409
11410 * configure.ac: Remove the old LIBOBJ tweaks.
11411 (AC_REPLACE_FUNCS): Add strrchr and strtol.
11412 * lib/strrchr.c: New.
11413 * lib/strtol.c: New, from the Coreutils 4.5.1.
11414
114152002-09-27 Akim Demaille <akim@epita.fr>
11416
11417 Playing with Autoscan.
11418
11419 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
11420 * lib/Makefile.am (libbison_a_SOURCES): No longer include
11421 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
11422 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
11423 Coreutils 4.5.1.
11424
114252002-09-24 Akim Demaille <akim@epita.fr>
11426
11427 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
11428 (Frequently Asked Questions, Parser Stack Overflow): New.
11429
114302002-09-13 Akim Demaille <akim@epita.fr>
11431
11432 Playing with autoscan.
11433
11434 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
11435 * src/files.c (skeleton_find): Remove, unused.
11436 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
11437 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
11438
114392002-09-13 Akim Demaille <akim@epita.fr>
11440
11441 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
11442 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
11443
114442002-09-13 Akim Demaille <akim@epita.fr>
11445
11446 * configure.ac: Require 2.54.
11447 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
11448 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
11449 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
11450 Remove, provided by Autoconf macros.
11451
114522002-09-12 Akim Demaille <akim@epita.fr>
11453
11454 * m4/prereq.m4: Update, from Coreutils 4.5.1.
11455
114562002-09-12 Akim Demaille <akim@epita.fr>
11457
11458 * m4/prereq.m4: Update, from Fileutils 4.1.5.
11459 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
11460 Reported by Martin Mokrejs.
11461
114622002-09-10 Akim Demaille <akim@epita.fr>
11463
11464 * src/parse-gram.y: Associate a human readable string to each
11465 token type.
11466 * tests/regression.at (Invalid inputs): Adjust.
11467
114682002-09-10 Gary V. Vaughan <gary@gnu.org>
11469
11470 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
11471 with an Autoconf-2.5x style configure.ac.
11472
114732002-09-06 Paul Eggert <eggert@twinsun.com>
11474
11475 * doc/bison.texinfo (Conditions): Make explicit that the GPL
11476 exception applies only to yacc.c. This is a modification of a
11477 patch originally suggested by Akim Demaille.
11478
114792002-09-06 Akim Demaille <akim@epita.fr>
11480
11481 * data/c.m4 (b4_copyright): Move the GPL exception comment from
11482 here to...
11483 * data/yacc.c: here.
11484
11485 * data/lalr1.cc (struct yyltype): Don't define it, since we use
11486 LocationType.
11487 (b4_ltype): Default to yy::Location from location.hh.
11488
114892002-09-04 Jim Meyering <jim@meyering.net>
11490
11491 * data/yacc.c: Guard the declaration of yytoknum also with
11492 `#ifdef YYPRINT', so it is declared only when used.
11493
114942002-09-04 Akim Demaille <akim@epita.fr>
11495
11496 * configure.in: Rename as...
11497 * configure.ac: this.
11498 Bump to 1.49c.
11499
115002002-09-04 Akim Demaille <akim@epita.fr>
11501
11502 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
11503 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
11504 translate maintainer only messages.
11505
115062002-08-12 Paul Eggert <eggert@twinsun.com>
11507
11508 Version 1.49b.
11509
11510 * Makefile.am (SUBDIRS): Remove intl.
11511 (DISTCLEANFILES): Remove.
11512 * NEWS: Mention that GNU M4 is now required. Clarify what is
11513 meant by "larger grammars". Mention the pt_BR translation.
11514 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
11515 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
11516 Bump version from 0.11.2 to 0.11.5.
11517 (BISON_PREREQ_STAGE): Remove.
11518 (AM_GNU_GETTEXT): Use external gettext.
11519 (AC_OUTPUT): Remove intl/Makefile.
11520
11521 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
11522
11523 * data/glr.c: Include string.h, for strlen.
11524 (yyreportParseError): Use size_t for yysize.
11525 (yy_yypstack): No longer nested inside yypstates, as nested
11526 functions are not portable. Do not assume size_t is the
11527 same width as int.
11528 (yypstates): Do not assume that ptrdiff_t is the same width
11529 as int, and similarly for yyposn and YYINDEX.
11530
11531 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
11532
11533 * lib/Makefile.am (INCLUDES): Do not include from the intl
11534 directory, which has been removed.
11535 * src/Makefile.am (INCLUDES): Likewise.
11536
11537 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
11538 (bitsets_sources, additional_bitsets_sources, timevars_sources):
11539 New vars.
11540
11541 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
11542 * tests/Makefile.am (EXTRA_DIST): Likewise.
11543
11544 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
11545 Do not assume that bitset_windex is the same width as unsigned.
11546
11547 * lib/abitset.c (abitset_unused_clear): Do not assume that
11548 bitset_word is the same width as int.
11549 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
11550 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
11551 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
11552 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
11553 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
11554
11555 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
11556 portability to one's complement hosts!).
11557 * lib/ebitset.c (ebitset_op1): Likewise.
11558 * lib/lbitset.c (lbitset_op1): Likewise.
11559
11560 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
11561 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11562 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
11563 Sync with fileutils.
11564 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
11565 lib/gettext.h: Sync with diffutils.
11566
11567 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
11568 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
11569
11570 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
11571 PROTOTYPES to check for prototypes, and "defined __STDC__" to
11572 check for void *.
11573
11574 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
11575 size_t; the old version tried to do this but casted improperly.
11576 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
11577 (bitset_test): Now returns int, not unsigned long.
11578
11579 * lib/bitset_stats.c: Include "gettext.h".
11580 (_): New macro.
11581 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
11582 name locals "index", as it generates unnecessary warnings on some
11583 hosts that have an "index" function.
11584
11585 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
11586 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
11587 they need translation.
11588 * src/LR0.c (state_list_append, new_itemsets, get_state,
11589 append_states, generate_states): Likewise.
11590 * src/assoc.c (assoc_to_string): Likewise.
11591 * src/closure.c (print_closure, set_firsts, closure): Likewise.
11592 * src/gram.c (grammar_dump): Likewise.
11593 * src/injections.c (injections_compute): Likewise.
11594 * src/lalr.c (lookaheads_print): Likewise.
11595 * src/relation.c (relation_transpose): Likewise.
11596 * src/scan-gram.l: Likewise.
11597 * src/tables.c (table_grow, pack_vector): Likewise.
11598
11599 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
11600 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
11601 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
11602 * m4/mbstate_t.m4: Sync with fileutils.
11603 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
11604
11605 * po/LINGUAS: Add pt_BR.
11606 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
11607 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
11608 lib/timevar.c.
11609 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
11610 manual recommends.
11611 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
11612
11613 * src/complain.c (strerror_r): Remove decl; not needed.
11614 (strerror): Use same pattern as ../lib/error.c.
11615
11616 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
11617
11618 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
11619
11620 * src/main.c (main): Cast result of bindtextdomain and textdomain
11621 to void, to avoid a GCC warning when --disable-nls is in effect.
11622
11623 * src/scan-gram.l: Use strings rather than escapes when possible,
11624 to minimize the number of warnings from xgettext.
11625 (handle_action_dollar, handle_action_at): Don't use isdigit,
11626 as it mishandles negative chars and it may not work as expected
11627 outside the C locale.
11628
11629 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
11630 this is a GCC extension and is not portable to other compilers.
11631
11632 * src/system.h (alloca): Use same pattern as ../lib/error.c.
11633 Do not include <ctype.h>; no longer needed.
11634 Do not include <malloc.h>; no longer needed (and generates
11635 warnings on OpenBSD 3.0).
11636
11637 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
11638 it's not portable.
11639
11640 * tests/regression.at: Do not use 'cc -c input.c -o input';
11641 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
11642
11643 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
11644 exit status as failure, not just exit status 1. Sun C exits
11645 with status 2 sometimes.
11646
11647 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
11648 Use it for the two large tests.
11649
116502002-08-02 Akim Demaille <akim@epita.fr>
11651
11652 * src/conflicts.c (conflicts_output): Don't output rules never
11653 reduced here, since anyway that computation doesn't work.
11654 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
11655 (rule_useless_p, rule_never_reduced_p): New.
11656 (grammar_rules_partial_print): Use a filter instead of a range.
11657 Display the title only if needed.
11658 (grammar_rules_print): Adjust.
11659 (grammar_rules_never_reduced_report): New.
11660 * src/tables.c (action_row): Move the computation of rules never
11661 reduced to...
11662 (token_actions): here.
11663 * src/main.c (main): Make the parser before making the report, so
11664 that rules never reduced are computed.
11665 Call grammar_rules_never_reduced_report.
11666 * src/print.c (print_results): Report rules never reduced.
11667 * tests/conflicts.at, tests/reduce.at: Adjust.
11668
116692002-08-01 Akim Demaille <akim@epita.fr>
11670
11671 Instead of attaching lookaheads and duplicating the rules being
11672 reduced by a state, attach the lookaheads to the reductions.
11673
11674 * src/state.h (state_t): Remove the `lookaheads',
11675 `lookaheads_rule' member.
11676 (reductions_t): Add a `lookaheads' member.
11677 Use a regular array for the `rules'.
11678 * src/state.c (reductions_new): Initialize the lookaheads member
11679 to 0.
11680 (state_rule_lookaheads_print): Adjust.
11681 * src/state.h, src/state.c (state_reductions_find): New.
11682 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
11683 (count_rr_conflicts): Adjust.
11684 * src/lalr.c (LArule): Remove.
11685 (add_lookback_edge): Adjust.
11686 (state_lookaheads_count): New.
11687 (states_lookaheads_initialize): Merge into...
11688 (initialize_LA): this.
11689 (lalr_free): Adjust.
11690 * src/main.c (main): Don't free nullable and derives too early: it
11691 is used by --verbose.
11692 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
11693
116942002-08-01 Akim Demaille <akim@epita.fr>
11695
11696 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
11697 `rule_number_t**'.
11698 (set_derives, free_derives): Rename as...
11699 (derives_compute, derives_free): this.
11700 Adjust all dependencies.
11701 * src/nullable.c (set_nullable, free_nullable): Rename as...
11702 (nullable_compute, nullable_free): these.
11703 (rule_list_t): Store rule_t *, not rule_number_t.
11704 * src/state.c (state_rule_lookaheads_print): Directly compare rule
11705 pointers, instead of their numbers.
11706 * src/main.c (main): Call nullable_free, and derives_free earlier,
11707 as they were lo longer used.
11708
117092002-08-01 Akim Demaille <akim@epita.fr>
11710
11711 * lib/timevar.c (get_time): Include children time.
11712 * src/lalr.h (LA, LArule): Don't export them: used with the
11713 state_t.
11714 * src/lalr.c (LA, LArule): Static.
11715 * src/lalr.h, src/lalr.c (lalr_free): New.
11716 * src/main.c (main): Call it.
11717 * src/tables.c (pack_vector): Check whether loc is >= to the
11718 table_size, not >.
11719 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
11720 (tables_generate): do it, since that's also it which allocates
11721 them.
11722 Don't free LA and LArule, main does.
11723
117242002-07-31 Akim Demaille <akim@epita.fr>
11725
11726 Separate parser tables computation and output.
11727
11728 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
11729 (conflict_list, conflict_list_cnt, table, check, table_ninf)
11730 (yydefgoto, yydefact, high): Move to...
11731 * src/tables.h, src/tables.c: here.
11732 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
11733 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
11734 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
11735 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
11736 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
11737 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
11738 (action_row, save_row, token_actions, save_column, default_goto)
11739 (goto_actions, sort_actions, matching_state, pack_vector)
11740 (table_ninf_remap, pack_table, prepare_actions): Move to...
11741 * src/tables.c: here.
11742 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
11743 * src/output.c (token_actions, output_base, output_conflicts)
11744 (output_check): Merge into...
11745 (prepare_actions): this.
11746 (actions_output): Rename as...
11747 (user_actions_output): this.
11748 * src/main.c (main): Call tables_generate and tables_free.
11749
117502002-07-31 Akim Demaille <akim@epita.fr>
11751
11752 Steal GCC's --time-report support.
11753
11754 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
11755 stolen/adjusted from GCC.
11756 * m4/stage.m4: Remove time related checks.
11757 * m4/timevar.m4: New.
11758 * configure.in: Adjust.
11759 * src/system.h: Adjust to using timevar.h.
11760 * src/getargs.h, src/getargs.c: Support trace_time for
11761 --trace=time.
11762 * src/main.c (stage): Remove.
11763 (main): Replace `stage' invocations with timevar calls.
11764 * src/output.c: Insert pertinent timevar calls.
11765
117662002-07-31 Akim Demaille <akim@epita.fr>
11767
11768 Let --trace have arguments.
11769
11770 * src/getargs.h (enum trace_e): New.
11771 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
11772 (long_options, short_options): --trace/-T takes an optional
11773 argument.
11774 Change all the uses of trace_flag to reflect the new flags.
11775 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
11776
11777 Strengthen `stage' portability.
11778
11779 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
11780 * configure.in: Use it.
11781 Don't check for malloc.h and sys/times.h.
11782 * src/system.h: Include them when appropriate.
11783 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
11784 times and struct tms are available.
11785
117862002-07-30 Akim Demaille <akim@epita.fr>
11787
11788 In verbose parse error message, don't report `error' as an
11789 expected token.
11790 * tests/actions.at (Printers and Destructors): Adjust.
11791 * tests/calc.at (Calculator $1): Adjust.
11792 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
11793 error message, do not report the parser accepts the error token in
11794 that state.
11795
117962002-07-30 Akim Demaille <akim@epita.fr>
11797
11798 Normalize conflict related messages.
11799
11800 * src/complain.h, src/complain.c (warn, complain): New.
11801 * src/conflicts.c (conflicts_print): Use them.
11802 (conflict_report_yacc): New, extracted from...
11803 (conflicts_print): here.
11804 * tests/conflicts.at, tests/existing.at: Adjust.
11805
118062002-07-30 Akim Demaille <akim@epita.fr>
11807
11808 Report rules which are never reduced by the parser: those hidden
11809 by conflicts.
11810
11811 * src/LR0.c (save_reductions): Don't make the final state too
11812 different: save its reduction (accept) instead of having a state
11813 without any action (no shift or goto, no reduce).
11814 Note: the final state is now a ``regular'' state, i.e., the
11815 parsers now contain `reduce 0' as default reduction.
11816 Nevertheless, since they decide to `accept' when yystate =
11817 final_state, they still will not reduce rule 0.
11818 * src/print.c (print_actions, print_reduction): Adjust.
11819 * src/output.c (action_row): Track reduced rules.
11820 (token_actions): Report rules never reduced.
11821 * tests/conflicts.at, tests/regression.at: Adjust.
11822
118232002-07-30 Akim Demaille <akim@epita.fr>
11824
11825 `stage' was accidently included in a previous patch.
11826 Initiate its autoconfiscation.
11827
11828 * configure.in: Look for malloc.h and sys/times.h.
11829 * src/main.c (stage): Adjust.
11830 Report only when trace_flag.
11831
118322002-07-29 Akim Demaille <akim@epita.fr>
11833
11834 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
11835 state_number_t.
11836 (errs_t): symbol_t*, not symbol_number_t.
11837 (reductions_t): rule_t*, not rule_number_t.
11838 (FOR_EACH_SHIFT): New.
11839 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
11840 * src/print.c, src/print_graph.c: Adjust.
11841
118422002-07-29 Akim Demaille <akim@epita.fr>
11843
11844 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
11845
11846 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
11847 (endtoken, accept): these.
11848 * src/reader.c (reader): Set endtoken's default tag to "$end".
11849 Set undeftoken's tag to "$undefined" instead of "$undefined.".
11850 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
11851 Adjust.
11852
118532002-07-29 Akim Demaille <akim@epita.fr>
11854
11855 * src/reduce.c (reduce_grammar): When the language is empty,
11856 complain about the start symbol, not the axiom.
11857 Use its location.
11858 * tests/reduce.at (Empty Language): New.
11859
118602002-07-26 Akim Demaille <akim@epita.fr>
11861
11862 * src/reader.h, src/reader.c (gram_error): ... can't get
11863 yycontrol without making too strong assumptions on the parser
11864 itself.
11865 * src/output.c (prepare_tokens): Use the real 0th value of
11866 token_translations instead of `0'.
11867 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
11868 visible here.
11869 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
11870 for the time being: %locations ought to provide it to yyerror.
11871
118722002-07-25 Akim Demaille <akim@epita.fr>
11873
11874 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
11875 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
11876 * tests/regression.at (Web2c Actions): Adjust.
11877
118782002-07-25 Akim Demaille <akim@epita.fr>
11879
11880 Stop storing rules from 1 to nrules + 1.
11881
11882 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
11883 * src/nullable.c, src/output.c, src/print.c, src/reader.c
11884 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
11885 Iterate from 0 to nrules.
11886 Use rule_number_as_item_number and item_number_as_rule_number.
11887 Adjust to `derive' now containing possibly 0.
11888 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
11889 Handle the `- 1' part in rule numbers from/to item numbers.
11890 * src/conflicts.c (log_resolution): Fix the message which reversed
11891 shift and reduce.
11892 * src/output.c (action_row): Initialize default_rule to -1.
11893 (token_actions): Adjust.
11894 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
11895 expected output.
11896 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
11897
118982002-07-25 Akim Demaille <akim@epita.fr>
11899
11900 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
11901 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
11902 (b4_c_knr_arg_decl): New.
11903 * data/yacc.c: Use it to define yysymprint, yydestruct, and
11904 yyreport_parse_error.
11905
119062002-07-25 Akim Demaille <akim@epita.fr>
11907
11908 * data/yacc.c (yyreport_parse_error): New, extracted from...
11909 (yyparse): here.
11910 (yydestruct, yysymprint): Move above yyparse.
11911 Be K&R compliant.
11912
119132002-07-25 Akim Demaille <akim@epita.fr>
11914
11915 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
11916 replace...
11917 (b4_sint_type, b4_uint_type): these.
11918 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
11919 * tests/regression.at (Web2c Actions): Adjust.
11920
119212002-07-25 Akim Demaille <akim@epita.fr>
11922
11923 * src/gram.h (TIEM_NUMBER_MAX): New.
11924 (item_number_of_rule_number, rule_number_of_item_number): Rename
11925 as...
11926 (rule_number_as_item_number, item_number_as_rule_number): these.
11927 Adjust dependencies.
11928 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
11929 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
11930 (symbol_number_to_vector_number): New.
11931 (order): Of vector_number_t* type.
11932 (base_t, BASE_MAX, BASE_MIN): New.
11933 (froms, tos, width, pos, check): Of base_t type.
11934 (action_number_t, ACTION_MIN, ACTION_MAX): New.
11935 (actrow): Of action_number_t type.
11936 (conflrow): Of unsigned int type.
11937 (table_ninf, base_ninf): New.
11938 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
11939 (muscle_insert_int_table, muscle_insert_base_table)
11940 (muscle_insert_rule_number_table): New.
11941 (prepare_tokens): Output `toknum' as int_table.
11942 (action_row): Returns a rule_number_t.
11943 Use ACTION_MIN, not SHRT_MIN.
11944 (token_actions): yydefact is rule_number_t*.
11945 (table_ninf_remap): New.
11946 (pack_table): Use it for `base' and `table'.
11947 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
11948 replaced with...
11949 (YYPACT_NINF, YYTABLE_NINF): these.
11950 (yypact, yytable): Compute their types instead of hard-coded
11951 `short'.
11952 * tests/regression.at (Web2c Actions): Adjust.
11953
119542002-07-19 Akim Demaille <akim@epita.fr>
11955
11956 * src/scan-gram.l (id): Can start with an underscore.
11957
119582002-07-16 Akim Demaille <akim@epita.fr>
11959
11960 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
11961 Adjust all former `associativity' dependencies.
11962 * src/symtab.c (symbol_new): Default associativity is `undef', not
11963 `right'.
11964 (symbol_check_alias_consistence): Adjust.
11965
119662002-07-09 Akim Demaille <akim@epita.fr>
11967
11968 * doc/bison.texinfo: Properly set the ``header'' part.
11969 Use @dircategory ``GNU programming tools'' as per Texinfo's
11970 documentation.
11971 Use @copying.
11972
119732002-07-09 Akim Demaille <akim@epita.fr>
11974
11975 * lib/quotearg.h: Protect against multiple inclusions.
11976 * src/location.h (location_t): Add a `file' member.
11977 (LOCATION_RESET, LOCATION_PRINT): Adjust.
11978 * src/complain.c (warn_at, complain_at, fatal_at): Drop
11979 `error_one_per_line' support.
11980
119812002-07-09 Akim Demaille <akim@epita.fr>
11982
11983 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
11984 * src/reader.c (lineno): Remove.
11985 Adjust all dependencies.
11986 (get_merge_function): Take a location and use complain_at.
11987 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
11988 * tests/regression.at (Invalid inputs, Mixing %token styles):
11989 Adjust.
11990
119912002-07-09 Akim Demaille <akim@epita.fr>
11992
11993 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
11994 recovery rule, and forbid extensions when --yacc.
11995 (gram_error): Use complain_at.
11996 * src/reader.c (reader): Exit if there were parse errors.
11997
119982002-07-09 Akim Demaille <akim@epita.fr>
11999
12000 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
12001 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
12002 Reported by R Blake <blakers@mac.com>.
12003
120042002-07-09 Akim Demaille <akim@epita.fr>
12005
12006 * data/yacc.c: Output the copyright notive in the header.
12007
120082002-07-03 Akim Demaille <akim@epita.fr>
12009
12010 * src/output.c (froms, tos): Are state_number_t.
12011 (save_column): sp, sp1, and sp2 are state_number_t.
12012 (prepare): Rename `final' as `final_state_number', `nnts' as
12013 `nterms_number', `nrules' as `rules_number', `nstates' as
12014 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
12015 unused.
12016 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
12017 * data/lalr1.cc (nsym_): Remove, unused.
12018
120192002-07-03 Akim Demaille <akim@epita.fr>
12020
12021 * src/lalr.h, src/lalr.c (goto_number_t): New.
12022 * src/lalr.c (goto_list_t): New.
12023 Propagate them.
12024 * src/nullable.c (rule_list_t): New.
12025 Propagate.
12026 * src/types.h: Remove.
12027
120282002-07-03 Akim Demaille <akim@epita.fr>
12029
12030 * src/closure.c (print_fderives): Use rule_rhs_print.
12031 * src/derives.c (print_derives): Use rule_rhs_print.
12032 (rule_list_t): New, replaces `shorts'.
12033 (set_derives): Add comments.
12034 * tests/sets.at (Nullable, Firsts): Adjust.
12035
120362002-07-03 Akim Demaille <akim@epita.fr>
12037
12038 * src/output.c (prepare_actions): Free `tally' and `width'.
12039 (prepare_actions): Allocate and free `order'.
12040 * src/symtab.c (symbols_free): Free `symbols'.
12041 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
12042 * src/output.c (m4_invoke): Move to...
12043 * src/scan-skel.l: here.
12044 (<<EOF>>): Close yyout, and free its name.
12045
120462002-07-03 Akim Demaille <akim@epita.fr>
12047
12048 Fix some memory leaks, and fix a bug: state 0 was examined twice.
12049
12050 * src/LR0.c (new_state): Merge into...
12051 (state_list_append): this.
12052 (new_states): Merge into...
12053 (generate_states): here.
12054 (set_states): Don't ensure a proper `errs' state member here, do it...
12055 * src/conflicts.c (conflicts_solve): here.
12056 * src/state.h, src/state.c: Comment changes.
12057 (state_t): Rename member `shifts' as `transitions'.
12058 Adjust all dependencies.
12059 (errs_new): For consistency, also take the values as argument.
12060 (errs_dup): Remove.
12061 (state_errs_set): New.
12062 (state_reductions_set, state_transitions_set): Assert that no
12063 previous value was assigned.
12064 (state_free): New.
12065 (states_free): Use it.
12066 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
12067 temporary storage: use `errs' and `nerrs' as elsewhere.
12068 (set_conflicts): Allocate and free this `errs'.
12069
120702002-07-02 Akim Demaille <akim@epita.fr>
12071
12072 * lib/libiberty.h: New.
12073 * lib: Update the bitset implementation from upstream.
12074 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
12075 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
12076 * src/main.c: Adjust bitset stats calls.
12077
120782002-07-01 Paul Eggert <eggert@twinsun.com>
12079
12080 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
12081 char, so that negative chars don't collide with $.
12082
120832002-06-30 Akim Demaille <akim@epita.fr>
12084
12085 Have the GLR tests be `warning' checked, and fix the warnings.
12086
12087 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
12088 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
12089 (yyremoveDeletes): `yyi' and `yyj' are size_t.
12090 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
12091 (yyaddDeferredAction): static.
12092 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
12093 (yyreportParseError): yyprefix is const.
12094 yytokenp is used only when verbose.
12095 (yy__GNUC__): Replace with __GNUC__.
12096 (yypdumpstack): yyi is size_t.
12097 (yypreference): Un-yy local variables and arguments, to avoid
12098 clashes with `yyr1'. Anyway, we are not in the user name space.
12099 (yytname_size): be an int, as is compared with ints.
12100 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
12101 Use them.
12102 * tests/cxx-gram.at: Use quotation to protect $1.
12103 Use AT_COMPILE to enable warnings hunts.
12104 Prototype yylex and yyerror.
12105 `Use' argc.
12106 Include `string.h', not `strings.h'.
12107 Produce and prototype stmtMerge only when used.
12108 yylex takes a location.
12109
121102002-06-30 Akim Demaille <akim@epita.fr>
12111
12112 We spend a lot of time in quotearg, in particular when --verbose.
12113
12114 * src/symtab.c (symbol_get): Store a quoted version of the key.
12115 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
12116 Adjust all callers.
12117
121182002-06-30 Akim Demaille <akim@epita.fr>
12119
12120 * src/state.h (reductions_t): Rename member `nreds' as num.
12121 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
12122 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
12123
121242002-06-30 Akim Demaille <akim@epita.fr>
12125
12126 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
12127 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
12128 (shifts_to): Rename as...
12129 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
12130 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
12131 (TRANSITION_IS_DISABLED, transitions_to): these.
12132
121332002-06-30 Akim Demaille <akim@epita.fr>
12134
12135 * src/print.c (print_shifts, print_gotos): Merge into...
12136 (print_transitions): this.
12137 (print_transitions, print_errs, print_reductions): Align the
12138 lookaheads columns.
12139 (print_core, print_transitions, print_errs, print_state,
12140 print_grammar): Output empty lines separator before, not after.
12141 (state_default_rule_compute): Rename as...
12142 (state_default_rule): this.
12143 * tests/conflicts.at (Defaulted Conflicted Reduction),
12144 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
12145 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
12146
121472002-06-30 Akim Demaille <akim@epita.fr>
12148
12149 Display items as we display rules.
12150
12151 * src/gram.h, src/gram.c (rule_lhs_print): New.
12152 * src/gram.c (grammar_rules_partial_print): Use it.
12153 * src/print.c (print_core): Likewise.
12154 * tests/conflicts.at (Defaulted Conflicted Reduction),
12155 (Unresolved SR Conflicts): Adjust.
12156 (Unresolved SR Conflicts): Adjust and rename as...
12157 (Resolved SR Conflicts): this, as was meant.
12158 * tests/regression.at (Web2c Report): Adjust.
12159
121602002-06-30 Akim Demaille <akim@epita.fr>
12161
12162 * src/print.c (state_default_rule_compute): New, extracted from...
12163 (print_reductions): here.
12164 Pessimize, but clarify the code.
12165 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
12166
121672002-06-30 Akim Demaille <akim@epita.fr>
12168
12169 * src/output.c (action_row): Let default_rule be always a rule
12170 number.
12171
121722002-06-30 Akim Demaille <akim@epita.fr>
12173
12174 * src/closure.c (print_firsts, print_fderives, closure):
12175 Use BITSET_EXECUTE.
12176 * src/lalr.c (lookaheads_print): Likewise.
12177 * src/state.c (state_rule_lookaheads_print): Likewise.
12178 * src/print_graph.c (print_core): Likewise.
12179 * src/print.c (print_reductions): Likewise.
12180 * src/output.c (action_row): Likewise.
12181 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
12182
121832002-06-30 Akim Demaille <akim@epita.fr>
12184
12185 * src/print_graph.c: Use report_flag.
12186
121872002-06-30 Akim Demaille <akim@epita.fr>
12188
12189 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
12190 to...
12191 * src/relation.h, src/relation.c (traverse, relation_digraph)
12192 (relation_print, relation_transpose): New.
12193
121942002-06-30 Akim Demaille <akim@epita.fr>
12195
12196 * src/state.h, src/state.c (shifts_to): New.
12197 * src/lalr.c (build_relations): Use it.
12198
121992002-06-30 Akim Demaille <akim@epita.fr>
12200
12201 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
12202 (item_number_of_rule_number, rule_number_of_item_number): New.
12203 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
12204 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
12205 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
12206 Propagate their use.
12207 Much remains to be done, in particular wrt `shorts' from types.h.
12208
122092002-06-30 Akim Demaille <akim@epita.fr>
12210
12211 * src/symtab.c (symbol_new): Initialize the `printer' member.
12212
122132002-06-30 Akim Demaille <akim@epita.fr>
12214
12215 * src/LR0.c (save_reductions): Remove, replaced by...
12216 * src/state.h, src/state.c (state_reductions_set): New.
12217 (reductions, errs): Rename as...
12218 (reductions_t, errs_t): these.
12219 Adjust all dependencies.
12220
122212002-06-30 Akim Demaille <akim@epita.fr>
12222
12223 * src/LR0.c (state_list_t, state_list_append): New.
12224 (first_state, last_state): Now symbol_list_t.
12225 (this_state): Remove.
12226 (new_itemsets, append_states, save_reductions): Take a state_t as
12227 argument.
12228 (set_states, generate_states): Adjust.
12229 (save_shifts): Remove, replaced by...
12230 * src/state.h, src/state.c (state_shifts_set): New.
12231 (shifts): Rename as...
12232 (shifts_t): this.
12233 Adjust all dependencies.
12234 * src/state.h (state_t): Remove the `next' member.
12235
122362002-06-30 Akim Demaille <akim@epita.fr>
12237
12238 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
12239 escaped in slot 0.
12240
122412002-06-30 Akim Demaille <akim@epita.fr>
12242
12243 Use hash.h for the state hash table.
12244
12245 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
12246 (allocate_storage): Use state_hash_new.
12247 (free_storage): Use state_hash_free.
12248 (new_state, get_state): Adjust.
12249 * src/lalr.h, src/lalr.c (states): Move to...
12250 * src/states.h (state_t): Remove the `link' member, no longer
12251 used.
12252 * src/states.h, src/states.c: here.
12253 (state_hash_new, state_hash_free, state_hash_lookup)
12254 (state_hash_insert, states_free): New.
12255 * src/states.c (state_table, state_compare, state_hash): New.
12256 * src/output.c (output_actions): Do not free states now, since we
12257 still need to know the final_state number in `prepare', called
12258 afterwards. Do it...
12259 * src/main.c (main): here: call states_free after `output'.
12260
122612002-06-30 Akim Demaille <akim@epita.fr>
12262
12263 * src/state.h, src/state.c (state_new): New, extracted from...
12264 * src/LR0.c (new_state): here.
12265 * src/state.h (STATE_ALLOC): Move to...
12266 * src/state.c: here.
12267 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
12268 * src/state.h, src/state.c: here.
12269
122702002-06-30 Akim Demaille <akim@epita.fr>
12271
12272 * src/reader.c (gensym): Rename as...
12273 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
12274 (getsym): Rename as...
12275 (symbol_get): this.
12276
122772002-06-30 Akim Demaille <akim@epita.fr>
12278
12279 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
12280 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
12281 * src/output.c, src/print.c, src/print_graph.c: Propagate.
12282 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
12283
122842002-06-30 Akim Demaille <akim@epita.fr>
12285
12286 Make the test suite pass with warnings checked.
12287
12288 * tests/actions.at (Printers and Destructors): Improve.
12289 Avoid unsigned vs. signed issues.
12290 * tests/calc.at: Don't exercise the scanner here, do it...
12291 * tests/input.at (Torturing the Scanner): here.
12292
122932002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12294
12295 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
12296 reorganize first lines parallel to yacc.c.
12297
122982002-06-28 Akim Demaille <akim@epita.fr>
12299
12300 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
12301 (b4_token_enum, b4_token_defines): New, factored from...
12302 * data/lalr1.cc, data/yacc.c, glr.c: here.
12303
123042002-06-28 Akim Demaille <akim@epita.fr>
12305
12306 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
12307 unused variables.
12308 * src/output.c (merger_output): static.
12309
123102002-06-28 Akim Demaille <akim@epita.fr>
12311
12312 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
12313 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
12314 pacify GCC.
12315 * src/output.c (save_row): Initialize all the variables to pacify GCC.
12316
123172002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12318
12319 Accumulated changelog for new GLR parsing features.
12320
12321 * src/conflicts.c (count_total_conflicts): Change name to
12322 conflicts_total_count.
12323 * src/conflicts.h: Ditto.
12324 * src/output.c (token_actions): Use the new name.
12325 (output_conflicts): Change conflp => conflict_list_heads, and
12326 confl => conflict_list for better readability.
12327 * data/glr.c: Use the new names.
12328 * NEWS: Add self to GLR announcement.
12329
12330 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
12331
12332 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
12333 Akim Demaille.
12334
12335 * data/bison.glr: Change name to glr.c
12336 * data/glr.c: Renamed from bison.glr.
12337 * data/Makefile.am: Add glr.c
12338
12339 * src/getargs.c:
12340
12341 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
12342 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
12343
12344 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12345
12346 * data/bison.glr: Be sure to restore the
12347 current #line when returning to the skeleton contents after having
12348 exposed the input file's #line.
12349
12350 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12351
12352 * data/bison.glr: Bring up to date with changes to bison.simple.
12353
12354 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12355
12356 * data/bison.glr: Correct definitions that use b4_prefix.
12357 Various reformatting.
12358 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
12359 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
12360 yytokenp argument; now part of stack.
12361 (yychar): Define to behave as documented.
12362 (yyclearin): Ditto.
12363
12364 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12365
12366 * src/reader.h: Add declaration for free_merger_functions.
12367
12368 * src/reader.c (merge_functions): New variable.
12369 (get_merge_function): New function.
12370 (free_merger_functions): New function.
12371 (readgram): Check for %prec that is not followed by a symbol.
12372 Handle %dprec and %merge declarations.
12373 (packgram): Initialize dprec and merger fields in rules array.
12374
12375 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
12376 conflict_list_cnt, conflict_list_free): New variables.
12377 (table_grow): Also grow conflict_table.
12378 (prepare_rules): Output dprec and merger tables.
12379 (conflict_row): New function.
12380 (action_row): Output conflict lists for GLR parser. Don't use
12381 default reduction in conflicted states for GLR parser so that there
12382 are spaces for the conflict lists.
12383 (save_row): Also save conflict information.
12384 (token_actions): Allocate conflict list.
12385 (merger_output): New function.
12386 (pack_vector): Pack conflict table, too.
12387 (output_conflicts): New function to output yyconflp and yyconfl.
12388 (output_check): Allocate conflict_tos.
12389 (output_actions): Output conflict tables, also.
12390 (output_skeleton): Output b4_mergers definition.
12391 (prepare): Output b4_max_rhs_length definition.
12392 Use 'bison.glr' as default skeleton for GLR parsers.
12393
12394 * src/gram.c (glr_parser): New flag.
12395 (grammar_free): Call free_merger_functions.
12396
12397 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
12398 all pairs of conflicting reductions, rather than just all tokens
12399 causing conflicts. Needed to size conflict tables.
12400 (conflicts_output): Modify call to count_rr_conflicts for new
12401 interface.
12402 (conflicts_print): Ditto.
12403 (count_total_conflicts): New function.
12404
12405 * src/reader.h (merger_list): New type.
12406 (merge_functions): New variable.
12407
12408 * src/lex.h (tok_dprec, tok_merge): New token types.
12409
12410 * src/gram.h (rule_s): Add dprec and merger fields.
12411 (glr_parser): New flag.
12412
12413 * src/conflicts.h (count_total_conflicts): New function.
12414
12415 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
12416
12417 * doc/bison.texinfo (Generalized LR Parsing): New section.
12418 (GLR Parsers): New section.
12419 (Language and Grammar): Mention GLR parsing.
12420 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
12421 Correct typo ("tge" -> "the").
12422
12423 * data/bison.glr: New skeleton for GLR parsing.
12424
12425 * tests/cxx-gram.at: New tests for GLR parsing.
12426
12427 * tests/testsuite.at: Include cxx-gram.at.
12428
12429 * tests/Makefile.am: Add cxx-gram.at.
12430
12431 * src/parse-gram.y:
12432
12433 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
12434
12435 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
12436
124372002-06-27 Akim Demaille <akim@epita.fr>
12438
12439 * src/options.h, src/options.c: Remove.
12440 * src/getargs.c (short_options, long_options): New.
12441
124422002-06-27 Akim Demaille <akim@epita.fr>
12443
12444 * data/bison.simple, data/bison.c++: Rename as...
12445 * data/yacc.c, data/lalr1.cc: these.
12446 * doc/bison.texinfo (Environment Variables): Remove.
12447
124482002-06-25 Raja R Harinath <harinath@cs.umn.edu>
12449
12450 * src/getargs.c (report_argmatch): Initialize strtok().
12451
124522002-06-20 Akim Demaille <akim@epita.fr>
12453
12454 * data/bison.simple (b4_symbol_actions): New, replaces...
12455 (b4_symbol_destructor, b4_symbol_printer): these.
12456 (yysymprint): Be sure to call YYPRINT only for tokens, and using
12457 user token numbers.
12458
124592002-06-20 Akim Demaille <akim@epita.fr>
12460
12461 * data/bison.simple (yydestructor): Rename as...
12462 (yydestruct): this.
12463
124642002-06-20 Akim Demaille <akim@epita.fr>
12465
12466 * src/symtab.h, src/symtab.c (symbol_type_set)
12467 (symbol_destructor_set, symbol_precedence_set): The location is
12468 the last argument.
12469 Adjust all callers.
12470
124712002-06-20 Akim Demaille <akim@epita.fr>
12472
12473 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
12474 internals.
12475 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
12476 Takes a location.
12477 * src/symtab.h, src/symtab.c (symbol_class_set)
12478 (symbol_user_token_number_set): Likewise.
12479 Adjust all callers.
12480 Promote complain_at.
12481 * tests/input.at (Type Clashes): Adjust.
12482
124832002-06-20 Akim Demaille <akim@epita.fr>
12484
12485 * data/bison.simple (YYLEX): Fix the declaration when
12486 %pure-parser.
12487
124882002-06-20 Akim Demaille <akim@epita.fr>
12489
12490 * data/bison.simple (yysymprint): Don't print the token number,
12491 just its name.
12492 * tests/actions.at (Destructors): Rename as...
12493 (Printers and Destructors): this.
12494 Also exercise %printer.
12495
124962002-06-20 Akim Demaille <akim@epita.fr>
12497
12498 * data/bison.simple (YYDSYMPRINT): New.
12499 Use it to remove many of the #if YYDEBUG/if (yydebug).
12500
125012002-06-20 Akim Demaille <akim@epita.fr>
12502
12503 * src/symtab.h, src/symtab.c (symbol_t): printer and
12504 printer_location are new members.
12505 (symbol_printer_set): New.
12506 * src/parse-gram.y (PERCENT_PRINTER): New token.
12507 Handle its associated rule.
12508 * src/scan-gram.l: Adjust.
12509 (handle_destructor_at, handle_destructor_dollar): Rename as...
12510 (handle_symbol_code_at, handle_symbol_code_dollar): these.
12511 * src/output.c (symbol_printers_output): New.
12512 (output_skeleton): Call it.
12513 * data/bison.simple (yysymprint): New. Cannot be named yyprint
12514 since there are already many grammar files with a user `yyprint'.
12515 Replace the calls to YYPRINT to calls to yysymprint.
12516 * tests/calc.at: Adjust.
12517 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
12518 taking advantage of parser very internal details (stack size!).
12519
125202002-06-20 Akim Demaille <akim@epita.fr>
12521
12522 * src/scan-gram.l: Complete the scanner with the missing patterns
12523 to pacify Flex.
12524 Use `quote' and `symbol_tag_get' where appropriate.
12525
125262002-06-19 Akim Demaille <akim@epita.fr>
12527
12528 * tests/actions.at (Destructors): Augment to test locations.
12529 * data/bison.simple (yydestructor): Pass it the current location
12530 if locations are enabled.
12531 Prototype only when __STDC__ or C++.
12532 Change the argument names to move into the yy name space: there is
12533 user code here.
12534
125352002-06-19 Akim Demaille <akim@epita.fr>
12536
12537 * data/bison.simple (b4_pure_if): New.
12538 Use it instead of #ifdef YYPURE.
12539
125402002-06-19 Akim Demaille <akim@epita.fr>
12541
12542 * data/bison.simple (b4_location_if): New.
12543 Use it instead of #ifdef YYLSP_NEEDED.
12544
125452002-06-19 Akim Demaille <akim@epita.fr>
12546
12547 Prepare @$ in %destructor, but currently don't bind it in the
12548 skeleton, as %location use is not cleaned up yet.
12549
12550 * src/scan-gram.l (handle_dollar, handle_destructor_at)
12551 (handle_action_at): New.
12552 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
12553 a braced_code_t and a location as additional arguments.
12554 (handle_destructor_dollar): Instead of requiring `b4_eval', just
12555 unquote one when outputting `b4_dollar_dollar'.
12556 Adjust callers.
12557 * data/bison.simple (b4_eval): Remove.
12558 (b4_symbol_destructor): Adjust.
12559 * tests/input.at (Invalid @n): Adjust.
12560
125612002-06-19 Zack Weinberg <zack@codesourcery.com>
12562
12563 * doc/bison.texinfo: Document ability to have multiple
12564 prologue sections.
12565
125662002-06-18 Akim Demaille <akim@epita.fr>
12567
12568 * src/files.c (compute_base_names): When computing the output file
12569 names from the input file name, strip the directory part.
12570
125712002-06-18 Akim Demaille <akim@epita.fr>
12572
12573 * data/bison.simple.new: Comment changes.
12574 Reported by Andreas Schwab.
12575
125762002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
12577
12578 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
12579 there are no `label `yyoverflowlab' defined but not used' warnings
12580 when yyoverflow is defined.
12581
125822002-06-18 Akim Demaille <akim@epita.fr>
12583
12584 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
12585 new member.
12586 (symbol_destructor_set): Adjust.
12587 * src/output.c (symbol_destructors_output): Output the destructor
12588 locations.
12589 Output the symbol name.
12590 * data/bison.simple (b4_symbol_destructor): Adjust.
12591
125922002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
12593 and Akim Demaille <akim@epita.fr>
12594
12595 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
12596 what's left on the stack when the error recovery hits EOF.
12597 * tests/actions.at (Destructors): Complete to exercise this case.
12598
125992002-06-17 Akim Demaille <akim@epita.fr>
12600
12601 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
12602 arguments is really empty, not only equal to `[]'.
12603 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
12604 member.
12605 (symbol_destructor_set): New.
12606 * src/output.c (symbol_destructors_output): New.
12607 * src/reader.h (brace_code_t, current_braced_code): New.
12608 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
12609 (handle_dollar): Rename as...
12610 (handle_action_dollar): this.
12611 (handle_destructor_dollar): New.
12612 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
12613 (grammar_declaration): Use it.
12614 * data/bison.simple (yystos): Is always defined.
12615 (yydestructor): New.
12616 * tests/actions.at (Destructors): New.
12617 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
12618
126192002-06-17 Akim Demaille <akim@epita.fr>
12620
12621 * src/symlist.h, src/symlist.c (symbol_list_length): New.
12622 * src/scan-gram.l (handle_dollar, handle_at): Compute the
12623 rule_length only when needed.
12624 * src/output.c (actions_output, token_definitions_output): Output
12625 the full M4 block.
12626 * src/symtab.c: Don't access directly to the symbol tag, use
12627 symbol_tag_get.
12628 * src/parse-gram.y: Use symbol_list_free.
12629
126302002-06-17 Akim Demaille <akim@epita.fr>
12631
12632 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
12633 (symbol_list_prepend, get_type_name): Move to...
12634 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
12635 (symbol_list_prepend, symbol_list_n_type_name_get): here.
12636 Adjust all callers.
12637 (symbol_list_free): New.
12638 * src/scan-gram.l (handle_dollar): Takes a location.
12639 * tests/input.at (Invalid $n): Adjust.
12640
126412002-06-17 Akim Demaille <akim@epita.fr>
12642
12643 * src/reader.h, src/reader.c (symbol_list_new): Export it.
12644 (symbol_list_prepend): New.
12645 * src/parse-gram.y (%union): `list' is a new member.
12646 (symbols.1): New, replaces...
12647 (terms_to_prec.1, nterms_to_type.1): these.
12648 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
12649 Take a location as additional argument.
12650 Adjust all callers.
12651
126522002-06-15 Akim Demaille <akim@epita.fr>
12653
12654 * src/parse-gram.y: Move %token in the declaration section so that
12655 we don't depend upon CVS Bison.
12656
126572002-06-15 Akim Demaille <akim@epita.fr>
12658
12659 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
12660 * src/print.c (print_core): Use it.
12661
126622002-06-15 Akim Demaille <akim@epita.fr>
12663
12664 * src/conflicts.c (log_resolution): Accept the rule involved in
12665 the sr conflicts instead of the lookahead number that points to
12666 that rule.
12667 (flush_reduce): Accept the current lookahead vector as argument,
12668 instead of the index in LA.
12669 (resolve_sr_conflict): Accept the current number of lookahead
12670 bitset to consider for the STATE, instead of the index in LA.
12671 (set_conflicts): Adjust.
12672 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
12673
126742002-06-15 Akim Demaille <akim@epita.fr>
12675
12676 * src/state.h (state_t): Replace the `lookaheadsp' member, a
12677 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
12678 Adjust all dependencies.
12679 * src/lalr.c (initialize_lookaheads): Split into...
12680 (states_lookaheads_count, states_lookaheads_initialize): these.
12681 (lalr): Adjust.
12682
126832002-06-15 Akim Demaille <akim@epita.fr>
12684
12685 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
12686 out of...
12687 (grammar_rules_print): here.
12688 * src/reduce.c (reduce_output): Use it.
12689 * tests/reduce.at (Useless Rules, Reduced Automaton)
12690 (Underivable Rules): Adjust.
12691
126922002-06-15 Akim Demaille <akim@epita.fr>
12693
12694 Copy BYacc's nice way to report the grammar.
12695
12696 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
12697 New.
12698 Don't print the rules' location, it is confusing and useless.
12699 (rule_print): Use grammar_rhs_print.
12700 * src/print.c (print_grammar): Use grammar_rules_print.
12701
127022002-06-15 Akim Demaille <akim@epita.fr>
12703
12704 Complete and rationalize `useless thing' warnings.
12705
12706 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
12707 (symbol_tag_print): New.
12708 Use them everywhere in place of accessing directly the tag member.
12709 * src/gram.h, src/gram.c (rule_print): New.
12710 Use it where a rule used to be printed `by hand'.
12711 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
12712 (reduce_grammar_tables): Report the useless rules.
12713 (reduce_print): Useless things are a warning, not an error.
12714 Report it as such.
12715 * tests/reduce.at (Useless Nonterminals, Useless Rules):
12716 (Reduced Automaton, Underivable Rules): Adjust.
12717 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
12718 * tests/conflicts.at (Unresolved SR Conflicts)
12719 (Solved SR Conflicts): Adjust.
12720
127212002-06-15 Akim Demaille <akim@epita.fr>
12722
12723 Let symbols have a location.
12724
12725 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
12726 (getsym): Adjust.
12727 Adjust all callers.
12728 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
12729 Use location_t, not int.
12730 * src/symtab.c (symbol_check_defined): Take advantage of the
12731 location.
12732 * tests/regression.at (Invalid inputs): Adjust.
12733
127342002-06-15 Akim Demaille <akim@epita.fr>
12735
12736 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
12737 (input): Don't try to initialize yylloc here, do it in the
12738 scanner.
12739 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
12740 * src/gram.h (rule_t): Change line and action_line into location
12741 and action_location, of location_t type.
12742 Adjust all dependencies.
12743 * src/location.h, src/location.c (empty_location): New.
12744 * src/reader.h, src/reader.c (grammar_start_symbol_set)
12745 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
12746 (grammar_current_rule_symbol_append)
12747 (grammar_current_rule_action_append): Expect a location as argument.
12748 * src/reader.c (grammar_midrule_action): Adjust to attach an
12749 action's location as dummy symbol location.
12750 * src/symtab.h, src/symtab.c (startsymbol_location): New.
12751 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
12752 the line numbers.
12753
127542002-06-14 Akim Demaille <akim@epita.fr>
12755
12756 Grammar declarations may be found in the grammar section.
12757
12758 * src/parse-gram.y (rules_or_grammar_declaration): New.
12759 (declarations): Each declaration may end with a semicolon, not
12760 just...
12761 (grammar_declaration): `"%union"'.
12762 (grammar): Branch to rules_or_grammar_declaration.
12763
127642002-06-14 Akim Demaille <akim@epita.fr>
12765
12766 * src/main.c (main): Invoke scanner_free.
12767
127682002-06-14 Akim Demaille <akim@epita.fr>
12769
12770 * src/output.c (m4_invoke): Extracted from...
12771 (output_skeleton): here.
12772 Free tempfile.
12773
127742002-06-14 Akim Demaille <akim@epita.fr>
12775
12776 * src/parse-gram.y (directives, directive, gram)
12777 (grammar_directives, precedence_directives, precedence_directive):
12778 Rename as...
12779 (declarations, declaration, grammar, grammar_declaration)
12780 (precedence_declaration, precedence_declarator): these.
12781 (symbol_declaration): New.
12782
127832002-06-14 Akim Demaille <akim@epita.fr>
12784
12785 * src/files.c (action_obstack): Remove, unused.
12786 (output_obstack): Remove it, and all its dependencies, as it is no
12787 longer needed.
12788 * src/reader.c (epilogue_set): Build the epilogue in the
12789 muscle_obstack.
12790 * src/output.h, src/output.c (muscle_obstack): Move to...
12791 * src/muscle_tab.h, src/muscle_tab.h: here.
12792 (muscle_init): Initialize muscle_obstack.
12793 (muscle_free): New.
12794 * src/main.c (main): Call it.
12795
127962002-06-14 Akim Demaille <akim@epita.fr>
12797
12798 * src/location.h: New, extracted from...
12799 * src/reader.h: here.
12800 * src/Makefile.am (noinst_HEADERS): Merge into
12801 (bison_SOURCES): this.
12802 Add location.h.
12803 * src/parse-gram.y: Use location_t instead of Bison's.
12804 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
12805 Use location_t instead of ints.
12806
128072002-06-14 Akim Demaille <akim@epita.fr>
12808
12809 * data/bison.simple, data/bison.c++: Be sure to restore the
12810 current #line when returning to the skeleton contents after having
12811 exposed the input file's #line.
12812
128132002-06-12 Akim Demaille <akim@epita.fr>
12814
12815 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
12816 eager.
12817 * tests/actions.at (Exotic Dollars): New.
12818
128192002-06-12 Akim Demaille <akim@epita.fr>
12820
12821 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
12822 ['"/] too eagerly.
12823 * tests/input.at (Torturing the Scanner): New.
12824
128252002-06-11 Akim Demaille <akim@epita.fr>
12826
12827 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
12828 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
12829 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
12830 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
12831 * src/reader.c (reader): Use it.
12832
128332002-06-11 Akim Demaille <akim@epita.fr>
12834
12835 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
12836 Adjust all callers.
12837 (scanner_last_string_free): New.
12838
128392002-06-11 Akim Demaille <akim@epita.fr>
12840
12841 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
12842 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
12843 (last_string, YY_OBS_FREE): New.
12844 Use them when returning an ID.
12845
128462002-06-11 Akim Demaille <akim@epita.fr>
12847
12848 Have Bison grammars parsed by a Bison grammar.
12849
12850 * src/reader.c, src/reader.h (prologue_augment): New.
12851 * src/reader.c (copy_definition): Remove.
12852
12853 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
12854 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
12855 (grammar_current_rule_prec_set, grammar_current_rule_check)
12856 (grammar_current_rule_symbol_append)
12857 (grammar_current_rule_action_append): Export.
12858 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
12859 (symbol_list_action_append): Remove.
12860 Hook the routines from reader.
12861 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
12862 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
12863
12864 * src/reader.c (read_declarations): Remove, unused.
12865
12866 * src/parse-gram.y: Handle the epilogue.
12867 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
12868 (grammar_start_symbol_set): this.
12869 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
12870 * src/reader.c (readgram): Remove, unused.
12871 (reader): Adjust to insert eoftoken and axiom where appropriate.
12872
12873 * src/reader.c (copy_dollar): Replace with...
12874 * src/scan-gram.h (handle_dollar): this.
12875 * src/parse-gram.y: Remove `%thong'.
12876
12877 * src/reader.c (copy_at): Replace with...
12878 * src/scan-gram.h (handle_at): this.
12879
12880 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
12881 New.
12882
12883 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
12884 time being.
12885
12886 * src/reader.h, src/reader.c (grammar_rule_end): New.
12887
12888 * src/parse.y (current_type, current_class): New.
12889 Implement `%nterm', `%token' support.
12890 Merge `%term' into `%token'.
12891 (string_as_id): New.
12892 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
12893 type name.
12894
12895 * src/parse-gram.y: Be sure to handle properly the beginning of
12896 rules.
12897
12898 * src/parse-gram.y: Handle %type.
12899 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
12900
12901 * src/parse-gram.y: More directives support.
12902 * src/options.c: No longer handle source directives.
12903
12904 * src/parse-gram.y: Fix %output.
12905
12906 * src/parse-gram.y: Handle %union.
12907 Use the prologue locations.
12908 * src/reader.c (parse_union_decl): Remove.
12909
12910 * src/reader.h, src/reader.c (epilogue_set): New.
12911 * src/parse-gram.y: Use it.
12912
12913 * data/bison.simple, data/bison.c++: b4_stype is now either not
12914 defined, then default to int, or to the contents of %union,
12915 without `union' itself.
12916 Adjust.
12917 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
12918
12919 * src/output.c (actions_output): Don't output braces, as they are
12920 already handled by the scanner.
12921
12922 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
12923 characters to themselves.
12924
12925 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
12926 that the epilogue has a proper #line.
12927
12928 * src/parse-gram.y: Handle precedence/associativity.
12929
12930 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
12931 a terminal.
12932 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
12933 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
12934 at all to define terminals that cannot be emitted.
12935
12936 * src/scan-gram.l: Escape M4 characters.
12937
12938 * src/scan-gram.l: Working properly with escapes in user
12939 strings/characters.
12940
12941 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
12942 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
12943 grammar.
12944 Use more modest sizes, as for the time being the parser does not
12945 release memory, and therefore the process swallows a huge amount
12946 of memory.
12947
12948 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
12949 stricter %token grammar.
12950
12951 * src/symtab.h (associativity): Add `undef_assoc'.
12952 (symbol_precedence_set): Do nothing when passed an undef_assoc.
12953 * src/symtab.c (symbol_check_alias_consistence): Adjust.
12954
12955 * tests/regression.at (Invalid %directive): Remove, as it is now
12956 meaningless.
12957 (Invalid inputs): Adjust to the new error messages.
12958 (Token definitions): The new grammar doesn't allow too many
12959 eccentricities.
12960
12961 * src/lex.h, src/lex.c: Remove.
12962 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
12963 (copy_character, copy_string2, copy_string, copy_identifier)
12964 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
12965 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
12966 (parse_action): Remove.
12967 * po/POTFILES.in: Adjust.
12968
129692002-06-11 Akim Demaille <akim@epita.fr>
12970
12971 * src/reader.c (parse_action): Don't store directly into the
12972 rule's action member: return the action as a string.
12973 Don't require `rule_length' as an argument: compute it.
12974 (grammar_current_rule_symbol_append)
12975 (grammar_current_rule_action_append): New, eved out from
12976 (readgram): here.
12977 Remove `action_flag', `rulelength', unused now.
12978
129792002-06-11 Akim Demaille <akim@epita.fr>
12980
12981 * src/reader.c (grammar_current_rule_prec_set).
12982 (grammar_current_rule_check): New, eved out from...
12983 (readgram): here.
12984 Remove `xaction', `first_rhs': useless.
12985 * tests/input.at (Type clashes): New.
12986 * tests/existing.at (GNU Cim Grammar): Adjust.
12987
129882002-06-11 Akim Demaille <akim@epita.fr>
12989
12990 * src/reader.c (grammar_midrule_action): New, Eved out from
12991 (readgram): here.
12992
129932002-06-11 Akim Demaille <akim@epita.fr>
12994
12995 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
12996 New.
12997 (readgram): Use them as replacement of inlined code, crule and
12998 crule1.
12999
130002002-06-11 Akim Demaille <akim@epita.fr>
13001
13002 * src/reader.c (grammar_end, grammar_symbol_append): New.
13003 (readgram): Use them.
13004 Make the use of `p' as local as possible.
13005
130062002-06-10 Akim Demaille <akim@epita.fr>
13007
13008 GCJ's parser requires the tokens to be defined before the prologue.
13009
13010 * data/bison.simple: Output the token definition before the user's
13011 prologue.
13012 * tests/regression.at (Braces parsing, Duplicate string)
13013 (Mixing %token styles): Check the output from bison.
13014 (Early token definitions): New.
13015
130162002-06-10 Akim Demaille <akim@epita.fr>
13017
13018 * src/symtab.c (symbol_user_token_number_set): Don't complain when
13019 assigning twice the same user number to a token, so that we can
13020 use it in...
13021 * src/lex.c (lex): here.
13022 Also use `symbol_class_set' instead of hand written code.
13023 * src/reader.c (parse_assoc_decl): Likewise.
13024
130252002-06-10 Akim Demaille <akim@epita.fr>
13026
13027 * src/symtab.c, src/symtab.c (symbol_class_set)
13028 (symbol_user_token_number_set): New.
13029 * src/reader.c (parse_token_decl): Use them.
13030 Use a switch instead of ifs.
13031 Use a single argument.
13032
130332002-06-10 Akim Demaille <akim@epita.fr>
13034
13035 Remove `%thong' support as it is undocumented, unused, duplicates
13036 `%token's job, and creates useless e-mail traffic with people who
13037 want to know what it is, why it is undocumented, unused, and
13038 duplicates `%token's job.
13039
13040 * src/reader.c (parse_thong_decl): Remove.
13041 * src/options.c (option_table): Remove "thong".
13042 * src/lex.h (tok_thong): Remove.
13043
130442002-06-10 Akim Demaille <akim@epita.fr>
13045
13046 * src/symtab.c, src/symtab.c (symbol_type_set)
13047 (symbol_precedence_set): New.
13048 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
13049 (value_components_used): Remove, unused.
13050
130512002-06-09 Akim Demaille <akim@epita.fr>
13052
13053 Move symbols handling code out of the reader.
13054
13055 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
13056 (axiom): Move to...
13057 * src/symtab.h, src/symtab.c: here.
13058
13059 * src/gram.c (start_symbol): Remove: use startsymbol->number.
13060 * src/reader.c (startval): Rename as...
13061 * src/symtab.h, src/symtab.c (startsymbol): this.
13062 * src/reader.c: Adjust.
13063
13064 * src/reader.c (symbol_check_defined, symbol_make_alias)
13065 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
13066 (token_translations_init)
13067 Move to...
13068 * src/symtab.c: here.
13069 * src/reader.c (packsymbols): Move to...
13070 * src/symtab.h, src/symtab.c (symbols_pack): here.
13071 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
13072 argument.
13073
130742002-06-03 Akim Demaille <akim@epita.fr>
13075
13076 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
13077 then statements.
13078
130792002-06-03 Akim Demaille <akim@epita.fr>
13080
13081 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
13082 structs with non literals.
13083 * src/scan-skel.l: never-interactive.
13084 * src/conflicts.c (enum conflict_resolution_e): No trailing
13085 comma.
13086 * src/getargs.c (usage): Split long literal strings.
13087 Reported by Hans Aberg.
13088
130892002-05-28 Akim Demaille <akim@epita.fr>
13090
13091 * data/bison.c++: Use C++ ostreams.
13092 (cdebug_): New member.
13093
130942002-05-28 Akim Demaille <akim@epita.fr>
13095
13096 * src/output.c (output_skeleton): Be sure to allocate enough room
13097 for `/' _and_ for `\0' in full_skeleton.
13098
130992002-05-28 Akim Demaille <akim@epita.fr>
13100
13101 * data/bison.c++: Catch up with bison.simple:
13102 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13103 and Paul Eggert <eggert@twinsun.com>: `error' handing.
13104 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
13105 and popping traces.
13106
131072002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13108
13109 * src/output.c (output_skeleton): Put an explicit path in front of
13110 the skeleton file name, rather than relying on the -I directory,
13111 to partially alleviate effects of having a skeleton file lying around
13112 in the current directory.
13113
131142002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13115
13116 * src/conflicts.c (log_resolution): Correct typo:
13117 obstack_printf should be obstack_fgrow1.
13118
131192002-05-26 Akim Demaille <akim@epita.fr>
13120
13121 * src/state.h (state_t): `solved_conflicts' is a new member.
13122 * src/LR0.c (new_state): Set it to 0.
13123 * src/conflicts.h, src/conflicts.c (print_conflicts)
13124 (free_conflicts, solve_conflicts): Rename as...
13125 (conflicts_print, conflicts_free, conflicts_solve): these.
13126 Adjust callers.
13127 * src/conflicts.c (enum conflict_resolution_e)
13128 (solved_conflicts_obstack): New, used by...
13129 (log_resolution): this.
13130 Adjust to attach the conflict resolution to each state.
13131 Complete the description with the precedence/associativity
13132 information.
13133 (resolve_sr_conflict): Adjust.
13134 * src/print.c (print_state): Output its solved_conflicts.
13135 * tests/conflicts.at (Unresolved SR Conflicts)
13136 (Solved SR Conflicts): Exercise --report=all.
13137
131382002-05-26 Akim Demaille <akim@epita.fr>
13139
13140 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
13141 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
13142 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
13143 (token_number_t, item_number_as_token_number)
13144 (token_number_as_item_number, muscle_insert_token_number_table):
13145 Rename as...
13146 (symbol_number_t, item_number_as_symbol_number)
13147 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
13148 these, since it is more appropriate.
13149
131502002-05-26 Akim Demaille <akim@epita.fr>
13151
13152 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
13153 `Error:' lines.
13154 * data/bison.simple (yystos) [YYDEBUG]: New.
13155 (yyparse) [YYDEBUG]: Display the symbols which are popped during
13156 error recovery.
13157 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
13158
131592002-05-25 Akim Demaille <akim@epita.fr>
13160
13161 * doc/bison.texinfo (Debugging): Split into...
13162 (Tracing): this new section, its former contents, and...
13163 (Understanding): this new section.
13164 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
13165 by...
13166 (report_flag): this.
13167 Adjust all dependencies.
13168 (report_args, report_types, report_argmatch): New.
13169 (usage, getargs): Report/support -r, --report.
13170 * src/options.h
13171 (struct option_table_struct): Rename as..,
13172 (struct option_table_s): this.
13173 Rename the `set_flag' member to `flag' to match with getopt_long's
13174 struct.
13175 * src/options.c (option_table): Split verbose into an entry for
13176 %verbose, and another for --verbose.
13177 Support --report/-r, so remove -r from the obsolete --raw.
13178 * src/print.c: Attach full item sets and lookaheads reports to
13179 report_flag instead of trace_flag.
13180 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
13181
131822002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13183 and Paul Eggert <eggert@twinsun.com>
13184
13185 * data/bison.simple (yyparse): Correct error handling to conform to
13186 POSIX and yacc. Specifically, after syntax error is discovered,
13187 do not reduce further before shifting the error token.
13188 Clean up the code a bit by removing the labels yyerrdefault,
13189 yyerrhandle, yyerrpop.
13190 * NEWS: Document the above.
13191
131922002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13193
13194 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
13195 type; it isn't always big enough, since it doesn't necessarily
13196 include non-terminals.
13197 (yytranslate): Expand definition of yy_token_number_type, so that
13198 the latter can be removed.
13199 (yy_token_number_type): Remove, only one use.
13200 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
13201 don't use TokenNumberType as element type.
13202
13203 * tests/regression.at: Modify expected output to agree with change
13204 to yyr1 and yytranslate.
13205
132062002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
13207
13208 * src/reader.c (parse_action): Use copy_character instead of
13209 obstack_1grow.
13210
132112002-05-13 Akim Demaille <akim@epita.fr>
13212
13213 * tests/regression.at (Token definitions): Prototype yylex and
13214 yyerror.
13215
132162002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13217
13218 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
13219 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
13220 32-bit arithmetic.
13221 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
13222
132232002-05-07 Akim Demaille <akim@epita.fr>
13224
13225 * tests/synclines.at: Be sure to prototype yylex and yyerror to
13226 avoid GCC warnings.
13227
132282002-05-07 Akim Demaille <akim@epita.fr>
13229
13230 Kill GCC warnings.
13231
13232 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
13233 over the RHS of each rule.
13234 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
13235 * src/state.h (state_t): Member `nitems' is unsigned short.
13236 * src/LR0.c (get_state): Adjust.
13237 * src/reader.c (packgram): Likewise.
13238 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
13239 `Type'.
13240 (muscle_insert_int_table): Remove, unused.
13241 (prepare_rules): Remove `max'.
13242
132432002-05-06 Akim Demaille <akim@epita.fr>
13244
13245 * src/closure.c (print_firsts): Display of the symbol tags.
13246 (bitmatrix_print): Move to...
13247 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
13248 here.
13249 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
13250
132512002-05-06 Akim Demaille <akim@epita.fr>
13252
13253 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
13254 hash_do_for_each.
13255
132562002-05-06 Akim Demaille <akim@epita.fr>
13257
13258 * src/LR0.c (new_state, get_state): Instead of using the global
13259 `kernel_size' and `kernel_base', have two new arguments:
13260 `core_size' and `core'.
13261 Adjust callers.
13262
132632002-05-06 Akim Demaille <akim@epita.fr>
13264
13265 * src/reader.c (packgram): No longer end `ritem' with a 0
13266 sentinel: it is not used.
13267
132682002-05-05 Akim Demaille <akim@epita.fr>
13269
13270 New experimental feature: display the lookaheads in the report and
13271 graph.
13272
13273 * src/print (print_core): When --trace-flag, display the rules
13274 lookaheads.
13275 * src/print_graph.c (print_core): Likewise.
13276 Swap the arguments.
13277 Adjust caller.
13278
132792002-05-05 Akim Demaille <akim@epita.fr>
13280
13281 * tests/torture.at (Many lookaheads): New test.
13282
132832002-05-05 Akim Demaille <akim@epita.fr>
13284
13285 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
13286 (GENERATE_MUSCLE_INSERT_TABLE): this.
13287 (output_int_table, output_unsigned_int_table, output_short_table)
13288 (output_token_number_table, output_item_number_table): Replace with...
13289 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
13290 (muscle_insert_short_table, muscle_insert_token_number_table)
13291 (muscle_insert_item_number_table): these.
13292 Adjust all callers.
13293 (prepare_tokens): Don't free `translations', since...
13294 * src/reader.h, src/reader.c (grammar_free): do it.
13295 Move to...
13296 * src/gram.h, src/gram.c (grammar_free): here.
13297 * data/bison.simple, data/bison.c++: b4_token_number_max is now
13298 b4_translate_max.
13299
133002002-05-05 Akim Demaille <akim@epita.fr>
13301
13302 * src/output.c (output_unsigned_int_table): New.
13303 (prepare_rules): `i' is unsigned.
13304 `prhs', `rline', `r2' are unsigned int.
13305 Rename muscle `rhs_number_max' as `rhs_max'.
13306 Output muscles `prhs_max', `rline_max', and `r2_max'.
13307 Free rline and r1.
13308 * data/bison.simple, data/bison.c++: Adjust to use these muscles
13309 to compute types instead of constant types.
13310 * tests/regression.at (Web2c Actions): Adjust.
13311
133122002-05-04 Akim Demaille <akim@epita.fr>
13313
13314 * src/symtab.h (SALIAS, SUNDEF): Rename as...
13315 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
13316 Adjust dependencies.
13317 * src/output.c (token_definitions_output): Be sure not to output a
13318 `#define 'a'' when fed with `%token 'a' "a"'.
13319 * tests/regression.at (Token definitions): New.
13320
133212002-05-03 Paul Eggert <eggert@twinsun.com>
13322
13323 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
13324 for K&R C.
13325
133262002-05-03 gettextize <bug-gnu-gettext@gnu.org>
13327
13328 * Makefile.am (SUBDIRS): Remove intl.
13329 (EXTRA_DIST): Add config/config.rpath.
13330
133312002-05-03 Akim Demaille <akim@epita.fr>
13332
13333 * data/bison.simple (m4_if): Don't output empty enums.
13334 And actually, output valid enum definitions :(.
13335
133362002-05-03 Akim Demaille <akim@epita.fr>
13337
13338 * configure.bat: Remove, completely obsolete.
13339 * Makefile.am (EXTRA_DIST): Adjust.
13340 Don't distribute config.rpath...
13341 * config/Makefile.am (EXTRA_DIST): Do it.
13342
133432002-05-03 Akim Demaille <akim@epita.fr>
13344
13345 * configure.in (GETTEXT_VERSION): New.
13346 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
13347
133482002-05-03 Akim Demaille <akim@epita.fr>
13349
13350 * data/bison.simple (b4_token_enum): New.
13351 (b4_token_defines): Use it to output tokens both as #define and
13352 enums.
13353 Suggested by Paul Eggert.
13354 * src/output.c (token_definitions_output): Don't output spurious
13355 white spaces.
13356
133572002-05-03 Akim Demaille <akim@epita.fr>
13358
13359 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
13360
133612002-05-02 Robert Anisko <robert@lrde.epita.fr>
13362
13363 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
13364 Update the stack class, give a try to deque as the default container.
13365
133662002-05-02 Akim Demaille <akim@epita.fr>
13367
13368 * data/bison.simple (yyparse): Do not implement @$ = @1.
13369 (YYLLOC_DEFAULT): Adjust to do it.
13370 * doc/bison.texinfo (Location Default Action): Fix.
13371
133722002-05-02 Akim Demaille <akim@epita.fr>
13373
13374 * src/reader.c (parse_braces): Merge into...
13375 (parse_action): this.
13376
133772002-05-02 Akim Demaille <akim@epita.fr>
13378
13379 * configure.in (ALL_LINGUAS): Remove.
13380 * po/LINGUAS, hr.po: New.
13381
133822002-05-02 Akim Demaille <akim@epita.fr>
13383
13384 Remove the so called hairy (semantic) parsers.
13385
13386 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
13387 * src/gram.h, src/gram.c (semantic_parser): Remove.
13388 (rule_t): Remove the guard and guard_line members.
13389 * src/lex.h (token_t): remove tok_guard.
13390 * src/options.c (option_table): Remove %guard and %semantic_parser
13391 support.
13392 * src/output.c, src/output.h (guards_output): Remove.
13393 (prepare): Adjust.
13394 (token_definitions_output): Don't output the `T'
13395 tokens (???).
13396 (output_skeleton): Don't output the guards.
13397 * src/files.c, src/files.c (attrsfile): Remove.
13398 * src/reader.c (symbol_list): Remove the guard and guard_line
13399 members.
13400 Adjust dependencies.
13401 (parse_guard): Remove.
13402 * data/bison.hairy: Remove.
13403 * doc/bison.texinfo (Environment Variables): Remove occurrences of
13404 BISON_HAIRY.
13405
134062002-05-02 Akim Demaille <akim@epita.fr>
13407
13408 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
13409 (parse_guard): Rename the formal argument `stack_offset' as
13410 `rule_length', which is more readable.
13411 Adjust callers.
13412 (copy_at, copy_dollar): Instead of outputting the hard coded
13413 values of $$, $n and so forth, output invocation to b4_lhs_value,
13414 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
13415 Note: this patch partially drops `semantic-parser' support: it
13416 always does `rule_length - n', where semantic parsers ought to
13417 always use `-n'.
13418 * data/bison.simple, data/bison.c++ (b4_lhs_value)
13419 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
13420
134212002-05-02 Akim Demaille <akim@epita.fr>
13422
13423 * configure.in (AC_INIT): Bump to 1.49b.
13424 (AM_INIT_AUTOMAKE): Short invocation.
13425
134262002-05-02 Akim Demaille <akim@epita.fr>
13427
13428 Version 1.49a.
13429
134302002-05-01 Akim Demaille <akim@epita.fr>
13431
13432 * src/skeleton.h: Remove.
13433
134342002-05-01 Akim Demaille <akim@epita.fr>
13435
13436 * src/skeleton.h: Fix the #endif.
13437 Reported by Magnus Fromreide.
13438
134392002-04-26 Paul Eggert <eggert@twinsun.com>
13440
13441 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
13442 Define if we define YYSTYPE and YYLTYPE, respectively.
13443 (YYCOPY): Fix [] quoting problem in the non-GCC case.
13444
134452002-04-25 Robert Anisko <robert@lrde.epita.fr>
13446
13447 * src/scan-skel.l: Postprocess quadrigraphs.
13448
13449 * src/reader.c (copy_character): New function, used to output
13450 single characters while replacing `[' and `]' with quadrigraphs, to
13451 avoid troubles with M4 quotes.
13452 (copy_comment): Output characters with copy_character.
13453 (read_additionnal_code): Likewise.
13454 (copy_string2): Likewise.
13455 (copy_definition): Likewise.
13456
13457 * tests/calc.at: Exercise M4 quoting.
13458
134592002-04-25 Akim Demaille <akim@epita.fr>
13460
13461 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
13462 between `!' and the command.
13463 Reported by Paul Eggert.
13464
134652002-04-24 Robert Anisko <robert@lrde.epita.fr>
13466
13467 * tests/calc.at: Exercise prologue splitting.
13468
13469 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
13470 `b4_post_prologue' instead of `b4_prologue'.
13471
13472 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
13473 muscles.
13474 (output): Free pre_prologue_obstack and post_prologue_obstack.
13475 * src/files.h, src/files.c (attrs_obstack): Remove.
13476 (pre_prologue_obstack, post_prologue_obstack): New.
13477 * src/reader.c (copy_definition): Add a parameter to specify the
13478 obstack to fill, instead of using attrs_obstack unconditionally.
13479 (read_declarations): Pass pre_prologue_obstack to copy_definition if
13480 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
13481
134822002-04-23 Paul Eggert <eggert@twinsun.com>
13483
13484 * data/bison.simple: Remove unnecessary commentary and white
13485 space differences from 1_29-branch.
13486 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
13487
13488 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
13489 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
13490 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
13491 constructors or destructors.
13492
13493 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
13494
134952002-04-23 Akim Demaille <akim@epita.fr>
13496
13497 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
13498 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
13499 location with columns.
13500 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
13501 All reported by Paul Eggert.
13502
135032002-04-22 Akim Demaille <akim@epita.fr>
13504
13505 * src/reduce.c (dump_grammar): Move to...
13506 * src/gram.h, src/gram.c (grammar_dump): here.
13507 Be sure to separate long item numbers.
13508 Don't read the members of a rule's prec if its nil.
13509
135102002-04-22 Akim Demaille <akim@epita.fr>
13511
13512 * src/output.c (table_size, table_grow): New.
13513 (MAXTABLE): Remove, replace uses with table_size.
13514 (pack_vector): Instead of dying when the table is too big, grow it.
13515
135162002-04-22 Akim Demaille <akim@epita.fr>
13517
13518 * data/bison.simple (yyr1): Its type is that of a token number.
13519 * data/bison.c++ (r1_): Likewise.
13520 * tests/regression.at (Web2c Actions): Adjust.
13521
135222002-04-22 Akim Demaille <akim@epita.fr>
13523
13524 * src/reader.c (token_translations_init): 256 is now the default
13525 value for the error token, i.e., it will be assigned another
13526 number if the user assigned 256 to one of her tokens.
13527 (reader): Don't force 256 to error.
13528 * doc/bison.texinfo (Symbols): Adjust.
13529 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
13530 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
13531 etc. instead of 10, 20, 30 (which was used to `jump' over error
13532 (256) and undefined (2)).
13533
135342002-04-22 Akim Demaille <akim@epita.fr>
13535
13536 Propagate more token_number_t.
13537
13538 * src/gram.h (token_number_as_item_number)
13539 (item_number_as_token_number): New.
13540 * src/output.c (GENERATE_OUTPUT_TABLE): New.
13541 Use it to create output_item_number_table and
13542 output_token_number_table.
13543 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
13544 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
13545 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
13546 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
13547
135482002-04-22 Akim Demaille <akim@epita.fr>
13549
13550 * src/output.h, src/output.c (get_lines_number): Remove.
13551
135522002-04-19 Akim Demaille <akim@epita.fr>
13553
13554 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
13555 as Lex/Flex'.
13556 (Debugging): More details about enabling the debugging features.
13557 (Table of Symbols): Describe $$, $n, @$, and @n.
13558 Suggested by Tim Josling.
13559
135602002-04-19 Akim Demaille <akim@epita.fr>
13561
13562 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
13563
135642002-04-10 Akim Demaille <akim@epita.fr>
13565
13566 * src/system.h: Rely on HAVE_LIMITS_H.
13567 Suggested by Paul Eggert.
13568
135692002-04-09 Akim Demaille <akim@epita.fr>
13570
13571 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
13572 full stderr, and strip it according to the bison options, instead
13573 of composing the error message from different bits.
13574 This makes it easier to check for several error messages.
13575 Adjust all the invocations.
13576 Add an invocation exercising the error token.
13577 Add an invocation demonstrating a stupid error message.
13578 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
13579 Adjust the tests.
13580 Error message are for stderr, not stdout.
13581
135822002-04-09 Akim Demaille <akim@epita.fr>
13583
13584 * src/gram.h, src/gram.c (error_token_number): Remove, use
13585 errtoken->number.
13586 * src/reader.c (reader): Don't specify the user token number (2)
13587 for $undefined, as it uselessly prevents using it.
13588 * src/gram.h (token_number_t): Move to...
13589 * src/symtab.h: here.
13590 (state_t.number): Is a token_number_t.
13591 * src/print.c, src/reader.c: Use undeftoken->number instead of
13592 hard coded 2.
13593 (Even though this 2 is not the same as above: the number of the
13594 undeftoken remains being 2, it is its user token number which
13595 might not be 2).
13596 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
13597 `user_token_number_max'.
13598 Output `undef_token_number'.
13599 * data/bison.simple, data/bison.c++: Use them.
13600 Be sure to map invalid yylex return values to
13601 `undef_token_number'. This saves us from gratuitous SEGV.
13602
13603 * tests/conflicts.at (Solved SR Conflicts)
13604 (Unresolved SR Conflicts): Adjust.
13605 * tests/regression.at (Web2c Actions): Adjust.
13606
136072002-04-08 Akim Demaille <akim@epita.fr>
13608
13609 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
13610 Adding #line.
13611 Remove the duplicate `typedefs'.
13612 (RhsNumberType): Fix the declaration and various other typos.
13613 Use __ofile__.
13614 * data/bison.simple: Use __ofile__.
13615 * src/scan-skel.l: Handle __ofile__.
13616
136172002-04-08 Akim Demaille <akim@epita.fr>
13618
13619 * src/gram.h (item_number_t): New, the type of item numbers in
13620 RITEM. Note that it must be able to code symbol numbers as
13621 positive number, and the negation of rule numbers as negative
13622 numbers.
13623 Adjust all dependencies (pretty many).
13624 * src/reduce.c (rule): Remove this `short *' pointer: use
13625 item_number_t.
13626 * src/system.h (MINSHORT, MAXSHORT): Remove.
13627 Include `limits.h'.
13628 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
13629 (shortcpy): Remove.
13630 (MAXTABLE): Move to...
13631 * src/output.c (MAXTABLE): here.
13632 (prepare_rules): Use output_int_table to output rhs.
13633 * data/bison.simple, data/bison.c++: Adjust.
13634 * tests/torture.at (Big triangle): Move the limit from 254 to
13635 500.
13636 * tests/regression.at (Web2c Actions): Ajust.
13637
13638 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
13639 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
13640 passes, but produces negative #line number, once fixed, GCC is
13641 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
13642 C), it passes.
13643 * src/state.h (state_h): Code input lines on ints, not shorts.
13644
136452002-04-08 Akim Demaille <akim@epita.fr>
13646
13647 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
13648 and then the grammar.
13649
136502002-04-08 Akim Demaille <akim@epita.fr>
13651
13652 * src/system.h: No longer using strndup.
13653
136542002-04-07 Akim Demaille <akim@epita.fr>
13655
13656 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
13657 * src/output.c (output_table_data): Return the longest number.
13658 (prepare_tokens): Output `token_number_max').
13659 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
13660 New.
13661 Use them to define yy_token_number_type/TokenNumberType.
13662 Use this type for yytranslate.
13663 * tests/torture.at (Big triangle): Push the limit from 124 to
13664 253.
13665 * tests/regression.at (Web2c Actions): Adjust.
13666
136672002-04-07 Akim Demaille <akim@epita.fr>
13668
13669 * tests/torture.at (Big triangle): New.
13670 (GNU AWK Grammar, GNU Cim Grammar): Move to...
13671 * tests/existing.at: here.
13672
136732002-04-07 Akim Demaille <akim@epita.fr>
13674
13675 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
13676 nritems.
13677 Adjust dependencies.
13678
136792002-04-07 Akim Demaille <akim@epita.fr>
13680
13681 * src/reader.c: Normalize increments to prefix form.
13682
136832002-04-07 Akim Demaille <akim@epita.fr>
13684
13685 * src/reader.c, symtab.c: Remove debugging code.
13686
136872002-04-07 Akim Demaille <akim@epita.fr>
13688
13689 Rename all the `bucket's as `symbol_t'.
13690
13691 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
13692 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
13693 * src/symtab.c, src/symtab.h (bucket): Rename as...
13694 (symbol_t): this.
13695 (symbol_list_new, bucket_check_defined, bucket_make_alias)
13696 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
13697 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
13698 (buckets_new, buckets_free, buckets_do): Rename as...
13699 (symbol_list_new, symbol_check_defined, symbol_make_alias)
13700 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
13701 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
13702 (symbols_new, symbols_free, symbols_do): these.
13703
137042002-04-07 Akim Demaille <akim@epita.fr>
13705
13706 Use lib/hash for the symbol table.
13707
13708 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
13709 EOF.
13710 * src/lex.c (lex): Set the `number' member of new terminals.
13711 * src/reader.c (bucket_check_defined, bucket_make_alias)
13712 (bucket_check_alias_consistence, bucket_translation): New.
13713 (reader, grammar_free, readgram, token_translations_init)
13714 (packsymbols): Adjust.
13715 (reader): Number the predefined tokens.
13716 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
13717 for predefined tokens.
13718 * src/symtab.h (bucket): Remove all the hash table related
13719 members.
13720 * src/symtab.c (symtab): Replace by...
13721 (bucket_table): this.
13722 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
13723 (buckets_new, buckets_do): New.
13724
137252002-04-07 Akim Demaille <akim@epita.fr>
13726
13727 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
13728 (start_symbol, max_user_token_number, semantic_parser)
13729 (error_token_number): Initialize.
13730 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
13731 Initialize.
13732 (reader): Don't.
13733 (errtoken, eoftoken, undeftoken, axiom): Extern.
13734
137352002-04-07 Akim Demaille <akim@epita.fr>
13736
13737 * src/gram.h (rule_s): prec and precsym are now pointers
13738 to the bucket giving the priority/associativity.
13739 Member `associativity' removed: useless.
13740 * src/reduce.c, src/conflicts.c: Adjust.
13741
137422002-04-07 Akim Demaille <akim@epita.fr>
13743
13744 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
13745 Properly escape the symbols' TAG when outputting them.
13746
137472002-04-07 Akim Demaille <akim@epita.fr>
13748
13749 * src/lalr.h (LA): Is a bitsetv, not bitset*.
13750
137512002-04-07 Akim Demaille <akim@epita.fr>
13752
13753 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
13754 (LArule): this, which is an array to rule_t*.
13755 * src/print.c, src/conflicts.c: Adjust.
13756
137572002-04-07 Akim Demaille <akim@epita.fr>
13758
13759 * src/gram.h (rule_t): Rename `number' as `user_number'.
13760 `number' is a new member.
13761 Adjust dependencies.
13762 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
13763
137642002-04-07 Akim Demaille <akim@epita.fr>
13765
13766 As a result of the previous patch, it is no longer needed
13767 to reorder ritem itself.
13768
13769 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
13770
137712002-04-07 Akim Demaille <akim@epita.fr>
13772
13773 Be sure never to walk through RITEMS, but use only data related to
13774 the rules themselves. RITEMS should be banished.
13775
13776 * src/output.c (output_token_translations): Rename as...
13777 (prepare_tokens): this.
13778 In addition to `translate', prepare the muscles `tname' and
13779 `toknum', which were handled by...
13780 (output_rule_data): this.
13781 Remove, and move the remainder of its outputs into...
13782 (prepare_rules): this new routines, which also merges content from
13783 (output_gram): this.
13784 (prepare_rules): Be sure never to walk through RITEMS.
13785 (output_stos): Rename as...
13786 (prepare_stos): this.
13787 (output): Always invoke prepare_states, after all, just don't use it
13788 in the output if you don't need it.
13789
137902002-04-07 Akim Demaille <akim@epita.fr>
13791
13792 * src/LR0.c (new_state): Display `nstates' as the name of the
13793 newly created state.
13794 Adjust to initialize first_state and last_state if needed.
13795 Be sure to distinguish the initial from the final state.
13796 (new_states): Create the itemset of the initial state, and use
13797 new_state.
13798 * src/closure.c (closure): Now that the initial state has its
13799 items properly set, there is no need for a special case when
13800 creating `ruleset'.
13801
13802 As a result, now the rule 0, reducing to $axiom, is visible in the
13803 outputs. Adjust the test suite.
13804
13805 * tests/conflicts.at (Solved SR Conflicts)
13806 (Unresolved SR Conflicts): Adjust.
13807 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
13808 * tests/conflicts.at (S/R in initial): New.
13809
138102002-04-07 Akim Demaille <akim@epita.fr>
13811
13812 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
13813 the RHS of the rules.
13814 * src/output.c (output_gram): Likewise.
13815
138162002-04-07 Akim Demaille <akim@epita.fr>
13817
13818 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
13819 bucket.
13820 Adjust all dependencies.
13821 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
13822 `number' of the buckets too.
13823 * src/gram.h: Include `symtab.h'.
13824 (associativity): Move to...
13825 * src/symtab.h: here.
13826 No longer include `gram.h'.
13827
138282002-04-07 Akim Demaille <akim@epita.fr>
13829
13830 * src/gram.h, src/gram.c (rules_rhs_length): New.
13831 (ritem_longest_rhs): Use it.
13832 * src/gram.h (rule_t): `number' is a new member.
13833 * src/reader.c (packgram): Set it.
13834 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
13835 the end of `rules', and count them out of `nrules'.
13836 (reduce_output, dump_grammar): Adjust.
13837 * src/print.c (print_grammar): It is no longer needed to check for
13838 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
13839 * tests/reduce.at (Reduced Automaton): New test.
13840
138412002-04-07 Akim Demaille <akim@epita.fr>
13842
13843 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
13844 lacking `+ 1' to nrules, Bison reported as useless a token if it
13845 was used solely to set the precedence of the last rule...
13846
138472002-04-07 Akim Demaille <akim@epita.fr>
13848
13849 * data/bison.c++, data/bison.simple: Don't output the current file
13850 name in #line, to avoid useless diffs between two identical
13851 outputs under different names.
13852
138532002-04-07 Akim Demaille <akim@epita.fr>
13854
13855 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
13856 Normalize loops to using `< nrules + 1', not `<= nrules'.
13857
138582002-04-07 Akim Demaille <akim@epita.fr>
13859
13860 * TODO: Update.
13861
138622002-04-07 Akim Demaille <akim@epita.fr>
13863
13864 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
13865 bucket.value as bucket.number.
13866
138672002-04-07 Akim Demaille <akim@epita.fr>
13868
13869 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
13870 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
13871 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
13872 RHS, instead of being an index in RITEMS.
13873
138742002-04-04 Paul Eggert <eggert@twinsun.com>
13875
13876 * doc/bison.texinfo: Update copyright date.
13877 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
13878 (Symbols): Warn about running Bison in one character set,
13879 but compiling and/or running in an incompatible one.
13880 Warn about character code 256, too.
13881
138822002-04-03 Paul Eggert <eggert@twinsun.com>
13883
13884 * src/bison.data (YYSTACK_ALLOC): Depend on whether
13885 YYERROR_VERBOSE is nonzero, not whether it is defined.
13886
13887 Merge changes from bison-1_29-branch.
13888
138892002-03-20 Paul Eggert <eggert@twinsun.com>
13890
13891 Merge fixes from Debian bison_1.34-1.diff.
13892
13893 * configure.in (AC_PREREQ): 2.53.
13894
138952002-03-20 Akim Demaille <akim@epita.fr>
13896
13897 * src/conflicts.c (log_resolution): Argument `resolution' is const.
13898
138992002-03-19 Paul Eggert <eggert@twinsun.com>
13900
13901 * src/bison.simple (YYCOPY): New macro.
13902 (YYSTACK_RELOCATE): Use it.
13903 Remove Type arg; no longer needed. All callers changed.
13904 (yymemcpy): Remove; no longer needed.
13905
13906 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
13907 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13908
139092002-03-19 Akim Demaille <akim@epita.fr>
13910
13911 Test and fix the #line outputs.
13912
13913 * tests/atlocal.at (GCC): New.
13914 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
13915 (Prologue synch line, %union synch line, Postprologue synch line)
13916 (Action synch line, Epilogue synch line): New tests.
13917 * src/reader.c (parse_union_decl): Define the muscle stype_line.
13918 * data/bison.simple, data/bison.c++: Use it.
13919
139202002-03-19 Akim Demaille <akim@epita.fr>
13921
13922 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
13923 (Solved SR Conflicts, %expect not enough, %expect right)
13924 (%expect too much): Move to...
13925 * tests/conflicts.at: this new file.
13926
139272002-03-19 Akim Demaille <akim@epita.fr>
13928
13929 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
13930 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
13931 that we can move to enums for instance.
13932 * src/output.c (token_definitions_output): Output a list of
13933 `token-name, token-number' instead of the #define.
13934 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
13935
139362002-03-14 Akim Demaille <akim@epita.fr>
13937
13938 Use Gettext 0.11.1.
13939
139402002-03-09 Robert Anisko <robert@lrde.epita.fr>
13941
13942 * data/bison.c++: Make the user able to add members to the generated
13943 parser by subclassing.
13944
139452002-03-05 Robert Anisko <robert@lrde.epita.fr>
13946
13947 * src/reader.c (read_additionnal_code): `c' should be an integer, not
13948 a character.
13949 Reported by Nicolas Tisserand and Nicolas Burrus.
13950
139512002-03-04 Robert Anisko <robert@lrde.epita.fr>
13952
13953 * src/reader.c: Warn about lacking semi-colons, do not complain.
13954
139552002-03-04 Robert Anisko <robert@lrde.epita.fr>
13956
13957 * data/bison.c++: Remove a debug line.
13958
139592002-03-04 Robert Anisko <robert@lrde.epita.fr>
13960
13961 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
13962 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
13963 provide a default implementation.
13964
139652002-03-04 Akim Demaille <akim@epita.fr>
13966
13967 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
13968 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
13969 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
13970 * tests/semantic.at (Parsing Guards): Similarly.
13971 * src/reader.at (readgram): Complain if the last rule is not ended
13972 with a semi-colon.
13973
139742002-03-04 Akim Demaille <akim@epita.fr>
13975
13976 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
13977 * src/closure.c: here.
13978 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
13979 RTC.
13980 * src/warshall.h, src/warshall.c: Remove.
13981 * tests/sets.at (Broken Closure): Adjust.
13982
139832002-03-04 Akim Demaille <akim@epita.fr>
13984
13985 * src/output.c (output_skeleton): tempdir is const.
13986 bytes_read is unused.
13987
139882002-03-04 Akim Demaille <akim@epita.fr>
13989
13990 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
13991 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
13992 Update.
13993 From Michael Hayes.
13994
139952002-03-04 Akim Demaille <akim@epita.fr>
13996
13997 * src/closure.c (closure): `r' is unused.
13998
139992002-03-04 Akim Demaille <akim@epita.fr>
14000
14001 * tests/sets.at (Broken Closure): Add the ending `;'.
14002 * src/reader.at (readgram): Complain if a rule is not ended with a
14003 semi-colon.
14004
140052002-03-04 Akim Demaille <akim@epita.fr>
14006
14007 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
14008 (count_sr_conflicts): Use bitset_count.
14009 * src/reduce.c (inaccessable_symbols): Ditto.
14010 (bits_size): Remove.
14011 * src/warshall.h, src/warshall.c: Convert to bitsetv.
14012
140132002-03-04 Akim Demaille <akim@epita.fr>
14014
14015 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
14016 * src/reduce.c: Remove the `bitset_zero's following the
14017 `bitset_create's, as now it is performed by the latter.
14018
140192002-03-04 Akim Demaille <akim@epita.fr>
14020
14021 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
14022 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
14023 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
14024 latest sources from Michael.
14025
140262002-03-04 Akim Demaille <akim@epita.fr>
14027
14028 * src/output.c (output): Don't free the grammar.
14029 * src/reader.c (grammar_free): New.
14030 * src/main.c (main): Call it and don't free symtab here.
14031
140322002-03-04 Akim Demaille <akim@epita.fr>
14033
14034 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
14035 before returning.
14036 Reported by Benoit Perrot.
14037
140382002-03-04 Akim Demaille <akim@epita.fr>
14039
14040 Use bitset operations when possible, not loops over bits.
14041
14042 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
14043 bitset_or.
14044 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
14045 * src/reduce.c (useless_nonterminals): Formatting changes.
14046 * src/warshall.c (TC): Use bitset_or.
14047
140482002-03-04 Akim Demaille <akim@epita.fr>
14049
14050 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
14051 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
14052 Ditto.
14053
140542002-03-04 Akim Demaille <akim@epita.fr>
14055
14056 * src/lalr.c (F): Now a bitset*.
14057 Adjust all dependencies.
14058
140592002-03-04 Akim Demaille <akim@epita.fr>
14060
14061 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
14062 Adjust all dependencies.
14063
140642002-03-04 Akim Demaille <akim@epita.fr>
14065
14066 * src/L0.c, src/LR0.h (nstates): Be size_t.
14067 Adjust comparisons (signed vs unsigned).
14068 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
14069 bitset*.
14070 Adjust all dependencies.
14071
140722002-03-04 Akim Demaille <akim@epita.fr>
14073
14074 * src/closure.c (firsts): Now, also a bitset.
14075 Adjust all dependencies.
14076 (varsetsize): Remove, now unused.
14077 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
14078
140792002-03-04 Akim Demaille <akim@epita.fr>
14080
14081 * src/print.c: Convert to use bitset.h, not hand coded iterations
14082 over ints.
14083
140842002-03-04 Akim Demaille <akim@epita.fr>
14085
14086 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
14087
140882002-03-04 Akim Demaille <akim@epita.fr>
14089
14090 * src/closure.c (ruleset): Be a bitset.
14091 (rulesetsize): Remove.
14092
140932002-03-04 Akim Demaille <akim@epita.fr>
14094
14095 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
14096 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
14097 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
14098 * src/closure.c (fderives): Be an array of bitsets.
14099
141002002-02-28 Robert Anisko <robert@lrde.epita.fr>
14101
14102 * data/bison.c++: Merge the two generated headers. Insert a copyright
14103 notice in each output file.
14104
141052002-02-28 Akim Demaille <akim@epita.fr>
14106
14107 * data/bison.c++: Copy the prologue of bison.simple to fetch
14108 useful M4 definitions, such as b4_header_guard.
14109
141102002-02-25 Akim Demaille <akim@epita.fr>
14111
14112 * src/getargs.c (version): Give the name of the authors, and use a
14113 translator friendly scheme for the bgr
14114 copyright notice.
14115
141162002-02-25 Akim Demaille <akim@epita.fr>
14117
14118 * src/output.c (header_output): Remove, now handled completely via
14119 M4.
14120
141212002-02-25 Akim Demaille <akim@epita.fr>
14122
14123 * m4/m4.m4: New, from CVS Autoconf.
14124 * configure.in: Invoke it.
14125 * src/output.c (output_skeleton): Use its result instead of the
14126 hard coded name.
14127
141282002-02-25 Akim Demaille <akim@epita.fr>
14129
14130 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
14131 Fileutils 4.1.5.
14132 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
14133 * src/output.c (output_skeleton): Use mkstemp to create a real
14134 temporary file.
14135 Move the filling of `skeleton' and its muscle to...
14136 (prepare): here.
14137 (output): Move the definition of the prologue muscle to...
14138 (prepare): here.
14139 * src/system.h (DEFAULT_TMPDIR): New.
14140
141412002-02-14 Paul Eggert <eggert@twinsun.com>
14142
14143 Remove the support for C++ namespace cleanliness; it was
14144 causing more problems than it was curing, since it didn't work
14145 properly on some nonstandard C++ compilers. This can wait
14146 for a proper C++ parser.
14147
14148 * NEWS: Document this.
14149 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
14150 of C++, as it's treated like C now.
14151 * src/bison.simple (YYSTD): Remove.
14152 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
14153 Treat C++ just like Standard C instead of trying to support
14154 namespace cleanliness.
14155
141562002-02-14 Akim Demaille <akim@epita.fr>
14157
14158 * tests/regression.at (else): Adjust to Andreas' change.
14159
141602002-02-14 Akim Demaille <akim@epita.fr>
14161
14162 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
14163
141642002-02-13 Andreas Schwab <schwab@suse.de>
14165
14166 * src/output.c (output_rule_data): Don't output NULL, it might
14167 not be defined yet.
14168
141692002-02-11 Robert Anisko <robert@lrde.epita.fr>
14170
14171 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
14172 (Copyright notice): Update.
14173
141742002-02-11 Akim Demaille <akim@epita.fr>
14175
14176 * tests/regression.at (%nonassoc and eof): Don't include
14177 nonportable headers.
14178
141792002-02-08 Robert Anisko <robert@lrde.epita.fr>
14180
14181 * data/bison.c++: Correct error recovery. Make the user able to
14182 initialize the starting location.
14183
141842002-02-07 Akim Demaille <akim@epita.fr>
14185
14186 * tests/input.at: New.
14187
141882002-02-07 Robert Anisko <robert@lrde.epita.fr>
14189
14190 * data/bison.c++: Replace some direct m4 expansions by constants. Be
14191 more consistent when naming methods and variables. Put preprocessor
14192 directives around tables only needed for debugging.
14193
141942002-02-07 Robert Anisko <robert@lrde.epita.fr>
14195
14196 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
14197 C++ parsers.
14198 (yy::b4_name::parse): Use print_.
14199
142002002-02-07 Robert Anisko <robert@lrde.epita.fr>
14201
14202 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
14203
142042002-02-07 Robert Anisko <robert@lrde.epita.fr>
14205
14206 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
14207 C++ parsers.
14208 (yy::b4_name::parse): Build verbose error messages, and use error_.
14209
142102002-02-06 Robert Anisko <robert@lrde.epita.fr>
14211
14212 * data/bison.c++: Fix m4 quoting in comments.
14213
142142002-02-06 Robert Anisko <robert@lrde.epita.fr>
14215
14216 * data/bison.c++: Adjust the parser code. Fix some muscles that were
14217 not expanded by m4.
14218
142192002-02-05 Akim Demaille <akim@epita.fr>
14220
14221 * data/bison.c++: Adjust to the M4 back end.
14222 More is certainly needed.
14223
142242002-02-05 Akim Demaille <akim@epita.fr>
14225
14226 Give a try to M4 as a back end.
14227
14228 * lib/readpipe.c: New, from wdiff.
14229 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
14230 BISON_HAIRY.
14231 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
14232 specific values. Now it is m4 that performs the lookup.
14233 * src/parse-skel.y: Remove.
14234 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
14235 * src/output.c (actions_output, guards_output)
14236 (token_definitions_output): No longer keeps track of the output
14237 line number, hence remove the second argument.
14238 (guards_output): Check against the guard member of a rule, not the
14239 action member.
14240 Adjust callers.
14241 (output_skeleton): Don't look for the skeleton location, let m4 do
14242 that.
14243 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
14244 file will be used.
14245 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
14246 (prepare): Given that for the time being changesyntax is not
14247 usable in M4, rename the muscles using `-' to `_'.
14248 Define `defines_flag', `output_parser_name' and `output_header_name'.
14249 * src/output.h (actions_output, guards_output)
14250 (token_definitions_output): Adjust prototypes.
14251 * src/scan-skel.l: Instead of scanning the skeletons, it now
14252 processes the output of m4: `__oline__' and `#output'.
14253 * data/bison.simple: Adjust to be used by M4(sugar).
14254 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
14255 to date.
14256 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
14257 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
14258 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
14259 shamelessly stolen from CVS Autoconf.
14260
142612002-02-05 Akim Demaille <akim@epita.fr>
14262
14263 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
14264 * configure.in: Check for the declarations of free and malloc.
14265 * src/muscle_tab.c: Adjust.
14266
142672002-02-05 Akim Demaille <akim@epita.fr>
14268
14269 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
14270 which have no values.
14271
142722002-02-05 Akim Demaille <akim@epita.fr>
14273
14274 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
14275 * data/: here.
14276
142772002-01-29 Paul Eggert <eggert@twinsun.com>
14278
14279 * src/bison.simple (YYSIZE_T): Do not define merely because
14280 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
14281 On some platforms, <alloca.h> does not declare YYSTD (size_t).
14282
142832002-01-27 Akim Demaille <akim@epita.fr>
14284
14285 Fix `%nonassoc and eof'.
14286
14287 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
14288 which were not properly copied! Replace
14289 memcpy (res->errs, src->errs, src->nerrs);
14290 with
14291 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
14292 !!!
14293 * tests/regression.at (%nonassoc and eof): Adjust to newest
14294 Autotest: `.' is not in the PATH.
14295
142962002-01-27 Akim Demaille <akim@epita.fr>
14297
14298 * tests/sets.at (AT_EXTRACT_SETS): New.
14299 (Nullable): Use it.
14300 (Firsts): New.
14301
143022002-01-26 Akim Demaille <akim@epita.fr>
14303
14304 * tests/actions.at, tests/calc.at, tests/headers.at,
14305 * tests/torture.at: Adjust to the newest Autotest which no longer
14306 forces `.' in the PATH.
14307
143082002-01-25 Akim Demaille <akim@epita.fr>
14309
14310 * tests/regression.at (%nonassoc and eof): New.
14311 Suggested by Robert Anisko.
14312
143132002-01-24 Akim Demaille <akim@epita.fr>
14314
14315 Bison dumps core when trying to complain about broken input files.
14316 Reported by Cris van Pelt.
14317
14318 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
14319 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
14320 into...
14321 (Invalid inputs): Strengthen: exercise parse_percent_token.
14322
143232002-01-24 Robert Anisko <robert.anisko@epita.fr>
14324
14325 * src/Makefile.am: Add bison.c++.
14326 * src/bison.c++: New skeleton.
14327
143282002-01-21 Paolo Bonzini <bonzini@gnu.org>
14329
14330 * po/it.po: New.
14331
143322002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
14333
14334 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
14335
143362002-01-20 Marc Autret <marc@gnu.org>
14337
14338 * src/files.c (compute_output_file_names): Fix
14339
143402002-01-20 Marc Autret <marc@gnu.org>
14341
14342 * tests/output.at: New test.
14343 * src/files.c (compute_base_names): Don't map extensions when
14344 the YACC flag is set, use defaults.
14345 Reported by Evgeny Stambulchik.
14346
143472002-01-20 Marc Autret <marc@gnu.org>
14348
14349 * src/system.h: Need to define __attribute__ away for non-GCC
14350 compilers as well (i.e., the vendor C compiler).
14351 Suggested by Albert Chin-A-Young.
14352
143532002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
14354
14355 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
14356 canonical definition.
14357 * src/system.h: Use the canonical definition for PARAMS (avoids
14358 a conflict with the macro from lib/hash.h).
14359
143602002-01-11 Akim Demaille <akim@epita.fr>
14361
14362 * configure.in: Use AC_FUNC_STRNLEN.
14363 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
14364
143652002-01-09 Akim Demaille <akim@epita.fr>
14366
14367 * src/files.c, src/files.h (output_infix): New.
14368 (tab_extension): Remove.
14369 (compute_base_names): Compute the former, drop the latter.
14370 * src/output.c (prepare): Insert the muscles `output-infix', and
14371 `output-suffix'.
14372 * src/parse-skel.y (string, string.1): New.
14373 (section.header): Use it.
14374 (section.yacc): Remove.
14375 (prefix): Remove too.
14376 * src/scan-skel.l: Adjust.
14377 * src/bison.simple, src/bison.hairy: Adjust.
14378
143792002-01-09 Akim Demaille <akim@epita.fr>
14380
14381 * configure.in (WERROR_CFLAGS): Compute it.
14382 * src/Makefile.am (CFLAGS): Pass it.
14383 * tests/atlocal.in (CFLAGS): Idem.
14384 * src/files.c: Fix a few warnings.
14385 (get_extension_index): Remove, unused.
14386
143872002-01-08 Akim Demaille <akim@epita.fr>
14388
14389 * src/getargs.c (AS_FILE_NAME): New.
14390 (getargs): Use it to convert DOSish file names.
14391 * src/files.c (base_name): Rename as full_base_name to avoid
14392 clashes with `base_name ()'.
14393 (filename_split): New.
14394 (compute_base_names): N-th rewrite, using filename_split.
14395
143962002-01-08 Akim Demaille <akim@epita.fr>
14397
14398 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
14399 New, stolen from the Fileutils 4.1.
14400 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
14401 * configure.in: Check for the presence of memrchr, and of its
14402 prototype.
14403
144042002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
14405
14406 * lib/hash.h (__P): Added definition for this macro.
14407 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
14408 BUILT_SOURCES, to ensure they are generated first.
14409 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
14410 %error-verbose to allow bootstrapping with bison 1.30x.
14411
144122002-01-06 Akim Demaille <akim@epita.fr>
14413
14414 * src/reader.c (parse_braces): Don't fetch the next char, the
14415 convention is to fetch on entry.
14416 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
14417 'switch' without a following semicolon.
14418 * tests/regression.at (braces parsing): New.
14419
144202002-01-06 Akim Demaille <akim@epita.fr>
14421
14422 Bison is dead wrong in its RR conflict reports.
14423
14424 * tests/torture.at (GNU Cim Grammar): New.
14425 * src/conflicts.c (count_rr_conflicts): Fix.
14426
144272002-01-06 Akim Demaille <akim@epita.fr>
14428
14429 Creating package.m4 from configure.ac causes too many problems.
14430
14431 * tests/Makefile.am (package.m4): Create it by hand,
14432 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
14433
144342002-01-06 Akim Demaille <akim@epita.fr>
14435
14436 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
14437 skeleton.h.
14438
144392002-01-04 Paul Eggert <eggert@twinsun.com>
14440
14441 * doc/bison.texinfo (Debugging):
14442 Remove YYSTDERR; it's no longer defined or used.
14443 Also, s/cstdio.h/cstdio/.
14444
144452002-01-03 Akim Demaille <akim@epita.fr>
14446
14447 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
14448
144492002-01-03 Akim Demaille <akim@epita.fr>
14450
14451 * src/parse-skel.y (process_skeleton): Don't bind the parser's
14452 tracing code to --trace, wait for a better --trace option, with
14453 args.
14454
144552002-01-03 Akim Demaille <akim@epita.fr>
14456
14457 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
14458 The ISO C++ standard is extremely clear about it: stderr is
14459 considered a macro, not a regular symbol (see table 94 `Header
14460 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
14461 Therefore std:: does not apply to it. It still does with fprintf.
14462 Also, s/cstdio.h/cstdio/.
14463
144642002-01-03 Akim Demaille <akim@epita.fr>
14465
14466 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
14467 for non system headers.
14468
144692002-01-02 Akim Demaille <akim@epita.fr>
14470
14471 Equip the skeleton chain with location tracking, runtime trace,
14472 pure parser and scanner.
14473
14474 * src/parse-skel.y: Request a pure parser, locations, and prefix
14475 renaming.
14476 (%union): Having several members with the same type does not help
14477 type mismatches, simplify.
14478 (YYPRINT, yyprint): New.
14479 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
14480 (skel_error): this.
14481 Handle locations.
14482 * src/scan-skel.l: Adjust to these changes.
14483 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
14484 (LOCATION_PRINT, skel_control_t): New.
14485
144862001-12-30 Akim Demaille <akim@epita.fr>
14487
14488 * src/parse-skel.y: Get rid of the shift/reduce conflict:
14489 replace `gb' with BLANKS.
14490 * src/scan-skel.l: Adjust.
14491
144922001-12-30 Akim Demaille <akim@epita.fr>
14493
14494 * src/system.h: We don't need nor want bcopy.
14495 Throw away MS-DOS crap: we don't need getpid.
14496 * configure.in: We don't need strndup. It was even causing
14497 problems: because Flex includes the headers *before* us,
14498 _GNU_SOURCE is not defined by config.h, and therefore strndup was
14499 not visible.
14500 * lib/xstrndup.c: New.
14501 * src/scan-skel.l: Use it.
14502 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
14503 * src/parse-skel.y: Use %directives instead of #defines.
14504
145052001-12-30 Akim Demaille <akim@epita.fr>
14506
14507 * src/skeleton.h: New.
14508 * src/output.c (output_parser, output_master_parser): Remove, dead
14509 code.
14510 * src/output.h (get_lines_number, actions_output, guards_output)
14511 (token_definitions_output): Prototype them.
14512 * src/parse-skel.y: Add the license notice.
14513 Include output.h and skeleton.h.
14514 (process_skeleton): Returns void, and takes a single parameter.
14515 * src/scan-skel.l: Add the license notice.
14516 Include skeleton.h.
14517 Don't use %option yylineno: it seems that then Flex imagines
14518 REJECT has been used, and therefore it won't reallocate its
14519 buffers (which makes no other sense to me than a bug). It results
14520 in warnings for `unused: yy_flex_realloc'.
14521
145222001-12-30 Robert Anisko <robert.anisko@epita.fr>
14523
14524 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
14525 (MUSCLE_INSERT_PREFIX): ...to there.
14526 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
14527 (MUSCLE_INSERT_PREFIX): Move from here...
14528
14529 * src/bison.hairy: Add a section directive. Put braces around muscle
14530 names. This parser skeleton is still broken, but Bison should not
14531 choke on a bad muscle 'syntax'.
14532 * src/bison.simple: Add a section directive. Put braces around muscle
14533 names.
14534
14535 * src/files.h (strsuffix, stringappend): Add declarations.
14536 (tab_extension): Add declaration.
14537 (short_base_name): Add declaration.
14538
14539 * src/files.c (strsuffix, stringappend): No longer static. These
14540 functions are used in the skeleton parser.
14541 (tab_extension): New.
14542 (compute_base_names): Use the computations done in this function
14543 to guess if the generated parsers should have '.tab' in their
14544 names.
14545 (short_base_name): No longer static.
14546
14547 * src/output.c (output_skeleton): New.
14548 (output): Disable call to output_master_parser, and give a try to
14549 a new skeleton handling system.
14550 (guards_output, actions_output): No longer static.
14551 (token_definitions_output, get_lines_number): No longer static.
14552
14553 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
14554
14555 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
14556 parse-skel.y.
14557
14558 * src/parse-skel.y: New file.
14559 * src/scan-skel.l: New file.
14560
145612001-12-29 Akim Demaille <akim@epita.fr>
14562
14563 %name-prefix is broken.
14564
14565 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
14566 Adjust all dependencies.
14567 * tests/headers.at (export YYLTYPE): Strengthen this test: use
14568 %name-prefix.
14569
14570 Renaming yylval but not yylloc is not consistent. Now we do.
14571
14572 * src/bison.simple: Prefix yylloc if used.
14573 * doc/bison.texinfo (Decl Summary): Document that.
14574
145752001-12-29 Akim Demaille <akim@epita.fr>
14576
14577 * doc/bison.texinfo: Promote `%long-directive' over
14578 `%long_directive'.
14579 Remove all references to fixed-output-files, yacc is enough.
14580
145812001-12-29 Akim Demaille <akim@epita.fr>
14582
14583 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
14584 user prologue. These are defaults.
14585 * tests/actions.at (Mid-rule actions): Make sure the user can
14586 define YYDEBUG and YYERROR_VERBOSE.
14587
145882001-12-29 Akim Demaille <akim@epita.fr>
14589
14590 * src/output.c (header_output): Don't forget to export YYLTYPE and
14591 yylloc.
14592 * tests/headers.at (export YYLTYPE): New, make sure it does.
14593 * tests/regression.at (%union and --defines, Invalid CPP headers):
14594 Move to...
14595 * tests/headers.at: here.
14596
145972001-12-29 Akim Demaille <akim@epita.fr>
14598
14599 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
14600
146012001-12-29 Akim Demaille <akim@epita.fr>
14602
14603 * tests/actions.at (Mid-rule actions): Output on a single line
14604 instead of several.
14605
146062001-12-29 Akim Demaille <akim@epita.fr>
14607
14608 * doc/bison.texinfo: Formatting changes.
14609
146102001-12-29 Akim Demaille <akim@epita.fr>
14611
14612 Don't store the token defs in a muscle, just be ready to output it
14613 on command. Now possible via `symbols'. Fixes a memory leak.
14614
14615 * src/output.c (token_definitions_output): New.
14616 (output_parser, header_output): Use it.
14617 * src/reader.c (symbols_save): Remove.
14618
146192001-12-29 Akim Demaille <akim@epita.fr>
14620
14621 * src/bison.simple: Do not provide a default for YYSTYPE and
14622 YYLTYPE before the user's prologue. Otherwise it's hardly... a
14623 default.
14624
146252001-12-29 Akim Demaille <akim@epita.fr>
14626
14627 Mid-rule actions are simply... ignored!
14628
14629 * src/reader.c (readgram): Be sure to attach mid-rule actions to
14630 the empty-rule associated to the dummy symbol, not to the host
14631 rule.
14632 * tests/actions.at (Mid-rule actions): New.
14633
146342001-12-29 Akim Demaille <akim@epita.fr>
14635
14636 Memory leak.
14637
14638 * src/reader.c (reader): Free grammar.
14639
146402001-12-29 Akim Demaille <akim@epita.fr>
14641
14642 Memory leak.
14643
14644 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
14645 since it allocates it for each state, although only one is needed.
14646 (allocate_storage): Do it here.
14647
146482001-12-29 Akim Demaille <akim@epita.fr>
14649
14650 * src/options.h, src/options.c (create_long_option_table): Rename
14651 as...
14652 (long_option_table_new): this, with a clearer prototype.
14653 (percent_table): Remove, unused,
14654 * src/getargs.c (getargs): Adjust.
14655
146562001-12-29 Akim Demaille <akim@epita.fr>
14657
14658 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
14659 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
14660 as states.
14661
146622001-12-29 Akim Demaille <akim@epita.fr>
14663
14664 * src/lalr.c (build_relations): Rename `states' as `states1'.
14665 Sorry, I don't understand exactly what it is, no better name...
14666
146672001-12-29 Akim Demaille <akim@epita.fr>
14668
14669 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
14670 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
14671 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
14672 as rules.
14673
146742001-12-29 Akim Demaille <akim@epita.fr>
14675
14676 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
14677 ago.
14678
146792001-12-29 Akim Demaille <akim@epita.fr>
14680
14681 * src/reader.c, src/reader.h (user_toknums): Remove.
14682 Adjust all users to use symbols[i]->user_token_number.
14683
146842001-12-29 Akim Demaille <akim@epita.fr>
14685
14686 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
14687 Adjust all users to use symbols[i]->prec or ->assoc.
14688
146892001-12-29 Akim Demaille <akim@epita.fr>
14690
14691 * src/reader.c, src/reader.h (tags): Remove.
14692 Adjust all users to use symbols[i]->tag.
14693
146942001-12-29 Akim Demaille <akim@epita.fr>
14695
14696 * src/gram.h, src/gram.c (symbols): New, similar to state_table
14697 and rule_table.
14698 * src/reader.c (packsymbols): Fill this table.
14699 Drop sprec.
14700 * src/conflicts.c (resolve_sr_conflict): Adjust.
14701 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
14702 single table.
14703 Use symbols[i]->tag instead of tags[i].
14704
147052001-12-29 Akim Demaille <akim@epita.fr>
14706
14707 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
14708 In addition, put a comment in there, to replace...
14709 * tests/regression.at (%union and C comments): Remove.
14710
147112001-12-29 Akim Demaille <akim@epita.fr>
14712
14713 * tests/regression.at (Web2c Actions): Blindly move the actual
14714 output as expected output. The contents *seem* right to me, but I
14715 can't pretend reading perfectly parser tables... Nonetheless, all
14716 the other tests pass correctly, the table look OK, even though the
14717 presence of `$axiom' is to be noted: AFAICS it is useless (but
14718 harmless).
14719
147202001-12-29 Akim Demaille <akim@epita.fr>
14721
14722 * src/reader.c (readgram): Don't add the rule 0 if there were no
14723 rules read. In other words, add it _after_ having performed
14724 grammar sanity checks.
14725 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
14726
147272001-12-29 Akim Demaille <akim@epita.fr>
14728
14729 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
14730 visible, and some states have now a different number.
14731
147322001-12-29 Akim Demaille <akim@epita.fr>
14733
14734 * src/reader.c (readgram): Bind the initial rule's lineno to that
14735 of the first rule.
14736 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
14737 (Solved SR Conflicts): Adjust rule 0's line number.
14738
147392001-12-29 Akim Demaille <akim@epita.fr>
14740
14741 Fix the `GAWK Grammar' failure.
14742
14743 * src/LR0.c (final_state): Initialize to -1 so that we do compute
14744 the reductions of the first state which was mistakenly confused
14745 with the final state because precisely final_state was initialized
14746 to 0.
14747 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
14748 now noticed by Bison.
14749 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
14750 have a reduction on $default.
14751
147522001-12-29 Akim Demaille <akim@epita.fr>
14753
14754 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
14755 rule line numbers.
14756 * src/closure.c (print_closure): Likewise.
14757 * src/derives.c (print_derives): Likewise.
14758 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
14759 now.
14760
147612001-12-29 Akim Demaille <akim@epita.fr>
14762
14763 * src/lalr.c (lookaheads_print): New.
14764 (lalr): Call it when --trace-flag.
14765 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
14766 are dumped.
14767
147682001-12-29 Akim Demaille <akim@epita.fr>
14769
14770 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
14771 when walking through ritem, even via rule->rhs.
14772 * src/reduce.c (dump_grammar, useful_production, reduce_output)
14773 (useful_production, useless_nonterminals): Likewise.
14774 (reduce_grammar_tables): Likewise, plus update nritems.
14775 * src/nullable.c (set_nullable): Likewise.
14776 * src/lalr.c (build_relations): Likewise.
14777 * tests/sets.at (Nullable): Adjust.
14778 Fortunately, now, the $axiom is no longer nullable.
14779
147802001-12-29 Akim Demaille <akim@epita.fr>
14781
14782 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
14783 the 0-sentinel.
14784 * src/gram.c (ritem_longest_rhs): Likewise.
14785 * src/reduce.c (nonterminals_reduce): Likewise.
14786 * src/print_graph.c (print_graph): Likewise.
14787 * src/output.c (output_rule_data): Likewise.
14788 * src/nullable.c (set_nullable): Likewise.
14789
147902001-12-29 Akim Demaille <akim@epita.fr>
14791
14792 * src/output.c: Comment changes.
14793
147942001-12-27 Paul Eggert <eggert@twinsun.com>
14795
14796 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
14797 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
14798 Sparc, as they were causing more porting problems than the
14799 (minor) performance improvement was worth.
14800
14801 Also, catch up with 1.31's YYSTD.
14802
148032001-12-27 Akim Demaille <akim@epita.fr>
14804
14805 * src/output.c (output_gram): Rely on nritems, not the
14806 0-sentinel. See below.
14807 Use -1 as separator, not 0.
14808 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
14809 Rely on -1 as separator in yyrhs, instead of 0.
14810 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
14811 twice `Now at end of input', therefore there are two lines less to
14812 expect.
14813
148142001-12-27 Akim Demaille <akim@epita.fr>
14815
14816 * tests/regression.at (Unresolved SR Conflicts):
14817 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
14818 below.
14819
148202001-12-27 Akim Demaille <akim@epita.fr>
14821
14822 * src/LR0.c (new_state): Recognize the final state by the fact it
14823 is reached by eoftoken.
14824 (insert_start_shifting_state, insert_eof_shifting_state)
14825 (insert_accepting_state, augment_automaton): Remove, since now
14826 these states are automatically computed from the initial state.
14827 (generate_states): Adjust.
14828 * src/print.c: When reporting a rule number to the user, substract
14829 1, so that the axiom rule is rule 0, and the first user rule is 1.
14830 * src/reduce.c: Likewise.
14831 * src/print_graph.c (print_core): For the time being, just as for
14832 the report, depend upon --trace-flags to dump the full set of
14833 items.
14834 * src/reader.c (readgram): Once the grammar read, insert the rule
14835 0: `$axiom: START-SYMBOL $'.
14836 * tests/set.at: Adjust: rule 0 is now displayed, and since the
14837 number of the states has changed (the final state is no longer
14838 necessarily the last), catch up.
14839
148402001-12-27 Akim Demaille <akim@epita.fr>
14841
14842 Try to make the use of the eoftoken valid. Given that its value
14843 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
14844 is used instead of > 0 where appropriate, (ii), depend upon nritems
14845 instead of the 0-sentinel.
14846
14847 * src/gram.h, src/gram.c (nritems): New.
14848 Expected to be duplication of nitems, but for the time being...
14849 * src/reader.c (packgram): Assert nritems and nitems are equal.
14850 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
14851 * src/closure.c (print_closure, print_fderives): Likewise.
14852 * src/gram.c (ritem_print): Likewise.
14853 * src/print.c (print_core, print_grammar): Likewise.
14854 * src/print_graph.c: Likewise.
14855
148562001-12-27 Akim Demaille <akim@epita.fr>
14857
14858 * src/main.c (main): If there are complains after grammar
14859 reductions, then output the report anyway if requested, then die.
14860 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
14861 * src/reader.c (eoftoken): New.
14862 (parse_token_decl): If the token being defined has value `0', it
14863 is the eoftoken.
14864 (packsymbols): No longer hack `tags' to insert `$' by hand.
14865 Be sure to preserve the value of the eoftoken.
14866 (reader): Make sure eoftoken is defined.
14867 Initialize nsyms to 0: now eoftoken is created just like the others.
14868 * src/print.c (print_grammar): Don't special case the eof token.
14869 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
14870 lie anyway, albeit pleasant.
14871 * tests/calc.at: Exercise error messages with eoftoken.
14872 Change the grammar so that empty input is invalid.
14873 Adjust expectations.
14874 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
14875
148762001-12-27 Akim Demaille <akim@epita.fr>
14877
14878 * configure.in: Check the protos of strchr ans strspn.
14879 Replace strchr if needed.
14880 * src/system.h: Provide the protos of strchr, strspn and memchr if
14881 missing.
14882 * lib/strchr.c: New.
14883 * src/reader.c (symbols_save): Use strchr.
14884
148852001-12-27 Akim Demaille <akim@epita.fr>
14886
14887 * src/print.c, src/print_graph.c (escape): New.
14888 Use it to quote the TAGS outputs.
14889 * src/print_graph.c (print_state): Now errors are in red, and
14890 reductions in green.
14891 Prefer high to wide: output the state number on a line of its own.
14892
148932001-12-27 Akim Demaille <akim@epita.fr>
14894
14895 * src/state.h, src/state.c (reductions_new): New.
14896 * src/LR0.c (set_state_table): Let all the states have a
14897 `reductions', even if reduced to 0.
14898 (save_reductions): Adjust.
14899 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
14900 * src/print.c (print_reductions, print_actions): Adjust.
14901 * src/output.c (action_row): Adjust.
14902
149032001-12-27 Akim Demaille <akim@epita.fr>
14904
14905 * src/state.h, src/state.c (errs_new, errs_dup): New.
14906 * src/LR0.c (set_state_table): Let all the states have an errs,
14907 even if reduced to 0.
14908 * src/print.c (print_errs, print_reductions): Adjust.
14909 * src/output.c (output_actions, action_row): Adjust.
14910 * src/conflicts.c (resolve_sr_conflict): Adjust.
14911
149122001-12-27 Akim Demaille <akim@epita.fr>
14913
14914 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
14915
149162001-12-27 Akim Demaille <akim@epita.fr>
14917
14918 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
14919 * src/print.c: here.
14920 (lookaheadset, shiftset): New, used as additional storage by
14921 print_reductions.
14922 (print_results): Adjust.
14923 (print_shifts, print_gotos, print_errs): New, extracted from...
14924 (print_actions): here.
14925 * src/print_graph.c (print_actions): Remove dead code.
14926
149272001-12-27 Akim Demaille <akim@epita.fr>
14928
14929 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
14930 `$n' and `@n'.
14931
149322001-12-27 Akim Demaille <akim@epita.fr>
14933
14934 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
14935 (build_relations): Adjust.
14936
149372001-12-27 Akim Demaille <akim@epita.fr>
14938
14939 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
14940 duplication.
14941
149422001-12-27 Akim Demaille <akim@epita.fr>
14943
14944 * src/reader.c (packgram): Catch nitems overflows.
14945
149462001-12-27 Akim Demaille <akim@epita.fr>
14947
14948 * src/files.c, src/files.h (guard_obstack): Remove.
14949 * src/output.c (output): Adjust.
14950 * src/reader.c (parse_braces): New, factoring...
14951 (copy_action, copy_guard): these two which are renamed as...
14952 (parse_action, parse_guard): these.
14953 As a voluntary consequence, using braces around guards is now
14954 mandatory.
14955
149562001-12-27 Akim Demaille <akim@epita.fr>
14957
14958 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
14959 * src/reader.c (symbol_list): `guard' and `guard_line' are new
14960 members.
14961 (symbol_list_new): Adjust.
14962 (copy_action): action_line is the first line, not the last.
14963 (copy_guard): Just as for actions, store the `action' only, not
14964 the switch/case/break flesh.
14965 Don't parse the user action that might follow the guard, let...
14966 (readgram): do it, i.e., now, there can be an action after a
14967 guard.
14968 In other words the guard is just explicitly optional.
14969 (packgram): Adjust.
14970 * src/output.c (guards_output): New.
14971 (output_parser): Call it when needed.
14972 (output): Also free the guard and attrs obstacks.
14973 * src/files.c, src/files.h (obstack_save): Remove.
14974 (output_files): Remove.
14975 As a result, if one needs the former `.act' file, using an
14976 appropriate skeleton which requires actions and guards is now
14977 required.
14978 * src/main.c (main): Adjust.
14979 * tests/semantic.at: New.
14980 * tests/regression.at: Use `input.y' as input file name.
14981 Avoid 8+3 problems by requiring input.c when the test needs the
14982 parser.
14983
149842001-12-27 Akim Demaille <akim@epita.fr>
14985
14986 * src/reader.c (symbol_list_new): Be sure to initialize all the
14987 fields.
14988
149892001-12-27 Akim Demaille <akim@epita.fr>
14990
14991 All the hacks using a final pseudo state are now useless.
14992
14993 * src/LR0.c (set_state_table): state_table holds exactly nstates.
14994 * src/lalr.c (nLA): New.
14995 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
14996 instead of lookaheadsp from the pseudo state (nstate + 1).
14997
149982001-12-27 Akim Demaille <akim@epita.fr>
14999
15000 * src/output.c (action_row, token_actions): Use a state_t instead
15001 of a integer, and nlookaheads instead of the following state's
15002 lookaheadsp.
15003
150042001-12-27 Akim Demaille <akim@epita.fr>
15005
15006 * src/conflicts.c (log_resolution, flush_shift)
15007 (resolve_sr_conflict, set_conflicts, solve_conflicts)
15008 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
15009 (conflicts_print, print_reductions): Use a state_t instead of an
15010 integer when referring to a state.
15011 As much as possible, depend upon nlookaheads, instead of the
15012 `lookaheadsp' member of the following state (since lookaheads of
15013 successive states are successive, the difference between state n + 1
15014 and n served as the number of lookaheads for state n).
15015 * src/lalr.c (add_lookback_edge): Likewise.
15016 * src/print.c (print_core, print_actions, print_state)
15017 (print_results): Likewise.
15018 * src/print_graph.c (print_core, print_actions, print_state)
15019 (print_graph): Likewise.
15020 * src/conflicts.h: Adjust.
15021
150222001-12-27 Akim Demaille <akim@epita.fr>
15023
15024 * src/bison.hairy: Formatting/comment changes.
15025 ANSIfy.
15026 Remove `register' indications.
15027 Add plenty of `static'.
15028
150292001-12-27 Akim Demaille <akim@epita.fr>
15030
15031 * src/output.c (prepare): Drop the muscle `ntbase' which
15032 duplicates ntokens.
15033 * src/bison.simple: Formatting/comment changes.
15034 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
15035 is an undocumented synonym.
15036
150372001-12-22 Akim Demaille <akim@epita.fr>
15038
15039 * src/output.c (output_table_data): Change the prototype to use
15040 `int' for array ranges: some invocations do pass an int, not a
15041 short.
15042 Reported by Wayne Green.
15043
150442001-12-22 Akim Demaille <akim@epita.fr>
15045
15046 Some actions of web2c.y are improperly triggered.
15047 Reported by Mike Castle.
15048
15049 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
15050 * tests/regression.at (Web2c): Rename as...
15051 (Web2c Report): this.
15052 (Web2c Actions): New.
15053
150542001-12-22 Akim Demaille <akim@epita.fr>
15055
15056 Reductions in web2c.y are improperly reported.
15057 Reported by Mike Castle.
15058
15059 * src/conflicts.c (print_reductions): Fix.
15060 * tests/regression.at (Web2c): New.
15061
150622001-12-18 Akim Demaille <akim@epita.fr>
15063
15064 Some host fail on `assert (!"foo")', which expands to
15065 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
15066 Reported by Nelson Beebee.
15067
15068 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
15069 `#define it_succeeded 0' and `assert (it_succeeded)'.
15070
150712001-12-17 Marc Autret <autret_m@epita.fr>
15072
15073 * src/bison.simple: Don't hard code the skeleton line and filename.
15074 * src/output.c (output_parser): Rename 'line' as 'output_line'.
15075 New line counter 'skeleton_line' (skeleton-line muscle).
15076
150772001-12-17 Paul Eggert <eggert@twinsun.com>
15078
15079 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
15080 YYDEBUG must be defined to a nonzero value.
15081
15082 * src/bison.simple (yytname): Do not assume that the user defines
15083 YYDEBUG to a properly parenthesized expression.
15084
150852001-12-17 Akim Demaille <akim@epita.fr>
15086
15087 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
15088 nlookaheads is a new member.
15089 Adjust all users.
15090 * src/lalr.h (nlookaheads): Remove this orphan declaration.
15091 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
15092 state.
15093
150942001-12-17 Akim Demaille <akim@epita.fr>
15095
15096 * src/files.h, src/files.c (open_files, close_files): Remove.
15097 * src/main.c (main): Don't open/close files, nor invoke lex_free,
15098 let...
15099 * src/reader.c (reader): Do it.
15100
151012001-12-17 Akim Demaille <akim@epita.fr>
15102
15103 * src/conflicts.c (print_reductions): Formatting changes.
15104
151052001-12-17 Akim Demaille <akim@epita.fr>
15106
15107 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
15108 (flush_reduce): New.
15109 (resolve_sr_conflict): Adjust.
15110
151112001-12-17 Akim Demaille <akim@epita.fr>
15112
15113 * src/output.c (output_obstack): Be static and rename as...
15114 (format_obstack): this, to avoid any confusion with files.c's
15115 output_obstack.
15116 * src/reader.h (muscle_obstack): Move to...
15117 * src/output.h: here, since it's defined in output.c.
15118
151192001-12-17 Akim Demaille <akim@epita.fr>
15120
15121 * src/output.c (action_row, save_column, default_goto)
15122 (sort_actions, matching_state, pack_vector): Better variable
15123 locality.
15124
151252001-12-17 Akim Demaille <akim@epita.fr>
15126
15127 * src/output.c: Various formatting changes.
15128
151292001-12-17 Akim Demaille <akim@epita.fr>
15130
15131 * src/files.c (output_files): Free the output_obstack.
15132 * src/main.c (main): Call print and print_graph conditionally.
15133 * src/print.c (print): Work unconditionally.
15134 * src/print_graph.c (print_graph): Work unconditionally.
15135 * src/conflicts.c (log_resolution): Output only if verbose_flag.
15136
151372001-12-16 Marc Autret <autret_m@epita.fr>
15138
15139 * src/output.c (actions_output): Fix. When we use %no-lines,
15140 there is one less line per action.
15141
151422001-12-16 Marc Autret <autret_m@epita.fr>
15143
15144 * src/bison.simple: Remove a useless #line directive.
15145 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
15146 * src/output.c (get_lines_number): New.
15147 (output_parser): Adjust, now takes care about the lines of a
15148 output muscles.
15149 Fix line numbering.
15150 (actions_output): Computes the number of lines taken by actions.
15151 (output_master_parser): Insert new skeleton which is the name of
15152 the output parser file name.
15153
151542001-12-15 Marc Autret <autret_m@epita.fr>
15155
15156 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
15157
151582001-12-15 Marc Autret <autret_m@epita.fr>
15159
15160 * src/output.c (output_gram): Keep track of the hairy one.
15161
151622001-12-15 Akim Demaille <akim@epita.fr>
15163
15164 Make `make distcheck' work.
15165
15166 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
15167 system.h which uses libgettext.h.
15168
151692001-12-15 Akim Demaille <akim@epita.fr>
15170
15171 * src/nullable.c (set_nullable): Useless rules must be skipped,
15172 otherwise, since we range over their symbols, we might look at a
15173 nonterminal which no longer ``exists'', i.e., it is not counted in
15174 `nvars', hence we overflow our arrays.
15175
151762001-12-15 Akim Demaille <akim@epita.fr>
15177
15178 The header can also be produced directly, without any obstack!
15179 Yahoo!
15180
15181 * src/files.c, src/files.h (defines_obstack): Remove.
15182 (compute_header_macro): Global.
15183 (defines_obstack_save): Remove.
15184 * src/reader.c (parse_union_decl): No longer output to
15185 defines_obstack: its content can be found in the `stype' muscle
15186 anyway.
15187 (output_token_translations): Merge into...
15188 (symbols_output): this.
15189 Rename as...
15190 (symbols_save): this.
15191 (reader): Adjust.
15192 * src/output.c (header_output): New.
15193 (output): Call it.
15194
151952001-12-15 Akim Demaille <akim@epita.fr>
15196
15197 * src/reader.c (parse_union_decl): Instead of handling two obstack
15198 simultaneously, use one to define the `stype' muscle, and use the
15199 value of the latter to fill defines_obstack.
15200 (copy_comment): Remove.
15201 (copy_comment2): Work for a single obstack.
15202 Rename as...
15203 (copy_comment): this.
15204
152052001-12-15 Akim Demaille <akim@epita.fr>
15206
15207 * src/lex.c, src/lex.h (xgetc): No longer static.
15208 * src/reader.c (parse_union_decl): Revamp.
15209
152102001-12-15 Akim Demaille <akim@epita.fr>
15211
15212 Still making progress in separating Bison into (i) input, (ii)
15213 process, (iii) output: now we can directly output the parser file
15214 without using table_obstack at all.
15215
15216 * src/files.c, src/files.h (table_obstack): Bye bye.
15217 (parser_file_name): New.
15218 * src/files.c (compute_output_file_names): Compute it.
15219 * src/output.c (actions_output, output_parser)
15220 (output_master_parser): To a file instead of an obstack.
15221
152222001-12-15 Akim Demaille <akim@epita.fr>
15223
15224 Attach actions to rules, instead of pre-outputting them to
15225 actions_obstack.
15226
15227 * src/gram.h (rule_t): action and action_line are new members.
15228 * src/reader.c (symbol_list): Likewise.
15229 (copy_action): Save the actions within the rule.
15230 (packgram): Save them in rule_table.
15231 * src/output.c (actions_output): New.
15232 (output_parser): Use it on `%%actions'.
15233 (output_rule_data): Don't free rule_table.
15234 (output): Do it.
15235 (prepare): Don't save the `action' muscle.
15236 * src/bison.simple: s/%%action/%%actions/.
15237
152382001-12-15 Akim Demaille <akim@epita.fr>
15239
15240 * src/reader.c (copy_action): When --yacc, don't append a `;'
15241 to the user action: let it fail if lacking.
15242 Suggested by Arnold Robbins and Tom Tromey.
15243
152442001-12-14 Akim Demaille <akim@epita.fr>
15245
15246 * src/lex.c (literalchar): Simply return the char you decoded, non
15247 longer mess around with obstacks and int pointers.
15248 Adjust all callers.
15249
152502001-12-14 Akim Demaille <akim@epita.fr>
15251
15252 * src/lex.c (literalchar): Don't escape the special characters,
15253 just decode them, and keep them as char (before, eol was output as
15254 the 2 char string `\n' etc.).
15255 * src/output.c (output_rule_data): Use quotearg to output the
15256 token strings.
15257
152582001-12-13 Paul Eggert <eggert@twinsun.com>
15259
15260 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
15261 Do not infringe on the global user namespace when using C++.
15262 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
15263 All uses of `fprintf' and `stderr' changed.
15264
15265 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
15266
152672001-12-13 Akim Demaille <akim@epita.fr>
15268
15269 The computation of nullable is broken: it doesn't handle empty
15270 RHS's properly.
15271
15272 * tests/torture.at (GNU AWK Grammar): New.
15273 * tests/sets.at (Nullable): New.
15274 * src/nullable.c (set_nullable): Instead of blindly looping over
15275 `ritems', loop over the rules, and then over their rhs's.
15276
15277 Work around Autotest bugs.
15278
15279 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
15280 frame, because Autotest understand lines starting with a `+' as
15281 traces from the shell. Then, they are not processed properly.
15282 Admittedly an Autotest bug, but we don't have time to wait for
15283 Autotest to catch up.
15284 * tests/regression.at (Broken Closure): Adjust to the new table
15285 frames.
15286 Move to...
15287 * tests/sets.at: here.
15288
152892001-12-13 Akim Demaille <akim@epita.fr>
15290
15291 * src/closure.c (closure): Use nrules instead of playing tricks
15292 with BITS_PER_WORD.
15293
152942001-12-13 Akim Demaille <akim@epita.fr>
15295
15296 * src/print.c (print_actions): Output the handling of `$' as the
15297 traces do: shifting the token EOF. Before EOF was treated as a
15298 nonterminal.
15299 * tests/regression.at: Adjust some tests.
15300 * src/print_graph.c (print_core): Complete the set of items via
15301 closure. The next-to-final and final states are still unsatisfying,
15302 but that's to be addressed elsewhere.
15303 No longer output the rule numbers, but do output the state number.
15304 A single loop for the shifts + gotos is enough, but picked a
15305 distinct color for each.
15306 (print_graph): Initialize and finalize closure.
15307
153082001-12-13 Akim Demaille <akim@epita.fr>
15309
15310 * src/reader.c (readgram): Remove dead code, an strip useless
15311 braces.
15312 (get_type): Remove, unused.
15313
153142001-12-12 Akim Demaille <akim@epita.fr>
15315
15316 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
15317 on that of lib/error.c.
15318
153192001-12-12 Akim Demaille <akim@epita.fr>
15320
15321 Some hosts don't like `/' in includes.
15322
15323 * src/system.h: Include libgettext.h without qualifying the path.
15324 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
15325 $(top_srcdir).
15326
153272001-12-11 Marc Autret <autret_m@epita.fr>
15328
15329 * src/output.c (output_parser): Remove useless muscle.
15330
153312001-12-11 Marc Autret <autret_m@epita.fr>
15332
15333 * src/bison.simple: Remove #line just before %%epilogue. It
15334 is now handled in ...
15335 * src/reader.c (read_additionnal_code): Add the output of a
15336 #line for the epilogue.
15337
153382001-12-10 Marc Autret <autret_m@epita.fr>
15339
15340 * src/reader.c (copy_definition): Re-use CPP-outed code which
15341 replace precedent remove.
15342 * src/bison.simple: Remove #line before %%prologue because
15343 %%input-line is wrong at this time.
15344
153452001-12-10 Marc Autret <autret_m@epita.fr>
15346
15347 * src/reader.c (symbols_output): Clean up.
15348 * src/output.c (output_gram, output): Clean up.
15349
153502001-12-10 Akim Demaille <akim@epita.fr>
15351
15352 * src/lalr.c (initialize_lookaheads): New. Extracted from...
15353 * src/LR0.c (set_state_table): here.
15354 * src/lalr.c (lalr): Call it.
15355
153562001-12-10 Akim Demaille <akim@epita.fr>
15357
15358 * src/state.h (shifts): Remove the `number' member: shifts are
15359 attached to state, hence no longer need to be labelled with a
15360 state number.
15361
153622001-12-10 Akim Demaille <akim@epita.fr>
15363
15364 Now that states have a complete set of members, the linked list of
15365 shifts is useless: just fill directly the state's shifts member.
15366
15367 * src/state.h (shifts): Remove the `next' member.
15368 * src/LR0.c (first_state, last_state): Remove.
15369 Adjust the callers.
15370 (augment_automaton): Don't look for the shifts that must be added
15371 a shift on EOF: it is those of the state we looked for! But now,
15372 since shifts are attached, it is no longer needed to looking
15373 merely by its id: its number.
15374
153752001-12-10 Akim Demaille <akim@epita.fr>
15376
15377 * src/LR0.c (augment_automaton): Better variable locality.
15378 Remove an impossible branch: if there is a state corresponding to
15379 the start symbol being shifted, then there is shift for the start
15380 symbol from the initial state.
15381
153822001-12-10 Akim Demaille <akim@epita.fr>
15383
15384 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
15385 only when appropriate: when insert_start_shifting_state' is not
15386 invoked.
15387 * tests/regression.at (Rule Line Numbers): Adjust.
15388
153892001-12-10 Akim Demaille <akim@epita.fr>
15390
15391 * src/LR0.c (augment_automaton): Now that all states have shifts,
15392 merge the two cases addition shifts to the initial state.
15393
153942001-12-10 Akim Demaille <akim@epita.fr>
15395
15396 * src/lalr.c (set_state_table): Move to...
15397 * src/LR0.c: here.
15398 * src/lalr.c (lalr): Don't call it...
15399 * src/LR0.c (generate_states): do it.
15400 * src/LR0.h (first_state): Remove, only the table is used.
15401
154022001-12-10 Akim Demaille <akim@epita.fr>
15403
15404 * src/LR0.h (first_shift, first_reduction): Remove.
15405 * src/lalr.c: Don't use first_shift: find shifts through the
15406 states.
15407
154082001-12-10 Akim Demaille <akim@epita.fr>
15409
15410 * src/LR0.c: Attach shifts to states as soon as they are
15411 computed.
15412 * src/lalr.c (set_state_table): Instead of assigning shifts to
15413 state, just assert that the mapping was properly done.
15414
154152001-12-10 Akim Demaille <akim@epita.fr>
15416
15417 * src/LR0.c (insert_start_shift): Rename as...
15418 (insert_start_shifting_state): this.
15419 (insert_eof_shifting_state, insert_accepting_state): New.
15420 (augment_automaton): Adjust.
15421 Better locality of the variables.
15422 When looking if the start_symbol is shifted from the initial
15423 state, using `while (... symbol != start_symbol ...)' sounds
15424 better than `while (... symbol < start_symbol ...)': If fail
15425 to see how the order between symbols could be relevant!
15426
154272001-12-10 Akim Demaille <akim@epita.fr>
15428
15429 * src/getargs.h: Don't declare `spec_name_prefix' and
15430 `spec_file_prefix', declared by src/files.h.
15431 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
15432 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
15433 * src/output.c (prepare): Adjust.
15434 * src/reader.c (symbols_output): Likewise.
15435 * src/vmsgetargs.c: Vaguely adjust, but who cares?
15436
154372001-12-10 Akim Demaille <akim@epita.fr>
15438
15439 * src/muscle_tab.c (muscle_init): NULL is a better default than
15440 `"0"'.
15441
154422001-12-10 Akim Demaille <akim@epita.fr>
15443
15444 * src/reader.c (reader): Calling symbols_output once is enough.
15445
154462001-12-10 Akim Demaille <akim@epita.fr>
15447
15448 Now that states have a complete set of members, the linked list of
15449 reductions is useless: just fill directly the state's reductions
15450 member.
15451
15452 * src/state.h (struct reductions): Remove member `number' and
15453 `next'.
15454 * src/LR0.c (first_reduction, last_reduction): Remove.
15455 (save_reductions): Don't link the new reductions, store them in
15456 this_state.
15457 * src/lalr.c (set_state_table): No need to attach reductions to
15458 states, it's already done.
15459 * src/output.c (output_actions): No longer free the shifts, then
15460 the reductions, then the states: free all the states and their
15461 members.
15462
154632001-12-10 Akim Demaille <akim@epita.fr>
15464
15465 * src/options.c (OPTN, DRTV, BOTH): New.
15466 (option_table): Use them.
15467
15468 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
15469 the job of system.h.
15470 * src/options.c: Don't include stdio.h and xalloc.h for the same
15471 reasons.
15472
154732001-12-10 Akim Demaille <akim@epita.fr>
15474
15475 * src/output.c (output, prepare): Make sure the values of the
15476 muscles `action' and `prologue' are 0-terminated.
15477
154782001-12-10 Akim Demaille <akim@epita.fr>
15479
15480 Clean up GCC warnings.
15481
15482 * src/reader.c (copy_action): `buf' is not used.
15483 (parse_skel_decl): Be static.
15484 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
15485 * src/options.h (create_long_option_table): Have a real prototype.
15486 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
15487 (hash_delete_at): Return const void *.
15488 Adjust casts to preserve the const.
15489
154902001-12-10 Akim Demaille <akim@epita.fr>
15491
15492 * configure.in: Require 2.52g.
15493 M4 is not needed, but AUTOM4TE is.
15494 * m4/m4.m4: Remove.
15495 * tests/Makefile.am: Adjust.
15496
154972001-12-10 Akim Demaille <akim@epita.fr>
15498
15499 One structure for states is enough, even though theoretically
15500 there are LR(0) states and LALR(1) states.
15501
15502 * src/lalr.h (state_t): Remove.
15503 (state_table): Be state_t **, not state_t *.
15504 * src/state.h (core, CORE_ALLOC): Rename as...
15505 (state_t, STATE_ALLOC): this.
15506 Add the LALR(1) members: shifts, reductions, errs.
15507 * src/LR0.c (state_table): Rename as...
15508 (state_hash): this, to avoid name clashes with the global
15509 `state_table'.
15510 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
15511 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
15512
155132001-12-10 Akim Demaille <akim@epita.fr>
15514
15515 Bison dumps core on bash.y.
15516 Reported by Pascal Bart.
15517
15518 * src/warshall.c (bitmatrix_print): New.
15519 (TC): Use it.
15520 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
15521 j must be the outer loop.
15522 * tests/regression.at (Broken Closure): New.
15523
155242001-12-05 Akim Demaille <akim@epita.fr>
15525
15526 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
15527 its argument.
15528 Reported by Peter Hamorsky.
15529
155302001-12-05 Akim Demaille <akim@epita.fr>
15531
15532 * src/conflicts.c (err_table): Remove.
15533 (resolve_sr_conflict): Adjust.
15534 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
15535 Rename as...
15536 (state_t.reductions, state_t.shifts): this.
15537
155382001-12-05 Akim Demaille <akim@epita.fr>
15539
15540 * src/reduce.c (reduce_grammar_tables): No longer disable the
15541 removal of useless rules via CPP but via `if (0)', so that the
15542 compiler still check the code is valid.
15543 For instance, it should have noticed `rline' no longer exists: use
15544 the `line' member of rule_t.
15545 * src/gram.c (dummy, rline): Remove, unused.
15546
155472001-12-05 Akim Demaille <akim@epita.fr>
15548
15549 * src/output.c (pack_vector): Use assert, not berror.
15550 * src/main.c (berror): Remove, unused.
15551
155522001-12-05 Akim Demaille <akim@epita.fr>
15553
15554 New experimental feature: if --verbose --trace output all the
15555 items of a state, not only its kernel.
15556
15557 * src/print.c (print_core): If `trace_flag', then invoke closure
15558 before outputting the items of the state (print_core is no longer
15559 a correct name them).
15560 (print_results): Invoke new_closure/free_closure if needed.
15561
155622001-12-05 Akim Demaille <akim@epita.fr>
15563
15564 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
15565 * src/closure.c, src/closure.h (itemsetsize): Rename as...
15566 (nitemset): for consistency with the rest of the project.
15567
155682001-12-05 Akim Demaille <akim@epita.fr>
15569
15570 * src/closure.c (print_closure): Improve.
15571 (closure): Use it for printing input and output.
15572
155732001-12-05 Akim Demaille <akim@epita.fr>
15574
15575 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
15576 indexed by nonterminals.
15577
155782001-12-05 Akim Demaille <akim@epita.fr>
15579
15580 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
15581 what it was!).
15582 * src/warshall.h: Remove accidental duplication of the content.
15583
155842001-12-05 Akim Demaille <akim@epita.fr>
15585
15586 * src/closure.c (set_fderives): De-obfuscate.
15587
155882001-12-05 Akim Demaille <akim@epita.fr>
15589
15590 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
15591
155922001-12-05 Akim Demaille <akim@epita.fr>
15593
15594 * src/closure.c (set_firsts): De-obfuscate.
15595
155962001-12-05 Akim Demaille <akim@epita.fr>
15597
15598 * src/output.c (action_row): De-obfuscate
15599 using the good o' techniques: arrays not pointers, variable
15600 locality, BITISSET, RESETBIT etc.
15601
156022001-12-05 Akim Demaille <akim@epita.fr>
15603
15604 Pessimize the code to simplify it: from now on, all the states
15605 have a valid SHIFTS, which NSHIFTS is possibly 0.
15606
15607 * src/LR0.c (shifts_new): Be global and move to..
15608 * src/state.c, src/state.h: here.
15609 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
15610 * src/print_graph: Adjust.
15611
156122001-12-05 Akim Demaille <akim@epita.fr>
15613
15614 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
15615 * src/conflicts.c: Use it.
15616 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
15617 incorrectly ``simplified''.
15618
156192001-12-05 Akim Demaille <akim@epita.fr>
15620
15621 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
15622 using the good o' techniques: arrays not pointers, variable
15623 locality, BITISSET, RESETBIT etc.
15624
156252001-12-05 Akim Demaille <akim@epita.fr>
15626
15627 * src/state.h (SHIFT_SYMBOL): New.
15628 * src/conflicts.c: Use it to deobfuscate.
15629
156302001-12-05 Akim Demaille <akim@epita.fr>
15631
15632 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
15633 (print_reductions): De-obfuscate using the good o' techniques:
15634 arrays not pointers, variable locality, BITISSET.
15635
156362001-12-05 Akim Demaille <akim@epita.fr>
15637
15638 * src/conflicts.c (print_reductions): Arrays, not pointers.
15639 Use BITISSET.
15640
156412001-12-05 Akim Demaille <akim@epita.fr>
15642
15643 * src/conflicts.c (print_reductions): Pessimize, but clarify.
15644
156452001-12-05 Akim Demaille <akim@epita.fr>
15646
15647 * src/conflicts.c (print_reductions): Improve variable locality.
15648
156492001-12-05 Akim Demaille <akim@epita.fr>
15650
15651 * src/conflicts.c (print_reductions): Pessimize, but clarify.
15652
156532001-12-05 Akim Demaille <akim@epita.fr>
15654
15655 * src/conflicts.c (print_reductions): Improve variable locality.
15656
156572001-12-05 Akim Demaille <akim@epita.fr>
15658
15659 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
15660 * src/lalr.c: Use them.
15661
156622001-12-05 Akim Demaille <akim@epita.fr>
15663
15664 * src/LR0.c (augment_automaton): Formatting changes.
15665 Better variable locality.
15666
156672001-12-05 Akim Demaille <akim@epita.fr>
15668
15669 * src/lalr.c (matrix_print): New.
15670 (transpose): Use it.
15671 Use arrays instead of pointers.
15672
156732001-12-05 Akim Demaille <akim@epita.fr>
15674
15675 * src/lalr.c (maxrhs): Move to...
15676 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
15677 * src/lalr.c (build_relations): Adjust.
15678
156792001-12-05 Akim Demaille <akim@epita.fr>
15680
15681 * src/lalr.c (transpose): Free the memory allocated to the
15682 argument, as it is replaced by the results by the unique caller.
15683 (build_relations): Merely invoke transpose: it handles the memory
15684 deallocation.
15685 Improve variable locality.
15686 Avoid variables used as mere abbreviations.
15687 (compute_lookaheads): Use arrays instead of pointers.
15688
156892001-12-05 Akim Demaille <akim@epita.fr>
15690
15691 * src/lalr.c (initialize_F): Improve variable locality.
15692 Avoid variables used as mere abbreviations.
15693
156942001-12-05 Akim Demaille <akim@epita.fr>
15695
15696 * src/derives.c (print_derives): Display the ruleno.
15697 * src/lalr.c (initialize_F, transpose): Better variable locality
15698 to improve readability.
15699 Avoid variables used as mere abbreviations.
15700
157012001-12-05 Akim Demaille <akim@epita.fr>
15702
15703 * src/lalr.c (traverse): Use arrays instead of pointers.
15704
157052001-12-05 Akim Demaille <akim@epita.fr>
15706
15707 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
15708 the handling of squeue.
15709 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
15710
157112001-12-05 Akim Demaille <akim@epita.fr>
15712
15713 Because useless nonterminals are now kept alive (instead of being
15714 `destroyed'), we now sometimes examine them, and store information
15715 related to them. Hence we need to know their number, and adjust
15716 memory allocations.
15717
15718 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
15719 static.
15720 * src/LR0.c (allocate_itemsets): The memory allocated to
15721 `symbol_count' was used for two different purpose: once to count
15722 the number of occurrences of each symbol, and later reassigned to
15723 `shift_symbol', containing the symbol that can be shifted from a
15724 given state.
15725 Deobfuscate, i.e., allocate, use and free `symbol_count' here
15726 only, and...
15727 (new_itemsets): Allocate `shift_symbol' here.
15728 (allocate_itemsets): symbol_count includes useless nonterminals.
15729 Make room for them.
15730 (free_storage): Use `free', not `XFREE', for pointers that cannot
15731 be null.
15732
157332001-12-05 Akim Demaille <akim@epita.fr>
15734
15735 * src/nullable.c (set_nullable): Deobfuscate the handling of
15736 ritem.
15737 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
15738
157392001-12-05 Akim Demaille <akim@epita.fr>
15740
15741 * src/gram.c, src/gram.h (ritem_print): New.
15742 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
15743 (This useless function was defined only to work around VMS linkers
15744 that can't handle compilation units with variables only).
15745 * src/reduce.c (dump_grammar): Use it to trace the construction of
15746 ritem.
15747
157482001-12-04 Paul Eggert <eggert@twinsun.com>
15749
15750 * src/bison.simple (union yyalloc): Change member names
15751 to be the same as the stack names.
15752 (yyparse): yyptr is now union yyalloc *, not char *.
15753 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
15754 and may generate better code on some machines.
15755 (yystpcpy): Use prototype if __STDC__ is defined, not just
15756 if __cplusplus is defined.
15757
157582001-11-30 Akim Demaille <akim@epita.fr>
15759
15760 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
15761 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
15762 Gettext doesn't compile cleanly, and dies with -Werror.
15763 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
15764 Include WARNING_CFLAGS here.
15765 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
15766 before being defined.
15767
157682001-11-27 Paul Eggert <eggert@twinsun.com>
15769
15770 * lib/quotearg.h (quotearg_n, quotearg_n_style):
15771 First arg is int, not unsigned.
15772 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
15773 (SIZE_MAX, UINT_MAX): New macros.
15774 (quotearg_n_options): Abort if N is negative.
15775 Avoid overflow check on hosts where size_t is 64 bits and int
15776 is 32 bits, as overflow is impossible there.
15777 Fix off-by-one typo that caused unnecessary reallocation.
15778
157792001-11-29 Paul Eggert <eggert@twinsun.com>
15780
15781 Name space cleanup in generated parser.
15782
15783 * doc/bison.texinfo (Bison Parser): Discuss system headers
15784 and their effect on the user name space.
15785
15786 * src/bison.simple:
15787 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
15788 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
15789 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
15790
15791 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
15792 on user names when possible.
15793
15794 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
15795 Simplify test for whather <alloca.h> exists.
15796
15797 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
15798
15799 (<stdio.h>): Include if YYDEBUG.
15800
15801 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
15802 ! defined (yyoverflow) && ! defined (yymemcpy).
15803
15804 (yymemcpy, yyparse): Rename local variables as needed so that
15805 they all begin with 'yy'.
15806
15807 (yystrlen, yystpcpy): New functions.
15808
15809 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
15810 All uses changed.
15811
15812 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
15813 instead of relying on string.h functions. Use YYSTACK_ALLOC
15814 and YYSTACK_FREE instead of malloc and free.
15815
158162001-11-30 Akim Demaille <akim@epita.fr>
15817
15818 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
15819 before their first uses.
15820 (YYBISON, YYPURE): Move to the top of the output.
15821
158222001-11-30 Akim Demaille <akim@epita.fr>
15823
15824 * tests/reduce.at (Useless Nonterminals): Fix.
15825
158262001-11-30 Akim Demaille <akim@epita.fr>
15827
15828 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
15829 if body instead of `;' to pacify GCC's warnings.
15830
158312001-11-30 Akim Demaille <akim@epita.fr>
15832
15833 Instead of mapping the LHS of unused rules to -1, keep the LHS
15834 valid, but flag the rules as invalid.
15835
15836 * src/gram.h (rule_t): `useful' is a new member.
15837 * src/print.c (print_grammar): Adjust.
15838 * src/derives.c (set_derives): Likewise.
15839 * src/reader.c (packgram, reduce_output): Likewise.
15840 * src/reduce.c (reduce_grammar_tables): Likewise.
15841 * tests/reduce.at (Underivable Rules, Useless Rules): New.
15842
158432001-11-30 Akim Demaille <akim@epita.fr>
15844
15845 * src/reduce.c (reduce_output): Formatting changes.
15846 * src/print.c (print_results, print_grammar): Likewise.
15847 * tests/regression.at (Rule Line Numbers)
15848 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
15849
158502001-11-30 Akim Demaille <akim@epita.fr>
15851
15852 * src/reduce.c (nonterminals_reduce): Instead of throwing away
15853 useless nonterminals, move them at the end of the symbol arrays.
15854 (reduce_output): Adjust.
15855 * tests/reduce.at (Useless Nonterminals): Adjust.
15856
158572001-11-30 Akim Demaille <akim@epita.fr>
15858
15859 * src/reduce.c: Various comment/formatting changes.
15860 (nonterminals_reduce): New, extracted from...
15861 (reduce_grammar_tables): here.
15862 (reduce_grammar): Call nonterminals_reduce.
15863
158642001-11-29 Paul Eggert <eggert@twinsun.com>
15865
15866 * src/bison.simple (YYSTACK_REALLOC): Remove.
15867 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
15868 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
15869 New macros.
15870 (union yyalloc): New type.
15871 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
15872 an arbitrary restriction on hosts where size_t is wider than int.
15873
15874 (yyparse): Don't dump core if alloca or malloc fails; instead, report
15875 a parser stack overflow. Allocate just one block of memory for all
15876 three stacks, instead of allocating three blocks; this typically is
15877 faster and reduces fragmentation.
15878
15879 Do not limit the number of items in the stack to a value that fits
15880 in 'int', as this is an arbitrary limit on hosts with 64-bit
15881 size_t and 32-bit int.
15882
158832001-11-29 Marc Autret <autret_m@epita.fr>
15884
15885 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
15886 of defining YYERROR_VERBOSE.
15887 [AT_DATA]: $4 is now out of C declarations in the prologue.
15888
158892001-11-28 Marc Autret <autret_m@epita.fr>
15890
15891 * src/reader.c (parse_dquoted_param): New.
15892 (parse_skel_decl): Use it.
15893 * src/lex.h: Add its prototype.
15894 * src/lex.c (literalchar): Become not static.
15895
158962001-11-28 Marc Autret <autret_m@epita.fr>
15897
15898 * src/output.h: And put its extern declaration here.
15899 * src/output.c (error_verbose): Define here.
15900 (prepare): Echo name modification.
15901 * src/getargs.h: Clean its extern declaration.
15902 * src/getargs.c (error_verbose_flag): Remove.
15903 (getargs): Remove case 'e'.
15904 * src/options.c (option_table): 'error-verbose' is now seen as simple
15905 percent option.
15906 Include output.h.
15907
15908 * src/reader.c (read_declarations): Remove case tok_include.
15909 (parse_include_decl): Remove.
15910 * src/lex.h (token_t): Remove tok_include.
15911 * src/options.c (option_table): 'include' is now a simple command line
15912 option.
15913
159142001-11-28 Marc Autret <autret_m@epita.fr>
15915
15916 * src/bison.simple: Adjust muscle names.
15917 * src/muscle_tab.c (muscle_init): Also rename the muscles.
15918 * src/output.c (prepare): s/_/-/ for the muscles names.
15919 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
15920
159212001-11-28 Marc Autret <autret_m@epita.fr>
15922
15923 * src/bison.simple: Fix debug.
15924 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
15925
159262001-11-28 Akim Demaille <akim@epita.fr>
15927
15928 * src/LR0.c (shifts_new): New.
15929 (save_shifts, insert_start_shift, augment_automaton): Use it.
15930
159312001-11-28 Akim Demaille <akim@epita.fr>
15932
15933 * src/closure.c (closure): `b' and `ruleno' denote the same value:
15934 keep ruleno only.
15935
159362001-11-28 Akim Demaille <akim@epita.fr>
15937
15938 * src/closure.c (closure): Instead of looping over word in array
15939 then bits in words, loop over bits in array.
15940
159412001-11-28 Akim Demaille <akim@epita.fr>
15942
15943 * src/closure.c (closure): No longer optimize the special case
15944 where all the bits of `ruleset[r]' are set to 0, to make the code
15945 clearer.
15946
159472001-11-28 Akim Demaille <akim@epita.fr>
15948
15949 * src/closure.c (closure): `r' and `c' are new variables, used to
15950 de-obfuscate accesses to RULESET and CORE.
15951
159522001-11-28 Akim Demaille <akim@epita.fr>
15953
15954 * src/reduce.c (reduce_print): Use ngettext.
15955 (dump_grammar): Improve the trace accuracy.
15956
159572001-11-28 Akim Demaille <akim@epita.fr>
15958
15959 * src/reduce.c (dump_grammar): Don't translate trace messages.
15960
159612001-11-28 Akim Demaille <akim@epita.fr>
15962
15963 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
15964 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
15965 as all tags are free'ed afterwards.
15966 From Enrico Scholz.
15967
159682001-11-27 Paul Eggert <eggert@twinsun.com>
15969
15970 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
15971 use alloca when we didn't want to, and vice versa.
15972
159732001-11-27 Marc Autret <autret_m@epita.fr>
15974
15975 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
15976 initialization.
15977 * src/output.c (prepare): Remove its update.
15978
159792001-11-27 Marc Autret <autret_m@epita.fr>
15980
15981 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
15982 Use %error-verbose.
15983
159842001-11-27 Marc Autret <autret_m@epita.fr>
15985
15986 * src/bison.simple: Remove YYERROR_VERBOSE using.
15987 Use %%error_verbose.
15988 (yyparse): Likewise.
15989 * src/output.c (prepare): Give its final value.
15990 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
15991 * src/getargs.h: Add its extern declaration.
15992 * src/getargs.c (error_verbose_flag): New int.
15993 (getargs): Update to catch new case.
15994 * src/options.c (option_table): 'error-verbose' is a new option.
15995 (shortopts): Update.
15996
159972001-11-27 Akim Demaille <akim@epita.fr>
15998
15999 * src/system.h: Use intl/libgettext.h.
16000 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
16001
160022001-11-27 Akim Demaille <akim@epita.fr>
16003
16004 * tests/torture.at (Exploding the Stack Size with Malloc):
16005 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
16006
160072001-11-27 Akim Demaille <akim@epita.fr>
16008
16009 * src/files.c: Include error.h.
16010 Reported by Hans Aberg.
16011
160122001-11-26 Marc Autret <autret_m@epita.fr>
16013
16014 * src/reader.c (parse_include_decl): New, not yet implemented.
16015 (read_declarations): Add case tok_include.
16016 * src/getargs.h (include): Add its extern definition.
16017 * src/getargs.c (include): New const char *.
16018 (getargs): Add case '-I'.
16019 * src/options.c (option_table): Add include as command line and
16020 percent option.
16021 * src/lex.h (token_t): Add tok_include.
16022
160232001-11-26 Akim Demaille <akim@epita.fr>
16024
16025 * src/reader.c (readgram): Make sure rules for mid-rule actions
16026 have a lineno equal to that of their host rule.
16027 Reported by Hans Aberg.
16028 * tests/regression.at (Rule Line Numbers): New.
16029
160302001-11-26 Akim Demaille <akim@epita.fr>
16031
16032 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
16033 size_ts.
16034
160352001-11-26 Akim Demaille <akim@epita.fr>
16036
16037 * src/complain.c, src/complain.h (error): Remove, provided by
16038 lib/error.[ch].
16039
160402001-11-26 Akim Demaille <akim@epita.fr>
16041
16042 * src/reader.c (read_declarations): Don't abort on tok_illegal,
16043 issue an error message.
16044 * tests/regression.at (Invalid %directive): New.
16045 Reported by Hans Aberg.
16046
160472001-11-26 Akim Demaille <akim@epita.fr>
16048
16049 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
16050 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16051
160522001-11-26 Akim Demaille <akim@epita.fr>
16053
16054 * src/conflicts.c (conflicts_print): Don't complain at all when
16055 there are no reduce/reduce conflicts, and as many shift/reduce
16056 conflicts as expected.
16057 * tests/regression.at (%expect right): Adjust.
16058
160592001-11-23 Akim Demaille <akim@epita.fr>
16060
16061 * lib/alloca.c: Update, from fileutils.
16062
160632001-11-23 Akim Demaille <akim@epita.fr>
16064
16065 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
16066
160672001-11-23 Akim Demaille <akim@epita.fr>
16068
16069 * src/system.h: Include alloca.h.
16070 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
16071
160722001-11-23 Akim Demaille <akim@epita.fr>
16073
16074 * src/print_graph.c (print_actions): Remove `rule', unused.
16075 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
16076 pacify GCC's signed < unsigned warnings.
16077 * src/closure.c (itemsetsize): Likewise.
16078 * src/reader.c (symbol_list_new): Static.
16079
160802001-11-23 Akim Demaille <akim@epita.fr>
16081
16082 Attaching lineno to buckets is stupid, since only one copy of each
16083 symbol is kept, only the line of the first occurrence is kept too.
16084
16085 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
16086 * src/reader.c (rline_allocated): Remove, unused.
16087 (symbol_list): Have a `line' member.
16088 (symbol_list_new): New.
16089 (readgram): Use it.
16090 * src/print.c (print_grammar): Output the rule line numbers.
16091 * tests/regression.at (Solved SR Conflicts)
16092 (Unresolved SR Conflicts): Adjust.
16093 Reported by Hans Aberg.
16094
160952001-11-22 Marc Autret <autret_m@epita.fr>
16096
16097 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
16098
160992001-11-22 Marc Autret <autret_m@epita.fr>
16100
16101 * src/muscle_tab.c (muscle_init): Remove initialization of
16102 skeleton muscle.
16103 * src/output.c (output_master_parser): Do it here.
16104
161052001-11-20 Akim Demaille <akim@epita.fr>
16106
16107 * po/sv.po: New.
16108 * configure.in (ALL_LINGUAS): Adjust.
16109 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
16110 longer contains strings to translate.
16111
161122001-11-19 Akim Demaille <akim@epita.fr>
16113
16114 * src/conflicts.c (conflicts_print): Add a missing \n.
16115
161162001-11-19 Akim Demaille <akim@epita.fr>
16117
16118 * src/nullable.c (nullable_print): New.
16119 (set_nullable): Call it when tracing.
16120 Better locality of variables.
16121
161222001-11-19 Akim Demaille <akim@epita.fr>
16123
16124 * src/print.c (print_actions): Better locality of variables.
16125
161262001-11-19 Akim Demaille <akim@epita.fr>
16127
16128 * src/derives.c (print_derives): Fix and enrich.
16129 * src/closure.c (print_fderives): Likewise.
16130
161312001-11-19 Akim Demaille <akim@epita.fr>
16132
16133 * src/closure.c (itemsetend): Remove, replaced with...
16134 (itemsetsize): new.
16135
161362001-11-19 Akim Demaille <akim@epita.fr>
16137
16138 * src/LR0.c (kernel_end): Remove, replaced with...
16139 (kernel_size): new.
16140
161412001-11-19 Akim Demaille <akim@epita.fr>
16142
16143 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
16144 to clarify.
16145
161462001-11-19 Akim Demaille <akim@epita.fr>
16147
16148 * src/closure.c (closure): Use arrays instead of pointers to clarify.
16149
161502001-11-19 Akim Demaille <akim@epita.fr>
16151
16152 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
16153 trace messages.
16154 * src/LR0.c: Likewise.
16155 (allocate_itemsets): Use arrays instead of pointers to clarify.
16156
161572001-11-19 Akim Demaille <akim@epita.fr>
16158
16159 * src/getargs.c (statistics_flag): Replace with...
16160 (trace_flag): New.
16161 (longopts): Accept --trace instead of --statistics.
16162 * src/getargs.h, src/options.c: Adjust.
16163 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
16164 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
16165
161662001-11-19 Akim Demaille <akim@epita.fr>
16167
16168 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
16169 pointers to clarify the code.
16170 (save_reductions, save_shifts): Factor common parts of alternatives.
16171
161722001-11-19 Akim Demaille <akim@epita.fr>
16173
16174 * src/LR0.c (new_state, get_state): Complete TRACE code.
16175 * src/closure.c: Include `reader.h' to get `tags', needed by the
16176 trace code.
16177 Rename the conditional DEBUG as TRACE.
16178 Output consistently TRACEs to stderr, not stdout.
16179 * src/derives.c: Likewise.
16180 * src/reduce.c: (inaccessable_symbols): Using if is better style
16181 than goto.
16182 Use `#if TRACE' instead of `#if 0' for tracing code.
16183
161842001-11-19 Akim Demaille <akim@epita.fr>
16185
16186 * src/system.h (LIST_FREE, shortcpy): New.
16187 * src/LR0.c: Use them.
16188 * src/output.c (free_itemsets, free_reductions, free_shifts):
16189 Remove, replaced by LIST_FREE.
16190
161912001-11-19 Akim Demaille <akim@epita.fr>
16192
16193 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
16194 (REDUCTIONS_ALLOC): New.
16195 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
16196 allocation.
16197
161982001-11-19 Akim Demaille <akim@epita.fr>
16199
16200 * src/LR0.c (new_state): Complete trace code.
16201 * src/nullable.c (set_nullable): Don't translate traces.
16202
162032001-11-19 Akim Demaille <akim@epita.fr>
16204
16205 * src/print_graph.c (print_core): Better locality of variables.
16206 * src/print.c (print_core): Likewise.
16207
162082001-11-19 Akim Demaille <akim@epita.fr>
16209
16210 * src/vcg.c: You do the output, so you are responsible of the
16211 handling of VCG syntax, in particular: use quotearg.
16212 * src/print_graph.c: Don't.
16213 (print_actions): Don't output the actions as part of the nodes,
16214 since that's the job of the edges.
16215 (print_state): Don't output by hand: fill the node description,
16216 and ask for its output.
16217
162182001-11-19 Akim Demaille <akim@epita.fr>
16219
16220 * src/bison.simple (yyparse): When verbosely reporting an error,
16221 no longer put additional quotes around token names.
16222 * tests/calc.at: Adjust.
16223
162242001-11-19 Akim Demaille <akim@epita.fr>
16225
16226 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
16227 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
16228 * src/output.c: Adjust.
16229
162302001-11-19 Akim Demaille <akim@epita.fr>
16231
16232 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
16233 (rule_t): this.
16234 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
16235
162362001-11-19 Akim Demaille <akim@epita.fr>
16237
16238 * src/gram.h (rule_t): New.
16239 (rule_table): New.
16240 (rrhs, rlhs): Remove, part of state_t.
16241 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
16242 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16243 * src/reader.c, src/reduce.c: Adjust.
16244
162452001-11-19 Akim Demaille <akim@epita.fr>
16246
16247 * src/reader.c (symbols_output): New, extracted from...
16248 (packsymbols): Here.
16249 (reader): Call it.
16250
162512001-11-19 Akim Demaille <akim@epita.fr>
16252
16253 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
16254 (maxrhs): this new function.
16255
162562001-11-19 Akim Demaille <akim@epita.fr>
16257
16258 * src/lalr.c (F): New macro to access the variable F.
16259 Adjust.
16260
162612001-11-19 Akim Demaille <akim@epita.fr>
16262
16263 * src/lalr.h (LA): New macro to access the variable LA.
16264 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
16265 * src/lalr.c: Adjust.
16266
162672001-11-19 Akim Demaille <akim@epita.fr>
16268
16269 * src/lalr.c (initialize_LA): Only initialize LA. Let...
16270 (set_state_table): handle the `lookaheads' members.
16271
162722001-11-19 Akim Demaille <akim@epita.fr>
16273
16274 * src/lalr.h (lookaheads): Removed array, whose contents is now
16275 a member of...
16276 (state_t): this structure.
16277 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
16278 Adjust.
16279
162802001-11-19 Akim Demaille <akim@epita.fr>
16281
16282 * src/lalr.h (consistent): Removed array, whose contents is now
16283 a member of...
16284 (state_t): this structure.
16285 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
16286 Adjust.
16287
162882001-11-19 Akim Demaille <akim@epita.fr>
16289
16290 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
16291 contents are now members of...
16292 (state_t): this structure.
16293 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
16294 Adjust.
16295
162962001-11-19 Akim Demaille <akim@epita.fr>
16297
16298 * src/lalr.h (state_t): New.
16299 (state_table): Be a state_t * instead of a core **.
16300 (accessing_symbol): Remove, part of state_t.
16301 * src/lalr.c: Adjust.
16302 (set_accessing_symbol): Merge into...
16303 (set_state_table): this.
16304 * src/print_graph.c, src/conflicts.c: Adjust.
16305
163062001-11-14 Akim Demaille <akim@epita.fr>
16307
16308 * tests/calc.at, tests/output.at, tests/regression.at,
16309 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
16310 now the tests are run in private dirs, therefore AC_CLEANUP and
16311 family can be simplified to 0-ary.
16312 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
16313 use abs. path to find config.h.
16314 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
16315 stderr, there can be way too much random noise.
16316 Instead pass -Werror to GCC and rely on the exit status.
16317 Reported by Wolfram Wagner.
16318
163192001-11-14 Akim Demaille <akim@epita.fr>
16320
16321 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
16322 defined only if yyoverflow is defined, to avoid `warning: unused
16323 variable `yyvs1''.
16324 Reported by The Test Suite.
16325
163262001-11-14 Akim Demaille <akim@epita.fr>
16327
16328 * src/print.c: Include reduce.h.
16329 Reported by Hans Aberg.
16330
163312001-11-14 Akim Demaille <akim@epita.fr>
16332
16333 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
16334 Revert a previous patch: these are really const.
16335 * src/conflicts.c (conflict_report): Additional useless pair of
16336 braces to pacify GCC's warnings for `if () if () {} else {}'.
16337 * src/lex.c (parse_percent_token): Replace equal_offset with
16338 arg_offset.
16339 arg is const.
16340 Be sure to strdup `arg' when used, since there is no reason for
16341 token_buffer not to change.
16342
163432001-11-14 Akim Demaille <akim@epita.fr>
16344
16345 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
16346 definition.
16347 * src/main.c (main): Use them.
16348 Suggested by Hans Aberg.
16349
163502001-11-12 Akim Demaille <akim@epita.fr>
16351
16352 * src/system.h (ngettext): Now that we use ngettext, be sure to
16353 provide a default definition when NLS are not used.
16354
163552001-11-12 Akim Demaille <akim@epita.fr>
16356
16357 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
16358 Use @kbd to denote user input.
16359 (Language and Grammar): ANSIfy the example.
16360 Adjust its layout for info/notinfo.
16361 (Location Tracking Calc): Output error messages to stderr.
16362 Output locations in a more GNUtically correct way.
16363 Fix a couple of Englishos.
16364 Adjust @group/@end group pairs.
16365
163662001-11-12 Akim Demaille <akim@epita.fr>
16367
16368 %expect was not functioning at all.
16369
16370 * src/conflicts.c (expected_conflicts): Set to -1.
16371 (conflict_report): Use ngettext.
16372 (conflicts_print): Check %expect and make its violation an error.
16373 * doc/bison.texinfo (Expect Decl): Adjust.
16374 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
16375 * tests/regression.at (%expect not enough, %expect right)
16376 (%expect too much): New.
16377
163782001-11-12 Akim Demaille <akim@epita.fr>
16379
16380 * tests/regression.at (Conflicts): Rename as...
16381 (Unresolved SR Conflicts): this.
16382 (Solved SR Conflicts): New.
16383
163842001-11-12 Akim Demaille <akim@epita.fr>
16385
16386 * src/reduce.c (print_results): Rename as...
16387 (reduce_output): This.
16388 Output to OUT, passed as argument, instead of output_obstack.
16389 (dump_grammar): Likewise.
16390 (reduce_free): New.
16391 Also free V1.
16392 (reduce_grammar): No longer call reduce_output, since...
16393 * src/print.c (print_results): do it.
16394 * src/main.c (main): Call reduce_free;
16395
163962001-11-12 Akim Demaille <akim@epita.fr>
16397
16398 * src/conflicts.c (print_reductions): Accept OUT as argument.
16399 Output to it, not to output_obstack.
16400 * src/print.c (print_actions): Adjust.
16401
164022001-11-12 Akim Demaille <akim@epita.fr>
16403
16404 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
16405 the result instead of using...
16406 (src_total, rrc_total, src_count, rrc_count): Remove.
16407 (any_conflicts): Remove.
16408 (print_conflicts): Split into...
16409 (conflicts_print, conflicts_output): New.
16410 * src/conflicts.h: Adjust.
16411 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
16412 * src/print.c (print_grammar): Issue `\n' between two rules.
16413 * tests/regression.at (Conflicts): New.
16414 Reported by Tom Lane.
16415
164162001-11-12 Akim Demaille <akim@epita.fr>
16417
16418 * tests/regression.at (Invalid input): Remove, duplicate with
16419 ``Invalid input: 1''.
16420
164212001-11-12 Akim Demaille <akim@epita.fr>
16422
16423 * tests/torture.at (AT_DATA_STACK_TORTURE)
16424 (Exploding the Stack Size with Alloca)
16425 (Exploding the Stack Size with Malloc): New.
16426
164272001-11-12 Akim Demaille <akim@epita.fr>
16428
16429 * src/bison.simple (YYSTACK_REALLOC): New.
16430 (yyparse) [!yyoverflow]: Use it and free the old stack.
16431 Reported by Per Allansson.
16432
164332001-11-12 Pascal Bart <pascal.bart@epita.fr>
16434
16435 * src/bison.simple: Define type yystype instead of YYSTYPE, and
16436 define CPP macro, which substitute YYSTYPE by yystype.
16437 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
16438 with yyltype/YYLTYPE. This allows inclusion of the generated
16439 header within the parser if the compiler, such as GGC, accepts
16440 multiple equivalent #defines.
16441 From Akim.
16442
164432001-11-05 Akim Demaille <akim@epita.fr>
16444
16445 * src/reader.c (symbols_output): New, extracted from...
16446 (packsymbols): here.
16447 (reader): Adjust.
16448
164492001-11-05 Akim Demaille <akim@epita.fr>
16450
16451 * src/lex.c (parse_percent_token): s/quotearg/quote/.
16452
164532001-11-05 Akim Demaille <akim@epita.fr>
16454
16455 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
16456 pattern.
16457
164582001-11-05 Akim Demaille <akim@epita.fr>
16459
16460 * src/options.h (struct option_table_struct): set_flags is void*.
16461 * src/options.c (longopts): Support `--output' and `%output'.
16462 (usage): Adjust.
16463 * src/lex.h (tok_setopt): Remove, replaced with...
16464 (tok_intopt, tok_stropt): these new guys.
16465 * src/lex.c (getopt.h): Not needed.
16466 (token_buffer, unlexed_token_buffer): Not const.
16467 (percent_table): Promote `-' over `_' in directive names.
16468 Active `%name-prefix', `file-prefix', and `output'.
16469 (parse_percent_token): Accept possible arguments to directives.
16470 Promote `-' over `_' in directive names.
16471
164722001-11-04 Akim Demaille <akim@epita.fr>
16473
16474 * doc/bison.texinfo (Decl Summary): Split the list into
16475 `directives for grammars' and `directives for bison'.
16476 Sort'em.
16477 Add description of `%name-prefix', `file-prefix', and `output'.
16478 Promote `-' over `_' in directive names.
16479 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
16480 Simplify the description of `--name-prefix'.
16481 Promote `-' over `_' in directive names.
16482 Promote `--output' over `--output-file'.
16483 Fix the description of `--defines'.
16484 * tests/output.at: Exercise %file-prefix and %output.
16485
164862001-11-02 Akim Demaille <akim@epita.fr>
16487
16488 * doc/refcard.tex: Update.
16489
164902001-11-02 Akim Demaille <akim@epita.fr>
16491
16492 * src/symtab.h (SUNDEF): New.
16493 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
16494 stand for `uninitialized', instead of 0.
16495 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
16496 * src/lex.c (lex): Adjust.
16497
16498 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
16499 Number it 0.
16500 Let yylex return it instead of a plain 0.
16501 Reported by Dick Streefland.
16502
165032001-11-02 Akim Demaille <akim@epita.fr>
16504
16505 * tests/regression.at (Mixing %token styles): New test.
16506
165072001-11-02 Akim Demaille <akim@epita.fr>
16508
16509 * src/reader.c (parse_thong_decl): Formatting changes.
16510 (token_translations_init): New, extracted from...
16511 (packsymbols): Here.
16512 Adjust.
16513
165142001-11-01 Akim Demaille <akim@epita.fr>
16515
16516 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
16517 Check that `9foo.y' produces correct cpp guards.
16518 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
16519 guards.
16520 Reported by Wwp.
16521
165222001-11-01 Akim Demaille <akim@epita.fr>
16523
16524 * tests/regression.at (Invalid input: 2): New.
16525 * src/lex.c (unlexed_token_buffer): New.
16526 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
16527 too.
16528 Reported by Wwp.
16529
165302001-11-01 Akim Demaille <akim@epita.fr>
16531
16532 * tests/calc.at: Catch up with 1.30.
16533 * configure.in: Bump to 1.49a.
16534 Adjust to newer Autotest.
16535
165362001-10-19 Pascal Bart <pascal.bart@epita.fr>
16537
16538 * src/conflicts.c: Move global variables rrc_total and src_total ...
16539 (print_conflicts): here.
16540 * src/output.c (output): Free global variable user_toknums.
16541 * src/lex.c (token_obstack): Become static.
16542
165432001-10-18 Akim Demaille <akim@epita.fr>
16544
16545 * tests/atlocal.in (GCC): Add.
16546 * tests/calc.at: s/m4_match/m4_bmatch/.
16547 s/m4_patsubst/m4_bpatsubst/.
16548 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
16549 * configure.in: AC_SUBST(GCC).
16550
165512001-10-14 Marc Autret <autret_m@epita.fr>
16552
16553 * src/options.c (create_long_option_table): Fix.
16554
165552001-10-10 Akim Demaille <akim@epita.fr>
16556
16557 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
16558
165592001-10-04 Akim Demaille <akim@epita.fr>
16560
16561 * src/reader.c (parse_union_decl): Push the caracters in
16562 union_obstack, not attrs_obstack.
16563
165642001-10-04 Akim Demaille <akim@epita.fr>
16565
16566 Merge in the branch 1.29.
16567
16568 * src/reader.c (packsymbols): Use a temporary obstack for
16569 `%%tokendef', since output_stack is already used elsewhere.
16570
16571 2001-10-02 Akim Demaille <akim@epita.fr>
16572
16573 Bump 1.29d.
16574
16575 2001-10-02 Akim Demaille <akim@epita.fr>
16576
16577 Version 1.29c.
16578
16579 2001-10-02 Akim Demaille <akim@epita.fr>
16580
16581 * tests/regression.at (Invalid CPP headers): New.
16582 From Alexander Belopolsky.
16583 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
16584
16585 2001-10-02 Akim Demaille <akim@epita.fr>
16586
16587 * tests/regression.at (Invalid input): New.
16588 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
16589 Reported by Shura.
16590
16591 2001-10-02 Akim Demaille <akim@epita.fr>
16592
16593 * tests/calc.at: Now that --debug works, the tests must be adjusted.
16594
16595 2001-10-02 Akim Demaille <akim@epita.fr>
16596
16597 * src/output.c (output_parser): Assert `skeleton'.
16598 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
16599 systems.
16600 From Shura.
16601
16602 2001-10-01 Marc Autret <autret_m@epita.fr>
16603
16604 * src/lex.h: Echo modifications.
16605 * src/lex.c (unlex): Parameter is now token_t.
16606 From Hans Aberg.
16607
16608 2001-10-01 Marc Autret <autret_m@epita.fr>
16609
16610 * src/main.c: Include lex.h.
16611 From Hans Aberg.
16612
16613 2001-09-29 Akim Demaille <akim@epita.fr>
16614
16615 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
16616
16617 2001-09-28 Akim Demaille <akim@epita.fr>
16618
16619 * tests/testsuite.at: Update to newer Autotest.
16620 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
16621
16622 2001-09-27 Akim Demaille <akim@epita.fr>
16623
16624 Position independent wrapper.
16625
16626 * tests/bison: Remove.
16627 * tests/bison.in: New.
16628 * configure.in: Adjust.
16629
16630 2001-09-27 Paul Eggert <eggert@twinsun.com>
16631
16632 Port quotearg fixes from tar 1.13.24.
16633
16634 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
16635 tm to be declared.
16636 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
16637 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
16638
16639 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
16640 * m4/mbrtowc.m4: New file.
16641 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
16642 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
16643
16644 2001-09-27 Akim Demaille <akim@epita.fr>
16645
16646 Bump to 1.29c.
16647
16648 2001-09-27 Akim Demaille <akim@epita.fr>
16649
16650 Version 1.29b.
16651
16652 2001-09-25 Akim Demaille <akim@epita.fr>
16653
16654 * src/system.h: Include `xalloc.h'.
16655 Remove it from the C files.
16656 * src/files.c (output_files): Free the obstacks.
16657 * src/lex.c (init_lex): Rename as...
16658 (lex_init): this.
16659 (lex_free): New.
16660 * src/main.c (main): Use it.
16661
16662 2001-09-24 Marc Autret <autret_m@epita.fr>
16663
16664 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
16665 to output informations in fout (FILE*).
16666 (open_graph, close_graph): Likewise.
16667 (output_graph, output_edge, output_node): Likewise.
16668 * src/vcg.h: Update function prototypes.
16669 * src/print_graph.c (print_graph): Open output graph file.
16670 (print_actions): Adjust.
16671 * src/files.h: Remove extern declaration.
16672 * src/files.c: Remove graph_obstack declaration.
16673 (open_files): Remove graph_obstack initialization.
16674 (output_files): Remove graph_obstack saving.
16675
16676 2001-09-24 Marc Autret <autret_m@epita.fr>
16677
16678 * src/files.c (compute_output_file_names): Fix.
16679
16680 2001-09-24 Marc Autret <autret_m@epita.fr>,
16681 Akim Demaille <akim@epita.fr>
16682
16683 * src/reader.c (reader): Remove call to free_symtab ().
16684 * src/main.c (main): Call it here.
16685 Include symtab.h.
16686 * src/conflicts.c (initialize_conflicts): Rename as...
16687 (solve_conflicts): this.
16688 * src/print.c (print_core, print_actions, print_state)
16689 (print_grammar): Dump to a file instead a `output_obstack'.
16690 (print_results): Dump `output_obstack', and then proceed with the
16691 FILE *.
16692 * src/files.c (compute_output_file_names, close_files): New.
16693 (output_files): Adjust.
16694 * src/main.c (main): Adjust.
16695
16696 2001-09-23 Marc Autret <autret_m@epita.fr>
16697
16698 * src/files.c (compute_header_macro): Computes header macro name
16699 from spec_defines_file when given.
16700
16701 2001-09-23 Marc Autret <autret_m@epita.fr>
16702
16703 * src/files.c (output_files): Add default extensions.
16704
16705 2001-09-22 Akim Demaille <akim@epita.fr>
16706
16707 * src/conflicts.c (finalize_conflicts): Rename as...
16708 (free_conflicts): this.
16709
16710 2001-09-22 Akim Demaille <akim@epita.fr>
16711
16712 * src/gram.c (gram_free): Rename back as...
16713 (dummy): this.
16714 (output_token_translations): Free `token_translations'.
16715 * src/symtab.c (free_symtab): Free the tag field.
16716
16717 2001-09-22 Akim Demaille <akim@epita.fr>
16718
16719 Remove `translations' as it is always set to true.
16720
16721 * src/gram.h: Adjust.
16722 * src/reader.c (packsymbols, parse_token_decl): Adjust
16723 * src/print.c (print_grammar): Adjust.
16724 * src/output.c (output_token_translations): Adjust.
16725 * src/lex.c (lex): Adjust.
16726 * src/gram.c: Be sure the set pointers to NULL.
16727 (dummy): Rename as...
16728 (gram_free): this.
16729
16730 2001-09-22 Akim Demaille <akim@epita.fr>
16731
16732 * configure.in: Invoke AM_LIB_DMALLOC.
16733 * src/system.h: Use dmalloc.
16734 * src/LR0.c: Be sure to have pointers initialized to NULL.
16735 (allocate_itemsets): Allocate kernel_items only if needed.
16736
16737 2001-09-22 Akim Demaille <akim@epita.fr>
16738
16739 * configure.in: Bump to 1.29b.
16740 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
16741 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
16742 need xmalloc.c in calc.y.
16743 From Pascal Bart.
16744
16745 2001-09-21 Akim Demaille <akim@epita.fr>
16746
16747 Version 1.29a.
16748 * Makefile.maint, config/config.guess, config/config.sub,
16749 * config/missing: Update from masters.
16750 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
16751 upon package.m4.
16752 * configure.in (ALL_LINGUAS): Add `tr'.
16753
16754 2001-09-21 Akim Demaille <akim@epita.fr>
16755
16756 * tests/Makefile.am (package.m4): Move to...
16757 ($(srcdir)/$(TESTSUITE)): here.
16758
16759 2001-09-20 Akim Demaille <akim@epita.fr>
16760
16761 * src/complain.c: No longer try to be standalone: use system.h.
16762 Don't assume __STDC__ is defined to 1. Just test if it is defined.
16763 * src/complain.h: Likewise.
16764 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
16765 Remove the unused variable `n'.
16766 From Albert Chin-A-Young.
16767
16768 2001-09-18 Marc Autret <autret_m@epita.fr>
16769
16770 * doc/bison.1: Update.
16771 * doc/bison.texinfo (Bison Options): Update --defines and --graph
16772 descriptions.
16773 (Option Cross Key): Update.
16774 Add --graph.
16775
16776 2001-09-18 Marc Autret <autret_m@epita.fr>
16777
16778 * tests/regression.at: New test (comment in %union).
16779
16780 2001-09-18 Marc Autret <autret_m@epita.fr>
16781
16782 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
16783 do that.
16784 Reported by Keith Browne.
16785
16786 2001-09-18 Marc Autret <autret_m@epita.fr>
16787
16788 * tests/output.at: Add tests for --defines and --graph.
16789
16790 2001-09-18 Marc Autret <autret_m@epita.fr>
16791
16792 * tests/output.at: Removes tests of %{header,src}_extension features.
16793
16794 2001-09-18 Akim Demaille <akim@epita.fr>
16795
16796 * tests/Makefile.am (package.m4): New.
16797 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
16798 (_AT_CHECK_CALC_ERROR): Likewise.
16799 Factor the `, ' part of verbose error messages.
16800
16801 2001-09-18 Marc Autret <autret_m@epita.fr>
16802
16803 * src/getargs.c (longopts): Declare --defines and --graph as options
16804 with optional arguments.
16805 * src/files.h: Add extern declarations.
16806 * src/files.c (spec_graph_file, spec_defines_file): New.
16807 (output_files): Update.
16808 Remove CPP-outed code.
16809
16810 2001-09-18 Marc Autret <autret_m@epita.fr>
16811
16812 Turn off %{source,header}_extension feature.
16813
16814 * src/files.c (compute_exts_from_gf): Update.
16815 (compute_exts_from_src): Update.
16816 (output_files): CPP-out useless code.
16817 * src/files.h: Remove {header,source}_extension extern declarations.
16818 * src/reader.c (parse_dquoted_param): CPP-out.
16819 (parse_header_extension_decl): Remove.
16820 (parse_source_extension_decl): Remove.
16821 (read_declarations): Remove cases tok_{hdrext,srcext}.
16822 * src/lex.c (percent_table): Remove {header,source}_extension entries.
16823 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
16824
16825 2001-09-10 Akim Demaille <akim@epita.fr>
16826
16827 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
16828 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
16829 (AT_CHECK_OUTPUT): this.
16830 Merely check ls' exit status, its output is useless.
16831
16832 2001-09-10 Akim Demaille <akim@epita.fr>
16833
16834 * tests/calc.at: Use m4_match.
16835 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
16836
16837 2001-09-10 Marc Autret <autret_m@epita.fr>,
16838 Akim Demaille <akim@epita.fr>
16839
16840 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
16841 enum color_e.
16842 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
16843 to `normal'.
16844 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
16845 * src/lex.h: Adjust prototype.
16846 (token_t): Add `tok_undef'.
16847 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
16848 (parse_percent_token): Now returns token_t.
16849 Add default statement in switch.
16850 (lex): Separate `c' as an input variable, from the token_t result
16851 part.
16852 (unlexed): Is a token_t.
16853
16854 2001-09-10 Akim Demaille <akim@epita.fr>
16855
16856 * configure.in: Bump to 1.29a.
16857
16858 2001-09-07 Akim Demaille <akim@epita.fr>
16859
16860 Version 1.29.
16861
16862 2001-08-30 Akim Demaille <akim@epita.fr>
16863
16864 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
16865 * m4/atconfig.m4: Remove.
16866 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
16867 * tests/bison: New.
16868 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
16869 m4_if, m4_patsubst, and m4_regexp.
16870 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
16871 `input' file instead of echo.
16872
16873 2001-08-29 Akim Demaille <akim@epita.fr>
16874
16875 Bump to 1.28e.
16876
16877 2001-08-29 Akim Demaille <akim@epita.fr>
16878
16879 Version 1.28d.
16880
16881 2001-08-29 Paul Eggert <eggert@twinsun.com>
16882
16883 * src/bison.simple (yyparse): Don't take the address of an
16884 item before the start of an array, as that doesn't conform to
16885 the C Standard.
16886
16887 2001-08-29 Robert Anisko <anisko_r@epita.fr>
16888
16889 * doc/bison.texinfo (Location Tracking Calc): New node.
16890
16891 2001-08-29 Paul Eggert <eggert@twinsun.com>
16892
16893 * src/output.c (output): Do not define const, as this now
16894 causes more problems than it cures.
16895
16896 2001-08-29 Akim Demaille <akim@epita.fr>
16897
16898 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
16899 the nodes.
16900 Be sure to tag the `detailmenu'.
16901
16902 2001-08-29 Akim Demaille <akim@epita.fr>
16903
16904 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
16905 download in a tmp dir.
16906
16907 2001-08-28 Marc Autret <autret_m@epita.fr>
16908
16909 * config/depcomp: New file.
16910
16911 2001-08-28 Marc Autret <autret_m@epita.fr>
16912
16913 * doc/bison.1 (mandoc): Adjust.
16914 From Juan Manuel Guerrero.
16915
16916 2001-08-28 Marc Autret <autret_m@epita.fr>
16917
16918 * src/print_graph.c (print_state): Fix.
16919
16920 2001-08-27 Marc Autret <autret_m@epita.fr>
16921
16922 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
16923 char * members.
16924 Echo modifications to the functions prototypes.
16925 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
16926
16927 2001-08-27 Marc Autret <autret_m@epita.fr>
16928
16929 * src/vcg.c: Include `xalloc.h'.
16930 (add_colorentry): New.
16931 (add_classname): New.
16932 (add_infoname): New.
16933 * src/vcg.h: Add new prototypes.
16934
16935 2001-08-27 Akim Demaille <akim@epita.fr>
16936
16937 * Makefile.maint: Sync. again with CVS Autoconf.
16938
16939 2001-08-27 Akim Demaille <akim@epita.fr>
16940
16941 * Makefile.maint: Formatting changes.
16942 (po-update, cvs-update, update): New targets.
16943 (AMTAR): Remove.
16944
16945 2001-08-27 Akim Demaille <akim@epita.fr>
16946
16947 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
16948 * Makefile.maint: Sync. with CVS Autoconf.
16949
16950 2001-08-27 Marc Autret <autret_m@epita.fr>
16951
16952 * src/vcg.h (struct infoname_s): New.
16953 (struct colorentry_s): New.
16954 (graph_s): New fields {vertical,horizontal}_order in structure.
16955 Add `infoname' field.
16956 Add `colorentry' field;
16957 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
16958 (G_HORIZONTAL_ORDER): New.
16959 (G_INFONAME): New.
16960 (G_COLORENTRY): New.
16961 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
16962 Add output of `infoname'.
16963 Add output of `colorentry'.
16964
16965 2001-08-27 Marc Autret <autret_m@epita.fr>
16966
16967 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
16968 This one shadowed a global parameter.
16969
16970 2001-08-24 Marc Autret <autret_m@epita.fr>
16971
16972 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
16973 instead of `unsigned'.
16974 (print_state): Do not call obstack_object_size () in obstack_grow ()
16975 to avoid macro variables shadowing.
16976
16977 2001-08-23 Marc Autret <autret_m@epita.fr>
16978
16979 * src/lex.c (percent_table): Typo: s/naem/name/.
16980 Add graph option.
16981 Normalize new options declarations.
16982
16983 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
16984
16985 * tests/suite.at: Exercise %header_extension and %source_extension.
16986
16987 2001-08-16 Marc Autret <autret_m@epita.fr>
16988
16989 * src/reader.c (parse_dquoted_param): New.
16990 (parse_header_extension_decl): Use it.
16991 (parse_source_extension_decl): Likewise.
16992
16993 2001-08-16 Marc Autret <autret_m@epita.fr>
16994
16995 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
16996 (get_xxxx_str): Use assert () instead of complain ().
16997 Remove return invokations in default cases.
16998 (get_decision_str): Modify default behaviour. Remove second argument.
16999 Echo modifications on calls.
17000 (output_graph): Fix.
17001
17002 2001-08-16 Marc Autret <autret_m@epita.fr>
17003
17004 * src/getargs.c (usage): Update with ``-g, --graph''.
17005
17006 2001-08-16 Marc Autret <autret_m@epita.fr>
17007
17008 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
17009 (Option Cross Key): Likewise.
17010 * doc/bison.1: Update.
17011
170122001-09-25 Pascal Bart <pascal.bart@epita.fr>
17013
17014 * src/output.c (output_master_parser): Don't finish action_obstack.
17015 (output_parser): Don't care about the muscle action, here.
17016 (prepare): Copy the action_obstack in the action muscle.
17017 (output): Free action_obstack.
17018
170192001-09-23 Pascal Bart <pascal.bart@epita.fr>
17020
17021 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
17022 will contain `%union' declaration.
17023 (parse_union_decl): Delete #line directive output.
17024 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
17025 informations about %union.
17026 (parse_union_decl): Copy the union_obstack in the muscle stype.
17027 * src/bison.simple: Add new #line directive.
17028 Add typdef %%stype YYSTYPE.
17029
170302001-09-23 Pascal Bart <pascal.bart@epita.fr>
17031
17032 * src/bison.simple: Add new `#line' directive.
17033
170342001-09-22 Pascal Bart <pascal.bart@epita.fr>
17035
17036 * src/bison.simple: New `#line' directive.
17037 * src/output.c (output_parser): Support new dynamic muscle input_line.
17038
170392001-09-22 Marc Autret <autret_m@epita.fr>
17040
17041 * src/output.c (output_master_parser): New.
17042 (output_parser): Be more re-entrant.
17043
170442001-09-21 Marc Autret <autret_m@epita.fr>
17045
17046 * src/reader.c (copy_definition, parse_union_decl): Update and use
17047 `linef' muscle.
17048 (copy_action): Likewise.
17049 Use obstack_1grow ().
17050 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
17051
170522001-09-21 Marc Autret <autret_m@epita.fr>
17053
17054 * src/options.c (option_table): Adjust.
17055 * src/lex.c (parse_percent_token): Fix.
17056
170572001-09-20 Pascal Bart <pascal.bart@epita.fr>
17058
17059 * src/options.c (symtab.h): Include it, need by lex.h.
17060
170612001-09-20 Pascal Bart <pascal.bart@epita.fr>
17062
17063 * src/lex.c (parse_percent_token): Change type of variable `tx', which
17064 is now an option_table_struct*.
17065 (option_strcmp): New function option_strcmp.
17066 (parse_percent_token): Call option_strcmp.
17067 * src/getargs.c (xalloc.h, options.h): Include it.
17068 (getargs): Call create_long_option_table.
17069 (getargs): Free longopts at the end of the function.
17070 (shortopts): Move in options.c.
17071 * src/options.c (create_long_option_table): New function. Convert
17072 information from option_table to option structure.
17073 * src/reader.c (options.h): Include it.
17074
17075 * src/Makefile.am: Adjust.
17076 * src/options.c (option_table): Create from longopts and percent_table.
17077 * src/getargs.c (longopts): Delete.
17078 * src/lex.c (struct percent_table_struct): Delete.
17079 (percent_table): Delete.
17080 (options.h): Include it.
17081 * src/options.c: Create.
17082 * src/options.h: Create.
17083 Declare enum opt_access_e.
17084 Define struct option_table_struct.
17085
170862001-09-20 Marc Autret <autret_m@epita.fr>
17087
17088 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
17089 sections of Bison.
17090
170912001-09-19 Pascal Bart <pascal.bart@epita.fr>
17092
17093 * src/bison.simple: s/%%filename/%%skeleton.
17094 * src/muscle_tab.c (getargs.h): Include it.
17095 (muscle_init): Insert new muscle skeleton.
17096
170972001-09-18 Pascal Bart <pascal.bart@epita.fr>
17098
17099 * src/output.c (output_parser): Delete unused variable actions_dumped.
17100
171012001-09-07 Pascal Bart <pascal.bart@epita.fr>
17102
17103 * src/output.c (output): Delete call to reader_output_yylsp.
17104 * src/reader.c (reader): Likewise.
17105 * src/reader.h: Delete declaration of reader_output_yylsp.
17106
171072001-09-02 Marc Autret <autret_m@epita.fr>
17108
17109 * src/reader.c: Include muscle_tab.h.
17110 (parse_union_decl): Update.
17111 (parse_macro_decl): Rename parse_muscle_decl.
17112 Update to use renamed functions and variable.
17113 (read_declarations, copy_action, read_additionnal_code, : Updated
17114 with correct variables and functions names.
17115 (packsymbols, reader): Likewise.
17116
17117 * src/reader.h (muscle_obstack): Extern declaration update.
17118
17119 * src/output.c: Include muscle_tab.h
17120 In all functions using macro_insert, change by using muscle_insert ().
17121 (macro_obstack): Rename muscle_obstack.
17122 Echo modifications in the whole file.
17123 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
17124 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
17125 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
17126
17127 * src/muscle_tab.h: Update double inclusion macros.
17128 (macro_entry_s): Rename muscle_entry_s.
17129 Update prototypes.
17130
17131 * src/muscle_tab.c: Include muscle_tab.h.
17132 Rename macro_tabble to muscle_table.
17133 (mhash1, mhash2, mcmp): Use muscle_entry.
17134 (macro_init): Rename muscle_init. Update.
17135 (macro_insert): Rename muscle_insert. Update.
17136 (macro_find): Rename muscle_find. Update.
17137
17138 * src/main.c: Include muscle_tab.h.
17139 (main): Call muscle_init ().
17140 * src/Makefile.am (bison_SOURCES): Echo modifications.
17141
171422001-09-02 Marc Autret <autret_m@epita.fr>
17143
17144 Now the files macro_tab.[ch] are named muscle_tab.[ch].
17145
17146 * src/muscle_tab.c, src/muscle_tab.h: Add files.
17147
171482001-09-02 Marc Autret <autret_m@epita.fr>
17149
17150 * src/macrotab.c, src/macrotab.h: Remove.
17151
171522001-09-01 Pascal Bart <pascal.bart@epita.fr>
17153
17154 * src/reader.c (copy_guard): Use muscle to specify the `#line'
17155 filename.
17156
171572001-09-01 Marc Autret <autret_m@epita.fr>
17158
17159 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
17160 to an explicit value to activate the feature. We do it here.
17161
171622001-08-31 Pascal Bart <pascal.bart@epita.fr>
17163
17164 * src/output.c (prepare): Delete the `filename' muscule insertion.
17165 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
17166 (parse_union_decl): Likewise.
17167 * src/macrotab.c (macro_init): Initialize filename by infile.
17168
171692001-08-31 Marc Autret <autret_m@epita.fr>
17170
17171 * src/bison.simple (YYLSP_NEEDED): New definition.
17172 * src/output.c (prepare): Add macro insertion of `locations_flag'
17173
171742001-08-31 Pascal Bart <pascal.bart@epita.fr>
17175
17176 * src/output.c (prepare): Delete insertion of previous muscles,
17177 and insert the `prefix' muscles.
17178 * src/macrotab.c (macro_init): Likewise.
17179 (macro_init): Initialization prefix directive by `yy'.
17180 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17181 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
17182 yylval, yydebug, yyerror, yynerrs and yyparse.
17183 New directive `#define' to substitute yydebug, ... with option
17184 name_prefix.
17185
171862001-08-31 Pascal Bart <pascal.bart@epita.fr>
17187
17188 * src/main.c (main): Standardize.
17189 * src/output.c (output_table_data, output_parser): Likewise.
17190 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
17191
171922001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
17193
17194 * src/reader.c (read_additionnal_code): Rename %%user_code to
17195 %%epilogue.
17196 * src/output.c (output): Rename %%declarations to %%prologue.
17197 * src/bison.simple: Echo modifications.
17198
171992001-08-31 Marc Autret <autret_m@epita.fr>
17200
17201 * src/reader.c (readgram): CleanUp.
17202 (output_token_defines): Likewise.
17203 (packsymbols): Likewise.
17204 (reader): Likewise.
17205 * src/output.c (output): CPP-out useless code.
17206
172072001-08-31 Pascal Bart <pascal.bart@epita.fr>
17208
17209 * src/reader.c (reader): Delete obsolete call to function
17210 output_trailers and output_headers.
17211 * src/output.h: Remove obsolete functions prototypes of output_headers
17212 and output_trailers.
17213
172142001-08-30 Pascal Bart <pascal.bart@epita.fr>
17215
17216 * src/main.c: Include macrotab.h.
17217 * src/macrotab.h (macro_entry_s): Constify fields.
17218 Adjust functions prototypes.
17219 * src/macrotab.c (macro_insert): Constify key and value.
17220 (macro_find): Constify key.
17221 (macro_insert): Include 'xalloc.h'
17222 (macro_insert): Use XMALLOC.
17223 (macro_find): Constify return value.
17224 * src/output.c (output_table_data): Rename table to table_data.
17225 (output_parser): Constify macro_key, macro_value.
17226
172272001-08-30 Marc Autret <autret_m@epita.fr>
17228
17229 * src/reader.c (parse_skel_decl): New.
17230 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
17231 * src/lex.h (token_t): New token `tok_skel'.
17232 * src/lex.c (percent_table): Add skeleton option entry.
17233 Standardize.
17234
172352001-08-29 Marc Autret <autret_m@epita.fr>
17236
17237 * src/bison.simple: Add %%user_code directive at the end.
17238 * src/reader.c (read_additionnal_code): New.
17239 (reader): Use it.
17240 * src/output.c (output_program): Remove.
17241 (output): Update.
17242
172432001-08-28 Marc Autret <autret_m@epita.fr>
17244
17245 * src/output.c (output_actions): Clean up.
17246 (output_gram): CPP-out useless code.
17247 * src/reader.c (reader): Clean up, CPP-out useless code.
17248
172492001-08-28 Pascal Bart <pascal.bart@epita.fr>
17250
17251 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
17252 directive.
17253 * src/bison.simple: Add `%%definitions'.
17254
172552001-08-28 Marc Autret <autret_m@epita.fr>
17256
17257 * config/depcomp: New file.
17258
172592001-08-27 Paul Eggert <eggert@twinsun.com>
17260
17261 * src/bison.simple (yyparse): Don't take the address of an
17262 item before the start of an array, as that doesn't conform to
17263 the C Standard.
17264
172652001-08-27 Robert Anisko <robert.anisko@epita.fr>
17266
17267 * src/output.c (output): Remove the initialization of the macro
17268 obstack. It was done too late here.
17269
17270 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
17271 completely wrong.
17272 (reader): Initialize the macro obstack here, since we need it to grow
17273 '%define' directives.
17274
17275 * src/reader.h: Declare the macro obstack as extern.
17276
172772001-08-27 Robert Anisko <robert.anisko@epita.fr>
17278
17279 * src/output.c (output_parser): Fix. Store single '%' characters in
17280 the output obstack instead of throwing them away.
17281
172822001-08-27 Akim Demaille <akim@epita.fr>
17283
17284 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
17285
172862001-08-25 Robert Anisko <robert.anisko@epita.fr>
17287
17288 * lib/Makefile.am: Adjust.
17289
172902001-08-25 Robert Anisko <robert.anisko@epita.fr>
17291
17292 * src/bison.simple: Update and add '%%' directives.
17293
172942001-08-25 Robert Anisko <robert.anisko@epita.fr>
17295
17296 * src/reader.c (reader): Remove calls to 'output_headers' and
17297 'output_trailers'. Remove some C output.
17298 (readgram): Disable a piece of code that was writing a default
17299 definition for 'YYSTYPE'.
17300 (reader_output_yylsp): Remove.
17301 (packsymbols): Output token defintions to a macro.
17302 (copy_definition): Disable C output.
17303
17304 * src/reader.c (parse_macro_decl): New function used to parse macro
17305 declarations.
17306 (copy_string2): Put the body of copy_string into this new function.
17307 Add a parameter to let the caller choose whether he wants to copy the
17308 string delimiters or not.
17309 (copy_string): Be a simple call to copy_string2 with the last argument
17310 bound to true.
17311 (read_declarations): Add case for macro definition.
17312 (copy_identifier): New.
17313 (parse_macro_decl): Read macro identifiers using copy_identifier
17314 rather than lex.
17315
173162001-08-25 Robert Anisko <robert.anisko@epita.fr>
17317
17318 * src/output.c (prepare): Add prefixed names.
17319 (output_parser): Output semantic actions.
17320 (output_parser): Fix bug on '%%line' directives.
17321
17322 * src/output.c (output_headers): Remove. The C code printed by this
17323 function should now be in the skeletons.
17324 (output_trailers): Remove.
17325 (output): Disable call to 'reader_output_yylsp'.
17326 (output_rule_data): Do not output tables to the table obstack.
17327
17328 * src/output.c: Remove some C dedicated output.
17329 Improve the use of macro and output obstacks.
17330 (output_defines): Remove.
17331
17332 * src/output.c (output_token_translations): Associate 'translate'
17333 table with a macro. No output to the table obstack.
17334 (output_gram): Same for 'rhs' and 'prhs'.
17335 (output_stos): Same for 'stos'.
17336 (output_rule_data): Same for 'r1' and 'r2'.
17337 (token_actions): Same for 'defact'.
17338 (goto_actions): Same for 'defgoto'.
17339 (output_base): Same for 'pact' and 'pgoto'.
17340 (output_table): Same for 'table'.
17341 (output_check): Same for 'check'.
17342
17343 * src/output.c (output_table_data): New function.
17344 (output_short_table): Remove.
17345 (output_short_or_char_table): Remove.
17346
17347 * src/output.c (output_parser): Replace most of the skeleton copy code
17348 with something new. Skeletons are now processed character by character
17349 rather than line by line, and Bison looks for '%%' macros. This is the
17350 first step in making Bison's output process (a lot) more flexible.
17351 (output_parser): Use the macro table.
17352
173532001-08-25 Robert Anisko <robert.anisko@epita.fr>
17354
17355 * src/main.c (main): Initialize the macro table.
17356
173572001-08-25 Robert Anisko <robert.anisko@epita.fr>
17358
17359 * src/lex.c (percent_table): Add tok_define.
17360 * src/lex.h: Add tok_define.
17361
173622001-08-25 Robert Anisko <robert.anisko@epita.fr>
17363
17364 * src/macrotab.c: New file.
17365 * src/macrotab.h: New file.
17366 * src/Makefile.am: Update.
17367
173682001-08-25 Robert Anisko <robert.anisko@epita.fr>
17369
17370 * lib/hash.c: New file.
17371 * lib/hash.h: New file.
17372 * lib/Makefile.am: Update.
17373
173742001-08-15 Akim Demaille <akim@epita.fr>
17375
17376 Version 1.28c.
17377
173782001-08-15 Marc Autret <autret_m@epita.fr>
17379
17380 * src/reader.c (readgram): Indent output macro YYSTYPE.
17381 (packsymbols): Likewise.
17382 (output_token_defines): Likewise.
17383 * src/files.c: Standardize.
17384 (compute_header_macro): New.
17385 (defines_obstack_save): New. Use compute_header_macro.
17386 (output_files): Update. Use defines_obstack_save.
17387
173882001-08-15 Akim Demaille <akim@epita.fr>
17389
17390 * doc/bison.texinfo (Table of Symbols): Document
17391 YYSTACK_USE_ALLOCA.
17392
173932001-08-15 Akim Demaille <akim@epita.fr>
17394
17395 * missing: Update from CVS Automake.
17396 * config/config.guess, config/config.sub, config/texinfo.tex:
17397 Update from gnu.org.
17398
173992001-08-15 Akim Demaille <akim@epita.fr>
17400
17401 * Makefile.maint: Sync with CVS Autoconf.
17402
174032001-08-14 Pascal Bart <pascal.bart@epita.fr>
17404
17405 * doc/bison.texinfo: Include GNU Free Documentation License from
17406 `fdl.texi'.
17407 * doc/fdl.texi: Add to package.
17408
174092001-08-14 Marc Autret <autret_m@epita.fr>
17410
17411 Turn on %{source,header}_extension features.
17412
17413 * src/lex.c (percent_table): Un-CPP out header_extension and
17414 source_extension.
17415 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
17416 (compute_exts_from_src): Remove conditions. It restores priorities
17417 between options.
17418
174192001-08-14 Marc Autret <autret_m@epita.fr>
17420
17421 * src/files.c (compute_base_names): Add extensions computing when
17422 `--file-prefix' used.
17423 Standardize function calls.
17424
174252001-08-13 Marc Autret <autret_m@epita.fr>
17426
17427 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
17428 defining it (defined but null disables alloca).
17429
174302001-08-13 Marc Autret <autret_m@epita.fr>
17431
17432 * src/bison.simple (_yy_memcpy): CPP reformat.
17433
174342001-08-13 Pascal Bart <pascal.bart@epita.fr>
17435
17436 * tests/atconfig.in (CPPFLAGS): Fix.
17437
174382001-08-10 Pascal Bart <pascal.bart@epita.fr>
17439
17440 * doc/bison.texinfo: Include GNU General Public License from
17441 `gpl.texi'.
17442 * doc/gpl.texi: Add to package.
17443
174442001-08-10 Marc Autret <autret_m@epita.fr>
17445
17446 * src/print_graph.h: Fix.
17447 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
17448
174492001-08-10 Akim Demaille <akim@epita.fr>
17450
17451 * src/system.h: Provide default declarations for stpcpy, strndup,
17452 and strnlen.
17453
174542001-08-10 Robert Anisko <anisko_r@epita.fr>
17455
17456 * doc/bison.texinfo (Locations): Update @$ stuff.
17457
174582001-08-09 Robert Anisko <anisko_r@epita.fr>
17459
17460 * src/bison.simple (YYLLOC_DEFAULT): Update.
17461 (yyparse): Adjust.
17462
174632001-08-08 Marc Autret <autret_m@epita.fr>
17464
17465 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
17466 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
17467 Reported by Fabrice Bauzac.
17468
174692001-08-08 Marc Autret <autret_m@epita.fr>
17470
17471 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
17472 * src/vcg.c (output_node): Fix.
17473 * src/vcg.h: Cleanup.
17474 * src/print_graph.c: Add comments.
17475 (node_output_size): New global variable. Simplify the formatting of
17476 the VCG graph output.
17477 (print_actions): Unused code is now used. It notifies the final state
17478 and no action states in the VCG graph. It also give the reduce actions.
17479 The `shift and goto' edges are red and the `go to state' edges are
17480 blue.
17481 Get the current node name and node_obstack by argument.
17482 (node_obstack): New variable.
17483 (print_state): Manage node_obstack.
17484 (print_core): Use node_obstack given by argument.
17485 A node is not only computed here but in print_actions also.
17486 (print_graph): CPP out useless code instead of commenting it.
17487
174882001-08-07 Pascal Bart <pascal.bart@epita.fr>
17489
17490 * tests/atconfig.in (CPPFLAGS): Fix.
17491
174922001-08-07 Akim Demaille <akim@epita.fr>
17493
17494 * src/print_graph.c (quote): New.
17495 (print_core): Use it.
17496
174972001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
17498
17499 * src/vcg.c (complain.h): Include it.
17500 Unepitaize `return' invocations.
17501 [NDEBUG] (main): Remove.
17502 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
17503 * src/files.c (open_files): Initialize graph_obstack.
17504 * src/print_graph.c (print_actions): CPP out useless code.
17505 (print_core): Don't output the last `\n' in labels.
17506 Use `quote'.
17507 * src/files.c (output_files): Output the VCG file.
17508 * src/main.c (main): Invoke print_graph ();
17509
175102001-08-06 Marc Autret <autret_m@epita.fr>
17511
17512 Automaton VCG graph output.
17513 Using option ``-g'' or long option ``--graph'', you can generate
17514 a gram_filename.vcg file containing a VCG description of the LALR (1)
17515 automaton of your grammar.
17516
17517 * src/main.c: Call to print_graph() function.
17518 * src/getargs.h: Update.
17519 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
17520 (graph_flag): New flag.
17521 (longopts): Update.
17522 (getargs): Add case `g'.
17523 * src/files.c (graph_obstack): New obstack struct.
17524 (open_files): Initialize new obstack.
17525 (output_files): Saves graph_obstack if required.
17526 * src/files.h (graph_obstack): New extern declaration.
17527 * src/Makefile.am: Add new source files.
17528
175292001-08-06 Marc Autret <autret_m@epita.fr>
17530
17531 * src/print_graph.c, src/print_graph.h (graph): New.
17532 * src/vcg.h: New file.
17533 * src/vcg.c: New file, VCG graph handling.
17534
175352001-08-06 Marc Autret <autret_m@epita.fr>
17536
17537 Add of %source_extension and %header_extension which specify
17538 the source or/and the header output file extension.
17539
17540 * src/files.c (compute_base_names): Remove initialisation of
17541 src_extension and header_extension.
17542 (compute_exts_from_gf): Update.
17543 (compute_exts_from_src): Update.
17544 (output_files): Update.
17545 * src/reader.c (parse_header_extension_decl): New.
17546 (parse_source_extension_decl): New.
17547 (read_declarations): New case statements for the new tokens.
17548 * src/lex.c (percent_table): Add entries for %source_extension
17549 and %header_extension.
17550 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
17551
175522001-08-06 Marc Autret <autret_m@epita.fr>
17553
17554 * configure.in: Bump to 1.28c.
17555 * doc/bison.texinfo: Texinfo thingies.
17556
175572001-08-04 Pascal Bart <pascal.bart@epita.fr>
17558
17559 * tests/atconfig.in (CPPFLAGS): Add.
17560 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
17561
175622001-08-03 Akim Demaille <akim@epita.fr>
17563
17564 Version 1.28b.
17565
175662001-08-03 Akim Demaille <akim@epita.fr>
17567
17568 * tests/Makefile.am (check-local): Ship testsuite.
17569 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
17570 Include `string.h'.
17571
175722001-08-03 Akim Demaille <akim@epita.fr>
17573
17574 * configure.in: Try using -Wformat when compiling.
17575
175762001-08-03 Akim Demaille <akim@epita.fr>
17577
17578 * configure.in: Bump to 1.28b.
17579
175802001-08-03 Akim Demaille <akim@epita.fr>
17581
17582 * src/complain.c: Adjust strerror_r portability issues.
17583
175842001-08-03 Akim Demaille <akim@epita.fr>
17585
17586 Version 1.28a.
17587
175882001-08-03 Akim Demaille <akim@epita.fr>
17589
17590 * src/getargs.c, src/getarg.h (skeleton)): Constify.
17591 * src/lex.c (literalchar): Avoid name clashes on `buf'.
17592 * src/getargs.c: Include complain.h.
17593 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
17594 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
17595
175962001-08-03 Akim Demaille <akim@epita.fr>
17597
17598 * src/reader.c (readgram): Display hidden chars in error messages.
17599
176002001-08-03 Akim Demaille <akim@epita.fr>
17601
17602 Update to gettext 0.10.39.
17603
176042001-08-03 Akim Demaille <akim@epita.fr>
17605
17606 * lib/strspn.c: New.
17607
176082001-08-01 Marc Autret <autret_m@epita.fr>
17609
17610 * doc/bison.texinfo: Update.
17611 * doc/bison.1 (mandoc): Update.
17612 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
17613 * src/files.c: Support output files extensions computing.
17614 (src_extension): New static variable.
17615 (header_extension): New static variable.
17616 (tr): New function.
17617 (get_extension_index): New function, gets the index of an extension
17618 filename in a string.
17619 (compute_exts_from_gf): New function, computes extensions from the
17620 grammar file extension.
17621 (compute_exts_from_src): New functions, computes extensions from the
17622 C source file extension, file given by ``-o'' option.
17623 (compute_base_names): Update.
17624 (output_files): Update.
17625
176262001-08-01 Robert Anisko <anisko_r@epita.fr>
17627
17628 * doc/bison.texi: Document @$.
17629 (Locations): New section.
17630
176312001-07-18 Akim Demaille <akim@epita.fr>
17632
17633 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
17634 * config/prev-version.txt, config/move-if-change: New.
17635 * Makefile.am: Adjust.
17636
176372001-07-08 Pascal Bart <pascal.bart@epita.fr>
17638
17639 * src/bison.simple (yyparse): Suppress warning `comparaison
17640 between signed and unsigned'.
17641
176422001-07-05 Pascal Bart <pascal.bart@epita.fr>
17643
17644 * src/getargs.h (raw_flag): Remove.
17645 * src/getargs.c: Die on `-r'/`--raw'.
17646 * src/lex.c (parse_percent_token): Die on `%raw'.
17647 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
17648 * tests/calc.at: Suppress test with option `--raw'.
17649
176502001-07-14 Akim Demaille <akim@epita.fr>
17651
17652 * config/: New.
17653 * configure.in: Require Autoconf 2.50.
17654 Update to gettext 0.10.38.
17655
176562001-03-16 Akim Demaille <akim@epita.fr>
17657
17658 * doc/bison.texinfo: ANSIfy the examples.
17659
176602001-03-16 Akim Demaille <akim@epita.fr>
17661
17662 * getargs.c (skeleton): New variable.
17663 (longopts): --skeleton is a new option.
17664 (shortopts, getargs): -S is a new option.
17665 * getargs.h: Declare skeleton.
17666 * output.c (output_parser): Use it.
17667
176682001-03-16 Akim Demaille <akim@epita.fr>
17669
17670 * m4/strerror_r.m4: New.
17671 * m4/error.m4: Run AC_FUNC_STRERROR_R.
17672 * lib/error.h, lib/error.c: Update.
17673
176742001-03-16 Akim Demaille <akim@epita.fr>
17675
17676 * src/getargs.c (longopts): Clean up.
17677
176782001-02-21 Akim Demaille <akim@epita.fr>
17679
17680 * src/reader.c (gensym): `gensym_count' is your own.
17681 Use a static buf to create the symbol name, as token_buffer is no
17682 longer a buffer.
17683
176842001-02-08 Akim Demaille <akim@epita.fr>
17685
17686 * src/conflicts.c (conflict_report): Be sure not to append to res
17687 between two calls, which could happen if both first sprintf were
17688 skipped, but not the first cp += strlen.
17689
176902001-02-08 Akim Demaille <akim@epita.fr>
17691
17692 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
17693 New, from fileutils 4.0.37.
17694 * configure.in: Require Autoconf 2.49c. I took some time before
17695 making this decision. This is the only way out for portability
17696 issues in Bison, it would mean way too much duplicate effort to
17697 import in Bison features implemented in 2.49c since 2.13.
17698 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
17699
177002001-02-02 Akim Demaille <akim@epita.fr>
17701
17702 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
17703 * lib/xalloc.h, lib/xmalloc.c: Update.
17704
177052001-01-19 Akim Demaille <akim@epita.fr>
17706
17707 Get rid of the ad hoc handling of token_buffer in the scanner: use
17708 the obstacks.
17709
17710 * src/lex.c (token_obstack): New.
17711 (init_lex): Initialize it. No longer call...
17712 (grow_token_buffer): this. Remove it.
17713 Adjust all the places which used it to use the obstack.
17714
177152001-01-19 Akim Demaille <akim@epita.fr>
17716
17717 * src/lex.h: Rename all the tokens:
17718 s/\bENDFILE\b/tok_eof/g;
17719 s/\bIDENTIFIER\b/tok_identifier/g;
17720 etc.
17721 Let them be enums, not #define, to ease debugging.
17722 Adjust all the code.
17723
177242001-01-18 Akim Demaille <akim@epita.fr>
17725
17726 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
17727 * src/lex.c (maxtoken, grow_token_buffer): Static.
17728
177292001-01-18 Akim Demaille <akim@epita.fr>
17730
17731 Since we now use obstacks, more % directives can be enabled.
17732
17733 * src/lex.c (percent_table): Also accept `%yacc',
17734 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
17735 `%debug'.
17736 Handle the actions for `%semantic_parser' and `%pure_parser' here,
17737 instead of returning a token.
17738 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
17739 * src/reader.c (read_declarations): Adjust.
17740 * src/files.c (open_files): Don't call `compute_base_names', don't
17741 compute `attrsfile' since they depend upon data which might be
17742 *in* the input file now.
17743 (output_files): Do it here.
17744 * src/output.c (output_headers): Document the fact that this patch
17745 introduces a guaranteed SEGV for semantic parsers.
17746 * doc/bison.texinfo: Document them.
17747 * tests/suite.at: Exercise these %options.
17748
177492000-12-20 Akim Demaille <akim@epita.fr>
17750
17751 Also handle the output file (--verbose) with obstacks.
17752
17753 * files.c (foutput): Remove.
17754 (output_obstack): New.
17755 Adjust all dependencies.
17756 * src/conflicts.c: Return a string.
17757 * src/system.h (obstack_grow_string): Rename as...
17758 (obstack_sgrow): this. Be ready to work with non literals.
17759 (obstack_fgrow4): New.
17760
177612000-12-20 Akim Demaille <akim@epita.fr>
17762
17763 * src/files.c (open_files): Fix the computation of short_base_name
17764 in the case of `-o foo.tab.c'.
17765
177662000-12-20 Akim Demaille <akim@epita.fr>
17767
17768 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
17769 (copy_dollar): Now that everything uses obstacks, get rid of the
17770 FILE * parameters.
17771
177722000-12-20 Akim Demaille <akim@epita.fr>
17773
17774 * src/files.c (open_files): Actually the `.output' file is based
17775 on the short_base_name, not base_name.
17776 * tests/suite.at (Checking output file names): Adjust.
17777
177782000-12-20 Akim Demaille <akim@epita.fr>
17779
17780 * src/bison.s1: Remove, we now use directly...
17781 * src/bison.simple: this.
17782 * src/Makefile.am: Use pkgdata instead of data.
17783
177842000-12-20 Akim Demaille <akim@epita.fr>
17785
17786 * src/files.c (guard_obstack): New.
17787 (open_files): Initialize it.
17788 (output_files): Dump it...
17789 * src/files.h: Export it.
17790 * src/reader.c (copy_guard): Use it.
17791
177922000-12-19 Akim Demaille <akim@epita.fr>
17793
17794 * src/files.c (outfile, defsfile, actfile): Removed as global
17795 vars.
17796 (open_files): Don't compute them.
17797 (output_files): Adjust.
17798 (base_name, short_base_name): Be global.
17799 Adjust dependencies.
17800
178012000-12-19 Akim Demaille <akim@epita.fr>
17802
17803 * src/files.c (strsuffix): New.
17804 (stringappend): Be just like strcat but allocate.
17805 (base_names): Eve out from open_files.
17806 Try to simplify the rather hairy computation of base_name and
17807 short_base_name.
17808 (open_files): Use it.
17809 * tests/suite.at (Checking output file names): New test.
17810
178112000-12-19 Akim Demaille <akim@epita.fr>
17812
17813 * src/system.h (obstack_grow_literal_string): Rename as...
17814 (obstack_grow_string): this.
17815 * src/output.c (output_parser): Recognize `%% actions' instead of
17816 `$'.
17817 * src/bison.s1: s/$/%% actions/.
17818 * src/bison.hairy: Likewise.
17819
178202000-12-19 Akim Demaille <akim@epita.fr>
17821
17822 * src/output.c (output_parser): Compute the `#line' lines when
17823 there are.
17824 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
17825 Suggested by Hans Aberg.
17826
178272000-12-19 Akim Demaille <akim@epita.fr>
17828
17829 Let the handling of the skeleton files be local to the procedures
17830 that use it.
17831
17832 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
17833 longer static.
17834 (fparser, open_extra_files): Remove.
17835 (open_files, output_files): Don't take care of fparser.
17836 * src/files.h: Adjust.
17837 * src/output.c (output_parser): Open and close the file to the
17838 skeleton.
17839 * src/reader.c (read_declarations): When %semantic_parser, open
17840 fguard.
17841
178422000-12-19 Akim Demaille <akim@epita.fr>
17843
17844 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
17845 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
17846
178472000-12-19 Akim Demaille <akim@epita.fr>
17848
17849 * src/files.c (open_files): Yipee! We no longer need all the code
17850 looking for `/tmp' since we have no tmp file.
17851
178522000-12-19 Akim Demaille <akim@epita.fr>
17853
17854 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
17855 New macros.
17856 * src/files.c (open_files): Less dependency on MSDOS etc.
17857
178582000-12-14 Akim Demaille <akim@epita.fr>
17859
17860 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
17861 Provide a default definition.
17862 Use it when executing the default @ action.
17863 * src/reader.c (reader_output_yylsp): No longer include
17864 `timestamp' and `text' in the default YYLTYPE.
17865
178662000-12-12 Akim Demaille <akim@epita.fr>
17867
17868 * src/reader.c (copy_definition, parse_union_decl, copy_action)
17869 (copy_guard): Quote the file names.
17870 Reported by Laurent Mascherpa.
17871
178722000-12-12 Akim Demaille <akim@epita.fr>
17873
17874 * src/output.c (output_headers, output_program, output): Be sure
17875 to escape special characters when outputting filenames.
17876 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
17877 (output_headers): Don't depend on them, Use ACTSTR.
17878
178792000-11-17 Akim Demaille <akim@epita.fr>
17880
17881 * lib/obstack.h: Formatting changes.
17882 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
17883 prevents type checking.
17884 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
17885 cast the value to (void *): assigning a `foo *' to a `void *'
17886 variable is valid.
17887 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
17888 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
17889 append characters.
17890
178912000-11-17 Akim Demaille <akim@epita.fr>
17892
17893 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
17894 as...
17895 (suite.m4, regression.m4, calc.m4): these.
17896 * tests/atgeneral.m4: Update from CVS Autoconf.
17897
178982000-11-17 Akim Demaille <akim@epita.fr>
17899
17900 * tests/regression.m4 (%union and --defines): New test,
17901 demonstrating a current bug in the obstack implementation.
17902
179032000-11-17 Akim Demaille <akim@epita.fr>
17904
17905 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
17906 macros.
17907 Use them to declare the variables which are global or local to
17908 `yyparse'.
17909
179102000-11-17 Akim Demaille <akim@epita.fr>
17911
17912 * acconfig.h: Remove, no longer used.
17913
179142000-11-07 Akim Demaille <akim@epita.fr>
17915
17916 * src: s/Copyright (C)/Copyright/g.
17917
179182000-11-07 Akim Demaille <akim@epita.fr>
17919
17920 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
17921 defining.
17922 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
17923
179242000-11-07 Akim Demaille <akim@epita.fr>
17925
17926 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
17927 Merge in a single CPP if/else.
17928
179292000-11-07 Akim Demaille <akim@epita.fr>
17930
17931 * src/output.c (output): Remove useless variables.
17932 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
17933 argument `data' for consistency with the prototypes.
17934 Qualify it `const'.
17935 (obstack_copy, obstack_copy0): Rename the second argument as
17936 `address' for consistency. Qualify it `const'.
17937 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
17938 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
17939 `const' their input argument (`data' or `address').
17940 Adjust the corresponding macros to include `const' in casts.
17941
179422000-11-03 Akim Demaille <akim@epita.fr>
17943
17944 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
17945 s/PFILE1/BISON_HAIRY/.
17946 Adjust dependencies.
17947
179482000-11-03 Akim Demaille <akim@epita.fr>
17949
17950 For some reason, this was not applied.
17951
17952 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
17953 `unlink': it's no longer used.
17954
179552000-11-03 Akim Demaille <akim@epita.fr>
17956
17957 * src/files.c (skeleton_find): New function, eved out of...
17958 (open_files, open_extra_files): here.
17959
179602000-11-03 Akim Demaille <akim@epita.fr>
17961
17962 Don't use `atexit'.
17963
17964 * src/files.c (obstack_save): New function.
17965 (done): Rename as...
17966 (output_files): this.
17967 Use `obstack_save'.
17968 * src/main.c (main): Don't use `atexit' to register `done', since
17969 it no longer has to remove tmp files, just call `output_files'
17970 when there are no errors.
17971
179722000-11-02 Akim Demaille <akim@epita.fr>
17973
17974 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
17975 `unlink': it's no longer used.
17976 * src/files.h: Formatting changes.
17977
179782000-11-02 Akim Demaille <akim@epita.fr>
17979
17980 Remove the last uses of mktemp and unlink/delete.
17981
17982 * src/files.c (fdefines, ftable): Removed.
17983 (defines_ostack, table_obstack): New.
17984 Adjust dependencies of the former into uses of the latter.
17985 * src/output.c (output_short_or_char_table, output_short_table):
17986 Convert to using obstacks.
17987 * src/reader.c (copy_comment2): Accept one FILE * and two
17988 obstacks.
17989 (output_token_defines, reader_output_yylsp): Use obstacks.
17990 * src/system.h (obstack_fgrow3): New.
17991 * po/POTFILES.in: Adjust.
17992
179932000-11-01 Akim Demaille <akim@epita.fr>
17994
17995 Change each use of `fattrs' into a use of `attrs_obstack'.
17996
17997 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
17998 * src/files.c (fattrs): Remove.
17999 (attrs_obstack): New.
18000 Adjust all dependencies.
18001 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
18002
180032000-11-01 Akim Demaille <akim@epita.fr>
18004
18005 Introduce obstacks.
18006 Change each use of `faction' into a use of `action_obstack'.
18007
18008 * lib/obstack.h, lib/obstack.c: New files.
18009 * src/files.c (faction): Remove.
18010 (action_obstack): New.
18011 Adjust all dependencies.
18012
180132000-10-20 Akim Demaille <akim@epita.fr>
18014
18015 * lib/quote.h (PARAMS): New macro. Use it.
18016
180172000-10-16 Akim Demaille <akim@epita.fr>
18018
18019 * src/output.c (output_short_or_char_table): New function.
18020 (output_short_table, output_token_translations): Use it.
18021 (goto_actions): Use output_short_table.
18022
180232000-10-16 Akim Demaille <akim@epita.fr>
18024
18025 * src/symtab.c (bucket_new): New function.
18026 (getsym): Use it.
18027
18028 * src/output.c (output_short_table): New argument to display the
18029 comment associated with the table.
18030 Adjust dependencies.
18031 (output_gram): Use it.
18032 (output_rule_data): Nicer output layout for YYTNAME.
18033
180342000-10-16 Akim Demaille <akim@epita.fr>
18035
18036 * src/lex.c (read_typename): New function.
18037 (lex): Use it.
18038 * src/reader.c (copy_dollar): Likewise.
18039
180402000-10-16 Akim Demaille <akim@epita.fr>
18041
18042 * src/reader.c (copy_comment2): Expect the input stream to be on
18043 the `/' which is suspected to open a comment, instead of being
18044 called after `//' or `/*' was read.
18045 (copy_comment, copy_definition, parse_union_decl, copy_action)
18046 (copy_guard): Adjust.
18047
180482000-10-16 Akim Demaille <akim@epita.fr>
18049
18050 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
18051 `read_signed_integer'.
18052
180532000-10-16 Akim Demaille <akim@epita.fr>
18054
18055 * src/reader.c (copy_dollar): New function.
18056 (copy_guard, copy_action): Use it.
18057
180582000-10-16 Akim Demaille <akim@epita.fr>
18059
18060 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
18061 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
18062 New files, from Fileutils 4.0.27.
18063 * src/main.c (printable_version): Remove.
18064 * src/lex.c, src/reader.c: Use `quote'.
18065
180662000-10-04 Akim Demaille <akim@epita.fr>
18067
18068 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
18069
180702000-10-04 Akim Demaille <akim@epita.fr>
18071
18072 * doc/bison.texinfo: Various typos spotted by Neil Booth.
18073
180742000-10-04 Akim Demaille <akim@epita.fr>
18075
18076 When a literal string is used to define two different tokens,
18077 `bison -v' segfaults.
18078 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
18079
18080 * tests/regression.m4: New file.
18081 Include the core of the sample provided by Piotr Gackiewicz.
18082 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
18083 properly.
18084
180852000-10-04 Akim Demaille <akim@epita.fr>
18086
18087 * src/reader.c (parse_expect_decl): Keep `count' within the size
18088 of `buffer'.
18089 From Neil Booth.
18090
180912000-10-02 Paul Eggert <eggert@twinsun.com>
18092
18093 * bison.s1 (yyparse): Assign the default value
18094 unconditionally, to avoid a GCC warning and make the parser a
18095 tad smaller.
18096
180972000-10-02 Akim Demaille <akim@epita.fr>
18098
18099 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
18100 options.
18101
181022000-10-02 Akim Demaille <akim@epita.fr>
18103
18104 * src/derives.c, src/print.c, src/reduce.c: To ease the
18105 translation, move some `\n' out of the translated strings.
18106
181072000-10-02 Akim Demaille <akim@epita.fr>
18108
18109 The location tracking mechanism is precious for parse error
18110 messages. Nevertheless, it is enabled only when `@n' is used in
18111 the grammar, which is a different issue (you can use it in error
18112 message, but not in the grammar per se). Therefore, there should
18113 be another means to enable it.
18114
18115 * src/getargs.c (getargs): Support `--locations'.
18116 (usage): Report it.
18117 * src/getargs.h (locationsflag): Export it.
18118 * src/lex.c (percent_table): Support `%locations'.
18119 * src/reader.c (yylsp_needed): Remove this variable, now replaced
18120 with `locationsflag'.
18121 * doc/bison.texinfo: Document `--locations' and `%locations'.
18122 Sort the options.
18123 * tests/calc.m4: Test it.
18124
18125 For regularity of the names, replace each
18126 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
18127 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
18128 In addition replace each `flag' with `_flag'.
18129
181302000-10-02 Akim Demaille <akim@epita.fr>
18131
18132 Also test parse error messages, including with YYERROR_VERBOSE.
18133
18134 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
18135 associative).
18136 Use it to check the computations.
18137 Use it to check `nonassoc' is honored.
18138 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
18139 `--yyerror-verbose'.
18140 (_AT_CHECK_CALC): Adjust to this option.
18141 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
18142
181432000-10-02 Akim Demaille <akim@epita.fr>
18144
18145 Test also `--verbose', `--defines' and `--name-prefix'. Testing
18146 the latter demonstrates a flaw in the handling of non debugging
18147 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
18148 was used in order to simplify:
18149
18150 #if YYDEBUG
18151 if (yydebug)
18152 {
18153 ...
18154 }
18155 #endif
18156
18157 into
18158
18159 if (yydebug)
18160 {
18161 ...
18162 }
18163
18164 unfortunately this leads to a CPP conflict when
18165 `--name-prefix=foo' is used since it produces `#define yydebug
18166 foodebug'.
18167
18168 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
18169 (YYDPRINTF): New macro.
18170 Spread its use.
18171 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
18172 the bison options.
18173 Also test `--verbose', `--defines' and `--name-prefix'.
18174
181752000-10-02 Akim Demaille <akim@epita.fr>
18176
18177 Improve the readability of the produced parsers.
18178
18179 * src/bison.s1: Formatting changes.
18180 Improve the comment related to the `$' mark.
18181 (yydefault): Don't fall through to `yyresume': `goto' there.
18182 * src/output.c (output_parser): When the `$' is met, skip the end
18183 of its line.
18184 New variable, `number_of_dollar_signs', to check there's exactly
18185 one `$' in the parser skeleton.
18186
181872000-10-02 Akim Demaille <akim@epita.fr>
18188
18189 * lib/xstrdup.c: New file, from the fileutils.
18190 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
18191 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
18192 instead of strlen + xmalloc + strcpy.
18193 * src/symtab.c (copys): Remove, use xstrdup instead.
18194
181952000-10-02 Akim Demaille <akim@epita.fr>
18196
18197 * src/gram.h (associativity): New enum type which replaces the
18198 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
18199 `right_assoc', `left_assoc' and `non_assoc'.
18200 Adjust all dependencies.
18201 * src/reader.c: Formatting changes.
18202 (LTYPESTR): Don't define it, use it as a literal in
18203 `reader_output_yylsp'.
18204 * src/symtab.h (symbol_class): New enum type which replaces the
18205 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
18206 `sunknown', `stoken and `snterm'.
18207
182082000-10-02 Akim Demaille <akim@epita.fr>
18209
18210 * src/getargs.c (fixed_outfiles): Rename as...
18211 (yaccflag): for consistency and accuracy.
18212 Adjust dependencies.
18213
182142000-10-02 Akim Demaille <akim@epita.fr>
18215
18216 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
18217 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
18218 difficult and introduced a lot of core dump. It turns out that
18219 Bison used an implementation of `xmalloc' based on `calloc', and
18220 at various places it does depend upon the initialization to 0. I
18221 have not tried to isolate the pertinent places, and all the former
18222 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
18223 someone should address this issue.
18224
18225 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
18226 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
18227 files.
18228 Adjust dependencies.
18229 * src/warshall.h: New file.
18230 Propagate.
18231
182322000-10-02 Akim Demaille <akim@epita.fr>
18233
18234 Various anti-`extern in *.c' changes.
18235
18236 * src/system.h: Include `assert.h'.
18237
182382000-10-02 Akim Demaille <akim@epita.fr>
18239
18240 * src/state.h (nstates, final_state, first_state, first_shift)
18241 (first_reduction): Move their exportation from here...
18242 * src/LR0.h: to here.
18243 Adjust dependencies.
18244 * src/getargs.c (statisticsflag): New variable.
18245 Add support for `--statistics'.
18246 Adjust dependencies.
18247
18248 Remove a lot of now useless `extern' statements in most files.
18249
182502000-10-02 Akim Demaille <akim@epita.fr>
18251
18252 * src/LR0.h: New file.
18253 Propagate its use.
18254
182552000-10-02 Akim Demaille <akim@epita.fr>
18256
18257 * src/print.h: New file.
18258 Propagate its use.
18259 * src/print.c: Formatting and ordering changes.
18260 (verbose, terse): Replace with...
18261 (print_results): this new function.
18262 Adjust dependencies.
18263
182642000-10-02 Akim Demaille <akim@epita.fr>
18265
18266 * src/conflicts.c (conflict_report): New function.
18267 (conflict_log, verbose_conflict_log): Replace with...
18268 (print_conflicts): this function.
18269 Adjust dependencies.
18270 * src/conflicts.h: New file.
18271 Propagate its inclusion.
18272
182732000-10-02 Akim Demaille <akim@epita.fr>
18274
18275 * src/nullable.h: New file.
18276 Propagate its inclusion.
18277 * src/nullable.c: Formatting changes.
18278
182792000-10-02 Akim Demaille <akim@epita.fr>
18280
18281 * src/reduce.h: New file.
18282 Propagate its inclusion.
18283 * src/reduce.c: Topological sort and other formatting changes.
18284 (bool, TRUE, FALSE): Move their definition to...
18285 * src/system.h: here.
18286
182872000-10-02 Akim Demaille <akim@epita.fr>
18288
18289 * src/files.c: Formatting changes.
18290 (tryopen, tryclose, openfiles): Rename as...
18291 (xfopen, xfclose, open_files): this.
18292 (stringappend): static.
18293 * src/files.h: Complete the list of exported symbols.
18294 Propagate its use.
18295
182962000-10-02 Akim Demaille <akim@epita.fr>
18297
18298 * src/reader.h: New file.
18299 Propagate its use instead of tedious list of `extern' and
18300 prototypes.
18301 * src/reader.c: Formatting changes, topological sort,
18302 s/register//.
18303
183042000-10-02 Akim Demaille <akim@epita.fr>
18305
18306 * src/lex.h: Prototype `lex.c' exported functions.
18307 * src/reader.c: Adjust.
18308 * src/lex.c: Formatting changes.
18309 (safegetc): Rename as...
18310 (xgetc): this.
18311
183122000-10-02 Akim Demaille <akim@epita.fr>
18313
18314 * src/lalr.h: New file.
18315 Propagate its inclusion instead of prototypes and `extern'.
18316 * src/lalr.c: Formatting changes, topological sorting etc.
18317
183182000-10-02 Akim Demaille <akim@epita.fr>
18319
18320 * src/output.c (token_actions): Introduce a temporary array,
18321 YYDEFACT, that makes it possible for this function to use
18322 output_short_table.
18323
183242000-10-02 Akim Demaille <akim@epita.fr>
18325
18326 `user_toknums' is output as a `short[]' in `output.c', while it is
18327 defined as a `int[]' in `reader.c'. For consistency with the
18328 other output tables, `user_toknums' is now defined as a table of
18329 shorts.
18330
18331 * src/reader.c (user_toknums): Be a short table instead of an int
18332 table.
18333 Adjust dependencies.
18334
18335 Factor the short table outputs.
18336
18337 * src/output.c (output_short_table): New function.
18338 * src/output.c (output_gram, output_stos, output_rule_data)
18339 (output_base, output_table, output_check): Use it.
18340
183412000-10-02 Akim Demaille <akim@epita.fr>
18342
18343 * src/output.c (output): Topological sort of the functions, in
18344 order to get rid of the `static' prototypes.
18345 No longer use `register'.
18346 * src/output.h: New file.
18347 Propagate its inclusion in files explicitly prototyping functions
18348 from output.c.
18349
183502000-09-21 Akim Demaille <akim@epita.fr>
18351
18352 * src/atgeneral.m4: Update from Autoconf.
18353
183542000-09-21 Akim Demaille <akim@epita.fr>
18355
18356 * src/closure.h: New file.
18357 * src/closure.c: Formatting changes, topological sort over the
18358 functions, use of closure.h.
18359 (initialize_closure, finalize_closure): Rename as...
18360 (new_closure, free_closure): these. Adjust dependencies.
18361 * src/LR0.c: Formatting changes, topological sort, use of
18362 cloture.h.
18363 (initialize_states): Rename as...
18364 (new_states): this.
18365 * src/Makefile.am (noinst_HEADERS): Adjust.
18366
183672000-09-20 Akim Demaille <akim@epita.fr>
18368
18369 * src/acconfig.h: Don't protect config.h against multiple
18370 inclusion.
18371 Don't define PARAMS.
18372 * src/system.h: Define PARAMS.
18373 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
18374 purpose of config.h. system.h must not try to fix wrong
18375 definitions in config.h.
18376
183772000-09-20 Akim Demaille <akim@epita.fr>
18378
18379 * src/derives.h: New file.
18380 * src/main.c, src/derives.h: Use it.
18381 Formatting changes.
18382 * src/Makefile.am (noinst_HEADERS): Adjust.
18383
183842000-09-20 Akim Demaille <akim@epita.fr>
18385
18386 * tests/atgeneral.m4: Update from Autoconf.
18387 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
18388 (AT_CHECK_CALC): New macros.
18389 Use these macros to test bison with options `', `--raw',
18390 `--debug', `--yacc', `--yacc --debug'.
18391
183922000-09-19 Akim Demaille <akim@epita.fr>
18393
18394 * src/output.c: Formatting changes.
18395 * src/machine.h: Remove, leaving its contents in...
18396 * src/system.h: here.
18397 Include stdio.h.
18398 Adjust all dependencies on stdio.h and machine.h.
18399 * src/getargs.h: New file.
18400 Let all `extern' declarations about getargs.c be replaced with
18401 inclusion of `getargs.h'.
18402 * src/Makefile.am (noinst_HEADERS): Adjust.
18403
18404 * tests/calc.m4 (yyin): Be initialized in main, not on the global
18405 scope.
18406 (yyerror): Returns void, not int.
18407 * doc/bison.texinfo: Formatting changes.
18408
184092000-09-19 Akim Demaille <akim@epita.fr>
18410
18411 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
18412 portable.
18413
184142000-09-18 Akim Demaille <akim@epita.fr>
18415
18416 * configure.in: Append WARNING_CFLAGS to CFLAGS.
18417 * src/Makefile.am (INCLUDES): Don't.
18418 Be ready to fetch headers in lib/.
18419
184202000-09-18 Akim Demaille <akim@epita.fr>
18421
18422 * doc/bison.texinfo: Update the copyright.
18423 ANSIfy and GNUify the examples.
18424 Remove the old menu.
18425
184262000-09-18 Akim Demaille <akim@epita.fr>
18427
18428 First set of tests: use the `calc' example from the documentation.
18429
18430 * src/bison.s1 (yyparse): Condition the code using `yytname' which
18431 is defined only when YYDEBUG is.
18432 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
18433 * src/files.c (tryopen, tryclose): Formatting changes.
18434 Move to the top and be static.
18435 * src/reader.c (read_signed_integer): Likewise.
18436 * tests/calc.m4: New file.
18437 * Makefile.am, suite.m4: Adjust.
18438 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
18439
184402000-09-18 Akim Demaille <akim@epita.fr>
18441
18442 Add support for an Autotest test suite for Bison.
18443
18444 * m4/m4.m4, m4/atconfig.m4: New files.
18445 * m4/Makefile.am (EXTRA_DIST): Adjust.
18446 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
18447 files.
18448 * src/getargs.c: Display a more standard --version message.
18449 * src/reader.c (reader): Formatting changes.
18450 No longer depend upon VERSION_STRING.
18451 * configure.in: No longer use `dnl'.
18452 Set up the test suite and the new directory `tests/.
18453 (VERSION_STRING): Remove.
18454
184552000-04-14 Akim Demaille <akim@epita.fr>
18456
18457 * src/reader.c (copy_comment2): New function, same as former
18458 `copy_comment', but outputs into two FILE *.
18459 (copy_comment): Use it.
18460 (parse_union_decl): Use it.
18461 (get_type, parse_start_decl): Use the same `invalid' message.
18462 (parse_start_decl, parse_union_decl): Use the same `multiple'
18463 message.
18464 (parse_union_decl, copy_guard, copy_action): Use the same
18465 `unmatched' message.
18466 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
18467
184682000-03-31 Akim Demaille <akim@epita.fr>
18469
18470 * src/files.c (tryopen, tryclose): Move to the top.
18471 Be static.
18472
184732000-03-31 Akim Demaille <akim@epita.fr>
18474
18475 * src/main.c (main): Don't call `done', exit does it.
18476
184772000-03-31 Akim Demaille <akim@epita.fr>
18478
18479 * allocate.c: s/return (foo)/return foo/.
18480 * lalr.c: Likewise.
18481 * LR0.c: Likewise.
18482 * output.c: Likewise.
18483 * reader.c: Likewise.
18484 * symtab.c: Likewise.
18485 * vmsgetargs.c: Likewise.
18486
184872000-03-31 Akim Demaille <akim@epita.fr>
18488
18489 Clean up the error reporting functions.
18490
18491 * src/report.c: New file.
18492 * src/report.h: Likewise.
18493 * src/Makefile.am: Adjust.
18494 * m4/error.m4: New file.
18495 * m4/Makefile.am: Adjust.
18496 * configure.in (jm_PREREQ_ERROR): Call it.
18497 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
18498 Remove.
18499 (fatal, fatals): Remove. All callers use complain.c::fatal.
18500 (warn, warni, warns, warnss, warnss): Remove. All callers use
18501 complain.c::complain.
18502 (toomany): Remove, use fatal instead.
18503 * src/files.c (done): No argument, use complain_message_count.
18504 * src/main.c (main): Register `done' to `atexit'.
18505
18506 * src/getargs.c (usage): More `fputs', less `fprintf'.
18507
185082000-03-28 Akim Demaille <akim@epita.fr>
18509
18510 * lib/: New directory.
18511 * Makefile.am (SUBDIRS): Adjust.
18512 * configure.in: Adjust.
18513 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
18514 useless.
18515 * src/alloca.c: Moved to lib/.
18516 * src/getopt.c: Likewise.
18517 * src/getopt1.c: Likewise.
18518 * src/getopt.h: Likewise.
18519 * src/ansi2knr.c: Likewise.
18520 * src/ansi2knr.1: Likewise.
18521 * src/Makefile.am: Adjust.
18522 * lib/Makefile.am: New file.
18523
185242000-03-28 Akim Demaille <akim@epita.fr>
18525
18526 * src/getargs.c (usage): Refresh the help message.
18527
185282000-03-17 Akim Demaille <akim@epita.fr>
18529
18530 * src/getopt1.c: Updated from textutils 2.0e
18531 * src/getopt.c: Likewise.
18532 * src/getopt.h: Likewise.
18533
185342000-03-17 Akim Demaille <akim@epita.fr>
18535
18536 * src/Makefile.am (bison.simple): Fix the awk program: quote only
18537 the file name, not the whole `#line LINE FILE'.
18538
185392000-03-17 Akim Demaille <akim@epita.fr>
18540
18541 On syntax errors, report the token on which we choked.
18542
18543 * src/bison.s1 (yyparse): In the label yyerrlab, when
18544 YYERROR_VERBOSE, add yychar in msg.
18545
185462000-03-17 Akim Demaille <akim@epita.fr>
18547
18548 * src/reader.c (copy_at): New function.
18549 (copy_guard): Use it.
18550 (copy_action): Use it.
18551
185522000-03-17 Akim Demaille <akim@epita.fr>
18553
18554 Be kind to translators, save some useless translations.
18555
18556 * src/main.c (banner): New function.
18557 (fatal_banner): Use it.
18558 (warn_banner): Use it.
18559
185602000-03-17 Akim Demaille <akim@epita.fr>
18561
18562 * src/reader.c (copy_definition): Use copy_string and
18563 copy_comment. Removed now unused `match', `ended',
18564 `cplus_comment'.
18565 (copy_comment, copy_string): Moved, to be visible from
18566 copy_definition.
18567
185682000-03-17 Akim Demaille <akim@epita.fr>
18569
18570 * src/reader.c (copy_string): Declare `static inline'. No
18571 problems with inline, since it is checked by configure.
18572 (copy_comment): Likewise.
18573
185742000-03-17 Akim Demaille <akim@epita.fr>
18575
18576 * src/reader.c (packsymbols): Formatting changes.
18577
185782000-03-17 Akim Demaille <akim@epita.fr>
18579
18580 * src/reader.c (copy_comment): New function, factored out from:
18581 (copy_action): Use it. Removed now unused `match', `ended',
18582 `cplus_comment'.
18583 (copy_guard): Likewise.
18584
185852000-03-17 Akim Demaille <akim@epita.fr>
18586
18587 * src/reader.c (copy_string): New function, factored out from:
18588 (copy_action): Use it.
18589 (copy_guard): Likewise.
18590
185912000-03-17 Akim Demaille <akim@epita.fr>
18592
18593 Change the handling of @s so that they behave exactly like $s.
18594 There is now a pseudo variable @$ (readble and writable), location
18595 of the lhs of the rule (by default ranging from the location of
18596 the first symbol of the rhs, to the location of the last symbol,
18597 or, if the rhs is empty, YYLLOC).
18598
18599 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
18600 yyval.
18601 (yyparse): When providing a default semantic action, provide a
18602 default location action.
18603 (after the $): No longer change `*YYLSP', just stack YYLOC the
18604 same way you stack YYVAL.
18605 * src/reader.c (read_declarations): Use warns.
18606 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
18607 (copy_action, case '@'): Likewise.
18608 Use a standard error message, to save useless work from
18609 translators.
18610
186112000-03-17 Akim Demaille <akim@epita.fr>
18612
18613 * src/bison.s1: Formatting and cosmetics changes.
18614 * src/reader.c: Likewise.
18615 Update the Copyright notice.
18616
186172000-03-17 Akim Demaille <akim@epita.fr>
18618
18619 * src/bison.s1 (#line): All set to `#line' only, since the
18620 Makefile now handles them.
18621
186222000-03-16 Akim Demaille <akim@epita.fr>
18623
18624 * src/output.c (output_rule_data): Output the documentation of
18625 some of the tables.
18626 (Copyright notice): Update.
18627 Formatting changes.
18628
186292000-03-16 Akim Demaille <akim@epita.fr>
18630
18631 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
18632 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
18633 One `#if YYDEBUG' remains, since it uses variables which are
18634 defined only if `YYDEBUG != 0'.
18635
186362000-03-16 Akim Demaille <akim@epita.fr>
18637
18638 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
18639 and related variables so that the similarities are highlighted.
18640
186412000-03-16 Akim Demaille <akim@epita.fr>
18642
18643 * src/bison.s1: Properly indent CPP directives.
18644
186452000-03-16 Akim Demaille <akim@epita.fr>
18646
18647 * src/bison.s1: Properly indent the `alloca' CPP section.
18648
186492000-03-16 Akim Demaille <akim@epita.fr>
18650
18651 Do not hard code values of directories in `configure.in'.
18652 Update the `configure' tool chain.
18653
18654 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
18655 src/makefile.am.
18656 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
18657 (AC_OUTPUT): Add m4/Makefile.
18658 Bump to bison 1.28a, 1.29 has never been released.
18659 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
18660 handled via src/Makefile.am.
18661 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
18662 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
18663 autoheader.
18664 * Makefile.am (SUBDIRS): Add m4.
18665 (ACLOCAL_AM_FLAGS): New variable.
18666 (AUTOMAKE_OPTIONS): Add check-news.
18667 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
18668 the proper line number and file name.
18669 (DEFS): Propagate the location of bison library files and of the
18670 locale files.
18671 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
18672 builddir.
18673 * acinclude.m4: Remove, replaced by the directory m4.
18674 * m4/Makefile.am (EXTRA_DIST): New variable.
18675 * m4/gettext.m4: New file, from the fileutils.
18676 * m4/lcmessage.m4: Likewise
18677 * m4/progtest.m4: Likewise.
18678 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
18679
186802000-03-10 Akim Demaille <akim@epita.fr>
18681
18682 * src/closure.c:
18683 Formatting changes of various comments.
18684 Respect the GNU coding standards at various places.
18685 Don't use `_()' when no translation is needed.
18686
186871999-12-13 Jesse Thilo <jthilo@gnu.org>
18688
18689 * src/files.c:
18690 OS/2 honors TMPDIR environment variable.
18691
186921999-12-13 Jesse Thilo <jthilo@gnu.org>
18693
18694 * doc/bison.texinfo: Tweaked spelling and grammar.
18695 Updated ISBN.
18696 Removed reference to price of printed copy.
18697 Mention BISON_SIMPLE and BISON_HAIRY.
18698
186991999-12-13 Jesse Thilo <jthilo@gnu.org>
18700
18701 * configure.in, NEWS:
18702 Bison 1.29 released.
18703
187041999-10-27 Jesse Thilo <jthilo@gnu.org>
18705
18706 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
18707 Added reference card.
18708
187091999-07-26 Jesse Thilo <jthilo@gnu.org>
18710
18711 * po/ru.po: Added Russian translation.
18712
187131999-07-26 Jesse Thilo <jthilo@gnu.org>
18714
18715 * configure.in: Added Russian translation.
18716
187171999-07-06 Jesse Thilo <jthilo@gnu.org>
18718
18719 * configure.in, NEWS, README:
18720 Released version 1.28.
18721
187221999-06-14 Jesse Thilo <jthilo@gnu.org>
18723
18724 * src/system.h:
18725 Squashed redefinition warning on some systems.
18726
18727 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
18728 Have configure build version string instead of relying on ANSI string
18729 concatentation.
18730
187311999-06-14 Jesse Thilo <jthilo@gnu.org>
18732
18733 * po/POTFILES.in: Got rid of version.c.
18734
187351999-06-14 Jesse Thilo <jthilo@gnu.org>
18736
18737 * acconfig.h, configure.in:
18738 Have configure build version string instead of relying on ANSI string
18739 concatentation.
18740
187411999-06-08 Jesse Thilo <jthilo@gnu.org>
18742
18743 * doc/bison.1:
18744 Dropped mention of `+' for long-named options.
18745
187461999-05-30 Jesse Thilo <jthilo@gnu.org>
18747
18748 * src/files.c: Added <unistd.h> for unlink().
18749
18750 * src/Makefile.am, src/system.h:
18751 I18n fixes.
18752
187531999-05-30 Jesse Thilo <jthilo@gnu.org>
18754
18755 * README: Added a FAQ list.
18756
18757 * configure.in, acconfig.h:
18758 I18n fixes.
18759
187601999-05-30 Jesse Thilo <jthilo@gnu.org>
18761
18762 * doc/FAQ, doc/Makefile.am:
18763 Added a FAQ list.
18764
187651999-05-19 Jesse Thilo <jthilo@gnu.org>
18766
18767 * src/alloc.h, src/symtab.h, src/version.c:
18768 Protected inclusion of "config.h" with HAVE_CONFIG_H.
18769
187701999-04-18 Jesse Thilo <jthilo@gnu.org>
18771
18772 * src/.cvsignore, src/Makefile.am:
18773 Reorganized: sources in `src', documentation in `doc'.
18774
18775 * src/lex.c (literalchar):
18776 fixed the code for escaping double quotes (thanks
18777 Jonathan Czisny.)
18778
187791999-04-18 Jesse Thilo <jthilo@gnu.org>
18780
18781 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
18782 Adjusted paths to reflect directory reorganization.
18783
187841999-04-18 Jesse Thilo <jthilo@gnu.org>
18785
18786 * doc/.cvsignore, doc/Makefile.am:
18787 Reorganized: sources in `src', documentation in `doc'.
18788
187891999-04-18 Jesse Thilo <jthilo@gnu.org>
18790
18791 * configure.in:
18792 Updated AC_INIT file to reflect directory reorganization.
18793
18794 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
18795 Reorganized: sources in `src', documentation in `doc'.
18796
187971999-04-13 Jesse Thilo <jthilo@gnu.org>
18798
18799 * src/allocate.c:
18800 Don't declare calloc() and realloc() if not necessary.
18801
188021999-04-13 Jesse Thilo <jthilo@gnu.org>
18803
18804 * configure.in, acconfig.h, acinclude.m4:
18805 Don't declare calloc() and realloc() if not necessary.
18806
188071999-03-23 Jesse Thilo <jthilo@gnu.org>
18808
18809 * po/.cvsignore: Added i18n support.
18810
188111999-03-23 Jesse Thilo <jthilo@gnu.org>
18812
18813 * acconfig.h, configure.in, Makefile.am:
18814 Added i18n support.
18815
188161999-03-22 Jesse Thilo <jthilo@gnu.org>
18817
18818 * src/bison.s1: Fixed #line numbers.
18819
188201999-03-15 Jesse Thilo <jthilo@gnu.org>
18821
18822 * po/es.po, po/fr.po, po/nl.po, po/de.po:
18823 Added PO files from Translation Project.
18824
188251999-03-03 Jesse Thilo <jthilo@gnu.org>
18826
18827 * Makefile.am:
18828 Added support for non-ANSI compilers (ansi2knr).
18829
188301999-02-16 Jesse Thilo <jthilo@gnu.org>
18831
18832 * configure.in: Bumped version number to 1.27.
18833
18834 * Makefile.am:
18835 Added `bison.simple' to list of files removed by `make distclean'.
18836
188371999-02-12 Jesse Thilo <jthilo@gnu.org>
18838
18839 * src/files.c, src/files.h:
18840 Defined locations of parser files in config.h instead of Makefile.
18841
188421999-02-12 Jesse Thilo <jthilo@gnu.org>
18843
18844 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
18845 Defined locations of parser files in config.h instead of Makefile.
18846
188471999-02-09 Jesse Thilo <jthilo@gnu.org>
18848
18849 * Makefile.am:
18850 Removed inappropriate use of $< macro.
18851
188521999-02-05 Jesse Thilo <jthilo@gnu.org>
18853
18854 * po/Makefile.in.in, po/POTFILES.in:
18855 Add `po' directory skeleton.
18856
188571999-01-27 Jesse Thilo <jthilo@gnu.org>
18858
18859 * README: Document help-bison list.
18860
18861 * configure.in: Add check for mkstemp().
18862
188631999-01-20 Jesse Thilo <jthilo@gnu.org>
18864
18865 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
18866 Hush a few compiler warnings.
18867
18868 * src/files.c:
18869 Add tryclose(), which verifies that fclose was successful.
18870 Hush a couple of compiler warnings.
18871
188721999-01-20 Jesse Thilo <jthilo@gnu.org>
18873
18874 * Makefile.am, OChangeLog:
18875 ChangeLog is now automatically generated. Include the old version as
18876 OChangeLog.
18877
188781999-01-14 Jesse Thilo <jthilo@gnu.org>
18879
18880 * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c:
18881 Update FSF address.
18882
188831999-01-14 Jesse Thilo <jthilo@gnu.org>
18884
18885 * doc/bison.texinfo: Fix formatting glitch.
18886
18887 * doc/bison.texinfo: Update FSF address.
18888
188891999-01-14 Jesse Thilo <jthilo@gnu.org>
18890
18891 * acconfig.h: Update FSF address.
18892
188931999-01-08 Jesse Thilo <jthilo@gnu.org>
18894
18895 * src/system.h:
18896 Don't define PACKAGE here, since config.h defines it.
18897
188981998-12-30 Jesse Thilo <jthilo@gnu.org>
18899
18900 * src/reader.c: Update copyright date.
18901
18902 * src/main.c:
18903 Ditch sprintf to statically-sized buffers in fatal/warn functions in
18904 favor of output directly to stderr (avoids buffer overruns).
18905
18906 * src/reader.c: Some checks for premature EOF.
18907
18908 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c:
18909 Use prototypes if the compiler understands them.
18910
18911 * src/files.c: Honor TMPDIR on Unix hosts.
18912 Use prototypes if the compiler understands them.
18913
18914 * src/reader.c:
18915 Fix a couple of buffer overrun bugs.
18916 Use prototypes if the compiler understands them.
18917
18918 * src/system.h: Include unistd.h and ctype.h.
18919 Use #ifdef instead of #if for NLS symbols.
18920
189211998-12-30 Jesse Thilo <jthilo@gnu.org>
18922
18923 * doc/bison.texinfo:
18924 Delete comment "consider using @set for edition number, etc..." since
18925 we now are doing so.
18926
189271998-12-30 Jesse Thilo <jthilo@gnu.org>
18928
18929 * configure.in:
18930 Use prototypes if the compiler understands them.
18931
18932 * NEWS: Document 1.26 highlights.
18933
18934 * Makefile.am: Require Automake 1.3 or later.
18935
18936 * acconfig.h:
18937 Use prototypes if the compiler understands them.
18938
189391998-12-29 Jesse Thilo <jthilo@gnu.org>
18940
18941 * src/version.c:
18942 Use VERSION symbol from automake for version number.
18943
189441998-12-29 Jesse Thilo <jthilo@gnu.org>
18945
18946 * acconfig.h, configure.in, version.cin:
18947 Use VERSION symbol from automake for version number.
18948
189491998-11-28 Jesse Thilo <jthilo@gnu.org>
18950
18951 * Makefile.am:
18952 Distribute original version of simple parser (bison.s1), not built
18953 version (bison.simple).
18954
189551998-11-28 Jesse Thilo <jthilo@gnu.org>
18956
18957 * doc/bison.texinfo: Add info dir entry.
18958
18959 * doc/bison.texinfo:
18960 Let automake put version number into documentation.
18961
189621998-11-26 Jesse Thilo <jthilo@gnu.org>
18963
18964 * src/bison.cld, src/build.com, src/vmshlp.mar:
18965 Add non-RCS files from /gd/gnu/bison.
18966
189671998-11-26 Jesse Thilo <jthilo@gnu.org>
18968
18969 * doc/bison.1:
18970 Document the BISON_HAIRY and BISON_SIMPLE variables.
18971
189721998-11-25 Jesse Thilo <jthilo@gnu.org>
18973
18974 * src/version.c: Build version.c automatically.
18975
18976 * src/reader.c:
18977 Fix token numbering (used to start at 258, not 257).
18978
18979 * src/system.h: Include config.h.
18980
18981 * src/getargs.c: Update bug report address.
18982
18983 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
18984 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
18985
189861998-11-25 Jesse Thilo <jthilo@gnu.org>
18987
18988 * Makefile.am:
18989 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
18990
18991 * configure.in, version.cin:
18992 Build version.c automatically.
18993
18994 * AUTHORS: Add AUTHORS file.
18995
18996 * README: Update bug report address.
18997
18998 * bison.simple:
18999 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
19000
19001 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
19002 Add automake stuff.
19003
190041998-11-25 Jesse Thilo <jthilo@gnu.org>
19005
19006 * doc/bison.texinfo: Clean up some formatting.
19007
190081998-05-05 Richard Stallman <rms@gnu.org>
19009
19010 * doc/bison.texinfo:
19011 Explain better why to make a pure parser.
19012
190131998-01-05 Richard Stallman <rms@gnu.org>
19014
19015 * src/files.c (openfiles):
19016 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
19017 find a temporary directory, if possible. Do not unlink files while
19018 they are open.
19019
190201997-08-25 Richard Stallman <rms@gnu.org>
19021
19022 * src/reader.c (stack_offset;):
19023 Change some warni to warns.
19024
19025 * src/lex.c (literalchar): Use warns, not warni.
19026
190271997-06-28 Richard Stallman <rms@gnu.org>
19028
19029 * src/bison.s1: Add a Bison version comment.
19030
19031 * src/main.c (fatal, warn, berror):
19032 Use program_name.
19033
190341997-06-28 Richard Stallman <rms@gnu.org>
19035
19036 * Makefile.in (bison_version): New variable.
19037 (dist): Use that variable.
19038 (bison.s1): Substitute the Bison version into bison.simple.
19039
19040 * bison.simple: Add a Bison version comment.
19041
190421997-06-18 Richard Stallman <rms@gnu.org>
19043
19044 * src/main.c (fatal, warn, berror):
19045 Make error messages standard.
19046 (toomany): Improve error message text.
19047
19048 * 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:
19049 new.h renamed to alloc.h.
19050
190511997-06-18 Richard Stallman <rms@gnu.org>
19052
19053 * Makefile.in: new.h renamed to alloc.h.
19054
190551997-05-24 Richard Stallman <rms@gnu.org>
19056
19057 * src/lex.c (literalchar):
19058 Fix the code for escaping \, " and '.
19059
19060 (lex): Avoid trouble when there are many chars
19061 to discard in a char literal with just several chars in it.
19062
190631997-05-17 Richard Stallman <rms@gnu.org>
19064
19065 * src/bison.s1:
19066 Use malloc, if using alloca is troublesome.
19067 (YYSTACK_USE_ALLOCA): New flag macro.
19068 Define it for some systems and compilers.
19069 (YYSTACK_ALLOC): New macro.
19070 (yyparse): Use YYSTACK_ALLOC to allocate stack.
19071 If it was malloc'd, free it.
19072
190731997-05-17 Richard Stallman <rms@gnu.org>
19074
19075 * bison.simple:
19076 Use malloc, if using alloca is troublesome.
19077 (YYSTACK_USE_ALLOCA): New flag macro.
19078 Define it for some systems and compilers.
19079 (YYSTACK_ALLOC): New macro.
19080 (yyparse): Use YYSTACK_ALLOC to allocate stack.
19081 If it was malloc'd, free it.
19082
190831997-04-23 Richard Stallman <rms@gnu.org>
19084
19085 * src/bison.s1:
19086 (alloca) [__hpux]: Always define as __builtin_alloca.
19087
190881997-04-23 Richard Stallman <rms@gnu.org>
19089
19090 * bison.simple:
19091 (alloca) [__hpux]: Always define as __builtin_alloca.
19092
190931997-04-22 Richard Stallman <rms@gnu.org>
19094
19095 * src/bison.s1:
19096 [__hpux]: Include alloca.h (right for HPUX 10)
19097 instead of declaring alloca (right for HPUX 9).
19098
19099 * src/bison.s1 (__yy_memcpy):
19100 Declare arg `count' as unsigned int.
19101 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
19102
191031997-04-22 Richard Stallman <rms@gnu.org>
19104
19105 * bison.simple:
19106 [__hpux]: Include alloca.h (right for HPUX 10)
19107 instead of declaring alloca (right for HPUX 9).
19108
19109 * bison.simple (__yy_memcpy):
19110 Declare arg `count' as unsigned int.
19111 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
19112
191131997-01-03 Richard Stallman <rms@gnu.org>
19114
19115 * src/allocate.c: [__STDC__ or _MSC_VER]:
19116 Declare calloc and realloc to return void *.
19117
191181997-01-02 Richard Stallman <rms@gnu.org>
19119
19120 * src/system.h:
19121 [_MSC_VER]: Include stdlib.h and process.h.
19122 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
19123
19124 * src/main.c (main): Return FAILURE as a value.
19125 (printable_version): Declare arg as int, not char.
19126
191271997-01-02 Richard Stallman <rms@gnu.org>
19128
19129 * Makefile.in (dist):
19130 Explicitly check for symlinks, and copy them.
19131
191321996-12-19 Richard Stallman <rms@gnu.org>
19133
19134 * src/files.c:
19135 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
19136
191371996-12-18 Paul Eggert <eggert@gnu.org>
19138
19139 * src/bison.s1 (yyparse):
19140 If __GNUC__ and YYPARSE_PARAM are both defined,
19141 declare yyparse to have a void * argument.
19142
191431996-12-18 Paul Eggert <eggert@gnu.org>
19144
19145 * bison.simple (yyparse):
19146 If __GNUC__ and YYPARSE_PARAM are both defined,
19147 declare yyparse to have a void * argument.
19148
191491996-12-17 Richard Stallman <rms@gnu.org>
19150
19151 * src/reduce.c (nbits): Add some casts.
19152
191531996-08-12 Richard Stallman <rms@gnu.org>
19154
19155 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
19156
191571996-08-12 Richard Stallman <rms@gnu.org>
19158
19159 * bison.simple: Test _MSDOS as well as _MSDOS_.
19160
191611996-07-31 Richard Stallman <rms@gnu.org>
19162
19163 * src/bison.s1:
19164 [__sun && __i386]: Include alloca.h.
19165
191661996-07-31 Richard Stallman <rms@gnu.org>
19167
19168 * bison.simple:
19169 [__sun && __i386]: Include alloca.h.
19170
191711996-07-30 Richard Stallman <rms@gnu.org>
19172
19173 * src/bison.s1: Comment change.
19174
19175 * src/bison.s1: Test _MSDOS_, not MSDOS.
19176
191771996-07-30 Richard Stallman <rms@gnu.org>
19178
19179 * bison.simple: Comment change.
19180
19181 * bison.simple: Test _MSDOS_, not MSDOS.
19182
191831996-06-01 Richard Stallman <rms@gnu.org>
19184
19185 * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c:
19186 Insert `_' macro around many string constants.
19187
19188 * src/main.c:
19189 Insert `_' macro around many string constants.
19190
19191 (main): Call setlocale, bindtextdomain and textdomain.
19192
19193 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
19194 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
19195 [ENABLE_NLS]: Include libintl.h.
19196 [ENABLE_NLS] (gettext): Define.
19197 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
19198 (N_, PACKAGE, LOCALEDIR): New macros.
19199
192001996-06-01 Richard Stallman <rms@gnu.org>
19201
19202 * POTFILES.in: New file.
19203
19204 * Makefile.in (allocate.o):
19205 Define target explicitly.
19206
19207 * Makefile.in (CFLAGS): Set to @CFLAGS@.
19208 (LDFLAGS): Set to @LDFLAGS@.
19209 (configure): Run autoconf only if preceding `cd' succeeds.
19210 (bison.s1): Redirect output to temporary file then move the
19211 temporary to the target, rather than redirecting directly to bison.s1.
19212 (clean): Remove config.status and config.log.
19213 (distclean): Don't remove config.status here.
19214
192151996-05-12 Richard Stallman <rms@gnu.org>
19216
19217 * src/bison.s1:
19218 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
19219
192201996-05-12 Richard Stallman <rms@gnu.org>
19221
19222 * bison.simple:
19223 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
19224
192251996-05-11 Richard Stallman <rms@gnu.org>
19226
19227 * src/bison.s1 (__yy_memcpy):
19228 Really reorder the args, as was supposedly done on Feb 14 1995.
19229 (yyparse): Calls changed accordingly.
19230
192311996-05-11 Richard Stallman <rms@gnu.org>
19232
19233 * Makefile.in (dist): Don't use $(srcdir).
19234
19235 * bison.simple (__yy_memcpy):
19236 Really reorder the args, as was supposedly done on Feb 14 1995.
19237 (yyparse): Calls changed accordingly.
19238
192391996-01-27 Richard Stallman <rms@gnu.org>
19240
19241 * src/output.c (output_rule_data):
19242 Test YYERROR_VERBOSE in the conditional
19243 around the definition of ttyname.
19244
192451995-12-29 Richard Stallman <rms@gnu.org>
19246
19247 * src/bison.s1:
19248 Fix line numbers in #line commands.
19249
192501995-12-29 Richard Stallman <rms@gnu.org>
19251
19252 * bison.simple:
19253 Fix line numbers in #line commands.
19254
192551995-12-27 Richard Stallman <rms@gnu.org>
19256
19257 * src/bison.s1 (YYPARSE_PARAM_DECL):
19258 In C++, make it always null.
19259 (YYPARSE_PARAM_ARG): New macro.
19260 (yyparse): Use YYPARSE_PARAM_ARG.
19261
192621995-12-27 Richard Stallman <rms@gnu.org>
19263
19264 * bison.simple (YYPARSE_PARAM_DECL):
19265 In C++, make it always null.
19266 (YYPARSE_PARAM_ARG): New macro.
19267 (yyparse): Use YYPARSE_PARAM_ARG.
19268
192691995-11-29 Richard Stallman <rms@gnu.org>
19270
19271 * doc/bison.texinfo:
19272 Describe literal string tokens, %raw, %no_lines, %token_table.
19273
192741995-11-29 Daniel Hagerty <hag@gnu.org>
19275
19276 * doc/bison.texinfo: Fixed update date
19277
192781995-10-16 Richard Stallman <rms@gnu.org>
19279
19280 * src/version.c: Version 1.25.
19281
192821995-10-16 Richard Stallman <rms@gnu.org>
19283
19284 * NEWS: *** empty log message ***
19285
192861995-10-16 Richard Stallman <rms@gnu.org>
19287
19288 * doc/bison.1, doc/bison.rnh:
19289 Add new options.
19290
192911995-10-15 Richard Stallman <rms@gnu.org>
19292
19293 * src/vmsgetargs.c, src/getargs.c:
19294 Added -n, -k, and -raw switches.
19295 (noparserflag, toknumflag, rawtoknumflag): New variables.
19296
19297 * src/symtab.h (SALIAS):
19298 New #define for adding aliases to %token.
19299 (struct bucket): Added `alias' field.
19300
19301 * src/reduce.c (reduce_grammar):
19302 Revise error message.
19303 (print_notices): Remove final `.' from error message.
19304
19305 * src/reader.c (reader_output_yylsp):
19306 New function.
19307 (readgram): Use `#if 0' around code that accepted %command
19308 inside grammar rules: The documentation doesn't allow it,
19309 and it will fail since the %command processors scan for the next %.
19310 (parse_token_decl): Extended the %token
19311 declaration to allow a multi-character symbol as an alias.
19312 (parse_thong_decl): New function.
19313 (read_declarations): Added %thong declarations.
19314 (read_declarations): Handle NOOP to deal with allowing
19315 % declarations as another means to specify the flags.
19316 (readgram): Allow %prec prior to semantics embedded in a rule.
19317 (skip_to_char, read_declarations, copy_definition)
19318 (parse_token_decl, parse_start_decl, parse_type_decl)
19319 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
19320 (get_type_name, copy_guard, copy_action, readgram)
19321 (get_type, packsymbols): Revised most error messages.
19322 Changed `fatal' to `warnxxx' to avoid aborting for error.
19323 Revised and use multiple warnxxx functions to avoid using VARARGS1.
19324 (read_declarations): Improve the error message for
19325 an invalid character. Do not abort.
19326 (read_declarations, copy_guard, copy_action): Use
19327 printable_version to avoid unprintable characters in printed output.
19328 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
19329 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
19330 Allow the type of a non-terminal can be given
19331 more than once, as long as all specifications give the same type.
19332
19333 * src/output.c:
19334 (output_headers, output_trailers, output, output_gram)
19335 (output_rule_data): Implement noparserflag variable.
19336 Implement toknumflag variable.
19337 (output): Call reader_output_yylsp to output LTYPESTR.
19338
19339 * src/main.c (main):
19340 If reader sees an error, don't process the grammar.
19341 (fatals): Updated to not use VARARGS1.
19342 (printable_version, int_to_string, warn, warni, warns, warnss)
19343 (warnsss): New error reporting functions. Avoid abort for error.
19344
19345 * src/lex.h:
19346 Added THONG and NOOP for alias processing.
19347 Added SETOPT for the new code that allows setting options with %flags.
19348
19349 * src/lex.c:
19350 Include getopt.h. Add some extern decls.
19351 (safegetc): New function to deal with EOF gracefully.
19352 (literalchar); new function to deal with reading \ escapes.
19353 (lex): Use literalchar.
19354 (lex): Implemented "..." tokens.
19355 (literalchar, lex, parse_percent_token): Made tokenbuffer
19356 always contain the token. This includes growing the token
19357 buffer while reading an integer.
19358 (parse_percent_token): Replaced if-else statement with percent_table.
19359 (parse_percent_token): Added % declarations as another
19360 way to specify the flags -n, -l, and -r. Also added hooks for
19361 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
19362 major changes to files.c.
19363 (lex) Retain in the incoming stream a character following
19364 an incorrect '/'.
19365 (skip_white_space, lex): Revised most error messages
19366 and changed fatal to warn to avoid aborting.
19367 (percent_table): Added %thong declarations.
19368
19369 * src/gram.h: Comment changes.
19370
19371 * src/files.c (openfiles, open_extra_files, done):
19372 Add faction flag
19373 and actfile file. Handle noparserflag. Both for -n switch.
19374
19375 * src/conflicts.c (resolve_sr_conflict):
19376 Remove use of alloca.
19377
193781995-06-01 Jim Meyering <meyering@gnu.org>
19379
19380 * doc/bison.texinfo: *** empty log message ***
19381
193821995-05-06 Richard Stallman <rms@gnu.org>
19383
19384 * src/bison.s1: Comment change.
19385
193861995-05-06 Richard Stallman <rms@gnu.org>
19387
19388 * bison.simple: Comment change.
19389
193901995-05-03 Richard Stallman <rms@gnu.org>
19391
19392 * src/version.c: Version now 1.24.
19393
19394 * src/bison.s1: Change distribution terms.
19395
19396 * src/version.c: Version now 1.23.
19397
193981995-05-03 Richard Stallman <rms@gnu.org>
19399
19400 * doc/bison.texinfo:
19401 Rewrite "Conditions for Using Bison".
19402 Update version to 1.24.
19403
194041995-05-03 Richard Stallman <rms@gnu.org>
19405
19406 * bison.simple: Change distribution terms.
19407
194081995-02-23 Richard Stallman <rms@gnu.org>
19409
19410 * src/files.c: Test __VMS_POSIX as well as VMS.
19411
194121995-02-14 Jim Meyering <meyering@gnu.org>
19413
19414 * src/bison.s1 (__yy_memcpy):
19415 Renamed from __yy_bcopy to avoid
19416 confusion. Reverse FROM and TO arguments to be consistent with
19417 those of memcpy.
19418
194191995-02-14 Jim Meyering <meyering@gnu.org>
19420
19421 * bison.simple (__yy_memcpy):
19422 Renamed from __yy_bcopy to avoid
19423 confusion. Reverse FROM and TO arguments to be consistent with
19424 those of memcpy.
19425
194261994-11-10 David J. MacKenzie <djm@gnu.org>
19427
19428 * NEWS: reformat
19429
19430 * NEWS: New file.
19431
19432 * Makefile.in (DISTFILES): Include NEWS.
19433
19434 * Makefile.in (DISTFILES):
19435 Include install-sh, not install.sh.
19436
19437 * configure.in: Update to Autoconf v2 macro names.
19438
194391994-10-05 David J. MacKenzie <djm@gnu.org>
19440
19441 * Makefile.in: fix typo
19442
19443 * Makefile.in (prefix, exec_prefix):
19444 Let configure set them.
19445
194461994-09-28 David J. MacKenzie <djm@gnu.org>
19447
19448 * Makefile.in: Set datadir to $(prefix)/share.
19449
194501994-09-15 Richard Stallman <rms@gnu.org>
19451
19452 * src/bison.s1:
19453 Update copyright notice and GPL version.
19454
194551994-09-15 Richard Stallman <rms@gnu.org>
19456
19457 * bison.simple:
19458 Update copyright notice and GPL version.
19459
194601994-07-12 Richard Stallman <rms@gnu.org>
19461
19462 * src/reduce.c, src/reader.c:
19463 entered into RCS
19464
194651994-05-05 David J. MacKenzie <djm@gnu.org>
19466
19467 * Makefile.in: entered into RCS
19468
194691994-03-26 Richard Stallman <rms@gnu.org>
19470
19471 * src/bison.s1: entered into RCS
19472
194731994-03-26 Richard Stallman <rms@gnu.org>
19474
19475 * bison.simple: entered into RCS
19476
194771994-03-25 Richard Stallman <rms@gnu.org>
19478
19479 * src/main.c: entered into RCS
19480
194811994-03-24 Richard Stallman <rms@gnu.org>
19482
19483 * src/conflicts.c: entered into RCS
19484
194851994-01-02 Richard Stallman <rms@gnu.org>
19486
19487 * Makefile.in: *** empty log message ***
19488
194891993-11-21 Richard Stallman <rms@gnu.org>
19490
19491 * src/bison.s1: *** empty log message ***
19492
194931993-11-21 Richard Stallman <rms@gnu.org>
19494
19495 * doc/bison.texinfo: entered into RCS
19496
19497 * doc/bison.texinfo: *** empty log message ***
19498
194991993-11-21 Richard Stallman <rms@gnu.org>
19500
19501 * bison.simple: *** empty log message ***
19502
195031993-10-25 David J. MacKenzie <djm@gnu.org>
19504
19505 * doc/bison.texinfo: *** empty log message ***
19506
195071993-10-19 Richard Stallman <rms@gnu.org>
19508
19509 * src/bison.s1: *** empty log message ***
19510
195111993-10-19 Richard Stallman <rms@gnu.org>
19512
19513 * bison.simple: *** empty log message ***
19514
195151993-10-14 Richard Stallman <rms@gnu.org>
19516
19517 * src/bison.s1: *** empty log message ***
19518
195191993-10-14 Richard Stallman <rms@gnu.org>
19520
19521 * bison.simple: *** empty log message ***
19522
195231993-09-14 David J. MacKenzie <djm@gnu.org>
19524
19525 * doc/bison.texinfo: *** empty log message ***
19526
195271993-09-13 Noah Friedman <friedman@gnu.org>
19528
19529 * Makefile.in: *** empty log message ***
19530
195311993-09-10 Richard Stallman <rms@gnu.org>
19532
19533 * src/conflicts.c: *** empty log message ***
19534
19535 * src/system.h: entered into RCS
19536
195371993-09-10 Richard Stallman <rms@gnu.org>
19538
19539 * doc/bison.1: entered into RCS
19540
195411993-09-06 Noah Friedman <friedman@gnu.org>
19542
19543 * src/version.c: entered into RCS
19544
195451993-09-06 Noah Friedman <friedman@gnu.org>
19546
19547 * Makefile.in: *** empty log message ***
19548
195491993-07-30 David J. MacKenzie <djm@gnu.org>
19550
19551 * Makefile.in: *** empty log message ***
19552
195531993-07-24 Richard Stallman <rms@gnu.org>
19554
19555 * src/bison.s1: *** empty log message ***
19556
195571993-07-24 Richard Stallman <rms@gnu.org>
19558
19559 * bison.simple: *** empty log message ***
19560
195611993-07-08 David J. MacKenzie <djm@gnu.org>
19562
19563 * Makefile.in: *** empty log message ***
19564
195651993-07-04 Richard Stallman <rms@gnu.org>
19566
19567 * src/bison.s1: *** empty log message ***
19568
195691993-07-04 Richard Stallman <rms@gnu.org>
19570
19571 * bison.simple: *** empty log message ***
19572
195731993-06-26 David J. MacKenzie <djm@gnu.org>
19574
19575 * src/getargs.c: entered into RCS
19576
195771993-06-26 David J. MacKenzie <djm@gnu.org>
19578
19579 * doc/bison.texinfo: *** empty log message ***
19580
19581 * doc/bison.1: New file.
19582
195831993-06-25 Richard Stallman <rms@gnu.org>
19584
19585 * src/getargs.c: New file.
19586
195871993-06-16 Richard Stallman <rms@gnu.org>
19588
19589 * src/bison.s1: *** empty log message ***
19590
195911993-06-16 Richard Stallman <rms@gnu.org>
19592
19593 * bison.simple: *** empty log message ***
19594
195951993-06-03 Richard Stallman <rms@gnu.org>
19596
19597 * src/bison.s1: New file.
19598
195991993-06-03 Richard Stallman <rms@gnu.org>
19600
19601 * doc/bison.texinfo: *** empty log message ***
19602
196031993-06-03 Richard Stallman <rms@gnu.org>
19604
19605 * bison.simple: New file.
19606
196071993-05-19 Richard Stallman <rms@gnu.org>
19608
19609 * doc/bison.texinfo: New file.
19610
196111993-05-07 Noah Friedman <friedman@gnu.org>
19612
19613 * Makefile.in: *** empty log message ***
19614
196151993-04-28 Noah Friedman <friedman@gnu.org>
19616
19617 * src/reader.c: *** empty log message ***
19618
196191993-04-23 Noah Friedman <friedman@gnu.org>
19620
19621 * src/alloc.h: entered into RCS
19622
196231993-04-20 David J. MacKenzie <djm@gnu.org>
19624
19625 * src/version.c: *** empty log message ***
19626
19627 * src/files.c, src/allocate.c:
19628 entered into RCS
19629
19630 * src/reader.c: *** empty log message ***
19631
19632 * src/lex.c: entered into RCS
19633
19634 * src/conflicts.c: New file.
19635
19636 * src/symtab.c: entered into RCS
19637
19638 * src/alloc.h: New file.
19639
19640 * src/LR0.c: entered into RCS
19641
196421993-04-18 Noah Friedman <friedman@gnu.org>
19643
19644 * src/reader.c: New file.
19645
19646 * src/version.c: *** empty log message ***
19647
196481993-04-18 Noah Friedman <friedman@gnu.org>
19649
19650 * Makefile.in: *** empty log message ***
19651
196521993-04-17 Noah Friedman <friedman@gnu.org>
19653
19654 * Makefile.in: *** empty log message ***
19655
196561993-04-15 Richard Stallman <rms@gnu.org>
19657
19658 * src/main.c, src/files.c:
19659 New file.
19660
196611993-04-15 Noah Friedman <friedman@gnu.org>
19662
19663 * configure.in: entered into RCS
19664
19665 * configure.in: *** empty log message ***
19666
19667 * configure.in: New file.
19668
196691993-04-14 Richard Stallman <rms@gnu.org>
19670
19671 * Makefile.in: New file.
19672
196731993-04-13 Richard Stallman <rms@gnu.org>
19674
19675 * src/version.c: New file.
19676
196771993-03-25 Richard Stallman <rms@gnu.org>
19678
19679 * src/output.c: entered into RCS
19680
196811992-09-25 Richard Stallman <rms@gnu.org>
19682
19683 * configure.bat: entered into RCS
19684
196851992-06-22 Richard Stallman <rms@gnu.org>
19686
19687 * src/vmsgetargs.c: entered into RCS
19688
196891992-06-22 Richard Stallman <rms@gnu.org>
19690
19691 * doc/bison.rnh: entered into RCS
19692
196931992-04-20 David J. MacKenzie <djm@gnu.org>
19694
19695 * README: entered into RCS
19696
196971992-01-22 Richard Stallman <rms@gnu.org>
19698
19699 * src/machine.h: entered into RCS
19700
197011991-12-21 Richard Stallman <rms@gnu.org>
19702
19703 * src/lalr.c, src/closure.c:
19704 entered into RCS
19705
197061991-12-20 Richard Stallman <rms@gnu.org>
19707
19708 * src/state.h: entered into RCS
19709
197101991-12-18 Richard Stallman <rms@gnu.org>
19711
19712 * src/print.c, src/nullable.c, src/derives.c:
19713 entered into RCS
19714
197151991-11-03 David J. MacKenzie <djm@gnu.org>
19716
19717 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
19718 entered into RCS
19719
197201988-09-09 Richard Stallman <rms@gnu.org>
19721
19722 * src/bison.hairy: entered into RCS
19723
197241987-12-16 Richard Stallman <rms@gnu.org>
19725
19726 * REFERENCES: entered into RCS
19727
19728
19729 -----
19730
19731 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
19732 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
19733 Free Software Foundation, Inc.
19734
19735 Copying and distribution of this file, with or without
19736 modification, are permitted provided the copyright notice and this
19737 notice are preserved.
19738
19739$Id$