]> git.saurik.com Git - bison.git/blob - ChangeLog
doc: token.prefix
[bison.git] / ChangeLog
1 2009-05-11 Akim Demaille <demaille@gostai.com>
2
3 doc: token.prefix
4 * doc/bison.simple (Decl Summary): Document token.prefix.
5 (Calc++ Parser): Various fixes.
6 Formatting changes.
7 Use token.prefix.
8 Introduce a macro TOKEN to shorten the code and make it more
9 readable.
10 (Calc++ Scanner): Adjust.
11 * NEWS (Variable token.prefix): New.
12
13 2009-05-04 Akim Demaille <demaille@gostai.com>
14
15 bison: catch bad symbol names.
16 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
17 * tests/input.at: Adjust.
18
19 2009-05-04 Akim Demaille <demaille@gostai.com>
20
21 identifiers: dashes are letters.
22 Dashes can now start identifiers (symbols and directives).
23
24 * src/scan-gram.l ({letter}): Add dash.
25 ({id}): Remove it.
26 * tests/input.at (Symbols): Adjust.
27 Remove stray comment.
28 * tests/regression.at (Invalid inputs): Adjust error message.
29 * doc/bison.texinfo (Symbols): Update.
30
31 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
32
33 Declare %code to be a permanent feature.
34 * NEWS (2.4.2): Here.
35 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
36 experimental.
37 (Decl Summary): Likewise.
38
39 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
40
41 Convert underscores to dashes in some %define variable names.
42 For now, just api.push-pull and lr.keep-unreachable-states.
43 Maintain old names for backward compatibility.
44 * NEWS (2.5): Document.
45 * data/c.m4 (b4_identification): Update comment.
46 * data/yacc.c: Update access.
47 * doc/bison.texinfo: Update.
48 * etc/bench.pl.in (bench_push_parser): Update use.
49 * src/files.c (tr): Move to...
50 * src/getargs.c, src/getargs.h (tr): ... here because I can't
51 think of a better place to expose it. My logic is that, for all
52 uses of tr so far, command-line arguments can be involved, and
53 getargs.h is already included.
54 * src/main.c (main): Update access.
55 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
56 variable names to new variable names before assigning value.
57 * src/reader.c (reader): Update setting default.
58 * tests/calc.at: Update uses.
59 * tests/conflicts.at (Unreachable States After Conflict
60 Resolution): Update use.
61 * tests/input.at (%define enum variables): Update use.
62 (%define backward compatibility): New test group.
63 * tests/push.at: Update uses.
64 * tests/reduce.at: Update uses.
65 * tests/torture.at: Update uses.
66
67 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
68
69 Set all front-end %define defaults in one place.
70 * src/main.c (main): Move lr.keep_unreachable_states default...
71 * src/reader.c (reader): ... to here.
72
73 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
74
75 Rename lr.default_reductions to lr.default-reductions.
76 * NEWS (2.5): Here.
77 * doc/bison.texinfo: Here.
78 * src/lalr.c (initialize_LA): Here.
79 * src/print.c (print_reductions): Here.
80 * src/reader.c (reader): Here.
81 * src/tables.c (action_row): Here.
82 * tests/input.at (%define enum variables): Here.
83 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
84
85 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
86
87 Pacify ./configure --enable-gcc-warnings.
88 * tests/input.at (Symbols): Prototype yyerror and yylex.
89
90 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
91
92 Document how `%define "var" "value"' is not M4-friendly.
93 * src/parse-gram.y (variable): In comments here.
94
95 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
96
97 Clean up recent patches a little.
98 Reported by Akim Demaille.
99 * doc/bison.texinfo (Understanding): Fix typos.
100 * src/print.c (print_reductions): Don't use negated variable.
101
102 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
103
104 List accepted values for a %define enum variable with an invalid value.
105 Suggested by Akim Demaille at
106 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
107 * data/bison.m4 (_b4_percent_define_check_values): Implement.
108 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
109 * tests/input.at (%define lr.default_reductions invalid values): Merge
110 into...
111 (%define enum variables): ... here, and update output.
112
113 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
114
115 Rename "default rule" to "default reduction".
116 This includes changing variable names in code, changing
117 comments, and renaming %define lr.default_rules to %define
118 lr.default_reductions.
119 * NEWS (2.5): Update IELR documentation.
120 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
121 documentation.
122 * data/glr.c, data/lalr1.java: Sync copyright dates.
123 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
124 and lr.type documentation. Make some other wording
125 improvements.
126 (Glossary): Adjust cross-references and Default Reduction
127 definition.
128 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
129 Remove a confusing comment pointed out by Akim Demaille.
130 (initialize_LA): Adjust code.
131 * src/print-xml.c (print_reductions): Adjust code.
132 * src/print.c (print_reductions): Adjust code.
133 * src/reader.c (reader): Adjust code.
134 * src/tables.c (action_row): Adjust code.
135 (token_actions): Adjust code.
136 * src/tables.h: Adjust YYDEFACT documentation.
137 * tests/input.at (%define lr.default_rules invalid values):
138 Rename test group to...
139 (%define lr.default_reductions invalid values): ... this, and
140 update grammar file and expected output.
141 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
142 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
143
144 2009-04-21 Akim Demaille <demaille@gostai.com>
145
146 tests: check the use of dashes and periods in symbols.
147 * tests/input.at (Symbol): New test group.
148
149 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
150
151 Document %define lr.type and lr.default_rules.
152 * NEWS (2.5): Add an entry.
153 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
154 besides just LALR(1) and GLR(1).
155 * doc/bison.texinfo (Introduction): Likewise.
156 (Language and Grammar): Bison is no longer limited to LALR(1)
157 restrictions.
158 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
159 when trying to distinguish from GLR. Talk about LR(1) grammars
160 rather than LALR(1) grammars.
161 (Decl Summary): In %define api.push_pull entry, say it applies
162 to deterministic parsers in C rather than LALR(1) parsers in C.
163 Add lr.default_rules entry.
164 Add lr.type entry.
165 (Mystery Conflicts): Bison is no longer limited to LALR(1)
166 restrictions.
167 (Generalized LR Parsing): Same changes as for the previous GLR
168 section.
169 (Memory Management): Say deterministic rather than LALR(1).
170 (Understanding): Correct some bison output.
171 Index discussion of "accepting state".
172 Say deterministic rather than LALR(1).
173 (Bison Options): In --yacc entry, say deterministic rather than
174 LALR(1).
175 In --report, --graph, and --xml entries, just don't mention
176 LALR(1).
177 (C++ Parsers): Say deterministic rather than LALR(1).
178 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
179 (Glossary): Add Accepting State, Consistent State, Default Rule,
180 and IELR(1) definitions.
181 In Generalized LR (GLR) definition, make same changes as in
182 previous GLR sections.
183 In LALR(1) definition, say Bison uses LALR(1) by default rather
184 than implying Bison is limited to LALR(1).
185 (LocalWords): Add IELR.
186
187 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
188
189 Finish implementing %define lr.type.
190 Its value can be "LALR", "IELR", or "canonical LR".
191 * lib/timevar.def (TV_IELR_PHASE1): New var.
192 (TV_IELR_PHASE2): New var.
193 (TV_IELR_PHASE3): New var.
194 (TV_IELR_PHASE4): New var.
195 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
196 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
197 Sbitset.h, ielr.h, and ielr.c.
198 * src/getargs.h, src/getargs.c (enum trace, trace_args,
199 trace_types): Add trace_ielr.
200 * src/lalr.h, src/lalr.c (ngotos): Export it.
201 (F): Rename to...
202 (goto_follows): ... this, update all uses, and export it.
203 (set_goto_map): Export it.
204 (map_goto): Export it.
205 (compute_lookahead_tokens): Don't free goto_follows yet. Now
206 handled in ielr.
207 (initialize_LA): Export it. Move lookback allocation to...
208 (lalr): ... here because, for canonical LR, initialize_LA must
209 be invoked but lookback and much of the rest of LALR isn't
210 needed.
211 * main.c (main): Instead of lalr, invoke ielr, which invokes
212 lalr.
213 * src/reader.c (reader): Default lr.type to "LALR".
214 Default lr.default_rules to "accepting" if lr.type is "canonical
215 LR". Leave the default as "all" otherwise.
216 Check for a valid lr.type value.
217 * src/state.h, src/state.c (struct state_list): Add state_list
218 member.
219 (state_new): Initialize state_list member to NULL.
220 (state_new_isocore): New function, exported.
221 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
222 exercises all values of lr.type.
223 (GNU AWK Grammar): Rename test group to...
224 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
225 AT_TEST_EXISTING_GRAMMAR.
226 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
227 (GNU pic Grammar): Rename test group to...
228 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
229 AT_TEST_EXISTING_GRAMMAR.
230 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
231 all values of lr.type.
232 (Single State Split): New test groups using AT_TEST_LR_TYPE.
233 (Lane Split): Likewise.
234 (Complex Lane Split): Likewise.
235 (Split During Added Lookahead Propagation): Likewise.
236
237 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
238
239 Add new files for IELR and canonical LR implementation.
240 * src/AnnotationList.c: New.
241 * src/AnnotationList.h: New.
242 * src/InadequacyList.c: New.
243 * src/InadequacyList.h: New.
244 * src/Sbitset.c: New.
245 * src/Sbitset.h: New.
246 * src/ielr.c: New.
247 * src/ielr.h: New.
248
249 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
250
251 Implement %define lr.default_rules.
252 Its value describes the states that are permitted to contain
253 default rules: "all", "consistent", or "accepting".
254 * src/reader.c (reader): Default lr.default_rules to "all".
255 Check for a valid lr.default_rules value.
256 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
257 is "accepting", then only mark the accepting state as
258 consistent.
259 (initialize_LA): Tell state_lookahead_tokens_count whether
260 lr.default_rules is "accepting".
261 * src/tables.c (action_row): If lr.default_rules is not "all",
262 then disable default rules in inconsistent states.
263 * src/print.c (print_reductions): Use this opportunity to
264 perform some assertions about whether lr.default_rules was
265 obeyed correctly.
266 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
267 helps with checking the parser tables for a grammar.
268 * tests/input.at (%define lr.default_rules invalid values): New
269 test group.
270 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
271 AT_TEST_TABLES_AND_PARSE.
272 (`no %define lr.default_rules'): New test group generated by
273 AT_TEST_LR_DEFAULT_RULES.
274 (`%define lr.default_rules "all"'): Likewise.
275 (`%define lr.default_rules "consistent"'): Likewise.
276 (`%define lr.default_rules "accepting"'): Likewise.
277
278 2009-04-20 Akim Demaille <demaille@gostai.com>
279
280 Formatting change.
281
282 2009-04-20 Akim Demaille <demaille@gostai.com>
283
284 bison: factoring.
285 * src/output.c (token_definitions_output): Use symbol_id_get
286 instead of duplicating its logic.
287 * TODO (YYERRCODE): Extend.
288
289 2009-04-20 Akim Demaille <demaille@gostai.com>
290
291 variables: prefer error-verbose to error_verbose.
292 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
293 instead of error_verbose.
294 * src/scan-gram.l (%error-verbose): Map to the error-verbose
295 variable.
296 * doc/bison.texinfo: Promote %define error-verbose instead of
297 %error-verbose.
298 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
299
300 2009-04-15 Akim Demaille <demaille@gostai.com>
301
302 variables: accept dashes.
303 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
304 underscores.
305 * src/scan-gram.l ({id}): Also accept dashes after the initial
306 letter.
307 ({directive}): Use {id}.
308 * src/parse-gram.y: Comment and formatting changes.
309 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
310 symbols.
311 * src/complain.h, src/complain.c (yacc_at): New.
312 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
313 symbol names.
314 * src/output.c (token_definitions_output): Do not #define token
315 names with dashes.
316
317 2009-04-20 Akim Demaille <demaille@gostai.com>
318
319 Consistently refer to Yacc, not YACC.
320 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
321
322 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
323
324 Pacify make maintainer-check-posix.
325 * tests/input.at (%define, --define): Move bison command-line
326 options before grammar file name.
327
328 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
329
330 Document semicolon warnings.
331 * NEWS (2.5): Here.
332
333 2009-04-14 Akim Demaille <demaille@gostai.com>
334
335 variables: use `parse.assert' instead of `assert'.
336 * TODO (assert): Remove.
337 * data/bison.m4 (b4_assert_if): Replace with...
338 (b4_parse_assert_if): this.
339 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
340 * doc/bison.texinfo (Decl Summary): Document parse.assert.
341
342 2009-04-14 Akim Demaille <demaille@gostai.com>
343
344 variables: use `parse.trace' instead of `debug'.
345 * src/getargs.c (getargs): Map -t to %define trace.parse.
346 * src/scan-gram.l (%debug): Map to %define trace.parse.
347 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
348 names to `_' in macro names.
349 (b4_debug_if): Replace with...
350 (b4_parse_trace_if): this.
351 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
352 * data/yacc.c: Adjust.
353 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
354 Use @code to label the variable list.
355 Document the variable parse.trace.
356 (Tracing): Promote the parse.trace variable.
357 * TODO: %printer is not documented.
358
359 2009-04-14 Akim Demaille <demaille@gostai.com>
360
361 doc: minor fixes.
362 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
363 (Table of Symbols): Remove duplicate entry for %debug.
364
365 2009-04-10 Eric Blake <ebb9@byu.net>
366
367 submodules: update to latest
368 * submodules/autoconf: Use latest upstream Autoconf.
369
370 2009-04-06 Eric Blake <ebb9@byu.net>
371
372 Work around autoconf 2.63b bug in testsuite.
373 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
374 autoconf bug related to # in test.
375
376 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
377
378 * NEWS (2.5): New section. Describe new -D/--define feature.
379
380 2009-04-06 Akim Demaille <demaille@gostai.com>
381
382 Regen.
383 * src/parse-gram.h, src/parse-gram.c: Regen.
384
385 2009-04-06 Akim Demaille <demaille@gostai.com>
386
387 rename muscle_tab.* as muscle-tab.* for consistency.
388 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
389 * src/muscle-tab.h, src/muscle-tab.c: these.
390 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
391 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
392
393 2009-04-06 Akim Demaille <demaille@gostai.com>
394
395 Makefile: introduce $(BISON).
396 * src/local.mk (BISON): New.
397 (YACC): Use it.
398
399 2009-04-06 Akim Demaille <demaille@gostai.com>
400
401 parser: handle %locations as %define locations.
402 * src/getargs.h, src/getargs.c (locations_flag): Remove.
403 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
404 to set "locations" to true.
405 * src/output.c (prepare): Don't output "locations".
406 * src/scan-gram.l (%locations): Handle it as a %<flag>.
407 * src/parse-gram.y: It's no longer a token.
408 Don't handle it.
409 * data/bison.m4 (b4_locations_if): Define it with
410 b4_percent_define_if_define.
411 * data/c.m4, data/glr.cc: Adjust.
412
413 2009-04-06 Akim Demaille <demaille@gostai.com>
414
415 Regen.
416 * src/parse-gram.c: Regen.
417
418 2009-04-06 Akim Demaille <demaille@gostai.com>
419
420 muscle: factor the handling of obsolete of obsolete directives.
421 Suggested by Joel E. Denny.
422
423 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
424 New, extracted from...
425 * src/parse-gram.y (prologue_declaration: pure-parser): here.
426 Remove it.
427 (prologue_declaration: "%<flag>"): Use
428 muscle_percent_define_ensure.
429 (%error-verbose, %pure-parser): No longer tokens.
430 * src/scan-gram.l (pure-parser): Return as a %<flag>.
431
432 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
433
434 Fix options documentation.
435 * build-aux/cross-options.pl: As in --help output, write optional
436 arguments as [=ARG] not =[ARG].
437 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
438
439 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
440
441 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
442 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
443 requirements for a correct m4 are stricter.
444 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
445 * configure.ac: Update to use AC_PROG_GNU_M4.
446 Reported by Eric Blake.
447
448 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
449
450 Help with updating web manual.
451 * HACKING: Incorporate instructions from gnulib/doc/README.
452 * bootstrap.conf (gnulib_modules): Add gendocs.
453
454 2009-04-03 Akim Demaille <demaille@gostai.com>
455
456 Regen.
457 * src/parse-gram.h, src/parse-gram.c: Regen.
458
459 2009-04-03 Akim Demaille <demaille@gostai.com>
460
461 Factor %FLAG at scan level.
462 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
463 definitions and associated rules, replaced by....
464 (PERCENT_FLAG): this new token type, and rule.
465 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
466 Use it for %debug and %error-verbose.
467
468 2009-04-03 Akim Demaille <demaille@gostai.com>
469
470 Regen.
471 * src/parse-gram.h, src/parse-gram.c: Regen.
472
473 2009-04-03 Akim Demaille <demaille@gostai.com>
474
475 Treat %debug as %define debug.
476 * data/bison.m4 (b4_debug_if): New.
477 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
478 * data/lalr1.java: Use it instead of b4_debug_flag.
479 * src/getargs.h, src/getargs.c (debug_flag): Remove.
480 * src/output.c (prepare): Don't output it.
481 * src/parse-gram.y: Treat %debug as %define debug.
482
483 2009-04-03 Akim Demaille <demaille@gostai.com>
484
485 Treat %error-verbose as %define error_verbose.
486 This allows to pass -Derror_verbose on the command line. Better
487 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
488 ERROR_VERBOSE being defined as false or true.
489 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
490 on b4_percent_define_ifdef, for does not check the defined value,
491 but only whether the symbol is defined, rely on
492 b4_percent_define_flag_if, so that a value of "false" is processed
493 as a false.
494 If not defined, define the flag to "false".
495 (b4_error_verbose_if): New.
496 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
497 b4_error_verbose_flag.
498 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
499 * src/output.c (prepare): Don't output it.
500 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
501
502 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
503
504 Fix strange %define locations for default values.
505 Reported by Akim Demaille at
506 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
507 and discussed again starting at
508 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
509 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
510 because location information is bogus.
511 Use angle brackets to delimit fake file name because square brackets
512 look like underexpanded m4. Choose a better fake file name.
513 Use negative line numbers.
514 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
515 * src/location.c (location_print): If line for a boundary is negative,
516 only print that boundary's file name.
517 * src/location.h: Document that.
518 * tests/skeletons.at (%define Boolean variables: invalid skeleton
519 defaults): Update output.
520
521 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
522
523 Pacify ./configure --enable-gcc-warnings.
524 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
525 in lib won't compile with it.
526 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
527
528 2009-03-31 Akim Demaille <demaille@gostai.com>
529
530 bootstrap: --help to stdout.
531 * bootstrap (usage): Don't send --help to stderr.
532 Use a here doc instead of a long string.
533
534 2009-03-31 Akim Demaille <demaille@gostai.com>
535
536 bootstrap: README-hacking no longer exists
537 * bootstrap (checkout_only_file): Set to HACKING.
538
539 2009-03-26 Akim Demaille <demaille@gostai.com>
540
541 doc: merge HACKING and README-hacking.
542 Two files is confusing.
543 Reported by Alexandre Duret-Lutz.
544
545 * README-hacking: Merge into...
546 * HACKING (Working from the repository): here.
547
548 2009-03-26 Akim Demaille <demaille@gostai.com>
549
550 doc: update README-hacking.
551 * README-hacking: We now use git and git submodules.
552 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
553
554 2009-03-26 Akim Demaille <demaille@gostai.com>
555
556 lalr1.cc: avoid GCC 4.3 warnings.
557 GCC 4.3 now warns about "a || b && c" and asks for explicit
558 parentheses.
559 Reported by Alexandre Duret-Lutz.
560 * data/location.cc: Update copyright years.
561 (Position::operator==): Use parens to make precedence explicit.
562 Compare lines and columns first, as they are more likely to be
563 different, and they are faster to compare.
564
565 2009-03-26 Akim Demaille <demaille@gostai.com>
566
567 gnulib: update.
568 * gnulib: Update to latest.
569 * src/local.mk (AM_CFLAGS): Move to...
570 * Makefile.am: here.
571 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
572 AM_CFLAGS.
573
574 2009-03-02 Akim Demaille <demaille@gostai.com>
575
576 Comment changes.
577
578 2009-03-02 Akim Demaille <demaille@gostai.com>
579
580 Share b4_yytranslate_define.
581 * data/lalr1.cc (b4_yytranslate_define): Move to...
582 * data/c++.m4: here.
583
584 2009-03-02 Akim Demaille <demaille@gostai.com>
585
586 Use locations in the variant example.
587 Yes, this obfuscates the point of this example, variants only.
588 But glr.cc cannot work (yet?) without locations. This change
589 makes it easier to use this example with glr.cc.
590
591 * examples/variant.yy (assert): %define it.
592 (locations): Request them.
593 (yylex): Bind the location to the stage.
594
595 2009-03-02 Akim Demaille <demaille@gostai.com>
596
597 Dub make_TOKEN as a public type interface.
598 * data/c++.m4 (b4_symbol_constructor_declare)
599 (b4_symbol_constructor_define): New empty stubs.
600 (b4_public_types_declare, b4_public_types_define): Use them.
601 * data/lalr1.cc (b4_symbol_constructor_declare)
602 (b4_symbol_constructor_declare_)
603 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
604 Move to...
605 * data/variant.hh: here.
606 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
607 needed.
608 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
609 b4_symbol_constructor_declare, as it is now done by
610 b4_public_types_define and b4_public_types_declare.
611
612 2009-03-02 Akim Demaille <demaille@gostai.com>
613
614 Coding style changes.
615 * data/lalr1.cc (b4_symbol_constructor_declaration_)
616 (b4_symbol_constructor_declarations)
617 (b4_symbol_constructor_definition_)
618 (b4_symbol_constructor_definitions)
619 (b4_yytranslate_definition): Rename as...
620 (b4_symbol_constructor_declare_)
621 (b4_symbol_constructor_declare)
622 (b4_symbol_constructor_define_)
623 (b4_symbol_constructor_define)
624 (b4_yytranslate_define): these.
625 * data/variant.hh (b4_variant_definition): Rename as...
626 (b4_variant_define): this.
627
628 2009-03-02 Akim Demaille <demaille@gostai.com>
629
630 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
631 * data/bison.m4 (b4_percent_define_if_define): New.
632 * data/c++.m4 (b4_variant_if): Move to...
633 * data/bison.m4: Here, using b4_percent_define_if_define.
634 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
635 * data/bison.m4: Here, using b4_percent_define_if_define.
636
637 2009-03-02 Akim Demaille <demaille@gostai.com>
638
639 Dub symbol_type_base as a public type.
640 * data/c++.m4 (b4_public_types_declare): Now define
641 symbol_type_base and symbol_type.
642 (b4_public_types_define): New.
643 In both cases, the definitions are taken verbatim from lalr1.cc.
644 * data/lalr1.cc: Adjust.
645
646 2009-03-02 Akim Demaille <demaille@gostai.com>
647
648 b4_public_types_declare.
649 * data/c++.m4 (b4_public_types_declare): New.
650 * data/glr.cc, data/lalr1.cc: Use it.
651
652 2009-03-02 Akim Demaille <demaille@gostai.com>
653
654 b4_semantic_type_declare.
655 * data/c++.m4 (b4_semantic_type_declare): New.
656 Factors and generalizes what was in glr.cc and lalr1.cc.
657 * data/variant.hh (b4_semantic_type_declare): Redefine it for
658 variants.
659 * data/lalr1.cc, data/glr.cc: Use it.
660
661 2009-02-26 Akim Demaille <demaille@gostai.com>
662
663 Upgrade gnulib.
664 * gnulib: Upgrade from master.
665 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
666 Regen.
667
668 2009-02-25 Akim Demaille <demaille@gostai.com>
669
670 Remove useless arguments.
671 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
672 relevant.
673
674 2009-02-25 Akim Demaille <demaille@gostai.com>
675
676 Comment changes.
677 * data/lalr1.cc: here.
678
679 2009-02-25 Akim Demaille <demaille@gostai.com>
680
681 Fix glr.cc's debug level handling.
682 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
683 glr.c which is used.
684 (debug_level, set_debug_level): Adjust.
685
686 2009-02-25 Akim Demaille <demaille@gostai.com>
687
688 Copyright years.
689 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
690
691 2009-02-25 Akim Demaille <demaille@gostai.com>
692
693 Style changes.
694 * etc/bench.pl.in (generate_grammar_list): Consitently use
695 location_type, not yy::location.
696
697 2009-02-25 Akim Demaille <demaille@gostai.com>
698
699 Comment change.
700 * data/lalr1.cc: here.
701
702 2009-02-19 Akim Demaille <demaille@gostai.com>
703
704 Make yyparser::error public.
705 * data/lalr1.cc: here.
706 There is no good reason to keep it private (and it is convenient
707 to use it from the scanner for instance). It is already public in
708 glr.cc.
709
710 2009-02-19 Akim Demaille <demaille@gostai.com>
711
712 Comment changes.
713 * data/glr.cc: here.
714
715 2009-02-19 Akim Demaille <demaille@gostai.com>
716
717 Remove trailing blanks.
718 The epilogue has its own ending \n, no need to add another.
719
720 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
721 epilogue.
722 * data/glr.cc: dnl when extending the epilogue.
723 Remove stray "private:".
724
725 2009-02-19 Akim Demaille <demaille@gostai.com>
726
727 Use b4_c_modern.
728 * data/c.m4 (b4_c_function_decl): Here.
729
730 2009-02-19 Akim Demaille <demaille@gostai.com>
731
732 Comment changes.
733 * data/lalr1.cc: here.
734
735 2009-02-19 Akim Demaille <demaille@gostai.com>
736
737 Extract variant.hh
738 * data/variant.hh: New, extracted from...
739 * data/lalr1.cc: here.
740 Adjust.
741 * data/local.mk: Adjust.
742
743 2009-02-19 Akim Demaille <demaille@gostai.com>
744
745 Extract stack.hh from lalr1.cc.
746 * data/stack.hh: New.
747 * data/lalr1.cc: Extract from here.
748 * data/local.mk: Adjust.
749
750 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
751
752 Add reminder about uploading public key to keys.gnupg.net.
753 * HACKING (Release Procedure): Here.
754
755 2009-01-28 Akim Demaille <demaille@gostai.com>
756
757 * NEWS: Update information about 2.4.1 and 2.4.2.
758
759 2008-11-04 Akim Demaille <demaille@gostai.com>
760
761 Reformat NEWS.
762 * NEWS: Use more outline-mode markup.
763 Suggested by Jim Meyering.
764
765 2009-01-08 Akim Demaille <demaille@gostai.com>
766
767 Fix grep portability issues.
768 Grep on Solaris does not support -q.
769 Reported by Summum Bonum.
770
771 * NEWS: Add a stub for 2.4.2.
772 * THANKS: Add Summum Bonum.
773 * tests/atlocal.in (EGREP): New.
774 (CC, CXX, XSLTPROC): Make it possible to override them via
775 envvars.
776 * tests/java.at: Use $EGREP instead of egrep.
777 Use AT_CHECK's ignore instead of grep's -q.
778
779 2008-12-11 Akim Demaille <demaille@gostai.com>
780
781 Pass the token type to yysyntax_error.
782 * data/yacc.c (yysyntax_error): Take the transated token instead
783 of the raw number.
784 Adjust callers.
785 * TODO: Update.
786
787 2008-12-11 Akim Demaille <demaille@gostai.com>
788
789 Formatting changes.
790 * data/glr.c: Formatting changes.
791
792 2008-12-11 Akim Demaille <demaille@gostai.com>
793
794 Propagate i18n changes into glr.c.
795 * TODO: Update.
796 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
797 building the error message format dynamically.
798 * data/lalr1.java: Formatting changes.
799
800 2008-12-11 Akim Demaille <demaille@gostai.com>
801
802 Use testsuite -C.
803 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
804 Solves problems when top_srcdir is an absolute path.
805 Suggested by Eric Blake.
806 * configure.ac: Require Autoconf 2.62.
807
808 2008-12-11 Akim Demaille <demaille@gostai.com>
809
810 Simplify the i18n of the error messages.
811 * data/lalr1.cc: Comment changes.
812 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
813 lalr1.cc instead of building dynamically the format string.
814
815 2008-12-08 Akim Demaille <demaille@gostai.com>
816
817 Fix portability issue in the test suite.
818 * tests/local.at (AT_MATCHES_CHECK): New.
819 Based on Perl instead of Sed. Sed has too many portability
820 pitfalls, not ever Sed is GNU Sed.
821 * tests/actions.at (Fix user actions without a trailing semicolon):
822 Use it.
823
824 2008-12-08 Akim Demaille <demaille@gostai.com>
825
826 Update data/README.
827 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
828
829 2008-12-08 Akim Demaille <demaille@gostai.com>
830
831 Install autoconf as a submodule to get m4sugar.
832 * .gitmodules: Add submodules/autoconf.
833 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
834 submodules/autoconf.
835
836 2008-12-08 Akim Demaille <demaille@gostai.com>
837
838 Test token.prefix in all the skeletons.
839 * data/java.m4 (b4_token_enum): Use the token.prefix.
840 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
841 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
842 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
843 * tests/java.at: Comment changes.
844 (AT_CHECK_JAVA_MINIMAL): Define the END token.
845 (Java parser class and package names): Add token.prefix check.
846
847 2008-12-08 Akim Demaille <demaille@gostai.com>
848
849 Fix regeneration of atconfig.
850 * tests/local.mk (tests/atconfig): The rule was incorrect, but
851 remove it: now that there is no tests/Makefile.am, the top-level
852 Makefile properly updates atconfig when needed.
853
854 2008-12-07 Di-an Jan <dianj@freeshell.org>
855
856 Implement the FIXME that ends an user action with a semicolon
857 if it seems necessary.
858 * src/scan-code.l (flex rules section): Flag cpp directive from
859 any `#' to the first unescaped end-of-line. Semicolon is not
860 needed after `;', `{', '}', or cpp directives and is needed after
861 any other token (whitespaces and comments have no effect).
862 * tests/actions.at (Fix user actions without a trailing semicolon):
863 New test.
864 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
865 to make user actions complete statements.
866 Adjust column numbers in error messages.
867 * tests/regression.at (Fix user actions without a trailing semicolon):
868 Remove. Covered by new test.
869
870 2008-12-07 Akim Demaille <demaille@gostai.com>
871
872 Update gnulib.
873 * gnulib: Update from master.
874
875 2008-12-05 Eric Blake <ebb9@byu.net>
876
877 Avoid compiler warning.
878 * src/output.c (muscle_insert_item_number_table): Delete unused
879 function.
880
881 2008-12-02 Eric Blake <ebb9@byu.net>
882
883 Build testsuite with newer autoconf.
884 * tests/output.at (m4_expand): Don't override in newer autoconf,
885 where the underlying implementation changed.
886 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
887 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
888 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
889 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
890 since some of them contain unbalanced ')'.
891
892 2008-12-01 Akim Demaille <demaille@gostai.com>
893
894 Use b4_symbol for printers and destructors everywhere.
895 * data/bison.m4 (b4_symbol_action_location): New.
896 * data/c.m4 (b4_symbol_actions): Remove.
897 Adjust all callers to use by b4_symbol_foreach and the corresponding
898 b4_symbol_printer/destructor macro.
899 * data/glr.cc: Adjust.
900 * data/lalr1.java: Adjust the %destructor sanity check.
901 * src/output.c (symbol_code_props_output): Remove, we no longer
902 need the b4_symbol_printers/destructors tables.
903
904 2008-12-01 Akim Demaille <demaille@gostai.com>
905
906 Use b4_symbol_case_.
907 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
908 b4_symbol_case_.
909
910 2008-12-01 Akim Demaille <demaille@gostai.com>
911
912 Move b4_symbol based macro to bison.m4.
913 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
914 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
915 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
916 (b4_type_foreach): Move to...
917 * data/bison.m4: Here.
918 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
919 b4_symbol_value_template instead of b4_symbol_value.
920
921 2008-12-01 Akim Demaille <demaille@gostai.com>
922
923 b4_symbol/type_foreach.
924 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
925 Use them.
926
927 2008-12-01 Akim Demaille <demaille@gostai.com>
928
929 Use the symbol properties to output the printer/destructor for lalr1.cc.
930 Instead of defining complex list of tuples to define various
931 properties of the symbols, we now prefer to define symbols as
932 "structs" in m4: using the symbol key (its number), and the
933 property name, b4_symbol gives it value. Use this to handle
934 destructors and printers.
935
936 * src/output.c (CODE_PROP): New.
937 (prepare_symbol_definitions): Use it to define the printer and
938 destructor related attributes of the symbols.
939 * data/lalr1.cc (b4_symbol_actions): Rename as...
940 (b4_symbol_action): this.
941 Use b4_symbol instead of 6 arguments.
942 (b4_symbol_printer, b4_symbol_destructor): New.
943 Use them instead of b4_symbol_actions.
944
945 2008-12-01 Akim Demaille <demaille@gostai.com>
946
947 Avoid capturing variables too easily.
948 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
949 v__ and p__ instead of v and p.
950
951 2008-12-01 Akim Demaille <demaille@gostai.com>
952
953 Remove spurious empty line before syncline.
954 * data/bison.m4 (b4_syncline): Don't output an empty line before
955 the output.
956
957 2008-11-26 Akim Demaille <demaille@gostai.com>
958
959 Convert lib/Makefile.am into lib/local.mk.
960 The real problem is rather gnulib.mk, which itself is extracted
961 from a Makefile.am that gnulib expects to the "recursive". The
962 tool prefix-gnulib-mk converts such a gnulib.mk to be
963 non-recursive. Also, some AC_SUBST variables need to be adjusted.
964
965 * etc/prefix-gnulib-mk: New.
966 * bootstrap (slurp): Use it to convert further gnulib.mk.
967 No longer try to avoid re-creation of lib/gnulib.mk as the changes
968 are deeper.
969 * lib/Makefile.am: Rename as...
970 * lib/local.mk: this.
971 Adjust to be prefixed.
972 * Makefile.am, configure.ac: Adjust.
973 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
974
975 2008-11-26 Akim Demaille <demaille@gostai.com>
976
977 s/_FLAGS/FLAGS/.
978 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
979 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
980 Reported by Eric Blake.
981
982 2008-11-26 Akim Demaille <demaille@gostai.com>
983
984 Use b4_parser_tables_define in glr.cc.
985 * data/glr.c: Use b4_parser_tables_define instead of defining the
986 (deterministic integral) tables by hand.
987
988 2008-11-26 Akim Demaille <demaille@gostai.com>
989
990 Use b4_parser_tables_define in Java.
991 * data/java.m4 (b4_typed_parser_table): Rename as...
992 (b4_typed_parser_table_define): this, for consistency.
993 Accept a comment as $4.
994 Move $2 into yy*_.
995 (b4_integral_parser_table): Rename as...
996 (b4_integral_parser_table_define): this.
997 * data/lalr1.java: Adjust all uses.
998 Use b4_parser_tables_define instead of generation by hand.
999
1000 2008-11-26 Akim Demaille <demaille@gostai.com>
1001
1002 Prepare the convergence bw C style and Java table generation.
1003 * data/bison.m4 (b4_tables_map, b4_tables_declare)
1004 (b4_tables_define): Rename as...
1005 (b4_integral_parser_tables_map, b4_parser_tables_declare)
1006 (b4_parser_tables_define): these.
1007 * data/c.m4 (b4_table_define): Rename as...
1008 (b4_integral_parser_table_define): this.
1009 * data/lalr1.cc: Adjust.
1010 (b4_table_define, b4_table_declare): Rename as...
1011 (b4_integral_parser_table_define)
1012 (b4_integral_parser_table_declare): these.
1013 (yyrline_): Move the comment where it is actually used.
1014 * data/yacc.c: Adjust.
1015 (yyrline): Use b4_integral_parser_table_define.
1016
1017 2008-11-26 Akim Demaille <demaille@gostai.com>
1018
1019 Regen.
1020 * src/parse-gram.h, src/parse-gram.c: Regen.
1021
1022 2008-11-26 Akim Demaille <demaille@gostai.com>
1023
1024 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
1025 * data/lalr1.cc (b4_tables_map): Move to...
1026 * data/bison.m4: here.
1027 Update the comment for yytable during the flight.
1028 (b4_tables_declare, b4_tables_define): New.
1029 * data/lalr1.cc: Use them.
1030 * data/c.m4 (b4_table_define): New.
1031 * data/yacc.c: Use b4_tables_define instead of output the tables
1032 by hand.
1033 * tests/regression.at (Web2c Actions): Adjust the expected output,
1034 the order of the tables changed.
1035
1036 2008-11-26 Akim Demaille <demaille@gostai.com>
1037
1038 Get rid of (yy)rhs and (yy)prhs.
1039 These tables are no longer needed in the parsers, and they don't seem to
1040 be useful. They are not documented either.
1041
1042 * src/output.c (prepare_rules): Get rid of rhs and prhs.
1043 Adjust the computation of (yy)r2.
1044
1045 2008-11-26 Akim Demaille <demaille@gostai.com>
1046
1047 Rule length is unsigned.
1048 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
1049
1050 2008-11-26 Akim Demaille <demaille@gostai.com>
1051
1052 Get rid of lalr1-split.cc.
1053 It was no longer maintainer.
1054
1055 * data/lalr1-split.cc: Remove.
1056 * etc/bench.pl.in (bench_fusion_parser): Remove.
1057 Adjust.
1058
1059 2008-11-26 Akim Demaille <demaille@gostai.com>
1060
1061 Use yy* consistently.
1062 * data/glr.c: Now that yyrhs no longer exists as a global
1063 variable, rename local "rhs" variables into "yyrhs" for
1064 consistency.
1065
1066 2008-11-25 Akim Demaille <demaille@gostai.com>
1067
1068 Get rid of yyrhs and yyprhs in glr.c.
1069 * data/glr.c (yyrhs, yyprhs): Remove.
1070 Instead, use the state stack and yystos.
1071
1072 2008-11-25 Akim Demaille <demaille@gostai.com>
1073
1074 Flag glr tests.
1075 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
1076 as an Autotest keyword.
1077
1078 2008-11-25 Akim Demaille <demaille@gostai.com>
1079
1080 Prefer TESTSUITE_FLAGS.
1081 TESTSUITEFLAGS is barely readable.
1082
1083 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
1084 for backward compatibility.
1085 Use the former instead of the latter.
1086
1087 2008-11-25 Akim Demaille <demaille@gostai.com>
1088
1089 Get rid of yyrhs and yyprhs in larl1.java.
1090 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
1091 (yy_reduce_print): Rather, use yystos_ and the state stack.
1092
1093 2008-11-25 Akim Demaille <demaille@gostai.com>
1094
1095 Formatting changes.
1096
1097 2008-11-25 Akim Demaille <demaille@gostai.com>
1098
1099 Get rid of yyrhs and yyprhs in yacc.c.
1100 They were used to get the symbol types, given a rule number, when
1101 displaying the top of the stack before a reduction. But the
1102 symbol type is available from the state stack. This has two be
1103 benefits: two tables less in the parser (making it smaller), and a
1104 more consistent use of the three stacks which will help to fuse
1105 them.
1106
1107 * data/yacc.c (yyprhs, yyrhs): Remove.
1108 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
1109 (yy_reduce_print): Take yyssp as argument.
1110 Use it, together with yystos, to get the symbol type.
1111 * tests/regression.at (Web2c Report): Remove these tables from the
1112 expected output.
1113
1114 2008-11-25 Akim Demaille <demaille@gostai.com>
1115
1116 b4_tables_map.
1117 The point is to factor the generation of the tables across skeletons.
1118 This is language dependant.
1119
1120 * data/c.m4 (b4_comment_): New.
1121 Should be usable to define how to generate tables independently of
1122 the language.
1123 (b4_c_comment): New.
1124 (b4_comment): Bounce to b4_c_comment.
1125 Now support $2 = [PREFIX] for indentation.
1126 * data/lalr1.cc (b4_table_declare): Don't output a comment if
1127 there is no comment.
1128 Indent it properly when there is one.
1129 Output the ending semicolon.
1130 (b4_table_define): Space changes.
1131 Output the ending semicolon.
1132 (b4_tables_map): New.
1133 Use it twice instead of declaring and defining the (integral)
1134 tables by hand.
1135
1136 2008-11-25 Akim Demaille <demaille@gostai.com>
1137
1138 b4_table_declare.
1139 * data/lalr1.cc (b4_table_declare): New.
1140 Use it to declare the tables defined with b4_table_define.
1141 (b4_table_define): Declare a third arg to match b4_table_declare
1142 signature.
1143 Move all the comments around invocations of b4_table_define into
1144 the invocations itselves.
1145 Move things around to have the order for declarations and
1146 definitions.
1147
1148 2008-11-25 Akim Demaille <demaille@gostai.com>
1149
1150 Formatting changes.
1151 * data/lalr1.java: here.
1152
1153 2008-11-25 Akim Demaille <demaille@gostai.com>
1154
1155 b4_args is more general than only C++.
1156 * data/lalr1.cc (b4_args, _b4_args): Move to...
1157 * data/bison.m4: here.
1158
1159 2008-11-21 Di-an Jan <dianj@freeshell.org>
1160
1161 Implement no-XXX arguments for --warnings, --report, --trace.
1162 * src/getargs.c (flags_argmatch): Handles no-XXX.
1163 Fix typo in doxygen comment.
1164
1165 2008-11-21 Akim Demaille <demaille@gostai.com>
1166
1167 Display the changes in cross-options.texi.
1168 * build-aux/cross-options.pl ($sep): New, to separate items.
1169 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
1170 changes.
1171
1172 2008-11-20 Di-an Jan <dianj@freeshell.org>
1173
1174 Improves options in the manual.
1175 * doc/bison.texinfo (-g, -x): Add space before argument.
1176 (Option Cross Key): Implement FIXME: listing directives also.
1177 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1178 (Short Option): Special case -d. Put arguments inside @option.
1179 (Bison Directive): Add column, automatically extracted from
1180 src/scan-gram.l (actual name passed as the first argument)
1181 with special case for %define.
1182 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
1183 to build-aux/cross-options.pl.
1184 * src/getargs.c (usage): Document limitations of cross-options.pl.
1185 * src/scan-gram.l: Likewise.
1186
1187 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1188
1189 Fix unexpanded macros in GLR defines file.
1190 Reported by Csaba Raduly at
1191 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1192 * THANKS (Csaba Raduly): Add.
1193 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1194 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1195 lexer in a separate module that includes the defines file.
1196 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
1197 source.
1198 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1199 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1200 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1201 (AT_DATA_SOURCE_PROLOGUE): New.
1202 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1203 (AT_DATA_SOURCE): New.
1204 (AT_FULL_COMPILE): Extend to support an additional source file.
1205
1206 2008-11-18 Akim Demaille <demaille@gostai.com>
1207
1208 More TODO.
1209 * TODO: More short term issues.
1210
1211 2008-11-18 Akim Demaille <demaille@gostai.com>
1212
1213 Regen.
1214 * src/parse-gram.h, src/parse-gram.c: Regen.
1215
1216 2008-11-18 Akim Demaille <demaille@gostai.com>
1217
1218 Use b4_subtract where possible.
1219 * data/lalr1.cc (b4_subtract): Move to...
1220 * data/bison.m4: here.
1221 * data/glr.c (b4_rhs_data): Use it.
1222 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
1223
1224 2008-11-18 Akim Demaille <demaille@gostai.com>
1225
1226 Remove incorrect mode specification.
1227 * data/glr.cc: Don't pretend it's C code.
1228
1229 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1230
1231 Simplify last patch slightly.
1232 * src/getargs.c (getargs): Here.
1233
1234 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1235
1236 Fix last warning from --enable-gcc-warnings.
1237 * src/getargs.c (getargs): Don't assign const address to non-const
1238 pointer.
1239
1240 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1241
1242 Don't let maintainer-*-check targets force a version update.
1243 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1244 handled.
1245
1246 2008-11-17 Di-an Jan <dianj@freeshell.org>
1247
1248 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1249 Align menus. Adjust word wrapping. Use node names for menu names.
1250 (Examples): Don't abbreviate node names.
1251 (LocalWords): Remove abbreviations.
1252 (Copying): Make description a sentence.
1253 (Java Action Features): Remove period to match the rest of menu.
1254
1255 2008-11-17 Di-an Jan <dianj@freeshell.org>
1256
1257 Handles several --enable-gcc-warnings.
1258 * src/getargs.c (command_line_location): Set parameters to void.
1259 * src/output.c (symbol_type_name_cmp): Make static.
1260 (symbols_by_type_name): Set parameters to void.
1261 (symbol_definitions_output): Remove unused parameter. Rename as...
1262 (prepare_symbol_definitions): this.
1263 (muscles_output): Move symbol_definitions_output to...
1264 (output): here as prepare_symbol_definitions.
1265 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
1266 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
1267
1268 2008-11-17 Di-an Jan <dianj@freeshell.org>
1269
1270 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
1271 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
1272
1273 2008-11-16 Akim Demaille <demaille@gostai.com>
1274
1275 Add missing $(EXEEXT).
1276 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
1277 "src/bison$(EXEEXT)".
1278 Reported by Di-an Jan.
1279
1280 2008-11-15 Akim Demaille <demaille@gostai.com>
1281
1282 * TODO: Update.
1283
1284 2008-11-15 Akim Demaille <demaille@gostai.com>
1285
1286 Formatting changes.
1287 * tests/input.at: here.
1288
1289 2008-11-15 Akim Demaille <demaille@gostai.com>
1290
1291 Remove duplicate header inclusion.
1292 * src/LR0.c: here.
1293
1294 2008-11-15 Akim Demaille <demaille@gostai.com>
1295
1296 * src/parse-gram.h, src/parse-gram.c: Regen.
1297
1298 2008-11-15 Akim Demaille <demaille@gostai.com>
1299
1300 Support parametric types.
1301
1302 There are two issues to handle: first scanning nested angle
1303 bracket pairs to support types such as std::pair< std::string,
1304 std::list<std::string> > >.
1305
1306 Another issue is to address idiosyncracies of C++: do not glue two
1307 closing angle brackets together (otherwise it's operator>>), and
1308 avoid sticking blindly a TYPE to the opening <, as it can result
1309 in '<:' which is a digraph for '['.
1310
1311 * src/scan-gram.l (brace_level): Rename as...
1312 (nesting): this.
1313 (SC_TAG): New.
1314 Implement support for complex tags.
1315 (tag): Accept
1316 , but not <.
1317 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
1318 (b4_symbol_variant): Leave space around types as parameters.
1319 * examples/variant.yy: Use nested template types and leading ::.
1320 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
1321 Rename as...
1322 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
1323 * tests/c++.at: Test parametric types.
1324
1325 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1326
1327 Test token.prefix.
1328 This is not sufficient, but we test at least that the make_SYMBOL
1329 interface is not affected by token.prefix. A more general test
1330 will be implemented when the support of token.prefix is generalized
1331 to more skeletons.
1332
1333 * tests/c++.at: One more variant test, using token.prefix.
1334
1335 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1336
1337 Test the make_TOKEN interface.
1338 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
1339 Factor the common code in yylex.
1340 Use it to test "%define lex_symbol".
1341
1342 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1343
1344 Formatting change.
1345
1346 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1347
1348 Simplify code for variants bench marks.
1349 * etc/bench.pl.in (&generate_grammar_list): Define and use
1350 location_type.
1351 Factor the common code in yylex.
1352
1353 2008-11-15 Akim Demaille <demaille@gostai.com>
1354
1355 Better error message.
1356 * bootstrap (find_tool): Fix the error message.
1357
1358 2008-11-15 Akim Demaille <demaille@gostai.com>
1359
1360 Update variant.yy to newest interface.
1361 * examples/variant.yy: Define lex_symbol.
1362 Adjust.
1363
1364 2008-11-15 Akim Demaille <demaille@gostai.com>
1365
1366 Don't use locations in variant.yy.
1367 * examples/variant.yy: Adjust to not using locations.
1368
1369 2008-11-15 Akim Demaille <demaille@gostai.com>
1370
1371 Comment changes.
1372 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
1373 comments for the license.
1374
1375 2008-11-15 Akim Demaille <demaille@gostai.com>
1376
1377 Remove tests/Makefile.am.
1378 * tests/Makefile.am: Rename as...
1379 * tests/local.mk: this.
1380 * Makefile.am, configure.ac: Adjust.
1381 * Makefile.am (DISTCLEANFILES): Define.
1382 (maintainer-check, maintainer-xml-check, maintainer-push-check):
1383 Remove, we no longer need to bounce to the real targets.
1384
1385 2008-11-15 Akim Demaille <demaille@gostai.com>
1386
1387 Comment changes.
1388
1389 2008-11-15 Akim Demaille <demaille@gostai.com>
1390
1391 djgpp/local.mk.
1392 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
1393 * djgpp/local.mk: this new file.
1394
1395 2008-11-15 Akim Demaille <demaille@gostai.com>
1396
1397 Remove doc/Makefile.am.
1398 * doc/Makefile.am: Rename as...
1399 * doc/local.mk: this.
1400 Adjust paths
1401 * Makefile.am, configure.ac: Adjust.
1402 * Makefile.am (MOSTLYCLEANFILES): New.
1403 * src/local.mk: Adjust.
1404
1405 2008-11-15 Akim Demaille <demaille@gostai.com>
1406
1407 Move sc_tight_scope into maint.mk.
1408 It does not work, and I don't know how it was supposed to work: it
1409 seems to be looking for sources in the build tree. I just moved
1410 it at a better place, fixing it is still required.
1411
1412 * src/local.mk (echo): Remove.
1413 (sc_tight_scope): Move to...
1414 * maint.mk: here.
1415
1416 2008-11-15 Akim Demaille <demaille@gostai.com>
1417
1418 Regen.
1419 * src/parse-gram.h, src/parse-gram.h: Regen.
1420
1421 2008-11-15 Akim Demaille <demaille@gostai.com>
1422
1423 Remove src/Makefile.am.
1424 * src/Makefile.am: Rename as...
1425 * src/local.mk: this.
1426 Prefix all the paths with src/.
1427 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
1428 (AM_CPPFLAGS): Find find in builddir/src.
1429 (YACC): Move the flags into...
1430 (AM_YFLAGS): here.
1431 * maint.mk (sc_tight_scope): Disable.
1432 It used to bounce to the version in src/Makefile.am which is now
1433 part of this very Makefile.
1434 * Makefile.am, configure.ac: Adjust.
1435 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
1436 include "..." to find files "here": we are no longer in src/, so
1437 qualify the includes with src/.
1438 * doc/Makefile.am (PREPATH): No longer include the top_builddir
1439 prefix.
1440 (.x.1): Adjust to be able to create src/foo from the top level
1441 Makefile, instead of going bounce to src/Makefile the creation of
1442 foo.
1443
1444 2008-11-15 Akim Demaille <demaille@gostai.com>
1445
1446 Remove useless variable.
1447 * doc/Makefile.am (srcsrcdir): Remove.
1448
1449 2008-11-15 Akim Demaille <demaille@gostai.com>
1450
1451 Remove data/Makefile.am.
1452 * data/Makefile.am: Rename as...
1453 * data/local.mk: this.
1454 Adjust paths.
1455 * Makefile.am, configure.ac: Adjust.
1456
1457 2008-11-15 Akim Demaille <demaille@gostai.com>
1458
1459 Remove etc/Makefile.am.
1460 * etc/Makefile.am: Rename as...
1461 * etc/local.mk: this.
1462 Adjust.
1463 * Makefile.am, configure.ac: Adjust.
1464
1465 2008-11-15 Akim Demaille <demaille@gostai.com>
1466
1467 Remove examples/local.mk.
1468 examples/calc++/Makefile.am might be interesting to keep as is, since
1469 it is an example in itself.
1470
1471 * examples/Makefile.am: Rename as...
1472 * examples/local.mk: this.
1473 Adjust.
1474 * Makefile.am, configure.ac: Adjust.
1475
1476 2008-11-15 Akim Demaille <demaille@gostai.com>
1477
1478 Remove build-aux/Makefile.am.
1479 Recursive Makefiles are really way too slow, let's get rid of some of
1480 them.
1481
1482 * build-aux/Makefile.am: Rename as...
1483 * build-aux/local.mk: this.
1484 Adjust paths.
1485 * Makefile.am, configure.ac: Adjust.
1486
1487 2008-11-15 Akim Demaille <demaille@gostai.com>
1488
1489 Provide convenience constructors for locations and positions.
1490 * data/location.cc (position::position): Accept file, line and
1491 column as arguments with default values.
1492 Always qualify initial line and column literals as unsigned.
1493 (location::location): Provide convenience constructors.
1494
1495 2008-11-15 Akim Demaille <demaille@gostai.com>
1496
1497 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
1498 token type.
1499 Using template buys us nothing, and makes it uselessly complex to
1500 construct a symbol. Besides, it could not be generalized to other
1501 languages, while make_FOO would work in C/Java etc.
1502
1503 * data/lalr1.cc (b4_symbol_): New.
1504 (b4_symbol): Use it.
1505 (b4_symbol_constructor_declaration_)
1506 (b4_symbol_constructor_definition_): Instead of generating
1507 specializations of an overloaded template function, just generate
1508 several functions whose names are forged from the token names
1509 without the token.prefix.
1510 (b4_symbol_constructor_declarations): Generate them for all the
1511 symbols, not just by class of symbol type, now that instead of
1512 specializing a function template by the token, we generate a
1513 function named after the token.
1514 (b4_symbol_constructor_specialization_)
1515 (b4_symbol_constructor_specializations): Remove.
1516 * etc/bench.pl.in: Adjust to this new API.
1517
1518 2008-11-13 Akim Demaille <demaille@gostai.com>
1519
1520 %define token.prefix.
1521 Provide a means to add a prefix to the name of the tokens as
1522 output in the generated files. Because of name clashes, it is
1523 good to have such a prefix such as TOK_ that protects from names
1524 such as EOF, FILE etc. But it clutters the grammar itself.
1525
1526 * data/bison.m4 (token.prefix): Empty by default.
1527 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
1528 * data/lalr1.cc (b4_symbol): Ditto.
1529
1530 2008-11-13 Akim Demaille <demaille@gostai.com>
1531
1532 Compute at M4 time some of the subtractions.
1533 * data/lalr1.cc (b4_subtract): New.
1534 (b4_rhs_data): Use it.
1535
1536 2008-11-13 Akim Demaille <demaille@gostai.com>
1537
1538 symbol::token.
1539 This allows the user to get the type of a token returned by yylex.
1540
1541 * data/lalr1.cc (symbol::token): New.
1542 (yytoknum_): Define when %define lex_symbol, independently of
1543 %debug.
1544 (yytoken_number_): Move into...
1545 (symbol::token): here, since that's the only use.
1546 The other one is YYPRINT which was not officially supported
1547 by lalr1.cc, and anyway it did not work since YYPRINT uses this
1548 array under a different name (yytoknum).
1549
1550 2008-11-13 Akim Demaille <demaille@gostai.com>
1551
1552 YYERRCODE.
1553 * TODO (YYERRCODE): Mention the case of $undef.
1554
1555 2008-11-13 Akim Demaille <demaille@gostai.com>
1556
1557 TODO: YYPRINT.
1558 * TODO (YYPRINT): New.
1559
1560 2008-11-13 Akim Demaille <demaille@gostai.com>
1561
1562 Comment changes.
1563 * data/lalr1.cc, data/yacc.c: Fix the description of the
1564 yytranslate and yytoknum tables.
1565
1566 2008-11-13 Akim Demaille <demaille@gostai.com>
1567
1568 Define make_symbol in the header.
1569 To reach good performances these functions should be inlined (yet
1570 this is to measure precisely). To this end they must be available
1571 to the caller.
1572
1573 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
1574 location_type with the class name.
1575 Since will now be output in the header, declare "inline".
1576 No longer use b4_symbol_constructor_specializations, but
1577 b4_symbol_constructor_definitions in the header.
1578 Don't call it in the *.cc file.
1579
1580 2008-11-13 Akim Demaille <demaille@gostai.com>
1581
1582 Define yytranslate in the header for lex_symbol.
1583 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
1584 into the header file when using %define lex_symbol.
1585 (yytranslate_): Declare inline.
1586
1587 2008-11-13 Akim Demaille <demaille@gostai.com>
1588
1589 Define the constructors of symbol_type in
1590 b4_symbol_constructor_definitions.
1591 The constructors are called by the make_symbol functions, which a
1592 forthcoming patch will move elsewhere. Hence the interest of
1593 putting them together.
1594
1595 The stack_symbol_type does not need to be moved, it is used only
1596 by the parser.
1597
1598 * data/lalr1.cc: Move symbol_type and symbol_base_type
1599 constructors into...
1600 (b4_symbol_constructor_definitions): here.
1601 Adjust.
1602
1603 2008-11-13 Akim Demaille <demaille@gostai.com>
1604
1605 Make it easier to move the definition of yytranslate_.
1606 Forthcoming changes will make it possible to use yytranslate_
1607 from outside the parser implementation file.
1608
1609 * data/lalr1.cc (b4_yytranslate_definition): New.
1610 Use it.
1611
1612 2008-11-13 Akim Demaille <demaille@gostai.com>
1613
1614 Remove useless class specification.
1615 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
1616 to refer to the class name to use a type defined by the class for
1617 arguments of member functions.
1618
1619 2008-11-13 Akim Demaille <demaille@gostai.com>
1620
1621 Finer input type for yytranslate.
1622 This patch is debatable: the tradition expects yylex to return an int
1623 which happens to correspond to token_number (which is an enum). This
1624 allows for instance to return characters (such as '*' etc.). But this
1625 goes against the stronger typing I am trying to have with the new
1626 lex interface which return a symbol_type. So in this case, feed
1627 yytranslate_ with a token_type.
1628
1629 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
1630 expect a token_type.
1631
1632 2008-11-13 Akim Demaille <demaille@gostai.com>
1633
1634 Honor lex-params in %define lex_symbol mode.
1635 * data/lalr1.cc: Use b4_lex_param.
1636
1637 2008-11-13 Akim Demaille <demaille@gostai.com>
1638
1639 Simplify names.
1640 * src/output.c (symbol_definitions_output): Rename symbol
1641 attributes type_name and has_type_name as type and has_type.
1642 * data/lalr1.cc: Adjust uses.
1643
1644 2008-11-13 Akim Demaille <demaille@gostai.com>
1645
1646 Use b4_type_names for the union type.
1647 The union used to compute the size of the variant used to iterate
1648 over the type of all the symbols, with a lot of redundancy. Now
1649 iterate over the lists of symbols having the same type-name.
1650
1651 * data/lalr1.cc (b4_char_sizeof_): New.
1652 (b4_char_sizeof): Use it.
1653 Adjust to be called with a list of numbers instead of a single
1654 number.
1655 Adjust its caller for new-line issues.
1656
1657 2008-11-13 Akim Demaille <demaille@gostai.com>
1658
1659 Define the "identifier" of a symbol.
1660 Symbols may have several string representations, for instance if
1661 they have an alias. What I call its "id" is a string that can be
1662 used as an identifier. May not exist.
1663
1664 Currently the symbols which have the "tag_is_id" flag set are
1665 those that don't have an alias. Look harder for the id.
1666
1667 * src/output.c (is_identifier): Move to...
1668 * src/symtab.c (is_identifier): here.
1669 * src/symtab.h, src/symtab.c (symbol_id_get): New.
1670 * src/output.c (symbol_definitions_output): Use it to define "id"
1671 and "has_id".
1672 Remove the definition of "tag_is_id".
1673 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
1674 "tag_is_id" were used to produce code.
1675 We still use "tag" for documentation.
1676
1677 2008-11-11 Akim Demaille <demaille@gostai.com>
1678
1679 Locations are no longer required by lalr1.cc.
1680 * data/lalr1.cc (_b4_args, b4_args): New.
1681 Adjust all uses of locations to make them optional.
1682 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
1683 (AT_CHECK_NAMESPACE): Check the use of locations.
1684 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
1685 without locations with lalr1.cc.
1686 Test these cases.
1687 * tests/output.at: Check lalr1.cc with and without location
1688 support.
1689 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
1690 Don't use locations.
1691
1692 2008-11-11 Akim Demaille <demaille@gostai.com>
1693
1694 AT_FULL_COMPILE.
1695 * tests/local.at (AT_FULL_COMPILE): New.
1696 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
1697
1698 2008-11-11 Akim Demaille <demaille@gostai.com>
1699
1700 Support parens in calc++.
1701 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
1702 * examples/calc++/test (run): Check the expected output.
1703 Adjust callers.
1704 Check parens too.
1705
1706 2008-11-11 Akim Demaille <demaille@gostai.com>
1707
1708 Simplify lalr1.cc since %defines is mandatory.
1709 * data/lalr1.cc: Remove useless calls to b4_defines_if.
1710
1711 2008-11-11 Akim Demaille <demaille@gostai.com>
1712
1713 TODO: yyfmt.
1714 * TODO (yysyntax_error): New item.
1715
1716 2008-11-11 Akim Demaille <demaille@gostai.com>
1717
1718 Prefer M4 to CPP.
1719 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1720 YYERROR_VERBOSE.
1721
1722 2008-11-11 Akim Demaille <demaille@gostai.com>
1723
1724 Support i18n of the parse error messages.
1725 * TODO (lalr1.cc/I18n): Remove.
1726 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1727 error messages, as done in yacc.c.
1728 Stay within the yy* pseudo namespace.
1729
1730 2008-11-11 Akim Demaille <demaille@gostai.com>
1731
1732 More TODO.
1733 * TODO (single stack, yysyntax_error): New.
1734
1735 2008-11-11 Akim Demaille <demaille@gostai.com>
1736
1737 Make it possible to return a symbol_type from yylex.
1738 * data/lalr1.cc (b4_lex_symbol_if): New.
1739 (parse): When lex_symbol is defined, expected yylex to return the
1740 complete lookahead.
1741 * etc/bench.pl.in (generate_grammar_list): Extend to support this
1742 yylex interface.
1743 (bench_variant_parser): Exercise it.
1744
1745 2008-11-11 Akim Demaille <demaille@gostai.com>
1746
1747 Remove useless bench case.
1748 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
1749 no longer used.
1750
1751 2008-11-11 Akim Demaille <demaille@gostai.com>
1752
1753 Improve display of directives.
1754 * etc/bench.pl.in (parse_term): Don't add useless eol.
1755
1756 2008-11-11 Akim Demaille <demaille@gostai.com>
1757
1758 Use string_cast in the bench.
1759 * etc/bench.pl.in (generate_grammar_list): Define and use
1760 string_cast.
1761
1762 2008-11-11 Akim Demaille <demaille@gostai.com>
1763
1764 Replace yychar with a Boolean.
1765 * data/lalr1.cc (parse::yychar): Replace by...
1766 (parse::yyempty): this.
1767
1768 2008-11-11 Akim Demaille <demaille@gostai.com>
1769
1770 Factor the tables.
1771 * TODO: New item.
1772
1773 2008-11-11 Akim Demaille <demaille@gostai.com>
1774
1775 Let yytranslate handle the eof case.
1776 * data/lalr1.cc (yytranslate_): Handle the EOF case.
1777 Adjust callers.
1778 No longer expect yychar to be equal to yyeof_, rather, test the
1779 lookahead's (translated) kind.
1780
1781 2008-11-11 Akim Demaille <demaille@gostai.com>
1782
1783 yychar cannot be empty in yyerrlab.
1784 * TODO (yychar == yyempty_): New.
1785 * data/lalr1.cc: Remove the handling of this case.
1786 This eases forthcoming changes related to yychar and yytranslate.
1787
1788 2008-11-11 Akim Demaille <demaille@gostai.com>
1789
1790 Bench: syntactic sugar for %define/#define.
1791 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
1792 (&bench_push_parser, bench_variant_parser): Use this feature.
1793 (&eat): New.
1794 Use it.
1795
1796 2008-11-11 Akim Demaille <demaille@gostai.com>
1797
1798 Less memory pressure on the "list" bench.
1799 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
1800 the values, to limit memory pressure.
1801
1802 2008-11-11 Akim Demaille <demaille@gostai.com>
1803
1804 Introduce make_symbol.
1805 make_symbol provides a means to construct a full symbol (kind,
1806 value, location) in a single shot. It is meant to be a Symbol
1807 constructor, parameterized by the symbol kind so that overloading
1808 would prevent incorrect kind/value pairs. Unfortunately
1809 parameterized constructors do not work well in C++ (unless the
1810 parameter also appears as an argument, which is not acceptable),
1811 hence the use of a function instead of a constructor.
1812
1813 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1814 (b4_symbol_constructor_declarations)
1815 (b4_symbol_constructor_specialization_)
1816 (b4_symbol_constructor_specializations)
1817 (b4_symbol_constructor_definition_)
1818 (b4_symbol_constructor_definitions): New.
1819 Use them where appropriate to generate declaration, declaration of
1820 the specializations, and implementations of the templated
1821 overloaded function "make_symbol".
1822 (variant::variant): Always define a default ctor.
1823 Also provide a copy ctor.
1824 (symbol_base_type, symbol_type): New ctor overloads for value-less
1825 symbols.
1826 (symbol_type): Now public, so that functions such as yylex can use
1827 it.
1828
1829 2008-11-11 Akim Demaille <demaille@gostai.com>
1830
1831 Inform m4 whether a tag is a valid id.
1832 * src/output.c (is_identifier): New.
1833 (symbol_definitions_output): Use it to define tag_is_id.
1834 But maybe this should be done at m4 level?
1835
1836 2008-11-11 Akim Demaille <demaille@gostai.com>
1837
1838 Test 214 was failing: it greps with a pattern containing [ ]*
1839 which obviously meant to catch spaces and tabs, but contained only
1840 spaces. Tabulations in sources are a nuisance, so to simplify the
1841 matter, get rid of all the tabulations in the Java sources. The
1842 other skeletons will be treated equally later.
1843
1844 * data/java.m4, data/lalr1.java: Untabify.
1845 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
1846 tabulations are no longer generated.
1847
1848 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1849
1850 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1851 * configure.ac: Adjust usage.
1852 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1853 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1854 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1855
1856 2008-11-10 Di-an Jan <dianj@freeshell.org>
1857
1858 Workaround Java's ``code too large'' problem for parser tables
1859 in most cases, by using one function per initialization.
1860 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
1861 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
1862 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
1863 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
1864 (yytname_): Use b4_typed_parser_table.
1865 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
1866 ``code too large'' error.
1867
1868 2008-11-10 Di-an Jan <dianj@freeshell.org>
1869
1870 * NEWS: Document them.
1871
1872 General Java skeleton improvements.
1873 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
1874 using gcj < 4.3 in the testsuite, according to comments in
1875 gnulib/m4/javacomp.m4.
1876 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
1877 location_type, position_type): Remove extraneous brackets from
1878 b4_percent_define_default.
1879 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
1880 m4_define and m4_define_default.
1881 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
1882 which marks the end of user code with appropriate syncline, like all
1883 the other skeletons.
1884 (b4_user_post_prologue): Add. Don't silently drop.
1885 (yylex): Remove.
1886 (parse): Inline yylex.
1887 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
1888 (%{...%}): Fix typo of %code imports.
1889 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
1890
1891 Support annotations on parser class with %define annotations.
1892 * data/lalr1.java (annotations): Add to parser class modifier.
1893 * doc/bison.texinfo (Java Parser Interface): Document
1894 %define annotations.
1895 (Java Declarations Summary): Document %define annotations.
1896 * tests/java.at (Java parser class modifiers): Test annotations.
1897
1898 Do not generate code for %error-verbose unless requested.
1899 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
1900 Make private. Make conditional on %error-verbose.
1901 (getErrorVerbose, setErrorVerbose): New.
1902 (yytnamerr_): Make conditional on %error-verbose.
1903 (yysyntax_error): Make some code conditional on %error-verbose.
1904 * doc/bison.texinfo (Java Bison Interface): Remove the parts
1905 about %error-verbose having no effect.
1906 (getErrorVerbose, setErrorVerbose): Document.
1907
1908 Move constants for token names to Lexer interface.
1909 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
1910 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
1911 (parse): Qualify EOF to Lexer.EOF.
1912 * doc/bison.texinfo (Java Parser Interface): Move documentation of
1913 EOF and token names to Java Lexer Interface.
1914 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
1915
1916 Make yyerror public.
1917 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
1918 (yyerror): Change to public. Add Javadoc comments. Use longer
1919 parameter names. Make the body rather than the declarator
1920 conditional on %locations.
1921 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
1922
1923 Allow user to add code to the constructor with %code init.
1924 * data/java.m4 (b4_init_throws): New, for %define init_throws.
1925 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
1926 Add %code init to the front of the constructor body.
1927 * doc/bison.texinfo (YYParser.YYParser): Document %code init
1928 and %define init_throws.
1929 (Java Declarations Summary): Document %code init and
1930 %define init_throws.
1931 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
1932 (Java constructor init and init_throws): Add tests.
1933
1934 2008-11-10 Akim Demaille <demaille@gostai.com>
1935
1936 Update TODO.
1937 * TODO (-D): is implemented.
1938 (associativity): Same precedence must have the same associativity.
1939 For instance, how can a * b / c be parsed if * is %left and / is
1940 %right?
1941 (YYERRORCODE, YYFAIL, YYBACKUP): New.
1942
1943 2008-11-10 Akim Demaille <demaille@gostai.com>
1944
1945 Formatting changes.
1946
1947 2008-11-10 Akim Demaille <demaille@gostai.com>
1948
1949 More information about the symbols.
1950 * src/output.c (type_names_output): Document all the symbols,
1951 including those that don't have a type-name.
1952 (symbol_definitions_output): Define "is_token" and
1953 "has_type_name".
1954 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
1955 type-name, now that they are defined too in b4_type_names.
1956
1957 2008-11-10 Akim Demaille <demaille@gostai.com>
1958
1959 Regen.
1960
1961 2008-11-10 Akim Demaille <demaille@gostai.com>
1962
1963 Make parser::yytranslate static.
1964 Small speedup (1%) on the list grammar. And makes yytranslate_
1965 available in non member functions.
1966
1967 * data/lalr1.cc (yytranslate_): Does not need to be a instance
1968 function.
1969
1970 2008-11-10 Akim Demaille <demaille@gostai.com>
1971
1972 Avoid trailing spaces.
1973 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
1974 * data/lalr1.cc: Don't indent before rule and symbol actions, as
1975 they can be empty, and anyway this incorrectly indents the first
1976 action.
1977
1978 2008-11-10 Akim Demaille <demaille@gostai.com>
1979
1980 Comment changes.
1981
1982 2008-11-10 Akim Demaille <demaille@gostai.com>
1983
1984 Use "enum" for integral constants.
1985 This is just nicer to read, I observed no speedup.
1986
1987 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
1988 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
1989 (yyuser_token_number_max_, yyundef_token_): Move into...
1990 (yytranslate_): here.
1991
1992 2008-11-10 Akim Demaille <demaille@gostai.com>
1993
1994 Shortcuts in bench directives.
1995 * etc/bench.pl.in (parse_dirs): New.
1996 Use it.
1997 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
1998 Create the benches in "benches/".
1999
2000 2008-11-10 Akim Demaille <demaille@gostai.com>
2001
2002 Formatting changes.
2003 * data/lalr1.cc: here.
2004
2005 2008-11-10 Akim Demaille <demaille@gostai.com>
2006
2007 Adjust verbose message to using emacs.
2008 * etc/bench.pl.in: Inform compilation-mode when we change the
2009 directory.
2010 (generate_grammar_list): Recognize %define "variant" in addition
2011 to %define variant.
2012
2013 2008-11-10 Akim Demaille <demaille@gostai.com>
2014
2015 Classify symbols by type-name.
2016 * src/uniqstr.h (UNIQSTR_CMP): New.
2017 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
2018 (type_names_output): New.
2019 (muscles_output): Use it.
2020 * data/lalr1.cc (b4_symbol_action_): Remove.
2021 (b4_symbol_case_, b4_type_action_): New.
2022 Adjust uses of b4_symbol_action_ to use b4_type_action_.
2023
2024 2008-11-10 Akim Demaille <demaille@gostai.com>
2025
2026 Change the handling of the symbols in the skeletons.
2027 Before we were using tables which lines were the symbols and which
2028 columns were things like number, tag, type-name etc. It is was
2029 difficult to extend: each time a column was added, all the numbers had
2030 to be updated (you asked for colon $2, not for "tag"). Also, it was
2031 hard to filter these tables when only a subset of the symbols (say the
2032 tokens, or the nterms, or the tokens that have and external number
2033 *and* a type-name) was of interest.
2034
2035 Now instead of monolithic tables, we define one macro per cell. For
2036 instance "b4_symbol(0, tag)" is a macro name which contents is
2037 self-decriptive. The macro "b4_symbol" provides easier access to
2038 these cells.
2039
2040 * src/output.c (type_names_output): Remove.
2041 (symbol_numbers_output, symbol_definitions_output): New.
2042 (muscles_output): Call them.
2043 (prepare_symbols): Define b4_symbols_number.
2044
2045 2008-11-10 Akim Demaille <demaille@gostai.com>
2046
2047 --trace=muscles
2048 * src/getargs.h, src/getargs.c (trace_muscle): New.
2049 (trace_types, trace_args): Support it.
2050 * src/output.c (output_skeleton): Use it.
2051
2052 2008-11-10 Akim Demaille <demaille@gostai.com>
2053
2054 muscles_output.
2055 * src/output.c (muscles_output): New, extracted from...
2056 (output_skeleton): here.
2057 Adjust.
2058
2059 2008-11-10 Akim Demaille <demaille@gostai.com>
2060
2061 Formatting changes.
2062
2063 2008-11-10 Akim Demaille <demaille@gostai.com>
2064
2065 Update the variant example.
2066 * examples/variant.yy: Formatting changes.
2067 One stage build.
2068
2069 2008-11-10 Akim Demaille <demaille@gostai.com>
2070
2071 Support constructor with an argument.
2072 This improves the "list" bench by 2%.
2073
2074 * data/lalr1.cc (variant::build): Add an overloaded version with
2075 an argument.
2076 * tests/c++.at (AT_CHECK_VARIANT): Check it.
2077
2078 2008-11-10 Akim Demaille <demaille@gostai.com>
2079
2080 Test variants.
2081 * tests/c++.at (AT_CHECK_VARIANTS): New.
2082 Use it with and without %define assert.
2083
2084 2008-11-10 Akim Demaille <demaille@gostai.com>
2085
2086 Add %precedence support.
2087 Unfortunately it is not possible to reuse the %prec directive. This
2088 is because to please POSIX, we do not require to end the rules with a
2089 semicolon. As a result,
2090
2091 foo: bar %prec baz
2092
2093 is ambiguous: either a rule which precedence is that of baz, or a rule,
2094 and then a declaration of the precedence of the token baz.
2095
2096 * doc/bison.texinfo: Document %precedence.
2097 (Precedence Only): New.
2098 * src/assoc.h, src/assoc.c (precedence_assoc): New.
2099 * src/conflicts.c (resolve_sr_conflict): Support it.
2100 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
2101 Parse it.
2102 * tests/calc.at: Use %precedence for NEG.
2103 * tests/conflicts.at (%precedence does not suffice)
2104 (%precedence suffices): New tests.
2105
2106 2008-11-09 Akim Demaille <demaille@gostai.com>
2107
2108 Make benches in a sub dirs.
2109 * etc/bench.pl.in ($dir): New.
2110 Use it.
2111 Check the use of constructors with an argument.
2112 (bench_variant_parser): Fix.
2113
2114 2008-11-09 Akim Demaille <demaille@gostai.com>
2115
2116 fix eof condition
2117
2118 2008-11-09 Akim Demaille <demaille@gostai.com>
2119
2120 Fix --help.
2121
2122 2008-11-09 Akim Demaille <demaille@gostai.com>
2123
2124 Require the generation of parse-gram.output.
2125 * src/Makefile.am (YACC): Pass --report=all.
2126
2127 2008-11-09 Akim Demaille <demaille@gostai.com>
2128
2129 Formatting changes.
2130
2131 2008-11-09 Akim Demaille <demaille@gostai.com>
2132
2133 Update TODO.
2134 * TODO: Remove obsolete items.
2135 Update others.
2136
2137 2008-11-09 Akim Demaille <demaille@gostai.com>
2138
2139 Enhance bench.pl.
2140 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
2141 (@token, $grammar, $bench): New.
2142 (generate_grammar_variant): Rename as...
2143 (generate_grammar_list): this.
2144 (generate_grammar): Adjust.
2145 (bench_grammar): Rename as...
2146 (bench): this.
2147 Use it in the various bench-marking routines.
2148 (-b, -g): New options.
2149
2150 2008-11-09 Akim Demaille <demaille@gostai.com>
2151
2152 Use a static hierarchy for symbols in the C++ parser.
2153 * data/lalr1.cc (symbol_base_type, symbol_type)
2154 (stack_symbol_type): Make it a static hierarchy.
2155 Adjust dependencies.
2156
2157 2008-11-09 Akim Demaille <demaille@gostai.com>
2158
2159 bench.pl -d, --directive.
2160 * etc/bench.pl.in (@directive): New.
2161 (&bench_grammar): Use it.
2162 (&bench_list_grammar): New, to provide access to the "variant"
2163 grammar.
2164 Use it.
2165 (getopts): Support -d, --directive.
2166
2167 2008-11-09 Akim Demaille <demaille@gostai.com>
2168
2169 Use inline for small operations.
2170 * data/lalr1.cc (symbol_base_type, symbol_type)
2171 (stack_symbol_type): Declare constructor and other operations as
2172 inline.
2173 (yy_destroy_): Inline.
2174
2175 2008-11-09 Akim Demaille <demaille@gostai.com>
2176
2177 Introduce a hierarchy for symbols.
2178 * data/lalr1.cc (symbol_base_type, symbol_type): New.
2179 (data_type): Rename as...
2180 (stack_symbol_type): this.
2181 Derive from symbol_base_type.
2182 (yy_symbol_value_print_): Merge into...
2183 (yy_symbol_print_): this.
2184 Rename as...
2185 (yy_print_): this.
2186 (yydestruct_): Rename as...
2187 (yy_destroy_): this.
2188 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
2189 (parser::parse): yyla is now of symbol_type.
2190 Use its type member instead of yytoken.
2191
2192 2008-11-09 Akim Demaille <demaille@gostai.com>
2193
2194 Rename data_type and stack_symbol_type.
2195 * data/lalr1.cc (data_type): Rename as...
2196 (stack_symbol_type): this.
2197
2198 2008-11-09 Akim Demaille <demaille@gostai.com>
2199
2200 Handle semantic value and location together.
2201 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
2202 yydata.value and yydata.location.
2203 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
2204 (YY_SYMBOL_PRINT): Now take semantic value and location as a
2205 single arg.
2206 Adjust all callers.
2207 (yydestruct_): New overload for a stack symbol.
2208
2209 2008-11-09 Akim Demaille <demaille@gostai.com>
2210
2211 Push a complete symbol, not connected parts.
2212 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
2213 state, value and location.
2214 Adjust callers.
2215
2216 2008-11-09 Akim Demaille <demaille@gostai.com>
2217
2218 Agregate yylval and yylloc.
2219 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
2220 (parser::yyla): this.
2221
2222 2008-11-09 Akim Demaille <demaille@gostai.com>
2223
2224 Rely on the state stack to display reduction traces.
2225 To display rhs symbols before a reduction, we used information
2226 about the rule reduced, which required the tables yyrhs and
2227 yyprhs. Now use rely only on the state stack to get the same
2228 information.
2229
2230 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
2231 Use them.
2232 (parser::yyrhs_, parser::yyprhs_): Remove.
2233 (parser::yy_reduce_print_): Use the state stack.
2234
2235 2008-11-09 Akim Demaille <demaille@gostai.com>
2236
2237 Fuse yyval and yyloc into yylhs.
2238 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
2239 yylhs.
2240 (parse): Replace yyval and yyloc with yylhs.value and
2241 yylhs.location.
2242 After a user action, compute yylhs.state earlier.
2243 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
2244 fresh error_token.
2245
2246 2008-11-09 Di-an Jan <dianj@freeshell.org>
2247
2248 Remove unused variable.
2249 * src/output.c (type_names_output): Remove unused variable sep.
2250
2251 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
2252
2253 Change tests/output.at quoting.
2254 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
2255 expanding arguments.
2256
2257 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2258
2259 Don't add a semicolon to actions for %skeleton or %language.
2260 It breaks Java test cases as reported by Akim Demaille.
2261 * src/scan-code.l: Implement.
2262
2263 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2264
2265 Clean up %skeleton and %language priority implementation.
2266 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2267 remove static qualifier because others will soon need to see it.
2268 (language_prio): Likewise.
2269 (getargs): Use command_line_prio rather than 0.
2270 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2271 enum fields.
2272 (skeleton_prio): Extern it.
2273 (language_prio): Extern it.
2274 * src/parse-gram.y: Use grammar_prio rather than 1.
2275
2276 2008-11-07 Akim Demaille <demaille@gostai.com>
2277
2278 Moving push traces into yypush_.
2279 * data/lalr1.cc (yypush_): Now takes a optional trace message.
2280 Adjust all uses.
2281
2282 2008-11-07 Akim Demaille <demaille@gostai.com>
2283
2284 The single-stack C++ parser is now the standard one.
2285 * data/lalr1.cc: Rename as...
2286 * data/lalr1-split.cc: this.
2287 * data/lalr1-fusion.cc: Rename as...
2288 * data/lalr1.cc: this.
2289 * etc/bench.pl.in: Adjust.
2290
2291 2008-11-07 Akim Demaille <demaille@gostai.com>
2292
2293 Avoid empty-if warnings.
2294 Reported by Quentin Hocquet.
2295
2296 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
2297 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
2298
2299 2008-11-07 Akim Demaille <demaille@gostai.com>
2300
2301 Pass command line location to skeleton_arg and language_argmatch.
2302 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2303 The location argument is now mandatory.
2304 Adjust all dependencies.
2305 (getargs): Use command_line_location.
2306
2307 2008-11-07 Akim Demaille <demaille@gostai.com>
2308
2309 -D, --define.
2310 * src/getargs.c (usage): Document -D.
2311 Fix help string for --locations.
2312 (command_line_location): New.
2313 (short_options, long_options, getargs): Support -D, --define.
2314 (getargs): Move -d support at the right place.
2315 * doc/bison.texinfo (Bison Options): Update.
2316 * tests/input.at (%define, --define): New.
2317
2318 2008-11-07 Akim Demaille <demaille@gostai.com>
2319
2320 Initialize the muscle table before parsing the command line.
2321 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2322 (getargs): Define file_name.
2323 * src/main.c (main): Initialize muscle_tab before calling
2324 getargs.
2325 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2326 its value is not available yet.
2327
2328 2008-11-07 Akim Demaille <demaille@gostai.com>
2329
2330 Locations without columns for command line arguments.
2331 * src/location.c (location_print): Don't display negative columns.
2332 * src/location.h: Document this.
2333
2334 2008-11-07 Akim Demaille <demaille@gostai.com>
2335
2336 Fix --help.
2337 * src/getargs.c (usage): Fix help string for -W.
2338
2339 2008-11-07 Akim Demaille <demaille@gostai.com>
2340
2341 Handle more general types of option arguments.
2342 * build-aux/cross-options.pl: The argument ends at the first
2343 space, not the first non-symbol character.
2344 Use @var for each word appearing the argument description.
2345
2346 2008-11-07 Akim Demaille <demaille@gostai.com>
2347
2348 Destroy the variants that remain on the stack in case of error.
2349 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
2350 destructor.
2351 Display the value only if yymsg is nonnull.
2352 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
2353
2354 2008-11-07 Akim Demaille <demaille@gostai.com>
2355
2356 Add "%define assert" to variants.
2357 This is used to help the user catch cases where some value gets
2358 ovewritten by a new one. This should not happen, as this will
2359 probably leak.
2360
2361 Unfortunately this uncovered a bug in the C++ parser itself: the
2362 lookahead value was not destroyed between two calls to yylex. For
2363 instance if the previous lookahead was a std::string, and then an int,
2364 then the value of the std::string was correctly taken (i.e., the
2365 lookahead was now an empty string), but std::string structure itself
2366 was not reclaimed.
2367
2368 This is now done in variant::build(other&) (which is used to take the
2369 value of the lookahead): other is not only stolen from its value, it
2370 is also destroyed. This incurs a new performance penalty of a few
2371 percent, and union becomes faster again.
2372
2373 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
2374 (b4_variant_if): New.
2375 (variant::built): New.
2376 Use it whereever the status of the variant changes.
2377 * etc/bench.pl.in: Check the penalty of %define assert.
2378
2379 2008-11-07 Akim Demaille <demaille@gostai.com>
2380
2381 Use "%define variant" in bench.pl.
2382 * etc/bench.pl.in: No longer use the pseudo directive %variants,
2383 just use %define variants.
2384
2385 2008-11-07 Akim Demaille <demaille@gostai.com>
2386
2387 Regen.
2388 * src/parse-gram.h, src/parse-gram.c: Regen.
2389
2390 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2391
2392 Fix user actions without a trailing semicolon.
2393 Reported by Sergei Steshenko at
2394 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2395 * THANKS (Sergei Steshenko): Add.
2396 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2397 * tests/regression.at (Fix user actions without a trailing semicolon):
2398 New test case.
2399
2400 2008-11-04 Akim Demaille <demaille@gostai.com>
2401
2402 Use b4_copyright_years.
2403 * data/yacc.c (b4_copyright_years): New.
2404 Fix its value according to the comments in the file.
2405 Use it and undefine it.
2406
2407 2008-11-04 Akim Demaille <demaille@gostai.com>
2408
2409 Formatting changes.
2410 * data/lalr1-fusion.cc, src/parse-gram.y: here.
2411
2412 2008-11-04 Akim Demaille <demaille@gostai.com>
2413
2414 Formatting changes.
2415 * data/lalr1-fusion.cc: here.
2416
2417 2008-11-04 Akim Demaille <demaille@gostai.com>
2418
2419 Use strict on bench.pl.
2420 * etc/bench.pl.in (&run, &generate_grammar): New.
2421 Rename the grammar generating functions for consistency.
2422 Change the interface so that the list of benches to run is passed
2423 as (optionless) arguments.
2424 (&compile): Use &run.
2425
2426 2008-11-04 Akim Demaille <demaille@gostai.com>
2427
2428 Remove spurious initial empty lines.
2429 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2430 * data/yacc.c: End the @output lines with an @.
2431
2432 2008-11-04 Akim Demaille <demaille@gostai.com>
2433
2434 Improve the display of sizes.
2435 * etc/bench.p.in: Higher precision.
2436 Sort by decreasing size.
2437
2438 2008-11-04 Akim Demaille <demaille@gostai.com>
2439
2440 Don't memcpy C++ structures.
2441 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
2442 arguments.
2443 (variant::build): New overload for
2444 copy-construction-that-destroys.
2445 (variant::swap): New.
2446 (parser::yypush_): Use it in variant mode.
2447
2448 2008-11-04 Akim Demaille <demaille@gostai.com>
2449
2450 Better defaults for bench.pl.
2451 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
2452 default values.
2453 Adjust &verbose uses.
2454 (-q, --quiet): New.
2455
2456 2008-11-04 Akim Demaille <demaille@gostai.com>
2457
2458 Make variant.yy more complex.
2459 std::list cannot be copied via memcpy, they are more demanding than
2460 std::string. Use one std::list to strengthen the test.
2461
2462 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
2463 Adjust.
2464 Create a list of strings, instead of a single large string.
2465
2466 2008-11-04 Akim Demaille <demaille@gostai.com>
2467
2468 bench.pl --bench.
2469 * etc/bench.pl.in (--bench, $bench): New.
2470
2471 2008-11-04 Akim Demaille <demaille@gostai.com>
2472
2473 Sort methods.
2474 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
2475 Define it after as().
2476
2477 2008-11-04 Akim Demaille <demaille@gostai.com>
2478
2479 Useless parens.
2480 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
2481
2482 2008-11-04 Akim Demaille <demaille@gostai.com>
2483
2484 Issue missing synclines after user actions.
2485 * data/c.m4 (b4_case): Issue synclines on the output file.
2486
2487 2008-11-04 Akim Demaille <demaille@gostai.com>
2488
2489 Remove trailing empty line.
2490 * data/lalr1-fusion.cc: Don't add an empty line after the user's
2491 epilogue.
2492
2493 2008-11-04 Akim Demaille <demaille@gostai.com>
2494
2495 Fix output of copyright years.
2496 * data/bison.m4 (b4_copyright): Fix the indentation of the
2497 copyright year paragraph.
2498 Use b4_copyright_years when no years are given.
2499 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
2500 (b4_copyright_years): New.
2501 Use it.
2502
2503 2008-11-04 Akim Demaille <demaille@gostai.com>
2504
2505 Avoid the spurious initial empty line.
2506 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
2507 the end of @output request to suppress the empty line that
2508 results.
2509
2510 2008-11-04 Akim Demaille <demaille@gostai.com>
2511
2512 Remove parser::rhs_number_type.
2513 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
2514 (yyrhs_): Use b4_table_define.
2515
2516 2008-11-04 Akim Demaille <demaille@gostai.com>
2517
2518 Fix iteration type.
2519 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
2520
2521 2008-11-04 Akim Demaille <demaille@gostai.com>
2522
2523 Factor the declaration of the integer tables.
2524 * data/lalr1-fusion.cc (b4_table_define): New.
2525 Use it.
2526
2527 2008-11-03 Akim Demaille <demaille@gostai.com>
2528
2529 Fix indentation of tables in lalr1.cc
2530 * data/lalr1-fusion.cc: Fix the indentation.
2531
2532 2008-11-03 Akim Demaille <demaille@gostai.com>
2533
2534 Destroy the lhs symbols after reduction.
2535 * data/lalr1-fusion.cc (parse): After the user action, when in
2536 variant mode, destroy the lhs symbols.
2537
2538 2008-11-03 Akim Demaille <demaille@gostai.com>
2539
2540 Simplify yysyntax_error_ use.
2541 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
2542 type, but make it unnamed in the declaration when it is not used.
2543
2544 2008-11-03 Akim Demaille <demaille@gostai.com>
2545
2546 Let yy::variant::build return an lvalue.
2547 * data/lalr1-fusion.cc (variant::build): Return a reference to the
2548 object.
2549
2550 2008-11-03 Akim Demaille <demaille@gostai.com>
2551
2552 Define yy::variant only when needed.
2553 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
2554 used.
2555
2556 2008-11-03 Akim Demaille <demaille@gostai.com>
2557
2558 Bench the three-stack lalr1.cc.
2559 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
2560 one-stack one.
2561
2562 2008-11-03 Akim Demaille <demaille@gostai.com>
2563
2564 Fail on parse error in calc++.
2565 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
2566 status.
2567 * examples/calc++/test ($me, $number, $exit, run): New.
2568 Use them to propagate errors to the exit status.
2569
2570 2008-11-03 Akim Demaille <demaille@gostai.com>
2571
2572 Don't specify the skeleton twice in the example.
2573 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
2574 file does what is needed.
2575
2576 2008-11-03 Akim Demaille <demaille@gostai.com>
2577
2578 bench: Improve output.
2579 * etc/bench.pl.in (bench_grammar): Tune the printf format.
2580
2581 2008-11-03 Akim Demaille <demaille@gostai.com>
2582
2583 bench: check impact of %debug on variants.
2584 * etc/bench.pl.in (variant_grammar): Fix the computation of
2585 $variant.
2586 Generate a grammar file that can work with or without %debug.
2587 Do use the @directive.
2588 (bench_variant_parser): Check impact of %debug.
2589 (@directives): Rename all the occurrences to...
2590 (@directive): this, for consistency.
2591
2592 2008-11-03 Akim Demaille <demaille@gostai.com>
2593
2594 bench: report the size too.
2595 * etc/bench.pl.in ($iterations): Defaults to -3.
2596 (&bench_grammar): Require hireswallclock.
2597 Compute and display the size of the result.
2598 More comments.
2599
2600 2008-11-03 Akim Demaille <demaille@gostai.com>
2601
2602 bench: More use of the verbosity level.
2603 * etc/bench.pl.in ($verbose, &verbose): New.
2604 Use them.
2605 More POD documentation.
2606
2607 2008-11-03 Akim Demaille <demaille@gostai.com>
2608
2609 bench.pl: a command line interface
2610 * etc/bench.pl.in: More doc.
2611 Some fixes in the documentation.
2612 ($cflags, $iterations, &help, &getopt): New.
2613 Use them.
2614 (&variant_grammar): Let the number of stages be 10 times what is
2615 specified.
2616
2617 2008-11-03 Akim Demaille <demaille@gostai.com>
2618
2619 Bench the use of Boost.Variants.
2620 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
2621 New.
2622 (&compile): Be ready to compile C++ parsers.
2623 (&bench_push_parser): Move debug information to the outermost
2624 level.
2625 * THANKS: Add Michiel De Wilde.
2626
2627 2008-11-03 Akim Demaille <demaille@gostai.com>
2628
2629 bench.pl: Pass directives as a list instead of as a string.
2630 * etc/bench.pl.in (&directives): New.
2631 (&triangular_grammar, &calc_grammar): Use it to format the Bison
2632 directives.
2633 (&triangular_grammar): Do use the directives (were ignored).
2634 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
2635 directives.
2636
2637 2008-11-03 Akim Demaille <demaille@gostai.com>
2638
2639 Improve genericity of bench.pl.
2640 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
2641 argument.
2642 (&bench_push_parser): New.
2643 Call it.
2644
2645 2008-11-03 Akim Demaille <demaille@gostai.com>
2646
2647 Add documentation to bench.pl.
2648 * etc/bench.pl.in: Comment changes.
2649
2650 2008-11-03 Akim Demaille <demaille@gostai.com>
2651
2652 Fuse the three stacks into a single one.
2653
2654 In order to make it easy to perform benchmarks to ensure that
2655 there are no performance loss, lalr1.cc is forked into
2656 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
2657 lalr1.cc.
2658
2659 Meanwhile, to make sure that lalr1-fusion.cc is correctly
2660 exercized by the test suite, the user must install a symbolic link
2661 from lalr1.cc to it.
2662
2663 Instead of having three stacks (state, value, location), use a
2664 stack of triples. This considerably simplifies the code (and it
2665 will be easier not to require locations as currently does the C++
2666 parser), and also gives a 10% speedup according to
2667 etc/bench (probably mainly since memory allocation is done once
2668 instead of three times).
2669
2670 Another motivation is to make it easier to destruct properly
2671 semantic values: now that they are bound to their state (hence
2672 symbol type) it will be easier to call the appropriate destructor.
2673
2674 These changes should probably benefit the C parser too.
2675
2676 * data/lalr1.cc: Copy as...
2677 * data/lalr1-fusion.cc: this new file.
2678 (b4_rhs_value, b4_rhs_location): New definitions overriding those
2679 from c++.m4.
2680 (state_stack_type, semantic_stack_type, location_stack_type)
2681 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
2682 (data_type, stack_type, yystack_): New.
2683 (YYLLOC_DEFAULT, yypush_): Adjust.
2684 (yyerror_range): Now based on data_type, not location_type.
2685
2686 2008-11-03 Akim Demaille <demaille@gostai.com>
2687
2688 Push the state, value, and location at the same time.
2689 This is needed to prepare a forthcoming patch that fuses the three
2690 stacks into one.
2691
2692 * data/lalr1.cc (parser::yypush_): New.
2693 (parser::yynewstate): Change the semantics: instead of arriving to
2694 this label when value and location have been pushed, but yystate
2695 is to be pushed on the state stack, now the three of them must
2696 have been pushed before. yystate still must be the new state.
2697 This allows to use yypush_ everywhere instead of individual
2698 handling of the stacks.
2699
2700 2008-11-03 Akim Demaille <demaille@gostai.com>
2701
2702 Prefer references to pointers.
2703 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
2704 definition to use references instead of pointers.
2705 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
2706 Take the value and location as references.
2707 Adjust callers.
2708
2709 2008-11-03 Akim Demaille <demaille@gostai.com>
2710
2711 stack::size instead of stack::height.
2712 * data/lalr1.cc (stack::height): Rename as...
2713 (stack::size): this.
2714 Fix the output type.
2715 Comment changes.
2716
2717 2008-11-03 Akim Demaille <demaille@gostai.com>
2718
2719 Use variants to support objects as semantic values.
2720 This patch was inspired by work by Michiel De Wilde. But he used
2721 Boost variants which (i) requires Boost on the user side, (ii) is
2722 slow, and (iii) has useless overhead (the parser knows the type of
2723 the semantic value there is no reason to duplicate this
2724 information as Boost.Variants do).
2725
2726 This implementation reserves a buffer large enough to store the
2727 largest objects. yy::variant implements this buffer. It was
2728 implemented with Quentin Hocquet.
2729
2730 * src/output.c (type_names_output): New.
2731 (output_skeleton): Invoke it.
2732 * data/c++.m4 (b4_variant_if): New.
2733 (b4_symbol_value): If needed, provide a definition for variants.
2734 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
2735 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
2736 (b4_char_sizeof, yy::variant): New.
2737 (parser::parse): If variants are requested, define
2738 parser::union_type, parser::variant, change the definition of
2739 semantic_type, construct $$ before running the user action instead
2740 of performing a default $$ = $1.
2741 * examples/variant.yy: New.
2742 Based on an example by Michiel De Wilde.
2743
2744 2008-11-03 Akim Demaille <demaille@gostai.com>
2745
2746 Parameterize the extraction of semantic values.
2747 To make future changes easier, no longer rely on ".TYPE" being the
2748 way to get a semantic value.
2749
2750 * data/c.m4 (b4_symbol_value): New.
2751 Use it.
2752 * data/c++.m4, data/yacc.c: Use it.
2753 * data/glr.c: Use b4_symbol_value.
2754 (b4_rhs_data): New.
2755 Use it.
2756
2757 2008-11-03 Akim Demaille <demaille@gostai.com>
2758
2759 Prepare easier M4 changes.
2760 * data/lalr1.cc: Use escaped [] instead of literals to prepare
2761 future changes.
2762
2763 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2764
2765 Initiate further development.
2766 * NEWS: Create an empty section for new entries.
2767 * gnulib: Update submodule to HEAD.
2768
2769 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2770
2771 * NEWS: Version 2.4.
2772
2773 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2774
2775 Prepare for next release.
2776 * NEWS: Briefly mention changes since 2.3b.
2777 * README: Say GNU m4 1.4.6, which we've been requiring in release
2778 announcements already, not 1.4.3, which breaks the build.
2779
2780 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2781
2782 Say %language is experimental.
2783 We're thinking of extending it's effect on output file naming. See the
2784 thread at
2785 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2786 * NEWS: Say it's experimental.
2787 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2788 recommend it over %skeleton for now.
2789 (Bison Options): Likewise.
2790 (C++ Bison Interface): Use %skeleton not %language.
2791 (Calc++ Parser): Use %skeleton not %language.
2792 * src/getargs.c (usage): Say it's experimental.
2793
2794 2008-11-01 Di-an Jan <dianj@freeshell.org>
2795 Paolo Bonzini <bonzini@gnu.org>
2796
2797 Support all Java parser class modifiers.
2798 * data/java.m4 (b4_percent_define_get3): New.
2799 (b4_final_if, b4_strictfp_if): New.
2800 * data/lalr1.java (final, strictfp, extends, implements): Support.
2801 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2802 documentation.
2803 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2804 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2805 (AT_CHECK_JAVA_GREP): New.
2806 (Java parser class modifiers): New test.
2807 (Java parser class extends and implements): New test.
2808
2809 Model exception propagation better with throws and lex_throws.
2810 * data/java.m4 (b4_list2): New.
2811 (throws): Change default.
2812 * data/lalr1.java (yyaction): Add throws.
2813 (parse): Add lex_throws in addition to throws.
2814 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2815 * tests/java.at (Java throws specifications): New test.
2816
2817 Improve documentation for Java parsers.
2818 * doc/bison.texinfo (Java Parsers): Add subsections.
2819 Don't quote first argument of %define.
2820 (Java Bison Interface): Document output files. Move documentation
2821 of parser class and merge into Java Parser Interface. Document
2822 features that error out. Document directives with no effect.
2823 Move note about Javadoc higher.
2824 (Java Semantic Values): Explicitly mention stype.
2825 Document that generic types cannot be used.
2826 (Java Location Values): Use @deftypeivar. Document constructors.
2827 Correct return value for toString.
2828 (Java Parser Interface): List undocumented constants/fields.
2829 Move documentation of fields added by %parse-param closer to list
2830 of members. Document that token names are added as fields.
2831 Document constructors accurately. Remove error method.
2832 (Java Scanner Interface): Move note on %pure-parser to Java Bison
2833 Interface. Describe %code lexer and yylex accutately.
2834 Remove documentation that does not match the code.
2835 (Java Action Features): New.
2836 (Java Differences): Add reference. Add item on semantic values.
2837 Add note about @{ ... @}. Clarify %% epilogue placement.
2838 (Java Declarations Summary): New.
2839
2840 Fix Java skeleton.
2841 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
2842 (b4_remove_comma): Quote test argument.
2843 (b4_identification): Remove "bison" field.
2844 * tests/java.at (Java parser class and package names): New test.
2845 (Java %parse-param and %lex-param): New test.
2846 (Java stype, position_class and location_class): New test.
2847
2848 2008-10-31 Di-an Jan <dianj@freeshell.org>
2849
2850 * data/lalr1.jave: Update copyright years.
2851 (YYParser): Correct name of "generated from" file in Javadoc:
2852 use b4_file_name instead of @ofile@.
2853 (Location constructor): Correct Javadoc parameter name.
2854 (yylloc): Add missing opening m4 quote after b4_location_if.
2855 This removes a stray [ in the Javadoc of Lexer.getStartPos.
2856 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
2857 (YYParser constructor): Correct Javadoc parameter name.
2858
2859 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
2860
2861 Always put auxiliary code files in the same dir as other output files.
2862 * src/files.c (compute_file_name_parts): When the user specifies
2863 --output but not --file-prefix, extract the directory prefix from the
2864 file prefix not from the grammar file name. This affects the location
2865 of files like location.hh generated by the C++ skeleton. The includes
2866 in the other output files require this fix.
2867 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
2868 for expected output files.
2869 (Output files): Add a test for the above.
2870
2871 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
2872
2873 * gnulib: Update submodule to HEAD.
2874
2875 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2876
2877 Update copyright year.
2878 * src/files.c: Here.
2879
2880 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
2881
2882 Don't overwrite the input file.
2883 * src/files.c (output_file_name_check): Fatal error if using input file
2884 for output.
2885 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
2886 argument.
2887 (Conflicting output files): Add test.
2888
2889 2008-10-28 Akim Demaille <demaille@gostai.com>
2890
2891 Space changes.
2892 * data/lalr1.cc: Formatting changes.
2893
2894 2008-10-28 Akim Demaille <demaille@gostai.com>
2895
2896 Don't define debugging functions when !YYDEBUG.
2897 * data/lalr1.cc (debug_stream, set_debug_stream)
2898 (debug_level_type, debug_level, set_debug_level): Don't
2899 declare them when YYDEBUG is not defined.
2900 The implementation are already YYDEBUG-aware.
2901
2902 2008-10-28 Akim Demaille <demaille@gostai.com>
2903
2904 Prefer "continue" for empty loop bodies.
2905 * etc/bench.pl.in: Use "continue" instead of {}.
2906
2907 2008-10-28 Akim Demaille <demaille@gostai.com>
2908
2909 Space and comments changes.
2910 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
2911 * data/c.m4, data/lalr1.cc: Space changes.
2912
2913 2008-10-28 Akim Demaille <demaille@gostai.com>
2914
2915 Make gnulib a submodule.
2916 * gnulib: New.
2917 * .gitmodules (gnulib): New.
2918
2919 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2920
2921 Fix yyerror_range for user-defined location type in C++. Reported by
2922 Georg Sauthoff at
2923 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
2924 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
2925 * THANKS (Georg Sauthoff): Add.
2926
2927 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2928
2929 Update several administrative files mainly to facilitate releasing.
2930 * HACKING (Administrivia): Make the git-merge-changelog notes more
2931 helpful.
2932 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
2933 (Release Procedure): Update for git and add numerous details that were
2934 previously missing.
2935 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
2936 * maint.mk (announcement): Don't list bison as a bootstrap tool so
2937 that announcements don't claim we bootstrapped with whatever bison
2938 happened to be in PATH. Add flex as a bootstrap tool.
2939 * Makefile.maint: Remove, previously replaced by maint.mk.
2940 * Makefile.cfg: Remove, and migrate settings to...
2941 * cfg.mk: ... here for the sake of `make announcement'.
2942 * bootstrap.conf (gnulib_modules): Add announce-gen.
2943 * README: Say GNU Bison instead of just Bison. Suggested by Karl
2944 Berry.
2945
2946 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
2947
2948 Small but important bugfixes for the Java skeleton.
2949 * data/lalr1.java (yyerror): Change Location to b4_location_type.
2950 (yy_symbol_print): Call toString on yyvaluep.
2951
2952 2008-08-29 Akim Demaille <demaille@gostai.com>
2953
2954 Clarify UPDATED use.
2955 * doc/bison.texinfo: It refers to the last edition of this file,
2956 not to the release date of Bison.
2957 Reported by Joel E. Denny.
2958
2959 2008-08-29 Akim Demaille <demaille@gostai.com>
2960
2961 * README: Update FAQ pointer.
2962 Reported by Joel E. Denny.
2963
2964 2008-08-27 Eric Blake <ebb9@byu.net>
2965
2966 Resync m4sugar from autoconf.
2967 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
2968 (m4_init): Adjust to latest m4.git changes.
2969 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
2970 effects.
2971 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
2972 (_m4_list_cmp): Reduce side effects.
2973
2974 2008-08-27 Akim Demaille <demaille@gostai.com>
2975
2976 Check yyerrok in calc.at.
2977 * tests/calc.at (calc.y): Use yyerrok on "( error )".
2978 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
2979 expected.
2980
2981 2008-08-27 Akim Demaille <demaille@gostai.com>
2982
2983 Support yyerrok in lalr1.cc.
2984 YYBACKUP is still to import back into lalr1.cc.
2985 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2986
2987 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2988
2989 For maintainer-check*, don't recompile for a $(VERSION) update.
2990 * cfg.mk: New file.
2991 (_is-dist-target): Override the one in GNUmakefile.
2992 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2993
2994 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2995
2996 Update for recent change to gnulib.
2997 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2998 string.h now.
2999
3000 2008-08-15 Eric Blake <ebb9@byu.net>
3001
3002 Remaining m4sugar merge from autoconf.
3003 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3004 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3005 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3006 * src/output.c (output_skeleton): Tell m4 how to find it.
3007
3008 Partial m4sugar merge from autoconf: m4_map.
3009 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3010 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3011 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3012 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3013 for empty list.
3014 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3015 Likewise.
3016 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3017 declares it.
3018
3019 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3020
3021 Keep .version and PACKAGE_VERSION in sync.
3022 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3023 dependency, and add comments justifying this in more detail. Discussed
3024 starting at
3025 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3026
3027 2008-08-06 Eric Blake <ebb9@byu.net>
3028
3029 Partial m4sugar merge from autoconf: m4_shiftn.
3030 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3031 (m4_shift2, m4_shift3): New macros.
3032 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3033 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3034 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3035 * data/java.m4 (b4_remove_comma): Likewise.
3036
3037 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3038 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3039 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3040 (m4_init): Consolidate wrapped text into single m4_wrap.
3041 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3042 in wrapped text.
3043
3044 2008-08-05 Eric Blake <ebb9@byu.net>
3045
3046 Partial m4sugar merge from autoconf: builtins, version.m4.
3047 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3048 (m4_prepend): Remove, as it is unused and inherently quadratic,
3049 whereas m4_append is linear in newer m4.
3050 (m4_mkstemp): New builtin.
3051 (m4_symbols): Make rename conditional.
3052 (m4_version_prereq): Ensure fatal error if used in bison, which
3053 intentionally lacks version.m4.
3054
3055 Fix comments in m4sugar.
3056 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3057
3058 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3059
3060 Update for recent .gitignore fix in Gnulib.
3061 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3062 anchored .gitignore entries.
3063
3064 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3065
3066 Set gnu or gnits strictness.
3067 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3068 development and gnits strictness for releases. Based on Eric Blake's
3069 suggestion at
3070 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3071
3072 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3073
3074 * NEWS: Clarify documentation of %language.
3075
3076 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3077
3078 Support usage of git-merge-changelog.
3079 * .gitattributes: New.
3080 * HACKING: Document usage of git-merge-changelog.
3081 * bootstrap: Install git-merge-changelog entries in .git/config
3082 if appropriate.
3083
3084 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3085
3086 Remove remaining dependence on CVS Id keyword.
3087 * ChangeLog: For the sake of people still using CVS, don't use dollars
3088 when mentioning Id.
3089 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3090 unusual anyway.
3091 * data/xslt/xml2dot.xsl: Likewise.
3092 * data/xslt/xml2text.xsl: Likewise.
3093 * data/xslt/xml2xhtml.xsl: Likewise.
3094 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3095 * doc/Makefile.am (neutralize): Remove, no longer needed.
3096 (.x.1): Don't use neutralize.
3097 (edit): Don't substitute for ID.
3098 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3099
3100 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3101
3102 Fix dependence on computed configure variables.
3103 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3104 $(top_srcdir)/configure.ac so that changes to computed variables, such
3105 as PACKAGE_VERSION, are seen.
3106 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3107
3108 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3109
3110 Update copyright dates for recent changes.
3111 * Makefile.am: Here.
3112 * src/Makefile.am: Here.
3113 * src/reduce.c: Here.
3114 * tests/reduce.at: Here.
3115
3116 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3117
3118 Use git-version-gen for version names between releases.
3119 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3120 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3121 * .prev-version: New.
3122 * .version.in: Remove.
3123 * ChangeLog: Remove the Id previously used for capturing the CVS
3124 revision.
3125 * GNUmakefile: Remove, now copied from Gnulib.
3126 * Makefile.am: Add code suggested by comments in
3127 build-aux/git-version-gen.
3128 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3129 .prev-version, and .version.
3130 * NEWS (2.3b+): Rename to...
3131 (?.?): ... this because we're dropping the "+" version naming scheme,
3132 but, in general, we still can't be sure of our next release name.
3133 * bootstrap: Add a quick hack to remove from .gitignore the
3134 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3135 entry. This should really be fixed in gnulib instead.
3136 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3137 * configure.ac (AC_INIT): Set version name by invoking
3138 build-aux/git-version-gen.
3139 (AC_CONFIG_FILES): Remove .version, now generated by
3140 build-aux/git-version-gen.
3141 * maint.mk: New, copied from coreutils.
3142 * doc/.cvsignore (bison.1): Add.
3143 * doc/.gitignore (/bison.1): Add.
3144 * doc/bison.1: Remove, generated.
3145 * src/.cvsignore (revision.c): Remove.
3146 * src/.gitignore (/revision.c): Remove.
3147 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3148 (BUILT_SOURCES): Remove revision.c.
3149 (revision.c): Remove.
3150 * src/getargs.c (version): Don't print revision after the VERSION.
3151 * src/revision.h: Remove.
3152
3153 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3154
3155 Fix untranslatable composition of sentences. Reported by Goran
3156 Uddeborg at
3157 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3158 * THANKS (Goran Uddeborg): Add.
3159 * src/reduce.c (reduce_print): Report the number of nonterminals and
3160 rules useless in the grammar in separate sentences.
3161 * tests/reduce.at (Useless Rules): Update output.
3162 (Reduced Automaton): Likewise.
3163 (Underivable Rules): Likewise.
3164 (Empty Language): Likewise.
3165
3166 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3167
3168 Fix some .gitignore and .cvsignore problems.
3169 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3170 (insert_vc_ignore): ... this new function, which prepends `/' to all
3171 .gitignore entries before passing them to insert_sorted_if_absent.
3172 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3173 .cvsignore files are maintained even though Bison developers run
3174 bootstrap while using Git.
3175 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3176 unneeded by Bison.
3177 (gnulib): Add.
3178 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3179 unneeded. Reported by Eric Blake.
3180 * lib/.gitignore (/*~): Add.
3181 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3182 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3183 Blake.
3184 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3185
3186 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3187
3188 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3189 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3190 * bootstrap.conf (gnulib_modules): Add unsetenv.
3191 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3192 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3193 (/setenv.m4): Add.
3194 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3195 the first argument because it may become position-dependent, and unset
3196 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3197 Add comments explaining these issues in more detail.
3198
3199 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3200
3201 Add .gitignore everywhere based on .cvsignore.
3202 * .gitignore: New.
3203 * build-aux/.gitignore: New.
3204 * data/.gitignore: New.
3205 * doc/.gitignore: New.
3206 * etc/.gitignore: New.
3207 * examples/.gitignore: New.
3208 * examples/calc++/.gitignore: New.
3209 * lib/.gitignore: New.
3210 * m4/.gitignore: New.
3211 * po/.gitignore: New.
3212 * runtime-po/.gitignore: New.
3213 * src/.gitignore: New.
3214 * tests/.gitignore: New.
3215
3216 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3217
3218 * NEWS (2.3b+): New section, empty for now.
3219 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3220
3221 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3222
3223 * NEWS (2.3b): Update release date since there has been a delay in
3224 getting the announcements and tarballs out.
3225
3226 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3227
3228 * NEWS: Version 2.3b.
3229 * configure.ac (AC_INIT): Likewise.
3230 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3231
3232 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3233
3234 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3235 been doing it for years.
3236 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3237 (Release Procedure): Add FIXME about make alpha being unmaintained.
3238
3239 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3240
3241 * data/yacc.c: Reformat m4 a little for readability.
3242 * src/lalr.c (build_relations): Correct comment.
3243
3244 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3245
3246 DJGPP specific issue.
3247 * djgpp/config.sed: Fixes required to run configure scripts generated
3248 by autoconf 2.62.
3249
3250 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3251
3252 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3253 coordinator@translationproject.org.
3254
3255 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3256
3257 * THANKS: Add Eric Blake.
3258
3259 2008-04-23 Eric Blake <ebb9@byu.net>
3260
3261 Revert prior patch, by working around autoconf regression.
3262 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3263 ("Output file name: ("): Uncomment test.
3264 ("Output file name: )"): Likewise.
3265 Based on an idea from Noah Misch.
3266
3267 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3268
3269 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3270 2.61. Reported by Juan Manuel Guerrero at
3271 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3272 * tests/output.at ("Output file name: ("): Comment out test case for
3273 now.
3274 ("Output file name: )"): Likewise.
3275
3276 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3277
3278 * GNUmakefile: Update git-version-gen invocation so make dist
3279 succeeds.
3280
3281 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3282
3283 Update to the current gnulib CVS repository, and fix trigraph handling
3284 in Bison.
3285 * bootstrap: Update gnulib CVS repository URL.
3286 (symlink_to_dir): Encapsulate the code that guarantees the destination
3287 directory exists into...
3288 (check_dst_dir): ... this new function, and...
3289 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3290 fail when copying files into lib/uniwidth/.
3291 * src/output.c (prepare_symbols): When writing yytname muscles, where
3292 symbol names will be encoded in C-string literals, tell quotearg to
3293 escape trigraphs. This used to be the default in gnulib.
3294 * tests/regression.at (Token definitions): Because of the change in
3295 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3296 escapes trigraphs in symbol names. Thus, yytname no longer has
3297 trigraphs unnecessarily doubly escaped. Update test case output.
3298 Extend test case to be sure Bison's own error messages will no longer
3299 have trigraphs in symbol names unnecessarily escaped once.
3300
3301 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3302
3303 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3304 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3305 * .cvsignore: Add .version.
3306 * .version.in: New.
3307 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3308 * configure.ac (AC_CONFIG_FILES): Add .version.
3309 * build-aux/.cvsignore: Add git-version-gen.
3310
3311 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3312
3313 * NEWS (2.3a+): Mention that -g now takes an argument.
3314 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3315 consistency. Update the -g and -x entries now that they take
3316 arguments. Use brackets to indicate optional arguments.
3317 * src/getargs.c (usage): Explain the relationship between arguments of
3318 long and short options more completely. Document --defines and -d
3319 separately since the former takes an argument but, for POSIX Yacc, the
3320 latter does not.
3321 (short_options): Let -W take an optional argument like --warnings.
3322 (getargs): Sort cases.
3323
3324 2008-02-28 Akim Demaille <demaille@gostai.com>
3325
3326 * doc/bison.texinfo: Fix a few typos.
3327
3328 2008-02-28 Akim Demaille <akim@epita.fr>
3329
3330 * doc/bison.texinfo (Bison Options): Document -W.
3331 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3332
3333 2008-02-28 Akim Demaille <akim@epita.fr>
3334
3335 * src/getargs.c (short_options): Split and sort for readability.
3336 -g and -x take optional arguments, just like their long options.
3337 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3338 understand.
3339 Fix the handling of $opt which resulted in all the argument to be
3340 considered as optional.
3341
3342 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3343
3344 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3345 say its interface is experimental.
3346 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3347 Java.
3348 (Bison Options): In the -L and --language entry, mention Java.
3349 (Java Bison Interface): Say the interface is experimental.
3350 * src/getargs.c (usage): Mention -L and --language.
3351
3352 * NEWS (2.3a+): Say the push parsing interface is experimental.
3353 * doc/bison.texinfo (Push Decl): Likewise.
3354 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3355 (Push Parser Function): Likewise.
3356 (Pull Parser Function): Likewise.
3357 (Parser Create Function): Likewise.
3358 (Parser Delete Function): Likewise.
3359 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3360 yypull_parse, and yypush_parse entries.
3361
3362 * NEWS (2.3a+): Mention XML support, and say the schema is
3363 experimental.
3364 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3365 * src/getargs.c (usage): Say the XML schema is experimental.
3366
3367 * NEWS (2.3a+): Say option instead of flag.
3368
3369 2008-02-21 Wojciech Polak <polak@gnu.org>
3370
3371 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3372 text.
3373
3374 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3375
3376 Fix impure push parser compile error reported by Bob Rossi at
3377 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3378 * data/yacc.c: Clean up whitespace in the output a little.
3379 (yypstate_allocated): Define for impure push parsers regardless of
3380 whether the pull interface is also requested.
3381 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3382 check impure push parsers without the pull interface.
3383
3384 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3385 yyerror takes arguments specified by %parse-param while yypstate_new
3386 does not.
3387 * doc/bison.texinfo (Parser Create Function): Document that
3388 yypstate_new returns 0 for multiple impure parser instances.
3389 * tests/push.at (Push Parsing: Multiple impure instances): Update
3390 expected stderr output.
3391
3392 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3393
3394 * runtime-po/POTFILES.in (push.c): Remove.
3395
3396 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3397
3398 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3399 * data/push.c: Rename to...
3400 * data/yacc.c: ... this, overwriting it.
3401 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3402 `%push-pull-parser' -> `%define api.push_pull "both"'.
3403 Remove old yacc.c tests, and update push.c tests to yacc.c.
3404
3405 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3406
3407 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3408 `"%code top" blocks' instead of `%code "top" blocks'.
3409 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3410 Clean up whitespace in the output a little.
3411
3412 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3413
3414 Fix documentation problems reported by Tim Josling at
3415 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3416 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3417 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3418 integers. Explain the effect of literal string aliases on error
3419 messages. Copy token 0 documentation from the C++ skeleton
3420 documentation.
3421
3422 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3423
3424 Accept a token number in a %left, %right, or %nonassoc for POSIX
3425 conformance. Reported by Tim Josling at
3426 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3427 * NEWS (2.3a+): Mention.
3428 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3429 and code numbers are treated by precedence declarations.
3430 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3431 of symbols.1.
3432 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3433 of symbol.
3434 (symbol.prec): New, just like symbol but allows INT.
3435 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3436 longer holds.
3437 * tests/regression.at (Token number in precedence declaration): New
3438 test case.
3439
3440 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3441
3442 DJGPP specific issues.
3443 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3444 be changed. Copyright timestamp adjusted.
3445 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3446 be changed. Copyright timestamp adjusted.
3447 * djgpp/config.site: Copyright timestamp adjusted.
3448 * djgpp/config_h.sed: Copyright timestamp adjusted.
3449 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3450 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3451 filename translation list.
3452 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3453 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3454 files shall be created. Before trying to use the temp dir where the
3455 environment variable points to check that the dir really exists. If
3456 not default to the cwd as temp dir. Copyright timestamp adjusted.
3457 * djgpp/subpipe.h: Copyright timestamp adjusted.
3458 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3459
3460 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3461
3462 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3463
3464 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3465
3466 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3467 Problem reported by Claudio Saavedra in
3468 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3469
3470 2008-01-05 Wojciech Polak <polak@gnu.org>
3471
3472 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3473 document's title with the input grammar file name.
3474
3475 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3476
3477 Automate regression testing of the XML/XSLT implementation. Discussed
3478 starting at
3479 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3480 * configure.ac (XSLTPROC): New substitution.
3481 * Makefile.am (maintainer-xml-check): New phony target invoking...
3482 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3483 invoking make maintainer-check with BISON_TEST_XML=1.
3484 * tests/atlocal.in (XSLTPROC): New.
3485 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3486 not to report reachable memory when Bison is expected to have a
3487 non-zero exit status and (2) to compare XML/XSLT output with --graph
3488 and --report=all output for every working grammar when
3489 BISON_TEST_XML=1.
3490 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3491 (AT_BISON_CHECK_XML): New.
3492 (AT_QUELL_VALGRIND): New.
3493 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3494 (AT_CHECK): ... don't redefine this since this was the old way to
3495 quell Valgrind.
3496 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3497 AT_BISON_CHECK invocations.
3498 * tests/c++.at: Likewise.
3499 * tests/calc.at: Likewise.
3500 * tests/conflicts.at: Likewise.
3501 * tests/cxx-type.at: Likewise.
3502 * tests/existing.at: Likewise.
3503 * tests/glr-regression.at: Likewise.
3504 * tests/headers.at: Likewise.
3505 * tests/input.at: Likewise.
3506 * tests/java.at: Likewise.
3507 * tests/output.at: Likewise.
3508 * tests/push.at: Likewise.
3509 * tests/reduce.at: Likewise.
3510 * tests/regression.at: Likewise.
3511 * tests/sets.at: Likewise.
3512 * tests/skeletons.at: Likewise.
3513 * tests/synclines.at: Likewise.
3514 * tests/torture.at: Likewise.
3515 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3516 tends to hang xsltproc.
3517 (Big horizontal): Likewise.
3518
3519 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3520
3521 In XML output, remove redundant class attribute on symbol element.
3522 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3523 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3524 look up a symbol to determine whether it's a nonterminal or terminal.
3525 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3526 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3527
3528 Add prec/assoc information to XML output.
3529 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3530 %prec, add a percent_prec attribute.
3531 * src/print-xml.c (print_grammar): For each terminal that has a
3532 precedence or associativity, add a prec or assoc attribute.
3533 (xml_indent): New.
3534 (xml_puts): Use xml_indent.
3535 (xml_printf): Use xml_indent.
3536 * src/print-xml.h (xml_indent): Prototype.
3537
3538 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3539 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3540
3541 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3542
3543 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3544 (bison:ruleByNumber): ... this for clarity.
3545 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3546 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3547 (xsl:template match="reduction"): Update.
3548 (xsl:template match="item"): Update.
3549 (xsl:template match="reduction"): Update.
3550
3551 In the XML output, don't print the list of rules where symbols appear.
3552 Compute it in XSLT instead. Discussed at
3553 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3554 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3555 (bison:ruleByRhs): New.
3556 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3557 bison:ruleByRhs.
3558 (xsl:template match="terminal/rule"): Remove.
3559 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3560 bison:ruleByRhs.
3561 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3562 Remove.
3563 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3564 bison:ruleByRhs and mode="number-link" for rule template.
3565 (xsl:template match="terminal/rule"): Remove.
3566 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3567 bison:ruleByRhs and mode="number-link" for rule template.
3568 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3569 Rewrite as...
3570 (xsl:template match="rule" mode="number-link"): ... this.
3571 * src/print-xml.c (print_grammar): Don't print the list of rules.
3572
3573 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3574
3575 Don't let --report affect XML output; always print all information.
3576 Discussed at
3577 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3578 * src/conflicts.c (log_resolution): Implement.
3579 * src/print-xml.c (print_core): Implement.
3580 (print_state): Implement.
3581 (print_xml): Implement.
3582
3583 * NEWS (2.3a+): Fix quotes.
3584 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3585 don't let %verbose clear the list specified by --report.
3586
3587 2007-11-26 Akim Demaille <akim@epita.fr>
3588
3589 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3590
3591 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3592
3593 In the XML output, list useless and unused symbols and rules with the
3594 useful ones and add a "usefulness" attribute. Discussed starting at
3595 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3596 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3597 (grammar_rules_print_xml): Print all rules instead of just those
3598 useful in the grammar, and add a "usefulness" attribute.
3599 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3600 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3601 (print_grammar): Print all nonterminals instead of just useful ones,
3602 and add a "usefulness" attribute to nonterminals and terminals.
3603 (print_xml): Don't print a separate "reductions" or
3604 "rules-useless-in-parser" element.
3605 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3606 (reduce_xml): Remove.
3607 (reduce_token_unused_in_grammar): New.
3608 (reduce_nonterminal_useless_in_grammar): New.
3609 * src/reduce.h (reduce_xml): Remove prototype.
3610 (reduce_token_unused_in_grammar): Add prototype.
3611 (reduce_nonterminal_useless_in_grammar): Add prototype.
3612 * data/xslt/xml2text.xsl: Update for XML changes.
3613 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3614 * tests/reduce.at (Useless Terminals): Update output.
3615 (Useless Rules): Update output.
3616 (Reduced Automaton): Update output.
3617
3618 Say "Terminals unused in grammar" instead of "Unused terminals".
3619 * NEWS (2.3a+): Update.
3620 * doc/bison.texinfo (Understanding): Update example output.
3621 * src/reduce.c (reduce_output): Implement.
3622 * data/xslt/xml2text.xsl: Implement.
3623 * data/xslt/xml2xhtml.xsl: Implement.
3624
3625 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3626
3627 Accept --report-file=FILE to override the default `.output' filename.
3628 * NEWS (2.3a+): Mention.
3629 * doc/bison.texinfo (Bison Options): Add an entry.
3630 * src/files.c (compute_output_file_names): Don't override
3631 spec_verbose_file if already set.
3632 * src/getargs.c (usage): Document --report-file.
3633 (REPORT_FILE_OPTION): New anonymous enum member.
3634 (long_options): Add entry for it.
3635 (getargs): Add case for it setting spec_verbose_file.
3636
3637 * build-aux/cross-options.pl: Don't record a short option just because
3638 there's an arg.
3639 * doc/.cvsignore: Add yacc.1.
3640
3641 2007-11-14 Akim Demaille <akim@epita.fr>
3642
3643 * doc/yacc.1.in: New.
3644 * configure.ac, doc/Makefile.am: Adjust.
3645 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3646 config.h symbol.
3647 Use AC_SUBST for assignments too.
3648 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3649
3650 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3651
3652 * src/gram.c: Remove comments that duplicate comments in gram.h.
3653
3654 When reporting useless rules and nonterminals, say "useless in grammar"
3655 instead of "useless", and say "useless in parser" instead of "never
3656 reduced". Discussed starting at
3657 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3658 * NEWS (2.3a+): Mention this change.
3659 * data/xslt/xml2text.xsl: Update output text and expected input XML
3660 element names to match changes below.
3661 * data/xslt/xml2xhtml.xsl: Likewise.
3662 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3663 Contents: "Rules useless in parser due to conflicts".
3664 * doc/bison.texinfo (Decl Summary): Reword a little.
3665 (Understanding): Update example output for changes below.
3666 * src/gram.c: (rule_useful_p): Rename to...
3667 (rule_useful_in_grammar_p): ... this.
3668 (rule_useless_p): Rename to...
3669 (rule_useless_in_grammar_p): ... this.
3670 (rule_never_reduced_p): Rename to...
3671 (rule_useless_in_parser_p): ... this.
3672 (grammar_rules_print): Update for renames.
3673 (grammar_rules_print_xml): Update for renames.
3674 (grammar_rules_never_reduced_report): Rename to...
3675 (grammar_rules_useless_report): ... this since it is used for either
3676 kind of useless rule.
3677 * src/gram.h: Reword comments and update function names in prototypes.
3678 * src/main.c (main): Say "rule useless in parser due to conflicts".
3679 * src/print-xml.c (print_rules_never_reduced): Rename to...
3680 (print_rules_useless_in_parser): ... this, and rename output XML
3681 element "rules-never-reduced" to "rules-useless-in-parser".
3682 (print_xml): Update for rename.
3683 * src/print.c (print_results): Say "Rules useless in parser due to
3684 conflicts".
3685 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3686 (nonterminals_reduce): Say "nonterminal useless in grammar".
3687 (reduce_output): Say "Nonterminals useless in grammar".
3688 Say "Rules useless in grammar".
3689 (reduce_xml): Rename output XML element "useless" to
3690 "useless-in-grammar".
3691 (reduce_print): Don't report the count of grammatically useless rules
3692 as "rules never reduced" just because %yacc is specified.
3693 In the correct report of this count, say nonterminal(s) and rule(s)
3694 "useless in grammar".
3695 * tests/conflicts.at (S/R in initial): Update expected output.
3696 (Defaulted Conflicted Reduction): Likewise.
3697 (Unreachable States After Conflict Resolution): Likewise.
3698 * tests/existing.at (GNU pic Grammar): Likewise.
3699 * tests/reduce.at (Useless Nonterminals): Likewise.
3700 (Useless Rules): Likewise.
3701 (Reduced Automaton): Likewise.
3702 (Underivable Rules): Likewise.
3703 (Empty Language): Likewise.
3704
3705 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3706
3707 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3708 here document and before the EOF so that BSD's implementation of Bourne
3709 shell doesn't parse the delimiter as part of the here document.
3710 * doc/.cvsignore: Add cross-options.texi.
3711 * src/getargs.c (usage): Add a blank line after the warning categories.
3712
3713 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
3714
3715 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3716
3717 2007-11-05 Akim Demaille <akim@epita.fr>
3718
3719 Remove Id: from bison.1.
3720 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3721 (perl -0777 -pi -e 's/\.PP\nId): New.
3722 (.x.1): Use it to ignore the version control revision.
3723
3724 2007-11-05 Akim Demaille <demaille@gostai.com>
3725
3726 * build-aux/Makefile.am: Ship cross-options.pl.
3727 * doc/Makefile.am: Always refer to cross-options.texi with
3728 $(srcdir).
3729 (MAINTAINERCLEANFILES): Add it.
3730
3731 2007-11-04 Akim Demaille <demaille@gostai.com>
3732
3733 Generate the long/short option cross-table.
3734 * build-aux/cross-options.pl: New.
3735 * doc/Makefile.am (cross-options.texi): New.
3736 * doc/bison.texinfo: Use it.
3737
3738 2007-11-04 Akim Demaille <demaille@gostai.com>
3739
3740 Generate bison.1 using help2man.
3741 * doc/common.x, doc/bison.x: New.
3742 * doc/Makefile.am (bison.1, .x.1): New.
3743 The code is taken from autoconf-2.61/man/Makefile.am.
3744 * configure.ac: Look for help2man.
3745
3746 2007-11-04 Akim Demaille <demaille@gostai.com>
3747
3748 Complete --help.
3749 * src/getargs.c (usage): Document -W, make it clear that -d,
3750 -g and -x have optional arguments.
3751
3752 2007-11-04 Akim Demaille <demaille@gostai.com>
3753
3754 Find sha1sum when named gsha1sum.
3755 * bootstrap (find_tool): New.
3756 ($SHA1SUM): New.
3757
3758 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3759
3760 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3761 at
3762 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3763 * NEWS (2.3a+): Mention.
3764 * data/bison.m4 (b4_pure_if): Don't define it here.
3765 * data/c.m4 (b4_identification): Depend on individual skeletons to
3766 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3767 values of the %define variables api.pure or api.push_pull. Define
3768 YYPURE, YYPUSH, and YYPULL accordingly.
3769 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3770 glr.cc has already defined b4_pure_flag.
3771 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3772 Remove YYPUSH and YYPULL since they're back in b4_identification again.
3773 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
3774 * doc/bison.texinfo (Pure Decl): Update.
3775 (Push Decl): Update.
3776 (Decl Summary): Add api.pure to %define entry.
3777 In %pure-parser entry, say it's deprecated and reference %define.
3778 (Pure Calling): Update.
3779 (Error Reporting): Update.
3780 (C++ Scanner Interface): Update.
3781 (How Can I Reset the Parser): Update.
3782 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3783 reference %define.
3784 * src/getargs.c (pure_parser): Remove global variable.
3785 * src/getargs.h (pure_parser): Remove extern.
3786 * src/output.c (prepare): Don't define pure_flag muscle.
3787 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3788 wrapper around `%define api.pure'.
3789 * tests/calc.at (Simple LALR Calculator): Update.
3790 (Simple GLR Calculator): Update.
3791 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3792 Update.
3793 (GLR: Resolve ambiguity, pure, locations): Update.
3794 (GLR: Merge conflicting parses, pure, no locations): Update.
3795 (GLR: Merge conflicting parses, pure, locations): Update.
3796 * tests/glr-regression.at (Uninitialized location when reporting
3797 ambiguity): Update
3798 * tests/input.at (Unused %define api.pure): New test case.
3799 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3800 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3801 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3802
3803 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3804
3805 %define push_pull -> %define api.push_pull. Discussed starting at
3806 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3807 * data/push.c: Expect the new name.
3808 * data/yacc.c: Likewise.
3809 * doc/bison.texinfo (Push Decl): Update.
3810 (Decl Summary): Update %define entry.
3811 (Push Parser Function): Update.
3812 (Pull Parser Function): Update.
3813 (Parser Create Function): Update.
3814 (Parser Delete Function): Update.
3815 * tests/calc.at (Simple LALR Calculator): Update.
3816 * tests/input.at (%define enum variables): Update.
3817 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3818 (Push Parsing: Multiple impure instances): Update.
3819 (Push Parsing: Unsupported Skeletons): Update.
3820 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3821 (Exploding the Stack Size with Malloc): Update.
3822
3823 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3824 other entries some.
3825
3826 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3827
3828 For the XML output's terminal element, rename @number to @token-number,
3829 and add @symbol-number. In the nonterminal element, rename @number to
3830 @symbol-number. Discussed starting at
3831 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
3832 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
3833 renames.
3834 (xsl:template match="nonterminal"): Likewise.
3835 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
3836 (xsl:template match="nonterminal"): Likewise.
3837 * src/print-xml.c (print_grammar): Implement.
3838
3839 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3840
3841 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
3842 2007-10-11 change, the child elements here are items not rules.
3843 (xsl:template match="item"): New.
3844 (xsl:template match="rule"): Update for new reduced itemset.
3845 (xsl:template match="point"): Remove.
3846 (xsl:template match="empty"): For consistency with --graph, don't
3847 output "/* empty */".
3848 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
3849 line-wrap, don't pass a negative value as first-line-length since this
3850 won't work with the following changes.
3851 (xsl:template name="line-wrap"): Simplify slightly.
3852 (xsl:template name="ws-search"): Eliminate recursion.
3853 * src/print_graph.c (print_core): Don't print a reduction's lookahead
3854 set next to an item whose dot is not at the end of the RHS even if it
3855 happens to be associated with the same rule.
3856
3857 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3858
3859 Add %define lr.keep_unreachable_states.
3860 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
3861 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
3862 * src/main.c (main): Implement it.
3863 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3864 Extend to test it, and fix a typo.
3865
3866 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3867
3868 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
3869 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
3870 the example .output text.
3871 * tests/regression.at (Extra lookahead sets in report): Improve wording
3872 of comments.
3873
3874 2007-10-17 Wojciech Polak <polak@gnu.org>
3875
3876 * src/print-xml.c (print_grammar): Renamed
3877 <terminal> and <nonterminal> attributes:
3878 "type" to "number" and "symbol" to "name".
3879 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
3880 Use new attribute names.
3881 (xsl:template match="nonterminal"): Likewise.
3882 * data/xslt/xml2xhtml.xsl: Likewise.
3883
3884 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
3885
3886 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
3887 (Option Cross Key): Likewise.
3888
3889 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
3890 next to an item whose dot is not at the end of the RHS even if it
3891 happens to be associated with the same rule.
3892 * src/print.c (print_core): Likewise.
3893 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
3894 (Resolved SR Conflicts): Update output.
3895 * tests/regression.at (Extra lookahead sets in report): New test case.
3896
3897 2007-10-11 Wojciech Polak <polak@gnu.org>
3898
3899 * src/print-xml.c (print_core): Remove item set
3900 redundancy.
3901 * data/xslt/bison.xsl (bison:ruleNumber): New key.
3902 Improve processing time. Suggested by Joel E. Denny.
3903 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
3904 Write xsl:param "required" attribute as comment.
3905 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
3906 (xsl:template match="rule"): Support new reduced itemset.
3907 (xsl:template match="point"): Remove.
3908 * data/xslt/xml2xhtml.xsl: Likewise.
3909
3910 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3911
3912 * src/getargs.c (version): Update copyright year.
3913
3914 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3915
3916 Make xml2dot.xsl and --graph produce the same output.
3917 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
3918 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
3919 escaped later.
3920 (xsl:template name="output-node"): Use the new escape template instead
3921 of the string-replace template directly.
3922 (xsl:template name="output-edge"): Likewise.
3923 (xsl:template name="escape"): New, escapes backslashes and newlines in
3924 addition to quotation marks.
3925 * src/graphviz.c (start_graph, output_node, output_edge): Add
3926 whitespace to output for legibility.
3927
3928 Make xml2text.xsl and --report produce the same output, and remove the
3929 XML "conflicts" element since a conflict summary is easily extracted
3930 from the automaton.
3931 * data/xslt/bison.xsl: New.
3932 (xsl:template match="state" mode="bison:count-conflicts): New.
3933 * data/xslt/xml2text.xsl: Import bison.xsl.
3934 (xsl:template match="bison-xml-report"): Instead of styling the
3935 "conflicts" element, style the "automaton" element with mode
3936 "conflicts". Unlike the former, the latter lists S/R and R/R
3937 conflicts for a state on the same line.
3938 (xsl:template match="conflicts"): Remove.
3939 (xsl:template match="conflict"): Remove.
3940 (xsl:template match="terminal"): Line-wrap the list of rules in which
3941 the terminal is used.
3942 (xsl:template match="nonterminal"): Likewise for nonterminals.
3943 (xsl:template match="automaton" mode="conflicts"): New.
3944 (xsl:template match="state" mode="conflicts"): New.
3945 (xsl:template name="line-wrap"): New.
3946 (xsl:template name="ws-search"): New.
3947 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
3948 (xsl:template match="bison-xml-report"): Instead of styling the
3949 "conflicts" element, style the "automaton" element with mode
3950 "conflicts."
3951 (xsl:template match="conflicts"): Remove.
3952 (xsl:template match="conflict"): Remove.
3953 (xsl:template match="automaton" mode="conflicts"): New.
3954 (xsl:template match="state" mode="conflicts): New.
3955 * src/conflicts.c (conflicts_output_xml): Remove.
3956 * src/conflicts.h (conflicts_output_xml): Remove prototype.
3957 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
3958 * src/print.c (print_grammar): Consistently wrap at the 66th column so
3959 the corresponding XSLT is easier. Also, never wrap between a word and
3960 the comma that follows it.
3961
3962 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3963
3964 Improve C++ namespace support. Discussed starting at
3965 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
3966 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
3967 b4_namespace_close): New macros that interpret the %define variable
3968 "namespace" so its value can contain "::" to indicate nested
3969 namespaces.
3970 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
3971 the above macros.
3972 * data/lalr1.cc (b4_namespace): Likewise.
3973 * data/location.cc (b4_namespace): Likewise.
3974 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
3975 inside a new table in the general %define entry. Document `%define
3976 namespace' there as well. Point the %name-prefix entry to it since it
3977 explains it more completely in the case of C++.
3978 (C++ Bison Interface): Mention `%define namespace' instead of
3979 %name-prefix.
3980 (Table of Symbols): Remove the `%define push_pull' entry. The %define
3981 entry suffices.
3982 * tests/c++.at (Relative namespace references): New test case.
3983 (Absolute namespace references): New test case.
3984 (Syntactically invalid namespace references): New test case.
3985 * tests/input.at (C++ namespace reference errors): New test case.
3986
3987 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3988
3989 Add syncline support and location accessor to internal %define
3990 interfaces.
3991 * data/bison.m4 (b4_percent_define_get_loc): New.
3992 (b4_percent_define_get_syncline): New.
3993 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3994 (b4_percent_define_default): Record defining location as line 1 rather
3995 than 0 for the sake of synchronizing #line's, and define
3996 b4_percent_define_syncline(VARIABLE).
3997 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3998 * src/muscle_tab.c (muscle_syncline_grow): New.
3999 (muscle_code_grow): Use muscle_syncline_grow.
4000 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4001 define b4_percent_define_syncline(VARIABLE).
4002 (muscle_percent_define_get_loc): New.
4003 (muscle_percent_define_get_syncline): New.
4004 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4005 remove some unused variables.
4006 (muscle_percent_define_default): Record defining location as line 1
4007 rather than 0 for the sake of synchronizing #line's, and define
4008 b4_percent_define_syncline(VARIABLE).
4009 (muscle_percent_define_check_values): Use
4010 muscle_percent_define_get_loc.
4011 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4012 (muscle_percent_define_get_syncline): Prototype.
4013 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4014 defaults): Update output for location change.
4015 (Complaining during macro argument expansion): Extend to test
4016 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4017
4018 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4019
4020 Fix some error-reporting macro bugs.
4021 * data/bison.m4 (b4_cat): New.
4022 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4023 to stdout so they don't become arguments to other macros. Update
4024 comments and add examples.
4025 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4026 add examples.
4027 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4028 after printing the error directive so that M4 doesn't report subsequent
4029 problems that are induced by this problem.
4030 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4031 instead of just in them. Recognize @\n in both places. Both expand to
4032 the empty string. Needed by b4_cat.
4033 * tests/skeletons.at (Complaining during macro argument expansion):
4034 New test case.
4035 (Fatal errors make M4 exit immediately): New test case.
4036
4037 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4038
4039 Implement --print-datadir.
4040 * src/getargs.c (usage): Mention.
4041 (PRINT_DATADIR_OPTION): New anonymous enum member.
4042 (long_options): Add entry for it.
4043 (getargs): Add case for it calling compute_pkgdatadir.
4044 * src/output.c (output_skeleton): Encapsulate data directory
4045 computation from here...
4046 (prepare): ... and from here...
4047 (compute_pkgdatadir): ... into this new function.
4048 * src/output.h (compute_pkgdatadir): Prototype.
4049
4050 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4051
4052 * src/print-xml.c (escape_bufs): New static global variable
4053 replacing...
4054 (xml_escape_n): ... the static local variable buf here.
4055 (print_xml): Free memory for escape_bufs.
4056 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4057
4058 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4059
4060 Replace `%push-parser' and `%push-pull-parser' with
4061 `%define push_pull "push"' and `%define push_pull "both"'.
4062 `%define push_pull "pull"' is the default.
4063 * doc/bison.texinfo (Push Decl, Push Parser Function,
4064 Pull Parser Function, Parser Create Function, Parser Delete Function):
4065 Update declarations.
4066 (Decl Summary, Table of Symbols): Replace %push-parser and
4067 %push-pull-parser entries with a %define push_pull entry.
4068 * data/bison.m4 (b4_percent_define_check_values): New macro.
4069 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4070 definitions...
4071 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4072 definitions...
4073 * data/push.c: ... to here and compute them from the value of the
4074 %define variable push_pull.
4075 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4076 parsing requests here...
4077 * data/yacc.c: ... hack this to switch to push.c any time
4078 b4_use_push_pull_flag or the %define variable push_pull is set. This
4079 will go away when we mv push.c yacc.c.
4080 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4081 push parsing is not supported since unused %define variables are
4082 reported anyway.
4083 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4084 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4085 comments for consistency with b4_percent_define_check_values.
4086 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4087 muscles.
4088 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4089 Remove.
4090 (prologue_declaration): Remove %push-parser and %push-pull-parser
4091 rules.
4092 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4093 * tests/calc.at: Update declarations.
4094 * tests/input.at (%define enum variables): New test case.
4095 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4096 declaration.
4097 (Push Parsing: Multiple impure instances): Update declaration.
4098 (Push Parsing: Unsupported Skeletons): New test case.
4099 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4100 declaration.
4101 (Exploding the Stack Size with Malloc): Update declaration.
4102
4103 2007-09-24 Wojciech Polak <polak@gnu.org>
4104
4105 Add XSLT transformations.
4106
4107 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4108 * data/xslt/xml2text.xsl: Transform XML into plain text.
4109 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4110 * data/Makefile.am (xsltdir): New variable.
4111 (dist_xslt_DATA): Add xslt/*.xsl files.
4112
4113 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4114
4115 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4116 Problem reported by Wojciech Polak.
4117 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4118 (xml_printf): Undo change I made on 21 September; that is,
4119 indent 2 spaces, not 1.
4120
4121 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4122
4123 Pacify ./configure --enable-gcc-warnings.
4124 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4125 `char const *' instead of `char *'.
4126 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4127 local variable `sep'.
4128
4129 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4130
4131 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4132 elsewhere.
4133 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4134 (xml_printf): Indent just 1 space for level.
4135 (e_char, xlate_char): Remove.
4136 (xml_escape_string): Rewrite to avoid undefined behavior (used
4137 storage that was freed from the stack).
4138 (xml_escape_n): Don't bother checking for subscript error.
4139
4140 2007-09-21 Wojciech Polak <polak@gnu.org>
4141
4142 Add Bison XML Automaton Report.
4143
4144 Add support for an -x option to generate an XML report.
4145 It is not documented yet.
4146 * src/print-xml.c: New file.
4147 * src/print-xml.h: Likewise.
4148 * lib/timevar.def (TV_XML): New var.
4149 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4150 * src/conflicts.c: Include print-xml.h.
4151 (solved_conflicts_xml_obstack): New var.
4152 (log_resolution, conflicts_solve, conflicts_free):
4153 Add support for XML report.
4154 (conflicts_output_val): New function.
4155 * src/conflicts.h (conflicts_output_val): New decl.
4156 * src/files.c (spec_xml_file): New var.
4157 (compute_output_file_names, output_file_names_free): Add XML support.
4158 * src/files.h (spec_xml_file): New decl.
4159 * src/getargs.c (xml_flag): New var.
4160 (usage, short_options, long_options, getargs): Add XML support.
4161 * src/getargs.h (xml_flag): New decl.
4162 * src/gram.c: Include print-xml.h.
4163 (rule_lhs_print_xml, rule_rhs_print_xml):
4164 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4165 New functions.
4166 * src/gram.h: Declare external ones.
4167 * src/main.c: Include print-xml.h.
4168 (main): Add XML support.
4169 * src/reduce.c: Include print-xml.h.
4170 (reduce_xml): New function.
4171 * src/reduce.h: Declare it.
4172 * src/state.c: Include print-xml.h.
4173 (state_new): Add XML support.
4174 (state_rule_lookahead_tokens_print_xml): New function.
4175 * src/state.h: Declare it.
4176 (struct state): New member solved_conflicts_xml.
4177 * src/symtab.c (symbol_class_get_string): New function.
4178 * src/symtab.h: Declare it.
4179
4180 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4181
4182 * GNUmakefile: Switch to coreutils's version.
4183 * bootstrap: Likewise.
4184 * Makefile.cfg: Adjust to new GNUmakefile.
4185 * README-hacking: Likewise.
4186
4187 Import from gnulib:
4188
4189 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4190 Bruno Haible <bruno@clisp.org>
4191
4192 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4193 and is a script that invokes bison. Tighten the code. Add comments.
4194
4195 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4196
4197 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4198 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4199 * doc/bison.texinfo (Decl Summary): Fix.
4200 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4201 * tests/input.at (Boolean %define variables): Update output.
4202 * tests/skeletons.at (%define boolean variables: invalid skeleton
4203 defaults): Rename to...
4204 (%define Boolean variables: invalid skeleton defaults): ... this and
4205 update output.
4206
4207 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4208
4209 In impure push mode, don't allow more than one yypstate to be allocated
4210 since multiple impure parsers would corrupt yynerrs.
4211 * data/push.c (yypstate_allocated): New static global variable
4212 initialized to 0.
4213 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4214 exhaustion if yypstate_allocated is 1, but still return 2.
4215 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4216 already 1. Otherwise, set it to 1.
4217 (yypstate_delete): Set it to 0.
4218 * tests/push.at (Push Parsing: Multiple impure instances): New test
4219 case.
4220
4221 2007-08-17 Bob Rossi <bob@brasko.net>
4222
4223 * doc/bison.texinfo (Push Decl): Document the push parser.
4224 (Table of Symbols): Ditto.
4225 (Pure Decl): Ditto.
4226 (Decl Summary): Ditto.
4227 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4228 Parser Create Function, Parser Delete Function):
4229 Add new push parser symbols.
4230 (Table of Symbols): Document push-parser, push-pull-parser,
4231 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4232
4233 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4234
4235 Update to GPLv3.
4236 * doc/gpl-3.0.texi: New file.
4237 * doc/gpl.texi: Remove.
4238 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4239 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4240 * README-hacking, TODO, bootstrap, bootstrap.conf:
4241 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4242 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4243 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4244 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4245 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4246 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4247 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4248 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4249 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4250 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4251 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4252 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4253 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4254 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4255 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4256 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4257 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4258 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4259 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4260 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4261 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4262 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4263 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4264 * src/complain.c, src/complain.h, src/conflicts.c:
4265 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4266 * src/files.h, src/flex-scanner.h, src/getargs.c:
4267 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4268 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4269 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4270 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4271 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4272 * src/print.c, src/print.h, src/print_graph.c:
4273 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4274 * src/reduce.h, src/relation.c, src/relation.h:
4275 * src/revision.h, src/scan-code.h, src/scan-code.l:
4276 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4277 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4278 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4279 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4280 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4281 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4282 * tests/existing.at, tests/glr-regression.at:
4283 * tests/headers.at, tests/input.at, tests/java.at:
4284 * tests/local.at, tests/output.at, tests/push.at:
4285 * tests/reduce.at, tests/regression.at, tests/sets.at:
4286 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4287 * tests/torture.at:
4288 Update to GPLv3.
4289
4290 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4291
4292 Get rid of broken %no-parser, -n, and --no-parser implementation and
4293 documentation.
4294 * TODO: Don't mention them.
4295 * doc/bison.1: Likewise.
4296 * doc/bison.texinfo (Decl Summary): Likewise.
4297 (Bison Options): Likewise.
4298 (Option Cross Key): Likewise.
4299 * src/getargs.c (no_parser_flag): Remove global variable.
4300 (usage): Don't print description of -n and --no-parser.
4301 (long_options): Remove --no-parser entry here.
4302 (getargs): Remove -n case in the switch here.
4303 * src/getargs.h (no_parser_flag): Remove extern.
4304 * tests/regression.at (Web2c Actions): Remove comment that mentions
4305 --no-parser.
4306
4307 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4308
4309 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4310 name user variables starting with `yy'. Just pass NULL instead of a
4311 dummy local &yylval to yypush_parse.
4312 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4313 starting with `yy'.
4314
4315 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4316
4317 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4318 true since it's then always used regardless of whether yyoverflow is
4319 defined. Reported by Christian Burger at
4320 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4321 * THANKS: Add Christian Burger.
4322
4323 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4324 node names: say "Decl Summary" not "Bison Declaration Summary".
4325
4326 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4327
4328 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4329 determine whether this function has already complained about an invalid
4330 value for a %define boolean variable, don't check whether Bison has
4331 ever examined the value. As written, the check was a tautology.
4332 Instead, record and check for this complaint using a separate muscle.
4333
4334 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4335
4336 Fix push parsing memory leak reported by Brandon Lucia at
4337 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4338 * THANKS: Add Brandon Lucia.
4339 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4340 but the parse never completed and thus freed it.
4341 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4342 * tests/testsuite.at: Include push.at.
4343 * test/push.at: New.
4344 (Push Parsing: Memory Leak for Early Deletion): New test case.
4345
4346 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4347
4348 Improve handling of multiple S/R conflicts in the same state and of S/R
4349 conflicts involving multiple reductions.
4350 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4351 set for a state here or Bison will abort if it is reassigned on a
4352 later conflicted reduction in the same state.
4353 Similarly, don't finalize and assign the solved conflicts report here
4354 or it will be lost if it is reassigned on a later conflicted reduction
4355 in the same state.
4356 (set_conflicts): Instead, assign them both here after all S/R conflicts
4357 in the state have been fully examined.
4358 * src/print.c (shift_set): Rename to...
4359 (no_reduce_set): ... this.
4360 (print_reductions): Update for rename, and add %nonassoc error action
4361 tokens to no_reduce_set so that, when printing the first remaining
4362 reduction on an error action token, the reduction is enclosed in
4363 brackets.
4364 (print_results): Update for rename.
4365 * tests/conflicts.at (Solved conflicts report for multiple reductions
4366 in a state): New test case.
4367 (%nonassoc error actions for multiple reductions in a state): New test
4368 case.
4369
4370 * src/main.c (main): Don't depend on C99 features.
4371
4372 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4373
4374 * build-aux/.cvsignore: Add compile.
4375 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4376 uniwidth.
4377
4378 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4379
4380 * bootstrap (slurp): Create target directories that don't exist.
4381 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4382
4383 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4384
4385 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4386 than item number.
4387 * closure.c (closure): Likewise.
4388 * state.h (reductions): Comment sorting of rules.
4389 (state): Comment sorting of items.
4390
4391 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4392
4393 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4394 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4395 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4396 definition in order to avoid Gnulib headers since we don't use config.h
4397 here.
4398 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4399 rather than AT_DATA so that config.h is included.
4400
4401 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4402
4403 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4404 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4405 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4406 and so that YYFPRINTF is guaranteed to be defined here.
4407
4408 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4409
4410 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4411 with...
4412 (muscle_percent_define_check_values): ... this more helpful function.
4413 Again, it's not used yet, but it will be.
4414 * src/muscle_tab.h: Likewise.
4415
4416 Improve some comments in parser table construction.
4417 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4418 (generate_states): Don't mention ruleset, which is internal to closure.
4419 * src/closure.c (closure): Explain sorting of core and itemset, which
4420 is required for this function to behave correctly.
4421 * src/closure.h (closure): Mention sorting.
4422
4423 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4424
4425 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4426 move the check for disabled transitions to an aver since conflict
4427 resolution hasn't happened yet.
4428
4429 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4430 labels a state as inconsistent just because it has error transitions.
4431 The original form of this check appeared in revision 1.1 of lalr.c,
4432 which was committed on 1991-12-21. Now (at least), changing the
4433 consistency label on such a state appears to have no useful effect in
4434 any of the places it is examined, which I enumerate below. The key
4435 point to understanding each item in this enumeration is that a state
4436 with an error transition is labelled consistent in the first place only
4437 if it has no rules, so the check cannot matter for states that have
4438 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4439 to try to identify its conflicts, and a state must have *rules* to have
4440 conflicts. (2) Labelling a state as inconsistent will affect how
4441 action_row sets the default *rule* for the state. (3) Labelling a
4442 state as inconsistent will cause build_relations to add lookback edges
4443 to *rules* in that state.
4444 * src/state.h (struct state): Word the comment for member consistent
4445 more carefully.
4446
4447 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4448
4449 Don't depend on C99 features.
4450 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4451 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4452 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4453 * src/state.c (state_mark_reachable_states): Fix for-loop.
4454 (state_remove_unreachable_states): Fix for-loop.
4455
4456 Don't widen struct state with member reachable just to temporarily
4457 record reachability. Instead, use a local bitset.
4458 * src/state.h (struct state): Remove member.
4459 * src/state.c (state_new): Don't initialize it.
4460 (state_mark_reachable_states): Rename to...
4461 (state_record_reachable_states): ... this, and use bitset.
4462 (state_remove_unreachable_states): Use bitset.
4463
4464 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4465
4466 * src/Makefile.am (yacc): Quote target action commands properly so
4467 that the yacc script isn't corrupt. Reported by Hans Aberg at
4468 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4469
4470 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4471 the case of pure parsers. Reported by Frans Englich at
4472 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4473 * THANKS: Add Frans Englich.
4474
4475 * NEWS (2.3a+): In the %code entry, reference section `Bison
4476 Declaration Summary' from the manual now since the %code summary has
4477 moved there.
4478 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4479 in the rules section must be terminated by semicolons.
4480
4481 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4482
4483 Extend the front-end API for %define variables to more completely
4484 mirror the back-end. This will be useful in the future.
4485 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4486 Update comments to mention the new front-end counterparts of these
4487 macros.
4488 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4489 for muscle_string_decode and muscle_location_decode.
4490 (muscle_string_decode): New static function.
4491 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4492 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4493 functions.
4494 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4495 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4496 implementation more closely.
4497 (muscle_percent_define_invalid_value): New function.
4498 * src/muscle_tab.h (muscle_percent_define_get,
4499 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4500 Prototype.
4501
4502 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4503
4504 * NEWS (2.3a+): Mention yesterday's state-removal change.
4505 (2.3a): Remove the %language entry, which was added after 2.3a.
4506 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4507 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4508 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4509 tests/existing.at: Update copyright date.
4510
4511 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4512
4513 If conflict resolution makes states unreachable, remove those states,
4514 report rules that are then unused, and don't report conflicts in those
4515 states.
4516 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4517 New global function.
4518 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4519 function.
4520 * src/main.c (main): After conflict resolution, remove the unreachable
4521 states and update all data structures that reference states by number.
4522 * src/state.c (state_new): Initialize each state's reachable member to
4523 false.
4524 (state_mark_reachable_states): New static function.
4525 (state_remove_unreachable_states): New global function.
4526 * src/state.h (struct state): Add member bool reachable.
4527 (state_remove_unreachable_states): Prototype.
4528 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4529 New test case.
4530 * tests/existing.at (GNU pic Grammar): Update test case output now that
4531 an unused rule is discovered.
4532
4533 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4534
4535 Minor code cleanup in parser table construction.
4536 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4537 (new_itemsets, save_reductions): Update for rename to nitemset.
4538 * src/closure.c (nritemset): Rename to...
4539 (nitemset): ... this since the "r" appears to meaningless and isn't
4540 used in the comments.
4541 (closure): Update for rename.
4542 * src/closure.h (nritemset): Update extern to...
4543 (nitemset): ... this.
4544 * src/lalr.c (LA): Fix a typo in comments.
4545 * src/print.c (print_core): Update for rename to nitemset.
4546 * src/print_graph.c (print_graph): Likewise.
4547 * src/state.h: Fix some typos in header comments.
4548
4549 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4550
4551 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4552 still sticks to ASCII. Sorry!
4553
4554 * README-hacking: New file, taken mostly from coreutils, with changes
4555 for Bison. Contains much of the contents of:
4556 * README-cvs: Remove.
4557 * bootstrap: Sync from gnulib.
4558 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4559 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4560
4561 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4562
4563 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4564 Setzer.
4565 (Java Differences): Fix some typos.
4566 * THANKS: Add Sebastian Setzer.
4567
4568 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
4569
4570 * data/java.m4 (b4_single_class_if): Remove.
4571 (b4_abstract_if): Look at "%define abstract".
4572 (b4_lexer_if): New.
4573 (b4_union_name): Rename...
4574 (b4_yystype): ... to this. Map to "%define stype".
4575 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4576 b4_maybe_throws): Fix quoting.
4577 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4578 * data/lalr1.java (Lexer interface): Always define.
4579 (Lexer interface within parser class): Remove.
4580 (YYLexer class): New, used when "%code lexer" is present.
4581 (constructor): When "%code lexer" is used, pass %lex-param
4582 to the lexer constructor.
4583 (yylex, yyparse): Remove %lex-param from method invocations
4584 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4585
4586 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4587 abstract". Rename "%define union_name" to "%define stype".
4588 Rename method names according to previous patch.
4589 (Java Scanner Interface): Describe "%code lexer" instead of
4590 "%pure-parser" and "%define single_class".
4591 (Java Differences): Mention "%code lexer".
4592
4593 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4594 Include scanner here, using macros from tests/local.at.
4595 (AT_DATA_CALC_Y): Remove final argument.
4596 (_AT_CHECK_JAVA_CALC): Likewise.
4597 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4598 of %locations and %error-verbose.
4599 (main): Test with and without %lex-param.
4600 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4601 (AT_BISON_OPTION_POPDEFS): Pop it.
4602
4603 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4604
4605 DJGPP spefic issue. Inhibit the use of disallowed characters for
4606 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4607 and concern testsuite case 46.
4608 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4609 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4610 * djgpp/config.bat: Inhibit the use of disallowed characters.
4611
4612 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4613
4614 Miscellaneous %define and %code cleanup.
4615 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4616 values are interpreted.
4617 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4618 documentation a little more.
4619 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4620 muscle_percent_define_insert, muscle_percent_code_grow): New
4621 functions/macros.
4622 * src/muscle_tab.h (muscle_percent_define_insert,
4623 muscle_percent_code_grow): Prototype.
4624 * src/parse-gram.y (prologue_declaration): Use
4625 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4626 %define and %code directives.
4627
4628 Make it easy to share %define boolean variables between the front-end
4629 and back-end. Though not used yet, this will be useful in the future.
4630 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4631 Bison uses of names rather than just skeleton uses of names.
4632 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4633 b4_percent_define_skeleton_variables(VARIABLE) to
4634 b4_percent_define_bison_variables(VARIABLE).
4635 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4636 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4637 b4_percent_code_bison_qualifiers(QUALIFIER).
4638 (b4_check_user_names_wrap): Update for renames.
4639 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4640 muscle_percent_define_default): New functions mimicking
4641 b4_percent_define_flag_if and b4_percent_define_default.
4642
4643 For %define variables, report locations for invalid values and
4644 redefinitions.
4645 * data/bison.m4 (b4_percent_define_flag_if): Read
4646 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4647 value for VARIABLE.
4648 (b4_percent_define_default): Save a special location in
4649 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4650 must later be reported as invalid.
4651 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4652 functions.
4653 (muscle_percent_define_insert): Record the location of VARIABLE in
4654 muscle percent_define_loc(VARIABLE), and use it to report the previous
4655 location for a redefinition.
4656 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4657 (muscle_percent_define_default): Update like b4_percent_define_default.
4658 (muscle_grow_user_name_list): Rename to...
4659 (muscle_user_name_list_grow): ... this for consistency and use
4660 muscle_location_grow.
4661 * src/muscle_tab.h (muscle_location_grow): Prototype.
4662 * tests/input.at (%define errors): Update expected output.
4663 * tests/skeletons.at (%define boolean variables: invalid skeleton
4664 defaults): New test case.
4665
4666 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4667
4668 * src/print.c (lookahead_set, state_default_rule): Remove.
4669 (print_reductions): Replace state_default_rule invocation with
4670 equivalent use of yydefact, which was computed in token_actions in
4671 tables.c.
4672 (print_results): Don't allocate lookahead_set.
4673
4674 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
4675
4676 * data/lalr1.java: Prefix all private members with yy.
4677
4678 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4679
4680 Use YYFPRINTF instead of fprintf where appropriate. Reported by
4681 Sebastien Fricker at
4682 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
4683 * THANKS: Add Sebastien Fricker.
4684 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4685 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4686 accept a variable number of arguments.
4687
4688 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4689
4690 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4691
4692 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4693
4694 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4695 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4696 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4697
4698 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4699
4700 Undo my 2007-02-07 change, switching back to the c-strcase module
4701 introduced in the 2007-02-03 change. Bruno Haible reported that
4702 the 2007-02-07 change would be dangerous in Turkish if we add a
4703 language whose name contains "i", since "i" is not lowercase "I"
4704 in Turkish.
4705 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4706 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4707 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4708 * m4/.cvsignore: Remove strcase.m4.
4709 * src/getargs.c: Revert 2007-02-07 change, as follows.
4710 Include c-strcase.h.
4711 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4712
4713 2007-02-11 Bruno Haible <bruno@clisp.org>
4714
4715 Enable the Java related testsuite tests when the only Java compiler
4716 found is a gcj < 4.3. Discussed at
4717 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4718 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4719
4720 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4721
4722 * data/Makefile.am: Update copyright date.
4723 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4724 yypstate_new returns NULL.
4725 (yypstate_new): Return NULL if malloc does.
4726 * src/reader.c (packgram): Move translation of rule actions from the
4727 beginning of packgram to...
4728 (check_and_convert_grammar): ... here right before packgram is invoked
4729 so it's easier to write more complete comments, and remove redundant
4730 code.
4731
4732 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4733
4734 As in semantic actions, make @$ in %initial-action, %destructor, and
4735 %printer imply %locations.
4736 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4737 scanning @$.
4738 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4739 (@$ in %initial-action implies %locations,
4740 @$ in %destructor implies %locations,
4741 @$ in %printer implies %locations): ... these new test cases.
4742
4743 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4744
4745 Undo most of the 2007-02-03 change, switching to the strcase module
4746 now that gnulib strcase has been fixed.
4747 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4748 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4749 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4750 * m4/.cvsignore: Add strcase.m4.
4751 * src/getargs.c: Revert 2007-02-03 change, as follows.
4752 Don't include c-strcase.h.
4753 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4754 strcasecmp has "unspecified behavior" outside the POSIX locale,
4755 but it works fine in practice if at least one argument is ASCII,
4756 as is the case in Bison.
4757
4758 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
4759
4760 * tests/java.at: Skip tests if only one of javac/java is present.
4761 Reported by Joel E. Denny.
4762 * tests/atlocal.in: Adjust copyright years.
4763
4764 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
4765
4766 * data/lalr1.java (Stack): Work around old verifiers that disallow
4767 access to the private fields of an inner class, from the outer class.
4768 We can make Stack's fields public because user code doesn't have access
4769 to the instance of Stack used by parse(). Reported by Paul Eggert.
4770
4771 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4772
4773 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4774 the right spot for these files?
4775 * bootstrap.conf (gnulib_modules): Add c-strcase.
4776 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4777 c-strncasecmp.c.
4778 * src/getargs.c: Include c-strcase.h.
4779 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4780 to avoid unspecified behavior.
4781
4782 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4783
4784 * doc/bison.texinfo (Decl Summary): Correct typo.
4785
4786 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
4787
4788 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4789 Complain if the value does not match empty, "true" or "false".
4790 * data/c++.m4: Adjust default definitions of %define variables.
4791 * data/java.m4: Adjust default definitions of %define variables.
4792 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4793 to above behavior.
4794 * tests/input.at (Boolean %define variables): Test new behavior.
4795
4796 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
4797
4798 * NEWS: Mention java.
4799 * TODO: Remove things that are done.
4800 * bootstrap.conf: Add javacomp-script and javaexec-script.
4801 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4802
4803 * data/Makefile.am: Add new files.
4804 * data/java-skel.m4: New.
4805 * data/java.m4: New.
4806 * data/lalr1.java: New.
4807
4808 * doc/bison.texinfo: Put "A Complete C++ Example" under
4809 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4810 under Other Languages.
4811
4812 * src/getargs.c (valid_languages): Add Java.
4813 * src/getargs.h (struct bison_language): Update size of string fields.
4814
4815 * tests/Makefile.am: Add java.at.
4816 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4817 * tests/java.at: New.
4818 * tests/testsuite.at: Include it.
4819
4820 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4821
4822 Clean up.
4823 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4824 at_directive_argv arguments so these no longer have to be global
4825 variables. Also, update the implementation for the following changes.
4826 (fail_for_at_directive_too_many_args,
4827 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4828 (at_directive_name): Remove as at_directive_argv[0] will be used for
4829 this now.
4830 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4831 for the directive name.
4832 (at_directive_argc, at_directive_argv): Make these local within
4833 skel_lex instead of global.
4834 (INITIAL): Update directive start action for above changes.
4835 (SC_AT_DIRECTIVE_ARG): Rename to...
4836 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
4837 (SC_AT_DIRECTIVE_SKIP_WS): Update.
4838 (scan_skel): Move yylex_destroy to...
4839 (skel_scanner_free): ... here.
4840 * tests/skeletons.at (installed skeleton file name): Rename to...
4841 (installed skeleton file names): ... this.
4842
4843 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
4844
4845 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4846 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
4847 Summary" not "Directives".
4848 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
4849 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
4850 since the former is now the more complete one.
4851 (Prologue Alternatives): Likewise and do the same for %defines.
4852 (Table of Symbols): Add summary of %code, add summary of %define, and
4853 move full %code documentation to...
4854 (Decl Summary): ... here for consistency with other entries in these
4855 sections.
4856 Move %define entry in order to keep this list alphabetized.
4857 Reword %define entry a little to put less emphasis on the skeleton
4858 concept, which most users shouldn't have to think about.
4859
4860 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
4861
4862 Adjust to recent gnulib changes.
4863 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
4864 Add string.h, string_.h, unistd_.h, wchar_.h.
4865 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
4866 * src/system.h: Don't include <stpcpy.h>; this is now done by
4867 <string.h>.
4868
4869 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
4870
4871 Simplify implementation of unqualified %code, implement macros for
4872 uniform treatment of boolean %define flags. Document %define.
4873 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
4874 b4_percent_code_ifdef): New.
4875 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
4876 * data/c++.m4: Define default value for global_tokens_and_yystype.
4877 * data/glr.cc: Likewise.
4878 * data/location.cc: Use b4_percent_define_flag_if.
4879
4880 * doc/bison.texinfo (Decl Summary): Document %define.
4881
4882 * src/parse-gram.y (Unqualified %code): Change muscle name to
4883 b4_percent_code().
4884 (content.opt): Default to empty.
4885
4886 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4887
4888 Implement support for relative and absolute skeleton file names.
4889 Discussed starting at
4890 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
4891 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
4892 (Bison Options): Document in --skeleton entry.
4893 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
4894 full_skeleton can't necessarily hold all of pkgdatadir.
4895 If the specified skeleton file name contains a `/', don't prepend
4896 pkgdatadir.
4897 * src/parse-gram.y (prologue_declaration): If the specified skeleton
4898 file name contains a `/', prepend the grammar file directory.
4899 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
4900 * skeletons.at: New file.
4901 (relative skeleton file names): New test case.
4902 (installed skeleton file names): New test case.
4903 * tests/testsuite.at: Include skeletons.at.
4904
4905 * bootstrap: Update copyright to 2007.
4906
4907 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
4908
4909 * bootstrap: Remove occurrences of .#bootmp from the files.
4910
4911 2007-01-17 Akim Demaille <akim@epita.fr>
4912
4913 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
4914 nonterminals.
4915 Use per-type %printer.
4916
4917 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4918
4919 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
4920 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4921 djgpp/config.site, src/files.c, src/files.h, src/main.c,
4922 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
4923 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
4924 tests/glr-regression.at, tests/input.at, tests/local.at,
4925 tests/output.at, tests/torture.at: Update copyright to 2007.
4926
4927 2007-01-16 Akim Demaille <akim@epita.fr>
4928
4929 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
4930 error code.
4931 (Calc++ Scanner): Exit with failure if we can't open the input
4932 file.
4933 Accept "-" standing for stdin.
4934 (Calc++ Top Level): Print the result only if the parsing was
4935 successful.
4936
4937 2007-01-16 Akim Demaille <akim@epita.fr>
4938
4939 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
4940
4941 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
4942 and Joel E. Denny <jdenny@ces.clemson.edu>
4943
4944 Clean up %define and %code implementation in M4 some. Most
4945 importantly, rename all related macros to be in the b4_percent_define
4946 and b4_percent_code namespaces. Also, complete support for `.' in
4947 %define variable names and %code qualifiers.
4948 * data/bison.m4 (b4_check_user_names): Check for special
4949 "SKELETON-NAMESPACE(name)" macros instead of using two nested
4950 m4_foreach loops.
4951 (b4_get_percent_define, b4_get_percent_code): Rename to...
4952 (b4_percent_define_get, b4_percent_code_get): ... these.
4953 Extend documentation with examples.
4954 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
4955 b4_percent_define_skeleton_variables and
4956 b4_percent_code_skeleton_qualifiers.
4957 Expect any value for the %define variable `foo' to be stored in the
4958 macro named `b4_percent_define(foo)'; expect any %code blocks for the
4959 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
4960 expect any unqualified %code blocks to be stored in a macro named
4961 `b4_percent_code_unqualified'.
4962 Use m4_indir so that %define variable names and %code qualifiers can
4963 contain `.', which is allowed by the grammar parser.
4964 (b4_percent_define_default): New macro to set a default value for a
4965 %define variable.
4966 (m4_wrap): Update wrapped code, and fix some underquoting.
4967 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
4968 Expect grammar uses of %define variables and %code qualifiers to be
4969 defined in b4_percent_define_user_variables and
4970 b4_percent_code_user_qualifiers.
4971 * data/c++.m4: Use b4_percent_define_default rather than
4972 m4_define_default. Fix some underquoting. Skeleton usage of %define
4973 variable define_location_comparison now implies skeleton usage of
4974 %define variable filename_type.
4975 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4976 data/push.c, data/yacc.c: Update macro names.
4977 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
4978 muscle names.
4979
4980 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4981
4982 DJGPP specific issues.
4983
4984 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4985 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4986
4987 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4988
4989 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4990 run parsers in all tests so that Valgrind is invoked during
4991 maintainer-check-valgrind.
4992 (Duplicate representation of merged trees): Free all semantic values.
4993 (Duplicated user destructor for lookahead): Likewise.
4994
4995 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4996
4997 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4998 command-line prefix.
4999 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5000 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5001 miss Valgrind messages.
5002 (Exploding the Stack Size with Malloc): Likewise.
5003
5004 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5005
5006 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5007 locals. Reported by Juan Manuel Guerrero at
5008 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5009 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5010 Fix some indentation also.
5011 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5012 explaining this issue.
5013
5014 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
5015 and Joel E. Denny <jdenny@ces.clemson.edu>
5016
5017 Simplify union and prologue handling, and escape union and lex/parse
5018 params with digraphs.
5019 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5020 values to the empty string since these are no longer guaranteed
5021 initialized by the front-end.
5022 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5023 braces around b4_user_stype since this is no longer done by the
5024 front-end.
5025 * src/files.c, src/files.h (pre_prologue_obstack,
5026 post_prologue_obstack): Remove.
5027 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5028 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5029 with digraphs. This fixes lex params and parse params.
5030 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5031 * src/output.c (prepare): Remove muscle insertion of the prologues.
5032 (output): Remove freeing of pre_prologue_obstack and
5033 post_prologue_obstack.
5034 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5035 than prologue_augment for prologue parsing so you don't need prologue
5036 obstacks.
5037 (grammar_declaration): For %union RHS, use `braceless' instead of
5038 "{...}" so that braces are already stripped and code is escaped with
5039 digraphs.
5040 * src/reader.c (prologue_augment): Remove.
5041 (reader): Remove initialization of pre_prologue_obstack and
5042 post_prologue_obstack.
5043 * src/reader.h (prologue_augment): Remove.
5044
5045 * data/c.m4: Remove stray parenthesis.
5046
5047 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5048
5049 Remove quotes from variables names in %define directives and from
5050 qualifiers in %code directives, and restrict the characters that are
5051 allowed in them to M4-friendly ones. For %define, continue to support
5052 the quoted form as a deprecated feature. Discussed starting at
5053 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5054 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5055 %code.
5056 * doc/bison.texinfo (Prologue Alternatives): Update.
5057 (Decl Summary): In %defines entry, update mention of `%code requires'
5058 and `%code provides'.
5059 (C++ Location Values): Update %define uses.
5060 (Calc++ Parser Interface): Likewise.
5061 (Calc++ Parser): Likewise, and update `%code requires' uses.
5062 (Table of Symbols): Update %code documentation.
5063 * src/parse-gram.y (prologue_declaration): For %define variables, use
5064 `variable' instead of `STRING'.
5065 (grammar_declaration): For %code qualifiers, use `ID' instead of
5066 `STRING'.
5067 (variable): New nonterminal that takes an `ID' or a `STRING'.
5068 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5069 and %define uses.
5070 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5071 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5072 (%define errors): Update %define uses.
5073
5074 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5075
5076 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5077 instead of muscle_insert for %define values so that M4-special
5078 characters are replaced with digraphs.
5079 * tests/input.at (%define errors): Extend to check weird values.
5080
5081 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5082
5083 Instead of having skeletons declare all valid %define variables and
5084 %code qualifiers, provide macros that retrieve the associated values
5085 and build these lists automatically. Thus Bison will now warn when a
5086 variable or qualifier is not used by the skeleton in the current
5087 invocation regardless of whether it might sometimes be used by that
5088 skeleton in other invocations. Also, move all %define value macros to
5089 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5090 form, which is replaced by %code.
5091 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5092 (b4_check_user_names): ... this, and change the series of valid name
5093 arguments to a single list argument for names used in the skeleton
5094 similar to the existing list argument for names used in the grammar.
5095 Warn instead of complaining.
5096 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5097 values and %code code, to format %code code properly, and to build
5098 lists of all %define variables and %code qualifiers used in the
5099 skeleton: b4_skeleton_percent_define_variables and
5100 b4_skeleton_percent_code_qualifiers.
5101 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5102 Remove, and...
5103 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5104 the skeleton names lists can finish building first. In place of
5105 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5106 expect the lists b4_user_percent_define_variables and
5107 b4_user_percent_code_qualifiers.
5108 * data/c++.m4: Where setting default values for b4_parser_class_name,
5109 b4_location_type, b4_filename_type, b4_namespace, and
5110 b4_define_location_comparison, update their names to the
5111 b4_percent_define_ namespace.
5112 * data/glr.c: Don't use b4_check_percent_define_variables and
5113 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5114 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5115 (b4_parser_class_name, b4_namespace): Define these using
5116 b4_get_percent_define for parser_class_name and namespace.
5117 * data/location.cc: Use b4_get_percent_define.
5118 * data/push.c: Don't use b4_check_percent_define_variables and
5119 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5120 * data/yacc.c: Likewise, and don't call m4_exit in
5121 b4_use_push_for_pull_if or m4_wrap code will never execute.
5122 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5123 Rename to...
5124 (muscle_grow_user_name_list): ... this for consistency with the
5125 terminology used in bison.m4.
5126 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5127 %define variable names, and rename muscle used_percent_define_variables
5128 to user_percent_define_variables.
5129 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5130 user_percent_code_qualifiers.
5131 (content): Remove.
5132 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5133 {CODE} form is no longer accepted.
5134 * tests/input.at (Reject bad %code qualifiers): Rename to...
5135 (Reject unused %code qualifiers): ... this, and update test output.
5136 (%define error): Update test output.
5137
5138 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5139
5140 Check for unrecognized %define variables similar to checking for
5141 unrecognized %code qualifiers. Check for redefined %define variables.
5142 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5143 generalizes...
5144 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5145 (b4_check_percent_define_variables): New, also wraps it.
5146 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5147 variables using b4_check_percent_define_variables.
5148 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5149 all those exercised in the test suite and all those listed in the
5150 `Default values' section of c++.m4. Are there others?
5151 * data/push.c, data/yacc.c: Declare no valid %define variables.
5152 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5153 similar to muscle_find, but it works even when the muscle stores a
5154 const value.
5155 (muscle_grow_used_name_list): New function for constructing the used
5156 name list muscles that b4_check_for_unrecognized_names requires.
5157 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5158 %define'd more than once. Define the b4_used_percent_define_variables
5159 muscle with muscle_grow_used_name_list.
5160 (grammar_declaration): Abbreviate %code code with
5161 muscle_grow_used_name_list.
5162 * tests/input.at (%define errors): New.
5163
5164 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5165
5166 Provide warn_at, complain_at, and fatal_at function callbacks to the
5167 skeletons, and use this for %code qualifier complaints.
5168 * data/bison.m4 (b4_error_at): New, invoked by...
5169 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5170 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5171 @fatal_at(...@) directives.
5172 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5173 qualifiers in b4_used_percent_code_qualifiers and to use
5174 b4_complain_at.
5175 * src/location.c, src/location.h (boundary_set_from_string): New global
5176 function.
5177 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5178 function.
5179 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5180 to b4_used_percent_code_qualifiers.
5181 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5182 function.
5183 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5184 (lineno): Rename to...
5185 (out_lineno): ... this so I don't misunderstand it again.
5186 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5187 here; these newlines are in the input but not the output file.
5188 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5189 (at_directive_perform): ... this new static function, and add handling
5190 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5191 directives.
5192 * tests/input.at (Reject bad %code qualifiers): Update test output with
5193 locations and extend.
5194
5195 * tests/output.at (Output file name: [, Output file name: ]): Remove
5196 bogus comment about these tests failing.
5197
5198 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5199
5200 Clean up b4_check_percent_code_qualifiers a little.
5201 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5202 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5203 documentation and add examples.
5204 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5205 qualifiers here.
5206
5207 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5208
5209 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5210 unreliable -- especially when they're hidden inside another macro.
5211 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5212 data/c.m4: Remove m4_divert(-1).
5213 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5214 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5215 m4_divert_push(0) and m4_divert_pop(0).
5216 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
5217 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5218 pushed and popped by m4sugar, should be first on the stack.
5219
5220 Provide warn, complain, and fatal function callbacks to the skeletons.
5221 This provides more flexibility than m4_fatal, improves the error
5222 message format, and captures messages for translation. Discussed
5223 starting at
5224 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5225 * data/bison.m4 (b4_error): New, invoked by...
5226 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5227 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5228 directives. Because these M4 macros might be called when the current
5229 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5230 the previous removal of uses of m4_divert, which caused trouble.
5231 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5232 m4_fatal to report unrecognized %code qualifiers.
5233 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5234 push parser requests.
5235 * data/glr.c: Use b4_complain instead of m4_fatal to report
5236 non-deterministic push parser requests.
5237 Update @output usage to @output(...@) form.
5238 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5239 report missing %defines. Update @output usage to @output(...@) form.
5240 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5241 @output(...@) form.
5242 * src/main.c (main): Invoke skel_scanner_free.
5243 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5244 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5245 obstack_for_string from flex-scanner.h.
5246 (YY_DECL): Use to declare skel_lex static.
5247 (decode_at_digraphs): Remove; now handled in the new
5248 SC_AT_DIRECTIVE_ARG start condition.
5249 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5250 functions.
5251 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5252 at_directive_argv): New static globals.
5253 (INITIAL): Use fail_for_invalid_at.
5254 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5255 recognize the start of a generalized `@directive(...@)' form and
5256 start...
5257 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5258 directive args (using the new obstack_for_string), to decode the
5259 contained @ diagraphs, and to perform the directive. It recognizes
5260 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5261 @output(...@).
5262 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5263 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5264 `@,'.
5265 (scan_skel): Initialize obstack_for_string on the first call.
5266 (skel_scanner_free): New function to free obstack_for_string.
5267 * tests/input.at (Reject bad %code qualifiers): Update test output.
5268
5269 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5270
5271 Consolidate the 4 prologue alternative directives (%code, %requires,
5272 %provides, and %code-top) into a single %code directive with an
5273 optional qualifier field. Discussed at
5274 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5275 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5276 alternatives.
5277 * doc/bison.texinfo (Prologue Alternatives): Update.
5278 (Decl Summary): Update to %code "requires" and %code "provides".
5279 (Calc++ Parser): Update to %code "requires".
5280 (Table of Symbols): Remove entries for %requires, %provides, and
5281 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5282 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5283 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5284 which are skeleton-specific.
5285 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5286 declare what %code qualifiers it supports and to complain if any other
5287 qualifiers were used in the grammar.
5288 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5289 and b4_user_code([b4_percent_code_provides]) in place of
5290 b4_user_requires and b4_user_provides.
5291 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5292 Add b4_user_code([b4_percent_code_top]) and
5293 b4_user_code([b4_percent_code]).
5294 Invoke b4_check_percent_code_qualifiers.
5295 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5296 PERCENT_REQUIRES): Remove.
5297 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5298 %requires. Rewrite the %code RHS as the unqualified form defining the
5299 muscle b4_percent_code. Add another RHS for the qualified %code form,
5300 which defines muscles of the form b4_percent_code_QUALIFIER and the
5301 b4_used_percent_code_qualifiers muscle.
5302 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5303 PERCENT_REQUIRES): Remove.
5304 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5305 %code "requires" and %code "provides".
5306 * tests/input.at (Reject bad %code qualifiers): New.
5307
5308 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5309
5310 Use the new code_props interface for destructors and printers.
5311 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5312 printer_location members, and change the type of the destructor and
5313 printer members to code_props.
5314 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5315 symbol_printer_get, semantic_type_destructor_set,
5316 semantic_type_printer_set, default_tagged_destructor_set,
5317 default_tagless_destructor_set, default_tagged_printer_set,
5318 default_tagless_printer_set): Use code_props in arguments and return
5319 types in place of char const * and location.
5320 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5321 since the locations are now contained in the return of
5322 symbol_destructor_get and symbol_printer_get.
5323 * src/output.c (symbol_destructors_output, symbol_printers_output):
5324 Replace with...
5325 (symbol_code_props_output): ... this to eliminate duplicate code.
5326 (output_skeleton): Update to use symbol_code_props_output.
5327 * src/reader.c (symbol_should_be_used): Update use of
5328 symbol_destructor_get.
5329 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5330 Update uses of the various _destructor_set and _printer_set functions.
5331 * src/symtab.c: (default_tagged_destructor_location,
5332 default_tagless_destructor_location, default_tagged_printer_location,
5333 default_tagless_printer_location): Remove since we...
5334 (default_tagged_destructor, default_tagless_destructor,
5335 default_tagged_printer, default_tagless_printer): ... change the type
5336 of these to code_props.
5337 (symbol_new, semantic_type_new, symbol_destructor_set,
5338 semantic_type_destructor_set, symbol_destructor_get,
5339 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5340 symbol_check_alias_consistency, default_tagged_destructor_set,
5341 default_tagless_destructor_set, default_tagged_printer_set,
5342 default_tagless_printer_set): Update.
5343 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5344 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5345 code_props members.
5346 (symbol_print): Use SYMBOL_CODE_PRINT.
5347
5348 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5349
5350 Use the new code_props interface for rule actions.
5351 * src/symlist.h (symbol_list): Replace action, action_location, and
5352 used members with a code_props action_props member.
5353 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5354 grammar_midrule_action, grammar_current_rule_merge_set,
5355 grammar_current_rule_symbol_append, packgram): Update.
5356 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5357 * src/scan-code.l (handle_action_dollar): Update.
5358 (translate_rule_action): Remove, no longer used.
5359 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5360
5361 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5362
5363 Use the new code_props interface in parse-gram.y.
5364 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5365 Update all uses of translate_* functions to use the new code_props
5366 interface and to use gram_scanner_last_string_free and
5367 code_scanner_last_string_free where possible.
5368 (grammar_declaration): symbol_list_destructor_set and
5369 symbol_list_printer_set now perform the translation, so don't do it
5370 here. Use gram_scanner_last_string_free where possible.
5371 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5372 translate_code): Remove, no longer used.
5373 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5374 symbol_list_printer_set): Perform code translation here rather than
5375 depending on the caller to do so.
5376
5377 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5378 * src/scan-gram.h (gram_last_string): Remove declaration.
5379 * src/scan-gram.l (last_string): Declare it static.
5380
5381 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5382
5383 Encapsulate code properties and related functionality for the various
5384 destructors, printers, and actions into a code_props structure and
5385 interface. This patch merely implements code_props in scan-code.h and
5386 scan-code.l. Future patches will rewrite other modules to use it.
5387 Discussed starting at
5388 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5389 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5390 consistently initialize const structs that have an empty location
5391 field.
5392 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5393 to ensure consistency.
5394 * src/scan-code.h (code_props): New structure.
5395 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5396 function, macro, and const global variable for initializing a
5397 code_props with no code.
5398 (code_props_plain_init, code_props_symbol_action_init,
5399 code_props_rule_action_init, code_props_translate_code): The rest of
5400 the new code_props functional interface. Among other things, the init
5401 functions set the code_props kind field so that
5402 code_props_translate_code will know whether to behave like
5403 translate_symbol_action, translate_rule_action, or translate_code.
5404 These old translate functions must remain until all other modules are
5405 updated to use the new code_props interface.
5406 (code_scanner_last_string_free): New function similar to
5407 gram_scanner_last_string_free.
5408 (code_scanner_free): Add documentation.
5409 * src/scan-code.l: Implement the new interface.
5410 (code_lex): Make it static, add a code_props* argument, and remove the
5411 rule argument.
5412 (last_string): New static global similar to the one in scan-gram.l.
5413 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5414 instead of rule.
5415 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5416 code_props since Bison may one day use this information for destructors
5417 and printers.
5418 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5419 (handle_action_dollar): Use symbol_list_n_get and set used flag
5420 directly since symbol_list_n_used_set is removed.
5421 (translate_action): Add a code_props* argument and remove the rule,
5422 action, and location arguments. Pass the code_props* on to code_lex.
5423 (translate_rule_action, translate_symbol_action, translate_code):
5424 Rewrite as wrappers around the new code_props interface.
5425 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5426 it would eventually need to break the encapsulation of code_props.
5427
5428 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5429
5430 * etc/.cvsignore: New.
5431
5432 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5433
5434 Add maintainer-push-check to run maintainer-check using push parsing in
5435 place of pull parsing where available.
5436 * Makefile.am (maintainer-push-check): New.
5437 * data/bison.m4 (b4_use_push_for_pull_if): New.
5438 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5439 appropriately based on their existing values.
5440 (yypush_parse): Don't print push-parser-specific diagnostics if push
5441 parsing is being used in place of pull parsing.
5442 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5443 push.c.
5444 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5445 variable, and insert b4_use_push_for_pull_flag into muscles.
5446 * tests/Makefile.am (maintainer-push-check): New.
5447
5448 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5449
5450 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5451 (whether successful or failed) so that yypush_parse can be invoked
5452 again to start a new parse using the same yypstate.
5453 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5454 check multiple yypull_parse invocations on the same yypstate. For pull
5455 mode, extend to check multiple yyparse invocations.
5456 (Exploding the Stack Size with Alloca): Extend to try with
5457 %push-pull-parser.
5458 (Exploding the Stack Size with Malloc): Likewise.
5459
5460 * tests/calc.at (Simple LALR Calculator): Don't specify
5461 %skeleton "push.c" since %push-pull-parser implies that now.
5462 * tests/headers.at (export YYLTYPE): Don't check for the push
5463 declarations. Otherwise, this test case can't be used to see if push
5464 mode can truly emulate pull mode.
5465 * tests/input.at (Torturing the Scanner): Likewise.
5466 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5467 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5468 AT_YACC_IF, which now includes the case of push mode since %skeleton
5469 need not be used for push mode. This will be more intuitive once
5470 push.c is renamed to yacc.c.
5471
5472 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5473
5474 For push mode, convert yyparse from a macro to a function, invoke yylex
5475 instead of passing a yylexp argument to yypull_parse, and don't
5476 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5477 Discussed starting at
5478 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5479 * data/bison.m4 (b4_pull_if): New.
5480 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5481 * data/push.c: Improve M4 quoting a little.
5482 (b4_generate_macro_args, b4_parenthesize): Remove.
5483 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5484 any time a pull parser is requested.
5485 Don't #define this as a wrapper around yypull_parse. Instead, when
5486 both push and pull are requested, make it a function that does that
5487 same thing.
5488 (yypull_parse): If there's a b4_prefix, #define this to
5489 b4_prefix[pull_parse] when both push and pull are requested.
5490 Don't define this as a function unless both push and pull are
5491 requested.
5492 Remove the yylexp argument and hard-code yylex invocation instead.
5493 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5494 %push-parser.
5495 * src/getargs.c (pull_parser): New global initialized to true.
5496 * getargs.h (pull_parser): extern it.
5497 * src/output.c (prepare): Insert pull_flag muscle.
5498 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5499 (prologue_declaration): Set both push_parser and pull_parser = true for
5500 %push-pull-parser. Set push_parser = true and pull_parser = false for
5501 %push-parser.
5502 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5503 %push-parser since there's no backward-compatibility concern here.
5504 Scan %push-pull-parser.
5505 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5506 instead of %push-parser.
5507 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5508 prototype it in the module that calls yyparse.
5509 * tests/input.at (Torturing the Scanner): Likewise.
5510 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5511
5512 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5513
5514 Update etc/bench.pl. Optimize push mode a little (the yyn change
5515 deserves most of the credit).
5516 * Makefile.am (SUBDIRS): Add etc subdirectory.
5517 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5518 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5519 yytoken, yyval, and yyloc declarations to...
5520 (yyparse or yypush_parse): ... here to improve performance. For
5521 yypush_parse invocations after the first, be sure to assign yyn its old
5522 value again.
5523 (yypstate_new): Don't bother initializing the yyresult field since the
5524 initial value isn't used.
5525 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5526 remove the #define that, in push mode, set it to yyps->NAME.
5527 * etc/Makefile.am: New.
5528 * etc/bench.pl: Remove and build it instead from...
5529 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5530 "tests/bison" from the build directory by default rather than just
5531 invoking "bison" from $PATH.
5532 (calc_grammar): Update push parser code: don't declare yylval globally,
5533 don't define yyparse_wrapper, and don't #define yyparse.
5534 (bench_grammar): Update to check all working combinations of yacc.c,
5535 push.c, impure, pure, pull, and push.
5536
5537 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5538
5539 For push mode, add pull wrappers around yypush_parse.
5540 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5541 (yypull_parse): New function wrapping yypush_parse.
5542 (yyparse): New #define wrapping yypull_parse.
5543 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5544 is declared.
5545 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5546 prototype yylex in the module that calls yyparse, and don't prototype
5547 yyparse there. Otherwise, the yyparse expansion won't compile.
5548 * tests/input.at (Torturing the Scanner): Likewise.
5549
5550 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5551
5552 Enable push parsers to operate in impure mode. Thus, %push-parser no
5553 longer implies %pure-parser. The point of this change is to move
5554 towards being able to test the push parser code by running the entire
5555 test suite as if %push-parser had been declared.
5556 * data/push.c (yypush_parse): For impure mode, remove the
5557 yypushed_char, yypushed_val, and yypushed_loc arguments.
5558 Instead, declare these as local variables initialized to the global
5559 yychar, yylval, and yylloc.
5560 For the first yypush_parse invocation only, restore the initial values
5561 of these global variables when it's time to read a token since they
5562 have been overwritten.
5563 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5564 %push-parser.
5565 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5566 %pure-parser along with %push-parser since this test case was designed
5567 for pure push parsers.
5568 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5569 (AT_YACC_OR_PUSH_IF): New.
5570 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5571 add a note that it's still wrong for some cases (as it has been for a
5572 while).
5573 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5574 %push-parser no longer implies %pure-parser.
5575
5576 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5577
5578 Remove some unnecessary differences between the pull parser code and
5579 the push parser code. This patch enables yynerrs in push mode.
5580 * data/push.c: Reformat M4 a little.
5581 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5582 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5583 because push mode is on. Instead, if pure mode is on, move yynerrs
5584 to...
5585 (b4_declare_parser_state_variables): ... here.
5586 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5587 to yyps->NAME so it can be used in yypush_parse.
5588 (yypush_parse): Don't omit uses of yynerrs in push mode.
5589
5590 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5591
5592 Fix bug such that the first pushed token's value and location are
5593 sometimes overwritten (sometimes by %initial-action) before being used.
5594 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5595 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5596 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5597 more closely mimic the pull parser logic.
5598 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5599 time to read a token, which is after any initialization of yylval and
5600 yylloc.
5601 (gottoken): Rename label to...
5602 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5603 user namespace.
5604
5605 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5606
5607 Rearrange initialization of the parser state variables so that the
5608 skeleton doesn't have to have a copy for pull mode and another for push
5609 mode. This patch also fixes at least a bug such that yylloc was not
5610 initialized (with b4_location_initial_line and
5611 b4_location_initial_column) upon calling yypush_parse. However, that
5612 initialization now overwrites the first token's location;
5613 %initial-action assigning @$ already did the same thing, and both bugs
5614 will be fixed in a later patch.
5615 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5616 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5617 yyss, yyvs, yyls, and yystacksize.
5618 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5619 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5620 yylsp.
5621 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5622 yyps->NAME so it can be used in yypush_parse.
5623 (yyparse or yypush_parse): For yypush_parse, don't print the
5624 "Starting parse" diagnostic for invocations after the first.
5625 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5626 yypush_parse, only do it for the first invocation.
5627 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5628 initialization to occur in yypush_parse but only on the first
5629 invocation.
5630
5631 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5632
5633 * data/push.c: Add CPP guards around push parser declarations in both
5634 the header and the code file.
5635 In the code file, move the push parser declarations to the same place
5636 they appear in the header file.
5637 Clean up the M4 some, especially the inconsistent underquoting in
5638 some b4_c_function_def and b4_c_function_decl uses.
5639
5640 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5641
5642 Encapsulate the push parser state variables into an M4 macro so the
5643 push skeleton doesn't have to list them again for pull mode's yyparse.
5644 For push mode, remove yypush_parse's local equivalents of these
5645 variables to eliminate unnecessary copying between the two sets at
5646 run-time. This patch also fixes at least a bug related to multiple
5647 %initial-action invocations in push mode.
5648 * data/push.c (b4_declare_parser_variables): Rename to...
5649 (b4_declare_scanner_communication_variables): ... this for clarity and
5650 update both uses.
5651 (b4_declare_yyparse_variables): Remove and move its contents to the one
5652 spot where it was invoked.
5653 (b4_declare_parser_state_variables): New macro containing the parser
5654 state variables required by push mode.
5655 (struct yypstate): Replace all fields but yynew with
5656 b4_declare_parser_state_variables.
5657 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5658 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5659 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5660 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5661 parser state variable declarations with
5662 b4_declare_parser_state_variables.
5663 Don't initialize parser state variables when calling yypush_parse since
5664 yypstate_new already does that.
5665 Invoke the user's initial action only upon the first yypush_parse
5666 invocation.
5667 Remove all code that copies between the local parser state variables
5668 and the yypstate.
5669
5670 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5671
5672 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5673 prevent a name collision in a future patch where these names will
5674 sometimes be #define'd.
5675 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5676 since it no longer has the same name as the existing argument.
5677 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5678
5679 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5680 and Joel E. Denny <jdenny@ces.clemson.edu>
5681
5682 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5683 that the argument is case-insensitive, and there's no `=' here.
5684 For the %skeleton entry, mention that %language is better.
5685 (Bison Options): Likewise for --language and --skeleton. Move the
5686 --skeleton entry so that the `Tuning the parser' section is sorted
5687 alphabetically on long options.
5688 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5689 %language directive in detail here; cross-reference the %language
5690 documentation instead.
5691 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5692 `%require "2.3b"' so that the example is always up-to-date.
5693 (Table of Symbols): Add entries for %language and %skeleton.
5694 * examples/extexi (normalize): Instead of replacing every %require
5695 argument with the current Bison version, just substitute for
5696 `@value{VERSION}'. This guarantees that we're testing what actually
5697 appears in the documentation.
5698 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5699 rather than `@VERSION@'.
5700
5701 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5702
5703 * NEWS: Reword the %language news a bit, and put it earlier.
5704
5705 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5706 Rewrite to simplify the logic.
5707 (language_argmatch): Likewise.
5708 (program_name): We now own this var.
5709 * src/getargs.h (struct bison_language): Use char[] rather than
5710 const char *.
5711
5712 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5713 Java is supported.
5714 * src/complain.c (program_name): Remove decl; no longer needed.
5715 * src/main.c (program_name): Remove; now belongs to getargs.
5716
5717 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
5718
5719 * NEWS: Document %language.
5720
5721 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5722
5723 * data/c-skel.m4, data/c++-skel.m4: New files.
5724 * data/glr.c: Complain on push parsers.
5725
5726 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5727 over %skeleton.
5728 (Decl Summary): Document %language and %skeleton.
5729 (Command line): Document -L.
5730
5731 * examples/extexi: Rewrite %require directive.
5732 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5733
5734 * src/files.c (compute_exts_from_gc): Look in language structure
5735 for .y extension.
5736 (compute_file_name_parts): Check whether .tab should be added.
5737 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5738 (language, skeleton_arg, language_argmatch): New.
5739 (long_options): Add --language.
5740 (getargs): Use skeleton_arg, add -L/--language.
5741 * src/getargs.h: Include location.h.
5742 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5743 * src/output.c (prepare): Pick default skeleton from struct language.
5744 Don't dispatch C skeletons here.
5745 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5746 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5747 * src/scan-gram.l ("%language"): New rule.
5748
5749 * tests/calc.at: Test %skeleton and %language.
5750 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5751 (AT_GLR_IF): Look for %skeleton "glr.cc".
5752 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5753 (AT_YACC_IF): Reject %language.
5754
5755 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5756
5757 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5758 since it wasn't used; only the typedef name 'semantic_type' is needed.
5759 Also, omit trailing white space.
5760
5761 * bootstrap: Sync from coreutils.
5762 (gnulib_extra_files): Add build-aux/announce.gen.
5763 (slurp): Adjust .gitignore files like .cvsignore files.
5764 * build-aux/announce-gen: Remove from CVS, since bootstrap
5765 now creates this.
5766
5767 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5768
5769 Make %push-parser imply %pure-parser. This fixes several bugs; see
5770 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5771 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5772 pure_parser = true.
5773 * data/push.c: Don't bother testing b4_push_if when deciding whether
5774 to expand b4_declare_parser_variables globally.
5775 (yypush_parse): Likewise in here.
5776
5777 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5778 (yy_reduce_print): Reformat M4 for readability.
5779
5780 2006-12-15 Bob Rossi <bob@brasko.net>
5781 and Joel Denny <jdenny@ces.clemson.edu>
5782
5783 * data/push.c (yypstate): Add typedef, and update all uses of
5784 struct yypstate to just yypstate.
5785 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5786
5787 2006-12-14 Bob Rossi <bob@brasko.net>
5788
5789 * data/push.c (yypush_parse): Declare prototype regardless of
5790 %locations option.
5791
5792 2006-12-14 Bob Rossi <bob@brasko.net>
5793
5794 * data/push.c (yyparse): Remove the prototype and the #define when in
5795 push-parser mode.
5796
5797 2006-12-13 Bob Rossi <bob@brasko.net>
5798
5799 * data/push.c (yypstate_init): Rename to...
5800 (yypstate_new): ... this and use b4_c_function_def.
5801 (yypstate_delete): New.
5802 (yypush_parse): Change parameters yynval and yynlloc to be const.
5803 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5804 yypstate_delete functions.
5805
5806 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5807
5808 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5809 strange test case titles. Reported by Bob Rossi.
5810
5811 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5812
5813 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5814 of potential ambiguities in GLR grammers.
5815
5816 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5817
5818 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5819 `bison ', use m4_index instead of m4_substr since chopping up a string
5820 containing M4-special characters causes problems here.
5821
5822 Fix a couple of bugs related to special characters in user-specified
5823 file names, and make it easier for skeletons to compute output file
5824 names with the same file name prefix as Bison-computed output file
5825 names.
5826 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5827 b4_parser_file_name and b4_spec_defines_file instead of
5828 @output_parser_name@ and @output_header_name@, which are now redundant.
5829 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5830 b4_parser_file_name, b4_spec_defines_file, and the new
5831 @basename(FILENAME@) instead of @output_parser_name@ and
5832 @output_header_name@, which inappropriately escaped the file names as
5833 C string literals.
5834 * src/files.c (all_but_ext): Remove static qualifier.
5835 (compute_output_file_names): Move `free (all_but_ext)' to...
5836 (output_file_names_free): ... here since all_but_ext is needed later.
5837 * src/files.h (all_but_ext): Extern.
5838 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
5839 exactly what MUSCLE_INSERT_STRING used to do.
5840 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
5841 characters are escaped properly.
5842 * src/output.c (prepare): Define muscle file_name_all_but_ext as
5843 all_but_ext.
5844 For pkgdatadir muscle, maintain previous functionality by using
5845 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
5846 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
5847 digraphs would never be expanded. Hopefully no one has M4-special
5848 characters in his Bison installation path.
5849 * src/scan-skel.l: Don't parse @output_header_name@ and
5850 @output_parser_name@ anymore since they're now redundant.
5851 In @output, use decode_at_digraphs.
5852 Parse a new @basename command that invokes last_component.
5853 (decode_at_digraphs): New.
5854 (BASE_QPUTS): Remove unused.
5855 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
5856 (Output file name): New tests.
5857
5858 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
5859
5860 Warn about output files that are generated by the skeletons and that
5861 conflict with other output files.
5862 * data/glr.c: Don't generate the header file here when glr.cc does.
5863 * src/files.c (file_names, file_names_count): New static globals.
5864 (compute_output_file_names): Invoke output_file_name_check for files
5865 not generated by the skeletons and remove existing checks.
5866 (output_file_name_check): New function that warns about conflicting
5867 output file names.
5868 (output_file_names_free): Free file_names.
5869 * src/files.h (output_file_name_check): Declare.
5870 * src/scan-skel.l: Invoke output_file_name_check for files generated by
5871 the skeletons.
5872 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
5873 (Conflicting output files): New tests.
5874
5875 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5876
5877 * doc/bison.texinfo: Fix a couple of typos.
5878
5879 2006-12-08 Bob Rossi <bob@brasko.net>
5880
5881 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
5882 Rename to...
5883 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
5884 update all uses.
5885 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
5886 (yypush_parse): Rename yypvars argument to yyps and remove redundant
5887 local pv.
5888 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
5889 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
5890
5891 2006-12-07 Bob Rossi <bob@brasko.net>
5892 and Joel Denny <jdenny@ces.clemson.edu>
5893
5894 * data/push.c (yypvarsinit): Change return type from void* to struct
5895 yypvars*. No longer cast to void* on return.
5896 (struct yypvars): Remove yylen since it need not be remembered between
5897 yypushparse invocations.
5898 (yypushparse): Don't copy between yylen and pv->yylen.
5899
5900 2006-12-05 Bob Rossi <bob@brasko.net>
5901
5902 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
5903 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
5904 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
5905 (struct yypvars): Remove b4_declare_parser_variables.
5906 (yypvarsinit): Remove init code for removed variables.
5907 (global scope): Do not declare b4_declare_parser_variables if
5908 push or pure mode.
5909 (yypushparse): Add b4_declare_parser_variables.
5910 Init new local variables, and remove init code for removed
5911 yypvars variables.
5912 (yyparse): Delete.
5913 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
5914 and yyparse for other modes.
5915 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
5916 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
5917 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
5918 (AT_PURE_LEX_IF): True if pure or push parser.
5919
5920 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
5921
5922 Document Yacc prologue alternatives and default %destructor's and
5923 %printer's as experimental. Don't mention Java yet. Discussed at
5924 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
5925 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
5926 (2.3a): Annotate this entry to say the old forms of these features were
5927 also experimental.
5928 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
5929 Table of Symbols): Say they're experimental. Comment out any mention
5930 of Java (we'll want this back eventually).
5931
5932 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5933
5934 Support a file name argument to %defines. Deprecate `=' in
5935 %file-prefix, %name-prefix, and %output. Discussed at
5936 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
5937 * NEWS (2.3a+): Mention.
5938 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
5939 form of %defines, and remove `=' from entries for %file-prefix,
5940 %name-prefix, and %output.
5941 * src/parse-gram.y (prologue_declaration): Implement.
5942 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
5943 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
5944 all but one occurrence of %name-prefix.
5945 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
5946 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
5947 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
5948 occurrence of each of %file-prefix and %output. Add check for %defines
5949 with argument.
5950 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
5951 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
5952 Remove the `=' from %output.
5953
5954 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
5955
5956 Don't escape $ in test case titles since Autoconf 2.61 now does that
5957 correctly.
5958 * tests/actions.at (Default %printer and %destructor are not for error
5959 or $undefined): Here.
5960 (Default %printer and %destructor are not for $accept): Here.
5961 * tests/input.at (Invalid $n and @n): Here.
5962
5963 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
5964
5965 Rename <!> to <>. Discussed starting at
5966 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
5967 * NEWS (2.3a+): Update.
5968 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
5969 Update.
5970 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
5971 * src/scan-gram.l (INITIAL): Implement.
5972 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
5973 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
5974 comment.
5975 * tests/actions.at (Default tagless %printer and %destructor,
5976 Default tagged and per-type %printer and %destructor,
5977 Default %printer and %destructor are not for error or $undefined,
5978 Default %printer and %destructor are not for $accept,
5979 Default %printer and %destructor for mid-rule values): Update.
5980 * tests/input.at (Default %printer and %destructor redeclared,
5981 Unused values with default %destructor): Update.
5982
5983 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5984
5985 Don't let %prec take a nonterminal.
5986 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5987 token.
5988 * tests/input.at (%prec takes a token): New test checking that %prec
5989 won't take a nonterminal.
5990
5991 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5992
5993 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5994 it was double-quoted.
5995 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5996 grammar is maintained with Bison's highest standards.
5997 * src/getargs.c: Fix some typos in Doxygen comments.
5998
5999 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6000
6001 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6002 later. Reported by Paul Eggert in
6003 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6004 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6005 * src/scan-code.l (translate_action): Don't bother invoking
6006 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6007 (code_scanner_free): Instead of invoking
6008 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6009 which frees more.
6010 * src/scan-gram.l (gram_scanner_free): Likewise.
6011 * src/scan-skel.l (scan_skel): Likewise.
6012
6013 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6014
6015 * src/files.c (tr): Change return type to void.
6016 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6017 has been called previously for the same key.
6018 (muscle_find): Return storage instead of value so that
6019 --enable-gcc-warnings doesn't produce warnings that the return discards
6020 const. aver that the value and storage are the same since storage
6021 could potentially be NULL when value is not.
6022 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6023 same as 0.
6024
6025 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6026
6027 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6028 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6029 us a slightly cleaner distribution, and also works.
6030 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6031 gnulib changes.
6032
6033 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6034 and Paul Eggert <eggert@cs.ucla.edu>
6035
6036 Don't let Bison leak memory except when it complains.
6037 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6038 (spec_defines_file, dir_prefix): Now char *, not const char *,
6039 since they are freed.
6040 * src/files.c: Likewise.
6041 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6042 Likewise.
6043 (tr): Now operates in-place. All uses changed.
6044 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6045 values.
6046 (compute_file_name_parts, compute_output_file_names): Don't store
6047 read-only data in variables that will be freed.
6048 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6049 src_extension, and header_extension.
6050 (output_file_names_free): New public function to free
6051 spec_verbose_file, spec_graph_file, spec_defines_file,
6052 parser_file_name, and dir_prefix.
6053 * src/getargs.c (getargs): Don't store read-only data in variables that
6054 will be freed.
6055 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6056 (which previously existed but was unused), and quotearg_free.
6057 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6058 * src/muscle_tab.c: Likewise.
6059 (muscle_entry): Make the value char const *,
6060 and add a new storage member that is char * and can be freed.
6061 (muscle_entry_free): New private function.
6062 (muscle_init): Use it instead of free.
6063 (muscle_insert, muscle_grow): Update and use new storage member.
6064 (muscle_code_grow): Free the string passed to muscle_grow
6065 since it's not needed anymore.
6066 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6067 add a new `char *code' member.
6068 ("{...}"): Declare semantic type as code.
6069 * src/scan-code.h (translate_rule_action):
6070 (translate_symbol_action, translate_code, translate_action): Return
6071 `char const *' rather than `char *' since external code should not free
6072 these strings.
6073 * src/scan-code.l: Likewise.
6074 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6075 which is "{...}" in the parser.
6076 * tests/Makefile.am (maintainer-check-valgrind): Set
6077 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6078 Valgrind.
6079 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6080 complain.
6081 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6082 expecting a non-zero exit status sets --leak-check=summary and
6083 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6084 this case, and we don't want to hear about it.
6085
6086 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6087
6088 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6089 instead of from the template, to simplify configuration a bit.
6090 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6091 and m4/wint_t.m4, as they are needed with the latest gnulib.
6092
6093 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6094
6095 Disable unset/unused mid-rule value warnings by default, and recognize
6096 --warnings=midrule-values to enable them. Discussed starting at
6097 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6098 * NEWS (2.3a+): Mention.
6099 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6100 warnings): Add entry for midrule-values subargument.
6101 * src/reader.c (symbol_should_be_used): Don't return true just because
6102 the value is a set/used mid-rule value unless
6103 --warnings=midrule-values was specified.
6104 * tests/input.at (Unused values, Unused values before symbol
6105 declarations): Run tests with and without --warnings=midrule-values.
6106
6107 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6108 than LIST_FREE directly.
6109
6110 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6111
6112 Finish implementing --warnings=error, which should not be implied by
6113 --warnings=all (or by its synonyms -W and --warnings without
6114 subarguments).
6115 * src/complain.c (set_warning_issued): New function to report that
6116 warnings are being treated as errors and to record an error if so.
6117 Invoke...
6118 (warn_at, warn): ... here.
6119 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6120 "error - warnings are errors" does not appear above "all - all of the
6121 above".
6122 (getargs): For -W and --warnings without subarguments, don't let
6123 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6124 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6125
6126 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6127
6128 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6129 empty subargument list. For example: `bison --warnings= parser.y'.
6130
6131 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6132
6133 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6134 the parser header file so that gcc doesn't warn.
6135
6136 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6137
6138 Split the default %destructor/%printer into two kinds: <*> and <!>.
6139 Discussed starting at
6140 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6141 * NEWS (2.3a+): Mention.
6142 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6143 previous change today related to mid-rules.
6144 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
6145 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
6146 (TYPE_TAG_ANY): Add as <*>.
6147 (TYPE_TAG_NONE): Add as <!>.
6148 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6149 for <*> and <!>.
6150 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6151 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6152 * src/symlist.c (symbol_list_default_new): Split into tagged and
6153 tagless versions.
6154 (symbol_list_destructor_set, symbol_list_printer_set): Split
6155 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6156 SYMLIST_DEFAULT_TAGLESS.
6157 * src/symlist.h: Update symbol_list_default*_new prototypes.
6158 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6159 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6160 * src/symtab.c (default_destructor, default_destructor_location,
6161 default_printer, default_printer_location): Split each into tagged and
6162 tagless versions.
6163 (symbol_destructor_get, symbol_destructor_location_get,
6164 symbol_printer_get, symbol_printer_location_get): Implement tagged
6165 default and tagless default cases.
6166 (default_destructor_set, default_printer_set): Split each into tagged
6167 and tagless versions.
6168 * src/symtab.h: Update prototypes.
6169 * tests/actions.at (Default %printer and %destructor): Rename to...
6170 (Default tagless %printer and %destructor): ... this, and extend.
6171 (Per-type %printer and %destructor): Rename to...
6172 (Default tagged and per-type %printer and %destructor): ... this, and
6173 extend.
6174 (Default %printer and %destructor for user-defined end token): Extend.
6175 (Default %printer and %destructor are not for error or $undefined):
6176 Update.
6177 (Default %printer and %destructor are not for $accept): Update.
6178 (Default %printer and %destructor for mid-rule values): Extend.
6179 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6180 (Unused values with default %destructor): Extend.
6181
6182 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6183
6184 Don't apply the default %destructor/%printer to an unreferenced midrule
6185 value. Mentioned at
6186 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6187 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6188 like $@n instead of just @n so that the default %destructor/%printer
6189 logic doesn't see them as user-defined symbols.
6190 (symbol_is_dummy): Check for both forms of the name.
6191 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6192 name for which the midrule value is referenced in any action.
6193 * tests/actions.at (Default %printer and %destructor for mid-rule
6194 values): New test.
6195 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6196 for change to dummy symbol names.
6197
6198 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6199
6200 Warn about unset midrule $$ if the corresponding $n is used.
6201 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6202 $n usage.
6203 (packgram): Before invoking grammar_rule_check on any rule, make sure
6204 all actions have already been scanned in order to set `used' flags.
6205 Otherwise, checking that a midrule's $$ is set will not always work
6206 properly because the midrule check must forward-reference the midrule's
6207 parent rule.
6208 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6209 warning.
6210
6211 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6212
6213 More improvements to the documentation of the prologue alternatives:
6214 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6215 Bison manual.
6216 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6217 some text to clarify the relative importance of the new directives and
6218 to show how these directives may be viewed as code labels.
6219
6220 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6221
6222 Similar to the recently removed %before-header, add %code-top as the
6223 alternative to the pre-prologue. Mentioned at
6224 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6225 Also, let the prologue alternatives appear in the grammar section.
6226 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6227 (prologue_declaration): Move the existing prologue alternatives to...
6228 (grammar_declaration): ... here and add %code-top.
6229 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6230
6231 Clean up and extend documentation for the prologue alternatives.
6232 * NEWS (2.3a+): Describe prologue alternatives.
6233 * doc/bison.texinfo (Prologue): Move discussion of prologue
6234 alternatives to...
6235 (Prologue Alternatives): ... this new section, and extend it to discuss
6236 all 4 directives in detail.
6237 (Table of Symbols): Clean up discussion of prologue alternatives and
6238 add %code-top.
6239
6240 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6241
6242 DJGPP specific issues.
6243
6244 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6245 config.bat accordingly.
6246 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6247 * djgpp/config.site: Likewise.
6248
6249 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
6250
6251 Replace %*-header with %provides, %requires, %code. See discussion at
6252 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6253
6254 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6255 (b4_user_start_header): Remove.
6256 * data/glr.c: Use new macros instead of b4_*start_header
6257 and b4_*end_header.
6258 * data/glr.cc: Likewise.
6259 * data/lalr1.cc: Likewise.
6260 * data/push.c: Likewise.
6261 * data/yacc.c: Likewise.
6262
6263 * doc/bison.texinfo: Remove %before-header, rename
6264 %{start,end,after}-header to %requires, %provides, %code.
6265
6266 * src/parse-gram.y: Likewise (also rename token names accordingly).
6267 * src/scan-gram.l: Likewise.
6268 * tests/actions.at: Likewise.
6269
6270 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6271
6272 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6273 Problem reported by Joel E. Denny.
6274
6275 2006-10-14 Jim Meyering <jim@meyering.net>
6276
6277 (Sync from coreutils.)
6278 Work also when the working directory (with e.g. coreutils sources)
6279 is version controlled with git, rather than CVS.
6280 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6281 rather than CVS.
6282 In messages and comments, say e.g., "checked-out sources",
6283 rather than "CVS sources".
6284 (version_controlled_file): New function. Work for git as well as
6285 for CVS. Don't use grep's -q option.
6286 (slurp): Call it here, in place of CVS-specific code.
6287
6288 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6289
6290 Fix testsuite for ./configure --enable-gcc-warnings:
6291 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6292 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6293 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6294 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6295 * test/regression.at (Diagnostic that expects two alternatives):
6296 Likewise.
6297
6298 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6299
6300 * bootstrap.conf (gnulib_modules): Add config-h.
6301 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6302 worry about HAVE_CONFIG_H.
6303 * lib/abitset.c: Likewise.
6304 * lib/bitset.c: Likewise.
6305 * lib/bitset_stats.c: Likewise.
6306 * lib/bitsetv-print.c: Likewise.
6307 * lib/bitsetv.c: Likewise.
6308 * lib/ebitset.c: Likewise.
6309 * lib/get-errno.c: Likewise.
6310 * lib/lbitset.c: Likewise.
6311 * lib/subpipe.c: Likewise.
6312 * lib/timevar.c: Likewise.
6313 * lib/vbitset.c: Likewise.
6314 * lib/bitset.c: Include "bitset.h" first, to test interface.
6315 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6316 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6317 * lib/bitsetv.c: Include "bitsetv.h" first.
6318 * lib/get-errno.c: Include "get-errno.h" first.
6319 * m4/.cvsignore: Add config-h.m4.
6320 * tests/actions.at (Default %printer and %destructor for ...):
6321 Adjust expected line numbers in output to reflect removal of #if
6322 HAVE_CONFIG_H lines.
6323 * tests/glr-regression.at (Missed %merge type warnings when ...):
6324 Likewise.
6325 * tests/regression.at (Braced code in declaration in rules section):
6326 Likewise.
6327 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6328 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6329 Include <config.h> unconditionally.
6330
6331 * bootstrap: Sync from coreutils, as follows:
6332
6333 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6334
6335 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6336 variable was sometimes used without being initialized. This
6337 messed up the installation of the INSTALL file in some cases.
6338
6339 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6340
6341 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6342 --copy. Inspired by a suggestion from Bruno Haible.
6343
6344 2006-10-03 Jim Meyering <jim@meyering.net>
6345
6346 * bootstrap: Undo last change to this file, since now gnulib-tool
6347 sticks with the automake default in generating dependencies.
6348
6349 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6350
6351 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6352 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6353
6354 * doc/bison.1: Add copyright notice.
6355
6356 * data/glr.c: Don't include <stdarg.h>; not used.
6357
6358 * NEWS: The -g and --graph options now output graphs in Graphviz
6359 DOT format, not VCG format.
6360 * doc/bison.1: Likewise.
6361 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
6362 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6363 of this change in
6364 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
6365 * TODO: Remove Graphviz entry.
6366 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6367 remove vcg.c, vcg.h, vcg_defaults.h.
6368 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6369 * src/graphviz.c, src/graphviz.h: New files.
6370 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6371 * src/files.h: Make comment more generic.
6372 * src/main.c (main): Likewise.
6373 * src/print_graph.h: Likewise.
6374 * src/getargs.c (usage): Make usage description more generic.
6375 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6376 (static_graph, fgraph): Remove. All uses changed to pass
6377 arguments instead of sharing a static var.
6378 (print_core, print_actions, print_state, print_graph):
6379 Output graphviz format rather than VCG format.
6380 * tests/.cvsignore: Remove *.vcg; add *.dot.
6381 * tests/output.at: Expect *.dot files, not *.vcg files.
6382
6383 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6384 accommodates the 2006-10-08 change.
6385
6386 2006-10-11 Bob Rossi <bob@brasko.net>
6387
6388 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6389 (b4_yyssa, b4_yyerror_range): New macros.
6390 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6391 (yypvarsinit): Remove init of removed fields.
6392 (yypushparse): Remove use of removed fields; use new macros instead.
6393
6394 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6395
6396 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6397 in a push parser. Reindent slightly to match yacc.c better.
6398
6399 2006-10-11 Bob Rossi <bob@brasko.net>
6400
6401 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6402 yymsg_alloc fields.
6403 (yypvarsinit, yypushparse): Remove init of removed fields.
6404 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
6405
6406 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6407
6408 * THANKS: Add Paolo Bonzini and Bob Rossi.
6409
6410 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
6411
6412 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6413 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6414 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6415 b4_define_user_cde and uses): Remove.
6416 (b4_comment, b4_prefix, b4_sync_start): New.
6417 * data/bison.m4: New file, with most of the content removed from c.m4.
6418 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6419 * src/output.c (output_skeleton): Pass bison.m4.
6420 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6421 only if specified.
6422
6423 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6424
6425 Fix test failure reported by Tom Lane in
6426 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6427 and try to make such failures easier to catch in the future.
6428 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6429 that's now the caller's responsibility.
6430 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6431 Set yychar = YYEOF if it's negative.
6432 * tests/actions.at (yylex): Abort if asked to read past EOF.
6433 * tests/conflicts.at (yylex): Likewise.
6434 * tests/cxx-type.at (yylex): Likewise.
6435 * tests/glr-regression.at (yylex): Likewise.
6436 * tests/input.at (yylex): Likewise.
6437 * tests/regression.at (yylex): Likewise.
6438 * tests/torture.at (yylex): Likewise.
6439
6440 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6441
6442 Fix problems with translating English-language diagnostics.
6443 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6444 respect to bison-runtime pot generation. The YY_ stuff
6445 wasn't being captured.
6446 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6447 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6448 * runtime-po/POTFILES.in: Add data/push.c.
6449
6450 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6451
6452 Merge bootstrap changes from coreutils.
6453
6454 2006-09-28 Jim Meyering <jim@meyering.net>
6455
6456 Automatically generated dependencies are important even
6457 when all of the sources in a directory come from gnulib.
6458 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6459 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6460
6461 2006-09-23 Jim Meyering <jim@meyering.net>
6462
6463 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6464
6465 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6466
6467 * bootstrap: Add support for --force.
6468 (usage): New function. Describe usage less tersely.
6469 (CVS_only_file): New var.
6470
6471 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6472
6473 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6474 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6475 Adjust white space and comments to match GNU style better.
6476
6477 2006-09-20 Bob Rossi <bob@brasko.net>
6478
6479 * data/push.c (yyresult_get): Remove function.
6480 (YYPUSH_MORE): Add #define.
6481 (yypushparse): Modify return value.
6482
6483 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6484
6485 * stamp-h.in: Remove; no longer needed.
6486 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6487 Remove config.h, config.hin, intl (no longer created).
6488 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6489 stamp-h1.
6490
6491 Sync bootstrap from coreutils, as follows:
6492
6493 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6494
6495 * bootstrap (symlink_to_gnulib): New function.
6496 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6497 to copies-of-gnulib.
6498 (cp_mark_as_generated, slurp, gnulib_files):
6499 Avoid making a copy if it's the same as the old version.
6500 (gnulib_files): Add support for this variable (used by Bison).
6501
6502 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6503
6504 * src/getargs.c (usage): Rework to use conventions similar to
6505 coreutils, to make translation a bit easier and the code a bit
6506 smaller. Problem reported by Tim Van Holder.
6507
6508 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6509
6510 Use some of gnulib's new modules, taken from coreutils.
6511
6512 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6513 * bootstrap.conf: New file.
6514 (gnulib_modules): Add configmake, inttypes, unistd.
6515 (XGETTEXT_OPTIONS): Add complain, complain_at,
6516 fatal, fatal_at, warn, warn_at, unexpected_end.
6517 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6518 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6519 (gl_EARLY): Add.
6520 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6521 (gl_INIT): Add
6522 (GNULIB_AUTOCONF_SNIPPET): Remove.
6523 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6524 the pickiest.
6525 * lib/.cvsignore: Add inttypes_.h.
6526 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6527 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6528 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6529 no-longer-necessary initializations.
6530 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6531 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6532 use the unistd module.
6533 * src/system.h: Likewise.
6534 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6535 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6536 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6537 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6538 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6539 * src/system.h: Include inttypes.h unconditionally, now that we
6540 use the inttypes module. Don't bother to include stdint.h, since
6541 inttypes.h now does that for us.
6542 (LOCALEDIR): Remove, now that we use the configmake module.
6543 * src/getargs.c: Include configmake.h.
6544 * src/main.c: Likewise.
6545 * src/output.c: Likewise.
6546 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6547 not from $abs_top_builddir, since config.h moved.
6548
6549
6550 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6551 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6552
6553 * src/parse-gram.y (symbol_declaration): Don't put statements
6554 before declarations; it's not portable to C89.
6555 * src/scan-code.l (handle_action_at): Likewise.
6556
6557 * src/scan-code.l: Always initialize braces_level; the old code
6558 left it uninitialized and therefore had undefined behavior.
6559
6560 Don't attempt to redefine 'assert', since it runs afoul of
6561 systems where standard headers (mistakenly) include <assert.h>.
6562 Instead, define and use our own alternative, called 'aver'.
6563 * src/reader.c: Don't include assert.h, since we no longer
6564 use assert.
6565 * src/scan-code.l: Likewise.
6566 * src/system.h (assert): Remove, replacing with....
6567 (aver): New function, taking a bool arg. All uses changed.
6568 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6569 not merely an integer.
6570
6571 2006-09-15 Bob Rossi <bob@brasko.net>
6572
6573 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6574 * data/c.m4 (YYPUSH): New.
6575 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6576 * src/getargs.c (push_parser): New var.
6577 * src/getargs.h (push_parser): New declaration.
6578 * src/output.c (prepare): Add macro insertion of `push_flag'.
6579 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6580 (prologue_declaration): Parse %push-parser.
6581 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6582 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6583 list of removed lines from the traces observed.
6584 (AT_CHECK_CALC_LALR): Added push parser tests.
6585
6586 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6587
6588 * NEWS: Version 2.3a.
6589 * configure.ac (AC_INIT): Likewise.
6590
6591 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6592 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6593 due to header ordering dependencies. I don't know why the #define
6594 was there.
6595
6596 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6597 runtime cost when YYDEBUG is not defined, and so that some tests
6598 that used to fail now work. Problem and initial suggestion by
6599 Paolo Bonzini.
6600 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6601 * data/glr.cc (b4_parser_class_name):
6602 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6603 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6604 (yydebug_) [YYDEBUG]: New member.
6605 (yycdebug_): Now defined only if YYDEBUG.
6606 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6607 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6608 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6609 if YYYDEBUG.
6610 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6611 Define only if YYDEBUG.
6612 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6613 set_debug_level.
6614 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6615 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6616 AT_CHECK_CALC_GLR_CC that are working now.
6617
6618 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6619
6620 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6621 We don't need them in glr.cc, and glr.c defines them.
6622 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6623 assumes that defining it to anything is the same as defining
6624 it to 1. Problem reported by Paolo Bonzini.
6625
6626 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6627
6628 * data/c.m4 (b4_null, b4_case): Define.
6629 * src/output.c (prepare_symbols): Use b4_null.
6630 (user_actions_output): Use b4_case.
6631
6632 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6633
6634 * data/glr.c (b4_shared_declarations): Put start-header first,
6635 before any #includes that we generate, so that feature-test
6636 macros work. Problem reported by Michael Deutschmann in
6637 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6638 * data/lalr1.cc: Likewise.
6639 * doc/bison.texinfo (Prologue): Document that feature-test macros
6640 should be defined before any Bison declarations.
6641 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6642 that depend on location.hh after, not before, Bison decls, since
6643 we now include location.hh after the first user prologue.
6644
6645 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6646 Sander Brandenburg in
6647 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6648 Also, fix minor white space and comment issues.
6649 (Prologue): Mention that it's better to define feature-test macros
6650 before Bison declarations. Problem reported by Michael Deutschmann.
6651
6652 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6653 by Jim Meyering.
6654 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6655 This adjusts to recent gnulib changes.
6656
6657 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6658
6659 Finish implementation of per-type %destructor/%printer. Discussed
6660 starting at
6661 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6662 and
6663 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6664 * NEWS (2.3+): Add a description of this feature to the default
6665 %destructor/%printer description.
6666 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6667 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6668 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6669 list node contains a semantic type.
6670 * src/symtab.c, src/symtab.h: Extend with a table that associates
6671 semantic types with their %destructor's and %printer's.
6672 (semantic_type_from_uniqstr, semantic_type_get,
6673 semantic_type_destructor_set, semantic_type_printer_set): New functions
6674 composing the public interface of that table.
6675 (symbol_destructor_get, symbol_destructor_location_get,
6676 symbol_printer_get, symbol_printer_location_get): If there's no
6677 per-symbol %destructor/%printer, look up the per-type before trying
6678 the default.
6679 * tests/actions.at (Per-type %printer and %destructor): New test case.
6680 * tests/input.at (Default %printer and %destructor redeclared):
6681 Extend to check that multiple occurrences of %symbol-default in a
6682 single %destructor/%printer declaration is an error.
6683 (Per-type %printer and %destructor redeclared, Unused values with
6684 per-type %destructor): New test cases.
6685
6686 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6687
6688 Require default %destructor/%printer to be declared using
6689 %symbol-default instead of an empty symbol list, and start working on
6690 new per-type %destructor/%printer. Discussed at
6691 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6692 * NEWS (2.3+): Add %symbol-default to example.
6693 * bison.texinfo (Freeing Discarded Symbols): Likewise.
6694 (Table of Symbols): Add entry for %symbol-default.
6695 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6696 (generic_symlist, generic_symlist_item): New nonterminals for creating
6697 a list in which each item is a symbol, semantic type, or
6698 %symbol-default.
6699 (grammar_declaration): Use generic_symlist in %destructor and %printer
6700 declarations instead of symbols.1 or an empty list.
6701 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6702 for changes to symbol_list.
6703 * src/reader.c: Update for changes to symbol_list.
6704 * src/scan-code.l: Likewise.
6705 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6706 * src/symlist.c, src/symlist.h: Extend such that a list node may
6707 represent a semantic type or a %symbol-default in addition to just an
6708 ordinary symbol. Add switched functions for setting %destructor's and
6709 %printer's.
6710 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6711 %destructor/%printer declarations.
6712
6713 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6714
6715 Whether the default %destructor/%printer applies to a particular symbol
6716 isn't a question of whether the user *declares* that symbol (in %token,
6717 for example). It's a question of whether the user by any means
6718 *defines* the symbol at all (by simply using a char token, for
6719 example). $end is defined by Bison whereas any other token with token
6720 number 0 is defined by the user. The error token is always defined by
6721 Bison regardless of whether the user declares it with %token, but we
6722 may one day let the user define error as a nonterminal instead.
6723 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6724 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6725 the meaning of "user-defined".
6726 * tests/actions.at (Default %printer and %destructor for user-declared
6727 end token): Rename to...
6728 (Default %printer and %destructor for user-defined end token): ...
6729 this.
6730
6731 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6732 computation of whether to apply the default, don't maintain a list of
6733 every Bison-defined symbol. Instead, just check for a first character
6734 of '$', which a user symbol cannot have, and check for the error token.
6735
6736 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6737
6738 Don't apply the default %destructor or %printer to the error token,
6739 $undefined, or $accept. This change fits the general rule that the
6740 default %destructor and %printer are only for user-declared symbols,
6741 and it solves several difficulties that are described in the new test
6742 cases listed below.
6743 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6744 * tests/actions.at (Default %printer and %destructor are not for error
6745 or $undefined, Default %printer and %destructor are not for $accept):
6746 New test cases.
6747
6748 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6749
6750 Allow %start after the first rule.
6751 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6752 when parsing the first rule.
6753 (check_and_convert_grammar): Search for it here after all grammar
6754 declarations have been parsed. Skip midrules, which have dummy LHS
6755 nonterminals.
6756 * src/symtab.c (symbol_is_dummy): New function.
6757 * src/symtab.h (symbol_is_dummy): Declare it.
6758 * tests/input.at (%start after first rule): New test.
6759
6760 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6761
6762 Redo some of the previous commit: add back the ability to use
6763 non-aliased/undeclared string literals since it might be useful to
6764 those declaring %token-table.
6765 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6766 commit: don't worry about complaints from symbols_pack.
6767 * src/symtab.c (symbol_new, symbol_class_set,
6768 symbol_check_alias_consistency): Undo changes in previous commit: count
6769 each string literal as a new symbol and token, assign it a symbol
6770 number, and don't complain about non-aliased string literals.
6771 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6772 and token counts but does still set aliased tokens to the same number,
6773 symbol_pack_processor now leaves empty slots in the symbols array.
6774 Remove those slots.
6775 * tests/regression.at (Undeclared string literal): Remove test case
6776 added in previous commit since non-aliased string literals are allowed
6777 again.
6778 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6779 remove unnecessary string literal declarations.
6780 * tests/sets.at (Firsts): Likewise.
6781
6782 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6783
6784 Don't allow an undeclared string literal, but allow a string literal to
6785 be used before its declaration.
6786 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6787 symbols_pack complained.
6788 * src/symtab.c (symbol_new): Don't count a string literal as a new
6789 symbol.
6790 (symbol_class_set): Don't count a string literal as a new token, and
6791 don't assign it a symbol number since symbol_make_alias does that.
6792 (symbol_make_alias): It's not necessary to decrement the symbol and
6793 token counts anymore. Don't assume that an alias declaration occurs
6794 before any uses of the identifier or string, and thus don't assert that
6795 one of them has the highest symbol number so far.
6796 (symbol_check_alias_consistency): Complain if there's a string literal
6797 that wasn't declared as an alias.
6798 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6799 symbol_pack asserts that every token has been assigned a symbol number
6800 although undeclared string literals have not.
6801 * tests/regression.at (String alias declared after use, Undeclared
6802 string literal): New test cases.
6803 (Characters Escapes, Web2c Actions): Declare string literals as
6804 aliases.
6805 * tests/sets.at (Firsts): Likewise.
6806
6807 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6808
6809 In the grammar scanner, STRING_FINISH unclosed constructs and return
6810 them to the parser in order to improve error messages.
6811 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6812 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6813 * tests/input.at (Unclosed constructs): New test case.
6814 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6815 seen.
6816
6817 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6818 unused global.
6819
6820 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6821
6822 Handle string aliases for character tokens correctly.
6823 * src/symtab.c (symbol_user_token_number_set): If the token has an
6824 alias, check and set its alias's user token number instead of its own,
6825 which is set to indicate the alias. Previously, every occurrence of
6826 the character token in the grammar overwrote that alias indicator with
6827 the character code.
6828 * tests/input.at (String aliases for character tokens): New test.
6829
6830 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
6831
6832 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
6833
6834 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
6835
6836 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
6837 to prevent failures when building on older platforms.
6838 Check for autopoint failure.
6839 Set XGETTEXT_OPTIONS to values that check for C format strings,
6840 so that translators are warned about them (this also helps
6841 prevent core dumps).
6842
6843 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
6844 function, since it simplifies our code a bit.
6845
6846 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
6847 rather than -W, so we don't get bogus warnings about sign comparisons.
6848 Add -Wpointer-arith, since that warning is useful (it reports code
6849 that does not conform to C89 and that some compilers reject).
6850 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
6851 since it's no longer needed.
6852
6853 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
6854
6855 Clean up scanners a bit.
6856 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
6857 definitions so gcc won't warn when obstack_for_string is unused.
6858 * src/scan-code.l: config.h and system.h are already #include'd by
6859 scan-code-c.c, so get rid of them here.
6860 * src/scan-gram.l: Likewise.
6861 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
6862 definitions rather than duplicating the rest of it.
6863 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
6864
6865 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
6866
6867 Suppress signed/unsigned comparison warnings for yycheck.
6868 * data/c.m4 (b4_safest_int_type): New macro.
6869 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
6870 a signed int type, cast it to b4_safest_int_type first.
6871 * data/yacc.c: Likewise.
6872 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
6873 also overwritten.
6874
6875 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
6876
6877 * doc/bison.texinfo: Fix some typos.
6878
6879 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
6880
6881 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
6882 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
6883
6884 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
6885 the latest gnulib does this a different way.
6886 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
6887 translation was patched, so stop omitting it.
6888
6889 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6890
6891 Enable declaration of default %printer/%destructor. Make the parser
6892 use these for all user-declared grammar symbols for which the user does
6893 not declare a specific %printer/%destructor. Thus, the parser uses it
6894 for token 0 if the user declares it but not if Bison generates it as
6895 $end. Discussed starting at
6896 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
6897 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
6898 and
6899 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
6900 * NEWS (2.3+): Mention.
6901 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
6902 declare a %destructor for a mid-rule's semantic value. It's just
6903 impossible to declare one specific to it.
6904 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
6905 code. Describe default %destructor form.
6906 * src/parse-gram.y (grammar_declaration): Parse default
6907 %printer/%destructor declarations.
6908 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
6909 and symbol_destructor_location_get rather than accessing the destructor
6910 and destructor_location members of struct symbol.
6911 (symbol_printers_output): Likewise but for %printer's.
6912 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
6913 again.
6914 * src/symtab.c (default_destructor, default_destructor_location,
6915 default_printer, default_printer_location): New static global
6916 variables to record the default %destructor and %printer.
6917 (symbol_destructor_get, symbol_destructor_location_get,
6918 symbol_printer_get, symbol_printer_location_get): New functions to
6919 compute the appropriate %destructor and %printer for a symbol.
6920 (default_destructor_set, default_printer_set): New functions to set the
6921 default %destructor and %printer.
6922 * src/symtab.h: Prototype all those new functions.
6923 * tests/actions.at (Default %printer and %destructor): New test to
6924 check that the right %printer and %destructor are called, that they're
6925 not called for $end, and that $$ and @$ work correctly.
6926 (Default %printer and %destructor for user-declared end token): New
6927 test to check that the default %printer and %destructor are called for
6928 a user-declared end token.
6929 * tests/input.at (Default %printer and %destructor redeclared, Unused
6930 values with default %destructor): New tests to check related grammar
6931 warnings and errors.
6932
6933 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6934
6935 Clean up handling of %destructor for the end token (token 0).
6936 Discussed starting at
6937 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
6938 and
6939 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
6940
6941 Make the skeletons consistent in how they pop the end token and invoke
6942 its %destructor.
6943 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
6944 state, which has token number 0, since this would invoke the
6945 %destructor for the end token.
6946 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
6947 until after shifting the end token, or else it won't be popped.
6948 * data/yacc.c (yyparse): Likewise.
6949
6950 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
6951 it's the end token. Upon termination, destroy an unshifted lookahead
6952 even when it's the end token.
6953 * data/lalr1.cc (yy::parser::parse): Likewise.
6954 * data/yacc.c (yyparse): Likewise.
6955
6956 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
6957 value warnings for the end token when the user gives the end token a
6958 %destructor.
6959
6960 * tests/actions.at (Printers and Destructors): Test all the above.
6961
6962 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
6963
6964 Update to latest gnulib and gettext versions.
6965 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
6966 Add fopen-safer.
6967 (gnulib_files): Add m4/warning.m4. Don't worry about files
6968 overwritten by autopoint.
6969 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
6970 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
6971 rejects them.
6972 Don't use autoreconf; instead, invoke autopoint etc. by hand,
6973 so that we can remove the intl files at a better time.
6974 (intl_files_to_remove): Remove aclocal.m4, since it gets
6975 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
6976 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
6977 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6978 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
6979 Remove datarootdir hack; no longer needed.
6980 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
6981 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6982 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6983 strdup.h.
6984 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6985 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6986
6987 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6988
6989 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6990 it with --assume-autoconf='latest-stable'.
6991
6992 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6993
6994 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6995 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6996 YYSTYPE' and `{'.
6997 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6998 those from muscle_tab.c since the old ones are misleading.
6999
7000 2006-07-13 Akim Demaille <akim@epita.fr>
7001
7002 Support %define "KEY" {VALUE}.
7003 * src/scan-code.h, src/scan-code.l (translate_action)
7004 (translate_rule_action, translate_symbol_action, translate_code):
7005 Return char *, not const char *.
7006 * src/parse-gram.y (declaration): Rename as...
7007 (prologue_declaration): this.
7008 (string_content): Remove this nonterminal, use STRING.
7009 (braceless, content, content.opt): New nonterminal.
7010 Use them.
7011 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7012 as value.
7013 * src/scan-gram.l (getargs.h): Don't include it.
7014
7015 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7016
7017 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7018 rather than a for-loop that declares a local bool variable. This
7019 should work around a compatibility problem with a Cray x1e C++
7020 compiler reported by Hung Nguyen in
7021 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7022 The for-loop was introduced in the 2004-11-17 change but I don't
7023 know why it was needed.
7024
7025 2006-07-12 Akim Demaille <akim@epita.fr>
7026
7027 * data/c.m4: Comment changes.
7028
7029 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
7030
7031 * src/complain.c (error_message, ERROR_MESSAGE): New.
7032 To factor...
7033 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7034 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7035
7036 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7037
7038 * NEWS: Instead of %union, you can define and use your own union type
7039 YYSTYPE if your grammar contains at least one <type> tag.
7040 Your YYSTYPE need not be a macro; it can be a typedef.
7041 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7042 (Union Decl, Decl Summary): Document this.
7043 * data/glr.c (YYSTYPE): Implement this.
7044 * data/glr.cc (YYSTYPE): Likewise.
7045 * data/lalr1.cc (YYSTYPE): Likewise.
7046 * data/yacc.c (YYSTYPE): Likewise.
7047 * src/output.c (prepare): Output tag_seen_flag.
7048 * src/parse-gram.y (declaration, grammar_declaration):
7049 Use 'union_seen' rather than 'typed' to determine whether
7050 %union has been seen, since grammars can now be typed without
7051 %union.
7052 (symbol_declaration, type.opt, symbol_def):
7053 Keep track of whether a tag has been seen.
7054 * src/reader.c (union_seen, tag_seen): New vars.
7055 (typed): remove.
7056 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7057 * src/scan-code.l (untyped_var_seen): New variable.
7058 (handle_action_dollar): Adjust to above changes.
7059 (handle_action_dollar, handle_action_at):
7060 Improve overflow checking for outlandish numbers.
7061 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7062 avoid new diagnostics generated by above changes.
7063 * tests/regression.at (YYSTYPE typedef): Add test to check
7064 for type tags without %union.
7065
7066 * src/symlist.c (symbol_list_length): Return int, not unsigned
7067 int, since callers expect int. This may need to get revisited
7068 once we have proper integer overflow checking.
7069
7070 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7071 object is now static.
7072
7073 * src/getargs.c (flags_argmatch): Return void, not int,
7074 to pacify ./configure --enable-gcc-warnings.
7075
7076 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7077 since last_string is already defined to FLEX_PREFIX (last_string).
7078
7079 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7080
7081 Implement --warnings/-W.
7082 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7083 replaced by...
7084 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7085 Adjust callers.
7086 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7087 (warnings_args, warnings_types): New.
7088 (getargs, short_options, long_options): Accept -W/--warnings.
7089 Sort the options by alphabetical order, upper case letter right
7090 before its lower case.
7091
7092 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7093
7094 Change %merge result type clash warnings to errors. Discussed at
7095 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7096 * src/reader.c (record_merge_function_type): Use complain_at.
7097 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7098 declared later): Update test case results.
7099
7100 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7101
7102 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7103 to be in alphabetical order.
7104 (trace_args): Spelling fixes.
7105
7106 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7107
7108 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7109 so they don't collide with user-defined macros.
7110 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7111 this was never guaranteed, and now that we're using gnulib stdint,
7112 which defines int_fast16_t to long int, the problem is exposed.
7113
7114 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7115
7116 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7117 need the full POSIX semantics (and weren't implementing them
7118 anyway).
7119
7120 Adjust to Autoconf 2.60 and today's gnulib.
7121 * bootstrap (gnulib_modules): Add stdint.
7122 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7123 no longer copies it.
7124 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7125 since stdint needs the former and wcwidth (which is now required
7126 by mbswidth) needs the latter.
7127 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7128 work around a compatibility glitch between gettext 0.14.6 and
7129 Autoconf 2.60.
7130 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7131 Do not check for uintptr_t, since new stdint module does the right
7132 thing.
7133 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7134 Add stdint.h, stdint_.h, wcwidth.h.
7135 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7136 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7137 stdint.m4, wchar_t.m4, wcwidth.m4.
7138 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7139 usual order for ../lib/*.h files.
7140 (file_name_split): Use last_component, not base_name, to adjust
7141 to gnulib changes.
7142 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7143 for ../lib/*.h files.
7144 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7145 Define unconditionally, since we now assume the stdint module.
7146 * src/scan-skel.l: Include <dirname.h>.
7147 (BASE_QPUTS): Use last_component, not base_name.
7148 * src/system.h: Include <unlocked-io.h> in the usual order
7149 for ../lib/*.h files. Include <stdint.h> unconditionally,
7150 since we now use the stdint module.
7151 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7152 HAVE_UINTPTR_T, since we now use the stdint module.
7153 (base_name): Remove decl, since files now include <dirname.h>
7154 to get the decl.
7155
7156 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7157
7158 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7159 New, default to 1.
7160 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7161 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7162 default.
7163 * tests/calc.at: Adjust.
7164
7165 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7166
7167 * data/c.m4 (b4_basename): New.
7168 (b4_syncline): Also output the location of its invocation (from
7169 the skeleton).
7170 (b4_user_action, b4_define_user_action, b4_user_actions)
7171 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7172 (b4_user_stype): New.
7173 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7174
7175 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7176
7177 In the grammar file, the first column is 1 not 0 on the first line as
7178 on every other line.
7179 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7180 * tests/input.at (Torturing the Scanner): Update output.
7181
7182 * src/scan-gram.l (scanner_cursor): Declare it static.
7183
7184 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7185
7186 In warnings, say "previous declaration" rather than "first
7187 declaration".
7188 * src/symtab.c (redeclaration): Do that here.
7189 * src/reader.c (record_merge_function_type): In the case of a result
7190 type clash, report the previous declaration rather than the very first
7191 one in the grammar file.
7192 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7193 declared later): Add a third declaration to check this behavior.
7194 * tests/input.at (Incompatible Aliases): Update output.
7195
7196 2006-06-27 Akim Demaille <akim@epita.fr>
7197
7198 * doc/Doxyfile.in: New.
7199 * doc/Makefile.am: Use it.
7200 * src/lalr.h, src/symtab.h: Initial doxygenation.
7201
7202 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7203
7204 Don't miss %merge result type warnings just because the LHS types are
7205 declared after the %merge. This continues the effort of the previous
7206 patch.
7207 * src/reader.c (get_merge_function): Don't set the merger type yet.
7208 (record_merge_function_type): New function for setting the merger type
7209 and checking for clashes.
7210 (grammar_current_rule_merge_set): Set the location of the %merge for
7211 the current rule.
7212 (packgram): Invoke record_merge_function_type for each rule now that
7213 all symbol type declarations have been parsed.
7214 * src/reader.h (merger_list.type_declaration_location): New member
7215 storing the location of the first %merge from which the type for this
7216 merging function was derived.
7217 * src/symlist.h (symbol_list.merger_declaration_location): New member
7218 storing the location of a rule's %merge, if any.
7219 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7220 declared later): New test to catch the error fixed by the above patch.
7221
7222 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7223
7224 Get action warnings (grammar_rule_check) right even when symbol
7225 declarations appear after the rules. Discussed at
7226 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7227 and
7228 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7229 Don't mistake the type of $$ in a midrule to be that of its parent
7230 rule's $$.
7231 * src/reader.c (grammar_current_rule_end): Don't invoke
7232 grammar_rule_check yet since not all symbol declarations may have been
7233 parsed yet.
7234 (grammar_midrule_action): Likewise.
7235 Don't record whether the midrule's $$ has been used yet since actions
7236 haven't been translated yet.
7237 Record the midrule's parent rule and its RHS index within the parent
7238 rule.
7239 (grammar_current_rule_action_append): Don't translate the action yet
7240 since not all symbol declarations may have been parsed yet and, thus,
7241 warnings about types for $$, $n, @$, and @n can't be reported yet.
7242 (packgram): Translate the action and invoke grammar_rule_check now that
7243 all symbol declarations have been parsed.
7244 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7245 after parsing the entire grammar file, the symbol list here in the case
7246 of a midrule is actually the midrule's empty RHS, so reference its
7247 parent rule's RHS where necessary.
7248 On the other hand, now that you can already know it's a midrule, you
7249 aren't forced to think $$ has the same type as its parent rule's $$.
7250 (handle_action_at): In the case of a midrule, reference the parent rule
7251 where necessary.
7252 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7253 members.
7254 (symbol_list_length): Now that this is invoked after all rules have
7255 been parsed, a NULL symbol (rather than a NULL symbol list node)
7256 terminates a rule. symbol_list_print already does this correctly.
7257 * src/symlist.h (symbol_list.midrule_parent_rule,
7258 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7259 remember their relationships with their parents.
7260 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7261 fixed by the above patch.
7262 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7263 implementing...
7264 (Unused values): ... this old test case and...
7265 (Unused values before symbol declarations): ... this new test case.
7266 This one is the same as `Unused values' except that all symbol
7267 declarations appear after the rules in order to catch the rest of the
7268 errors fixed by the above patch.
7269
7270 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7271
7272 More cleanup.
7273 * src/reader.c (current_rule): Declare it static since it's no longer
7274 used outside this file.
7275 (grammar_current_rule_action_append): Remove redundant arguments from
7276 translate_rule_action invocation.
7277 * src/reader.h (current_rule): Remove this unused extern.
7278 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7279 * src/scan-code.l (translate_rule_action): Likewise.
7280
7281 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7282
7283 Clean up yesterday's patch.
7284 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7285 to...
7286 * src/reader.c (grammar_current_rule_action_append): ... here for
7287 consistency with grammar_current_rule_symbol_append.
7288 * tests/regression.at (Braced code in declaration in rules section):
7289 Make yyerror and yylex static as usual.
7290
7291 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7292
7293 Fix bug that mistakes braced code in a declaration in the rules section
7294 to be a rule action. Mentioned at
7295 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7296 * src/scan-gram.l: Move midrule action detection from the start of the
7297 scanning of any braced code to...
7298 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7299 action. For readability, use $2 and @2 rather than the equivalent
7300 global variables.
7301 * tests/regression.at (Braced code in declaration in rules section):
7302 New test to catch the error fixed by the above patch.
7303
7304 Work on code readability some.
7305 * src/scan-code.l (current_rule): Get rid of this misleading and
7306 redundant declaration: it's actually extern'ed in reader.h.
7307 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7308 translate_action): Add a rule argument and use it instead of the global
7309 current_rule.
7310 (translate_rule_action): This already receives current_rule through an
7311 argument, so pass it on to translate_action instead of assigning
7312 current_rule to current_rule.
7313 (translate_symbol_action, translate_code): Pass rule = NULL to
7314 translate_action.
7315
7316 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7317
7318 Rename %before-definitions to %start-header and %after-definitions to
7319 %end-header. Don't use these declarations to separate pre-prologue
7320 blocks from post-prologue blocks. Add new order-independent
7321 declarations %before-header and %after-header as alternatives to the
7322 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7323 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7324 * NEWS (2.3+): Update for these changes.
7325 * data/glr.c (b4_before_definitions): Update to...
7326 (b4_start_header): ... this.
7327 (b4_after_definitions): Update to...
7328 (b4_end_header): ... this.
7329 * data/glr.cc: Likewise.
7330 * data/lalr1.cc: Likewise.
7331 * data/yacc.c: Likewise.
7332 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7333 prologue blocks with %*-header declarations.
7334 (Calc++ Parser): Likewise.
7335 (Decl Summary): Update names.
7336 (Table of Symbols): Update description.
7337 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7338 (PERCENT_END_HEADER): ... this.
7339 (PERCENT_BEFORE_DEFINITIONS): Update to...
7340 (PERCENT_START_HEADER): ... this.
7341 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7342 (declaration): Update token names and m4 macro names.
7343 When parsing %end-header and %start-header, invoke translate_code
7344 before muscle_code_grow, and no longer set global booleans to remember
7345 whether these declarations have been seen.
7346 Parse new %after-header and %before-header.
7347 * src/reader.c (before_definitions, after_definitions): Remove.
7348 (prologue_augment): Accept a new bool argument to specify whether to
7349 augment the pre-prologue or post-prologue.
7350 * src/reader.h (before_definitions, after_definitions): Remove these
7351 extern's.
7352 (prologue_augment): Add new bool argument.
7353 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7354 (PERCENT_END_HEADER): ... this.
7355 (PERCENT_BEFORE_DEFINITIONS): Update to...
7356 (PERCENT_START_HEADER): ... this.
7357 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7358 * tests/actions.at (Printers and Destructors): Update names.
7359
7360 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7361
7362 Add comparison operators for C++ location classes. Discussed at
7363 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7364 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7365 declaration indicating whether filename_type has an operator==. If
7366 filename_type is `std::string', it defaults to `1', `0' otherwise.
7367 * data/location.cc: Iff b4_define_location_comparison is `1', add
7368 operator== and operator!= for class position and for class location.
7369
7370 Some minor fixes.
7371 * src/scan-action.l: Remove unused file.
7372 * src/symtab.c (symbol_printer_set): Use printer_location not
7373 destructor_location.
7374 * src/symtab.h (struct symbol): Replace incorrect source comment for
7375 printer members.
7376 * tests/input.at (Incompatible Aliases): Update output with correct
7377 printer location.
7378
7379 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7380
7381 Don't put the pre-prologue in the header file. For the yacc.c code
7382 file and the glr.c header and code files, move the pre-prologue before
7383 the token definitions. Add new %before-definitions and
7384 %after-definitions to declare code that will go in both the header file
7385 and code file. Discussed at
7386 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7387 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7388 and
7389 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7390 * NEWS (2.3+): Describe these changes.
7391 * data/glr.c (b4_pre_prologue): Move from within to before...
7392 (b4_shared_declarations): ... this.
7393 Add new b4_before_definitions before b4_token_enums.
7394 Add new b4_after_definitions at the end.
7395 * data/glr.cc (b4_pre_prologue): Replace with...
7396 (b4_before_definitions): ... this in the header file.
7397 (b4_after_definitions): New near the end of the header file.
7398 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7399 code file right before including the header file.
7400 (b4_before_definitions): New in the previous position of
7401 b4_pre_prologue in the header file.
7402 (b4_after_definitions): New near the end of the header file.
7403 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7404 (b4_token_enums_defines): In the code file, move to right before
7405 YYSTYPE for consistency with the header file.
7406 (b4_before_definitions): New right before b4_token_enums_defines in
7407 both the header and code file.
7408 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7409 header and code file.
7410 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7411 of prologues for %union dependencies.
7412 (Decl Summary): In %defines description, mention the effect of
7413 %before-definitions and %after-definitions on the header file.
7414 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7415 than in the pre-prologue so that make check succeeds.
7416 (Table of Symbols): Add entries for %before-definitions and
7417 %after-definitions.
7418 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7419 %before-definitions.
7420 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7421 (declaration): Parse those declarations and append to
7422 b4_before_definitions and b4_after_definitions, respectively.
7423 * src/reader.c (before_definitions, after_definitions): New bools to
7424 track whether those declarations have been seen.
7425 (prologue_augment): Add to the post-prologue if %union,
7426 %before-definitions, or %after-definitions has been seen.
7427 * src/reader.h (before_definitions, after_definitions): New extern's.
7428 * src/scan-gram.l: Scan the new declarations.
7429 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7430 prologue block in a %before-definitions or a %after-definitions based
7431 on whether the %union is declared.
7432 * tests/regression.at (Early token definitions with --yacc, Early token
7433 definitions without --yacc): Move tests for token definitions into the
7434 post-prologue since token names are no longer defined in the
7435 pre-prologue.
7436
7437 2006-06-20 Akim Demaille <akim@epita.fr>
7438
7439 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7440 (symbol_get): Use it.
7441 * src/parse-gram.y: Use it.
7442
7443 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7444
7445 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7446 build succeeds when configured with --enable-gcc-warnings.
7447
7448 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7449
7450 * src/parse-gram.y (char_name): New function.
7451 (CHAR, STRING, string_content): For %printer, properly escape.
7452 (ID): Prefer fputs to fprintf.
7453 (id): Reindent to be consistent with other rules.
7454 Properly quote char.
7455
7456 The Translation Project changed its way of publishing translations
7457 to maintainers. I haven't received any responses to my request
7458 for supporting the old way, or for documenting the new way. I
7459 have modified 'bootstrap' to use screen scraping
7460 (in this case, HTML scraping). This is unreliable and inelegant,
7461 but I don't see any better way. Yuck.
7462 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7463 (get_translations): New function, which uses HTML scraping to
7464 deduce locations of latest translations.
7465 Use this function to grab both bison and bison-runtime .po files.
7466 Don't bother priming the pump for the runtime-po domain any more,
7467 as it's now translated better than bison is.
7468
7469 2006-06-19 Akim Demaille <akim@epita.fr>
7470
7471 * src/scan-gram.l: No longer "parse" things after `%union' until
7472 `{'. Rather, return a single "%union" token.
7473 No longer make symbols: return strings, and leave the conversion
7474 to symbols to the parser.
7475 (SC_PRE_CODE, token_type): Remove.
7476 * src/parse-gram.y (%union): New field `character'.
7477 Sort tokens.
7478 (CHAR): New token.
7479 (ID, ID_COLON): Now that the scanner no longer makes them
7480 identifiers, adjust all uses to invoke symbol_get.
7481 (id_colon): New, wraps the conversion from string to symbol.
7482 (%union): Accept a possible union_name.
7483 (symbol): Now can be a char.
7484 * data/c.m4 (b4_union_name): Leave a default value.
7485 * data/glr.c, data/yacc.c: Use it.
7486
7487 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7488
7489 For associating token numbers with token names for "yacc.c", don't use
7490 #define statements unless `--yacc' is specified; always use enum
7491 yytokentype. Most important discussions start at:
7492 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7493 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7494 and
7495 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7496 * NEWS (2.3+): Mention.
7497 * data/c.m4 (b4_yacc_if): New.
7498 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7499 token #define's.
7500 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7501 on token name definitions.
7502 * src/getargs.c (usage): Capitalize `Yacc' in English.
7503 * src/output.c (prepare): Define b4_yacc_flag.
7504 * tests/regression.at (Early token definitions): Test that tokens names
7505 are defined before the pre-prologue not just before the post-prologue.
7506 Remove this test case and copy to...
7507 (Early token definitions with --yacc): ... this to test #define's.
7508 (Early token definitions without --yacc): ... and this to test enums.
7509
7510 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7511
7512 * NEWS: Reword the post-2.3 change to not be so optimistic about
7513 removing the old "look-ahead" spelling.
7514 Update previous look-ahead/lookahead change reports.
7515 * REFERENCES: look-ahead -> lookahead (since that's
7516 what he actually wrote).
7517 * doc/refcard.tex: look ahead -> lookahead,
7518 look-ahead -> lookahead
7519
7520 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7521
7522 For consistency, use `lookahead' instead of `look-ahead' or
7523 `look_ahead'. Discussed starting at
7524 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7525 and then at
7526 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7527 * NEWS: For the next release, note the change to `--report'.
7528 * TODO, doc/bison.1: Update English.
7529 * doc/bison.texinfo: Update English.
7530 (Understanding Your Parser, Bison Options): Document as
7531 `--report=lookahead' rather than `--report=look-ahead'.
7532 * src/conflicts.c: Update English in comments.
7533 (lookahead_set): Rename from look_ahead_set.
7534 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7535 (resolve_sr_conflict): Rename local look_ahead_tokens to
7536 lookahead_tokens, and update other uses.
7537 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7538 count_rr_conflicts, conflicts_free): Update uses.
7539 * src/getargs.c (report_args): Move "lookahead" before alternate
7540 spellings.
7541 (report_types): Update uses.
7542 (usage): For `--report' usage description, state `lookahead' spelling
7543 rather than `look-ahead'.
7544 * src/getargs.h (report.report_lookahead_tokens): Rename from
7545 report_look_ahead_tokens.
7546 * src/lalr.c: Update English in comments.
7547 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7548 (state_lookahead_tokens_count): Rename from
7549 state_look_ahead_tokens_count.
7550 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7551 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7552 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7553 Update other uses.
7554 Update English in output.
7555 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7556 * src/print.c: Update English in comments.
7557 (lookahead_set): Rename from look_ahead_set.
7558 (print_reduction): Rename argument lookahead_token from
7559 look_ahead_token.
7560 (print_core, state_default_rule, print_reductions, print_results):
7561 Update uses.
7562 * src/print_graph.c: Update English in comments.
7563 (print_core): Update uses.
7564 * src/state.c: Update English in comments.
7565 (reductions_new): Update uses.
7566 (state_rule_lookahead_tokens_print): Rename from
7567 state_rule_look_ahead_tokens_print, and update other uses.
7568 * src/state.h: Update English in comments.
7569 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7570 (state_rule_lookahead_tokens_print): Rename from
7571 state_rule_look_ahead_tokens_print.
7572 * src/tables.c: Update English in comments.
7573 (conflict_row, action_row): Update uses.
7574 * tests/glr-regression.at
7575 (Incorrect lookahead during deterministic GLR,
7576 Incorrect lookahead during nondeterministic GLR): Rename
7577 print_look_ahead to print_lookahead.
7578 * tests/torture.at: Update English in comments.
7579 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7580 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7581 (Many lookahead tokens): Update uses.
7582 * data/glr.c: Update English in comments.
7583 * lalr1.cc: Likewise.
7584 * yacc.c: Likewise.
7585 * src/conflicts.h: Likewise.
7586 * src/lalr.h: Likewise.
7587 * src/main.c: Likewise.
7588 * src/output.c: Likewise.
7589 * src/parse-gram.c: Likewise.
7590 * src/tables.h: Likewise.
7591 * tests/calc.at: Likewise.
7592
7593 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7594
7595 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7596
7597 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7598
7599 * TODO: Add request from Nelson H. F. Beebe to be able to install
7600 Bison without installing the yacc script.
7601
7602 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7603
7604 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7605 and yytext if they're already #define'd.
7606 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7607 * src/scan-code-c.c: ... here.
7608 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7609 <config.h>.
7610
7611 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7612
7613 Get Bison to build again when configured with --enable-gcc-warnings.
7614 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7615 missing #include's.
7616 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7617 loc argument as it shadows a global.
7618 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7619 invocation.
7620
7621 * src/.cvsignore: Add scan-code.c.
7622
7623 2006-06-07 Akim Demaille <akim@epita.fr>
7624
7625 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7626 to...
7627 * src/scan-code.l: here.
7628 * tests/input.at (Torturing the Scanner): Fix another location
7629 error.
7630
7631 2006-06-07 Akim Demaille <akim@epita.fr>
7632
7633 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7634
7635 2006-06-06 Akim Demaille <akim@epita.fr>
7636
7637 Extract the parsing of user actions from the grammar scanner.
7638 As a consequence, the relation between the grammar scanner and
7639 parser is much simpler. We can also split "composite tokens" back
7640 into simple tokens.
7641 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7642 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7643 rename as...
7644 * src/location.h, src/location.c (add_column_width)
7645 (location_compute): these.
7646 Fix the column count: the initial column is 0.
7647 (location_print): Be robust to ending column being 0.
7648 * src/location.h (boundary_set): New.
7649 * src/main.c: Adjust to scanner_free being renamed as
7650 gram_scanner_free.
7651 * src/output.c: Include scan-code.h.
7652 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7653 Use boundary_set.
7654 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7655 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7656 which is now, again, a separate token.
7657 Adjust all dependencies.
7658 Whereever actions with $ and @ are used, use translate_code.
7659 (action): Remove this nonterminal which is now useless.
7660 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7661 (grammar_current_rule_action_append): Use translate_code.
7662 (packgram): Bound check ruleno, itemno, and rule_length.
7663 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7664 (last_string, last_braced_code_loc, max_left_semantic_context)
7665 (scanner_initialize, scanner_free, scanner_last_string_free)
7666 (gram_out, gram_lineno, YY_DECL_): Move to...
7667 * src/scan-gram.h: this new file.
7668 (YY_DECL): Rename as...
7669 (GRAM_DECL): this.
7670 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7671 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7672 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7673 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7674 Move these declarations, and...
7675 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7676 these to...
7677 * src/flex-scanner.h: this new file.
7678 * src/scan-gram.l (rule_length, rule_length_overflow)
7679 (increment_rule_length): Remove.
7680 (last_braced_code_loc): Rename as...
7681 (gram_last_braced_code_loc): this.
7682 Adjust to the changes of the parser.
7683 Move all the handling of $ and @ into...
7684 * src/scan-code.l: here.
7685 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7686 (handle_action_dollar, handle_action_at): Move to...
7687 * src/scan-code.l: here.
7688 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7689 scan-code.h, scan-code-c.c, scan-gram.h.
7690 (EXTRA_bison_SOURCES): Add scan-code.l.
7691 (BUILT_SOURCES): Add scan-code.c.
7692 (yacc): Be robust to white spaces.
7693
7694 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7695 * tests/regression.at: Adjust the column numbers.
7696 * tests/regression.at: Adjust the error message.
7697
7698 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7699
7700 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7701 Use Akim's wording from
7702 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7703
7704 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7705
7706 Between Bison releases, manually append `+' to the previous Bison
7707 release number, and use that as a signal to automatically print the
7708 ChangeLog's CVS Id keyword from --version. Discussed starting at
7709 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7710 * ChangeLog: Add Id header.
7711 * configure.ac (AC_INIT): Append `+' to `2.3'.
7712 * src/.cvsignore: Add revision.c.
7713 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7714 (BUILT_SOURCES): Add revision.c.
7715 (revision.c): New target rule. This file defines a new global variable
7716 named revision. It initializes it with either the Id from ChangeLog
7717 or, if VERSION doesn't contain `+', with the empty string.
7718 * src/getargs.c (version): Print the value of revision.
7719 * src/revision.h: Extern revision.
7720
7721 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7722
7723 * NEWS: Version 2.3.
7724 * configure.ac (AC_INIT): Likewise.
7725
7726 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7727
7728 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7729 with no arguments, not as an object-like macro. This is for
7730 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7731 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7732 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7733 Document this.
7734
7735 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7736
7737 * src/getargs.c (usage): Back out yesterday's modification of the
7738 --help output so that we don't have to wait for translation before
7739 releasing 2.3.
7740
7741 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7742
7743 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7744 Problem reported by Akim Demaille.
7745
7746 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7747
7748 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7749
7750 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7751
7752 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7753 generated source code. Problem reported by Frans Englich in
7754 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7755
7756 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7757
7758 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7759 shell, not within 'make', so that 'make' by an ordinary builder
7760 (using GNU make) does not worry about configuring gzip. This also
7761 works around a bug reported independently by Keith Thompson and by
7762 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7763 stderr rather than stdout, messing up the build logs.
7764
7765 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7766
7767 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7768 to make sure that YYID will never be unused. This fixes a 'make
7769 maintainer-check' failure caused by the recent changes to the 'Trivial
7770 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7771 not used.
7772 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7773
7774 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7775
7776 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7777 state before an empty RHS is always resolved here. Only the location
7778 of that state is guaranteed to be resolved, and that's enough. This
7779 fixes the remaining bug reported by Derek M. Jones in
7780 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7781 * tests/glr-regression.at (Uninitialized location when reporting
7782 ambiguity): Test the above case.
7783 Also, the embedded comments in this test case claim it checks the case
7784 of an empty RHS that has inherited the initial location. However, the
7785 corresponding LHS was already resolved, so yyresolveLocations didn't
7786 actually have reason to modify it. Fix this by forcing
7787 nondeterministic operation at the beginning of the parse.
7788
7789 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7790
7791 * data/c.m4 (b4_yy_symbol_print_generate):
7792 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7793 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7794 of the bugs reported today by Derek M Jones in
7795 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7796 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7797 defined to be a type name without parens or brackets.
7798 (Location Type): Similarly for YYLTYPE.
7799 * tests/regression.at (Trivial grammars): Put in a test for this
7800 bug that will be caught by 'make maintainer-check' (though not,
7801 alas, by 'make check' unless your compiler is picky).
7802
7803 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7804
7805 * NEWS: Version 2.2.
7806 * configure.ac (AC_INIT): Likewise.
7807
7808 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7809
7810 * data/glr.c (yyreportTree): Make room in yystates for the state
7811 preceding the RHS. This fixes the segmentation fault reported by Derek
7812 M. Jones in
7813 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7814 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7815 to the user. Reported for yyreportTree by Derek M. Jones later in the
7816 same thread.
7817 * THANKS: Add Derek M. Jones.
7818 Update my email address.
7819 Fix typo in Steve Murphy's name.
7820
7821 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7822
7823 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7824 checking against YYLAST that caused the parser to miss a potential
7825 alternative in its diagnostic.
7826 Problem reported by Maria Jose Moron Fernandez in
7827 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7828 * data/lalr1.cc (yysyntax_error_): Likewise.
7829 * data/yacc.c (yysyntax_error): Likewise.
7830 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
7831 tokens, in case we run into an older C compiler.
7832 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
7833 Use them to check for the off-by-one error fixed above.
7834
7835 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
7836 YYSIZE_T, not size_t.
7837 * tests/regression.at (Trivial grammars): New test, to catch
7838 the error fixed by the above patch.
7839
7840 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7841
7842 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
7843 scheme.
7844 Reported by Steve Murphy.
7845
7846 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7847
7848 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
7849 * data/glr.cc: b4_location_flag is now b4_locations_flag.
7850
7851 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7852
7853 Implement --trace=m4.
7854 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
7855 * src/output.c (output_skeleton): When set, pass -dV to m4.
7856
7857 Factor the handling of flags in m4.
7858 * src/output.c (prepare): Rename the muscle names debug, defines,
7859 error_verbose to debug_flag, defines_flag, error_verbose_flag.
7860 * data/c.m4: Adjust.
7861 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
7862 Use b4_define_flag_if to define other b4_FLAG_if macros.
7863 (b4_location_if): As a consequence, rename as...
7864 (b4_locations_if): this, for consistency.
7865 Adjust all the skeletons.
7866
7867 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7868
7869 * etc/bench.pm: Shorten bench names.
7870
7871 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7872
7873 * src/output.h, src/output.c (error_verbose): Move to...
7874 * src/getargs.h, src/getargs.c: here.
7875 Sort the flags.
7876 Adjust dependencies.
7877
7878 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
7879
7880 * data/c.m4 (b4_copyright): Put the special exception for Bison
7881 skeletons here, so we don't have to put it in each skeleton. All
7882 uses changed. Suggested by Akim Demaille. Also, wrap the
7883 copyright notice, in case it is longer than 80 columns. Replace
7884 comma by newline after title.
7885
7886 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
7887
7888 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
7889 incompatibility, not a bug. Mention that it wasn't fixed as of
7890 flex 2.5.33.
7891
7892 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7893
7894 * examples/extexi: Enforce the precedence of concatenation over
7895 >>.
7896 Reported by Tommy Nordgren.
7897
7898 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7899
7900 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
7901 with the member "token".
7902 Reported by Martin Nylin.
7903
7904 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
7905
7906 * data/glr.c: Switch to Bison 2.2 special-exception language in
7907 the copyright notice. Use more-regular format for titles and
7908 copyright notices.
7909 * data/glr.cc: Likewise.
7910 * data/location.cc: Likewise.
7911 * data/yacc.cc: Likewise.
7912 * doc/bison.texinfo (Conditions): Document this.
7913 * NEWS: likewise. Upgrade version to 2.2.
7914
7915 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
7916
7917 * data/glr.cc: Remove dead code.
7918
7919 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
7920
7921 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
7922 that variable and the line breaks the bootstrap. Problem reported
7923 by Juan M. Guerrero.
7924
7925 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7926
7927 * doc/bison.texinfo (Multiple start-symbols): New.
7928
7929 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7930
7931 * etc/README, etc/bench.pl: New.
7932
7933 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
7934
7935 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
7936 rule.
7937 Reported by Mickael Labau.
7938 * tests/input.at (Torturing the Scanner): Test it.
7939
7940 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
7941
7942 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
7943 Problem reported by Bob Rossi.
7944
7945 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
7946
7947 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
7948 and didn't really work.
7949 For the index, use @ifnotinfo, not @iftex.
7950 Minor cleanups of spacing and terminology.
7951
7952 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7953
7954 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
7955 of AT_NAME_PREFIX when %name-prefix is not used.
7956
7957 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7958
7959 Apply --prefix to C++ skeletons too: they change the namespace.
7960 The test suite already exercize these cases.
7961 * data/c++.m4 (b4_namespace): New.
7962 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
7963 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
7964 * data/yacc.c, data/glr.c: Remove a useless `[]'.
7965 * doc/bison.texinfo: Document it.
7966 (Option Cross Key): Use @multitable in all formats. It looks
7967 nicer, even in TeX outputs.
7968 (Rules): Use the same code whatever the output type is.
7969 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
7970 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
7971 * tests/calc.at: Use it, instead of hard coding `yy'.
7972
7973 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7974
7975 * TODO: Remove dead items.
7976
7977 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7978
7979 * doc/FAQ: Remove, merged into...
7980 * doc/bison.texinfo (FAQ): this.
7981 * doc/Makefile.am (EXTRA_DIST): Adjust.
7982
7983 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7984
7985 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7986 even if empty.
7987 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7988 * doc/bison.texinfo (Calc++ Scanner): Use it.
7989
7990 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7991
7992 Fix two nits reported by twlevo, plus one more that I discovered.
7993
7994 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7995 this is the usual Bison style.
7996 * src/location.h (location_print): Likewise.
7997
7998 * src/reader.h (token_name): Likewise.
7999
8000 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8001
8002 Fix some nits reported by twlevo.
8003 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8004 and "POSIX". Use more-modern syntax for URLs. Mention C++
8005 and ask for Java. Don't hardwire OS version numbers. Add
8006 copyright notice.
8007 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8008 * src/conflicts.c (solved_conflicts_obstack): Now static.
8009
8010 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8011
8012 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8013 page. Say "you can use it" not "you may use it" as on the web page;
8014 we're describing capabilities not granting permission.
8015
8016 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8017
8018 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8019 shadowing warnings. Use usual patter for iterating through RHS.
8020 * tests/glr-regression.at
8021 (Uninitialized location when reporting ambiguity):
8022 Modify yylex so that it uses its argument, rather than trying
8023 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8024 const char -> char const.
8025
8026 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8027 Don't use tabs inside commands; it messes up 'ps'.
8028 Problem reported by twlevo.
8029
8030 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8031
8032 * tests/glr-regression.at (Uninitialized location when reporting
8033 ambiguity): New test case.
8034 * data/glr.c (yyresolveLocations): New function, which uses
8035 YYLLOC_DEFAULT.
8036 (yyresolveValue): Invoke yyresolveLocations before reporting an
8037 ambiguity.
8038 * doc/bison.texinfo (Default Action for Locations): Note
8039 YYLLOC_DEFAULT's usage for ambiguity locations.
8040 (GLR Semantic Actions): Cross-reference those notes.
8041
8042 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8043
8044 * tests/glr-regression.at (Leaked semantic values when reporting
8045 ambiguity): Remove unnecessary union and type declarations.
8046 (Leaked lookahead after nondeterministic parse syntax error): New test
8047 case.
8048 * data/glr.c (yyparse): Check for zero stacks remaining before
8049 attempting to shift the lookahead so that you don't lose it.
8050
8051 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8052
8053 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8054 * tests/glr-regression.at (Leaked semantic values when reporting
8055 ambiguity): New test case.
8056 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8057 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8058 now unnecessary yystackp parameter.
8059 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8060 destructors can be called.
8061
8062 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8063 in existing testcases.
8064
8065 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8066
8067 Don't leak semantic values for parent RHS when a user action cuts the
8068 parser, and clean up related code a bit.
8069 * tests/glr-regression.at (Leaked merged semantic value if user action
8070 cuts parse): Rename to...
8071 (Leaked semantic values if user action cuts parse): ... this. Add check
8072 for leaked parent RHS values.
8073 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8074 between an unresolved state (non-empty chain of semantic options) and
8075 an incomplete one (signaled by an empty chain).
8076 (yyresolveStates): Document the interface. Move all manipulation of a
8077 successfully or unsuccessfully resolved yyGLRState to...
8078 (yyresolveValue): ... here so that yyresolveValue always leaves a
8079 yyGLRState with consistent data and thus is easier to understand.
8080 Remove the yyvalp and yylocp parameters since they are always just
8081 taken from the yys parameter. When reporting a discarded merged value
8082 in debugging output, note that it is incompletely merged. Document the
8083 interface.
8084 (yyresolveAction): If resolving any of the RHS states fails, destroy
8085 them all rather than leaking them. Thus, as long as user actions are
8086 written to clean up the RHS correctly, yyresolveAction always cleans up
8087 the RHS of a semantic option. Document the interface.
8088
8089 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8092 led to a segmentation fault in GNU Pascal. Problem reported
8093 by Waldek Hebisch.
8094
8095 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8096
8097 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8098 mid-rule action inside a nonterminal symbol in order to declare a
8099 destructor for its semantic value.
8100
8101 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8102
8103 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8104 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8105 __cplusplus && ! defined _STDLIB_H && !
8106 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8107 defined free))]: Include <stdlib.h> rather than rolling our own
8108 declarations of malloc and free, to avoid problems with
8109 incompatible declarations (using 'throw') C++'s stdlib.h. This
8110 should fix Debian bug 340012
8111 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8112 reported by Guillaume Melquiond.
8113
8114 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8115
8116 * NEWS: Clarify symbols versus types in unused-value warnings.
8117
8118 * configure.ac (AC_INIT): Bump version number.
8119
8120 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8121
8122 * NEWS: Version 2.1a.
8123 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8124 since C99 requires this.
8125
8126 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8127
8128 * m4/c-working.m4: New file.
8129 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8130
8131 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8132
8133 * Makefile.maint: Merge from coreutils.
8134
8135 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8136
8137 More portability fixes for problems summarized by Nelson H. F. Beebe.
8138
8139 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8140 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8141 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8142 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8143 messes up because C++ code is compiled in 32-bit mode but linked
8144 in 64-bit mode.
8145
8146 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8147
8148 More portability fixes for problems summarized by Nelson H. F. Beebe.
8149
8150 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8151 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8152
8153 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8154 nodist_PROGRAMS, since we don't need to actually compile the
8155 example if we're just doing a plain 'make'. This avoids bothering
8156 the installer unnecessarily about problems due to weird C++
8157 compilers.
8158
8159 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8160
8161 More portability fixes for problems summarized by Nelson H. F. Beebe.
8162
8163 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8164 than #include "...", and compile with -I'.'. The old method was
8165 not portable, according to Posix and the C standard, and it does
8166 not work with Sun C 5.7, where previous #line directives affect
8167 the working directory used in later #include "..." directives.
8168
8169 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8170
8171 Various DJGGP specific issues in /djgpp
8172
8173 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8174
8175 More portability fixes for problems summarized by Nelson H. F. Beebe.
8176
8177 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8178 '#include <map>' works and that you can apply ++ to iterators.
8179
8180 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8181
8182 Work around portability problems summarized by Nelson H. F. Beebe in
8183 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8184
8185 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8186 that '#include <string>' works.
8187
8188 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8189 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8190 "warning: sorry: semantics of inline function static data `const
8191 unsigned char translate_table[262]' are wrong (you'll wind up with
8192 multiple copies)".
8193
8194 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8195 or, xor to not_, and_, or_, and xor_, respectively. This works
8196 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8197 random system header somewhere that includes the equivalent of
8198 <iso646.h>.
8199
8200 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8201 -E" works; it apparently doesn't work with PathScale EKO Compiler
8202 Suite Version 2.0.
8203
8204 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8205
8206 During deterministic GLR operation, user actions should be able to
8207 influence the parse by changing yychar. To make this easier to fix and
8208 to make glr.c easier to evolve in general, don't maintain yytoken in
8209 parallel with yychar; just compute yytoken when needed.
8210 * tests/glr-regression.at (Incorrect lookahead during deterministic
8211 GLR): Check that setting yychar in a user action has the intended
8212 effect.
8213 * data/glr.c (yyGLRStack): Remove yytokenp member.
8214 (yyclearin): Don't set *yytokenp.
8215 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8216 yychar rather than *yytokenp to determine the current lookahead.
8217 Compute yytoken locally when needed.
8218 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8219 point to.
8220
8221 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8222 after `--report' documentation.
8223
8224 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8225
8226 * src/parse-gram.y (grammar_declaration): Location of printer
8227 symbol is @1, not list->location. Bug reported by twlevo.
8228 * tests/input.at (Incompatible Aliases): Adjust to above change.
8229
8230 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8231
8232 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8233 all the test at once. This makes the output easier to read in the
8234 normal case.
8235
8236 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8237 got from <http://bro-ids.org/download.html>. The bug is that
8238 when two actions appeared in succession, the second one was
8239 scanned before the first one was added to the grammar rule
8240 as a midrule action. Bison then output the incorrect warning
8241 "parse.y:905.17-906.36: warning: unused value: $3".
8242 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8243 associated with a value.
8244 (rhs): Don't invoke grammar_current_rule_action_append.
8245 (action): Invoke it here instead.
8246 * src/reader.c (grammar_midrule_action): Now extern.
8247 (grammar_current_rule_action_append): Don't invoke
8248 grammar_midrule_action; that is now the scanner's job.
8249 * src/reader.h (last_string, last_braced_code_loc):
8250 (grammar_midrule_action): New decls.
8251 * src/scan-gram.l (last_string): Now extern, sigh.
8252 (last_braced_code_loc): New extern variable.
8253 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8254 rule already has an action.
8255 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8256 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8257 Add some tests to check that the above changes fixed the bug.
8258
8259 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8260
8261 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8262 All used changed. Check whether the symbol has a destructor,
8263 not whether it is typed.
8264 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8265 that the values are still reported as unused. All line numbers
8266 adjusted.
8267
8268 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8269
8270 Work around a bug in bro 0.8, which underparenthesizes its
8271 definition of YYLLOC_DEFAULT.
8272 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8273 their arguments.
8274 * data/lalr1.cc: Likewise.
8275 * data/yacc.cc: Likewise.
8276
8277 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8278
8279 Work around a bug in Pike 7.0, and give the Pike folks a
8280 better way to override the usual int widths.
8281 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8282 user can override the types.
8283 (short): #undef, to work around a bug in Pike 7.0.
8284 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8285 (union yyalloc.yyss): Use yytype_int16 rather than short.
8286 All uses changed.
8287 (yysigned_char): Remove.
8288 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8289 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8290 * tests/regression.at (Web2c Actions): Adjust to above changes.
8291
8292 * src/reader.c (check_and_convert_grammar): New function.
8293 (reader): Close the input file even if something went wrong during
8294 parsing. Minor file descriptor leak reported by twlevo.
8295
8296 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8297 to pacify gcc -Wswitch-default.
8298 * src/scan-gram.l (adjust_location): Use a default: break; case
8299 to pacify gcc -Wswitch-default.
8300 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8301 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8302 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8303 Move these decls to scan-skel.l, since they don't need to be
8304 visible elsewhere.
8305 * src/scan-skel.l: Accept the above decls.
8306 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8307 is used.
8308
8309 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8310
8311 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8312 since we don't want to insist on a version number at the start
8313 of the changelog every time.
8314 * Makefile.maint: Sync from coreutils a bit better.
8315 (sc_trailing_blank): Renamed from sc_trailing_space.
8316 All uses changed.
8317 (sc_no_if_have_config_h, sc_require_config_h):
8318 (sc_prohibit_assert_without_use): New rules.
8319 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8320 (sc_dd_max_sym_length): Fix leading spaces in rule.
8321 (sc_system_h_headers): Prefix with @.
8322 (sc_useless_cpp_parens, m4-check): Output line numbers.
8323 (changelog-check): Allow version only in head.
8324 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8325 satisfy new Makefile.maint rule.
8326 * data/glr.c: Likewise.
8327 * data/glr.cc: Likewise.
8328 * data/lalr1.cc: Likewise.
8329 * data/yacc.c: Likewise.
8330 * lib/ebitsetv.c: Likewise.
8331 * lib/lbitset.c: Likewise.
8332 * lib/subpipe.c: Likewise.
8333 * lib/timevar.c: Likewise.
8334 * src/system.h: Likewise.
8335 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8336 * djgpp/Makefile.maint: Add copyright notice.
8337 * djgpp/README.in: Likewise.
8338 * djgpp/config.bat: Likewise.
8339 * djgpp/config.site: Likewise.
8340 * djgpp/config_h.sed: Likewise.
8341 * djgpp/djunpack.bat: Likewise.
8342 * djgpp/config.sed: Fix copyright notice to match standard format.
8343 * djgpp/subpipe.h: Likewise.
8344 * lib/bitsetv-print.c: Likewise.
8345 * lib/bitsetv.c: Likewise.
8346 * lib/subpipe.h: Likewise.
8347 * lib/timevar.c: Likewise.
8348 * lib/timevar.h: Likewise.
8349 * djgpp/subpipe.c: Use standard recipe for config.h.
8350 * lib/abitset.c: Likewise.
8351 * lib/bitset.c: Likewise.
8352 * lib/bitset_stats.c: Likewise.
8353 * lib/bitsetv-print.c: Likewise.
8354 * lib/bitsetv.c: Likewise.
8355 * lib/ebitsetv.c: Likewise.
8356 * lib/get-errno.c: Likewise.
8357 * lib/lbitset.c: Likewise.
8358 * lib/subpipe.c: Likewise.
8359 * lib/timevar.c: Likewise.
8360 * lib/vbitset.c: Likewise.
8361 * tests/local.at: Likewise.
8362 * src/scan-gram.l: Don't include verify.h, since system.h does
8363 that for us.
8364 * .x-sc_require_config_h: New file.
8365 * .x-sc_unmarked_diagnostics: New file.
8366
8367 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8368
8369 Be a bit more systematic about using 'abort'.
8370 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8371 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8372 Put 'default: abort ();' before some other case, to satisfy older
8373 pedantic compilers.
8374 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8375 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8376 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8377 * src/conflicts.c (resolve_sr_conflict): Likewise.
8378 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8379 (get_decision_str, get_orientation_str, get_node_alignment_str):
8380 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8381 (get_linestyle_str, get_arrowstyle_str): Likewise.
8382 * src/conflicts.c (resolve_sr_conflict):
8383 Use a default case rather than one for the one remaining enum
8384 value, to catch invalid enum values as well.
8385 * src/lalr.c (set_goto_map, map_goto):
8386 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8387 * src/nullable.c (nullable_compute, token_definitions_output):
8388 Likewise.
8389 * src/reader.c (packgram, reader): Likewise.
8390 * src/state.c (transitions_to, state_new, state_reduction_find):
8391 Likewise.
8392 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8393 (symbol_pack): Likewise.
8394 * src/tables.c (conflict_row, pack_vector): Likewise.
8395 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8396 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
8397 * src/system.h: Don't include <assert.h>.
8398 (assert): New macro.
8399
8400 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8401 (Destructor Decl, Parser Function, Pure Calling):
8402 Describe rules for braces inside C code more carefully.
8403
8404 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8405
8406 Fix some porting glitches found by Nelson H. F. Beebe.
8407 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8408 compilers that don't understand that abort () does not return.
8409 * src/state.c (transitions_to): Likewise.
8410 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8411 that '#include <cstdlib>' works.
8412 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8413 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8414 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8415 for the benefit of some pre-C99 compilers.
8416
8417 * bootstrap: Undo changes to gnulib files that autoreconf made.
8418
8419 Minor fixups to get 'make maintainer-check' to work.
8420 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8421 with the new verify.h implementation.
8422 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8423 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8424 * data/yacc.c (YYUSE): Likewise.
8425 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8426 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8427 * src/parse-gram.y (declaration): Don't pass a string constant
8428 to a function that expects char *, since GCC might complain
8429 about the constant value.
8430 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8431 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8432 before #defining them.
8433 * tests/glr-regression.at
8434 (Incorrectly initialized location for empty right-hand side in GLR):
8435 In yyerror, use the msg arg.
8436 (Corrupted semantic options if user action cuts parse):
8437 (Incorrect lookahead during deterministic GLR):
8438 (Incorrect lookahead during nondeterministic GLR):
8439 Don't name a local var 'index'; it shadows string.h's 'index'.
8440
8441 2006-01-19 Akim Demaille <akim@epita.fr>
8442
8443 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8444 location, not just parts of it.
8445
8446 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8447
8448 * NEWS: Document the fact that multiple %unions are now allowed.
8449 * doc/bison.texinfo (Union Decl): Likewise.
8450 * TODO: This feature is now implemented, so remove it from
8451 the wishlist.
8452
8453 * Makefile.maint: Merge with coreutils Makefile.maint.
8454 (CVS_LIST): Use build-aux version if available.
8455 (VERSION_REGEXP): New macro.
8456 (syntax-check-rules): Add sc_no_if_have_config_h,
8457 sc_prohibit_assert_without_use, sc_require_config_h,
8458 sc_useless_cpp_parens.
8459 (sc_obsolete_symbols): Check for O_NDELAY.
8460 (sc_dd_max_sym_length): Track coreutils.
8461 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8462 (sc_useless_cpp_parens): New rule.
8463 (news-date-check): Look for version or today's date.
8464 (changelog-check): Don't require version number near head.
8465 (copyright-check): Use current year instead of hardwiring 2005.
8466 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8467 (announcement): Add --gpg-key-ID.
8468
8469 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8470 with "file system".
8471
8472 Avoid undefined behavior that addressed just before the start of an
8473 array. Problem reported by twlevo.
8474 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8475 * src/lalr.c (build_relations): Rely on new sentinel.
8476 * src/gram.c (gram_free): Adjust to new sentinel.
8477
8478 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8479
8480 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8481 yylookaheadNeeds. All uses updated.
8482 (yysplitStack): Rename local yynewLookaheadStatuses to
8483 yynewLookaheadNeeds.
8484 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8485 GLR): In comments, change `lookahead status' to `lookahead need'.
8486
8487 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8488
8489 * data/glr.c (yysplitStack): A little stylistic rewrite.
8490
8491 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8492
8493 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8494
8495 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8496
8497 * doc/bison.texinfo: Fix some typos.
8498 (GLR Semantic Actions): New subsection discussing special
8499 considerations because GLR semantic actions might be deferred.
8500 (Actions): Mention look-ahead usage of yylval.
8501 (Actions and Locations): Mention look-ahead usage of yylloc.
8502 (Special Features for Use in Actions): Add YYEOF entry and mention it
8503 in the yychar entry.
8504 In the yychar entry, remove mention of the local yychar case (pure
8505 parser) since this is irrelevant information when writing semantic
8506 actions and since it's already discussed in `Table of Symbols' where
8507 yychar is otherwise described as an external variable.
8508 In the yychar entry, don't call it the `current' look-ahead since it
8509 isn't when semantic actions are deferred.
8510 In the yychar and yyclearin entries, add note about deferred semantic
8511 actions.
8512 Add yylloc and yylval entries discussing look-ahead usage.
8513 (Look-Ahead Tokens): When discussing yychar, don't call it the
8514 `current' look-ahead, and do mention yylval and yylloc.
8515 (Error Recovery): Cross-reference `Action Features' when mentioning
8516 yyclearin.
8517 (Table of Symbols): In the yychar entry, don't call it the `current'
8518 look-ahead.
8519 In the yylloc and yylval entries, mention look-ahead usage.
8520
8521 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
8522
8523 * tests/glr-regression.at: Update copyright year to 2006.
8524
8525 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8526
8527 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8528 use during nondeterministic operation to track which stacks have
8529 actually needed the current lookahead.
8530 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8531 Allocate, deallocate, resize, and otherwise shuffle space for
8532 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8533 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8534 appropriately during nondeterministic operation.
8535 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8536 members to store the current lookahead to be used by the deferred
8537 user action.
8538 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8539 from which the RHS is taken. Set the lookahead members of the new
8540 yySemanticOption according to the lookahead status for stack yyk.
8541 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8542 yyaddDeferredAction.
8543 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8544 members of yySemanticOption before invoking yyuserAction, and then set
8545 them back to their current values afterward.
8546 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8547 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8548 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8549 titles for consistency.
8550 (Leaked merged semantic value if user action cuts parse): In order to
8551 suppress lint warnings, use arguments in merge function, and assign
8552 char value < 128 in main.
8553 (Incorrect lookahead during deterministic GLR): New test case.
8554 (Incorrect lookahead during nondeterministic GLR): New test case.
8555
8556 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8557
8558 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
8559 !yyvaluep as signal that no semantic value is available to print.
8560 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8561 to print a semantic value.
8562
8563 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8564
8565 * tests/glr-regression.at: For consistency with my newer test cases,
8566 don't thank myself.
8567
8568 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8569
8570 * data/glr.c (yyresolveValue): When merging semantic options, if at
8571 least one user action succeeds but a later one cuts the parse, then
8572 destroy the semantic value before returning rather than leaking it.
8573 (yyresolveStates): If a user action cuts the parse and thus
8574 yyresolveValue fails, ignore the (unset) semantic value rather than
8575 corrupting the yyGLRState, and empty the semantic options list since
8576 the user actions should have called all necessary destructors.
8577 Simplify code with YYCHK.
8578 * tests/glr-regression.at (Corrupted semantic options if user action
8579 cuts parse): New test case.
8580 (Undesirable destructors if user action cuts parse): New test case.
8581 Before applying any of this patch, this test case never actually failed
8582 for me... but only because the corrupted semantic options usually
8583 masked this bug.
8584 (Leaked merged semantic value if user action cuts parse): New test
8585 case.
8586
8587 2006-01-05 Akim Demaille <akim@epita.fr>
8588
8589 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8590
8591 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8592
8593 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8594 _MSC_VER. Problem reported by Cenzato Marco.
8595 (b4_c_function_def): Use it.
8596 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8597 b4_c_modern.
8598 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8599 than rolling our own.
8600
8601 2006-01-04 Akim Demaille <akim@epita.fr>
8602
8603 Also warn about non-used mid-rule values.
8604 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8605 member.
8606 (symbol_list_new): Adjust.
8607 * src/reader.c (symbol_typed_p): New.
8608 (grammar_rule_check): Use it.
8609 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8610 Check its rule.
8611 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8612 Use it.
8613 * tests/actions.at (Exotic Dollars): Adjust.
8614
8615 2006-01-04 Akim Demaille <akim@epita.fr>
8616
8617 * src/reader.c (grammar_midrule_action): If $$ is set in a
8618 mid-rule, move the `used' bit to its lhs.
8619 * tests/input.at (Unused values): New.
8620 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8621
8622 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8623
8624 * doc/bison.texinfo (Bison Options): Say more accurately what
8625 --yacc does.
8626 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8627 about declarations in the grammar when in Yacc mode, as POSIX does
8628 not require a diagnostic when the grammar uses extensions.
8629
8630 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8631
8632 Warn about dubious constructions like "%token T T".
8633 Reported by twlevo.
8634 * src/symtab.h (struct symbol.declared): New member.
8635 * src/symtab.c (symbol_new): Initialize it to false.
8636 (symbol_class_set): New arg DECLARING, specifying whether
8637 this is a declaration that we want to warn about, if there
8638 is more than one of them. All uses changed.
8639
8640 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8641 Allow multiple %union directives, whose contents concatenate.
8642 * src/parse-gram.y (grammar_declaration): Likewise.
8643 Use muscle_code_grow, so that we don't need stype_line any more.
8644 All uses changed.
8645
8646 * src/muscle_tab.c (muscle_grow): Fix comment.
8647
8648 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8649 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8650 Update copyright year to 2006.
8651
8652 2006-01-03 Akim Demaille <akim@epita.fr>
8653
8654 Have glr.cc pass (some of) the calc.at tests.
8655 * data/glr.cc (b4_parse_param_orig): New.
8656 (b4_parse_param): Improve its definition, and bound it more
8657 clearly in the skeleton.
8658 (b4_epilogue): Append, instead of prepending, in order to keep
8659 #line consistency.
8660 Simplify the generation of auxiliary functions: locations and
8661 purity are mandated.
8662 (b4_global_tokens_and_yystype): Honor it.
8663 * data/location.cc (c++.m4): Don't include it.
8664 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8665 and AT_SKEL_CC_IF.
8666 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8667 AT_LALR1_CC_IF.
8668 Be sure to initialize the first position's filename.
8669 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8670 mandated anyway.
8671 (AT_CHECK_CALC_GLR_CC): New.
8672 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8673
8674 2006-01-02 Akim Demaille <akim@epita.fr>
8675
8676 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8677 c.m4.
8678 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
8679 * data/glr.cc: Do not include stack.hh.
8680
8681 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8682
8683 * data/glr.c: Reformat whitespace with tabs.
8684 (b4_lpure_formals): Remove this unused m4 macro.
8685 * tests/cxx-type.at: Reformat whitespace with tabs.
8686 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8687 since it's a member. Rename type to isNterm for clarity.
8688
8689 2005-12-29 Akim <akim@sulaco.local>
8690
8691 Let glr.cc catch up with symbol_value_print.
8692 * data/glr.cc (b4_yysymprint_generate): Replace by...
8693 (b4_yy_symbol_print_generate): this.
8694 (yy_symbol_print, yy_symbol_value_print): Declare them.
8695
8696 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8697
8698 * src/location.h (boundary): Note that a line or column equal
8699 to INT_MAX indicates an overflow.
8700 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8701 (rule_length_overflow, increment_rule_length, add_column_width):
8702 New functions.
8703 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8704 (<SC_BRACED_CODE>"}"):
8705 Use increment_rule_length rather than incrementing it by hand.
8706 (adjust_location, handle_syncline): Diagnose overflow.
8707 (handle_action_dollar, handle_action_at):
8708 Fix bug with monstrosities like $-2147483648.
8709 Remove now-unnecessary checks.
8710 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8711 (convert_ucn_to_byte): Verify assumptions.
8712 (handle_syncline): New arg LOC. All callers changed.
8713 Don't store through a value derived from char const * pointer.
8714
8715 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8716 GCC warnings.
8717
8718 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8719
8720 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8721 Remove unnecessary forward static decls.
8722
8723 2005-12-27 Akim Demaille <akim@epita.fr>
8724
8725 * src/reader.c (grammar_current_rule_check): Also check that $$
8726 is used.
8727 Take the rule to check as argument, hence rename as...
8728 (grammar_rule_check): this.
8729 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8730 Rename as...
8731 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8732 (grammar_midrule_action, grammar_symbol_append): Now static.
8733 * tests/torture.at (input): Don't rely on the default action
8734 being always performed.
8735 * tests/calc.at: "Set" $$ even when the action is "cut" with
8736 YYERROR or other.
8737 * tests/actions.at (Exotic Dollars): Instead of using unused
8738 values, check that the warning is issued.
8739
8740 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8741
8742 * NEWS: Improve wording for unused-value warnings.
8743
8744 2005-12-22 Akim Demaille <akim@epita.fr>
8745
8746 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8747 (b4_yysymprint_generate): Rename as...
8748 (b4_yy_symbol_print_generate): this.
8749 Generate yy_symbol_print instead of yysymprint.
8750 Generate also yy_symbol_value_print, and use it.
8751
8752 2005-12-22 Akim Demaille <akim@epita.fr>
8753
8754 * NEWS: Warn about unused values.
8755 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8756 a `used' member.
8757 (symbol_list_n_get, symbol_list_n_used_set): New.
8758 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8759 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8760 * src/reader.c (grammar_current_rule_check): Check that values are
8761 used.
8762 * src/symtab.c (symbol_print): Accept 0.
8763 * tests/existing.at: Remove the type information.
8764 Empty the actions.
8765 Remove useless actions (beware of mid-rule actions: perl -000
8766 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8767 * tests/actions.at (Exotic Dollars): Use unused values.
8768 * tests/calc.at: Likewise.
8769 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8770 Likewise.
8771
8772 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8773 rule_useful_p.
8774
8775 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8776
8777 Undo 2005-12-01 tentative license wording change. The wording is
8778 still being reviewed by the lawyers, and we don't want to wait for
8779 them before publishing a test release. For now, revert to the
8780 previous wording.
8781 * NEWS: Undo 2005-12-01 change.
8782 * data/glr.c: Revert to previous license wording.
8783 * data/glr.cc: Likewise.
8784 * data/lalr1.cc: Likewise.
8785 * data/location.cc: Likewise.
8786 * data/yacc.c: Likewise.
8787
8788 * NEWS: Reword %destructor vs YYABORT etc.
8789 * data/glr.c: Use American spacing, for consistency.
8790 * data/glr.cc: Likewise.
8791 * data/lalr1.cc: Likewise.
8792 * data/yacc.c: Likewise.
8793 * data/yacc.c: Reformat comments slightly.
8794 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8795 for consistency. Fix some spelling errors and reword recently-included
8796 text slightly.
8797 * tests/cxx-type.at: Cast results of malloc, for C++.
8798
8799 2005-12-21 Joel E. Denny <address@hidden>
8800
8801 * tests/cxx-type.at: Construct a tree, count the parents of shared
8802 nodes, and free each node once and only once. Previously, the memory
8803 for semantic values was leaked instead.
8804
8805 2005-12-21 Joel E. Denny <address@hidden>
8806
8807 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8808 (yylval, yylloc): If pure, #define to yystackp->yyval and
8809 yystackp->yyloc similar to yychar and yynerrs.
8810 (yyparse): If pure, remove local yylval and yylloc. Add local
8811 yystackp to accommodate pure definitions of yylval and yylloc.
8812 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8813 yylvalp and yyllocp to &yylval and &yylloc.
8814 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8815 namespace. Previously, nerrs and char were missing, but lval and lloc
8816 weren't necessary.
8817 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8818 yylvalp and yyllocp parameters since, if pure, these are now always
8819 accessible through yystackp. If not pure, they are still accessible
8820 globally.
8821 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8822 `if (YYID (N))' to pacify lint.
8823
8824 2005-12-21 Akim Demaille <akim@epita.fr>
8825
8826 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8827 destroy the RHS symbols of a rule.
8828 * data/yacc.c (yylen): Initialize to 0.
8829 Keep its value to the number of items to possibly shift.
8830 In particular, a regular successful parse that ends on YYFINAL by
8831 a (internal) YYACCEPT must not have yylen != 0.
8832 (yyerrorlab, yyreturn): Pop the RHS.
8833 Reorder a bit to emphasize the `shifting' bits of code.
8834 (YYPOPSTACK): Now accept a number of items to pop.
8835 * data/lalr1.cc: Likewise.
8836 * data/glr.c: Formatting changes.
8837 Use goto instead of fall through.
8838 * doc/bison.texinfo (Destructor Decl): Complete.
8839
8840 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8841
8842 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8843 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
8844 * djgpp/config.bat: Replace every occurence of the file name
8845 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8846 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8847 * djgpp/config.sed: Replace every occurence of the file name
8848 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8849 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8850 * djgpp/djunpack.bat: DJGPP specific file.
8851 * djgpp/fnchange.lst: DJGPP specific file.
8852 * djgpp/README.in: Add new information about how to unpack the bison
8853 source on MSDOS and other systems which have 8.3 file name restrictions
8854 using djunpack.bat and fnchange.lst.
8855
8856 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
8857
8858 * bootstrap (build_cvs_prefix): Remove; unused.
8859 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
8860 when getting gnulib.
8861
8862 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
8863
8864 * data/glr.c: Reorder typedef declarations for structs to match order
8865 of struct declarations.
8866 Rename yystack everywhere to yystackp except in yyparse where it's not
8867 a pointer.
8868 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
8869 consistency.
8870 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
8871 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
8872 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
8873 lint.
8874
8875 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
8876
8877 * tests/sets.at (Accept): Fix typos in regular expression used to
8878 sed out the final state number.
8879
8880 Work around portability problem on Solaris 10: flex-generated
8881 files include <stdio.h> before <config.h>, which messes up
8882 because the latter defines __EXTENSIONS__. Address the problem
8883 by creating two new little files that include <config.h> first,
8884 then include the flex-generated files. Rewrite everyone else
8885 to include <config.h> first, as well.
8886 * lib/timevar.c: Always include "config.h".
8887 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
8888 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
8889 (EXTRA_bison_SOURCES): New macro.
8890 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
8891 * src/system.h: Don't include config.h.
8892 * src/LR0.c: Include <config.h> first.
8893 * src/assoc.c: Likewise.
8894 * src/closure.c: Likewise.
8895 * src/complain.c: Likewise.
8896 * src/conflicts.c: Likewise.
8897 * src/derives.c: Likewise.
8898 * src/files.c: Likewise.
8899 * src/getargs.c: Likewise.
8900 * src/gram.c: Likewise.
8901 * src/lalr.c: Likewise.
8902 * src/location.c: Likewise.
8903 * src/main.c: Likewise.
8904 * src/muscle_tab.c: Likewise.
8905 * src/nullable.c: Likewise.
8906 * src/output.c: Likewise.
8907 * src/parse-gram.y: Likewise.
8908 * src/print.c: Likewise.
8909 * src/print_graph.c: Likewise.
8910 * src/reader.c: Likewise.
8911 * src/reduce.c: Likewise.
8912 * src/relation.c: Likewise.
8913 * src/state.c: Likewise.
8914 * src/symlist.c: Likewise.
8915 * src/symtab.c: Likewise.
8916 * src/tables.c: Likewise.
8917 * src/uniqstr.c: Likewise.
8918 * src/vcg.c: Likewise.
8919
8920 * src/parse-gram.y: Fix minor problems uncovered by lint.
8921 (current_lhs, current_lhs_location): Now static.
8922 (current_assoc): Remove unused variable.
8923
8924 Cleanups so that Bison-generated parsers have less lint.
8925 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
8926 Prepend /*ARGSUSED*/, for lint's sake.
8927 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
8928 definition if 'lint' is defined.
8929 (YYID): New macro (or function, if lint).
8930 All uses of /*CONSTCOND*/0 replaced by YYID(0).
8931 * data/yacc.c: Likewise.
8932 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
8933 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
8934 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
8935 is C++ only.
8936 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
8937 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
8938 Use YYID(0) rather than 0, for lint.
8939 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
8940 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
8941
8942 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
8943
8944 * tests/glr-regression.at
8945 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8946 Close memory leak reported by twlevo.
8947
8948 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
8949
8950 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
8951 all stacks.
8952 (yyparse): Iterate another stack in order to call user destructors.
8953 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8954 New test case.
8955 (Duplicated user destructor for lookahead): This test now is expected
8956 to succeed.
8957
8958 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
8959
8960 * NEWS: Document the following change.
8961 * data/yacc.c: Say "parser skeleton" rather than "file", since
8962 it's no longer just a file.
8963 * data/glr.c: Grant a special exception for C GLR parsers, that
8964 reads like the already-existing exception for C LALR(1) parsers.
8965 * data/glr.cc: Likewise.
8966 * data/lalr1.cc: Likewise.
8967 * data/location.cc: Likewise.
8968 * data/yacc.c: Reword the "written by" statement to clarify that
8969 it was the parser skeleton, not the entire output file.
8970 * data/glr.c: Written by Paul Hilfinger.
8971 * data/glr.cc: Written by Akim Demaille.
8972 * data/lalr1.cc: Likewise.
8973
8974 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
8975
8976 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
8977 Fix typos in previous change that broke 'make check'.
8978 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
8979 supported in C.
8980 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
8981 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8982 We can revert this once things settle down.
8983
8984 * src/conflicts.c (conflicts_print): Don't print file name twice
8985 when %expect fails because there were no conflicts.
8986 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8987 change.
8988 * tests/conflicts.at (%expect not enough, %expect too much):
8989 (%expect with reduce conflicts): Adjust to new behavior.
8990
8991 2005-11-18 Akim Demaille <akim@epita.fr>
8992
8993 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8994 errors.
8995 * NEWS: Document this.
8996 * doc/bison.texinfo (Expect Decl): Likewise.
8997
8998 2005-11-16 Akim Demaille <akim@epita.fr>
8999
9000 Generalize the display of semantic values and locations in traces.
9001 * data/glr.c (yy_reduce_print): Fix indices (again).
9002 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9003 literal integers.
9004 * data/lalr1.cc (yyreduce_print): Rename as...
9005 (yy_reduce_print): this.
9006 Display values and locations.
9007 * data/yacc.c (yy_reduce_print): Likewise.
9008 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9009 (yysymprint): Move higher to be visible from yy_reduce_print).
9010 (yyparse): Adjust.
9011 * tests/calc.at: Adjust the expected length of the traces.
9012
9013 2005-11-14 Akim Demaille <akim@epita.fr>
9014
9015 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9016 from 1 to N, while values and location start at 0.
9017 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9018
9019 2005-11-14 Akim Demaille <akim@epita.fr>
9020
9021 * data/glr.c (yy_reduce_print): Fix the $ number.
9022
9023 2005-11-14 Akim Demaille <akim@epita.fr>
9024
9025 "Use" parse parameters.
9026 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9027 * data/glr.c, data/glr.cc: Use them.
9028 * data/glr.c (YYUSE): Have a C++ definition that supports
9029 non-pointer types.
9030
9031 2005-11-14 Akim Demaille <akim@epita.fr>
9032
9033 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9034
9035 2005-11-14 Akim Demaille <akim@epita.fr>
9036
9037 * data/glr.cc: New.
9038 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
9039
9040 2005-11-12 Akim Demaille <akim@epita.fr>
9041
9042 Let position and location be PODs.
9043 * data/location.cc (position::initialize, location::initialize): New.
9044 (position::position, location::location): Define only if
9045 b4_location_constructors is defined.
9046 * data/lalr1.cc (b4_location_constructors): Define it for backward
9047 compatibility.
9048 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9049
9050 2005-11-12 Akim Demaille <akim@epita.fr>
9051
9052 * data/lalr1.cc: Move the body of the ctor and dtor into the
9053 parser file (instead of the header).
9054 Wrap the implementations in a "namespace yy".
9055
9056 2005-11-12 Akim Demaille <akim@epita.fr>
9057
9058 Have glr.c include its header file when created.
9059 * data/glr.c (b4_shared_declarations): New.
9060 Output them verbatim in the parser if !%defines, otherwise
9061 output then in the header file, and include it instead.
9062
9063 2005-11-11 Akim Demaille <akim@epita.fr>
9064
9065 * data/glr.c: Comment changes.
9066
9067 2005-11-11 Akim Demaille <akim@epita.fr>
9068
9069 When yydebug, report semantic and location values for reductions.
9070 * data/glr.c (yy_reduce_print): Report the semantic values and the
9071 locations.
9072 (YY_REDUCE_PRINT): Adjust.
9073 (yyglrReduce): Use them.
9074 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9075 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9076 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9077 traces.
9078
9079 2005-11-10 Akim Demaille <akim@epita.fr>
9080
9081 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9082 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9083 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9084
9085 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9086
9087 * m4/cxx.m4, examples/Makefile.am: Don't build
9088 examples/calc++ if no C++ compiler is available. (trivial change)
9089
9090 2005-11-09 Akim Demaille <akim@epita.fr>
9091
9092 * src/scan-skel.l: Use a couple of asserts.
9093
9094 2005-11-03 Akim Demaille <akim@epita.fr>
9095
9096 In some (weird) cases, the final state number is incorrect.
9097 Reported by Alexandre Duret-Lutz.
9098 * src/LR0.c (state_list_append): Remove the computation of
9099 final_state.
9100 (save_reductions): Do it here.
9101 (get_state): Alpha conversion.
9102 (generate_states): Use a for loop.
9103 * src/gram.h (item_number_is_rule_number)
9104 (item_number_is_symbol_number): New.
9105 * src/state.c: Use assert.
9106 * src/system.h: Include assert.h.
9107 * tests/sets.at (Accept): New.
9108
9109 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9110
9111 * data/glr.c (yyfill): Adjust comment.
9112 (yyresolveAction): Initialize default location properly
9113 for empty right-hand sides.
9114 (yydoAction): Ditto.
9115 Add comment explaining apparently dead code.
9116 * tests/glr-regression.at
9117 (Incorrectly initialized location for empty right-hand side in GLR):
9118 New test.
9119
9120 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9121
9122 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9123 gnulib when interrupted. This fixes some race conditions and
9124 works around some portability problems (one noted by Paul
9125 Hilfinger).
9126
9127 2005-10-22 Akim <akim@epita.fr>
9128
9129 * Makefile.cfg: Adjust to config -> build-aux.
9130 Reported by twledo.
9131
9132 2005-10-21 Akim Demaille <akim@epita.fr>
9133
9134 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9135 the %parse-params.
9136 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9137 * data/yacc.c (b4_Pure_if): Rename as...
9138 (b4_yacc_pure_if): this.
9139 (YY_SYMBOL_PRINT, yyparse): Adjust.
9140 * doc/bison.texinfo: Formatting changes.
9141
9142 2005-10-21 Akim Demaille <akim@epita.fr>
9143
9144 Finish the transition config -> build-aux.
9145 * configure.ac, Makefile.am: Use build-aux.
9146 * config/prev-version, config/announce-gen, config/Makefile.am:
9147 Move to...
9148 * build-aux/prev-version, build-aux/announce-gen,
9149 * build-aux/Makefile.am: here.
9150
9151 2005-10-14 Akim Demaille <akim@epita.fr>
9152
9153 * examples/calc++/test: Use set -x only when VERBOSE.
9154
9155 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9156
9157 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9158 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9159
9160 2005-10-13 Akim Demaille <akim@epita.fr>
9161
9162 * src/scan-skel.l: Output the base name parts of the parser and
9163 header file names.
9164 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
9165 additional checks.
9166 Use this to exercise C++ outputs in subdirs.
9167 Reported by Oleg Smolsky.
9168
9169 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9170
9171 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9172 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9173 Problem reported by John P. Hartmann.
9174 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9175 already defined it.
9176
9177 2005-10-12 Akim Demaille <akim@epita.fr>
9178
9179 * src/parse-gram.y (version_check): Exit 63 to please missing
9180 (stands for "version mismatch).
9181 * tests/input.at, doc/bison.texinfo: Adjust.
9182
9183 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9184
9185 Work around portability problems with Visual Age C compiler
9186 (xlc and xlC_r) reported by John P. Hartmann.
9187 * data/location.cc (initial_column, initial_line): Remove.
9188 All uses replaced by 0 and 1.
9189 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9190 that xlc complains about.
9191 * src/scan-skel.l (skel_wrap): Likewise.
9192 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
9193 as __STDC__.
9194 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9195 __STDC_VERSION__. Use it everywhere instead of looking at
9196 __STDC__ and __cplusplus.
9197
9198 2005-10-10 Akim Demaille <akim@epita.fr>
9199
9200 * examples/calc++/test: Be quiet unless VERBOSE.
9201
9202 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9203
9204 * data/c.m4 (yydestruct, yysymprint):
9205 Use YYUSE instead of casting to void.
9206 * data/glr.c (YYUSE): New macro.
9207 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9208 Use it instead of rolling our own.
9209 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9210 (YYCHK1):
9211 Use /*CONSTCOND*/ to suppress lint warnings.
9212 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9213 (YY_STACK_PRINT): Use 'false' not '0'.
9214 (YYUSE): New macro.
9215 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9216 * data/yacc.c (YYUSE): New macro.
9217 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9218 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9219 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9220
9221
9222 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9223 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9224
9225 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9226
9227 Undo the parts of the unlocked-I/O change that substituted
9228 putc or puts for printf. This might hurt performance a bit,
9229 but some people prefer the printf style.
9230 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9231 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9232 All uses replaced by YYFPRINTF and YYDPRINTF.
9233 * data/yacc.c: Likewise.
9234 * lib/bitset.c (bitset_print): Likewise.
9235 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9236 putc and puts.
9237 * lib/lbitset.c (debug_lbitset): Likewise.
9238 * src/closure.c (print_firsts, print_fderives): Likewise.
9239 * src/gram.c (grammar_dump): Likewise.
9240 * src/lalr.c (look_ahead_tokens_print): Likewise.
9241 * src/output.c (escaped_output): Likewise.
9242 (user_actions_output): Break apart two printfs.
9243 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9244 * src/reduce.c (reduce_print): Likewise.
9245 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9246 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9247
9248 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9249 Use assignments rather than casts-to-void to suppress
9250 unused-variable warnings. This pacifies 'lint'.
9251 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9252 unused-variable warnings.
9253
9254 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9255
9256 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9257
9258 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9259
9260 Use unlocked I/O for a minor performance improvement on hosts like
9261 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9262 is to use the gnlib unlocked-io module, and to prefer putc and
9263 puts to printf when either will work (since the latter doesn't
9264 come in an unlocked flavor).
9265 * bootstrap (gnulib_modules): Add unlocked-io.
9266 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9267 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9268 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9269 and similarly for puts and putc and printf.
9270 * data/yacc.c: Likewise.
9271 * lib/bitset.c (bitset_print): Likewise.
9272 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9273 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9274 to printf.
9275 * lib/lbitset.c (debug_lbitset): Likewise.
9276 * src/closure.c (print_firsts, print_fderives): Likewise.
9277 * src/gram.c (grammar_dump): Likewise.
9278 * src/lalr.c (look_ahead_tokens_print): Likewise.
9279 * src/output.c (escaped_output): Likewise.
9280 (user_actions_output): Coalesce two printfs.
9281 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
9282 * src/reduce.c (reduce_print): Likewise.
9283 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9284 * src/system.h: Include unlocked-io.h rather than stdio.h.
9285
9286 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9287 this confuses xgettext.
9288
9289 2005-10-02 Akim Demaille <akim@epita.fr>
9290
9291 * bootstrap (gnulib_modules): Add strverscmp.
9292 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9293 * m4/.cvsignore: Add strverscmp.m4.
9294 * src/parse-gram.y (%require): New token, new rule.
9295 (version_check): New.
9296 * src/scan-gram.l (%require): Adjust.
9297 * tests/input.at (AT_REQUIRE): New.
9298 Use it.
9299 * doc/bison.texinfo (Require Decl): New.
9300 (Calc++ Parser): Use %require.
9301
9302 2005-10-02 Akim Demaille <akim@epita.fr>
9303
9304 * data/location.cc: New.
9305
9306 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9307 Akim Demaille <akim@epita.fr>
9308
9309 Make sure -odir/foo.cc creates dir/location.hh etc.
9310 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9311 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9312 (spec_defines_file): Now const.
9313 (dir_prefix): New.
9314 (short_base_name): Remove.
9315 * src/files.c: Adjust.
9316 (dirname.h): Include.
9317 (base_name): Don't prototype it.
9318 (finput): Remove, duplicates gram_in.
9319 (full_base_name, short_base_name): Replace by...
9320 (all_but_ext, all_but_tab_ext): these.
9321 (compute_base_names): Rename as...
9322 (compute_file_name_parts): this.
9323 Update to compute the new variables, including dir_prefix.
9324 Adjust dependencies.
9325 * src/output.c (prepare): Output them.
9326 * src/reader.c: Adjust to use gram_in, not finput.
9327 * src/scan-skel.l (@dir_prefix@): New.
9328
9329 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9330
9331 * lib/subpipe.c: New function end_of_output_subpipe() added
9332 to allow support for non-posix systems. This is a no-op function
9333 for posix systems.
9334
9335 * lib/subpipe.h: New function end_of_output_subpipe() added
9336 to allow support for non-posix systems. This is a no-op function
9337 for posix systems.
9338
9339 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9340 handle the lack of pipe/fork functionality on non-posix systems.
9341
9342 * djgpp/Makefile.maint: DJGPP specific file.
9343
9344 * djgpp/README.in: DJGPP specific file.
9345
9346 * djgpp/config.bat: DJGPP specific configuration file.
9347
9348 * djgpp/config.sed: DJGPP specific configuration file.
9349
9350 * djgpp/config.site: DJGPP specific configuration file.
9351
9352 * djgpp/config_h.sed: DJGPP specific configuration file.
9353
9354 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9355
9356 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9357
9358 2005-10-02 Akim Demaille <akim@epita.fr>
9359
9360 * data/location.cc: New, extract from...
9361 * data/lalr1.cc: here.
9362 (location.hh): Include it after the user prologue, in case the
9363 filename type is defined by the user.
9364 Forward declation location and position before the pre-prologue.
9365 (yyresult_): Rename as...
9366 (yyresult): this, it's a local variable, not an attribute.
9367 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9368
9369 2005-10-01 Akim Demaille <akim@epita.fr>
9370
9371 * examples/extexi: Restore the #line generation.
9372
9373 2005-09-30 Akim Demaille <akim@epita.fr>,
9374 Alexandre Duret-Lutz <adl@gnu.org>
9375
9376 Move the token type and YYSTYPE in the parser class.
9377 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9378 (parser::token): New, from the moved free definition of tokens.
9379 (parser::semantic_value): Now a full definition instead of an
9380 indirection to YYSTYPE.
9381 (b4_post_prologue): No longer included in the header file, but
9382 in the implementation file.
9383 * doc/bison.texi (C+ Language Interface): Update.
9384 * src/parse-gram.y: Support unary %define.
9385 * tests/actions.at: Define global_tokens_and_yystype for backward
9386 compatibility until we update the tests.
9387 * tests/calc.at: Idem.
9388 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9389 to simplify the code.
9390
9391 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9392
9393 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9394 Ah, the good old days! Problem reported by Peter Klein.
9395 * bootstrap (gnulib_modules): Add strerror, strtoul.
9396 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9397 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9398
9399 2005-09-29 Akim Demaille <akim@epita.fr>
9400
9401 * data/c.m4 (b4_error_verbose_if): New.
9402 * data/lalr1.cc: Use it.
9403 (YYERROR_VERBOSE_IF): Remove.
9404 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9405 parser members, replaced by...
9406 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9407 local variables.
9408 (yysyntax_error_): Takes the state number as argument.
9409 (yyreduce_print_): Use the argument yyrule, not the former
9410 attribute yyn_.
9411
9412 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9413
9414 * bootstrap (gnulib_modules): Add verify.
9415 * lib/.cvsignore: Add verify.h.
9416 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9417 * src/system.h (verify): Remove.
9418 Include verify.h instead.
9419 * src/tables.c (tables_generate): Use new API for 'verify'.
9420
9421 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9422
9423 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9424 local variables whose names begin with 'yy'.
9425 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9426 Trivial changes from Joel E. Denny.
9427
9428 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9429 it itself.
9430 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9431 don't use alloca any more.
9432
9433 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9434 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
9435 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
9436 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9437 to match yacc.c, to test more hosts.
9438
9439 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9440
9441 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9442 doesn't affect behavior.
9443 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9444 Solaris, AIX, MSC.
9445 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9446 This works a bit better with glibc, if user code has already included
9447 stdlib.h.
9448 * doc/bison.texinfo (Bison Parser): Document that users can't
9449 arbitrarily use malloc and free for other purposes. Document
9450 that <alloca.h> and <malloc.h> might be included.
9451 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9452 user must declare alloca.
9453
9454 * HACKING (release): Forwarn the Translation Project about
9455 stable releses.
9456
9457 2005-09-20 Akim Demaille <akim@epita.fr>
9458
9459 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9460
9461 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9462
9463 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9464 (YYSTACK_ALLOC_MAXIMUM): Use it.
9465 (yysyntax_error): New function.
9466 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9467 multiple syntax errors are reported, and alloca is being used.
9468 Instead, reallocate buffers twice as big each time, so that
9469 we waste at most half the allocated memory. Start with a small
9470 (128-byte) buffer that will suffice in most cases anyway.
9471 Use yysyntax_error to do most of the work.
9472
9473 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9474 yynerrs is the number of errors reported, not the number of
9475 errors encountered.
9476
9477 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9478 Mark it as expected to fail.
9479 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9480 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9481 Don't start user-code symbols with "yy", to avoid name space problems.
9482
9483 2005-09-19 Akim Demaille <akim@epita.fr>
9484
9485 Remove the traits, failed experiment.
9486 It never proved useful, and anyway because of the current
9487 definition, it was not possible to have several specialization of
9488 this traits, making it useless.
9489 * data/lalr1.cc (yy:traits): Remove.
9490 Inline its definitions in the parser class.
9491
9492 2005-09-19 Akim Demaille <akim@epita.fr>
9493
9494 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9495 least Mac OSX with a /usr/local install of gettext.
9496
9497 2005-09-19 Akim Demaille <akim@epita.fr>
9498
9499 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9500 and yytoken for similarity with the other skeletons.
9501
9502 2005-09-19 Akim Demaille <akim@epita.fr>
9503
9504 * NEWS, configure.ac: update version number to 2.1a.
9505
9506 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9507
9508 * NEWS: Version 2.1.
9509
9510 * NEWS: Remove notice of yytname change, since it was never in an
9511 official release.
9512 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9513 diagnostic.
9514 * src/output.c (prepare): Likewise.
9515 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9516 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9517 is not defined. This is an awful hack, but it's enough for now.
9518 All callers changed.
9519 * tests/glr-regression-at (make_value): Args are const pointers now,
9520 to avoid GCC warning.
9521 (Duplicated user destructor for lookahead): New test. Currently
9522 skipped. It fails on my host but I'm not sure it'll always fail.
9523
9524 2005-09-16 Akim Demaille <akim@epita.fr>
9525
9526 * src/symtab.h (struct symbol): Declare the printer and destructor
9527 as const, to avoid accidental calls to free.
9528 (symbol_destructor_set, symbol_printer_set): Adjust.
9529 * src/symtab.c: Adjust.
9530
9531 2005-09-16 Akim Demaille <akim@epita.fr>
9532
9533 * data/c.m4 (b4_token_enums): New.
9534 (b4_token_defines): Rename as...
9535 (b4_token_enums_defines): this.
9536 (b4_token_defines): New, output only the #defines.
9537 * data/yacc.c, data/glr.c: Adjust.
9538 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9539 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9540 as default values.
9541
9542 2005-09-16 Akim Demaille <akim@epita.fr>
9543
9544 * data/lalr1.cc (yylex_): Remove, inline its code.
9545 (yyreport_syntax_error_): Remove, replaced by...
9546 (yysyntax_error_): this which returns a string and leaves to the
9547 caller the call to the users' error function.
9548 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9549 Move from members of the parser object...
9550 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9551 to local variables of the parse function.
9552
9553 2005-09-16 Akim Demaille <akim@epita.fr>
9554
9555 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9556 since it's in Bison's name space.
9557
9558 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9559
9560 * data/glr.c (yyresolveValue): Add default case to pacify
9561 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9562
9563 * NEWS: Document when yyparse started to return 2.
9564 * doc/bison.texinfo (Parser Function): Document when yyparse
9565 returns 2.
9566
9567 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9568 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9569 changed.
9570 (class position): file_name -> filename (reverting). All uses changed.
9571
9572 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9573
9574 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9575 do anything if $@ exists. This reverts part of the 2005-07-07
9576 patch.
9577
9578 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9579
9580 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9581 contains obsolete information and isn't worth distributing as a
9582 separate file anyway.
9583 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9584 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9585 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9586 (yyparse): Abort if user code uses longjmp to throw an unexpected
9587 value.
9588
9589 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9590
9591 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9592 Suggested by twlevo@xs4all.nl.
9593
9594 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9595 This avoids a diagnostic from gcc -Wswitch-enum.
9596 Problem reported by twlevo@xs4all.nl.
9597
9598 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9599 standards. Use "file name" or "file" or "name", depending on
9600 the context.
9601 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9602 not to hack/foo.tab.c.
9603 (Calc++ Top Level): 2nd arg of main is not const.
9604 * data/glr.c: b4_filename -> b4_file_name.
9605 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9606 All uses changed.
9607 (class position): filename -> file_name. All uses changed.
9608 * data/yacc.c: b4_filename -> b4_file_name.
9609 * lib/bitset.h: filename -> file_name in local vars.
9610 * lib/bitset_stats.c: Likewise.
9611 * src/files.c: Likewise.
9612 * src/scan-skel.l ("@output ".*\n): Likewise.
9613 * src/files.c (file_name_split): Renamed from filename_split.
9614 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
9615
9616 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9617
9618 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9619 to accommodate latest gnulib.
9620
9621 * tests/glr-regression.at (Duplicate representation of merged trees):
9622 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9623
9624 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9625 needed.
9626
9627 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9628
9629 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9630 All uses changed. Invoke user destructor after an error during a
9631 split parse (trivial change from Joel E. Denny).
9632
9633 * tests/glr-regression.at
9634 (User destructor after an error during a split parse): New test case.
9635 Problem reported by Joel E. Denny in:
9636 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9637
9638 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9639
9640 * README-cvs: Give URLs for recommended tools.
9641 Mention Gzip version problem, and bootstrapping issues.
9642 Remove troubleshooting section, as it's somewhat obsolete.
9643
9644 * bootstrap (no_cache): New var, to accommodate different wget
9645 variants. Use it instead of '-C off'. Problem reported by
9646 twlevo@xs4all.nl.
9647
9648 * data/glr.c (yydestroyStackItem): New function.
9649 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9650 debugging information. Problem reported by Joel E. Denny.
9651
9652 2005-08-25 Akim Demaille <akim@epita.fr>
9653
9654 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9655
9656 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9657
9658 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9659 Don't invoke destructor on unresolved entries.
9660 * tests/glr-regression.at
9661 (User destructor for unresolved GLR semantic value): New test case.
9662 Problem reported by Joel E. Denny in:
9663 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9664
9665 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9666
9667 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9668 Add strnlen.c.
9669 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9670 lib-prefix.m4, po.m4.
9671
9672 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9673 in yydestruct diagnostic, since it might not be an error.
9674 Problem reported by Joel Denny near end of
9675 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9676 * data/lalr1.cc (yyerturn): Likewise.
9677 * data/yacc.c (yyreturn): Likewise.
9678 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9679
9680 * src/files.c: Remove obsolete FIXME comment.
9681
9682 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9683 with the other templates, and to fix bogus run-on messages such
9684 as the one reported at the end of
9685 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9686 All callers changed to avoid the newline.
9687 (yyprocessOneStack): Output two lines rather than one, to accommodate
9688 the above change. This changes the debug output format slightly.
9689
9690 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9691 reported by Joel E. Denny in
9692 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9693 (trivial change).
9694 * tests/glr-regression.at (Duplicate representation of merged trees):
9695 New test, from Joel E. Denny in:
9696 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9697 * THANKS: Add Joel E. Denny.
9698
9699 * configure.ac (AC_INIT): Bump to 2.0c.
9700
9701 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9702
9703 * NEWS: Version 2.0b.
9704
9705 * Makefile.am (SUBDIRS): Put examples before tests, so that
9706 "make check" doesn't finish with "All 1 tests passed".
9707
9708 * tests/regression.at (Token definitions): Don't rely on
9709 AT_PARSER_CHECK for data that contains backslashes. It currently
9710 uses 'echo', and 'echo' isn't portable if its argument contains
9711 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9712 that the byte '\0xff' is not printable in the C locale; it is,
9713 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9714 not printable, so use '\0x81' to test.
9715
9716 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9717 version of GCC, since the macro is used with non-GCC compilers.
9718
9719 Fix core dump reported by Pablo De Napoli in
9720 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9721 * tests/regression.at (Invalid inputs with {}): New test.
9722 * src/parse-gram.y (token_name): Translate type before using
9723 it as an index.
9724
9725 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9726 the user's name space. All uses changed to __attribute__
9727 ((__unused__)).
9728 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9729 Add __attribute__ ((__noreturn__)).
9730
9731 * etc/clcommit: Remove. We weren't using it, and it failed
9732 "make maintainer-distcheck".
9733 * Makefile.maint: Merge from coreutils.
9734 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9735 (syntax-check-rules): Change list of rules as described below.
9736 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9737 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9738 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9739 (sc_trailing_space): New rules.
9740 (sc_xalloc_h_in_src): Remove.
9741 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9742 (sc_space_tab, sc_error_exit_success, sc_changelog):
9743 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9744 (makefile-check, po-check, author_mark_check):
9745 (makefile_path_separator_check, copyright-check):
9746 Use grep -n, to make it easier to find violations.
9747 Use CVS_LIST and CVS_LIST_EXCEPT.
9748 (header_regexp, h_re): Remove.
9749 (dd_c): New macro.
9750 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9751 (my-distcheck): Use more-modern GCC flags.
9752 (signatures, %.asc): Remove.
9753 (rel-files, announcement): Remove signatures.
9754 Restore old updating code, even though we don't use it, so
9755 that we're the same as coreutils.
9756 (alpha, beta, major): Depend on news-date-check.
9757 Make the upload commands.
9758
9759 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9760 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9761 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9762 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9763 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9764 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9765 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9766 * tests/sets.at: Likewise.
9767
9768 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9769 we comment out the Autoconf version number.
9770 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9771 it's error-prone and "make maintainer-distcheck" rejects it.
9772
9773 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9774 Indent calls to "error" to pacify "make maintainer-distcheck",
9775 when the calls are not intended to be translated.
9776 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9777
9778 * src/Makefile.am (DEFS): Use +=, to pacify
9779 "make maintainer-distcheck".
9780 (bison_SOURCES): Add scan-skel.h.
9781 (sc_tight_scope): New rule, from coreutils.
9782
9783 * src/files.c (src_extension, header_extension):
9784 Now static, not extern.
9785 * src/getargs.c (short_options): Likewise.
9786 * src/muscle_tab.c (muscle_table): Likewise.
9787 * src/parse-gram.y (current_class, current_type, current_prec):
9788 Likewise.
9789 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9790 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9791 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9792 void, to avoid warning when NLS is disabled.
9793 * src/output.c: Include scan-skel.h.
9794 (scan_skel): Remove decl, since scan-skel.h does this.
9795 (output_skeleton):
9796 Indent calls to "error" to pacify "make maintainer-distcheck".
9797 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9798 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9799 "make maintainer-distcheck".
9800 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9801 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9802 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9803 (skel_lex_destroy, scan_skel): Move these decls to...
9804 * src/scan-skel.h: New file.
9805 * src/uniqstr.c (uniqstr_assert):
9806 Indent calls to "error" to pacify "make maintainer-distcheck".
9807
9808 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9809 not @VAR@.
9810
9811 * tests/torture.at: Revamp to avoid misuse of atoi that
9812 "make maintainer-distcheck" complained about.
9813
9814 * examples/extexi (message): Don't print a message more than once,
9815 and omit line-number decoration that makes Emacs compile think
9816 that informative messages are worth worrying about.
9817
9818 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9819
9820 * configure.ac: Update version number.
9821
9822 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9823 accidentally.
9824 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9825 autogenerated by the maintainer.
9826 * examples/calc++/.cvsignore: Add *.yy.
9827
9828 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
9829 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9830 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9831
9832 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
9833
9834 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
9835 from maintainer-distcheck about casting the argument of 'free'.
9836
9837 * NEWS: Mention recent yytname changes.
9838 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
9839
9840 * bootstrap: For translations that have not yet been upgraded to
9841 the new runtime-po domain, prime the pump by extracting the
9842 relevant strings from the obsolete translations. This code can be
9843 removed once the bison-runtime domain has been translated by each
9844 team.
9845
9846 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
9847 now that token names are already quoted.
9848
9849 Fix problem reported by Anthony Heading.
9850 * data/glr.c (YYTOKEN_TABLE): New macro.
9851 (yytname): Define if YYTOKEN_TABLE.
9852 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
9853 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
9854 (YYERROR_VERBOSE): Define the same way the other skeletons do.
9855 * src/output.c (prepare_symbols): Output token_table_flag.
9856
9857 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
9858
9859 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
9860 again if the first call fails.
9861
9862 * data/glr.c (yytnamerr): New function.
9863 (yyreportSyntaxError): Use it to dequote most string literals.
9864 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
9865 with other skeletons. All uses changed.
9866 (yytnameerr_): New function.
9867 (yyreport_syntax_error): Use it to dequote most string literals.
9868 * data/yacc.c (yytnamerr): New function.
9869 (yyerrlab): Use it to decode most string literals.
9870 * doc/bison.texinfo (Decl Summary, Calling Convention):
9871 Clarify quoting convention of yytname.
9872 * src/output.c (prepare_symbols): Quote all names. This undoes
9873 the 2005-04-17 change, which is now accomplished (mostly) via
9874 changes in the parsers as described above.
9875 * tests/regression.at (Token definitions, Web2c Actions):
9876 Undo most 2005-04-17 change here, too.
9877
9878 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
9879
9880 Fix more problems reported by twlevo@xs4all.nl.
9881 * tests/cxx-type.at: Don't pipe output of ./types through sed to
9882 remove trailing spaces. This loses the exit status of ./types,
9883 and isn't needed since ./types shouldn't be emitting trailing
9884 spaces.
9885 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
9886 as the stack isn't valid in that case.
9887
9888 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9889 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9890 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9891 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
9892 is used.
9893 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
9894 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9895 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9896 Likewise.
9897
9898 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
9899 overly-picky compilers that reject 'char *foo = "bar";'.
9900
9901 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
9902 to FILE * parameter, not to stderr. This fixes a typo introduced
9903 in the 2005-07-12 change.
9904
9905 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
9906 warnings from GCC 4.
9907
9908 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
9909 (yyglrShiftDefer, yysplitStack):
9910 Remove unused parameters b4_pure_formals. All uses changed.
9911 (yyglrShift): Remove unused parameters b4_user_formals.
9912 All uses changed.
9913 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
9914
9915 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
9916
9917 Destructor cleanups and regularization among the three skeletons.
9918 * NEWS: Document the behavior changes.
9919 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
9920 stack before failing, as the cleanup code will do it for us now.
9921 * data/lalr1.cc (yyerrlab): Likewise.
9922 * data/glr.c (yyparse): Pop everything off the stack before
9923 freeing it, so that destructors get called properly.
9924 * data/lalr1.cc (yyreturn): Likewise.
9925 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
9926 This is more consistent.
9927 * doc/bison.texinfo (Destructor Decl): Mention more reasons
9928 why destructors might be called. 1.875 -> 2.1.
9929 (Destructor Decl, Decl Summary, Table of Symbols):
9930 Some English-language cleanups for %destructor.
9931 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9932 Add output line for destructor of start symbol.
9933 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
9934 because of that same extra output line.
9935
9936 * NEWS: Document minor wording changes in diagnostics of
9937 Bison-generated parsers.
9938 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
9939 Remove unused formals. All uses changed.
9940 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
9941 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
9942 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
9943 Rename yyoverflowab to yyexhaustedlab.
9944 When memory exhaustion occurs during syntax-error reporting,
9945 report it separately rather than in a single diagnostic; this
9946 eases translation.
9947 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
9948 (Memory Exhausted): Renamed from Parser Stack Overflow.
9949 Revamp wording slightly to prefer "memory exhaustion".
9950 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
9951
9952 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
9953
9954 Add i18n support to the GLR skeleton. Partially fix the C++
9955 skeleton; a C++ expert needs to finish this. Remove debugging
9956 msgids; there's little point to having them translated, since they
9957 can be understood only by someone who can read the
9958 (English-language) source code.
9959
9960 Generate runtime-po/bison-runtime.pot automatically, so that we
9961 don't have to worry about garbage getting in that file. We'll
9962 make sure after the next official release that old msgids don't
9963 get lost. See
9964 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
9965
9966 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
9967 Now auto-generated.
9968 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
9969 Fix typos in explanations of the runtime file.
9970 * bootstrap: Change gettext keyword from YYI18N to YY_.
9971 Use standard Makefile.in.in in runtime-po, since we'll arrange
9972 for backward-compatible bison-runtime.po files in a different way.
9973 * data/glr.c (YY_): New macro, from yacc.c.
9974 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
9975 Translate messages intended for users.
9976 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
9977 the wording in the other skeletons. We don't know that the memory
9978 is virtual.
9979 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
9980 Use same method that yacc.c uses.
9981 Don't translate debugging messages.
9982 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9983 it doesn't work (yet), and requires C++ expertise to fix.
9984 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9985 Move defn to a more logical place, to be consistent with other
9986 skeletons.
9987 Don't translate debugging messages.
9988 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9989 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9990 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9991 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9992
9993 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9994 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9995 void, not int.
9996 * tests/glr-regression.at (Badly Collapsed GLR States):
9997 Likewise.
9998 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9999 yylex should return 0 at EOF rather than aborting.
10000
10001 Improve tests for stack overflow in GLR parser.
10002 Problem reported by twlevo@xs4all.nl.
10003 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10004 All uses removed.
10005 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10006 can handle the problem.
10007 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10008 (yyparse): New local variable yyresult to record the result.
10009 Use result of setjmp to set it, rather than storing itinto
10010 struct.
10011 (yyDone): Remove label.
10012 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10013 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10014 if YYABORT is used).
10015 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10016 yyparse status; put status > 1 into diagnostic.
10017 Check that status==2 works.
10018 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10019 Use exit status 3 for failure to open (which shouldn't happen).
10020
10021 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10022
10023 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10024 1 on syntax error; just let yyparse do its thing.
10025 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10026 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10027 (Exploding the Stack Size with Alloca):
10028 (Exploding the Stack Size with Malloc):
10029 Expect exit status 2, not 1, since the parser is supposed to blow
10030 its stack. Problem reported by twlevo@xs4all.nl.
10031
10032 * data/glr.c (yyparse): Don't assume that the initial calls
10033 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10034 Print a stack-overflow message and fail instead.
10035 Initialize the line-number information before creating the stack,
10036 so that the stack-overflow message can report line zero safely.
10037
10038 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10039
10040 Fix problems reported by twlevo@xs4all.nl.
10041 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10042 (yyuserMerge): Provide a default case if b4_mergers is empty.
10043 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10044 * tests/glr-regression.at
10045 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10046 Add casts to pacify C++ compilers.
10047 * tests/glr-regression.at (Improper merging of GLR delayed action
10048 sets): Declare yylex before using it.
10049 * tests/Makefile.am (maintainer-check-g++): Fix a stray
10050 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10051 test for valgrind; valgrind is independent of g++.
10052 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10053 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10054 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10055 Use a destructor, so that we can expand the stack. Change
10056 YYSTYPE to char * so that we can free it. Cast result of malloc.
10057
10058 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10059
10060 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10061 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10062
10063 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10064
10065 * PACKAGING: New file, suggested by Bruno Haible and taken from
10066 similar wording in gettext's PACKAGING file.
10067 * NEWS: Mention PACKAGING.
10068 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10069
10070 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10071
10072 * NEWS: Document recent i18n improvements.
10073 * bootstrap: Get runtime translations into runtime-po.
10074 Create runtime-po files automatically, if possible.
10075 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10076 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10077 does not infringe on the user's name space.
10078 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10079 * doc/bison.texinfo (Internationalization): Revamp the English
10080 and Texinfo syntax a bit, to try to make it clearer.
10081 (Bison Options, Option Cross Key): Mention --print-localedir.
10082 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10083 YYENABLE_NLS. Quote a bit more.
10084 * runtime-po/.cvsignore: New file.
10085 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10086 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10087 * runtime-po/quot.sed: Likewise.
10088 * runtime-po/boldquot.sed: Likewise.
10089 * runtime-po/en@quot.header: Likewise.
10090 * runtime-po/en@boldquot.header: Likewise.
10091 * runtime-po/insert-header.sin: Likewise.
10092 * runtime-po/remove-potcdate.sin: Likewise.
10093 * runtime-po/Makevars: Likewise.
10094 * runtime-po/LINGUAS: Likewise.
10095 * runtime-po/de.po: Likewise; we will rely on the translation project
10096 to maintain this, so "bootstrap" should get it.
10097 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
10098 its value.
10099 * src/main.c (main): Bind the bison-runtime domain, too.
10100
10101 2005-07-12 Bruno Haible <bruno@clisp.org>
10102
10103 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10104 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10105 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10106 * runtime-po: New directory.
10107 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10108 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10109 * runtime-po/Rules-quot: New file, copied from po/.
10110 * runtime-po/quot.sed: Likewise.
10111 * runtime-po/boldquot.sed: Likewise.
10112 * runtime-po/en@quot.header: Likewise.
10113 * runtime-po/en@boldquot.header: Likewise.
10114 * runtime-po/insert-header.sin: Likewise.
10115 * runtime-po/remove-potcdate.sin: Likewise.
10116 * runtime-po/Makevars: New file.
10117 * runtime-po/POTFILES.in: New file.
10118 * runtime-po/LINGUAS: New file.
10119 * runtime-po/bison-runtime.pot: New file.
10120 * runtime-po/de.po: New file.
10121 * m4/bison.m4: New file.
10122 * Makefile.am (SUBDIRS): Add runtime-po.
10123 (aclocaldir, aclocal_DATA): New variables.
10124 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10125 Define aclocaldir.
10126 * src/getargs.c (usage): Document --print-localedir option.
10127 (PRINT_LOCALEDIR_OPTION): New enum item.
10128 (long_options): Add --print-localedir option.
10129 (getargs): Handle --print-localedir option.
10130 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10131 (Internationalization): New section.
10132
10133 2005-07-12 Akim Demaille <akim@epita.fr>
10134
10135 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10136 for consistency with the rest of the code.
10137 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10138 Add separators.
10139
10140 2005-07-12 Akim Demaille <akim@epita.fr>
10141
10142 * src/parse-gram.y: Use %printer instead of YYPRINT.
10143
10144 2005-07-12 Akim Demaille <akim@epita.fr>
10145
10146 * src/symtab.h, src/symtab.c (symbol_print): New.
10147 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10148 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10149
10150 2005-07-12 Akim Demaille <akim@epita.fr>
10151
10152 * data/glr.c (b4_syncline): Fix (swap) the definitions of
10153 b4_at_dollar and b4_dollar_dollar.
10154
10155 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10156
10157 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10158 and Pennello's paper.
10159
10160 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10161
10162 * data/yacc.c (yyparse): Undo previous patch. Instead,
10163 set yylsp[0] and yyvsp[0] only if the initial action
10164 sets yylloc and yylval, respectively.
10165
10166 * data/yacc.c (yyparse): In the initial action, set
10167 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10168 This avoids the use of undefined variables if the initial
10169 action does not set yylloc and/or yylval.
10170
10171 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10172
10173 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10174 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10175 Remove from CVS. These files are automatically generated.
10176 * examples/extexi: Clarify that this file is now part of Bison,
10177 not GNU M4, and that it works with any POSIX-compatible Awk.
10178 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10179 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10180 so that we also get calc++-parser.yy. Geneate it.
10181 Use $(AWK), not gawk, since any conforming Awk will do.
10182 Put comment before action, since older 'make' can't handle comment
10183 in action.
10184 $(BUILT_SOURCES): List all built sources, not just some of them.
10185 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10186 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10187 $($(calc_sources_generated)): Remove unnecessary test for existence
10188 of target. (This had a shell syntax error anyway; a stray "x".)
10189 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10190 calc++-parser.yy.
10191 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10192
10193 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10194 implied by the other modules.
10195
10196 2005-07-06 Akim Demaille <akim@epita.fr>
10197
10198 Bind examples/calc++ to the package.
10199 * examples/calc++/Makefile: Remove, replaced by...
10200 * examples/calc++/Makefile.am: ... this new file.
10201 * examples/calc++/test: Remove input.
10202 * examples/calc++/compile: Remove.
10203 * examples/Makefile.am: New.
10204 * configure.ac, Makefile.am: Adjust.
10205 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10206
10207 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10208
10209 * data/glr.c (yyFail): Drastically simplify; since the format argument
10210 never had any % directives, we can simply pass it to yyerror.
10211 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10212 be modified later, as that is the usual style in glr.c.
10213 Problems reported by Paul Hilfinger.
10214
10215 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10216 and size overflow errors.
10217 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10218 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10219 (YYSIZEMAX): New macro.
10220 (yystpcpy): New function, taken from yacc.c.
10221 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10222 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10223 so that we don't have to maintain their signatures.
10224 (yyFail): Check for buffer overflow, by using vsnprintf rather
10225 than vsprintf. Allocate a bigger buffer if possible.
10226 Report an error if buffer allocation fails.
10227 (yyStackOverflow): New function.
10228 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10229 the initialization was successful. It might fail if storage was
10230 exhausted.
10231 (yyexpandGLRStack): Add more checks for storage allocation failure.
10232 Use yyStackOverflow to report failures.
10233 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10234 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10235 Don't assume stack number fits in int.
10236 (yysplitStack): Check for storage allocation failure.
10237 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10238 can print diagnostics on storage allocation failure. All callers
10239 changed.
10240 (yyresolveValue): Use yybool for boolean.
10241 (yyreportSyntaxError): Check for size-calculation overflow.
10242 This code is taken from yacc.c.
10243 (yyparse): Check for storage allocation errors when allocating
10244 the initial stack.
10245
10246 2005-07-05 Akim Demaille <akim@epita.fr>
10247
10248 Extract calc++ from the documentation.
10249 * doc/bison.texinfo (Calc++): Add the extraction marks.
10250 * examples/extexi: New, from the aborted GNU Programming 2E.
10251 Separate the different paragraph of a file with empty lines.
10252 * examples/Makefile: Use it to extract the whole calc++ example.
10253
10254 2005-06-24 Akim Demaille <akim@epita.fr>
10255
10256 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10257 class typedefs.
10258
10259 2005-06-22 Akim Demaille <akim@epita.fr>
10260
10261 * doc/bison.texinfo (C++ Language Interface): First stab.
10262 (C++ Parsers): Remove.
10263
10264 2005-06-22 Akim Demaille <akim@epita.fr>
10265
10266 * data/lalr1.cc (yylex_): Honor %lex-param.
10267
10268 2005-06-22 Akim Demaille <akim@epita.fr>
10269
10270 Start a set of simple examples.
10271 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10272 * examples/calc++/calc++-driver.hh,
10273 * examples/calc++/calc++-parser.yy,
10274 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10275 * examples/calc++/compile, examples/calc++/test: New.
10276
10277 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10278
10279 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10280 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10281 which stems from the 2005-05-27 patch.
10282
10283 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10284
10285 * data/glr.c: Modify treatment of unused parameters to permit use
10286 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10287
10288 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10289
10290 Fix infringement on user name space reported by Janos Zoltan Szabo.
10291 * data/yacc.c (yyparse): strlen -> yystrlen.
10292
10293 2005-05-30 Akim Demaille <akim@epita.fr>
10294
10295 * data/lalr1.cc (_): New.
10296 Translate the various messages.
10297
10298 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10299
10300 Fix infringement on user name space reported by Bruno Haible.
10301 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10302 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10303 the user's name space.
10304 (alloca): Include <stdlib.h> to get it, if it's not built in.
10305 (YYMALLOC, YYFREE): Define only if needed.
10306 (malloc, free): Declare, but only if needed, as this infringes on
10307 the user name space.
10308
10309 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10310
10311 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10312 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10313 with %d format.
10314 * lib/ebitset.c (min, max): Undef before defining.
10315 * lib/vbitset.c (min, max): Likewise.
10316 * lib/subpipe.c (create_subpipe): Save local variables in case
10317 vfork clobbers them.
10318
10319 2005-05-24 Bruno Haible <bruno@clisp.org>
10320
10321 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10322 error message syntax used by gcc-4.0.
10323
10324 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10325
10326 * README: Mention m4 1.4.3. Remove obsolete advice about
10327 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10328
10329 * bootstrap: Remove workaround for problem I encountered with
10330 gettext 0.14.1; it seems to be fixed now.
10331
10332 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10333
10334 * NEWS: Version 2.0a.
10335
10336 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10337 the previous change.
10338
10339 Various maintainer cleanups.
10340 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10341 conftest*, for benefit of CVS commands run at the same time as
10342 "configure". Add build-aux, since "bootstrap" now creates it and
10343 its subfiles.
10344 * Makefile.cfg (move_if_change): Remove.
10345 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10346 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10347 (po_repo, do-po-update, po-update, wget_files, get-targets):
10348 (config.guess-url_prefix, config.sub-url_prefix):
10349 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10350 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10351 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10352 Remove.
10353 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10354 this is now the recommended name.
10355 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10356 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10357 ylwrap. These files now go into build-aux.
10358 * config/move-if-change: Remove.
10359 * config/prev-version.txt: Bump from 1.75 to 2.0.
10360
10361 * bootstrap: Add stdio-safer, unistd-safer modules.
10362 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10363 we don't need it).
10364 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10365 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10366 * lib/subpipe.c: Include "unistd-safer.h".
10367 (create_subpipe): Make sure all the newly-created
10368 file descriptors are > 2, so that diagnostics don't
10369 get sent down them (which might cause Bison to hang, in theory).
10370 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10371 * src/files.c (xfopen): Use fopen_safer, not fopen.
10372
10373 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10374 yesterday's yacc.c fix.
10375
10376 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10377
10378 * data/glr.c, data/lalr1.cc: Update copyright date.
10379
10380 Fix a destructor bug reported by Wolfgang Spraul in
10381 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10382 * data/yacc.c (yyabortlab): Don't call destructor, and
10383 don't set yychar to EMPTY.
10384 (yyoverflowlab): Don't call destructor.
10385 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10386 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10387 since we no longer output the message "discarding lookahead token
10388 end of input ()".
10389
10390 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10391
10392 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10393 fix a small glitch in debugging output.
10394 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10395 after YY_SYMBOL_PRINT where needed.
10396
10397 (struct yyGLRState): Add some comments.
10398 (struct yySemanticOption): Add some comments.
10399 (union yyGLRStackItem): Add comment.
10400
10401 (yymergeOptionSets): Correct this to properly perform the union,
10402 avoiding infinite reported by Michael Rosien.
10403 Update comment.
10404
10405 * tests/glr-regression.at: Add test for GLR merging error reported
10406 by M. Rosien.
10407
10408 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10409
10410 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10411 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10412 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10413 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10414 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10415 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10416 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10417 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10418 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10419 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10420 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10421 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10422 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10423 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10424 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10425 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10426 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10427 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10428 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10429 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10430 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10431 src/output.h, src/parse-gram.c, src/parse-gram.h,
10432 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10433 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10434 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10435 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10436 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10437 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10438 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10439 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10440 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10441 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10442 tests/reduce.at, tests/regression.at, tests/sets.at,
10443 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10444 Update FSF postal mail address.
10445
10446 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10447
10448 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10449 Problem reported by Ralf Menzel.
10450
10451 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10452
10453 * tests/actions.at: Test that stack overflow invokes destructors.
10454 From Marcus Holland-Moritz.
10455 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10456 from here....
10457 (yyreturn): to here. That way, destructors are called properly
10458 even if the stack overflows, or the user calls YYACCEPT or
10459 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10460 (yyoverflowlab): Destroy the lookahead.
10461
10462 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10463
10464 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10465
10466 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10467
10468 * NEWS: Bison-generated C parsers no longer quote literal strings
10469 associated with tokens.
10470 * src/output.c (prepare_symbols): Don't escape strings,
10471 since users don't want to see C escapes.
10472 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10473 in diagnostics.
10474 * tests/input.at (Torturing the Scanner): Likewise.
10475 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10476
10477 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10478
10479 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10480 the data size is known to be too small and we can't increase it.
10481 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10482
10483 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10484
10485 * src/parse-gram.y: Include quotearg.h.
10486 (string_as_id): Quote $1 before using it as a key, since the
10487 lexer no longer quotes it for us.
10488 (string_content): Don't strip quotes, since lexer no longer
10489 quotes it for us.
10490 * src/scan-gram.l: Include quotearg.h.
10491 ("\""): Omit quote.
10492 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10493 a key, since the rest of the lexer doesn't quote it.
10494 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10495 * tests/regression.at (Token definitions): Check for backslashes
10496 in token strings.
10497
10498 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10499 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10500 (yyparse): Revamp code to generate long syntax error message, to
10501 make it easier to translate, and to avoid problems with arithmetic
10502 overflow. Change "virtual memory" to "memory" in diagnostic, since
10503 we don't know whether the memory is virtual.
10504
10505 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10506
10507 * NEWS: Bison-generated C parsers now use the _ macro to
10508 translate strings.
10509 * data/yacc.c (_) [!defined _]: New macro.
10510 All English strings wrapped inside this macro.
10511 * doc/bison.texinfo (Bison Parser): Document _.
10512 * po/POTFILES.in: Include src/parse-gram.c, since it now
10513 includes translateable strings that parse-gram.y doesn't.
10514
10515 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10516
10517 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10518 reverting the 2004-10-11 change to this function.
10519 (symbol_check_alias_consistency): Don't call symbol_type_set
10520 if the type name is already correct.
10521 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10522
10523 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10524
10525 * tests/regression.at (Token definitions): Don't use a token named
10526 c, as that generates a "#define c ..." that runs afoul of buggy
10527 stdlib.h that uses the identifier c as a member of struct
10528 drand48_data. Problem reported by Horst Wente.
10529
10530 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10531
10532 * bootstrap: Change translation URL from
10533 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10534 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10535 redirection glitches. Problem reported by twlevo@xs4all.nl.
10536
10537 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10538
10539 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10540 after operands; POSIX says this isn't portable for the c99 command.
10541
10542 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10543
10544 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10545 immediately if a data overrun has occurred; this may help us track
10546 down what may be a spurious failure on MacOS.
10547
10548 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10549
10550 Respond to problems reported by twlevo@xs4all.nl.
10551
10552 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10553
10554 * src/vcg.h: Comment fix.
10555 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10556 (G_CMAX): Change to -1 instead of INT_MAX.
10557
10558 * data/yacc.c (yyparse): Omit spaces before #line.
10559
10560 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10561
10562 * src/tables.c (state_number_to_vector_number): Put it inside an
10563 "#if 0", since it's not currently used. Problem reported by
10564 Roland McGrath.
10565
10566 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10567
10568 * src/output.c (escaped_output): Renamed from
10569 escaped_file_name_output, since we now use it for symbol tags as
10570 well. All uses changed.
10571 (symbol_destructors_output, symbol_printers_output):
10572 Escape symbol tags too.
10573 Problem reported by Matyas Forstner in
10574 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10575
10576 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10577 not needed.
10578 * src/output.c (user_actions_output, token_definitions_output,
10579 symbol_destructors_output, symbol_printers_output): Likewise.
10580 * src/reader.c (prologue_augment): Likewise.
10581 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10582
10583 * src/vcg.c (output_edge): Don't quote linestyle arg.
10584 Problem reported by twlevo@xs4all.nl.
10585
10586 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10587
10588 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10589 example, reported by Derek M Jones. Also, make the example even
10590 more outrageous, to better illustrate how bad the problem is.
10591
10592 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10593
10594 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10595 putsym. Typo reported by Sebastian Piping.
10596
10597 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10598
10599 * doc/bison.texinfo (Language and Grammar): some -> same
10600 (Epilogue): int he -> in the
10601 Typos reported by Sebastian Piping via Justin Pence.
10602
10603 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10604
10605 * tests/glr-regression.at (Improper handling of embedded actions
10606 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10607 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10608 with dollar signs in test names.
10609 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10610 for a similar reason.
10611
10612 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10613
10614 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10615 wants to redefine G_VIEW.
10616
10617 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10618
10619 * src/vcg.c (get_view_str): Remove case for normal_view.
10620 Problem reported by twlevo@xs4all.nl.
10621
10622 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10623
10624 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10625 Problem reported by twlevo@xs4all.nl.
10626
10627 * doc/bison.texinfo: Change @dircategory from "GNU programming
10628 tools" to "Software development". Requested by Richard Stallman
10629 via Karl Berry.
10630
10631 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10632
10633 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10634 Problem reported by twlevo@xs4all.nl.
10635
10636 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10637
10638 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10639 keyword; it's not needed with modern compilers, and it doesn't
10640 affect correctness with older compilers. Suggested by
10641 twlevo@xs4all.nl.
10642
10643 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10644
10645 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10646 gcc -Wswitch-default.
10647 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10648 * data/yacc.c (yyparse): Likewise.
10649
10650 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10651
10652 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10653 already. Let config.h define any nonstandard values.
10654
10655 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10656
10657 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10658 for the benefit of slower hosts. Problem reported by
10659 Nelson H. F. Beebe.
10660
10661 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10662
10663 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10664 being defined and not used.
10665 * data/lalr1.cc (yyparse): Likewise.
10666 Use "if (false)" rather than "if (0)".
10667
10668 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10669
10670 * TODO: Mention that we should allow NUL bytes in tokens.
10671
10672 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10673
10674 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10675 Problem reported by Hans Aberg.
10676
10677 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10678
10679 * src/getargs.c (version): Happy new year; update overall
10680 program copyright date from 2004 to 2005.
10681
10682 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10683 Problem reported by Hans Aberg.
10684 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10685 (Output file names.): Add a test for the case when standard output
10686 is closed.
10687
10688 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10689
10690 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10691 to fix an oversight in the Bison 2.0 manual.
10692
10693 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10694
10695 * NEWS: Version 2.0. Reformat the existing news items since
10696 1.875, so that related items are grouped together.
10697 * configure.ac (AC_INIT): Bump version to 2.0.
10698 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10699
10700 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10701 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10702 otherwise, we're not testing alloca. Unfortunately there's no
10703 simple way to consult HAVE_ALLOCA here.
10704
10705 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10706 for yymsg, too.
10707
10708 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10709 hand. This avoids a warning about comparing int to size_t when
10710 GCC warnings are enabled.
10711
10712 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10713
10714 * NEWS: Bison-generated parsers no longer default to using the
10715 alloca function (when available) to extend the parser stack, due
10716 to widespread problems in unchecked stack-overflow detection.
10717 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10718 responsibility to set it to a positive value. This lets the user
10719 specify a value that is not a preprocessor constant.
10720 * data/yacc.c (YYMAXDEPTH): Likewise.
10721 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10722 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10723 to be a compile-time constant. However, explain the constraints on it.
10724 Also, explain the constraints on YYINITDEPTH.
10725 (Table of Symbols): Explain that alloca is no longer the default.
10726 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10727 to 1.
10728
10729 * doc/bison.texinfo (Location Default Action): Mention that n must
10730 be zero when k is zero. Suggested by Frank Heckenbach.
10731
10732 2004-12-22 Akim Demaille <akim@epita.fr>
10733
10734 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10735 (parser::state_type, parser::semantic_type, parser::location_type):
10736 Private, not public.
10737 (parser::parse): Return ints, not bool.
10738 Returning a bool introduces a problem: 0 corresponds to false, and
10739 it seems weird to return false on success. Returning true changes
10740 the conventions for yyparse.
10741 Alternatively we could return void and send an exception.
10742 There is no clear consensus (yet?).
10743 (state_stack, semantic_stack, location_stack): Rename as...
10744 (state_stack_type, semantic_stack_type, location_stack_type): these.
10745 Private, not public.
10746 * tests/c++.at: New.
10747 * tests/testsuite.at, tests/Makefile.am: Adjust.
10748
10749 2004-12-21 Akim Demaille <akim@epita.fr>
10750
10751 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10752
10753 2004-12-21 Akim Demaille <akim@epita.fr>
10754
10755 Don't impose std::string for filenames.
10756
10757 * data/lalr1.cc (b4_filename_type): New.
10758 (position::filename): Use it.
10759 (parser.hh): Move the inclusion of stack.hh and location.hh below
10760 the user code, so that needed headers for the filename type can be
10761 included first.
10762 Forward declare them before the user code.
10763 * tests/Makefile.am (check-local, installcheck-local): Pass
10764 TESTSUITEFLAGS to the TESTSUITE.
10765
10766 2004-12-20 Akim Demaille <akim@epita.fr>
10767
10768 Use more STL like names: my_class instead of MyClass.
10769
10770 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10771 (SemanticStack, SemanticType, StateStack, StateType)
10772 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10773 (Parser::value): Rename as...
10774 (location_stack, location_type, rhs_number_type, semantic_stack)
10775 (semantic_type, state_stack, state_type, token_number_type, stack)
10776 (slice, traits, parser::yylloc, parser::yylval): these.
10777
10778 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10779
10780 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10781
10782 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10783 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10784
10785 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10786
10787 Remove uses of 'short int' and 'unsigned short int'. This raises
10788 some arbitrary limits. It uses more memory but nowadays that's
10789 not much of an issue.
10790
10791 This change does not affect the generated parsers; that's a different
10792 task, as some users will want to conserve memory there.
10793
10794 Ideally we should use size_t to represent all object counts, and
10795 something like ptrdiff_t to represent signed differences of object
10796 counts; but that will require more code-cleanup than I have the
10797 time to do right now.
10798
10799 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10800 Use size_t, not int or short int, to count objects.
10801 * src/closure.c (nritemset, closure): Likewise.
10802 * src/closure.h (nritemset, closure): Likewise.
10803 * src/nullable.c (nullable_compute): Likewise.
10804 * src/print.c (print_core): Likewise.
10805 * src/print_graph.c (print_core): Likewise.
10806 * src/state.c (state_compare, state_hash): Likewise.
10807 * src/state.h (struct state): Likewise.
10808 * src/tables.c (default_goto, goto_actions): Likewise.
10809
10810 * src/gram.h (rule_number, rule): Use int, not short int.
10811 * src/output.c (prepare_rules): Likewise.
10812 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10813 errs, reductions): Likewise.
10814 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10815 Likewise.
10816 * src/tables.c (vector_number, tally, action_number,
10817 ACTION_NUMBER_MINIMUM): Likewise.
10818 * src/output.c (muscle_insert_short_int_table): Remove.
10819
10820 2004-12-17 Akim Demaille <akim@epita.fr>
10821
10822 * data/lalr1.cc: Extensive Doxygenation.
10823 (error_): Rename as...
10824 (error): this, since it is visible to the user.
10825 Adjust callers.
10826 (Parser::message): Now an automatic variable from...
10827 (Parser::yyreport_syntax_error_): here.
10828 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
10829 Parser::error.
10830 * tests/input.at: Escape $.
10831
10832 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
10833
10834 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
10835 Parenthesize rhs to avoid obscure problems with mistakes like
10836 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
10837 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10838 b4_rhs_location): Likewise.
10839 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10840 b4_rhs_location): Likewise.
10841
10842 2004-12-16 Akim Demaille <akim@epita.fr>
10843
10844 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
10845 yacc.c: be sure to stay within yycheck_.
10846 * tests/actions.at: Re-enable C++ tests.
10847
10848 2004-12-16 Akim Demaille <akim@epita.fr>
10849
10850 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
10851 real.
10852
10853 2004-12-16 Akim Demaille <akim@epita.fr>
10854
10855 Use #define to handle the %name-prefix.
10856
10857 * data/glr.c, data/yacc.c: Comment changes.
10858 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
10859 so that one can refer to yylex in the parser file, and have it
10860 renamed, as is the case with other skeletons.
10861
10862 2004-12-16 Akim Demaille <akim@epita.fr>
10863
10864 Move lalr1.cc internals into yy*.
10865
10866 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
10867 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
10868 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
10869 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
10870 (empty_, final_, terror_, errcode_, ntokens_)
10871 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
10872 (looka_, ilooka_, error_range_, nerrs_):
10873 Rename as...
10874 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
10875 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
10876 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
10877 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
10878 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
10879 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
10880 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
10881 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
10882 these.
10883
10884 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
10885
10886 Fix some problems reported by twlevo at xs4all.
10887 * src/symtab.c (symbol_new): Report an error if the input grammar
10888 contains too many symbols. This is better than calling abort() later.
10889 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
10890 (struct node, struct graph):
10891 Rename member expand to stretch. All uses changed.
10892 (struct graph): Remove member layoutalgorithm. All uses removed.
10893 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
10894 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
10895 All uses changed.
10896 (N_STRETCH): Rename from N_EXPAND. All uses changed.
10897
10898 2004-12-15 Akim Demaille <akim@epita.fr>
10899
10900 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
10901 Add more Doxygen comments.
10902 (symprint_, stack_print_, reduce_print_, destruct_, pop)
10903 (report_syntax_error_, translate_): Rename as...
10904 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
10905 (yypop_, yyreport_syntax_error_, yytranslate_): this.
10906
10907 2004-12-15 Akim Demaille <akim@epita.fr>
10908
10909 * data/lalr1.cc (lex_): Rename as...
10910 (yylex_): this.
10911 Move the trace here.
10912 Take the %name-prefix into account.
10913 Reported by Alexandre Duret-Lutz.
10914
10915 2004-12-15 Akim Demaille <akim@epita.fr>
10916
10917 Simplify the C++ parser constructor.
10918
10919 * data/lalr1.cc (debug_): Rename as...
10920 (yydebug_): so that the parser's internals are always in the yy*
10921 pseudo namespace.
10922 Adjust uses.
10923 (b4_parse_param_decl): Remove the leading comma as it is now only
10924 called as unique argument list.
10925 (Parser::Parser): Remove the constructor accepting a location and
10926 an initial debugging level.
10927 Remove from the other ctor the argument for the debugging level.
10928 (debug_level_type, debug_level, set_debug_level): New.
10929
10930 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
10931 constructor calls.
10932
10933 2004-12-15 Akim Demaille <akim@epita.fr>
10934
10935 Remove b4_root related material: failure experiment
10936 (which goal was to allow to derive from a class).
10937
10938 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
10939 definitions and uses.
10940
10941 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
10942
10943 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
10944 not 2, since it's not portable to subtract 1 from the start of an
10945 array. The new item 0 is never set or used. All uses changed.
10946
10947 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
10948 the default definition of YYLLOC_DEFAULT. Problem reported
10949 by Frank Heckenbach.
10950
10951 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
10952
10953 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
10954 the normal case and one for the error case. Just use the
10955 first one uniformly. Problem reported by Frank Heckenbach.
10956 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
10957 use exactly the same macro in both places.
10958 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
10959 so that the normal-case YYRHSLOC works for the error case too.
10960 All uses changed.
10961 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
10962 (YYLLOC_DEFAULT): Use the same macro as glr.c.
10963 * doc/bison.texinfo (Location Default Action): Don't claim that
10964 we have an array of locations. Use the same macro for both glr
10965 and lalr parsers. Mention YYRHSLOC. Mention what happens when
10966 the index is 0.
10967
10968 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10969
10970 * HACKING: Update email addresses to send announcements to.
10971
10972 * configure.ac (AC_INIT): Bump version to 1.875f.
10973
10974 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10975
10976 * NEWS: Version 1.875e.
10977 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
10978
10979 * src/scan-skel.l: Include "complain.h", for "fatal".
10980
10981 * src/relation.h (relation_print, relation_digraph):
10982 Relation sizes are of type relation_node, not size_t (this is
10983 merely a doc fix, since the two types are equivalent).
10984 (relation_transpose): Relation sizes are of type relation_node,
10985 not int.
10986 * src/relation.c: Likewise.
10987 (top, infinity): Now of type relation_node, not int.
10988 (traverse, relation_transpose): Use relation_node, not int.
10989
10990 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10991 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10992 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10993
10994 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10995 specifying whether the test should be skipped. Use it tp
10996 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10997 fail on some hosts, and should be skipped.
10998
10999 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11000
11001 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11002 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11003 unless otherwise specified below.
11004
11005 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11006 to allocate kernel_base, kernel_items, kernel_size, since
11007 they needn't be initialized to 0.
11008 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11009 * src/closure.c (new_closure): Likewise, for itemset.
11010 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11011 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11012 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11013 (build_relations): Likewise for edge, states1, includes.
11014 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11015 * src/reader.c (packgram): Likewise, for ritem, rules.
11016 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11017 * src/relation.c (relation_digraph): Likewise for VERTICES.
11018 (relation_transpose): Likewise for new_R, end_R.
11019 * src/symtab.c (symbols_token_translations_init): Likewise for
11020 token_translations.
11021 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11022 (token_actions): Likewise for yydefact, actrow, conflrow,
11023 conflict_list.
11024 (save_column): Likewise for froms[symno], tos[symno].
11025 (goto_actions): Likewise for state_count.
11026 (pack_table): Likewise for base, pos, check.
11027 (tables_generate): Likewise for width.
11028
11029 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11030 for initial core. Just have a separate core, so we needn't worry
11031 about whether kernel_size and kernel_base are initialized.
11032
11033 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11034 kernel_size, kernel_items): Remove unnecessary initialization.
11035 * src/conflicts.c (conflicts): Likewise.
11036 * src/derives.c (derives): Likewise.
11037 * src/muscle_tablc (muscle_insert): Likewise.
11038 * src/relation.c (relation_digraph): Likewise.
11039 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11040 conflrow, conflict_table, conflict_list, table, check):
11041 Likewise.
11042
11043 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11044 This is because all callers pass unsigned int.
11045 * src/closure.h (new_closure): Likewise.
11046
11047 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11048 (build_relations): Initialize includes[i] in all cases.
11049 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11050 and rules[ruleno].precsym. Initialize members in order.
11051 * src/relation.c (relation_transpose): Always initialize new_R[i]
11052 and end_R[i].
11053 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11054
11055 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11056 conflict_list[0] was always 0, but now it isn't initialized.
11057
11058 * src/table.c (table_grow): When conflict_table grew, the grown
11059 area wasn't cleared. Fix this.
11060
11061 * lib/.cvsignore: Add strdup.c, strdup.h.
11062 * m4/.cvsignore: Add strdup.m4.
11063
11064 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11065
11066 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11067 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11068 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11069 ngotos + 1 without checking for overflow.
11070 (build_relations): Use END_NODE, not -1, to denote end of edges.
11071 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11072 build_relations): Use goto_number, not int, for goto numbers.
11073 * src/tables.c (save_column, default_goto): Likewise.
11074
11075 2004-11-23 Akim Demaille <akim@epita.fr>
11076
11077 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11078 of #defining from yystype.
11079 Don't typedef yystype, C++ does not need it.
11080 This lets it possible to forward declare it as union.
11081
11082 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11083
11084 * bootstrap (gnulib_modules): Add extensions.
11085 Problem reported by Jim Meyering.
11086
11087 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11088
11089 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11090 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11091 src/system.h, src/tables.c: XFREE -> free, to accommodate
11092 recent change to gnulib xalloc.h.
11093 Problem reported by Jim Meyering.
11094
11095 2004-11-17 Akim Demaille <akim@epita.fr>
11096
11097 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11098
11099 2004-11-17 Akim Demaille <akim@epita.fr>,
11100 Alexandre Duret-Lutz <adl@gnu.org>
11101
11102 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11103 changes.
11104 (YYCDEBUG): Adjust.
11105 Use it instead of cdebug_.
11106 (Parser::debug_stream, Parser::set_debug_stream): New.
11107 (Parser::symprint_): Define cdebug_ for temporary backward
11108 compatibility.
11109 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11110 debug_stream ().
11111
11112 2004-11-17 Akim Demaille <akim@epita.fr>
11113
11114 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11115 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11116 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11117 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11118
11119 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11120
11121 * data/glr.c (yyloc_default): Remove; not used.
11122 Problem reported by Frank Heckenbach.
11123
11124 2004-10-25 Akim Demaille <akim@epita.fr>
11125
11126 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11127 Introduce another definition to address simple location arrays.
11128 (yyGLRStack): New member: yyerror_range.
11129 (yyrecoverSyntaxError, yyparse): Update it.
11130 (yyrecoverSyntaxError): Use it when shifting the error token to
11131 have an accurate range, equivalent to the one computed by both
11132 yacc.c and lalr1.cc.
11133 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11134 that column numbers start at column 0, as per GNU Coding
11135 Standards, the others tests, and the doc.
11136 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11137 Adjust to the above change (first column is 0).
11138 And adjust the location of the "<error>", now covering the whole
11139 line.
11140
11141 2004-10-22 Akim Demaille <akim@epita.fr>
11142 and Paul Eggert <eggert@cs.ucla.edu>
11143
11144 Remove some arbitrary limits on goto numbers and relations.
11145 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11146 initial values, since they're never used.
11147 (set_goto_map): ngotos is now unsigned, so test for overflow
11148 by seeing whether it wraps around to zero.
11149 * src/lalr.h (goto_number): Now size_t, not short int.
11150 (GOTO_NUMBER_MAXIMUM): Remove.
11151 * src/relation.c (relation_print, traverse, relation_transpose):
11152 Check for END_NODE rather than looking at sign.
11153 * src/relation.h (END_NODE): New macro.
11154 (relation_node): Now size_t, not short int.
11155
11156 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11157
11158 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11159 keyword, not an identifier. Problem reported by Baron Schwartz in
11160 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11161
11162 2004-10-11 Akim Demaille <akim@epita.fr>
11163
11164 * src/symtab.c (symbol_check_alias_consistency): Also check
11165 type names, destructors, and printers.
11166 Reported by Alexandre Duret-Lutz.
11167 Recode the handling of associativity and precedence in terms
11168 of symbol_precedence_set.
11169 Accept no redeclaration at all, not even equal to the previous
11170 value.
11171 (redeclaration): New.
11172 Use it to factor redeclaration complaints.
11173 (symbol_make_alias): Don't set the type of the alias, let
11174 symbol_check_alias_consistency do it as for other features.
11175 * src/symtab.h (symbol): Add new member prec_location, and
11176 type_location.
11177 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11178 * tests/input.at (Incompatible Aliases): New.
11179
11180 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11181
11182 .cvsignore fixes to accommodate gnulib changes,
11183 and the practice of naming build directories "_build".
11184 * .cvsignore: Add "_*". Sort.
11185 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11186 * m4/.cvsignore: Add "*_gl.m4".
11187
11188 2004-10-06 Akim Demaille <akim@epita.fr>
11189
11190 * src/parse-gram.y (add_param): Fix the truncation of trailing
11191 spaces.
11192
11193 2004-10-05 Akim Demaille <akim@epita.fr>
11194
11195 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11196 whether the reducion was empty or not. This leaves room to
11197 improve the use of YYLLOC_DEFAULT in such a case.
11198 lalr1.cc is still experimental, so changing this is acceptable.
11199 And finally, there are probably not many users who changed the
11200 handling of locations in GLR, so changing is admissible too.
11201
11202 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11203 empty reduction, set @$ to an empty location ending the previously
11204 stacked symbol.
11205 Adjust uses to make sure the code is triggered on empty
11206 reductions.
11207 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11208 expected output: empty reductions have empty locations.
11209
11210 2004-09-29 Akim Demaille <akim@epita.fr>
11211
11212 * data/lalr1.cc: Move towards a more standard C++ coding style
11213 for templates: Class < T > -> Class<T>.
11214
11215 2004-09-29 Akim Demaille <akim@epita.fr>
11216
11217 * data/lalr1.cc: Reinstall the former ctor, for sake of
11218 compatibility, but warn it will be removed.
11219 Move towards a more standard C++ coding style (i.e., type *var ->
11220 type* var).
11221
11222 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11223
11224 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11225 since it's less likely to work if NULs are involved in the future.
11226
11227 2004-09-27 Akim Demaille <akim@epita.fr>
11228
11229 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11230
11231 2004-09-27 Akim Demaille <akim@epita.fr>
11232
11233 * data/lalr1.cc (b4_parse_param_decl_1): New.
11234 (b4_parse_param_decl): Use it to have different names between attribute
11235 and argument names.
11236 (b4_cc_constructor_call): Likewise.
11237
11238 2004-09-24 Akim Demaille <akim@epita.fr>
11239
11240 * src/parse-gram.y (add_param): Strip the leading and trailing
11241 blanks from a formal argument declaration.
11242 (YY_LOCATION_PRINT): New.
11243
11244 2004-09-24 Akim Demaille <akim@epita.fr>
11245
11246 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11247 after the location.
11248
11249 2004-09-24 Akim Demaille <akim@epita.fr>
11250
11251 * doc/bison.texinfo (Table of Symbols): Sort.
11252
11253 2004-09-21 Akim Demaille <akim@epita.fr>
11254
11255 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11256 the useless parentheses.
11257 Suggested by Paul Eggert.
11258
11259 2004-09-20 Akim Demaille <akim@epita.fr>
11260
11261 Let the initial-action act on the look-ahead, and use it for the
11262 "initial push" (corresponding to an hypothetical beginning-of-file).
11263 And let lalr1.cc honor %initial-action.
11264
11265 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11266 example.
11267 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11268 (Parser::Parser): Remove the ctor that used to initialize it.
11269 (Parser::parse): Like in the other skeletons, issue the "starting
11270 parse" message before any action.
11271 Honor %initial-action.
11272 Initialize the stacks with the lookahead.
11273 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11274 look-ahead.
11275 Push them in the stacks.
11276 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11277
11278 2004-09-20 Akim Demaille <akim@epita.fr>
11279
11280 * doc/bison.texinfo (Initial Action Decl): New.
11281
11282 2004-09-20 Akim Demaille <akim@epita.fr>
11283
11284 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11285 clearer criterion to define it.
11286 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11287 When reducing on an empty RHS, use the latest stacked location as
11288 location.
11289 yylloc is not always available.
11290 * data/glr.c: Likewise.
11291 Also, honor initial-actions.
11292
11293 2004-09-20 Akim Demaille <akim@epita.fr>
11294
11295 * data/yacc.c (YY_LOCATION_PRINT): New.
11296 Define when we know YYLTYPE's structure, i.e., when the default
11297 YYLLOC_DEFAULT is used.
11298 * data/c.m4 (b4_yysymprint_generate): Use it.
11299 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11300 value of the result.
11301 (error_start_): Replace with...
11302 (error_range_): this location array.
11303 This allows to replace code relying on the implementation of
11304 locations by portable code.
11305 * data/yacc.c (yylerrsp): Replace with...
11306 (yyerror_range): this.
11307 Every time a token is popped, update yyerror_range[0], to have an
11308 accurate location for the error token.
11309 * data/glr.c (YY_LOCATION_PRINT): New.
11310 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11311 deference a pointer.
11312 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11313 report the location in %printers.
11314
11315 * src/scan-skel.l: Instead of abort, report error messages to ease
11316 understanding skeleton scanning failures.
11317
11318 2004-09-16 Akim Demaille <akim@epita.fr>
11319
11320 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11321 (iterator, const_iterator): these, to be more in the C++ spirit.
11322 Also, return reverse iterators so that when displaying the stack
11323 we display its bottom first.
11324 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11325 from yacc.c.
11326 We should probably use vector here though.
11327
11328 2004-09-16 Akim Demaille <akim@epita.fr>
11329
11330 Have more complete shift traces.
11331
11332 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11333 to report Shifts instead of ad hoc YYDPRINTF invocations,
11334 including for the error token.
11335 * data/lalr1.cc (symprint_): Output the location.
11336 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11337 output the location within the %printer.
11338 Activate GLR tests, at least to make sure they compile properly.
11339 They still don't pass though.
11340 * tests/calc.at: Adjust expect verbose output, since now "Entering
11341 state..." is on a different line than the "Shifting" message.
11342
11343 2004-09-08 Akim Demaille <akim@epita.fr>
11344
11345 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11346 Bison directive from the Bison file to the invocation of this
11347 macro, so that these directives are passed to
11348 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11349 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11350 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11351 the extra Bison directives instead of the whole series.
11352 Change the grammar so that there are recoverable errors, and
11353 unrecoverable errors. Now we can have the parser give up before
11354 consuming the whole input. As a result we now can observe that
11355 the lookahead is freed when needed.
11356 Change the parser source to parse argv[1] instead of a hard coded
11357 string.
11358 Simplify yylex, and give a value and location to EOF.
11359 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11360 passed directives already coded in the file.
11361 Add some tests to check the location of "error".
11362 For some tests, the C++ parser is correct, and not yacc.c.
11363 For other tests, they provide different, but unsatisfying, values,
11364 so keep the C++ value so that at least one parser is "correct"
11365 according to the test suite.
11366 (Actions after errors): Remove, this is subsumed by the
11367 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11368
11369 2004-09-06 Akim Demaille <akim@epita.fr>
11370
11371 * data/lalr1.cc: Adjust the indentation of the labels.
11372 (Parser::pop): New.
11373 Use it.
11374
11375 2004-09-06 Akim Demaille <akim@epita.fr>
11376
11377 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11378 argument, an informative message.
11379 Call YY_SYMBOL_PRINT.
11380 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11381 * data/lalr1.cc (destruct_): Likewise.
11382 In addition, no longer depend on b4_yysymprint_generate and
11383 b4_yydestruct_generate to generate these functions, do it "by
11384 hand".
11385
11386 2004-09-03 Akim Demaille <akim@epita.fr>
11387
11388 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11389 invoked, yydestruct the lookahead.
11390 * tests/calc.at (Calculator $1): Update the expected lengths of
11391 traces: there is an added line for the discarded lookahead.
11392 * doc/bison.texinfo (Destructor Decl): Some rewording.
11393 Define "discarded" symbols.
11394
11395 2004-09-02 Akim Demaille <akim@epita.fr>
11396
11397 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11398
11399 2004-09-02 Akim Demaille <akim@epita.fr>
11400
11401 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11402 (YYDSYMPRINTF): Rename as...
11403 (YY_SYMBOL_PRINT): this.
11404 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11405 two.
11406 Use it instead of direct symprint_ calls.
11407 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11408 one.
11409
11410 2004-09-02 Akim Demaille <akim@epita.fr>
11411
11412 * data/lalr1.cc (b4_yysymprint_generate): New.
11413 (symprint_): New member function, defined when YYDEBUG.
11414 Use it consistently instead of token/nterm debugging output by
11415 hand.
11416 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11417 %printer calls to use cdebug_ when using lalr1.cc.
11418
11419 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11420
11421 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11422 with #ifdef YYDEBUG.
11423
11424 2004-08-26 Akim Demaille <akim@epita.fr>
11425
11426 * doc/bison.texinfo (Implementing Loops): Rename as...
11427 (Implementing Gotos/Loops): this.
11428
11429 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11430
11431 Adjust to latest gnulib.
11432 * bootstrap (gnulib_modules): Add xalloc-die.
11433 Set LC_ALL=C so that file names sort consistently.
11434 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11435 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11436 uintmax_t.m4, ulonglong.m4.
11437 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11438 po.m4 since we are now using _gl.m4 instead.
11439
11440 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11441
11442 * src/scan-action.l: Remove. Scanning of semantic actions is
11443 handled in scan-gram.l.
11444
11445 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11446
11447 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11448
11449 * src/location.h (struct): The file member is a uniqstr.
11450 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11451
11452 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11453
11454 Fix bug with non-%union parsers that have printers or destructors,
11455 which led to a Bison core dump. Reported by Peter Fales in
11456 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
11457
11458 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11459 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11460 not to our own type.
11461 * src/output.c (symbol_destructors_output, symbol_printers_output):
11462 Don't assume %union.
11463 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11464 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11465 UNION-FLAG. All callers changed.
11466 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11467 Use type char, not unsigned int, when declaring an array of char;
11468 this lets us remove a cast.
11469 (Printers and Destructors): Add non-%union test cases.
11470
11471 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11472
11473 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11474 GLR writeups. E.g., avoid frenchspacing and the future tense,
11475 change "lookahead" to "look-ahead", and change "wrt" to "with
11476 respect to".
11477
11478 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11479
11480 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11481 New sections, split off from the GLR Parsers section. Put the new
11482 Simple GLR Parser near the start of the GLR section, for clarity.
11483 Rewrite connective text.
11484
11485 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
11486
11487 * doc/bison.texinfo (Simple GLR Parsers): New section.
11488
11489 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11490
11491 * NEWS, TODO, doc/bison.texinfo:
11492 Use "look-ahead" instead of "lookahead", to be consistent.
11493 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11494 while we're fixing "look-ahead".
11495 * src/conflicts.c (shift_set): Renamed from shiftset.
11496 (look_ahead_set): Renamed from lookaheadset.
11497 * src/print.c: Likewise.
11498 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11499 name for "lookahead".
11500 (report_types, usage): Likewise.
11501 * src/getargs.h (report_look_ahead_tokens): Renamed from
11502 report_lookaheads.
11503 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11504 compute_lookaheads.
11505 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11506 (look_ahead_tokens_print): Renamed from lookaheads_print.
11507 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11508 state_rule_lookaheads_print.
11509 * src/state.h: Likewise.
11510 (reductions.look_ahead_tokens): Renamed from lookaheads.
11511 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11512 AT_DATA_LOOKAHEADS_GRAMMAR.
11513
11514 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11515
11516 * README: Update location of patched M4 distribution.
11517
11518 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11519
11520 Don't assume the C++ compiler takes the same arguments as the C compiler
11521 (trivial change).
11522 * configure.ac (O0CXXFLAGS): New var.
11523 * tests/atlocal.in (CXXFLAGS): Use it.
11524
11525 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11526
11527 Fix some "make check" problems with C++ reported by
11528 Albert Chin-A-Young for Tru64 C++ in this thread:
11529 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11530
11531 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11532 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11533 Output to a .cc file for C++, not to a .c file.
11534 * tests/calc.at (AT_CHECK_CALC): Likewise.
11535 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11536 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11537
11538 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11539
11540 * tests/calc.at, tests/actions.at: Workaround for SGI
11541 C++ compiler. (trivial change)
11542
11543 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11544
11545 Spent a few hours checking out which prerequisite versions the
11546 current sources actually require. I went all the way back to
11547 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11548 a seemingly endless set of combinations of versions more recent
11549 than that. The bottom line is that the current sources require
11550 fairly recent versions of the build tools, and it'll be some work
11551 to change this.
11552 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11553 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11554 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11555 Add comments explaining why those particular versions are
11556 currently needed.
11557
11558 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11559 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
11560 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
11561
11562 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11563 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11564
11565 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11566
11567 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11568 0.11.5. Suggested by Bruno Haible.
11569 * bootstrap: Remove gettext version checking.
11570
11571 * doc/bison.texinfo (Decl Summary): Also mention that %union
11572 can depend on prerequisite types. Problem reported by Tim
11573 Van Holder.
11574
11575 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11576
11577 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11578 * README-alpha: Don't tell people not to package this.
11579
11580 * bootstrap: Don't assume $(...) works; use `...` instead.
11581 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11582 gettext better.
11583
11584 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11585 put into the -d output file, and mention what to do if YYSTYPE is
11586 defined as a macro.
11587
11588 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11589
11590 Undo change made earlier today: it caused autopoint to not bring
11591 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11592 autopoint's.
11593
11594 * bootstrap: Check that gettext version matches what's in
11595 configure.ac. Warn users to ignore robots.txt ERROR 404.
11596 * bootstrap: Undo today's earlier change (logged below).
11597 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
11598
11599 The gettext version checking is causing more trouble than it's
11600 curing; remove it. Problem reported by Paul Hilfinger.
11601
11602 * bootstrap: Issue a warning that one can expect a message
11603 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11604 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11605
11606 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11607
11608 Ensure that the C++ compiler used for testing actually works on a
11609 simple test program; if not, skip the C++-related tests. Problem
11610 reported by Vin Shelton in:
11611 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
11612
11613 * m4/cxx.m4: New file.
11614 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11615 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11616 * tests/local.at (AT_COMPILE_CXX): Use it.
11617
11618 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11619
11620 * data/glr.c (yylloc): Output this macro even if locations are not
11621 being generated, as the GLR parser needs it even in that case.
11622 Problem reported by Troy A. Johnson
11623 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11624
11625 * configure.ac (AC_INIT): Update to 1.875e.
11626
11627 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11628
11629 * NEWS: Version 1.875d.
11630 * configure.ac (AC_INIT): Likewise.
11631 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11632
11633 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11634 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11635 lalr1.cc runs afoul of the first, and the last two are no longer
11636 supported by GCC 3.4.0.
11637 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11638 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11639
11640 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11641
11642 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11643 unsigned int, for compatibility with latest gnulib hash module.
11644 * src/state.c (state_hash, state_hasher): Likewise.
11645 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11646 * src/uniqstr.c (hash_uniqstr): Likewise.
11647
11648 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11649
11650 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11651
11652 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11653 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11654 character and string literals.
11655 (unexpected_end): New function.
11656 (unexpected_eof): Use it.
11657 (unexpected_newline): New function.
11658 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11659 actions.
11660
11661 * NEWS: Document %expect-rr.
11662
11663 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11664 Fix typo by replacing $1 with $option.
11665 Remove more 'intl'-related files.
11666 Don't DEFUN AM_INTL_SUBDIR twice.
11667
11668 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11669 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11670 strtoul.c.
11671 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11672 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11673 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11674 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11675 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11676 * src/.cvsignore: Add *.output.
11677
11678 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11679 gets copied to the output file.
11680
11681 2004-04-28 Paul Eggert <eggert@twinsun.com>
11682
11683 Get files from the gnulib and po repositories, instead of relying
11684 on them being in our CVS. Upgrade to latest versions of gnulib
11685 and Automake.
11686
11687 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11688 * bootstrap: Bootstrap from gnulib and po repositories.
11689 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11690 * README-cvs: Document these changes. Remove version numbers from
11691 mentions of build tools, since they change so often. Mention Flex.
11692
11693 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11694 (gl_USE_SYSTEM_EXTENSIONS): Add.
11695 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11696 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
11697 does this for us.
11698 (AC_ISC_POSIX): Remove; we no longer support this
11699 ancient OS, as it gets in the way of latest Autoconf & gnulib.
11700 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11701 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11702 Do not check for C89 headers, except for locale.h which is used
11703 by the Yacc library and must port to K&R hosts.
11704 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11705 Do not check for C89 functions, except for setlocale which is
11706 used by the Yacc library.
11707 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11708 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11709 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11710 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11711 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11712 AM_GNU_GETTEXT): Remove; now done by:
11713 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11714 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11715 for us.
11716
11717 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11718 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11719 Define to empty, as gnulib.mk will do the rest for us.
11720 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11721 for us.
11722 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11723 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11724
11725 * src/files.c: Include gnulib's xstrndup.h.
11726
11727 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11728 (REALLOC): Use xnrealloc, for likewise.
11729 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11730 (strnlen, memrchr): Remove decls; functions no longer used.
11731 Include <stpcpy.h>.
11732
11733 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11734 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11735 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11736 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11737 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11738 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11739 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11740 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11741 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11742 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11743 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11744 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11745 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11746 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11747 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11748 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11749 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11750 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11751 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11752 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11753 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11754 Remove, as these files are now generated automatically
11755 by bootstrap or automake.
11756
11757 * po/ChangeLog: Remove: all but one entry was a duplicate
11758 of this file, and I moved that 2000-11-02 entry here.
11759
11760 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11761 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11762 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11763 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11764 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11765 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11766 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11767 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11768 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11769 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11770 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11771 xstrndup.h.
11772 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11773 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11774 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11775 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11776 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11777 * src/.cvsignore: Remove *_.c.
11778
11779
11780 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11781 support it. (The latest stable gzip doesn't.)
11782
11783 2004-04-27 Paul Eggert <eggert@twinsun.com>
11784
11785 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11786 case, as stos_ is now used by destructors due to the 2004-02-09
11787 change.
11788
11789 Remove more K&R C support.
11790 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11791 * lib/subpipe.c (errno): Remove decl.
11792 Include <stdlib.h> unconditionally.
11793 (EXIT_FAILURE): Remove macro.
11794 * src/complain.c (vfprintf, strerror): Remove.
11795 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11796 unconditionally.
11797 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11798 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11799 (strchr, strspn, memchr): Remove decls.
11800 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11801 unconditionally. Do not declare perror.
11802 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11803 unconditionally.
11804
11805 * src/complain.c (_): Remove useless defn, as system.h defines this.
11806
11807 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11808 with latest obstack.h.
11809 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11810 to procedure types, as obstack.h now does that for us.
11811 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11812
11813 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11814 so that this include file can stand alone.
11815 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11816 does this now. Include subpipe.h first after config.h, to
11817 test whether it can stand alone.
11818
11819 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11820 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11821 unused declaration.
11822
11823 * tests/synclines.at (%union synch line): Put a dummy member in
11824 the union, because empty unions aren't allowed in C. Caught
11825 by GCC 3.4.0.
11826
11827 2004-04-13 Jim Meyering <jim@meyering.net>
11828
11829 * src/conflicts.c (conflicts_print): Correct format string typo:
11830 use `%%' to produce literal `%'. (trivial change)
11831
11832 2004-03-30 Paul Eggert <eggert@twinsun.com>
11833
11834 * src/getargs.c (version): Update copyright year to 2004.
11835
11836 * data/c.m4 (b4_int_type): Use 'short int' rather than
11837 'short', and similarly for 'long', 'unsigned', etc.
11838 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
11839 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
11840 yy_yypstack, yydumpstack): Likewise.
11841 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
11842 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
11843 Likewise.
11844 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
11845 yy_stack_print, yyparse): Likewise.
11846 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
11847 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
11848 * lib/bitset.c (bitset_print): Likewise.
11849 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
11850 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11851 * lib/bitsetv.c (bitsetv_dump): Likewise.
11852 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
11853 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
11854 Likewise.
11855 * src/LR0.c (allocate_itemsets): Likewise.
11856 * src/gram.h (rule_number, rule): Likewise.
11857 * src/lalr.h (goto_number): Likewise.
11858 * src/nullable.c (nullable_compute): Likewise.
11859 * src/output.c (prepare_rules): Likewise.
11860 * src/relation.c (relation_print, relation_digraph): Likewise.
11861 * src/relation.h (relation_node): Likewise.
11862 * src/state.h (state_number, transitions, errs, reductions,
11863 struct state): Likewise.
11864 * src/symtab.h (symbol_number, struct symbol): Likewise.
11865 * src/tables.c (vector_number, tally, action_number,
11866 default_goto, goto_actions): Likewise.
11867 * tests/existing.at (GNU Cim Grammar): Likewise.
11868 * tests/regression.at (Web2c Actions): Likewise.
11869
11870 * src/output.c (muscle_insert_short_int_table): Renamed from
11871 muscle_insert_short_table. All uses changed.
11872
11873 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11874
11875 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
11876 (declaration): Replace expected_conflicts with expected_sr_conflicts.
11877 Add %expect-rr rule.
11878
11879 * src/scan-gram.l: Recognize %expect-rr.
11880
11881 * src/conflicts.h (expected_sr_conflicts): Rename from
11882 expected_conflicts.
11883 (expected_rr_conflicts): Declare.
11884
11885 * src/conflicts.c (expected_sr_conflicts): Rename from
11886 expected_conflicts.
11887 (expected_rr_conflicts): Define.
11888 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
11889 for GLR parsers.
11890 Use expected_sr_conflicts in place of expected_conflicts.
11891 Warn if expected_rr_conflicts used in non-GLR parser.
11892
11893 * doc/bison.texinfo: Add documentation for %expect-rr.
11894
11895 2004-03-08 Paul Eggert <eggert@gnu.org>
11896
11897 Add support for hex token numbers. Suggested by Odd Arild Olsen in
11898 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
11899
11900 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
11901 in lalr1.cc.
11902 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
11903 * src/scan-gram.l (scan_integer): New function.
11904 ({int}): Use it.
11905 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
11906 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
11907 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
11908 Say "long int", not "long", for uniformity with GNU style.
11909
11910 2004-02-25 Paul Eggert <eggert@twinsun.com>
11911
11912 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
11913 compilers. This fixes a problem with Intel's C++ compiler being
11914 chatty, reported by Guido Trentalancia in
11915 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
11916
11917 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
11918
11919 Support %destructor and merge error locations in lalr1.cc.
11920
11921 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
11922 (Parser::stos_): Define unconditionally.
11923 (Parser::destruct_): New method. Generate its body with
11924 b4_yydestruct_generate.
11925 (Parser::error_start_): New attribute.
11926 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
11927 token which are discarded.
11928 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
11929 error_start_ when erroneous token are discarded.
11930 (Parser::parse) <yyerrlab1>: Compute the location of the error
11931 token so that it covers all the discarded tokens.
11932 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
11933 it can be called with `%skeleton "lalr1.cc"', and do that.
11934
11935 2004-02-02 Paul Eggert <eggert@twinsun.com>
11936
11937 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
11938 $(top_srcdir)/lib and ../lib. This fixes a bug reported
11939 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
11940 There's no need to mention top_builddir since Automake does that
11941 for us.
11942 (INCLUDES): Remove, as Automake says it's obsolescent.
11943 Contents migrated into AM_CPPFLAGS as described above.
11944 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
11945
11946 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11947
11948 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
11949 (yyreportSyntaxError): Handle case where lookahead token is
11950 YYEMPTY.
11951
11952 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11953
11954 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
11955 resulting parsers are compilable with C++.
11956
11957 2003-12-23 Paul Eggert <eggert@twinsun.com>
11958
11959 * config/depcomp, config/install-sh: Sync with Automake 1.8.
11960 * src/output.c (output_skeleton): Rename local var.
11961 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11962 Bison tokens, as this runs afoul of the 2003-10-07 change that
11963 disallowed NUL bytes in character constants or string literals.
11964
11965 * tests/local.at: Require Autoconf 2.59's Autotest.
11966 * tests/testsuite.at: Don't include local.at, since we now assume
11967 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
11968 including it.
11969 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
11970 multiple inclusion warnings.
11971
11972 2003-12-02 Akim Demaille <akim@epita.fr>
11973
11974 * doc/bison.texinfo (How Can I Reset the Parser): More about start
11975 conditions.
11976 From Bruno Haible.
11977
11978 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
11979
11980 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
11981
11982 2003-10-07 Paul Eggert <eggert@twinsun.com>
11983
11984 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11985 if testsuite doesn't exist.
11986
11987 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11988 literals, unfortunately.
11989 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11990 Complain about NUL bytes in character constants or string literals.
11991
11992 2003-10-05 Paul Eggert <eggert@twinsun.com>
11993
11994 * NEWS: Don't document %no-default-prec, as it's still
11995 too experimental.
11996 * doc/bison.texinfo: Document %no-default-prec only if
11997 the defaultprec flag is set. Normally it's not.
11998
11999 2003-10-04 Paul Eggert <eggert@twinsun.com>
12000
12001 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12002 non-modifiable lvalue, instead of a modifiable one.
12003 * doc/bison.texinfo (Actions): Document that $$ can
12004 be assigned to. Do not claim that $$ and $N are
12005 array element references: user code should not rely on this.
12006
12007 2003-10-01 Paul Eggert <eggert@twinsun.com>
12008
12009 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12010 (grammar_declaration): Use it.
12011 * src/scan-gram.l: New token %no-default-prec.
12012 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12013 * NEWS, doc/bison.texinfo: Document the above.
12014
12015 2003-10-01 Akim Demaille <akim@epita.fr>
12016
12017 VCG no longer supports long_straight_phase.
12018
12019 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12020 * src/print_graph.c (print_graph): Adjust.
12021
12022 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
12023 and Paul Eggert <eggert@twinsun.com>
12024
12025 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12026 Table of Symbols): Document %default-prec.
12027 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12028 (grammar_declaration): Set default_prec on %default-prec.
12029 * src/scan-gram.l (%default-prec): New token.
12030 * src/reader.h (default_prec): New flag.
12031 * src/reader.c: Likewise.
12032 (packgram): Handle it.
12033 * tests/conflicts.at (%default-prec without %prec,
12034 %default-prec with %prec, %default-prec 1): New tests.
12035
12036 2003-09-30 Paul Eggert <eggert@twinsun.com>
12037
12038 * tests/testsuite.at: Include local.at, not input.at, fixing
12039 a typo in the 2003-08-25 patch.
12040
12041 2003-08-27 Akim Demaille <akim@epita.fr>
12042
12043 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12044 GCC warnings.
12045
12046 2003-08-26 Akim Demaille <akim@epita.fr>
12047
12048 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12049 "<\#" to avoid magic from Gnus when posting parts of this script.
12050
12051 2003-08-26 Akim Demaille <akim@epita.fr>
12052
12053 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12054 (Parser::parse): here.
12055 Adjust: nerrs and errstatus is now replaced by...
12056 (Parser::nerrs_, Parser::errstatus_): New.
12057
12058 2003-08-25 Akim Demaille <akim@epita.fr>
12059
12060 * config/announce-gen, Makefile.cfg: New.
12061 * Makefile.am: Adjust.
12062 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12063 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12064
12065 2003-08-25 Akim Demaille <akim@epita.fr>
12066
12067 When reducing initial empty rules, Bison parser read an initial
12068 location that is not defined. This results in garbage, and that
12069 affects Bison's own parser. Therefore we need (i) to extend Bison
12070 to support a means to initialize this location, and (ii) to use
12071 this CVS Bison to fix CVS Bison's parser.
12072
12073 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12074 with...
12075 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12076 * src/parse-gram.y: Adjust.
12077 (%initial-action): New.
12078 (%error-verbose): Since we require CVS Bison, there is no reason
12079 not to use it.
12080 * src/scan-gram.l: Adjust.
12081 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12082 * data/yacc.c (yyparse): Use b4_initial_action.
12083
12084 2003-08-25 Akim Demaille <akim@epita.fr>
12085
12086 * doc/bison.texinfo: Don't promote stdout for error messages.
12087
12088 2003-08-25 Akim Demaille <akim@epita.fr>
12089
12090 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12091 From Alexandre Duret-Lutz.
12092
12093 2003-08-25 Akim Demaille <akim@epita.fr>
12094
12095 Version 1.875c.
12096
12097 2003-08-25 Akim Demaille <akim@epita.fr>
12098
12099 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12100 Use them.
12101
12102 2003-08-25 Akim Demaille <akim@epita.fr>
12103
12104 * data/lalr1.cc (Parser::reduce_print_): New.
12105 Use it.
12106
12107 2003-08-25 Akim Demaille <akim@epita.fr>
12108
12109 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12110 error recovery loops. This patch is based on
12111 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
12112 Also, augment the similarity between lalr1.cc and yacc.c.
12113 Note: the locations of error recovery rules are not correct yet.
12114
12115 * data/lalr1.cc: Comment changes to augment the similarity between
12116 lalr1.cc and yacc.c.
12117 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12118 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12119 yyerrlab), when hitting EOF, pop the whole stack here instead of
12120 merely falling thru the default error handling mechanism.
12121 (yyerrorlab): New label, with the old contents of YYERROR,
12122 plus the following change: pop the stack of rhs corresponding
12123 to the production that invoked YYERROR. That is how Yacc
12124 behaves (required by POSIX).
12125 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12126 fail.
12127
12128 2003-08-25 Akim Demaille <akim@epita.fr>
12129
12130 Tune local.at so that people can "autom4te -l autotest calc.at -o
12131 calc" for instance, to extract a sub test suite.
12132
12133 * tests/testsuite.at: Move the initialization, Autotest version
12134 requirement, and AT_TESTED invocation into...
12135 * tests/local.at: here.
12136 * tests/testsuite.at: Include it for compatibility with Autoconf
12137 2.57.
12138 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12139 be ignore.
12140
12141 2003-08-04 Paul Eggert <eggert@twinsun.com>
12142
12143 Rework code slightly to avoid gcc -Wtraditional warnings.
12144 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12145 The returned value is now stored in *YY0. All callers changed.
12146 * src/output.c (merge_output): Adjust to the above change.
12147
12148 2003-07-26 Paul Eggert <eggert@twinsun.com>
12149
12150 * data/glr.c (YYASSERT): New macro.
12151 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12152 yyresolveStates, yyprocessOneStack):
12153 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12154 Derived from a suggestion by Frank Heckenbach.
12155
12156 2003-07-25 Paul Eggert <eggert@twinsun.com>
12157
12158 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12159 for portability to K&R C (after ansi2knr, presumably). See
12160 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
12161 by Frank Heckenbach, though I have omitted the structure-initialization
12162 part of his glr-knr.diff patch since I recall that the Portable
12163 C Compiler didn't require that change.
12164
12165 Let the user specify how to allocate and free memory.
12166 Derived from a suggestion by Frank Heckenbach in
12167 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
12168 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12169 All uses of free, malloc, realloc changed to use these macros,
12170 and unnecessary casts removed.
12171 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12172
12173 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12174
12175 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12176 use s.empty() rather than s == "" to test for empty string; see
12177 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
12178 (trivial change)
12179
12180 2003-06-25 Akim Demaille <akim@epita.fr>
12181
12182 * config/depcomp, config/install-sh: Update from masters.
12183
12184 2003-06-20 Paul Eggert <eggert@twinsun.com>
12185
12186 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12187 and return properly parenthesized result.
12188 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12189 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12190 Remove unnecessary parentheses from uses.
12191 * doc/bison.texinfo (Location Default Action): Describe the
12192 conventions for parentheses.
12193
12194 2003-06-19 Paul Eggert <eggert@twinsun.com>
12195
12196 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12197 yyreportTree): Do not assume that size_t is the same width as int,
12198 when printing sizes. Print sizes using an unsigned format.
12199 Problem reported by Frank Heckenbach in
12200 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
12201
12202 Port to Forte Developer 7 C compiler.
12203 * data/glr.c (struct YYLTYPE): If locations are not being used,
12204 declare a single dummy member, as empty structs do not conform
12205 to the C standard.
12206 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12207 the Forte Developer 7 C compiler complains that end-of-loop
12208 code is not reached.
12209
12210 2003-06-17 Paul Eggert <eggert@twinsun.com>
12211
12212 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12213 avoid warnings from picky compilers about redefinition of PARAMS.
12214
12215 2003-06-17 Paul Eggert <eggert@twinsun.com>
12216
12217 Version 1.875b.
12218
12219 * NEWS: Document 1.875b.
12220
12221 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12222 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12223 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12224 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12225 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12226 per recent gettext manual's suggestion.
12227 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12228 Use prototypes, not old-style definitions.
12229 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12230 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12231 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12232 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12233 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12234 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12235 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12236 vbitset_or_and_cmp, vbitset_copy): Likewise.
12237
12238 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12239 Do not include <stdlib.h>.
12240 (PARAMS): Define unconditionally for C89.
12241 (ATTRIBUTE_NORETURN): Remove.
12242 (ATTRIBUTE_UNUSED): Define unconditionally.
12243
12244 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
12245 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
12246 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12247 * lib/vbitset.c, lib/vbitset.h: New files.
12248 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12249 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12250 from libbitset.
12251
12252 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12253 `How Can I Reset @code{yyparse}', since texinfo does not allow
12254 arbitrary @ in node names.
12255
12256 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12257 shouldn't be needed according to the gettext 0.12.1 documentation
12258 but which seem to be needed anyway: codeset.m4 glibc21.m4
12259 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
12260 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
12261 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
12262
12263 * lib/.cvsignore: Add stdbool.h.
12264 * m4/.cvsignore: Add nls.m4, po.m4.
12265
12266 Upgrade to CVS gnulib.
12267 * stdbool_.h: File renamed from stdbool.h.in.
12268 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12269 AC_HEADER_STDBOOL.
12270 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12271 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12272 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12273 (MOSTLYCLEANFILES): New var.
12274 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12275 (stdbool.h): New rule.
12276 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12277 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12278 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12279 m4/quote.m4: Upgrade to today's gnulib.
12280
12281 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12282 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12283 the tests right now.
12284 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12285 yyerror are declared before use; C99 requires this.
12286
12287 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12288
12289 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12290 first.
12291 (yyrecoverSyntaxError): Correct the logic for setting and testing
12292 yyerrState.
12293 Correct comment on handling EOF.
12294 Allow states with only a default reduction, rather than failing
12295 (I can't quite reconstruct why these were not allowed before).
12296
12297 Fixes to avoid problem that $-N rules in GLR parsers can cause
12298 buffer overruns, corrupting state.
12299
12300 * src/output.c (prepare_rules): Output max_left_semantic_context
12301 definition.
12302 * src/reader.h (max_left_semantic_context): New variable declaration.
12303 * src/scan-gram.l (max_left_semantic_context): Define.
12304 (handle_action_dollar): Update max_left_semantic_context.
12305 * data/glr.c (YYMAXLEFT): New definition.
12306 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12307 (yyresolveAction): Ditto.
12308
12309 Fixes to problems with location handling in GLR parsers reported by
12310 Frank Heckenbach (2003/06/05).
12311
12312 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12313 (YYRHSLOC): Add parentheses, and define only if locations used.
12314 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12315 locations not used.
12316 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12317 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
12318
12319 * tests/cxx-type.at: Exercise location information; update tests
12320 to differentiate output with and without locations.
12321 Remove forward declarations of yylex and yyerror---caused errors
12322 because default YYLTYPE not yet defined.
12323 Change semantic actions to compute strings, rather than printing
12324 them directly (to test proper passing of semantics values). Change
12325 output to prefix notation and update test data and expected results.
12326 (yylex): Track locations.
12327 (stmtMerge): Return value rather than printing, and include arguments
12328 in value.
12329
12330 2003-06-03 Paul Eggert <eggert@twinsun.com>
12331
12332 Avoid warnings generated by GCC 2.95.4 when Bison is
12333 configured with --enable-gcc-warnings.
12334 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12335 yy::]b4_parser_class_name[::translate_,
12336 yy::Stack::operator[] (unsigned),
12337 yy::Stack::operator[] (unsigned) const,
12338 yy::Slice::operator[] (unsigned),
12339 yy::Slice::operator[] (unsigned) const):
12340 Rename local vars to avoid warnings.
12341 * tests/glr-regression.at (Improper handling of embedded actions
12342 and $-N in GLR parsers): Remove unused local variable from yylex.
12343 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12344 (void) as arg when not pure, since we now assume C89 when building
12345 Bison. Pacify GCC by using parameter.
12346
12347 2003-06-02 Paul Eggert <eggert@twinsun.com>
12348
12349 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12350 yy::Location::lines, yy::Location::columns): Rename arguments
12351 to avoid shadowing; this removes a warning generated by GCC 3.3.
12352
12353 2003-06-01 Paul Eggert <eggert@twinsun.com>
12354
12355 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12356 to g++, as GCC 3.3 complains if you do it.
12357 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12358 everything that WARNING_CFLAGS has, except omit warnings
12359 not suitable for C++.
12360 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12361 * tests/atlocal.in (CXXFLAGS): New var.
12362 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12363
12364 Fix a GLR parser bug I reported in February; see
12365 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
12366 The problem was that GLR parsers did not conform to the C standard,
12367 because actions like { $1 = $2 + $3; } expanded to expressions
12368 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12369 to a local variable. The C standard says that expressions
12370 like (var = f ()) + (var = f ()) have undefined behavior.
12371 Another problem was that GCC sometimes issues warnings that
12372 yyfill and its parameters are unused.
12373
12374 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12375 as possibly unused.
12376 (yyfill): New function.
12377 (YYFILL): Use it.
12378 (yyuserAction): Change type of yynormal to bool, so that it matches
12379 the new yyfill signature. Mark it as possibly unused.
12380
12381
12382 Follow up on a bug I reported in February, where a Bison-generated
12383 parser can loop. Provide a test case and a fix for yacc.c. I
12384 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12385 The original bug report is in:
12386 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
12387
12388 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12389 macro's size was becoming unwieldy.
12390 (yyerrlab): Do not discard an empty lookahead symbol, as this
12391 might destroy garbage.
12392 (yyerrorlab): New label, with the old contents of YYERROR,
12393 plus the following change: pop the stack of rhs corresponding
12394 to the production that invoked YYERROR. That is how Yacc
12395 behaves, and POSIX requires this behavior.
12396 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12397 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12398 Define 'alarm' to do nothing if unistd.h is not available.
12399 Add a new rule "exp: '-' error;" to test the above change to
12400 data/yacc.c. Use 'alarm' to abort any test taking longer than
12401 10 seconds, as it's probably looping.
12402 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12403 Also, the new yacc.c generates two fewer diagnostics for an
12404 existing test.
12405
12406 2003-05-24 Paul Eggert <eggert@twinsun.com>
12407
12408 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12409 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12410 This fixes a problem reported by John Bowman when the Compaq/HP
12411 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12412 -ansi -Wall -gall).
12413 * data/yacc.c (union yyalloc): Likewise.
12414 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
12415
12416 Switch from 'int' to 'bool' where that makes sense.
12417
12418 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12419 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12420 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12421 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12422 Return or accept bool, not int. All callers changed.
12423 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12424 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12425 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12426 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12427 bitset_or_and_cmp_): Likewise.
12428 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12429 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12430 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12431 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12432 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12433 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12434 bitset_stats_or_and_cmp): Likewise.
12435 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12436 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12437 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12438 ebitset_xor_cmp): Likewise.
12439 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12440 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12441 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12442 lbitset_xor_cmp): Likewise.
12443 * lib/bbitset.h: Include <stdbool.h>.
12444 (struct bitset_vtable): The following members now return bool, not
12445 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12446 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12447 or_and_cmp).
12448 * src/conflicts.c (count_rr_conflicts): Likewise.
12449 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12450 All uses changed.
12451 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12452 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12453 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12454 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12455 graph_flag): Likewise.
12456 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12457 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12458 graph_flag): Likewise.
12459 * src/output.c (error_verbose): Likewise.
12460 * src/output.h (error_verbose): Likewise.
12461 * src/reader.c (start_flag, typed): Likewise.
12462 * src/reader.h (typed): Likewise.
12463 * src/getargs.c (LOCATIONS_OPTION): New constant.
12464 (long_options, getargs): Use it.
12465 * src/lalr.c (build_relations): Use bool, not int.
12466 * src/nullable.c (nullable_compute): Likewise.
12467 * src/print.c (print_reductions): Likewise.
12468 * src/tables.c (action_row, pack_vector): Likewise.
12469 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12470 * src/output.c (prepare): Use it.
12471 * src/output.c (token_definitions_output,
12472 symbol_destructors_output, symbol_destructors_output): Use string,
12473 not boolean integer, to keep track of whether to output separator.
12474 * src/print_graph.c (print_core): Likewise.
12475 * src/state.c (state_rule_lookaheads_print): Likewise.
12476
12477 * config/install-sh: Sync from automake 1.7.5.
12478
12479 2003-05-14 Paul Eggert <eggert@twinsun.com>
12480
12481 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12482 semicolon after a grammar declaration, in the interest of possible
12483 future changes to the Bison input language.
12484 Do not allow a stray semicolon at the start of the grammar.
12485 (rhses.1): Allow one or more semicolons after any rule, including
12486 just before "|" as required by POSIX.
12487 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12488 grammar.
12489
12490 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12491
12492 %parse-param support for lalr1.cc.
12493
12494 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12495 b4_cc_constructor_calls, b4_cc_constructor_call,
12496 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12497 definitions.
12498 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12499 parse-param arguments.
12500 (yy::b4_parser_class_name): Declare instance variables to
12501 hold parse-param arguments.
12502 * tests/calc.at: s/value/semantic_value/ because value clashes
12503 with a member of yy::b4_parser_class_name. Adjust C++ code
12504 to handle %parse-param. Enable %parse-param test in C++.
12505
12506 2003-05-12 Paul Eggert <eggert@twinsun.com>
12507
12508 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12509 English a bit. Fix fclose typo. Change "const char" to "char
12510 const", and use ANSI C rather than K&R for "main". Suggest
12511 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12512 and suggest yy_switch_to_buffer.
12513
12514 2003-05-05 Paul Eggert <eggert@twinsun.com>
12515
12516 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12517 C89. This avoids a diagnostic on compilers that define __STDC__
12518 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
12519 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12520
12521 2003-05-03 Paul Eggert <eggert@twinsun.com>
12522
12523 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12524 Do not overrun array bounds.
12525 This should fix a bug reported today by Olatunji Oluwabukunmi in
12526 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
12527
12528 2003-04-29 Akim Demaille <akim@epita.fr>
12529
12530 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12531 * src/getargs.c, src/getargs.h: here, as bool, not int.
12532 (nondeterministic_parser): New.
12533 * src/parse-gram.y, src/scan-gram.l: Support
12534 %nondeterministic-parser.
12535 * src/output.c (prepare): Use nondeterministic_parser instead
12536 of glr_parser where appropriate.
12537 * src/tables.c (conflict_row, action_row, save_row)
12538 (token_actions, token_actions, pack_vector): Ditto.
12539
12540 2003-04-29 Akim Demaille <akim@epita.fr>
12541
12542 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12543
12544 2003-04-29 Akim Demaille <akim@epita.fr>
12545
12546 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12547 with %pure-parser and %locations to exercise the patch from Yakov
12548 Markovitch below.
12549
12550 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12551
12552 * data/yacc.c: (b4_lex_param): Corrected for the case where
12553 %lex-param is provided and %pure-parser isn't.
12554
12555 2003-04-27 Paul Eggert <eggert@twinsun.com>
12556
12557 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
12558 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
12559 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12560 if it is not defined.
12561 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12562
12563 2003-04-26 Paul Eggert <eggert@twinsun.com>
12564
12565 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12566 Declare to be of type suitable for the ninf value itself, not of
12567 type suitable for the corresponding table, since the latter might
12568 be unsigned but the ninf value might be negative. This fixes a
12569 bug reported by Alexandre Duret-Lutz in
12570 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
12571
12572 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12573 invokes it. We shouldn't invoke it twice because it will attempt
12574 to put error.o in the archive twice. This fixes a glitch reported
12575 by Martin Mokrejs in
12576 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12577
12578 2003-04-21 Paul Eggert <eggert@twinsun.com>
12579
12580 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12581 to gnulib.
12582
12583 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12584
12585 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12586 Fix obvious typo that results in uncompilable GLR parsers
12587 when both %pure-parser and %locations are used. (trivial change)
12588
12589 2003-04-17 Paul Eggert <eggert@twinsun.com>
12590
12591 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12592 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12593 Do not insert the expected token via unput, as this runs afoul
12594 of a POSIX-compatibility bug in flex 2.5.31.
12595 All uses changed to BEGIN the parent state,
12596 since we no longer insert the expected token via unput.
12597 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12598 that is no longer emitted after the above change.
12599
12600 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12601 the first one. This change is from Paul Hilfinger, and it fixes
12602 regression reported by Werner Lemberg in
12603 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
12604
12605 (resolve_sr_conflict): Don't invoke state_errs_set
12606 unless one or more tokens have been explicitly made errors.
12607 Otherwise, the above change causes Bison to abort.
12608
12609 * tests/existing.at (GNU pic Grammar): New test case, taken from
12610 Lemberg's email.
12611
12612 2003-03-31 Akim Demaille <akim@epita.fr>
12613
12614 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12615
12616 2003-03-31 Akim Demaille <akim@epita.fr>
12617
12618 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12619 output.
12620
12621 2003-03-31 Akim Demaille <akim@epita.fr>
12622
12623 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12624 From Paul Hilfinger.
12625
12626 2003-03-29 Akim Demaille <akim@epita.fr>
12627
12628 * m4/error.m4: Do not put under dynamic conditions some code which
12629 expansion is under static control.
12630
12631 2003-03-29 Akim Demaille <akim@epita.fr>
12632
12633 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12634
12635 2003-03-29 Akim Demaille <akim@epita.fr>
12636
12637 * doc/bison.texinfo (Strings are Destroyed): New.
12638
12639 2003-03-13 Paul Eggert <eggert@twinsun.com>
12640
12641 * .cvsignore: Add configure.lineno.
12642 * src/.cvsignore: Add yacc.
12643 * tests/.cvsignore: Add testsuite.log.
12644 * doc/fdl.texi: Sync with latest FSF version.
12645
12646 2003-03-12 Paul Eggert <eggert@twinsun.com>
12647
12648 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12649 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12650 cursor, instead of leaving it undefined. This fixes a bug
12651 reported by Tim Van Holder in
12652 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
12653 * tests/input.at (Torturing the Scanner): Test the scanner on
12654 an empty input file, which was Tim Van Holder's test case.
12655
12656 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12657 <sys/resource.h> can be included, include sys/time.h and
12658 sys/times.h first, if available. This works around the SunOS
12659 4.1.4 porting bug reported by Bruce Becker in
12660 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
12661
12662 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12663 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12664 AC_HEADER_SYS_WAIT.
12665
12666 Merge changes from gnulib. This was prompted because the CVS
12667 snapshot didn't build on Solaris 7 due to strnlen problems.
12668
12669 These changes need to be merged back into gnulib:
12670 * lib/hash.c: Include <stdbool.h> unconditionally.
12671 * m4/onceonly.m4 (m4_quote): New macro.
12672 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12673 Quote AC_FOREACH variable-expansions properly.
12674 The 2003-01-03 obstack.h change also needs merging.
12675 {end of changes requiring merging}
12676
12677 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12678 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12679 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12680 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12681 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12682 New files, imported from gnulib.
12683 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12684 above.
12685
12686 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12687 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12688 gnulib sources.
12689
12690 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12691 Add.
12692 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12693 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12694 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12695 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12696 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12697 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12698 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12699 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12700 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12701 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12702 (jm_PREREQ_ARGMATCH): Remove.
12703 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12704 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12705
12706 * src/system.h: Include <stdbool.h> unconditionally.
12707
12708 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12709 assuming at least C89 in the bitset code for some time now.
12710
12711 2003-03-03 Akim Demaille <akim@epita.fr>
12712
12713 * ro.po: New.
12714
12715 2003-03-02 Akim Demaille <akim@epita.fr>
12716
12717 * doc/bison.texinfo (Table of Symbols): Reactivate the
12718 documentation for %lex-param, and %parse-param.
12719
12720 2003-03-02 Akim Demaille <akim@epita.fr>
12721
12722 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12723 generate verbose error messages.
12724 Use the number of tokens as an upper bound in yytname, as it
12725 cannot be a non terminal.
12726
12727 2003-03-02 Akim Demaille <akim@epita.fr>
12728
12729 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12730 message.
12731
12732 2003-03-02 Akim Demaille <akim@epita.fr>
12733
12734 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12735 Use them to exercise yycheck overrun.
12736 Based on Andrew Suffield's grammar.
12737
12738 2003-03-02 Akim Demaille <akim@epita.fr>
12739
12740 Create tests/local.at for Bison generic testing macros.
12741
12742 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12743 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12744 This new file.
12745 * tests/calc.at (AT_CHECK_CALC): Adjust.
12746 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12747 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12748 * tests/local.at: here.
12749 (AT_COMPILE_CXX): Tags the tests using it as c++.
12750 Ignore the test if CXX is not functional.
12751
12752 2003-03-01 Paul Eggert <eggert@twinsun.com>
12753
12754 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12755 not loc->end, since loc->end might contain garbage and this leads
12756 to undefined behavior on some platforms.
12757 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12758 depend on *loc, so that the reader doesn't give the the false
12759 impression that *loc is initialized.
12760 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12761 does not survive the return.
12762
12763 2003-03-01 Akim Demaille <akim@epita.fr>
12764
12765 * src/scan-gram.l (code_start): Always initialize it when entering
12766 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12767 yylex invocation. An alternative would be making it static, but
12768 then it starts with the second %%'s beginning, instead of its end.
12769
12770 2003-02-28 Paul Eggert <eggert@twinsun.com>
12771
12772 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12773 around a UnixWare 7.1.1 porting bug reported by John Hughes in
12774 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
12775
12776 2003-02-26 Paul Eggert <eggert@twinsun.com>
12777
12778 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12779 Remove Sequent/Pyramid discussion (nobody uses them any more).
12780 Merge VMS and MS-DOS discussion; these ports may well be dead
12781 but let's keep mentioning them for now. Put <> around email
12782 addresses. Add copyright notice.
12783
12784 2003-02-24 Paul Eggert <eggert@twinsun.com>
12785
12786 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12787 to avoid collision with flex use of yylineno.
12788 Problem reported by Bruce Lilly in
12789 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
12790 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12791 * data/yacc.c (yy_reduce_print): Likewise.
12792
12793 * config/depcomp: Sync with Automake 1.7.3.
12794
12795 2003-02-21 Akim Demaille <akim@epita.fr>
12796
12797 * data/lalr1.cc: Use temporary variables instead of casts to
12798 change integer types.
12799 Suggested by Paul Eggert.
12800
12801 2003-02-21 Akim Demaille <akim@epita.fr>
12802
12803 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12804 to avoid confusions with lalr1.cc's notion of Position.
12805 Suggested by Paul Eggert.
12806
12807 2003-02-20 Akim Demaille <akim@epita.fr>
12808
12809 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12810 before initial_columns.
12811 (location.hh): Use consistent variable names when defining the
12812 operator<<.
12813 Use "last" so that we subtract from Positions, not from unsigned.
12814
12815 2003-02-20 Akim Demaille <akim@epita.fr>
12816
12817 * data/lalr1.cc (position.hh): New subfile, including the extended
12818 and Doxygen'ed documentation of class Position.
12819 (location.hh): Use it.
12820 Document a` la Doxygen.
12821 With the help of Benoit Perrot.
12822
12823 2003-02-20 Akim Demaille <akim@epita.fr>
12824
12825 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12826 AT_YACC_IF.
12827 Redefine AT_YYERROR_SEES_LOC_IF using it.
12828 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
12829 not defined.
12830 Don't use the location in yy::Parser::error_ and
12831 yy::Parser::print_ when not %locations.
12832 Activate more lalr1.cc tests.
12833
12834 2003-02-19 Akim Demaille <akim@epita.fr>
12835
12836 * data/lalr1.cc: When displaying a line number, be sure to make it
12837 an int.
12838
12839 2003-02-19 Akim Demaille <akim@epita.fr>
12840
12841 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
12842 Remove, useless.
12843 (YYABORT, YYACCEPT, YYERROR): New.
12844 * tests/calc.at: Renable the lalr1.cc test.
12845
12846 2003-02-19 Akim Demaille <akim@epita.fr>
12847
12848 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
12849 error recovery, mixing with/without pops and discarding of the
12850 lookahead.
12851 Exercise YYERROR.
12852 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
12853
12854 2003-02-17 Paul Eggert <eggert@twinsun.com>
12855
12856 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
12857 * tests/testsuite.at (AT_COMPILE): Use them.
12858 This fixes the testsuite problem reported by Robert Lentz in
12859 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
12860
12861 2003-02-12 Paul Eggert <eggert@twinsun.com>
12862
12863 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
12864 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
12865 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
12866 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
12867 Check for malloc failure, for consistency with yacc.c.
12868 (yytname_size): Remove, for consistency with yacc.c.
12869
12870 The bug still remains in data/lalr1.cc, as I didn't have time
12871 to fix it there.
12872
12873 2003-02-06 Akim Demaille <akim@epita.fr>
12874
12875 * configure.ac (GXX): Rename as...
12876 (CXX): this, to keep the original Autoconf semantics.
12877 Require 2.57.
12878 * data/lalr1.cc: Fix b4_copyright invocations.
12879 If YYDEBUG is not defined, don't depend upon name_ being defined.
12880 (location.hh): Include string and iostream.
12881 (Position::filename): New member.
12882 (Position::Position ()): New.
12883 (operator<< (Position)): New.
12884 (operator- (Position, int)): New.
12885 (Location::first, Location::last): Rename as...
12886 (Location::begin, Location::end): these, to mock the conventional
12887 iterator names.
12888 (operator<< (Location)): New.
12889 * tests/atlocal.in (CXX): New.
12890 * tests/testsuite.at (AT_COMPILE_CXX): New.
12891 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
12892 locations in a more synthetic way.
12893 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
12894 lalr1.cc is used.
12895 Adjust the C locations to match those from Emacs: first column is
12896 column 0.
12897 Change all the expected results.
12898 Conform to the GCS: simplify the locations when applicable.
12899 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
12900 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
12901 these CPP macros with the m4 macros new defined by...
12902 (AT_CHECK_PUSHDEFS): this, i.e.:
12903 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
12904 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
12905 New macros.
12906 (AT_CHECK_POPDEFS): Undefine them.
12907 (AT_CHECK_CALC_LALR1_CC): New.
12908 Use it for the first lalr1.cc test.
12909
12910 2003-02-04 Akim Demaille <akim@epita.fr>
12911
12912 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
12913 Location as is defined.
12914
12915 2003-02-04 Akim Demaille <akim@epita.fr>
12916
12917 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
12918 name_ being defined.
12919
12920 2003-02-03 Paul Eggert <eggert@twinsun.com>
12921
12922 * src/gram.h (start_symbol): Remove unused decl.
12923
12924 Use more-consistent naming conventions for local vars.
12925
12926 * src/derives.c (derives_compute): Change type of local var from
12927 int to rule_number.
12928 * src/gram.c (grammar_rules_partial_print): Likewise.
12929 * src/print.c (print_core): Likewise.
12930 * src/reduce.c (reduce_grammar_tables): Likewise.
12931
12932 * src/gram.c (grammar_dump): Change name of item_number *
12933 local var from r to rp.
12934 * src/nullable.c (nullable_compute): Likewise.
12935
12936 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
12937
12938 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
12939 for symbol or symbol_number var.
12940 * src/reader.c (grammar_start_symbol_set): Likewise.
12941 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
12942 Likewise.
12943 * src/state.c (transitions_to): Likewise.
12944 * src/state.h: Likewise.
12945 * src/tables.c (symbol_number_to_vector_number): Likewise.
12946
12947 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
12948 char * var.
12949
12950 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
12951 var.
12952
12953 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
12954 var.
12955
12956 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
12957 Use str, not s, for char * var. Use ch, not c, for character var.
12958 Use size for size var.
12959
12960 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
12961 char * var.
12962 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
12963 uniqstr var.
12964 * src/uniqstr.h: Likewise.
12965
12966 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12967 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12968 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
12969 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
12970 param to have same name as that of enum, so that we don't use
12971 "s" to stand for a non-state.
12972
12973 2003-02-02 Akim Demaille <akim@epita.fr>
12974
12975 * src/scan-skel.l: Scan more than one inert character per yylex
12976 invocation.
12977
12978 2003-02-01 Paul Eggert <eggert@twinsun.com>
12979
12980 Version 1.875a.
12981
12982 * po/LINGUAS: Add ms.
12983
12984 2003-01-30 Akim Demaille <akim@epita.fr>
12985
12986 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12987
12988 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12989
12990 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12991 of $1.
12992
12993 Changes in response to error report by S. Eken: GLR mode does not
12994 handle negative $ indices or $ indices in embedded rules correctly.
12995 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12996
12997 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12998 (b4_rhs_location): Ditto.
12999 (yyfill): New function to copy from stack tree into array
13000 incrementally.
13001 (yyuserAction): Modify to allow incremental move of semantic values
13002 to rhs array when in GLR mode.
13003 Define YYFILL to use in user-defined actions to fill semantic array
13004 as needed.
13005 Remove dummy use of yystack, as there is now a guaranteed use.
13006 (yydoAction): Modify to allow incremental move of semantic values
13007 to rhs array when in GLR mode.
13008 (yyresolveAction): Ditto.
13009 (yyglrShiftDefer): Update comment.
13010 (yyresolveStates): Use X == NULL for pointers, not !X.
13011 (yyglrReduce): Ditto.
13012 (yydoAction): Ditto
13013
13014 * tests/glr-regr1.at: Rename to ...
13015 * tests/glr-regression.at: Add new regression test for the problems
13016 described above (adapted from S. Eken).
13017 Update copyright notice.
13018 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13019 * tests/Makefile.am: Ditto.
13020
13021 2003-01-28 Paul Eggert <eggert@twinsun.com>
13022
13023 * data/lalr1.cc: Do not use @output_header_name@ unless
13024 b4_defines_flag is set. This fixes two bugs reported by
13025 Tim Van Holder in
13026 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13027 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
13028
13029 2003-01-21 Paul Eggert <eggert@twinsun.com>
13030
13031 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13032 we don't need to worry about yyerrlab1 being reported as an
13033 "unused label" by non-GCC C compilers. The downside is that if
13034 locations are used then a couple of statements are duplicated each
13035 time YYERROR is invoked, but the upside is that the warnings
13036 should vanish.
13037 (yyerrlab1): Move code to YERROR.
13038 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13039 This reverts some of the 2002-12-27 change.
13040
13041 2003-01-17 Paul Eggert <eggert@twinsun.com>
13042
13043 * src/output.c (symbol_printers_output): Fix typo that led
13044 to core dump. Problem reported by Antonio Rus in
13045 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
13046
13047 2003-01-13 Akim Demaille <akim@epita.fr>,
13048 Quoc Peyrot <chojin@lrde.epita.fr>,
13049 Robert Anisko <anisko_r@lrde.epita.fr>
13050
13051 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13052 when the stacks contain one element, as the loop would otherwise
13053 free the last state, and then use the top state (the one we just
13054 popped). This means that the initial elements will not be freed
13055 explicitly, as is the case in yacc.c; it is not a problem, as
13056 these elements have fake values.
13057
13058 2003-01-11 Paul Eggert <eggert@twinsun.com>
13059
13060 * NEWS: %expect-violations are now just warnings, reverting
13061 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13062 bootstrapping problem reported by Matthias Klose; see
13063 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
13064 * src/conflicts.c (conflicts_print): Likewise.
13065 * tests/conflicts.at (%expect not enough, %expect too much,
13066 %expect with reduce conflicts): Likewise.
13067 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13068 that the warning is enabled if the number of conflicts changes
13069 (not necessarily increases).
13070
13071 * src/getargs.c (version): Update copyright year.
13072
13073 2003-01-09 Akim Demaille <akim@epita.fr>
13074
13075 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13076
13077 2003-01-08 Paul Eggert <eggert@twinsun.com>
13078
13079 * Makefile.maint (WGETFLAGS):
13080 New macro, containing "-C off" to disable proxy caches.
13081 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13082 (rel-check): Use $(WGET) instead of wget.
13083
13084 2003-01-06 Paul Eggert <eggert@twinsun.com>
13085
13086 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13087 the GLR paper of Scott, Johnstone and Hussain.
13088
13089 2003-01-04 Paul Eggert <eggert@twinsun.com>
13090
13091 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13092 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13093 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13094 (EXTRA_LIBRARIES): New var, for liby.a.
13095 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13096 (EXTRA_SCRIPTS): New var, for yacc.
13097
13098 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13099 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13100 Problem reported by Nelson H. F. Beebe.
13101
13102 2003-01-03 Paul Eggert <eggert@twinsun.com>
13103
13104 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13105 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13106 when compiling Bison 1.875's `bitset bset = obstack_alloc
13107 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13108
13109 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13110 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13111 grow to a huge size with typical invocation.
13112
13113 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13114 Use the pattern recommended by Autoconf 2.57, except also protect
13115 against double-definition.
13116 * src/system.h: Likewise.
13117 Portability issues reported by Nelson H. F. Beebe.
13118
13119 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13120 All uses changed. Provide a definition in both C and C++.
13121 (yytrue, yyfalse): Define even if defined (__cplusplus).
13122
13123 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13124 Reported by Nelson H. F. Beebe.
13125
13126 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13127
13128 2003-01-02 Paul Eggert <eggert@twinsun.com>
13129
13130 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13131 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13132 Bug reported by Nelson H. F. Beebe.
13133
13134 2003-01-01 Paul Eggert <eggert@twinsun.com>
13135
13136 * Version 1.875.
13137
13138 2002-12-30 Paul Eggert <eggert@twinsun.com>
13139
13140 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13141 Moved here from...
13142 (<INITIAL>","): Here. This causes stray "," to be treated
13143 more uniformly.
13144
13145 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
13146 last brace in braced code when not in Yacc mode, for compatibility
13147 with Bison 1.35. This resurrects the 2001-12-15 patch to
13148 src/reader.c.
13149
13150 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13151 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13152
13153 2002-12-28 Paul Eggert <eggert@twinsun.com>
13154
13155 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13156 that of SYM's type. This fixes Debian bug 168069, reported by
13157 Thomas Olsson.
13158
13159 2002-12-28 Paul Eggert <eggert@twinsun.com>
13160
13161 Version 1.75f.
13162
13163 Switch back to the Yacc style of conflict reports, undoing some
13164 of the 2002-07-30 change.
13165 * doc/bison.texinfo (Understanding): Use Yacc style for
13166 conflict reports. Also, use new way of locating rules.
13167 * src/conflicts.c (conflict_report):
13168 Renamed from conflict_report_yacc, removing the old
13169 'conflict_report'. Translate the entire conflict report at once,
13170 so that we don't assume that "," has the same interpretation in
13171 all languages.
13172 (conflicts_output): Use Yacc-style conflict report for each state,
13173 instead of our more-complicated style.
13174 (conflicts_print): Use Yacc-style conflict report, except print
13175 the input file name when not emulating Yacc.
13176 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13177 Conflicted Reduction, %expect not enough, %expect too much,
13178 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13179 * tests/existing.at (GNU Cim Grammar): Likewise.
13180 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13181
13182 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13183 fatal): Don't invoke fflush; it's not needed and it might even be
13184 harmful for stdout, as stdout might not be open.
13185 * src/reduce.c (reduce_print): Likewise.
13186
13187 2002-12-27 Paul Eggert <eggert@twinsun.com>
13188
13189 Fix a bug where error locations were not being recorded correctly.
13190 This problem was originally reported by Paul Hilfinger in
13191 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
13192
13193 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13194 top of the location stack's error locations.
13195 (yyerrlab): Set it. When discarding a token, push its location
13196 onto yylerrsp so that we don't lose track of the error's end.
13197 (yyerrlab1): Now is only the target of YYERROR, so that we can
13198 properly record the location of the action that failed. For GCC
13199 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13200 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13201 (yyerrlab2): New label, which yyerrlab now falls through to.
13202 Compute the error's location by applying YYLLOC_DEFAULT to
13203 the locations of all the symbols that went into the error.
13204 * doc/bison.texinfo (Location Default Action): Mention that
13205 YYLLOC_DEFAULT is also invoked for syntax errors.
13206 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13207 Error locations include the locations of all the tokens that were
13208 discarded, not just the last token.
13209
13210 2002-12-26 Paul Eggert <eggert@twinsun.com>
13211
13212 * src/files.c: Include quote.h.
13213 (compute_output_file_names): Warn if we detect conflicting
13214 outputs to the same file. This should catch the misunderstanding
13215 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13216
13217 * src/conflicts.c (conflicts_print): If the user specifies
13218 "%expect N", report an error if there are any reduce/reduce
13219 conflicts. This is what the manual says should happen.
13220 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13221 * tests/conflicts.at (%expect with reduce conflicts): New test.
13222
13223 Don't use m4_include on relative file names, as it doesn't work as
13224 desired if there happens to be a file with that name under ".".
13225
13226 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13227 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13228 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13229 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13230 * src/output.c (output_skeleton): Use full path names when
13231 specifying a file to include; don't rely on include path, as
13232 it's unreliable when the working file contains a file with
13233 that name.
13234
13235 2002-12-25 Paul Eggert <eggert@twinsun.com>
13236
13237 Remove obsolete references to bison.simple and bison.hairy.
13238 Problem mentioned by Aubin Mahe in
13239 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
13240 * data/glr.c: Comment fix.
13241 * doc/bison.1: Remove references. Also, mention "yacc".
13242
13243 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13244 with -g option.
13245
13246 * src/parse-gram.y (declaration): Use enum "report_states" rather
13247 than its numeric value 1.
13248
13249 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13250 opening a new one. This fixes Debian bug 165349, reported by
13251 Bruce Stephens.
13252
13253 2002-12-24 Paul Eggert <eggert@twinsun.com>
13254
13255 Version 1.75e.
13256
13257 * Makefile.maint (cvs-update): Don't assume that the shell
13258 supports $(...), as Solaris sh doesn't.
13259
13260 * src/parse-gram.y (lloc_default): Remove test for empty
13261 nonterminals at the end, since it didn't change the result.
13262
13263 2002-12-24 Paul Eggert <eggert@twinsun.com>
13264
13265 If the user does not define YYSTYPE as a macro, Bison now declares it
13266 using typedef instead of defining it as a macro. POSIX requires this.
13267 For consistency, YYLTYPE is also declared instead of defined.
13268
13269 %union directives can now have a tag before the `{', e.g., the
13270 directive `%union foo {...}' now generates the C code
13271 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13272 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13273 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13274 instead of `yyltype'.
13275
13276 `yystype' and `yyltype' are now obsolescent macros instead of being
13277 typedefs or tags; they are no longer documented and will be
13278 withdrawn in a future release.
13279
13280 * data/glr.c (b4_location_type): Remove.
13281 (YYSTYPE): Renamed from yystype.
13282 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13283 (struct YYLTYPE): Renamed from struct yyltype.
13284 (YYLTYPE): Renamed from yyltype.
13285 (yyltype, yystype): New (and obsolescent) macros,
13286 for backward compatibility.
13287 * data/yacc.c: Likewise.
13288
13289 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13290 does not specify a union tag. This is for compatibility with
13291 Solaris 9 yacc.
13292
13293 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13294 const *, since it is now modified by stripping surrounding { }.
13295 (current_braced_code): Remove.
13296 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13297 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13298 trailing " {...}". Now of type <chars>.
13299 (grammar_declaration): Adjust to bundled tokens.
13300 (code_content): Remove; stripping is now done by add_param.
13301 (print_token_value): Print contents of bundled tokens.
13302 (token_name): New function.
13303
13304 * src/reader.h (braced_code, current_braced_code): Remove.
13305 (token_name): New decl.
13306
13307 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13308 token_type, not braced_code code_kind. All uses changed.
13309 (SC_PRE_CODE): New state, for scanning after a keyword that
13310 has (or usually has) an immediately-following braced code.
13311 (token_type): New local var, to keep track of which token type
13312 to return when scanning braced code.
13313 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
13314 <INITIAL>"%parse-param", <INITIAL>"%printer",
13315 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13316 instead of returning a token type immediately.
13317 (<INITIAL>"{"): Set token type.
13318 (<SC_BRACED_CODE>"}"): Use it.
13319 (handle_action_dollar, handle_action_at): Now returns bool
13320 indicating success. Fail if ! current_rule; this prevents a core dump.
13321 (handle_symbol_code_dollar, handle_symbol_code_at):
13322 Remove; merge body into caller.
13323 (handle_dollar, handle_at): Complain in invalid contexts.
13324
13325 * NEWS, doc/bison.texinfo: Document the above.
13326 * NEWS: Fix years and program names in copyright notice.
13327
13328 2002-12-17 Paul Eggert <eggert@twinsun.com>
13329
13330 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13331 Reporting, Table of Symbols): Omit mentions of %lex-param and
13332 %parse-param from the documentation for now.
13333
13334 2002-12-15 Paul Eggert <eggert@twinsun.com>
13335
13336 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13337 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13338 lookahead symbol, and which sets yychar in parser actions) and it
13339 disagreed with the Bison documentation. Bug
13340 reported by Andrew Walrond.
13341
13342 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13343 as the caller now does that.
13344 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13345 (YYEMPTY): Parenthesize right hand side, since others use it.
13346 (yyparse): Don't assume that our generated code is the only code
13347 that sets yychar.
13348
13349 2002-12-13 Paul Eggert <eggert@twinsun.com>
13350
13351 Version 1.75d.
13352
13353 POSIX requires a "yacc" command.
13354 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13355 (MOSTLYCLEANFILES): Add yacc.
13356 (yacc): New rule.
13357 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
13358 as an alias for bison y.
13359
13360 * po/LINGUAS: Add da.
13361
13362 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13363 problem with latest <getopt.h>.
13364 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13365
13366 * doc/fdl.texi: Upgrade to 1.2.
13367 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13368 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13369 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13370 gnulib.
13371 * config/install-sh: Sync with autotools.
13372
13373 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
13374 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13375 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13376 locations are requested.
13377 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13378 locations are requested.
13379
13380 2002-12-12 Paul Eggert <eggert@twinsun.com>
13381
13382 Remove unportable casts and storage allocation tricks.
13383 While we're at it, remove almost all casts, since they
13384 usually aren't needed and are a sign of trouble.
13385
13386 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13387
13388 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13389 the pointer DSET returned by malloc; this isn't portable.
13390 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13391 Similarly for DERIVES.
13392 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13393 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13394 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13395
13396 * src/derives.c (derives_compute): Do not bother invoking
13397 int_of_rule_number, since rule numbers are integers.
13398
13399 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13400 rather than XMALLOC (char, N).
13401
13402 * src/files.c (filename_split): Rewrite to avoid cast.
13403
13404 * src/gram.h (symbol_number_as_item_number,
13405 item_number_as_symbol_number, rule_number_as_item_number,
13406 item_number_as_rule_number):
13407 Now inline functions rather than macros, to avoid casts.
13408 * src/state.h (state_number_as_int): Likewise.
13409 * src/tables.c (state_number_to_vector_number,
13410 symbol_number_to_vector_number): Likewise.
13411
13412 * src/gram.h (int_of_rule_number): Remove; no longer used.
13413
13414 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13415 since the resulting storage is always stored into.
13416
13417 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13418 where it's needed.
13419
13420 * src/muscle_tab.c (muscle_m4_output):
13421 Now inline. Return bool, not int.
13422 * src/state.c (state_compare): Likewise.
13423 * src/symtab.c (symbol_check_defined,
13424 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13425 hash_compare_symbol, hash_symbol):
13426 Likewise.
13427 * src/uniqstr.c (uniqstr_print): Likewise.
13428 * src/muscle_tab.c (muscle_m4_output_processor):
13429 New function, to avoid casts.
13430 * src/state.c (state_comparator, stage_hasher): Likewise.
13431 * src/symtab.c (symbol_check_defined_processor,
13432 symbol_check_alias_consistency_processor, symbol_pack_processor,
13433 symbol_translation_processor, hash_symbol_comparator,
13434 hash_symbol_hasher): Likewise.
13435 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13436 * src/muscle_tab.c (muscles_m4_output):
13437 Use new functions instead of casting old functions unportably.
13438 * src/state.c (state_hash_new): Likewise.
13439 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13440 symbols_token_translations_init):
13441 Likewise.
13442 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13443
13444 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13445 var instead of casting to long, to avoid casts.
13446 (prepare_states): Use MALLOC rather than alloca, so that we don't
13447 have to worry about alloca.
13448 * src/state.c (state_hash_lookup): Likewise.
13449
13450 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13451 local var instead of casting to unsigned char, to avoid casts.
13452
13453 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13454 STATE_ALLOC): Remove.
13455 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13456 rather than calloc, and use offsetof to avoid allocating slightly
13457 too much storage.
13458 (state_new): Initialize all members.
13459
13460 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13461
13462 * src/symtab.c (symbol_free): Remove; unused.
13463 (symbol_get): Remove cast in lhs of assignment.
13464 (symbols_do): Now static. Accept generic arguments, not
13465 hashing-related ones.
13466
13467 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13468 (symbol_processor): Remove.
13469 (symbols_do): Remove decl; now static.
13470
13471 * src/system.h (alloca): Remove; decl no longer needed.
13472 (<stddef.h>): Include, for offsetof.
13473 (<inttypes.>, <stdint.h>): Include if available.
13474 (uintptr_t): New type, if system lacks it.
13475 (CALLOC, MALLOC, REALLOC): New macros.
13476 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13477 new macros.
13478
13479 * src/tables.c (table_size): Now int, to pacify GCC.
13480 (table_grow, table_ninf_remap): Use signed table size.
13481 (save_row): Don't bother initializing locals when not needed.
13482 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13483 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13484
13485 * src/vcg.h: Correct misspellings.
13486
13487 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13488
13489
13490 * src/getargs.c (getargs): Don't assume EOF == -1.
13491
13492 2002-12-09 Paul Eggert <eggert@twinsun.com>
13493
13494 Change identifier spellings to avoid collisions with names
13495 that are reserved by POSIX.
13496
13497 Don't use names ending in _t, since POSIX reserves them.
13498 For consistency, remove _e and _s endings -- they're weren't
13499 needed to remove ambiguity. All uses changed.
13500 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13501 turn was just renamed from struniq_t.
13502 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13503 which in turn was just renamed from struniq_processor_t.
13504 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13505 in turn was renamed from hash_compare_struniq_t.
13506 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13507 (state_list): Renamed from state_list_t.
13508 * src/assoc.h (assoc): Renamed from assoc_t.
13509 * src/conflicts.c (enum conflict_resolution): Renamed from
13510 enum conflict_resolution_e.
13511 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13512 (rule_list): Renamed from rule_list_t.
13513 * src/getargs.h (enum trace): Renamed from enum trace_e.
13514 (enum report): Renamed from enum report_e.
13515 * src/gram.h (item_number): Renamed from item_number_t.
13516 (rule_number): Renamed from rule_number_t.
13517 (struct rule_s): Remove the "rule_s" part; not used.
13518 (rule): Renamed from rule_t.
13519 (rule_filter): Renamed from rule_filter_t.
13520 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13521 (goto_list): Renamed from goto_list_t.
13522 * src/lalr.h (goto_number): Renamed from goto_number_t.
13523 * src/location.h (location): Renamed from location_t.
13524 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13525 and moved here from:
13526 * src/muscle_tab.h (muscle_entry_t): here.
13527 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13528 (rule_list): Renamed from rule_list_t.
13529 * src/print_graph.c (static_graph): Renamed from graph.
13530 * src/reader.h (braced_code): Renamed from braced_code_t.
13531 Remove brace_code_e tag.
13532 * src/relation.h (relation_node): Renamed from relation_node_t.
13533 (relation_nodes): Renamed from relation_nodes_t.
13534 (relation): Renamed from relation_t.
13535 * src/state.h (state_number): Renamed from state_number_t.
13536 (struct state): Renamed from struct state_s.
13537 (state): Renamed from state_t.
13538 (transitions): Renamed from transitions_t. Unused (and
13539 misspelled) transtion_s tag removed.
13540 (errs): Renamed from errs_t. Unused errs_s tag removed.
13541 (reductions): Renamed from reductions_t. Unused tag
13542 reductions_s removed.
13543 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13544 (struct symbol_list): Renamed from struct symbol_list_s.
13545 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13546 (struct symbol): Renamed from struct symbol_s.
13547 (symbol): Renamed from symbol_t.
13548 * src/tables.c (vector_number): Renamed from vector_number_t.
13549 (action_number): Renamed from action_t.
13550 * src/tables.h (base_number): Renamed from base_t.
13551 * src/vcg.h (enum color): Renamed from enum color_e.
13552 (enum textmode): Renamed from enum textmode_e.
13553 (enum shape): Renamed from enum shape_e.
13554 (struct colorentry): Renamed from struct colorentry_s.
13555 (struct classname): Renamed from struct classname_s.
13556 (struct infoname): Renamed from struct infoname_s.
13557 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13558 (enum decision): Renamed from enum decision_e.
13559 (enum orientation): Renamed from enum orientation_e.
13560 (enum alignment): Renamed from enum alignment_e.
13561 (enum arrow_mode): Renamed from enum arrow_mode_e.
13562 (enum crossing_type): Renamed from enum crossing_type_e.
13563 (enum view): Renamed from enum view_e.
13564 (struct node): Renamed from struct node_s.
13565 (node): Renamed from node_t.
13566 (enum linestyle): Renamed from enum linestyle_e.
13567 (enum arrowstyle): Renamed from enum arrowstyle_e.
13568 (struct edge): Renamed from struct edge.
13569 (edge): Renamed from edge_t.
13570 (struct graph): Renamed from struct graph_s.
13571 (graph): Renamed from graph_t.
13572 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13573 Rename value_t -> value.
13574 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13575 value_t_as_yystype -> value_as_yystype.
13576
13577 Don't include <errno.h> in the mainstream code, since it
13578 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13579 * lib/get-errno.c, lib/get-errno.h: New files.
13580 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13581 get-errno.c.
13582 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13583 * src/output.c (output_skeleton): Likewise.
13584 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13585 instead of errno.
13586 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13587 Likewise.
13588 (handle_action_dollar, handle_action_at): Likewise.
13589 * src/system.h: Do not include <errno.h>.
13590 (TAB_EXT): Renamed from EXT_TAB.
13591 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13592
13593 Avoid str[a-z]*, since <string.h> reserves that name space.
13594 Change all instances of "struniq" in names to "uniqstr", and
13595 likewise for "STRUNIQ" and "UNIQSTR".
13596 * src/uniqstr.c: Renamed from src/struniq.c.
13597 * src/uniqstr.h: Renamed from src/struniq.h.
13598 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13599 * src/files.c (strsuffix): Remove; unused.
13600 (concat2): Renamed from stringappend. Now static.
13601 * src/files.h (strsuffix, stringappend): Remove; unused.
13602 * src/parse-gram.y (<chars>): Renamed from <string>.
13603 (<uniqstr>): Renamed from <struniq>.
13604 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13605 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13606 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13607 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13608 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13609 (N_EXPAND): Renamed from N_STRETCH.
13610
13611 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13612 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13613 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13614 Remove; unused.
13615 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13616 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13617 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13618 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13619 (BASE_MAXIMUM): Renamed from BASE_MAX.
13620 (BASE_MINIMUM): Renamed from BASE_MIN.
13621 (ACTION_MAX): Remove; unused.
13622 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13623 Unnecessary casts removed from above defines.
13624
13625
13626 Fix misspelling in names.
13627 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13628 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13629 G_NODE_ALIGNEMENT.
13630
13631
13632 * lib/timevar.c (timevar_report): Renamed from time_report,
13633 for consistency with other names.
13634 * lib/timevar.h (timevar_report): New decl.
13635 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13636
13637
13638 Sort include-file uses.
13639
13640 Reorder all include files under src to be in the order "system.h".
13641 then the ../lib include files in angle brackets (alphabetized),
13642 then the . include files in double-quotes (alphabetized). Fix
13643 dependency breakages encountered in this process, as follows:
13644 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13645 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13646 * src/state.h: Include "symtab.h".
13647
13648 2002-12-08 Paul Eggert <eggert@twinsun.com>
13649
13650 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13651 since this causes problems when __file__ contains character
13652 sequences like "@" that are treated specially by src/scan-skel.l.
13653 Instead, just use the file's basename. This fixes the bug
13654 reported by Martin Mokrejs in
13655 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
13656
13657 2002-12-06 Paul Eggert <eggert@twinsun.com>
13658
13659 Add support for rules that do not have trailing semicolons, as
13660 POSIX requires. Improve the quality of locations in Bison
13661 diagnostics.
13662
13663 * src/location.c: Include <quotearg.h>.
13664 (empty_location): Now const.
13665 (location_print): New function. Follow the recommendation of the
13666 GNU Coding Standards for locations that span file boundaries.
13667 * src/location.h: Do not include <quotearg.h>; no longer needed.
13668 (boundary): New type.
13669 (location_t): Use it. This allows locations to span file boundaries.
13670 All member uses changed: file -> start.file or end.file (as needed),
13671 first_line -> start.line, first_column -> start.column,
13672 last_line -> end.line, last_column -> end.column.
13673 (equal_boundaries): New function.
13674 (LOCATION_RESET, LOCATION_STEP): Remove.
13675 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13676 (empty_location): Now const.
13677 (location_print): New decl.
13678 * src/parse-gram.y (lloc_default): New function, which handles
13679 empty locations more accurately.
13680 (YYLLOC_DEFAULT): Use it.
13681 (%token COLON): Remove.
13682 (%token ID_COLON): New token.
13683 (rules): Use it.
13684 (declarations, rules): Remove trailing semicolon.
13685 (declaration, rules_or_grammar_declaration):
13686 Allow empty (";") declaration.
13687 (symbol_def): Remove empty actions; no longer needed.
13688 (rules_or_grammar_declaration): Remove trailing semicolon.
13689 (semi_colon.opt): Remove.
13690 * src/reader.h: Include location.h.
13691 (scanner_cursor): New decl.
13692 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13693 rolling our own.
13694 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13695 of *loc.
13696 (STEP): Remove. No longer needed, now that adjust_location does
13697 the work. All uses removed.
13698 (scanner_cursor): New var.
13699 (adjust_location): Renamed from extend_location. It now sets
13700 *loc and adjusts the scanner cursor. All uses changed.
13701 Don't bother testing for CR.
13702 (handle_syncline): Remove location arg; now updates scanner cursor.
13703 All callers changed.
13704 (unexpected_end_of_file): Now accepts start boundary of token or
13705 comment, not location. All callers changed. Update scanner cursor,
13706 not the location.
13707 (SC_AFTER_IDENTIFIER): New state.
13708 (context_state): Renamed from c_context. All uses changed.
13709 (id_loc, code_start, token_start): New local vars.
13710 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13711 processing of Yacc white space and equivalents here.
13712 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13713 instead of returning ID immediately, since we need to search for
13714 a subsequent colon.
13715 (<INITIAL>"'", "\""): Save token_start.
13716 (<INITIAL>"%{", "{", "%%"): Save code_start.
13717 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13718 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13719 BEGIN context_state at end, not INITIAL.
13720 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13721 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13722 Return correct token start.
13723 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13724 the start of a character, string or multiline comment is found.
13725 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13726 Reduction): Adjust reported locations to match the more-precise
13727 results now expected.
13728 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13729 * tests/reduce.at (Useless Rules, Reduced Automaton,
13730 Underivable Rules): Likewise.
13731 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13732 or "|"' now that so many other tokens are allowed by the new grammar.
13733
13734 * src/complain.h (current_file): Remove duplicate decl;
13735 current_file is now owned by files.h.
13736 * src/complain.c, src/scan-gram.l: Include files.h.
13737
13738 2002-12-06 Paul Eggert <eggert@twinsun.com>
13739
13740 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13741 promotes to int; it might be unsigned int.
13742 * data/yacc.c (yy_reduce_print): Likewise.
13743
13744 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13745 be #defined in the prologue, not in the Bison declarations.
13746 This fixes Debian Bug 102878, reported by Shaul Karl.
13747
13748 2002-12-02 Paul Eggert <eggert@twinsun.com>
13749
13750 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13751 * lib/strtoul.c: New file, from gnulib.
13752 This fixes a porting bug reported by Peter Klein in
13753 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
13754
13755 2002-11-30 Paul Eggert <eggert@twinsun.com>
13756
13757 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13758 and put only a forward declaration in the prologue. This is for
13759 consistency with the other scanner helper functions.
13760
13761 Type clashes now generate warnings, not errors, since it
13762 appears that POSIX may allow some grammars with type clashes.
13763 * src/reader.c (grammar_current_rule_check): Warn about
13764 type clashes instead of complaining.
13765 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13766
13767 Add Yacc library, since POSIX requires it.
13768 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13769 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13770 * lib/main.c, lib/yyerror.c: New files.
13771
13772 gram_error can be static; it need not be extern.
13773 * src/reader.h (gram_error): Remove decl.
13774 * src/parse-gram.y (gram_error): Now static. Add static decl.
13775 (print_token_value): Omit parameter names from forward decl,
13776 for consistency.
13777
13778 2002-11-29 Paul Eggert <eggert@twinsun.com>
13779
13780 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13781 be declared before being used. E.g., one should typically
13782 declare them in the prologue. Use GNU coding style in examples.
13783 Put "const" consistently after the type it modifies. Mention
13784 that C99 supports "inline". Mention that yyerror traditionally
13785 returns "int".
13786
13787 %parse-param and %lex-param now take just one argument, the
13788 declaration; the argument name is deduced from the declaration.
13789
13790 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13791 Reporting, Table of Symbols): Document this.
13792 * src/parse-gram.y (add_param): New function.
13793 (COMMA): Remove.
13794 (declaration): Implement new rule for %parse-param and %lex-param.
13795 * src/scan-gram.l: "," now elicits a warning, rather than being
13796 a token; this is more compatible with byacc.
13797 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13798
13799 2002-11-27 Paul Eggert <eggert@twinsun.com>
13800
13801 Rename identifiers to avoid real and potential collisions.
13802
13803 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13804 to avoid collision with lex macro described by Bruce Lilly in
13805 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13806 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13807 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13808 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13809 All uses changed.
13810 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13811 The name "yycontrol" violates the name space rules, and this stuff
13812 wasn't being used anyway.
13813 (input): Remove action; this stuff wasn't being used.
13814 (gram_error): Rename local variable yylloc -> loc.
13815 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13816 (YY_DECL): Don't use "yy" at start of local variables.
13817 All uses changed, e.g., yylloc -> loc.
13818 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13819 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13820 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13821 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13822
13823 * src/parse-gram.y (gram_error): loc is now const *.
13824 * src/reader.h (gram_error): Likewise.
13825
13826 2002-11-24 Paul Eggert <eggert@twinsun.com>
13827
13828 Version 1.75c.
13829
13830 * tests/actions.at (Actions after errors): Use an output format
13831 more similar to that of the Printers and Destructors test.
13832 Test the position of the ';' token too.
13833 (Printers and Destructors): Likewise.
13834 (Printers and Destructors: %glr-parser): Remove for now, to avoid
13835 unnecessarily alarming people when the test fails.
13836
13837 * data/yacc.c (yyerrlab1): Move this label down, so that the
13838 parser does not discard the lookahead token if the user code
13839 invokes YYERROR. This change is required for POSIX conformance.
13840
13841 * lib/error.c: Sync with gnulib.
13842
13843 2002-11-22 Paul Eggert <eggert@twinsun.com>
13844
13845 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
13846 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
13847 * lib/xmalloc.c: Likewise.
13848
13849 2002-11-20 Paul Eggert <eggert@twinsun.com>
13850
13851 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
13852
13853 2002-11-20 Paul Eggert <eggert@twinsun.com>
13854
13855 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
13856 should use `if (! x) abort ();' rather than `assert (x);', and
13857 anyway it's one less thing to worry about configuring.
13858
13859 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
13860 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
13861 and replace all instances of assert with abort.
13862 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
13863 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
13864
13865 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
13866 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
13867 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
13868 hash_find_entry, hash_rehash, hash_insert): Likewise.
13869 * src/conflicts.c (resolve_sr_conflict): Likewise.
13870 * src/lalr.c (set_goto_map, map_goto): Likewise.
13871 * src/nullable.c (nullable_compute): Likewise.
13872 * src/output.c (prepare_rules, token_definitions_output): Likewise.
13873 * src/reader.c (packgram, reader): Likewise.
13874 * src/state.c (state_new, state_free, state_transitions_set,
13875 state_reduction_find): Likewise.
13876 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
13877 symbol_pack): Likewise.
13878 * src/tables.c (conflict_row, pack_vector): Likewise.
13879 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13880 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13881 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
13882 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
13883
13884 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
13885 (ARGMATCH_CONSTRAINT): New macro.
13886 (ARGMATCH_ASSERT): Use it.
13887
13888 * src/system.h (verify): New macro.
13889 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
13890 rather than assert.
13891 * src/tables.c (tables_generate): Likewise.
13892
13893 * src/struniq.c (struniq_assert): Now returns void, and aborts
13894 if the assertion is false.
13895 (struniq_assert_p): Remove.
13896 * src/struniq.h: Likewise.
13897
13898 2002-11-18 Paul Eggert <eggert@twinsun.com>
13899
13900 * data/glr.c (yygetLRActions): Replace `yyindex' with
13901 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
13902 This fixes the regression with Sun ONE Studio 7 cc that I reported in
13903 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
13904
13905 2002-11-18 Akim Demaille <akim@epita.fr>
13906
13907 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
13908 space.
13909 From Tim Van Holder.
13910
13911 2002-11-17 Paul Eggert <eggert@twinsun.com>
13912
13913 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
13914 to "SyntaxError" for consistency with my 2002-11-15 change.
13915
13916 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
13917 not define to {}, since this breaks the common use of `YYDPRINTF
13918 ((...));' if a single statement is desired (e.g. before `else').
13919 Work around GCC warnings by surrounding corresponding calls with
13920 {} if needed.
13921 (yyhasResolvedValue): Remove unused function.
13922 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
13923 loop body.
13924 (yyreportSyntaxError): Renamed from yyreportParseError.
13925 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
13926 All uses changed.
13927 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
13928 extern when possible. Remove unused initializations.
13929
13930 2002-11-16 Akim Demaille <akim@epita.fr>
13931
13932 Augment the similarity between GLR and LALR traces.
13933
13934 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
13935 (YY_REDUCE_PRINT): New.
13936 (yyparse): Use them.
13937 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
13938 YYDPRINT here.
13939 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
13940 state reached after the reduction/recovery, since...
13941 (yyparse, yyprocessOneStack): Report the state we are entering in.
13942
13943 2002-11-16 Akim Demaille <akim@epita.fr>
13944
13945 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
13946 Add support for --trace=skeleton.
13947 * src/scan-skel.l: %option debug.
13948 Scan strings of non-@ or \n instead of character by character.
13949 (scan_skel): Handle trace_skeleton.
13950 (QPUTS): New.
13951 (@output_parser_name@, @output_header_name@): ``Restore'' their
13952 support (used to be M4 macros).
13953 * data/yacc.c: Quote larger chunks, a la glr.c.
13954 * data/lalr1.cc: Likewise.
13955 The header guards are no longer available, so use some other
13956 string than `YYLSP_NEEDED'.
13957
13958 2002-11-16 Akim Demaille <akim@epita.fr>
13959
13960 Make the ``Printers and Destructors'' test more verbose, taking
13961 `yacc.c''s behavior as (possibly wrong) reference.
13962
13963 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
13964 instead of fprint on stdout.
13965 Set and report the last_line of the symbols.
13966 Consistently display values and locations.
13967
13968 2002-11-16 Paul Eggert <eggert@twinsun.com>
13969
13970 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
13971
13972 2002-11-15 Paul Eggert <eggert@twinsun.com>
13973
13974 * tests/actions.at (Actions after errors): New test case.
13975
13976 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
13977 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
13978 tests/action.at, tests/calc.at, tests/conflicts.at,
13979 tests/cxx-type.at, tests/regression.at:
13980 "parse error" -> "syntax error" for POSIX compatibility.
13981 "parsing stack overflow..." -> "parser stack overflow" so
13982 that code matches Bison documentation.
13983
13984 2002-11-15 Akim Demaille <akim@epita.fr>
13985
13986 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13987 take two BRACED_CODE, not two string_content.
13988 Free the scanner's obstack when we are done.
13989 (code_content): New.
13990 * tests/calc.at: Adjust.
13991 * doc/bison.texinfo: Adjust.
13992 Also, make sure to include the `,' for these declarations.
13993
13994 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13995
13996 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13997 definition; avoids potential autoreconf problems.
13998
13999 2002-11-15 Akim Demaille <akim@epita.fr>
14000
14001 Always check the value returned by yyparse.
14002
14003 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14004 returned by yyparse.
14005 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14006 Adjust calls.
14007 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14008 returned by yyparse.
14009
14010 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14011
14012 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14013 on input.at test.
14014
14015 2002-11-14 Paul Eggert <eggert@twinsun.com>
14016
14017 * src/output.c (output_skeleton): Call xfopen instead of
14018 duplicating xfopen's body.
14019
14020 Fix bugs reported by Nelson H. F. Beebe in
14021 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
14022
14023 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14024 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14025 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14026 file twice in the grammar, as an extra check.
14027
14028 * tests/input.at (Torturing the Scanner): Surround the
14029 backslash-newline tests with "#if 0", to make it less likely that
14030 we'll run into compiler bugs. Bring back solitary \ inside
14031 comment, but add a closing comment to work around HP C bug. Don't
14032 test backslash-newline in C character constant.
14033
14034 2002-11-14 Akim Demaille <akim@epita.fr>
14035
14036 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14037 status of the compiler.
14038 Calling `exit 1' is no longer needed.
14039 Reported by Nelson H. F. Beebe.
14040
14041 2002-11-14 Akim Demaille <akim@epita.fr>
14042
14043 * tests/atlocal.in (CPPFLAGS): We have config.h.
14044 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14045 New.
14046 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14047 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14048 * tests/regression.at, tests/torture.at: Use them for all the
14049 grammars that are to be compiled.
14050 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14051 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14052 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14053
14054 2002-11-14 Akim Demaille <akim@epita.fr>
14055
14056 * doc/bison.texinfo: Various formatting changes (alignments in
14057 samples, additional @group/@end group, GCS in samples.
14058 Use @deffn instead of simple @table to define the directives,
14059 macros, variables etc.
14060
14061 2002-11-13 Paul Eggert <eggert@twinsun.com>
14062
14063 Fix some bugs reported by Albert Chin-A-Young in
14064 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
14065
14066 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
14067 -o c"; the HP C compiler chatters during compilation.
14068 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14069 * tests/headers.at (export YYLTYPE): Likewise.
14070
14071 * tests/input.at (Torturing the Scanner): Remove lines containing
14072 solitary backslashes, as they tickle a bug in the HP C compiler.
14073
14074 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14075 comments, since they're not portable. Use GNU coding style.
14076
14077 2002-11-13 Akim Demaille <akim@epita.fr>
14078
14079 * data/yacc.c: Leave bigger chunks of quoted text.
14080 (YYDSYMPRINTF): New.
14081 Use it to report symbol activities.
14082 * data/glr.c (YYDSYMPRINTF): New.
14083 Use it.
14084
14085 2002-11-12 Paul Eggert <eggert@twinsun.com>
14086
14087 Version 1.75b.
14088
14089 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14090 (yyglrReduce): Return yyok, not 0.
14091 This should avoid the enumerated-type warnings reported
14092 by Nelson H. F. Beebe in
14093 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
14094
14095 * lib/bbitset.h (BITSET_INLINE): Remove.
14096 * lib/bitset.h [! BITSET_INLINE]: Remove.
14097 (bitset_set, bitset_reset, bitset_test): Rename local vars
14098 to avoid shadowing warnings by GCC.
14099
14100 * data/glr.c (inline): Remove #define. It's the user's
14101 responsibility to #define it away, just like 'const'.
14102 This fixes one of the bugs reported by Nelson H. F. Beebe in
14103 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
14104
14105 * Makefile.maint (po-check): Scan .l and .y files instead of the
14106 .c and the .h files that they generate. This fixes the bug
14107 reported by Tim Van Holder in:
14108 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
14109 Look for N_ as well as for _. Try to avoid matching #define for
14110 N_ and _.
14111 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14112 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14113 * src/scan-gram.l: Revamp regular expressions so that " and '
14114 do not confuse xgettext.
14115
14116 * src/struniq.h (struniq_new): Do not declare the return type
14117 to be 'const'; this violates the C standard.
14118 * src/struniq.c (struniq_new): Likewise.
14119
14120 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14121
14122 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14123 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14124 linker.
14125
14126 2002-11-12 Akim Demaille <akim@epita.fr>
14127
14128 * Makefile.maint: Sync with Autoconf:
14129 (local_updates): New.
14130
14131 2002-11-12 Akim Demaille <akim@epita.fr>
14132
14133 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14134
14135 2002-11-12 Akim Demaille <akim@epita.fr>
14136
14137 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14138 locations.
14139
14140 2002-11-12 Akim Demaille <akim@epita.fr>
14141
14142 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14143 not yyvalue.
14144
14145 2002-11-12 Akim Demaille <akim@epita.fr>
14146
14147 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14148 Use it to test the GLR parser.
14149
14150 2002-11-12 Akim Demaille <akim@epita.fr>
14151
14152 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14153 defines it.
14154 * data/glr.c (yystos): New.
14155 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14156 (YYDSYMPRINT): New.
14157 (yyval): Don't define it, it is handled via M4.
14158 (yyrecoverParseError): Free verbosely the discarded symbols.
14159 * data/yacc.c (yysymprint): Remove, rather...
14160 (b4_yysymprint_generate): invoke.
14161 * data/c.m4 (b4_yysymprint_generate): New.
14162 Accept pointers as arguments, as opposed to the version from
14163 yacc.c.
14164 (b4_yydestruct_generate): Likewise.
14165 * tests/cations.at (Printers and Destructors): Use Bison directives
14166 instead of CPP macros.
14167 Don't rely on internal details.
14168
14169 2002-11-12 Akim Demaille <akim@epita.fr>
14170
14171 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14172 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14173 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14174 it against YYEMPTY and so forth), work on yytoken (i.e., set
14175 it to YYEMPTY etc.).
14176 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14177 (b4_symbol_actions): Remove.
14178 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14179 for 0, end-of-input.
14180
14181 2002-11-12 Akim Demaille <akim@epita.fr>
14182
14183 * doc/bison.texinfo (Destructor Decl): New.
14184
14185 2002-11-12 Akim Demaille <akim@epita.fr>
14186
14187 * src/tables.c (tables_generate): Use free for pointers that
14188 cannot be NULL, not XFREE.
14189 (pack_vector): Use assert, not fatal, for bound violations.
14190 * src/state.c (state_new): Likewise.
14191 * src/reader.c (reader): Likewise.
14192 * src/lalr.c (set_goto_map): Likewise.
14193 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
14194 the file name.
14195
14196 2002-11-12 Akim Demaille <akim@epita.fr>
14197
14198 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14199 Restore.
14200 * src/scan-gram.l (last_string): Is global to the file, not to
14201 yylex.
14202 * src/parse-gram.y (input): Don't append the epilogue here,
14203 (epilogue.opt): do it here, and free the scanner's obstack.
14204 * src/reader.c (epilogue_set): Rename as...
14205 (epilogue_augment): this.
14206 * data/c.m4 (b4_epilogue): Defaults to empty.
14207
14208 2002-11-12 Akim Demaille <akim@epita.fr>
14209
14210 * src/getargs.c (long_options): Remove duplicates.
14211 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14212 Remove.
14213 * doc/bison.rnh: Remove.
14214 * doc/bison.texinfo (VMS Invocation): Remove.
14215
14216 2002-11-12 Akim Demaille <akim@epita.fr>
14217
14218 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14219 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14220
14221 Use struniq for symbols.
14222
14223 * src/symtab.h (symbol_t): The tag member is a struniq.
14224 (symbol_type_set): Adjust.
14225 * src/symtab.c (symbol_new): Takes a struniq.
14226 (symbol_free): Don't free the tag member.
14227 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14228 (hash_compare_symbol, hash_symbol): these.
14229 Use the fact that tags as struniqs.
14230 (symbol_get): Use struniq_new.
14231 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14232 Returns a strniq.
14233 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14234 and type members are struniqs.
14235 * src/reader.c (get_merge_function)
14236 (grammar_current_rule_merge_set): Adjust.
14237 (TYPE, current_type): Are struniq.
14238
14239 Use struniq for file names.
14240
14241 * src/files.h, src/files.c (infile): Split into...
14242 (grammar_file, current_file): these.
14243 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14244 * src/reduce.c (reduce_print): Likewise.
14245 * src/getargs.c (getargs): Likewise.
14246 * src/complain.h, src/complain.c: Likewise.
14247 * src/main.c (main): Call struniqs_new early enough to use it for
14248 file names.
14249 Don't free the input file name.
14250
14251 2002-11-12 Akim Demaille <akim@epita.fr>
14252
14253 * src/symtab.c (symbol_free): Remove dead deactivated code:
14254 type_name are properly removed.
14255 Don't use XFREE to free items that cannot be NULL.
14256 * src/struniq.h, src/struniq.c: New.
14257 * src/main.c (main): Initialize/free struniqs.
14258 * src/parse-gram.y (%union): Add astruniq member.
14259 (yyprint): Adjust.
14260 * src/scan-gram.l (<{tag}>): Return a struniq.
14261 Free the obstack bit that used to store it.
14262 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14263
14264 2002-11-11 Paul Eggert <eggert@twinsun.com>
14265
14266 Revamp to fix many (but not all) of the C- and M4-related quoting
14267 problems. Among other things, this fixes the Bison bug reported
14268 by Jan Hubicka when processing the Bash grammar; see:
14269 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
14270
14271 Use new @ escapes consistently. Represent brackets with @{ and @}
14272 rather than @<:@ and @:>@, since this works a bit better with dumb
14273 editors like vi. Represent @ with @@, since @ is now consistently
14274 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14275 __ofile__, to avoid unexpected expansions. Similarly, use @output
14276 rather than #output.
14277
14278 * data/c.m4 (b4_copyright): Omit file name from comment, since
14279 the file name could contain "*/".
14280 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14281 be quoted. All uses changed.
14282
14283 * data/glr.c: Use new @ escapes consistently.
14284 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14285 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14286 Remove, since they couldn't handle arbitrary characters in file
14287 names.
14288 * data/lalr1.cc: Likewise.
14289 * data/yacc.c: Likewise.
14290
14291 * src/files.c (output_infix): Remove; all uses removed.
14292 * src/files.h: Likewise.
14293
14294 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14295 mishandled funny characters in file names, and anyway it isn't
14296 needed any more.
14297 * data/yacc.c: Likewise.
14298 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14299
14300 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14301 * data/yacc.c: Likewise.
14302
14303 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14304 strings now.
14305 (muscle_init): Quote filename as a C string.
14306 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14307 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14308 * src/output.c (escaped_file_name_output): New function.
14309 (prepare_symbols): Quote tokens for M4.
14310 (prepare): Don't insert output_infix, output_prefix,
14311 output_parser_name, output_header_name; this is now down by scan-skel.
14312 Insert skeleton as a C string.
14313
14314 * src/output.c (user_actions_output, symbol_destructors_output,
14315 symbol_printers_output): Quote filenames for C and M4.
14316 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14317
14318 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14319 escapes other than \\ and \'; this simplifies the code.
14320 (<SC_STRING>): Likewise, for \\ and \".
14321 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14322 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14323 Use new escapes @{ and @} for [ and ].
14324
14325 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14326 them with auto vars.
14327 Switch to new escape scheme, where @ is the escape character uniformly.
14328 Abort if a stray escape character is found. Avoid unbounded input
14329 buffer when parsing non-escaped text.
14330
14331 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14332 __oline__, #output, $@, and @{ do not have unintended meanings.
14333
14334 2002-11-09 Paul Eggert <eggert@twinsun.com>
14335
14336 Fix the test failure due to GCC warnings described in
14337 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
14338 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14339 evaluate to 0 if it's impossible for NINF to be in the respective
14340 table.
14341 (yygetLRActions, yyrecoverParseError): Use them.
14342
14343 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14344 counted in the token inserted at end of file. Now takes
14345 location_t *, not location_t, so that the location can be
14346 adjusted. All uses changed.
14347
14348 * tests/regression.at (Invalid inputs): Adjust wording in
14349 diagnostic to match the new behavior.
14350
14351 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14352 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14353 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14354 abort ();'. This reduces the runtime of the "Many lookaheads"
14355 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14356 GCC 3.2.
14357
14358 2002-11-07 Paul Eggert <eggert@twinsun.com>
14359
14360 * src/parse-gram.y (CHARACTER): Remove unused token.
14361 All uses removed.
14362
14363 * src/scan-gram.l: Remove stack option. We no longer use the
14364 stack, since the stack was never deeper than 1; instead, use the
14365 new auto var c_context to record the stacked value.
14366
14367 Remove nounput option. At an unexpected end of file, we now unput
14368 the minimal input necessary to end cleanly; this simplifies the
14369 code.
14370
14371 Avoid unbounded token sizes where this is easy.
14372
14373 (unexpected_end_of_file): New function.
14374 Use it to systematize the error message on unexpected EOF.
14375 (last-string): Now auto, not static.
14376 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14377 (scanner_last_string_free): Remove; not used.
14378 (percent_percent_count): Move decl to just before use.
14379 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14380 not the (never otherwised-used) CHARACTER.
14381
14382 2002-11-07 Akim Demaille <akim@epita.fr>
14383
14384 Let yyerror always receive the msg as last argument, so that
14385 yyerror can be variadic.
14386
14387 * data/yacc.c (b4_yyerror_args): New.
14388 Use it when calling yyerror.
14389 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14390 Use it when calling yyerror.
14391 * doc/bison.texinfo (Error Reporting): Adjust.
14392 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14393 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14394
14395 2002-11-06 Akim Demaille <akim@epita.fr>
14396
14397 #line should have quoted strings.
14398 Ideally, this should be done by m4_quotearg.
14399
14400 * src/scan-skel.l: Include quotearg.h.
14401 Quote __ofile__.
14402 * src/output.c (symbol_printers_output)
14403 (symbol_destructors_output): Quote the file name.
14404
14405 2002-11-06 Akim Demaille <akim@epita.fr>
14406
14407 * tests/regression.at (Invalid inputs): Adjust to the recent
14408 messages.
14409
14410 2002-11-06 Akim Demaille <akim@epita.fr>
14411
14412 Restore --no-lines.
14413 Reported by Jim Kent.
14414
14415 * data/c.m4 (b4_syncline): New.
14416 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14417 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14418 * src/output.c (user_actions_output): Likewise.
14419 (prepare): Define 'b4_synclines_flag'.
14420 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
14421
14422 2002-11-06 Akim Demaille <akim@epita.fr>
14423
14424 * src/main.c (main): Free `infile'.
14425 * src/scan-gram.l (handle_syncline): New.
14426 Recognize `#line'.
14427 * src/output.c (user_actions_output, symbol_destructors_output)
14428 (symbol_printers_output): Use the location's file name, not
14429 infile.
14430 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14431
14432 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14433
14434 * src/tables.c (matching_state): Don't allow states to match if
14435 either has GLR conflict entries.
14436
14437 2002-11-05 Paul Eggert <eggert@twinsun.com>
14438
14439 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14440 "integer out of range" rather than "invalid value".
14441 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14442 accordingly.
14443
14444 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14445 Also, remove one static variable in the scanner.
14446
14447 * src/scan-gram.l (braces_level): Now auto, not static.
14448 Initialize to zero if the compiler is being picky.
14449 (INITIAL): Clear braces_level instead of incrementing it.
14450 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14451 as POSIX 1003.1-2001 requires.
14452 * src/system.h (IF_LINT): New macro, taken from coreutils.
14453 * configure.ac: Define "lint" if --enable-gcc-warnings.
14454
14455 2002-11-05 Akim Demaille <akim@epita.fr>
14456
14457 * src/scan-gram.l: When it starts with `%', complain about the
14458 whole directive, not just that `invalid character: %'.
14459
14460 2002-11-04 Akim Demaille <akim@epita.fr>
14461
14462 * Makefile.maint: Update from Autoconf.
14463 (update, cvs-update, po-update, do-po-update): New.
14464
14465 2002-11-04 Akim Demaille <akim@epita.fr>
14466
14467 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14468 and yyerror.
14469 Have yyerror `use' its arguments.
14470 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14471 returns true when location & yacc & pure & parse-param.
14472 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14473
14474 2002-11-04 Akim Demaille <akim@epita.fr>
14475
14476 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14477 clashes.
14478 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14479 font-lock-mode.
14480 Use complain_at.
14481 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14482 slot 0.
14483
14484 2002-11-03 Paul Eggert <eggert@twinsun.com>
14485
14486 * src/reader.c (get_merge_function, grammar_current_rule_check):
14487 Use consistent diagnostics for reporting type name clashes.
14488 Quote the types with <>, for consistency with Yacc.
14489 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14490
14491 2002-11-03 Akim Demaille <akim@epita.fr>
14492
14493 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14494 New.
14495 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14496 (b4_parse_param): Remove.
14497 Use b4_identification.
14498 Propagate b4_pure_args where needed to pass them to yyerror.
14499 * data/glr.m4 (b4_parse_param): Remove.
14500 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14501 (b4_lpure_formals): New.
14502 Use b4_identification.
14503 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14504 b4_user_formals and b4_user_args.
14505 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14506 (yyreportAmbiguity): When using a pure parser, also need
14507 the location, and the parse-params.
14508 Adjust callers.
14509 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14510 When using a pure parser, also need the parse-params.
14511 Adjust callers.
14512 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14513 (%pure-parser + %parse-param) LALR and GLR parsers.
14514 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14515 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14516 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14517 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14518 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14519 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14520 * doc/bison.texinfo: Untabify the whole file.
14521 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14522 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14523 (Error Reporting): Adjust to these new directives.
14524 Document %error-verbose, deprecate YYERROR_VERBOSE.
14525
14526 2002-11-03 Akim Demaille <akim@epita.fr>
14527
14528 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14529 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14530 command line options.
14531 * tests/cxx-type.at: Formatting changes.
14532
14533 2002-11-03 Paul Eggert <eggert@twinsun.com>
14534
14535 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14536 to count columns correctly, and to check for invalid inputs.
14537
14538 Use mbsnwidth to count columns correctly. Account for tabs, too.
14539 Include mbswidth.h.
14540 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14541 (extend_location): New function.
14542 (YY_LINES): Remove.
14543
14544 Handle CRLF in C code rather than in Lex code.
14545 (YY_INPUT): New macro.
14546 (no_cr_read): New function.
14547
14548 Scan UCNs, even though we don't fully handle them yet.
14549 (convert_ucn_to_byte): New function.
14550
14551 Handle backslash-newline correctly in C code.
14552 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14553 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14554 all uses changed.
14555 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14556 Use {splice} wherever C allows backslash-newline.
14557 YY_STEP after space, newline, vertical-tab.
14558 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
14559
14560 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14561
14562 ({int}, handle_action_dollar, handle_action_at): Check for integer
14563 overflow.
14564
14565 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14566
14567 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14568 as well as \000. Check for UCHAR_MAX, not 255.
14569 Allow \x with an arbitrary positive number of digits, as in C.
14570 Check for overflow here.
14571 Allow \? and UCNs, for compatibility with C.
14572
14573 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14574 with quote slot used by complain_at.
14575
14576 * tests/input.at: Add tests for backslash-newline, m4 quotes
14577 in symbols, long literals, and funny escapes in strings.
14578
14579 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14580 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14581 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14582 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14583 * m4/mbswidth.m4: New file, from GNU coreutils.
14584
14585 * doc/bison.texinfo (Grammar Outline): Document // comments.
14586 (Symbols): Document that trigraphs have no special meaning in Bison,
14587 nor is backslash-newline allowed.
14588 (Actions): Document that trigraphs have no special meaning.
14589
14590 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14591 no longer used.
14592
14593 2002-11-02 Paul Eggert <eggert@twinsun.com>
14594
14595 * src/reader.c: Don't include quote.h; not needed.
14596 (get_merge_function): Reword warning to be consistent with
14597 type clash diagnostic in grammar_current_rule_check.
14598
14599 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14600 bug in trigraph handling.
14601
14602 * src/output.c (prepare_symbols): When printing token names,
14603 escape "[" as "@<:@" and likewise for "]".
14604
14605 * src/system.h (errno): Remove declaration, as we are now
14606 assuming C89 or better, and C89 guarantees errno.
14607
14608 2002-10-30 Paul Eggert <eggert@twinsun.com>
14609
14610 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14611 Check for close failures.
14612 * src/files.h (xfclose): Return void, not int, since it always
14613 returned zero.
14614 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14615 indicates one.
14616 * src/output.c (output_skeleton): Use xfclose rather than fclose
14617 and ferror. xfclose now checks ferror.
14618
14619 * data/glr.c (YYLEFTMOST_STATE): Remove.
14620 (yyreportTree): Use a stack-based leftmost state. This avoids
14621 our continuing battles with bogus warnings about initializers.
14622
14623 2002-10-30 Akim Demaille <akim@epita.fr>
14624
14625 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14626 #if.
14627
14628 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14629
14630 * tests/glr-regr1.at: New test for reported regressions.
14631 * tests/testsuite.at: Add glr-regr1.at test.
14632 * tests/Makefile.am: Add glr-regr1.at test.
14633
14634 2002-10-24 Paul Eggert <eggert@twinsun.com>
14635
14636 Version 1.75a.
14637
14638 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14639 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14640 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14641 Don't assume strdup exists; POSIX says its an XSI extension.
14642 Check for buffer overflow on input.
14643
14644 2002-10-24 Akim Demaille <akim@epita.fr>
14645
14646 * src/output.c (output_skeleton): Don't disable M4sugar comments
14647 too soon: it results in comments being expanded.
14648 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14649 first output.
14650
14651 2002-10-24 Akim Demaille <akim@epita.fr>
14652
14653 * data/yacc.c (m4_int_type): New.
14654 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14655 char' as only yacc.c wants K&R portability.
14656 * data/glr.c (yysigned_char): Remove.
14657 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14658 Reported by Quoc Peyrot.
14659
14660 2002-10-23 Paul Eggert <eggert@twinsun.com>
14661
14662 * src/main.c (main): With --trace=time, report times even if a
14663 non-fatal error occurs. Formerly, the times were reported in some
14664 such cases but not in others.
14665 * src/reader.c (reader): Just return if a complaint has been issued,
14666 instead of exiting, so that 'main' can report times.
14667
14668 2002-10-22 Akim Demaille <akim@epita.fr>
14669
14670 * src/system.h: Include sys/types.
14671 Reported by Bert Deknuydt.
14672
14673 2002-10-23 Paul Eggert <eggert@twinsun.com>
14674
14675 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14676 Suggested by Art Haas.
14677
14678 2002-10-22 Paul Eggert <eggert@twinsun.com>
14679
14680 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14681 decl; not needed any more.
14682 * src/main.c (main): Use return to exit, undoing yesterday's change.
14683 The last OS that we could find where this wouldn't work is
14684 SunOS 3.5, and that's too old to worry about now.
14685
14686 * data/glr.c (struct yyltype): Define members even when not
14687 doing locations. This is more consistent with yacc.c, and it
14688 works around the following bug reports:
14689 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14690 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
14691
14692 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14693 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14694 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14695
14696 2002-10-22 Akim Demaille <akim@epita.fr>
14697
14698 * data/README: New.
14699
14700 2002-10-21 Paul Eggert <eggert@twinsun.com>
14701
14702 Be consistent about 'bool'; the old code used an enum in one
14703 module and an int in another, and this violates the C standard.
14704 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14705 * configure.ac (AC_HEADER_STDBOOL): Add.
14706 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14707 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14708 * src/symtab.c (hash_compare_symbol_t): Likewise.
14709 * src/system.h (bool, false, true): Use a definition consistent
14710 with ../lib/hash.c. All uses changed.
14711
14712 * src/complain.c (warning_issued): Renamed from warn_message_count,
14713 so that we needn't worry about integer overflow (!).
14714 Now of type bool. All uses changed.
14715 (complaint_issued): Renamed from complain_message_count; likewise.
14716
14717 * src/main.c (main): Use exit to exit with failure.
14718
14719 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14720 rather than 1 and 0.
14721 * src/main.c (main): Likewise.
14722 * src/getargs.c (getargs): Likewise.
14723 * src/reader.c (reader): Likewise.
14724
14725 * src/getarg.c (getargs): Remove duplicate code for
14726 "Try `bison --help'".
14727
14728 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14729 What was that "2" for?
14730
14731 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14732 * src/getargs.c (usage): Likewise.
14733
14734 * src/getargs.c (getargs): When there are too few operands, report
14735 the last one. When there are too many, report the first extra
14736 one. This is how diffutils does it.
14737
14738 2002-10-20 Paul Eggert <eggert@twinsun.com>
14739
14740 Remove K&R vestiges.
14741 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14742 * src/complain.c (VA_START): Remove. Assume prototypes.
14743 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14744 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14745 fatal): Assume prototypes.
14746 * src/complain.h: Assume prototypes.
14747 * src/system.h (PARAMS): Remove.
14748 Include <limits.h> unconditionally, since it's guaranteeed even
14749 for a freestanding C89 compiler.
14750 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14751 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
14752
14753 2002-10-20 Akim Demaille <akim@epita.fr>
14754
14755 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14756 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14757 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14758 (yyresolveStates, yyresolveAction, yyresolveStack)
14759 (yyprocessOneStack): Use them.
14760 (yy_reduce_print): New.
14761 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14762
14763 2002-10-20 Akim Demaille <akim@epita.fr>
14764
14765 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14766 arguments and output `void'.
14767 (b4_c_function): Rename as...
14768 (b4_c_function_def): this.
14769 (b4_c_function_decl, b4_c_ansi_function_def)
14770 (b4_c_ansi_function_decl): New.
14771 Change the interpretation of the arguments: before `int, foo', now
14772 `int foo, foo'.
14773 * data/yacc.c (yyparse): Prototype and define thanks to these.
14774 Adjust b4_c_function_def uses.
14775 * data/glr.c (yyparse): Likewise, but ANSI only.
14776
14777 2002-10-20 Akim Demaille <akim@epita.fr>
14778
14779 * src/output.c (prepare): Move the definition of `tokens_number',
14780 `nterms_number', `undef_token_number', `user_token_number_max'
14781 to...
14782 (prepare_tokens): Here.
14783 (prepare_tokens): Rename as...
14784 (prepare_symbols): this.
14785 (prepare): Move the definition of `rules_number' to...
14786 (prepare_rules): here.
14787 (prepare): Move the definition of `last', `final_state_number',
14788 `states_number' to...
14789 (prepare_states): here.
14790 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14791
14792 2002-10-20 Akim Demaille <akim@epita.fr>
14793
14794 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14795
14796 2002-10-20 Akim Demaille <akim@epita.fr>
14797
14798 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14799 * data/c.m4: here.
14800
14801 2002-10-20 Akim Demaille <akim@epita.fr>
14802
14803 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14804 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14805 `pair'.
14806 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14807 `name' to...
14808 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14809 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14810 These.
14811
14812 2002-10-19 Paul Eggert <eggert@twinsun.com>
14813
14814 Do not create a temporary file, as that involves security and
14815 cleanup headaches. Instead, use a pair of pipes.
14816 Derived from a suggestion by Florian Krohm.
14817 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14818 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14819 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14820 (BISON_PREREQ_SUBPIPE): Add.
14821 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14822 Add subpipe.h, subpipe.c.
14823 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14824 * po/POTFILES.in: Add lib/subpipe.c.
14825 * src/output.c: Include "subpipe.h".
14826 (m4_invoke): Remove decl.
14827 (scan_skel): New decl.
14828 (output_skeleton): Use pipe rather than temporary file for m4 input.
14829 Check that m4sugar.m4 is readable, to avoid deadlock.
14830 Check for pipe I/O error.
14831 * src/scan-skel.l (readpipe): Remove decl.
14832 (scan_skel): New function, to be used in place of m4_invoke.
14833 Read from stream rather than file.
14834
14835 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
14836 float, as this generates a warning on Solaris 8 + GCC 3.2 with
14837 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
14838 this generates a more-accurate value anyway.
14839
14840 * lib/timevar.c (timervar_accumulate): Rename locals to
14841 avoid confusion with similarly-named more-global.
14842 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
14843
14844 * src/output.c (prepare): Use xstrdup to convert char const *
14845 to char *, to avoid GCC warning.
14846
14847 2002-10-19 Akim Demaille <akim@epita.fr>
14848
14849 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
14850 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
14851 Use them to have `calc.y' ready for %pure-parser.
14852 * data/yacc.c (YYLEX): Pass a yylex return type to
14853 b4_c_function_call.
14854
14855 2002-10-19 Akim Demaille <akim@epita.fr>
14856
14857 Prototype support of %lex-param and %parse-param.
14858
14859 * src/parse-gram.y: Add the definition of the %lex-param and
14860 %parse-param tokens, plus their rules.
14861 Drop the `_' version of %glr-parser.
14862 Add the "," token.
14863 * src/scan-gram.l (INITIAL): Scan them.
14864 * src/muscle_tab.c: Comment changes.
14865 (muscle_insert, muscle_find): Rename `pair' as `probe'.
14866 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
14867 (muscle_entry_s): The `value' member is no longer const.
14868 Adjust all dependencies.
14869 * src/muscle_tab.c (muscle_init): Adjust: use
14870 MUSCLE_INSERT_STRING.
14871 Initialize the obstack earlier.
14872 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
14873 (muscle_pair_list_grow): New.
14874 * data/c.m4 (b4_c_function_call, b4_c_args): New.
14875 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
14876 * tests/calc.at: Use %locations, not --locations.
14877 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
14878
14879 2002-10-19 Akim Demaille <akim@epita.fr>
14880
14881 * src/getargs.c (usage): Take status as argument and exit
14882 accordingly.
14883 Report the traditional `Try ... --help' message when status != 0.
14884 (usage, version): Don't take a FILE * as arg, it is pointless.
14885 (getargs): When there is an incorrect number of arguments, make it
14886 an error, and report it GNUlically thanks to `usage ()'.
14887
14888 2002-10-18 Paul Eggert <eggert@twinsun.com>
14889
14890 * data/glr.c (yyreportParseError): Don't assume that sprintf
14891 yields the length of the printed string, as this is not true
14892 on SunOS 4.1.4. Reported by Peter Klein.
14893
14894 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
14895 * tests/conflicts.at (%nonassoc and eof): Likewise.
14896 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
14897
14898 2002-10-17 Akim Demaille <akim@epita.fr>
14899
14900 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
14901 * src/getargs.c (trace_types, trace_args): Adjust.
14902 * src/reader.c (grammar_current_rule_prec_set)
14903 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
14904 Standardize error messages.
14905 And s/@prec/%prec/!
14906 (reader): Use trace_flag to enable scanner/parser debugging,
14907 instead of an adhoc scheme.
14908 * src/scan-gram.l: Remove trailing debugging code.
14909
14910 2002-10-16 Paul Eggert <eggert@twinsun.com>
14911
14912 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
14913 MUSCLE_TAB_H.
14914
14915 * NEWS: Officially drop support for building Bison with K&R C,
14916 since it didn't work anyway and it's not worth worrying about.
14917 * Makefile.maint (wget_files): Remove ansi2knr.c.
14918 (ansi2knr.c-url_prefix): Remove.
14919 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
14920 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14921 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14922
14923 2002-10-15 Paul Eggert <eggert@twinsun.com>
14924
14925 Stop using the "enum_" trick for K&R-style function definitions;
14926 it confused me, and I was the author! Instead, assume that people
14927 who want to use K&R C compilers (when using these modules in GCC,
14928 perhaps?) will run ansi2knr.
14929
14930 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
14931 All uses of "enum_" changed to "enum ".
14932 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14933 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14934
14935 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
14936 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
14937 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
14938 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
14939 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
14940 abitset_not, abitset_ones, abitset_or, abitset_or_and,
14941 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
14942 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
14943 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
14944 Use function prototypes; this removes the need for declaring
14945 static functions simply to provide their prototypes.
14946 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
14947 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
14948 bitset_count_, bitset_create, bitset_dump, bitset_first,
14949 bitset_free, bitset_init, bitset_last, bitset_next,
14950 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
14951 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
14952 bitset_print, bitset_release_memory, bitset_toggle_,
14953 bitset_type_choose, bitset_type_get, bitset_type_name_get,
14954 debug_bitset): Likewise.
14955 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
14956 * lib/bitset_stats.c (bitset_log_histogram_print,
14957 bitset_percent_histogram_print, bitset_stats_and,
14958 bitset_stats_and_cmp, bitset_stats_and_or,
14959 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
14960 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
14961 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
14962 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
14963 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
14964 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
14965 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
14966 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
14967 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
14968 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
14969 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
14970 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
14971 bitset_stats_zero): Likewise.
14972 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14973 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14974 bitsetv_dump, debug_bitsetv): Likewise.
14975 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
14976 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
14977 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
14978 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
14979 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
14980 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
14981 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14982 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14983 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14984 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14985 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14986 Likewise.
14987 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14988 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14989 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14990 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14991 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14992 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14993 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14994 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14995 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14996 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14997 lbitset_xor_cmp, lbitset_zero): Likewise.
14998
14999 2002-10-14 Akim Demaille <akim@epita.fr>
15000
15001 Version 1.75.
15002
15003 2002-10-14 Akim Demaille <akim@epita.fr>
15004
15005 * tests/Makefile.am (maintainer-check-posix): New.
15006
15007 2002-10-14 Akim Demaille <akim@epita.fr>
15008
15009 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15010 member.
15011
15012 2002-10-14 Akim Demaille <akim@epita.fr>
15013
15014 * src/tables.c (table_ninf_remap): base -> tab.
15015 Reported by Matt Rosing.
15016
15017 2002-10-14 Paul Eggert <eggert@twinsun.com>
15018
15019 * tests/action.at, tests/calc.at, tests/conflicts.at,
15020 tests/cxx-type.at, tests/headers.at, tests/input.at,
15021 tests/regression.at, tests/synclines.at, tests/torture.at:
15022 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15023 so that the tests still work even if POSIXLY_CORRECT is set.
15024 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
15025
15026 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15027 for portability to K&R hosts. Fix typo: signed char is guaranteed
15028 only to 127, not to 128.
15029 * data/glr.c (yysigned_char): New type.
15030 * data/yacc.c (yysigned_char): Likewise.
15031 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15032
15033 2002-10-13 Paul Eggert <eggert@twinsun.com>
15034
15035 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15036 true due to limited range of data type" warning from GCC.
15037
15038 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15039 by wrapping enum yytokentype's definition inside #ifndef
15040 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15041
15042 2002-10-13 Akim Demaille <akim@epita.fr>
15043
15044 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15045 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15046
15047 2002-10-13 Akim Demaille <akim@epita.fr>
15048
15049 * Makefile.maint: Update from Autoconf 2.54.
15050 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15051
15052 2002-10-13 Akim Demaille <akim@epita.fr>
15053
15054 * src/print.c (print_state): Separate the list of solved conflicts
15055 from the other items.
15056 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15057
15058 2002-10-13 Akim Demaille <akim@epita.fr>
15059
15060 Let nondeterministic skeletons be usable with deterministic
15061 tables.
15062
15063 With the patch, GAWK compiled by GCC without -O2 passes its test
15064 suite using a GLR parser driven by LALR tables. It fails with -O2
15065 because `struct stat' gives two different answers on my machine:
15066 88 (definition of an auto var) and later 96 (memset on this var).
15067 Hence the stack is badly corrumpted. The headers inclusion is to
15068 blame: if I move the awk.h inclusion before GLR's system header
15069 inclusion, the two struct stat have the same size.
15070
15071 * src/tables.c (pack_table): Always create conflict_table.
15072 (token_actions): Always create conflict_list.
15073 * data/glr.c (YYFLAG): Remove, unused.
15074
15075 2002-10-13 Akim Demaille <akim@epita.fr>
15076
15077 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15078 (O0FLAGS): New.
15079 (VALGRIND, GXX): New.
15080 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15081 * tests/bison.in: Run $PREBISON a pre-command.
15082 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15083 (maintainer-check-g++): New.
15084 * Makefile.am (maintainer-check): New.
15085
15086 2002-10-13 Akim Demaille <akim@epita.fr>
15087
15088 * data/glr.c: Formatting changes.
15089 Tweak some trace messages to match yacc.c's.
15090
15091 2002-10-13 Akim Demaille <akim@epita.fr>
15092
15093 GLR parsers sometimes raise parse errors instead of performing the
15094 default reduction.
15095 Reported by Charles-Henry de Boysson.
15096
15097 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
15098 check the length of the traces when %glr.
15099 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15100 GLR's traces.
15101 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15102 Test GLR parsers.
15103 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15104 (yyltype): Remove the yy prefix from the member names.
15105 (yytable): Complete its comment.
15106 (yygetLRActions): Map error action number from YYTABLE from
15107 YYTABLE_NINF to 0.
15108 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15109 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15110 not satisfying as we could compare an YYACTION computed from
15111 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15112 only value for error actions.
15113 (yyreportParseError): In verbose parse error messages, don't issue
15114 `error' in the list of expected tokens.
15115 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15116 next action to perform to match glr.c's decoding.
15117 (yytable): Complete its comment.
15118
15119 2002-10-13 Paul Eggert <eggert@twinsun.com>
15120
15121 Fix problem reported by Henrik Grubbstroem in
15122 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
15123 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15124 because the Bison parser reads the second action before reducing
15125 the first one.
15126 * src/scan-gram.l (rule_length): New static var.
15127 Use it to keep track of the rule length in the scanner, since
15128 we can't expect the parser to be in lock-step sync with the scanner.
15129 (handle_action_dollar, handle_action_at): Use this var.
15130 * tests/actions.at (Exotic Dollars): Test for the problem.
15131
15132 2002-10-12 Paul Eggert <eggert@twinsun.com>
15133
15134 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15135 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15136 Include <sys/time.h> when checking for clock_t and struct tms.
15137 Use same include order as source.
15138 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
15139 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
15140
15141 * lib/timevar.c: Update copyright date and clarify comments.
15142 (get_time) [IN_GCC]: Keep the GCC version for reference.
15143
15144 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15145 GCC version as of today, then merge Bison's changes.
15146 Change "GCC" to "Bison" in copyright notice. timevar.def's
15147 author is Akim, so change that too.
15148
15149 * src/reader.c (grammar_current_rule_check):
15150 Don't worry about the default action if $$ is untyped.
15151 Prevents bogus warnings reported by Jim Gifford in
15152 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
15153
15154 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15155 * data/glr.c, data/lalr1.cc, data/yacc.c:
15156 Output token definitions before the first part of user declarations.
15157 Fixes compatibility problem reported by Jim Gifford for kbd in
15158 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
15159
15160 2002-10-11 Paul Eggert <eggert@twinsun.com>
15161
15162 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15163 (yyparse): here. This undoes some of the 2002-07-25 change.
15164 Compatibility problem reported by Ralf S. Engelschall with
15165 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15166
15167 2002-10-11 Akim Demaille <akim@epita.fr>
15168
15169 * tests/regression.at Characters Escapes): New.
15170 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15171 characters.
15172 Reported by Jan Nieuwenhuizen.
15173
15174 2002-10-11 Akim Demaille <akim@epita.fr>
15175
15176 * po/id.po: New.
15177
15178 2002-10-10 Paul Eggert <eggert@twinsun.com>
15179
15180 Portability fixes for bitsets; this also avoids several GCC
15181 warnings.
15182
15183 * lib/abitset.c: Include <stddef.h>, for offsetof.
15184 * lib/lbitset.c: Likewise.
15185
15186 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15187 properly for vectors of objects. Do not assume that adding a
15188 header size to a multiple of a word size yields a value that is
15189 properly aligned for the whole union.
15190 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15191
15192 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15193 unique names for structures.
15194 * lib/ebitset.c (ebitset_bytes): Likewise.
15195 * lib/lbitset.c (lbitset_bytes): Likewise.
15196
15197 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15198 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15199 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15200 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15201 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15202 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15203 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15204 to improve the type-checking that GCC can do.
15205 * lib/bitset.c (bitset_op4_cmp): Likewise.
15206 * lib/bitset_stats.c (bitset_stats_count,
15207 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15208 bitset_stats_copy, bitset_stats_disjoint_p,
15209 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15210 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15211 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15212 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15213 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15214 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15215 bitset_stats_or_and_cmp): Likewise.
15216 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15217 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15218 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15219 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15220
15221 * lib/abitset.h: Include bitset.h, not bbitset.h.
15222 * lib/ebitset.h: Likewise.
15223 * lib/lbitset.h: Likewise.
15224
15225 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15226 All instances of parameters of type enum bitset_opts are now of
15227 type enum_bitset_opts, to conform to the C Standard, and similarly
15228 for enum_bitset_type.
15229 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15230 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15231
15232 Do not use "struct bitset_struct" to mean different things in
15233 different modules. Not only is this confusing, it violates
15234 the C Standard, which requires that structure types in different
15235 modules must be compatible if one is to be passed to the other.
15236 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15237 All instances of "struct bitset_struct *" replaced with "bitset".
15238 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15239 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15240 struct lbitset_struct, struct bitset_stats_struct): New types.
15241 All uses of struct bitset_struct changed to union bitset_union,
15242 etc.
15243 * lib/abitset.c (struct abitset_struct, abitset,
15244 struct bitset_struct): Remove.
15245 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15246 struct bitset_struct): Remove.
15247 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15248 bitset_struct): Remove.
15249 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15250 Likewise.
15251
15252 Do not call a function of type T using a call that assumes the
15253 function is of a different type U. Standard C requires that a
15254 function must be called with a type that is compatible with its
15255 definition.
15256 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15257 New decls.
15258 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15259 New functions.
15260 * lib/ebitset.c (PFV): Remove.
15261 * lib/lbitset.c (PFV): Likewise.
15262 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15263 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15264 decls.
15265 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15266 (ebitset_vtable): Use them.
15267 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15268 lbitset_xor): New functions.
15269 (lbitset_vtable): Use them.
15270
15271 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15272 Declare.
15273
15274 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15275 GCC warning.
15276 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15277 Use offsetof, for simplicity.
15278
15279 2002-10-06 Paul Eggert <eggert@twinsun.com>
15280
15281 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15282 the same width as int. This reapplies a hunk of the 2002-08-12 patch
15283 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
15284 which was inadvertently undone by the 2002-09-30 patch.
15285 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15286 the same width as int.
15287
15288 2002-10-04 Paul Eggert <eggert@twinsun.com>
15289
15290 Version 1.50.
15291
15292 * configure.ac (AC_INIT), NEWS: Increment version number.
15293
15294 * doc/bison.texinfo: Minor spelling, grammar, and white space
15295 fixes.
15296 (Symbols): Mention that any negative value returned from yylex
15297 signifies end-of-input. Warn about negative chars. Mention
15298 the portable Standard C character set.
15299
15300 The GNU coding standard says CFLAGS and YFLAGS are reserved
15301 for the installer to set.
15302 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15303 * src/Makefile.am (AM_CFLAGS): Likewise.
15304 (AM_YFLAGS): Renamed from YFLAGS.
15305
15306 Fix some MAX and MIN problems.
15307 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15308 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15309 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15310 * src/reader.c (reader): Use it.
15311
15312 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15313 POSIX 1003.1-2001 has removed fgrep.
15314
15315 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15316
15317 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15318 interpreted as signed.
15319 * lib/ebitset.c (ebitset_list): Fix bug.
15320
15321 2002-10-01 Paul Eggert <eggert@twinsun.com>
15322
15323 More fixes for 64-bit hosts and large bitsets.
15324
15325 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15326 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15327 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15328 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15329 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15330 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15331 bitset_count_): Likewise.
15332 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15333 bitset_first, bitset_last): Likewise.
15334 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15335 bitset_stats_list_reverse, bitset_stats_size,
15336 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15337 Likewise.
15338 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15339 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15340 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15341 bitsetv_reflexive_transitive_closure): Likewise.
15342 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15343 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15344 Likewise.
15345 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15346 Likewise.
15347
15348 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15349 Use size_t, not unsigned int, to count bytes.
15350 * lib/abitset.h (abitset_bytes): Likewise.
15351 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15352 Likewise.
15353 * lib/bitset.h (bitset_bytes): Likewise.
15354 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15355 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15356 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15357 * lib/ebitset.c (ebitset_bytes): Likewise.
15358 * lib/ebitset.h (ebitset_bytes): Likewise.
15359 * lib/lbitset.c (lbitset_bytes): Likewise.
15360 * lib/lbitset.h (lbitset_bytes): Likewise.
15361
15362 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15363 abitset_subset_p, abitset_disjoint_p, abitset_and,
15364 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15365 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15366 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15367 abitset_or_and, abitset_or_and_cmp):
15368 Use bitset_windex instead of unsigned int.
15369 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15370 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15371 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15372 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15373 Likewise.
15374 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
15375
15376 * lib/bitset.c (bitset_print):
15377 Use proper printf formats for widths of integer types.
15378 * lib/bitset_stats.c (bitset_percent_histogram_print,
15379 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15380 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15381 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15382 * lib/lbitset.c (lbitset_bytes): Likewise.
15383
15384 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15385 BITSET_SIZE_MAX): New macros.
15386 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15387 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15388 to BITSET_WINDEX_MAX.
15389
15390 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15391 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15392 since we now return the bitset_bindex type (not int).
15393
15394 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15395 when computing sizes.
15396 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15397
15398 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15399 and avoid cast to unsigned.
15400
15401 2002-09-30 Akim Demaille <akim@epita.fr>
15402
15403 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15404 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15405 Updates from Michael Hayes.
15406
15407 2002-09-30 Art Haas <ahaas@neosoft.com>
15408
15409 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15410 invocations.
15411 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15412 defined.
15413
15414 2002-09-27 Akim Demaille <akim@epita.fr>
15415
15416 Version 1.49c.
15417
15418 2002-09-27 Akim Demaille <akim@epita.fr>
15419
15420 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15421 (Because of AC_LIBSOURCE).
15422
15423 2002-09-27 Akim Demaille <akim@epita.fr>
15424
15425 Playing with Autoscan.
15426
15427 * configure.ac: Remove the old LIBOBJ tweaks.
15428 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15429 * lib/strrchr.c: New.
15430 * lib/strtol.c: New, from the Coreutils 4.5.1.
15431
15432 2002-09-27 Akim Demaille <akim@epita.fr>
15433
15434 Playing with Autoscan.
15435
15436 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15437 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15438 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15439 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15440 Coreutils 4.5.1.
15441
15442 2002-09-24 Akim Demaille <akim@epita.fr>
15443
15444 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15445 (Frequently Asked Questions, Parser Stack Overflow): New.
15446
15447 2002-09-13 Akim Demaille <akim@epita.fr>
15448
15449 Playing with autoscan.
15450
15451 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15452 * src/files.c (skeleton_find): Remove, unused.
15453 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15454 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15455
15456 2002-09-13 Akim Demaille <akim@epita.fr>
15457
15458 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15459 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15460
15461 2002-09-13 Akim Demaille <akim@epita.fr>
15462
15463 * configure.ac: Require 2.54.
15464 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15465 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15466 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15467 Remove, provided by Autoconf macros.
15468
15469 2002-09-12 Akim Demaille <akim@epita.fr>
15470
15471 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15472
15473 2002-09-12 Akim Demaille <akim@epita.fr>
15474
15475 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15476 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15477 Reported by Martin Mokrejs.
15478
15479 2002-09-10 Akim Demaille <akim@epita.fr>
15480
15481 * src/parse-gram.y: Associate a human readable string to each
15482 token type.
15483 * tests/regression.at (Invalid inputs): Adjust.
15484
15485 2002-09-10 Gary V. Vaughan <gary@gnu.org>
15486
15487 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15488 with an Autoconf-2.5x style configure.ac.
15489
15490 2002-09-06 Paul Eggert <eggert@twinsun.com>
15491
15492 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15493 exception applies only to yacc.c. This is a modification of a
15494 patch originally suggested by Akim Demaille.
15495
15496 2002-09-06 Akim Demaille <akim@epita.fr>
15497
15498 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15499 here to...
15500 * data/yacc.c: here.
15501
15502 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15503 LocationType.
15504 (b4_ltype): Default to yy::Location from location.hh.
15505
15506 2002-09-04 Jim Meyering <jim@meyering.net>
15507
15508 * data/yacc.c: Guard the declaration of yytoknum also with
15509 `#ifdef YYPRINT', so it is declared only when used.
15510
15511 2002-09-04 Akim Demaille <akim@epita.fr>
15512
15513 * configure.in: Rename as...
15514 * configure.ac: this.
15515 Bump to 1.49c.
15516
15517 2002-09-04 Akim Demaille <akim@epita.fr>
15518
15519 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15520 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15521 translate maintainer only messages.
15522
15523 2002-08-12 Paul Eggert <eggert@twinsun.com>
15524
15525 Version 1.49b.
15526
15527 * Makefile.am (SUBDIRS): Remove intl.
15528 (DISTCLEANFILES): Remove.
15529 * NEWS: Mention that GNU M4 is now required. Clarify what is
15530 meant by "larger grammars". Mention the pt_BR translation.
15531 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15532 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15533 Bump version from 0.11.2 to 0.11.5.
15534 (BISON_PREREQ_STAGE): Remove.
15535 (AM_GNU_GETTEXT): Use external gettext.
15536 (AC_OUTPUT): Remove intl/Makefile.
15537
15538 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15539
15540 * data/glr.c: Include string.h, for strlen.
15541 (yyreportParseError): Use size_t for yysize.
15542 (yy_yypstack): No longer nested inside yypstates, as nested
15543 functions are not portable. Do not assume size_t is the
15544 same width as int.
15545 (yypstates): Do not assume that ptrdiff_t is the same width
15546 as int, and similarly for yyposn and YYINDEX.
15547
15548 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15549
15550 * lib/Makefile.am (INCLUDES): Do not include from the intl
15551 directory, which has been removed.
15552 * src/Makefile.am (INCLUDES): Likewise.
15553
15554 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15555 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15556 New vars.
15557
15558 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15559 * tests/Makefile.am (EXTRA_DIST): Likewise.
15560
15561 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15562 Do not assume that bitset_windex is the same width as unsigned.
15563
15564 * lib/abitset.c (abitset_unused_clear): Do not assume that
15565 bitset_word is the same width as int.
15566 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15567 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15568 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15569 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15570 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15571
15572 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15573 portability to one's complement hosts!).
15574 * lib/ebitset.c (ebitset_op1): Likewise.
15575 * lib/lbitset.c (lbitset_op1): Likewise.
15576
15577 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15578 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15579 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15580 Sync with fileutils.
15581 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15582 lib/gettext.h: Sync with diffutils.
15583
15584 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15585 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15586
15587 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15588 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15589 check for void *.
15590
15591 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15592 size_t; the old version tried to do this but casted improperly.
15593 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15594 (bitset_test): Now returns int, not unsigned long.
15595
15596 * lib/bitset_stats.c: Include "gettext.h".
15597 (_): New macro.
15598 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15599 name locals "index", as it generates unnecessary warnings on some
15600 hosts that have an "index" function.
15601
15602 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15603 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15604 they need translation.
15605 * src/LR0.c (state_list_append, new_itemsets, get_state,
15606 append_states, generate_states): Likewise.
15607 * src/assoc.c (assoc_to_string): Likewise.
15608 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15609 * src/gram.c (grammar_dump): Likewise.
15610 * src/injections.c (injections_compute): Likewise.
15611 * src/lalr.c (lookaheads_print): Likewise.
15612 * src/relation.c (relation_transpose): Likewise.
15613 * src/scan-gram.l: Likewise.
15614 * src/tables.c (table_grow, pack_vector): Likewise.
15615
15616 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15617 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15618 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15619 * m4/mbstate_t.m4: Sync with fileutils.
15620 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15621
15622 * po/LINGUAS: Add pt_BR.
15623 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15624 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15625 lib/timevar.c.
15626 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15627 manual recommends.
15628 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15629
15630 * src/complain.c (strerror_r): Remove decl; not needed.
15631 (strerror): Use same pattern as ../lib/error.c.
15632
15633 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15634
15635 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15636
15637 * src/main.c (main): Cast result of bindtextdomain and textdomain
15638 to void, to avoid a GCC warning when --disable-nls is in effect.
15639
15640 * src/scan-gram.l: Use strings rather than escapes when possible,
15641 to minimize the number of warnings from xgettext.
15642 (handle_action_dollar, handle_action_at): Don't use isdigit,
15643 as it mishandles negative chars and it may not work as expected
15644 outside the C locale.
15645
15646 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15647 this is a GCC extension and is not portable to other compilers.
15648
15649 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15650 Do not include <ctype.h>; no longer needed.
15651 Do not include <malloc.h>; no longer needed (and generates
15652 warnings on OpenBSD 3.0).
15653
15654 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15655 it's not portable.
15656
15657 * tests/regression.at: Do not use 'cc -c input.c -o input';
15658 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15659
15660 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15661 exit status as failure, not just exit status 1. Sun C exits
15662 with status 2 sometimes.
15663
15664 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15665 Use it for the two large tests.
15666
15667 2002-08-02 Akim Demaille <akim@epita.fr>
15668
15669 * src/conflicts.c (conflicts_output): Don't output rules never
15670 reduced here, since anyway that computation doesn't work.
15671 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15672 (rule_useless_p, rule_never_reduced_p): New.
15673 (grammar_rules_partial_print): Use a filter instead of a range.
15674 Display the title only if needed.
15675 (grammar_rules_print): Adjust.
15676 (grammar_rules_never_reduced_report): New.
15677 * src/tables.c (action_row): Move the computation of rules never
15678 reduced to...
15679 (token_actions): here.
15680 * src/main.c (main): Make the parser before making the report, so
15681 that rules never reduced are computed.
15682 Call grammar_rules_never_reduced_report.
15683 * src/print.c (print_results): Report rules never reduced.
15684 * tests/conflicts.at, tests/reduce.at: Adjust.
15685
15686 2002-08-01 Akim Demaille <akim@epita.fr>
15687
15688 Instead of attaching lookaheads and duplicating the rules being
15689 reduced by a state, attach the lookaheads to the reductions.
15690
15691 * src/state.h (state_t): Remove the `lookaheads',
15692 `lookaheads_rule' member.
15693 (reductions_t): Add a `lookaheads' member.
15694 Use a regular array for the `rules'.
15695 * src/state.c (reductions_new): Initialize the lookaheads member
15696 to 0.
15697 (state_rule_lookaheads_print): Adjust.
15698 * src/state.h, src/state.c (state_reductions_find): New.
15699 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15700 (count_rr_conflicts): Adjust.
15701 * src/lalr.c (LArule): Remove.
15702 (add_lookback_edge): Adjust.
15703 (state_lookaheads_count): New.
15704 (states_lookaheads_initialize): Merge into...
15705 (initialize_LA): this.
15706 (lalr_free): Adjust.
15707 * src/main.c (main): Don't free nullable and derives too early: it
15708 is used by --verbose.
15709 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15710
15711 2002-08-01 Akim Demaille <akim@epita.fr>
15712
15713 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15714 `rule_number_t**'.
15715 (set_derives, free_derives): Rename as...
15716 (derives_compute, derives_free): this.
15717 Adjust all dependencies.
15718 * src/nullable.c (set_nullable, free_nullable): Rename as...
15719 (nullable_compute, nullable_free): these.
15720 (rule_list_t): Store rule_t *, not rule_number_t.
15721 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15722 pointers, instead of their numbers.
15723 * src/main.c (main): Call nullable_free, and derives_free earlier,
15724 as they were lo longer used.
15725
15726 2002-08-01 Akim Demaille <akim@epita.fr>
15727
15728 * lib/timevar.c (get_time): Include children time.
15729 * src/lalr.h (LA, LArule): Don't export them: used with the
15730 state_t.
15731 * src/lalr.c (LA, LArule): Static.
15732 * src/lalr.h, src/lalr.c (lalr_free): New.
15733 * src/main.c (main): Call it.
15734 * src/tables.c (pack_vector): Check whether loc is >= to the
15735 table_size, not >.
15736 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15737 (tables_generate): do it, since that's also it which allocates
15738 them.
15739 Don't free LA and LArule, main does.
15740
15741 2002-07-31 Akim Demaille <akim@epita.fr>
15742
15743 Separate parser tables computation and output.
15744
15745 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15746 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15747 (yydefgoto, yydefact, high): Move to...
15748 * src/tables.h, src/tables.c: here.
15749 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15750 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15751 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15752 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15753 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15754 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15755 (action_row, save_row, token_actions, save_column, default_goto)
15756 (goto_actions, sort_actions, matching_state, pack_vector)
15757 (table_ninf_remap, pack_table, prepare_actions): Move to...
15758 * src/tables.c: here.
15759 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15760 * src/output.c (token_actions, output_base, output_conflicts)
15761 (output_check): Merge into...
15762 (prepare_actions): this.
15763 (actions_output): Rename as...
15764 (user_actions_output): this.
15765 * src/main.c (main): Call tables_generate and tables_free.
15766
15767 2002-07-31 Akim Demaille <akim@epita.fr>
15768
15769 Steal GCC's --time-report support.
15770
15771 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15772 stolen/adjusted from GCC.
15773 * m4/stage.m4: Remove time related checks.
15774 * m4/timevar.m4: New.
15775 * configure.in: Adjust.
15776 * src/system.h: Adjust to using timevar.h.
15777 * src/getargs.h, src/getargs.c: Support trace_time for
15778 --trace=time.
15779 * src/main.c (stage): Remove.
15780 (main): Replace `stage' invocations with timevar calls.
15781 * src/output.c: Insert pertinent timevar calls.
15782
15783 2002-07-31 Akim Demaille <akim@epita.fr>
15784
15785 Let --trace have arguments.
15786
15787 * src/getargs.h (enum trace_e): New.
15788 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15789 (long_options, short_options): --trace/-T takes an optional
15790 argument.
15791 Change all the uses of trace_flag to reflect the new flags.
15792 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15793
15794 Strengthen `stage' portability.
15795
15796 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15797 * configure.in: Use it.
15798 Don't check for malloc.h and sys/times.h.
15799 * src/system.h: Include them when appropriate.
15800 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15801 times and struct tms are available.
15802
15803 2002-07-30 Akim Demaille <akim@epita.fr>
15804
15805 In verbose parse error message, don't report `error' as an
15806 expected token.
15807 * tests/actions.at (Printers and Destructors): Adjust.
15808 * tests/calc.at (Calculator $1): Adjust.
15809 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15810 error message, do not report the parser accepts the error token in
15811 that state.
15812
15813 2002-07-30 Akim Demaille <akim@epita.fr>
15814
15815 Normalize conflict related messages.
15816
15817 * src/complain.h, src/complain.c (warn, complain): New.
15818 * src/conflicts.c (conflicts_print): Use them.
15819 (conflict_report_yacc): New, extracted from...
15820 (conflicts_print): here.
15821 * tests/conflicts.at, tests/existing.at: Adjust.
15822
15823 2002-07-30 Akim Demaille <akim@epita.fr>
15824
15825 Report rules which are never reduced by the parser: those hidden
15826 by conflicts.
15827
15828 * src/LR0.c (save_reductions): Don't make the final state too
15829 different: save its reduction (accept) instead of having a state
15830 without any action (no shift or goto, no reduce).
15831 Note: the final state is now a ``regular'' state, i.e., the
15832 parsers now contain `reduce 0' as default reduction.
15833 Nevertheless, since they decide to `accept' when yystate =
15834 final_state, they still will not reduce rule 0.
15835 * src/print.c (print_actions, print_reduction): Adjust.
15836 * src/output.c (action_row): Track reduced rules.
15837 (token_actions): Report rules never reduced.
15838 * tests/conflicts.at, tests/regression.at: Adjust.
15839
15840 2002-07-30 Akim Demaille <akim@epita.fr>
15841
15842 `stage' was accidently included in a previous patch.
15843 Initiate its autoconfiscation.
15844
15845 * configure.in: Look for malloc.h and sys/times.h.
15846 * src/main.c (stage): Adjust.
15847 Report only when trace_flag.
15848
15849 2002-07-29 Akim Demaille <akim@epita.fr>
15850
15851 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
15852 state_number_t.
15853 (errs_t): symbol_t*, not symbol_number_t.
15854 (reductions_t): rule_t*, not rule_number_t.
15855 (FOR_EACH_SHIFT): New.
15856 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
15857 * src/print.c, src/print_graph.c: Adjust.
15858
15859 2002-07-29 Akim Demaille <akim@epita.fr>
15860
15861 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
15862
15863 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
15864 (endtoken, accept): these.
15865 * src/reader.c (reader): Set endtoken's default tag to "$end".
15866 Set undeftoken's tag to "$undefined" instead of "$undefined.".
15867 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
15868 Adjust.
15869
15870 2002-07-29 Akim Demaille <akim@epita.fr>
15871
15872 * src/reduce.c (reduce_grammar): When the language is empty,
15873 complain about the start symbol, not the axiom.
15874 Use its location.
15875 * tests/reduce.at (Empty Language): New.
15876
15877 2002-07-26 Akim Demaille <akim@epita.fr>
15878
15879 * src/reader.h, src/reader.c (gram_error): ... can't get
15880 yycontrol without making too strong assumptions on the parser
15881 itself.
15882 * src/output.c (prepare_tokens): Use the real 0th value of
15883 token_translations instead of `0'.
15884 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
15885 visible here.
15886 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
15887 for the time being: %locations ought to provide it to yyerror.
15888
15889 2002-07-25 Akim Demaille <akim@epita.fr>
15890
15891 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
15892 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
15893 * tests/regression.at (Web2c Actions): Adjust.
15894
15895 2002-07-25 Akim Demaille <akim@epita.fr>
15896
15897 Stop storing rules from 1 to nrules + 1.
15898
15899 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
15900 * src/nullable.c, src/output.c, src/print.c, src/reader.c
15901 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
15902 Iterate from 0 to nrules.
15903 Use rule_number_as_item_number and item_number_as_rule_number.
15904 Adjust to `derive' now containing possibly 0.
15905 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
15906 Handle the `- 1' part in rule numbers from/to item numbers.
15907 * src/conflicts.c (log_resolution): Fix the message which reversed
15908 shift and reduce.
15909 * src/output.c (action_row): Initialize default_rule to -1.
15910 (token_actions): Adjust.
15911 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
15912 expected output.
15913 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
15914
15915 2002-07-25 Akim Demaille <akim@epita.fr>
15916
15917 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
15918 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
15919 (b4_c_knr_arg_decl): New.
15920 * data/yacc.c: Use it to define yysymprint, yydestruct, and
15921 yyreport_parse_error.
15922
15923 2002-07-25 Akim Demaille <akim@epita.fr>
15924
15925 * data/yacc.c (yyreport_parse_error): New, extracted from...
15926 (yyparse): here.
15927 (yydestruct, yysymprint): Move above yyparse.
15928 Be K&R compliant.
15929
15930 2002-07-25 Akim Demaille <akim@epita.fr>
15931
15932 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
15933 replace...
15934 (b4_sint_type, b4_uint_type): these.
15935 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
15936 * tests/regression.at (Web2c Actions): Adjust.
15937
15938 2002-07-25 Akim Demaille <akim@epita.fr>
15939
15940 * src/gram.h (TIEM_NUMBER_MAX): New.
15941 (item_number_of_rule_number, rule_number_of_item_number): Rename
15942 as...
15943 (rule_number_as_item_number, item_number_as_rule_number): these.
15944 Adjust dependencies.
15945 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15946 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15947 (symbol_number_to_vector_number): New.
15948 (order): Of vector_number_t* type.
15949 (base_t, BASE_MAX, BASE_MIN): New.
15950 (froms, tos, width, pos, check): Of base_t type.
15951 (action_number_t, ACTION_MIN, ACTION_MAX): New.
15952 (actrow): Of action_number_t type.
15953 (conflrow): Of unsigned int type.
15954 (table_ninf, base_ninf): New.
15955 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
15956 (muscle_insert_int_table, muscle_insert_base_table)
15957 (muscle_insert_rule_number_table): New.
15958 (prepare_tokens): Output `toknum' as int_table.
15959 (action_row): Returns a rule_number_t.
15960 Use ACTION_MIN, not SHRT_MIN.
15961 (token_actions): yydefact is rule_number_t*.
15962 (table_ninf_remap): New.
15963 (pack_table): Use it for `base' and `table'.
15964 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
15965 replaced with...
15966 (YYPACT_NINF, YYTABLE_NINF): these.
15967 (yypact, yytable): Compute their types instead of hard-coded
15968 `short'.
15969 * tests/regression.at (Web2c Actions): Adjust.
15970
15971 2002-07-19 Akim Demaille <akim@epita.fr>
15972
15973 * src/scan-gram.l (id): Can start with an underscore.
15974
15975 2002-07-16 Akim Demaille <akim@epita.fr>
15976
15977 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
15978 Adjust all former `associativity' dependencies.
15979 * src/symtab.c (symbol_new): Default associativity is `undef', not
15980 `right'.
15981 (symbol_check_alias_consistence): Adjust.
15982
15983 2002-07-09 Akim Demaille <akim@epita.fr>
15984
15985 * doc/bison.texinfo: Properly set the ``header'' part.
15986 Use @dircategory ``GNU programming tools'' as per Texinfo's
15987 documentation.
15988 Use @copying.
15989
15990 2002-07-09 Akim Demaille <akim@epita.fr>
15991
15992 * lib/quotearg.h: Protect against multiple inclusions.
15993 * src/location.h (location_t): Add a `file' member.
15994 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15995 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15996 `error_one_per_line' support.
15997
15998 2002-07-09 Akim Demaille <akim@epita.fr>
15999
16000 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16001 * src/reader.c (lineno): Remove.
16002 Adjust all dependencies.
16003 (get_merge_function): Take a location and use complain_at.
16004 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16005 * tests/regression.at (Invalid inputs, Mixing %token styles):
16006 Adjust.
16007
16008 2002-07-09 Akim Demaille <akim@epita.fr>
16009
16010 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16011 recovery rule, and forbid extensions when --yacc.
16012 (gram_error): Use complain_at.
16013 * src/reader.c (reader): Exit if there were parse errors.
16014
16015 2002-07-09 Akim Demaille <akim@epita.fr>
16016
16017 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16018 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16019 Reported by R Blake <blakers@mac.com>.
16020
16021 2002-07-09 Akim Demaille <akim@epita.fr>
16022
16023 * data/yacc.c: Output the copyright notive in the header.
16024
16025 2002-07-03 Akim Demaille <akim@epita.fr>
16026
16027 * src/output.c (froms, tos): Are state_number_t.
16028 (save_column): sp, sp1, and sp2 are state_number_t.
16029 (prepare): Rename `final' as `final_state_number', `nnts' as
16030 `nterms_number', `nrules' as `rules_number', `nstates' as
16031 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16032 unused.
16033 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16034 * data/lalr1.cc (nsym_): Remove, unused.
16035
16036 2002-07-03 Akim Demaille <akim@epita.fr>
16037
16038 * src/lalr.h, src/lalr.c (goto_number_t): New.
16039 * src/lalr.c (goto_list_t): New.
16040 Propagate them.
16041 * src/nullable.c (rule_list_t): New.
16042 Propagate.
16043 * src/types.h: Remove.
16044
16045 2002-07-03 Akim Demaille <akim@epita.fr>
16046
16047 * src/closure.c (print_fderives): Use rule_rhs_print.
16048 * src/derives.c (print_derives): Use rule_rhs_print.
16049 (rule_list_t): New, replaces `shorts'.
16050 (set_derives): Add comments.
16051 * tests/sets.at (Nullable, Firsts): Adjust.
16052
16053 2002-07-03 Akim Demaille <akim@epita.fr>
16054
16055 * src/output.c (prepare_actions): Free `tally' and `width'.
16056 (prepare_actions): Allocate and free `order'.
16057 * src/symtab.c (symbols_free): Free `symbols'.
16058 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16059 * src/output.c (m4_invoke): Move to...
16060 * src/scan-skel.l: here.
16061 (<<EOF>>): Close yyout, and free its name.
16062
16063 2002-07-03 Akim Demaille <akim@epita.fr>
16064
16065 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16066
16067 * src/LR0.c (new_state): Merge into...
16068 (state_list_append): this.
16069 (new_states): Merge into...
16070 (generate_states): here.
16071 (set_states): Don't ensure a proper `errs' state member here, do it...
16072 * src/conflicts.c (conflicts_solve): here.
16073 * src/state.h, src/state.c: Comment changes.
16074 (state_t): Rename member `shifts' as `transitions'.
16075 Adjust all dependencies.
16076 (errs_new): For consistency, also take the values as argument.
16077 (errs_dup): Remove.
16078 (state_errs_set): New.
16079 (state_reductions_set, state_transitions_set): Assert that no
16080 previous value was assigned.
16081 (state_free): New.
16082 (states_free): Use it.
16083 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16084 temporary storage: use `errs' and `nerrs' as elsewhere.
16085 (set_conflicts): Allocate and free this `errs'.
16086
16087 2002-07-02 Akim Demaille <akim@epita.fr>
16088
16089 * lib/libiberty.h: New.
16090 * lib: Update the bitset implementation from upstream.
16091 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16092 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16093 * src/main.c: Adjust bitset stats calls.
16094
16095 2002-07-01 Paul Eggert <eggert@twinsun.com>
16096
16097 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16098 char, so that negative chars don't collide with $.
16099
16100 2002-06-30 Akim Demaille <akim@epita.fr>
16101
16102 Have the GLR tests be `warning' checked, and fix the warnings.
16103
16104 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16105 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16106 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16107 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16108 (yyaddDeferredAction): static.
16109 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16110 (yyreportParseError): yyprefix is const.
16111 yytokenp is used only when verbose.
16112 (yy__GNUC__): Replace with __GNUC__.
16113 (yypdumpstack): yyi is size_t.
16114 (yypreference): Un-yy local variables and arguments, to avoid
16115 clashes with `yyr1'. Anyway, we are not in the user name space.
16116 (yytname_size): be an int, as is compared with ints.
16117 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16118 Use them.
16119 * tests/cxx-gram.at: Use quotation to protect $1.
16120 Use AT_COMPILE to enable warnings hunts.
16121 Prototype yylex and yyerror.
16122 `Use' argc.
16123 Include `string.h', not `strings.h'.
16124 Produce and prototype stmtMerge only when used.
16125 yylex takes a location.
16126
16127 2002-06-30 Akim Demaille <akim@epita.fr>
16128
16129 We spend a lot of time in quotearg, in particular when --verbose.
16130
16131 * src/symtab.c (symbol_get): Store a quoted version of the key.
16132 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16133 Adjust all callers.
16134
16135 2002-06-30 Akim Demaille <akim@epita.fr>
16136
16137 * src/state.h (reductions_t): Rename member `nreds' as num.
16138 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16139 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16140
16141 2002-06-30 Akim Demaille <akim@epita.fr>
16142
16143 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16144 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16145 (shifts_to): Rename as...
16146 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16147 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16148 (TRANSITION_IS_DISABLED, transitions_to): these.
16149
16150 2002-06-30 Akim Demaille <akim@epita.fr>
16151
16152 * src/print.c (print_shifts, print_gotos): Merge into...
16153 (print_transitions): this.
16154 (print_transitions, print_errs, print_reductions): Align the
16155 lookaheads columns.
16156 (print_core, print_transitions, print_errs, print_state,
16157 print_grammar): Output empty lines separator before, not after.
16158 (state_default_rule_compute): Rename as...
16159 (state_default_rule): this.
16160 * tests/conflicts.at (Defaulted Conflicted Reduction),
16161 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16162 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16163
16164 2002-06-30 Akim Demaille <akim@epita.fr>
16165
16166 Display items as we display rules.
16167
16168 * src/gram.h, src/gram.c (rule_lhs_print): New.
16169 * src/gram.c (grammar_rules_partial_print): Use it.
16170 * src/print.c (print_core): Likewise.
16171 * tests/conflicts.at (Defaulted Conflicted Reduction),
16172 (Unresolved SR Conflicts): Adjust.
16173 (Unresolved SR Conflicts): Adjust and rename as...
16174 (Resolved SR Conflicts): this, as was meant.
16175 * tests/regression.at (Web2c Report): Adjust.
16176
16177 2002-06-30 Akim Demaille <akim@epita.fr>
16178
16179 * src/print.c (state_default_rule_compute): New, extracted from...
16180 (print_reductions): here.
16181 Pessimize, but clarify the code.
16182 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16183
16184 2002-06-30 Akim Demaille <akim@epita.fr>
16185
16186 * src/output.c (action_row): Let default_rule be always a rule
16187 number.
16188
16189 2002-06-30 Akim Demaille <akim@epita.fr>
16190
16191 * src/closure.c (print_firsts, print_fderives, closure):
16192 Use BITSET_EXECUTE.
16193 * src/lalr.c (lookaheads_print): Likewise.
16194 * src/state.c (state_rule_lookaheads_print): Likewise.
16195 * src/print_graph.c (print_core): Likewise.
16196 * src/print.c (print_reductions): Likewise.
16197 * src/output.c (action_row): Likewise.
16198 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16199
16200 2002-06-30 Akim Demaille <akim@epita.fr>
16201
16202 * src/print_graph.c: Use report_flag.
16203
16204 2002-06-30 Akim Demaille <akim@epita.fr>
16205
16206 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16207 to...
16208 * src/relation.h, src/relation.c (traverse, relation_digraph)
16209 (relation_print, relation_transpose): New.
16210
16211 2002-06-30 Akim Demaille <akim@epita.fr>
16212
16213 * src/state.h, src/state.c (shifts_to): New.
16214 * src/lalr.c (build_relations): Use it.
16215
16216 2002-06-30 Akim Demaille <akim@epita.fr>
16217
16218 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16219 (item_number_of_rule_number, rule_number_of_item_number): New.
16220 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16221 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16222 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16223 Propagate their use.
16224 Much remains to be done, in particular wrt `shorts' from types.h.
16225
16226 2002-06-30 Akim Demaille <akim@epita.fr>
16227
16228 * src/symtab.c (symbol_new): Initialize the `printer' member.
16229
16230 2002-06-30 Akim Demaille <akim@epita.fr>
16231
16232 * src/LR0.c (save_reductions): Remove, replaced by...
16233 * src/state.h, src/state.c (state_reductions_set): New.
16234 (reductions, errs): Rename as...
16235 (reductions_t, errs_t): these.
16236 Adjust all dependencies.
16237
16238 2002-06-30 Akim Demaille <akim@epita.fr>
16239
16240 * src/LR0.c (state_list_t, state_list_append): New.
16241 (first_state, last_state): Now symbol_list_t.
16242 (this_state): Remove.
16243 (new_itemsets, append_states, save_reductions): Take a state_t as
16244 argument.
16245 (set_states, generate_states): Adjust.
16246 (save_shifts): Remove, replaced by...
16247 * src/state.h, src/state.c (state_shifts_set): New.
16248 (shifts): Rename as...
16249 (shifts_t): this.
16250 Adjust all dependencies.
16251 * src/state.h (state_t): Remove the `next' member.
16252
16253 2002-06-30 Akim Demaille <akim@epita.fr>
16254
16255 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16256 escaped in slot 0.
16257
16258 2002-06-30 Akim Demaille <akim@epita.fr>
16259
16260 Use hash.h for the state hash table.
16261
16262 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16263 (allocate_storage): Use state_hash_new.
16264 (free_storage): Use state_hash_free.
16265 (new_state, get_state): Adjust.
16266 * src/lalr.h, src/lalr.c (states): Move to...
16267 * src/states.h (state_t): Remove the `link' member, no longer
16268 used.
16269 * src/states.h, src/states.c: here.
16270 (state_hash_new, state_hash_free, state_hash_lookup)
16271 (state_hash_insert, states_free): New.
16272 * src/states.c (state_table, state_compare, state_hash): New.
16273 * src/output.c (output_actions): Do not free states now, since we
16274 still need to know the final_state number in `prepare', called
16275 afterwards. Do it...
16276 * src/main.c (main): here: call states_free after `output'.
16277
16278 2002-06-30 Akim Demaille <akim@epita.fr>
16279
16280 * src/state.h, src/state.c (state_new): New, extracted from...
16281 * src/LR0.c (new_state): here.
16282 * src/state.h (STATE_ALLOC): Move to...
16283 * src/state.c: here.
16284 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16285 * src/state.h, src/state.c: here.
16286
16287 2002-06-30 Akim Demaille <akim@epita.fr>
16288
16289 * src/reader.c (gensym): Rename as...
16290 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16291 (getsym): Rename as...
16292 (symbol_get): this.
16293
16294 2002-06-30 Akim Demaille <akim@epita.fr>
16295
16296 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16297 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16298 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16299 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16300
16301 2002-06-30 Akim Demaille <akim@epita.fr>
16302
16303 Make the test suite pass with warnings checked.
16304
16305 * tests/actions.at (Printers and Destructors): Improve.
16306 Avoid unsigned vs. signed issues.
16307 * tests/calc.at: Don't exercise the scanner here, do it...
16308 * tests/input.at (Torturing the Scanner): here.
16309
16310 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16311
16312 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
16313 reorganize first lines parallel to yacc.c.
16314
16315 2002-06-28 Akim Demaille <akim@epita.fr>
16316
16317 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16318 (b4_token_enum, b4_token_defines): New, factored from...
16319 * data/lalr1.cc, data/yacc.c, glr.c: here.
16320
16321 2002-06-28 Akim Demaille <akim@epita.fr>
16322
16323 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16324 unused variables.
16325 * src/output.c (merger_output): static.
16326
16327 2002-06-28 Akim Demaille <akim@epita.fr>
16328
16329 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
16330 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16331 pacify GCC.
16332 * src/output.c (save_row): Initialize all the variables to pacify GCC.
16333
16334 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16335
16336 Accumulated changelog for new GLR parsing features.
16337
16338 * src/conflicts.c (count_total_conflicts): Change name to
16339 conflicts_total_count.
16340 * src/conflicts.h: Ditto.
16341 * src/output.c (token_actions): Use the new name.
16342 (output_conflicts): Change conflp => conflict_list_heads, and
16343 confl => conflict_list for better readability.
16344 * data/glr.c: Use the new names.
16345 * NEWS: Add self to GLR announcement.
16346
16347 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16348
16349 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16350 Akim Demaille.
16351
16352 * data/bison.glr: Change name to glr.c
16353 * data/glr.c: Renamed from bison.glr.
16354 * data/Makefile.am: Add glr.c
16355
16356 * src/getargs.c:
16357
16358 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
16359 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
16360
16361 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16362
16363 * data/bison.glr: Be sure to restore the
16364 current #line when returning to the skeleton contents after having
16365 exposed the input file's #line.
16366
16367 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16368
16369 * data/bison.glr: Bring up to date with changes to bison.simple.
16370
16371 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16372
16373 * data/bison.glr: Correct definitions that use b4_prefix.
16374 Various reformatting.
16375 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16376 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16377 yytokenp argument; now part of stack.
16378 (yychar): Define to behave as documented.
16379 (yyclearin): Ditto.
16380
16381 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16382
16383 * src/reader.h: Add declaration for free_merger_functions.
16384
16385 * src/reader.c (merge_functions): New variable.
16386 (get_merge_function): New function.
16387 (free_merger_functions): New function.
16388 (readgram): Check for %prec that is not followed by a symbol.
16389 Handle %dprec and %merge declarations.
16390 (packgram): Initialize dprec and merger fields in rules array.
16391
16392 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16393 conflict_list_cnt, conflict_list_free): New variables.
16394 (table_grow): Also grow conflict_table.
16395 (prepare_rules): Output dprec and merger tables.
16396 (conflict_row): New function.
16397 (action_row): Output conflict lists for GLR parser. Don't use
16398 default reduction in conflicted states for GLR parser so that there
16399 are spaces for the conflict lists.
16400 (save_row): Also save conflict information.
16401 (token_actions): Allocate conflict list.
16402 (merger_output): New function.
16403 (pack_vector): Pack conflict table, too.
16404 (output_conflicts): New function to output yyconflp and yyconfl.
16405 (output_check): Allocate conflict_tos.
16406 (output_actions): Output conflict tables, also.
16407 (output_skeleton): Output b4_mergers definition.
16408 (prepare): Output b4_max_rhs_length definition.
16409 Use 'bison.glr' as default skeleton for GLR parsers.
16410
16411 * src/gram.c (glr_parser): New flag.
16412 (grammar_free): Call free_merger_functions.
16413
16414 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16415 all pairs of conflicting reductions, rather than just all tokens
16416 causing conflicts. Needed to size conflict tables.
16417 (conflicts_output): Modify call to count_rr_conflicts for new
16418 interface.
16419 (conflicts_print): Ditto.
16420 (count_total_conflicts): New function.
16421
16422 * src/reader.h (merger_list): New type.
16423 (merge_functions): New variable.
16424
16425 * src/lex.h (tok_dprec, tok_merge): New token types.
16426
16427 * src/gram.h (rule_s): Add dprec and merger fields.
16428 (glr_parser): New flag.
16429
16430 * src/conflicts.h (count_total_conflicts): New function.
16431
16432 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16433
16434 * doc/bison.texinfo (Generalized LR Parsing): New section.
16435 (GLR Parsers): New section.
16436 (Language and Grammar): Mention GLR parsing.
16437 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16438 Correct typo ("tge" -> "the").
16439
16440 * data/bison.glr: New skeleton for GLR parsing.
16441
16442 * tests/cxx-gram.at: New tests for GLR parsing.
16443
16444 * tests/testsuite.at: Include cxx-gram.at.
16445
16446 * tests/Makefile.am: Add cxx-gram.at.
16447
16448 * src/parse-gram.y:
16449
16450 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16451
16452 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
16453
16454 2002-06-27 Akim Demaille <akim@epita.fr>
16455
16456 * src/options.h, src/options.c: Remove.
16457 * src/getargs.c (short_options, long_options): New.
16458
16459 2002-06-27 Akim Demaille <akim@epita.fr>
16460
16461 * data/bison.simple, data/bison.c++: Rename as...
16462 * data/yacc.c, data/lalr1.cc: these.
16463 * doc/bison.texinfo (Environment Variables): Remove.
16464
16465 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16466
16467 * src/getargs.c (report_argmatch): Initialize strtok().
16468
16469 2002-06-20 Akim Demaille <akim@epita.fr>
16470
16471 * data/bison.simple (b4_symbol_actions): New, replaces...
16472 (b4_symbol_destructor, b4_symbol_printer): these.
16473 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16474 user token numbers.
16475
16476 2002-06-20 Akim Demaille <akim@epita.fr>
16477
16478 * data/bison.simple (yydestructor): Rename as...
16479 (yydestruct): this.
16480
16481 2002-06-20 Akim Demaille <akim@epita.fr>
16482
16483 * src/symtab.h, src/symtab.c (symbol_type_set)
16484 (symbol_destructor_set, symbol_precedence_set): The location is
16485 the last argument.
16486 Adjust all callers.
16487
16488 2002-06-20 Akim Demaille <akim@epita.fr>
16489
16490 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16491 internals.
16492 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16493 Takes a location.
16494 * src/symtab.h, src/symtab.c (symbol_class_set)
16495 (symbol_user_token_number_set): Likewise.
16496 Adjust all callers.
16497 Promote complain_at.
16498 * tests/input.at (Type Clashes): Adjust.
16499
16500 2002-06-20 Akim Demaille <akim@epita.fr>
16501
16502 * data/bison.simple (YYLEX): Fix the declaration when
16503 %pure-parser.
16504
16505 2002-06-20 Akim Demaille <akim@epita.fr>
16506
16507 * data/bison.simple (yysymprint): Don't print the token number,
16508 just its name.
16509 * tests/actions.at (Destructors): Rename as...
16510 (Printers and Destructors): this.
16511 Also exercise %printer.
16512
16513 2002-06-20 Akim Demaille <akim@epita.fr>
16514
16515 * data/bison.simple (YYDSYMPRINT): New.
16516 Use it to remove many of the #if YYDEBUG/if (yydebug).
16517
16518 2002-06-20 Akim Demaille <akim@epita.fr>
16519
16520 * src/symtab.h, src/symtab.c (symbol_t): printer and
16521 printer_location are new members.
16522 (symbol_printer_set): New.
16523 * src/parse-gram.y (PERCENT_PRINTER): New token.
16524 Handle its associated rule.
16525 * src/scan-gram.l: Adjust.
16526 (handle_destructor_at, handle_destructor_dollar): Rename as...
16527 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16528 * src/output.c (symbol_printers_output): New.
16529 (output_skeleton): Call it.
16530 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16531 since there are already many grammar files with a user `yyprint'.
16532 Replace the calls to YYPRINT to calls to yysymprint.
16533 * tests/calc.at: Adjust.
16534 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16535 taking advantage of parser very internal details (stack size!).
16536
16537 2002-06-20 Akim Demaille <akim@epita.fr>
16538
16539 * src/scan-gram.l: Complete the scanner with the missing patterns
16540 to pacify Flex.
16541 Use `quote' and `symbol_tag_get' where appropriate.
16542
16543 2002-06-19 Akim Demaille <akim@epita.fr>
16544
16545 * tests/actions.at (Destructors): Augment to test locations.
16546 * data/bison.simple (yydestructor): Pass it the current location
16547 if locations are enabled.
16548 Prototype only when __STDC__ or C++.
16549 Change the argument names to move into the yy name space: there is
16550 user code here.
16551
16552 2002-06-19 Akim Demaille <akim@epita.fr>
16553
16554 * data/bison.simple (b4_pure_if): New.
16555 Use it instead of #ifdef YYPURE.
16556
16557 2002-06-19 Akim Demaille <akim@epita.fr>
16558
16559 * data/bison.simple (b4_location_if): New.
16560 Use it instead of #ifdef YYLSP_NEEDED.
16561
16562 2002-06-19 Akim Demaille <akim@epita.fr>
16563
16564 Prepare @$ in %destructor, but currently don't bind it in the
16565 skeleton, as %location use is not cleaned up yet.
16566
16567 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16568 (handle_action_at): New.
16569 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16570 a braced_code_t and a location as additional arguments.
16571 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16572 unquote one when outputting `b4_dollar_dollar'.
16573 Adjust callers.
16574 * data/bison.simple (b4_eval): Remove.
16575 (b4_symbol_destructor): Adjust.
16576 * tests/input.at (Invalid @n): Adjust.
16577
16578 2002-06-19 Zack Weinberg <zack@codesourcery.com>
16579
16580 * doc/bison.texinfo: Document ability to have multiple
16581 prologue sections.
16582
16583 2002-06-18 Akim Demaille <akim@epita.fr>
16584
16585 * src/files.c (compute_base_names): When computing the output file
16586 names from the input file name, strip the directory part.
16587
16588 2002-06-18 Akim Demaille <akim@epita.fr>
16589
16590 * data/bison.simple.new: Comment changes.
16591 Reported by Andreas Schwab.
16592
16593 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16594
16595 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16596 there are no `label `yyoverflowlab' defined but not used' warnings
16597 when yyoverflow is defined.
16598
16599 2002-06-18 Akim Demaille <akim@epita.fr>
16600
16601 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16602 new member.
16603 (symbol_destructor_set): Adjust.
16604 * src/output.c (symbol_destructors_output): Output the destructor
16605 locations.
16606 Output the symbol name.
16607 * data/bison.simple (b4_symbol_destructor): Adjust.
16608
16609 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16610 and Akim Demaille <akim@epita.fr>
16611
16612 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16613 what's left on the stack when the error recovery hits EOF.
16614 * tests/actions.at (Destructors): Complete to exercise this case.
16615
16616 2002-06-17 Akim Demaille <akim@epita.fr>
16617
16618 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16619 arguments is really empty, not only equal to `[]'.
16620 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16621 member.
16622 (symbol_destructor_set): New.
16623 * src/output.c (symbol_destructors_output): New.
16624 * src/reader.h (brace_code_t, current_braced_code): New.
16625 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16626 (handle_dollar): Rename as...
16627 (handle_action_dollar): this.
16628 (handle_destructor_dollar): New.
16629 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16630 (grammar_declaration): Use it.
16631 * data/bison.simple (yystos): Is always defined.
16632 (yydestructor): New.
16633 * tests/actions.at (Destructors): New.
16634 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16635
16636 2002-06-17 Akim Demaille <akim@epita.fr>
16637
16638 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16639 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16640 rule_length only when needed.
16641 * src/output.c (actions_output, token_definitions_output): Output
16642 the full M4 block.
16643 * src/symtab.c: Don't access directly to the symbol tag, use
16644 symbol_tag_get.
16645 * src/parse-gram.y: Use symbol_list_free.
16646
16647 2002-06-17 Akim Demaille <akim@epita.fr>
16648
16649 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16650 (symbol_list_prepend, get_type_name): Move to...
16651 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16652 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16653 Adjust all callers.
16654 (symbol_list_free): New.
16655 * src/scan-gram.l (handle_dollar): Takes a location.
16656 * tests/input.at (Invalid $n): Adjust.
16657
16658 2002-06-17 Akim Demaille <akim@epita.fr>
16659
16660 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16661 (symbol_list_prepend): New.
16662 * src/parse-gram.y (%union): `list' is a new member.
16663 (symbols.1): New, replaces...
16664 (terms_to_prec.1, nterms_to_type.1): these.
16665 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16666 Take a location as additional argument.
16667 Adjust all callers.
16668
16669 2002-06-15 Akim Demaille <akim@epita.fr>
16670
16671 * src/parse-gram.y: Move %token in the declaration section so that
16672 we don't depend upon CVS Bison.
16673
16674 2002-06-15 Akim Demaille <akim@epita.fr>
16675
16676 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16677 * src/print.c (print_core): Use it.
16678
16679 2002-06-15 Akim Demaille <akim@epita.fr>
16680
16681 * src/conflicts.c (log_resolution): Accept the rule involved in
16682 the sr conflicts instead of the lookahead number that points to
16683 that rule.
16684 (flush_reduce): Accept the current lookahead vector as argument,
16685 instead of the index in LA.
16686 (resolve_sr_conflict): Accept the current number of lookahead
16687 bitset to consider for the STATE, instead of the index in LA.
16688 (set_conflicts): Adjust.
16689 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16690
16691 2002-06-15 Akim Demaille <akim@epita.fr>
16692
16693 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16694 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16695 Adjust all dependencies.
16696 * src/lalr.c (initialize_lookaheads): Split into...
16697 (states_lookaheads_count, states_lookaheads_initialize): these.
16698 (lalr): Adjust.
16699
16700 2002-06-15 Akim Demaille <akim@epita.fr>
16701
16702 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16703 out of...
16704 (grammar_rules_print): here.
16705 * src/reduce.c (reduce_output): Use it.
16706 * tests/reduce.at (Useless Rules, Reduced Automaton)
16707 (Underivable Rules): Adjust.
16708
16709 2002-06-15 Akim Demaille <akim@epita.fr>
16710
16711 Copy BYacc's nice way to report the grammar.
16712
16713 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16714 New.
16715 Don't print the rules' location, it is confusing and useless.
16716 (rule_print): Use grammar_rhs_print.
16717 * src/print.c (print_grammar): Use grammar_rules_print.
16718
16719 2002-06-15 Akim Demaille <akim@epita.fr>
16720
16721 Complete and rationalize `useless thing' warnings.
16722
16723 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16724 (symbol_tag_print): New.
16725 Use them everywhere in place of accessing directly the tag member.
16726 * src/gram.h, src/gram.c (rule_print): New.
16727 Use it where a rule used to be printed `by hand'.
16728 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16729 (reduce_grammar_tables): Report the useless rules.
16730 (reduce_print): Useless things are a warning, not an error.
16731 Report it as such.
16732 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16733 (Reduced Automaton, Underivable Rules): Adjust.
16734 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16735 * tests/conflicts.at (Unresolved SR Conflicts)
16736 (Solved SR Conflicts): Adjust.
16737
16738 2002-06-15 Akim Demaille <akim@epita.fr>
16739
16740 Let symbols have a location.
16741
16742 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16743 (getsym): Adjust.
16744 Adjust all callers.
16745 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16746 Use location_t, not int.
16747 * src/symtab.c (symbol_check_defined): Take advantage of the
16748 location.
16749 * tests/regression.at (Invalid inputs): Adjust.
16750
16751 2002-06-15 Akim Demaille <akim@epita.fr>
16752
16753 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16754 (input): Don't try to initialize yylloc here, do it in the
16755 scanner.
16756 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16757 * src/gram.h (rule_t): Change line and action_line into location
16758 and action_location, of location_t type.
16759 Adjust all dependencies.
16760 * src/location.h, src/location.c (empty_location): New.
16761 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16762 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16763 (grammar_current_rule_symbol_append)
16764 (grammar_current_rule_action_append): Expect a location as argument.
16765 * src/reader.c (grammar_midrule_action): Adjust to attach an
16766 action's location as dummy symbol location.
16767 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16768 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16769 the line numbers.
16770
16771 2002-06-14 Akim Demaille <akim@epita.fr>
16772
16773 Grammar declarations may be found in the grammar section.
16774
16775 * src/parse-gram.y (rules_or_grammar_declaration): New.
16776 (declarations): Each declaration may end with a semicolon, not
16777 just...
16778 (grammar_declaration): `"%union"'.
16779 (grammar): Branch to rules_or_grammar_declaration.
16780
16781 2002-06-14 Akim Demaille <akim@epita.fr>
16782
16783 * src/main.c (main): Invoke scanner_free.
16784
16785 2002-06-14 Akim Demaille <akim@epita.fr>
16786
16787 * src/output.c (m4_invoke): Extracted from...
16788 (output_skeleton): here.
16789 Free tempfile.
16790
16791 2002-06-14 Akim Demaille <akim@epita.fr>
16792
16793 * src/parse-gram.y (directives, directive, gram)
16794 (grammar_directives, precedence_directives, precedence_directive):
16795 Rename as...
16796 (declarations, declaration, grammar, grammar_declaration)
16797 (precedence_declaration, precedence_declarator): these.
16798 (symbol_declaration): New.
16799
16800 2002-06-14 Akim Demaille <akim@epita.fr>
16801
16802 * src/files.c (action_obstack): Remove, unused.
16803 (output_obstack): Remove it, and all its dependencies, as it is no
16804 longer needed.
16805 * src/reader.c (epilogue_set): Build the epilogue in the
16806 muscle_obstack.
16807 * src/output.h, src/output.c (muscle_obstack): Move to...
16808 * src/muscle_tab.h, src/muscle_tab.h: here.
16809 (muscle_init): Initialize muscle_obstack.
16810 (muscle_free): New.
16811 * src/main.c (main): Call it.
16812
16813 2002-06-14 Akim Demaille <akim@epita.fr>
16814
16815 * src/location.h: New, extracted from...
16816 * src/reader.h: here.
16817 * src/Makefile.am (noinst_HEADERS): Merge into
16818 (bison_SOURCES): this.
16819 Add location.h.
16820 * src/parse-gram.y: Use location_t instead of Bison's.
16821 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16822 Use location_t instead of ints.
16823
16824 2002-06-14 Akim Demaille <akim@epita.fr>
16825
16826 * data/bison.simple, data/bison.c++: Be sure to restore the
16827 current #line when returning to the skeleton contents after having
16828 exposed the input file's #line.
16829
16830 2002-06-12 Akim Demaille <akim@epita.fr>
16831
16832 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
16833 eager.
16834 * tests/actions.at (Exotic Dollars): New.
16835
16836 2002-06-12 Akim Demaille <akim@epita.fr>
16837
16838 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
16839 ['"/] too eagerly.
16840 * tests/input.at (Torturing the Scanner): New.
16841
16842 2002-06-11 Akim Demaille <akim@epita.fr>
16843
16844 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
16845 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
16846 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
16847 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
16848 * src/reader.c (reader): Use it.
16849
16850 2002-06-11 Akim Demaille <akim@epita.fr>
16851
16852 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
16853 Adjust all callers.
16854 (scanner_last_string_free): New.
16855
16856 2002-06-11 Akim Demaille <akim@epita.fr>
16857
16858 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
16859 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
16860 (last_string, YY_OBS_FREE): New.
16861 Use them when returning an ID.
16862
16863 2002-06-11 Akim Demaille <akim@epita.fr>
16864
16865 Have Bison grammars parsed by a Bison grammar.
16866
16867 * src/reader.c, src/reader.h (prologue_augment): New.
16868 * src/reader.c (copy_definition): Remove.
16869
16870 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
16871 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
16872 (grammar_current_rule_prec_set, grammar_current_rule_check)
16873 (grammar_current_rule_symbol_append)
16874 (grammar_current_rule_action_append): Export.
16875 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
16876 (symbol_list_action_append): Remove.
16877 Hook the routines from reader.
16878 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
16879 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
16880
16881 * src/reader.c (read_declarations): Remove, unused.
16882
16883 * src/parse-gram.y: Handle the epilogue.
16884 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
16885 (grammar_start_symbol_set): this.
16886 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
16887 * src/reader.c (readgram): Remove, unused.
16888 (reader): Adjust to insert eoftoken and axiom where appropriate.
16889
16890 * src/reader.c (copy_dollar): Replace with...
16891 * src/scan-gram.h (handle_dollar): this.
16892 * src/parse-gram.y: Remove `%thong'.
16893
16894 * src/reader.c (copy_at): Replace with...
16895 * src/scan-gram.h (handle_at): this.
16896
16897 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
16898 New.
16899
16900 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
16901 time being.
16902
16903 * src/reader.h, src/reader.c (grammar_rule_end): New.
16904
16905 * src/parse.y (current_type, current_class): New.
16906 Implement `%nterm', `%token' support.
16907 Merge `%term' into `%token'.
16908 (string_as_id): New.
16909 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
16910 type name.
16911
16912 * src/parse-gram.y: Be sure to handle properly the beginning of
16913 rules.
16914
16915 * src/parse-gram.y: Handle %type.
16916 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
16917
16918 * src/parse-gram.y: More directives support.
16919 * src/options.c: No longer handle source directives.
16920
16921 * src/parse-gram.y: Fix %output.
16922
16923 * src/parse-gram.y: Handle %union.
16924 Use the prologue locations.
16925 * src/reader.c (parse_union_decl): Remove.
16926
16927 * src/reader.h, src/reader.c (epilogue_set): New.
16928 * src/parse-gram.y: Use it.
16929
16930 * data/bison.simple, data/bison.c++: b4_stype is now either not
16931 defined, then default to int, or to the contents of %union,
16932 without `union' itself.
16933 Adjust.
16934 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
16935
16936 * src/output.c (actions_output): Don't output braces, as they are
16937 already handled by the scanner.
16938
16939 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
16940 characters to themselves.
16941
16942 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
16943 that the epilogue has a proper #line.
16944
16945 * src/parse-gram.y: Handle precedence/associativity.
16946
16947 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
16948 a terminal.
16949 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
16950 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
16951 at all to define terminals that cannot be emitted.
16952
16953 * src/scan-gram.l: Escape M4 characters.
16954
16955 * src/scan-gram.l: Working properly with escapes in user
16956 strings/characters.
16957
16958 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
16959 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
16960 grammar.
16961 Use more modest sizes, as for the time being the parser does not
16962 release memory, and therefore the process swallows a huge amount
16963 of memory.
16964
16965 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
16966 stricter %token grammar.
16967
16968 * src/symtab.h (associativity): Add `undef_assoc'.
16969 (symbol_precedence_set): Do nothing when passed an undef_assoc.
16970 * src/symtab.c (symbol_check_alias_consistence): Adjust.
16971
16972 * tests/regression.at (Invalid %directive): Remove, as it is now
16973 meaningless.
16974 (Invalid inputs): Adjust to the new error messages.
16975 (Token definitions): The new grammar doesn't allow too many
16976 eccentricities.
16977
16978 * src/lex.h, src/lex.c: Remove.
16979 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
16980 (copy_character, copy_string2, copy_string, copy_identifier)
16981 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16982 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16983 (parse_action): Remove.
16984 * po/POTFILES.in: Adjust.
16985
16986 2002-06-11 Akim Demaille <akim@epita.fr>
16987
16988 * src/reader.c (parse_action): Don't store directly into the
16989 rule's action member: return the action as a string.
16990 Don't require `rule_length' as an argument: compute it.
16991 (grammar_current_rule_symbol_append)
16992 (grammar_current_rule_action_append): New, eved out from
16993 (readgram): here.
16994 Remove `action_flag', `rulelength', unused now.
16995
16996 2002-06-11 Akim Demaille <akim@epita.fr>
16997
16998 * src/reader.c (grammar_current_rule_prec_set).
16999 (grammar_current_rule_check): New, eved out from...
17000 (readgram): here.
17001 Remove `xaction', `first_rhs': useless.
17002 * tests/input.at (Type clashes): New.
17003 * tests/existing.at (GNU Cim Grammar): Adjust.
17004
17005 2002-06-11 Akim Demaille <akim@epita.fr>
17006
17007 * src/reader.c (grammar_midrule_action): New, Eved out from
17008 (readgram): here.
17009
17010 2002-06-11 Akim Demaille <akim@epita.fr>
17011
17012 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17013 New.
17014 (readgram): Use them as replacement of inlined code, crule and
17015 crule1.
17016
17017 2002-06-11 Akim Demaille <akim@epita.fr>
17018
17019 * src/reader.c (grammar_end, grammar_symbol_append): New.
17020 (readgram): Use them.
17021 Make the use of `p' as local as possible.
17022
17023 2002-06-10 Akim Demaille <akim@epita.fr>
17024
17025 GCJ's parser requires the tokens to be defined before the prologue.
17026
17027 * data/bison.simple: Output the token definition before the user's
17028 prologue.
17029 * tests/regression.at (Braces parsing, Duplicate string)
17030 (Mixing %token styles): Check the output from bison.
17031 (Early token definitions): New.
17032
17033 2002-06-10 Akim Demaille <akim@epita.fr>
17034
17035 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17036 assigning twice the same user number to a token, so that we can
17037 use it in...
17038 * src/lex.c (lex): here.
17039 Also use `symbol_class_set' instead of hand written code.
17040 * src/reader.c (parse_assoc_decl): Likewise.
17041
17042 2002-06-10 Akim Demaille <akim@epita.fr>
17043
17044 * src/symtab.c, src/symtab.c (symbol_class_set)
17045 (symbol_user_token_number_set): New.
17046 * src/reader.c (parse_token_decl): Use them.
17047 Use a switch instead of ifs.
17048 Use a single argument.
17049
17050 2002-06-10 Akim Demaille <akim@epita.fr>
17051
17052 Remove `%thong' support as it is undocumented, unused, duplicates
17053 `%token's job, and creates useless e-mail traffic with people who
17054 want to know what it is, why it is undocumented, unused, and
17055 duplicates `%token's job.
17056
17057 * src/reader.c (parse_thong_decl): Remove.
17058 * src/options.c (option_table): Remove "thong".
17059 * src/lex.h (tok_thong): Remove.
17060
17061 2002-06-10 Akim Demaille <akim@epita.fr>
17062
17063 * src/symtab.c, src/symtab.c (symbol_type_set)
17064 (symbol_precedence_set): New.
17065 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17066 (value_components_used): Remove, unused.
17067
17068 2002-06-09 Akim Demaille <akim@epita.fr>
17069
17070 Move symbols handling code out of the reader.
17071
17072 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17073 (axiom): Move to...
17074 * src/symtab.h, src/symtab.c: here.
17075
17076 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17077 * src/reader.c (startval): Rename as...
17078 * src/symtab.h, src/symtab.c (startsymbol): this.
17079 * src/reader.c: Adjust.
17080
17081 * src/reader.c (symbol_check_defined, symbol_make_alias)
17082 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17083 (token_translations_init)
17084 Move to...
17085 * src/symtab.c: here.
17086 * src/reader.c (packsymbols): Move to...
17087 * src/symtab.h, src/symtab.c (symbols_pack): here.
17088 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17089 argument.
17090
17091 2002-06-03 Akim Demaille <akim@epita.fr>
17092
17093 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17094 then statements.
17095
17096 2002-06-03 Akim Demaille <akim@epita.fr>
17097
17098 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17099 structs with non literals.
17100 * src/scan-skel.l: never-interactive.
17101 * src/conflicts.c (enum conflict_resolution_e): No trailing
17102 comma.
17103 * src/getargs.c (usage): Split long literal strings.
17104 Reported by Hans Aberg.
17105
17106 2002-05-28 Akim Demaille <akim@epita.fr>
17107
17108 * data/bison.c++: Use C++ ostreams.
17109 (cdebug_): New member.
17110
17111 2002-05-28 Akim Demaille <akim@epita.fr>
17112
17113 * src/output.c (output_skeleton): Be sure to allocate enough room
17114 for `/' _and_ for `\0' in full_skeleton.
17115
17116 2002-05-28 Akim Demaille <akim@epita.fr>
17117
17118 * data/bison.c++: Catch up with bison.simple:
17119 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17120 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17121 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17122 and popping traces.
17123
17124 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17125
17126 * src/output.c (output_skeleton): Put an explicit path in front of
17127 the skeleton file name, rather than relying on the -I directory,
17128 to partially alleviate effects of having a skeleton file lying around
17129 in the current directory.
17130
17131 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17132
17133 * src/conflicts.c (log_resolution): Correct typo:
17134 obstack_printf should be obstack_fgrow1.
17135
17136 2002-05-26 Akim Demaille <akim@epita.fr>
17137
17138 * src/state.h (state_t): `solved_conflicts' is a new member.
17139 * src/LR0.c (new_state): Set it to 0.
17140 * src/conflicts.h, src/conflicts.c (print_conflicts)
17141 (free_conflicts, solve_conflicts): Rename as...
17142 (conflicts_print, conflicts_free, conflicts_solve): these.
17143 Adjust callers.
17144 * src/conflicts.c (enum conflict_resolution_e)
17145 (solved_conflicts_obstack): New, used by...
17146 (log_resolution): this.
17147 Adjust to attach the conflict resolution to each state.
17148 Complete the description with the precedence/associativity
17149 information.
17150 (resolve_sr_conflict): Adjust.
17151 * src/print.c (print_state): Output its solved_conflicts.
17152 * tests/conflicts.at (Unresolved SR Conflicts)
17153 (Solved SR Conflicts): Exercise --report=all.
17154
17155 2002-05-26 Akim Demaille <akim@epita.fr>
17156
17157 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17158 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17159 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17160 (token_number_t, item_number_as_token_number)
17161 (token_number_as_item_number, muscle_insert_token_number_table):
17162 Rename as...
17163 (symbol_number_t, item_number_as_symbol_number)
17164 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17165 these, since it is more appropriate.
17166
17167 2002-05-26 Akim Demaille <akim@epita.fr>
17168
17169 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17170 `Error:' lines.
17171 * data/bison.simple (yystos) [YYDEBUG]: New.
17172 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17173 error recovery.
17174 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17175
17176 2002-05-25 Akim Demaille <akim@epita.fr>
17177
17178 * doc/bison.texinfo (Debugging): Split into...
17179 (Tracing): this new section, its former contents, and...
17180 (Understanding): this new section.
17181 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17182 by...
17183 (report_flag): this.
17184 Adjust all dependencies.
17185 (report_args, report_types, report_argmatch): New.
17186 (usage, getargs): Report/support -r, --report.
17187 * src/options.h
17188 (struct option_table_struct): Rename as..,
17189 (struct option_table_s): this.
17190 Rename the `set_flag' member to `flag' to match with getopt_long's
17191 struct.
17192 * src/options.c (option_table): Split verbose into an entry for
17193 %verbose, and another for --verbose.
17194 Support --report/-r, so remove -r from the obsolete --raw.
17195 * src/print.c: Attach full item sets and lookaheads reports to
17196 report_flag instead of trace_flag.
17197 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17198
17199 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17200 and Paul Eggert <eggert@twinsun.com>
17201
17202 * data/bison.simple (yyparse): Correct error handling to conform to
17203 POSIX and yacc. Specifically, after syntax error is discovered,
17204 do not reduce further before shifting the error token.
17205 Clean up the code a bit by removing the labels yyerrdefault,
17206 yyerrhandle, yyerrpop.
17207 * NEWS: Document the above.
17208
17209 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17210
17211 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17212 type; it isn't always big enough, since it doesn't necessarily
17213 include non-terminals.
17214 (yytranslate): Expand definition of yy_token_number_type, so that
17215 the latter can be removed.
17216 (yy_token_number_type): Remove, only one use.
17217 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17218 don't use TokenNumberType as element type.
17219
17220 * tests/regression.at: Modify expected output to agree with change
17221 to yyr1 and yytranslate.
17222
17223 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17224
17225 * src/reader.c (parse_action): Use copy_character instead of
17226 obstack_1grow.
17227
17228 2002-05-13 Akim Demaille <akim@epita.fr>
17229
17230 * tests/regression.at (Token definitions): Prototype yylex and
17231 yyerror.
17232
17233 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17234
17235 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
17236 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17237 32-bit arithmetic.
17238 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17239
17240 2002-05-07 Akim Demaille <akim@epita.fr>
17241
17242 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17243 avoid GCC warnings.
17244
17245 2002-05-07 Akim Demaille <akim@epita.fr>
17246
17247 Kill GCC warnings.
17248
17249 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17250 over the RHS of each rule.
17251 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17252 * src/state.h (state_t): Member `nitems' is unsigned short.
17253 * src/LR0.c (get_state): Adjust.
17254 * src/reader.c (packgram): Likewise.
17255 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17256 `Type'.
17257 (muscle_insert_int_table): Remove, unused.
17258 (prepare_rules): Remove `max'.
17259
17260 2002-05-06 Akim Demaille <akim@epita.fr>
17261
17262 * src/closure.c (print_firsts): Display of the symbol tags.
17263 (bitmatrix_print): Move to...
17264 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17265 here.
17266 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17267
17268 2002-05-06 Akim Demaille <akim@epita.fr>
17269
17270 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17271 hash_do_for_each.
17272
17273 2002-05-06 Akim Demaille <akim@epita.fr>
17274
17275 * src/LR0.c (new_state, get_state): Instead of using the global
17276 `kernel_size' and `kernel_base', have two new arguments:
17277 `core_size' and `core'.
17278 Adjust callers.
17279
17280 2002-05-06 Akim Demaille <akim@epita.fr>
17281
17282 * src/reader.c (packgram): No longer end `ritem' with a 0
17283 sentinel: it is not used.
17284
17285 2002-05-05 Akim Demaille <akim@epita.fr>
17286
17287 New experimental feature: display the lookaheads in the report and
17288 graph.
17289
17290 * src/print (print_core): When --trace-flag, display the rules
17291 lookaheads.
17292 * src/print_graph.c (print_core): Likewise.
17293 Swap the arguments.
17294 Adjust caller.
17295
17296 2002-05-05 Akim Demaille <akim@epita.fr>
17297
17298 * tests/torture.at (Many lookaheads): New test.
17299
17300 2002-05-05 Akim Demaille <akim@epita.fr>
17301
17302 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17303 (GENERATE_MUSCLE_INSERT_TABLE): this.
17304 (output_int_table, output_unsigned_int_table, output_short_table)
17305 (output_token_number_table, output_item_number_table): Replace with...
17306 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17307 (muscle_insert_short_table, muscle_insert_token_number_table)
17308 (muscle_insert_item_number_table): these.
17309 Adjust all callers.
17310 (prepare_tokens): Don't free `translations', since...
17311 * src/reader.h, src/reader.c (grammar_free): do it.
17312 Move to...
17313 * src/gram.h, src/gram.c (grammar_free): here.
17314 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17315 b4_translate_max.
17316
17317 2002-05-05 Akim Demaille <akim@epita.fr>
17318
17319 * src/output.c (output_unsigned_int_table): New.
17320 (prepare_rules): `i' is unsigned.
17321 `prhs', `rline', `r2' are unsigned int.
17322 Rename muscle `rhs_number_max' as `rhs_max'.
17323 Output muscles `prhs_max', `rline_max', and `r2_max'.
17324 Free rline and r1.
17325 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17326 to compute types instead of constant types.
17327 * tests/regression.at (Web2c Actions): Adjust.
17328
17329 2002-05-04 Akim Demaille <akim@epita.fr>
17330
17331 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17332 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17333 Adjust dependencies.
17334 * src/output.c (token_definitions_output): Be sure not to output a
17335 `#define 'a'' when fed with `%token 'a' "a"'.
17336 * tests/regression.at (Token definitions): New.
17337
17338 2002-05-03 Paul Eggert <eggert@twinsun.com>
17339
17340 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17341 for K&R C.
17342
17343 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17344
17345 * Makefile.am (SUBDIRS): Remove intl.
17346 (EXTRA_DIST): Add config/config.rpath.
17347
17348 2002-05-03 Akim Demaille <akim@epita.fr>
17349
17350 * data/bison.simple (m4_if): Don't output empty enums.
17351 And actually, output valid enum definitions :(.
17352
17353 2002-05-03 Akim Demaille <akim@epita.fr>
17354
17355 * configure.bat: Remove, completely obsolete.
17356 * Makefile.am (EXTRA_DIST): Adjust.
17357 Don't distribute config.rpath...
17358 * config/Makefile.am (EXTRA_DIST): Do it.
17359
17360 2002-05-03 Akim Demaille <akim@epita.fr>
17361
17362 * configure.in (GETTEXT_VERSION): New.
17363 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17364
17365 2002-05-03 Akim Demaille <akim@epita.fr>
17366
17367 * data/bison.simple (b4_token_enum): New.
17368 (b4_token_defines): Use it to output tokens both as #define and
17369 enums.
17370 Suggested by Paul Eggert.
17371 * src/output.c (token_definitions_output): Don't output spurious
17372 white spaces.
17373
17374 2002-05-03 Akim Demaille <akim@epita.fr>
17375
17376 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17377
17378 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
17379
17380 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17381 Update the stack class, give a try to deque as the default container.
17382
17383 2002-05-02 Akim Demaille <akim@epita.fr>
17384
17385 * data/bison.simple (yyparse): Do not implement @$ = @1.
17386 (YYLLOC_DEFAULT): Adjust to do it.
17387 * doc/bison.texinfo (Location Default Action): Fix.
17388
17389 2002-05-02 Akim Demaille <akim@epita.fr>
17390
17391 * src/reader.c (parse_braces): Merge into...
17392 (parse_action): this.
17393
17394 2002-05-02 Akim Demaille <akim@epita.fr>
17395
17396 * configure.in (ALL_LINGUAS): Remove.
17397 * po/LINGUAS, hr.po: New.
17398
17399 2002-05-02 Akim Demaille <akim@epita.fr>
17400
17401 Remove the so called hairy (semantic) parsers.
17402
17403 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17404 * src/gram.h, src/gram.c (semantic_parser): Remove.
17405 (rule_t): Remove the guard and guard_line members.
17406 * src/lex.h (token_t): remove tok_guard.
17407 * src/options.c (option_table): Remove %guard and %semantic_parser
17408 support.
17409 * src/output.c, src/output.h (guards_output): Remove.
17410 (prepare): Adjust.
17411 (token_definitions_output): Don't output the `T'
17412 tokens (???).
17413 (output_skeleton): Don't output the guards.
17414 * src/files.c, src/files.c (attrsfile): Remove.
17415 * src/reader.c (symbol_list): Remove the guard and guard_line
17416 members.
17417 Adjust dependencies.
17418 (parse_guard): Remove.
17419 * data/bison.hairy: Remove.
17420 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17421 BISON_HAIRY.
17422
17423 2002-05-02 Akim Demaille <akim@epita.fr>
17424
17425 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17426 (parse_guard): Rename the formal argument `stack_offset' as
17427 `rule_length', which is more readable.
17428 Adjust callers.
17429 (copy_at, copy_dollar): Instead of outputting the hard coded
17430 values of $$, $n and so forth, output invocation to b4_lhs_value,
17431 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
17432 Note: this patch partially drops `semantic-parser' support: it
17433 always does `rule_length - n', where semantic parsers ought to
17434 always use `-n'.
17435 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17436 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17437
17438 2002-05-02 Akim Demaille <akim@epita.fr>
17439
17440 * configure.in (AC_INIT): Bump to 1.49b.
17441 (AM_INIT_AUTOMAKE): Short invocation.
17442
17443 2002-05-02 Akim Demaille <akim@epita.fr>
17444
17445 Version 1.49a.
17446
17447 2002-05-01 Akim Demaille <akim@epita.fr>
17448
17449 * src/skeleton.h: Remove.
17450
17451 2002-05-01 Akim Demaille <akim@epita.fr>
17452
17453 * src/skeleton.h: Fix the #endif.
17454 Reported by Magnus Fromreide.
17455
17456 2002-04-26 Paul Eggert <eggert@twinsun.com>
17457
17458 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17459 Define if we define YYSTYPE and YYLTYPE, respectively.
17460 (YYCOPY): Fix [] quoting problem in the non-GCC case.
17461
17462 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
17463
17464 * src/scan-skel.l: Postprocess quadrigraphs.
17465
17466 * src/reader.c (copy_character): New function, used to output
17467 single characters while replacing `[' and `]' with quadrigraphs, to
17468 avoid troubles with M4 quotes.
17469 (copy_comment): Output characters with copy_character.
17470 (read_additionnal_code): Likewise.
17471 (copy_string2): Likewise.
17472 (copy_definition): Likewise.
17473
17474 * tests/calc.at: Exercise M4 quoting.
17475
17476 2002-04-25 Akim Demaille <akim@epita.fr>
17477
17478 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17479 between `!' and the command.
17480 Reported by Paul Eggert.
17481
17482 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
17483
17484 * tests/calc.at: Exercise prologue splitting.
17485
17486 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17487 `b4_post_prologue' instead of `b4_prologue'.
17488
17489 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17490 muscles.
17491 (output): Free pre_prologue_obstack and post_prologue_obstack.
17492 * src/files.h, src/files.c (attrs_obstack): Remove.
17493 (pre_prologue_obstack, post_prologue_obstack): New.
17494 * src/reader.c (copy_definition): Add a parameter to specify the
17495 obstack to fill, instead of using attrs_obstack unconditionally.
17496 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17497 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17498
17499 2002-04-23 Paul Eggert <eggert@twinsun.com>
17500
17501 * data/bison.simple: Remove unnecessary commentary and white
17502 space differences from 1_29-branch.
17503 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17504
17505 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17506 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17507 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17508 constructors or destructors.
17509
17510 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17511
17512 2002-04-23 Akim Demaille <akim@epita.fr>
17513
17514 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17515 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17516 location with columns.
17517 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17518 All reported by Paul Eggert.
17519
17520 2002-04-22 Akim Demaille <akim@epita.fr>
17521
17522 * src/reduce.c (dump_grammar): Move to...
17523 * src/gram.h, src/gram.c (grammar_dump): here.
17524 Be sure to separate long item numbers.
17525 Don't read the members of a rule's prec if its nil.
17526
17527 2002-04-22 Akim Demaille <akim@epita.fr>
17528
17529 * src/output.c (table_size, table_grow): New.
17530 (MAXTABLE): Remove, replace uses with table_size.
17531 (pack_vector): Instead of dying when the table is too big, grow it.
17532
17533 2002-04-22 Akim Demaille <akim@epita.fr>
17534
17535 * data/bison.simple (yyr1): Its type is that of a token number.
17536 * data/bison.c++ (r1_): Likewise.
17537 * tests/regression.at (Web2c Actions): Adjust.
17538
17539 2002-04-22 Akim Demaille <akim@epita.fr>
17540
17541 * src/reader.c (token_translations_init): 256 is now the default
17542 value for the error token, i.e., it will be assigned another
17543 number if the user assigned 256 to one of her tokens.
17544 (reader): Don't force 256 to error.
17545 * doc/bison.texinfo (Symbols): Adjust.
17546 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17547 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17548 etc. instead of 10, 20, 30 (which was used to `jump' over error
17549 (256) and undefined (2)).
17550
17551 2002-04-22 Akim Demaille <akim@epita.fr>
17552
17553 Propagate more token_number_t.
17554
17555 * src/gram.h (token_number_as_item_number)
17556 (item_number_as_token_number): New.
17557 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17558 Use it to create output_item_number_table and
17559 output_token_number_table.
17560 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17561 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17562 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17563 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17564
17565 2002-04-22 Akim Demaille <akim@epita.fr>
17566
17567 * src/output.h, src/output.c (get_lines_number): Remove.
17568
17569 2002-04-19 Akim Demaille <akim@epita.fr>
17570
17571 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17572 as Lex/Flex'.
17573 (Debugging): More details about enabling the debugging features.
17574 (Table of Symbols): Describe $$, $n, @$, and @n.
17575 Suggested by Tim Josling.
17576
17577 2002-04-19 Akim Demaille <akim@epita.fr>
17578
17579 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17580
17581 2002-04-10 Akim Demaille <akim@epita.fr>
17582
17583 * src/system.h: Rely on HAVE_LIMITS_H.
17584 Suggested by Paul Eggert.
17585
17586 2002-04-09 Akim Demaille <akim@epita.fr>
17587
17588 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17589 full stderr, and strip it according to the bison options, instead
17590 of composing the error message from different bits.
17591 This makes it easier to check for several error messages.
17592 Adjust all the invocations.
17593 Add an invocation exercising the error token.
17594 Add an invocation demonstrating a stupid error message.
17595 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17596 Adjust the tests.
17597 Error message are for stderr, not stdout.
17598
17599 2002-04-09 Akim Demaille <akim@epita.fr>
17600
17601 * src/gram.h, src/gram.c (error_token_number): Remove, use
17602 errtoken->number.
17603 * src/reader.c (reader): Don't specify the user token number (2)
17604 for $undefined, as it uselessly prevents using it.
17605 * src/gram.h (token_number_t): Move to...
17606 * src/symtab.h: here.
17607 (state_t.number): Is a token_number_t.
17608 * src/print.c, src/reader.c: Use undeftoken->number instead of
17609 hard coded 2.
17610 (Even though this 2 is not the same as above: the number of the
17611 undeftoken remains being 2, it is its user token number which
17612 might not be 2).
17613 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17614 `user_token_number_max'.
17615 Output `undef_token_number'.
17616 * data/bison.simple, data/bison.c++: Use them.
17617 Be sure to map invalid yylex return values to
17618 `undef_token_number'. This saves us from gratuitous SEGV.
17619
17620 * tests/conflicts.at (Solved SR Conflicts)
17621 (Unresolved SR Conflicts): Adjust.
17622 * tests/regression.at (Web2c Actions): Adjust.
17623
17624 2002-04-08 Akim Demaille <akim@epita.fr>
17625
17626 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17627 Adding #line.
17628 Remove the duplicate `typedefs'.
17629 (RhsNumberType): Fix the declaration and various other typos.
17630 Use __ofile__.
17631 * data/bison.simple: Use __ofile__.
17632 * src/scan-skel.l: Handle __ofile__.
17633
17634 2002-04-08 Akim Demaille <akim@epita.fr>
17635
17636 * src/gram.h (item_number_t): New, the type of item numbers in
17637 RITEM. Note that it must be able to code symbol numbers as
17638 positive number, and the negation of rule numbers as negative
17639 numbers.
17640 Adjust all dependencies (pretty many).
17641 * src/reduce.c (rule): Remove this `short *' pointer: use
17642 item_number_t.
17643 * src/system.h (MINSHORT, MAXSHORT): Remove.
17644 Include `limits.h'.
17645 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17646 (shortcpy): Remove.
17647 (MAXTABLE): Move to...
17648 * src/output.c (MAXTABLE): here.
17649 (prepare_rules): Use output_int_table to output rhs.
17650 * data/bison.simple, data/bison.c++: Adjust.
17651 * tests/torture.at (Big triangle): Move the limit from 254 to
17652 500.
17653 * tests/regression.at (Web2c Actions): Ajust.
17654
17655 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17656 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17657 passes, but produces negative #line number, once fixed, GCC is
17658 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17659 C), it passes.
17660 * src/state.h (state_h): Code input lines on ints, not shorts.
17661
17662 2002-04-08 Akim Demaille <akim@epita.fr>
17663
17664 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17665 and then the grammar.
17666
17667 2002-04-08 Akim Demaille <akim@epita.fr>
17668
17669 * src/system.h: No longer using strndup.
17670
17671 2002-04-07 Akim Demaille <akim@epita.fr>
17672
17673 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17674 * src/output.c (output_table_data): Return the longest number.
17675 (prepare_tokens): Output `token_number_max').
17676 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17677 New.
17678 Use them to define yy_token_number_type/TokenNumberType.
17679 Use this type for yytranslate.
17680 * tests/torture.at (Big triangle): Push the limit from 124 to
17681 253.
17682 * tests/regression.at (Web2c Actions): Adjust.
17683
17684 2002-04-07 Akim Demaille <akim@epita.fr>
17685
17686 * tests/torture.at (Big triangle): New.
17687 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17688 * tests/existing.at: here.
17689
17690 2002-04-07 Akim Demaille <akim@epita.fr>
17691
17692 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17693 nritems.
17694 Adjust dependencies.
17695
17696 2002-04-07 Akim Demaille <akim@epita.fr>
17697
17698 * src/reader.c: Normalize increments to prefix form.
17699
17700 2002-04-07 Akim Demaille <akim@epita.fr>
17701
17702 * src/reader.c, symtab.c: Remove debugging code.
17703
17704 2002-04-07 Akim Demaille <akim@epita.fr>
17705
17706 Rename all the `bucket's as `symbol_t'.
17707
17708 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17709 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17710 * src/symtab.c, src/symtab.h (bucket): Rename as...
17711 (symbol_t): this.
17712 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17713 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17714 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17715 (buckets_new, buckets_free, buckets_do): Rename as...
17716 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17717 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17718 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17719 (symbols_new, symbols_free, symbols_do): these.
17720
17721 2002-04-07 Akim Demaille <akim@epita.fr>
17722
17723 Use lib/hash for the symbol table.
17724
17725 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17726 EOF.
17727 * src/lex.c (lex): Set the `number' member of new terminals.
17728 * src/reader.c (bucket_check_defined, bucket_make_alias)
17729 (bucket_check_alias_consistence, bucket_translation): New.
17730 (reader, grammar_free, readgram, token_translations_init)
17731 (packsymbols): Adjust.
17732 (reader): Number the predefined tokens.
17733 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17734 for predefined tokens.
17735 * src/symtab.h (bucket): Remove all the hash table related
17736 members.
17737 * src/symtab.c (symtab): Replace by...
17738 (bucket_table): this.
17739 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17740 (buckets_new, buckets_do): New.
17741
17742 2002-04-07 Akim Demaille <akim@epita.fr>
17743
17744 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17745 (start_symbol, max_user_token_number, semantic_parser)
17746 (error_token_number): Initialize.
17747 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17748 Initialize.
17749 (reader): Don't.
17750 (errtoken, eoftoken, undeftoken, axiom): Extern.
17751
17752 2002-04-07 Akim Demaille <akim@epita.fr>
17753
17754 * src/gram.h (rule_s): prec and precsym are now pointers
17755 to the bucket giving the priority/associativity.
17756 Member `associativity' removed: useless.
17757 * src/reduce.c, src/conflicts.c: Adjust.
17758
17759 2002-04-07 Akim Demaille <akim@epita.fr>
17760
17761 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17762 Properly escape the symbols' TAG when outputting them.
17763
17764 2002-04-07 Akim Demaille <akim@epita.fr>
17765
17766 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17767
17768 2002-04-07 Akim Demaille <akim@epita.fr>
17769
17770 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17771 (LArule): this, which is an array to rule_t*.
17772 * src/print.c, src/conflicts.c: Adjust.
17773
17774 2002-04-07 Akim Demaille <akim@epita.fr>
17775
17776 * src/gram.h (rule_t): Rename `number' as `user_number'.
17777 `number' is a new member.
17778 Adjust dependencies.
17779 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17780
17781 2002-04-07 Akim Demaille <akim@epita.fr>
17782
17783 As a result of the previous patch, it is no longer needed
17784 to reorder ritem itself.
17785
17786 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17787
17788 2002-04-07 Akim Demaille <akim@epita.fr>
17789
17790 Be sure never to walk through RITEMS, but use only data related to
17791 the rules themselves. RITEMS should be banished.
17792
17793 * src/output.c (output_token_translations): Rename as...
17794 (prepare_tokens): this.
17795 In addition to `translate', prepare the muscles `tname' and
17796 `toknum', which were handled by...
17797 (output_rule_data): this.
17798 Remove, and move the remainder of its outputs into...
17799 (prepare_rules): this new routines, which also merges content from
17800 (output_gram): this.
17801 (prepare_rules): Be sure never to walk through RITEMS.
17802 (output_stos): Rename as...
17803 (prepare_stos): this.
17804 (output): Always invoke prepare_states, after all, just don't use it
17805 in the output if you don't need it.
17806
17807 2002-04-07 Akim Demaille <akim@epita.fr>
17808
17809 * src/LR0.c (new_state): Display `nstates' as the name of the
17810 newly created state.
17811 Adjust to initialize first_state and last_state if needed.
17812 Be sure to distinguish the initial from the final state.
17813 (new_states): Create the itemset of the initial state, and use
17814 new_state.
17815 * src/closure.c (closure): Now that the initial state has its
17816 items properly set, there is no need for a special case when
17817 creating `ruleset'.
17818
17819 As a result, now the rule 0, reducing to $axiom, is visible in the
17820 outputs. Adjust the test suite.
17821
17822 * tests/conflicts.at (Solved SR Conflicts)
17823 (Unresolved SR Conflicts): Adjust.
17824 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17825 * tests/conflicts.at (S/R in initial): New.
17826
17827 2002-04-07 Akim Demaille <akim@epita.fr>
17828
17829 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
17830 the RHS of the rules.
17831 * src/output.c (output_gram): Likewise.
17832
17833 2002-04-07 Akim Demaille <akim@epita.fr>
17834
17835 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
17836 bucket.
17837 Adjust all dependencies.
17838 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
17839 `number' of the buckets too.
17840 * src/gram.h: Include `symtab.h'.
17841 (associativity): Move to...
17842 * src/symtab.h: here.
17843 No longer include `gram.h'.
17844
17845 2002-04-07 Akim Demaille <akim@epita.fr>
17846
17847 * src/gram.h, src/gram.c (rules_rhs_length): New.
17848 (ritem_longest_rhs): Use it.
17849 * src/gram.h (rule_t): `number' is a new member.
17850 * src/reader.c (packgram): Set it.
17851 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
17852 the end of `rules', and count them out of `nrules'.
17853 (reduce_output, dump_grammar): Adjust.
17854 * src/print.c (print_grammar): It is no longer needed to check for
17855 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
17856 * tests/reduce.at (Reduced Automaton): New test.
17857
17858 2002-04-07 Akim Demaille <akim@epita.fr>
17859
17860 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
17861 lacking `+ 1' to nrules, Bison reported as useless a token if it
17862 was used solely to set the precedence of the last rule...
17863
17864 2002-04-07 Akim Demaille <akim@epita.fr>
17865
17866 * data/bison.c++, data/bison.simple: Don't output the current file
17867 name in #line, to avoid useless diffs between two identical
17868 outputs under different names.
17869
17870 2002-04-07 Akim Demaille <akim@epita.fr>
17871
17872 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
17873 Normalize loops to using `< nrules + 1', not `<= nrules'.
17874
17875 2002-04-07 Akim Demaille <akim@epita.fr>
17876
17877 * TODO: Update.
17878
17879 2002-04-07 Akim Demaille <akim@epita.fr>
17880
17881 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
17882 bucket.value as bucket.number.
17883
17884 2002-04-07 Akim Demaille <akim@epita.fr>
17885
17886 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
17887 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17888 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
17889 RHS, instead of being an index in RITEMS.
17890
17891 2002-04-04 Paul Eggert <eggert@twinsun.com>
17892
17893 * doc/bison.texinfo: Update copyright date.
17894 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
17895 (Symbols): Warn about running Bison in one character set,
17896 but compiling and/or running in an incompatible one.
17897 Warn about character code 256, too.
17898
17899 2002-04-03 Paul Eggert <eggert@twinsun.com>
17900
17901 * src/bison.data (YYSTACK_ALLOC): Depend on whether
17902 YYERROR_VERBOSE is nonzero, not whether it is defined.
17903
17904 Merge changes from bison-1_29-branch.
17905
17906 2002-03-20 Paul Eggert <eggert@twinsun.com>
17907
17908 Merge fixes from Debian bison_1.34-1.diff.
17909
17910 * configure.in (AC_PREREQ): 2.53.
17911
17912 2002-03-20 Akim Demaille <akim@epita.fr>
17913
17914 * src/conflicts.c (log_resolution): Argument `resolution' is const.
17915
17916 2002-03-19 Paul Eggert <eggert@twinsun.com>
17917
17918 * src/bison.simple (YYCOPY): New macro.
17919 (YYSTACK_RELOCATE): Use it.
17920 Remove Type arg; no longer needed. All callers changed.
17921 (yymemcpy): Remove; no longer needed.
17922
17923 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
17924 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17925
17926 2002-03-19 Akim Demaille <akim@epita.fr>
17927
17928 Test and fix the #line outputs.
17929
17930 * tests/atlocal.at (GCC): New.
17931 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
17932 (Prologue synch line, %union synch line, Postprologue synch line)
17933 (Action synch line, Epilogue synch line): New tests.
17934 * src/reader.c (parse_union_decl): Define the muscle stype_line.
17935 * data/bison.simple, data/bison.c++: Use it.
17936
17937 2002-03-19 Akim Demaille <akim@epita.fr>
17938
17939 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
17940 (Solved SR Conflicts, %expect not enough, %expect right)
17941 (%expect too much): Move to...
17942 * tests/conflicts.at: this new file.
17943
17944 2002-03-19 Akim Demaille <akim@epita.fr>
17945
17946 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17947 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
17948 that we can move to enums for instance.
17949 * src/output.c (token_definitions_output): Output a list of
17950 `token-name, token-number' instead of the #define.
17951 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
17952
17953 2002-03-14 Akim Demaille <akim@epita.fr>
17954
17955 Use Gettext 0.11.1.
17956
17957 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
17958
17959 * data/bison.c++: Make the user able to add members to the generated
17960 parser by subclassing.
17961
17962 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
17963
17964 * src/reader.c (read_additionnal_code): `c' should be an integer, not
17965 a character.
17966 Reported by Nicolas Tisserand and Nicolas Burrus.
17967
17968 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17969
17970 * src/reader.c: Warn about lacking semi-colons, do not complain.
17971
17972 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17973
17974 * data/bison.c++: Remove a debug line.
17975
17976 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17977
17978 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
17979 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
17980 provide a default implementation.
17981
17982 2002-03-04 Akim Demaille <akim@epita.fr>
17983
17984 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17985 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17986 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17987 * tests/semantic.at (Parsing Guards): Similarly.
17988 * src/reader.at (readgram): Complain if the last rule is not ended
17989 with a semi-colon.
17990
17991 2002-03-04 Akim Demaille <akim@epita.fr>
17992
17993 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17994 * src/closure.c: here.
17995 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17996 RTC.
17997 * src/warshall.h, src/warshall.c: Remove.
17998 * tests/sets.at (Broken Closure): Adjust.
17999
18000 2002-03-04 Akim Demaille <akim@epita.fr>
18001
18002 * src/output.c (output_skeleton): tempdir is const.
18003 bytes_read is unused.
18004
18005 2002-03-04 Akim Demaille <akim@epita.fr>
18006
18007 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18008 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18009 Update.
18010 From Michael Hayes.
18011
18012 2002-03-04 Akim Demaille <akim@epita.fr>
18013
18014 * src/closure.c (closure): `r' is unused.
18015
18016 2002-03-04 Akim Demaille <akim@epita.fr>
18017
18018 * tests/sets.at (Broken Closure): Add the ending `;'.
18019 * src/reader.at (readgram): Complain if a rule is not ended with a
18020 semi-colon.
18021
18022 2002-03-04 Akim Demaille <akim@epita.fr>
18023
18024 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18025 (count_sr_conflicts): Use bitset_count.
18026 * src/reduce.c (inaccessable_symbols): Ditto.
18027 (bits_size): Remove.
18028 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18029
18030 2002-03-04 Akim Demaille <akim@epita.fr>
18031
18032 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18033 * src/reduce.c: Remove the `bitset_zero's following the
18034 `bitset_create's, as now it is performed by the latter.
18035
18036 2002-03-04 Akim Demaille <akim@epita.fr>
18037
18038 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18039 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18040 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18041 latest sources from Michael.
18042
18043 2002-03-04 Akim Demaille <akim@epita.fr>
18044
18045 * src/output.c (output): Don't free the grammar.
18046 * src/reader.c (grammar_free): New.
18047 * src/main.c (main): Call it and don't free symtab here.
18048
18049 2002-03-04 Akim Demaille <akim@epita.fr>
18050
18051 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18052 before returning.
18053 Reported by Benoit Perrot.
18054
18055 2002-03-04 Akim Demaille <akim@epita.fr>
18056
18057 Use bitset operations when possible, not loops over bits.
18058
18059 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18060 bitset_or.
18061 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18062 * src/reduce.c (useless_nonterminals): Formatting changes.
18063 * src/warshall.c (TC): Use bitset_or.
18064
18065 2002-03-04 Akim Demaille <akim@epita.fr>
18066
18067 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18068 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18069 Ditto.
18070
18071 2002-03-04 Akim Demaille <akim@epita.fr>
18072
18073 * src/lalr.c (F): Now a bitset*.
18074 Adjust all dependencies.
18075
18076 2002-03-04 Akim Demaille <akim@epita.fr>
18077
18078 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18079 Adjust all dependencies.
18080
18081 2002-03-04 Akim Demaille <akim@epita.fr>
18082
18083 * src/L0.c, src/LR0.h (nstates): Be size_t.
18084 Adjust comparisons (signed vs unsigned).
18085 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18086 bitset*.
18087 Adjust all dependencies.
18088
18089 2002-03-04 Akim Demaille <akim@epita.fr>
18090
18091 * src/closure.c (firsts): Now, also a bitset.
18092 Adjust all dependencies.
18093 (varsetsize): Remove, now unused.
18094 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18095
18096 2002-03-04 Akim Demaille <akim@epita.fr>
18097
18098 * src/print.c: Convert to use bitset.h, not hand coded iterations
18099 over ints.
18100
18101 2002-03-04 Akim Demaille <akim@epita.fr>
18102
18103 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18104
18105 2002-03-04 Akim Demaille <akim@epita.fr>
18106
18107 * src/closure.c (ruleset): Be a bitset.
18108 (rulesetsize): Remove.
18109
18110 2002-03-04 Akim Demaille <akim@epita.fr>
18111
18112 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18113 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18114 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18115 * src/closure.c (fderives): Be an array of bitsets.
18116
18117 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
18118
18119 * data/bison.c++: Merge the two generated headers. Insert a copyright
18120 notice in each output file.
18121
18122 2002-02-28 Akim Demaille <akim@epita.fr>
18123
18124 * data/bison.c++: Copy the prologue of bison.simple to fetch
18125 useful M4 definitions, such as b4_header_guard.
18126
18127 2002-02-25 Akim Demaille <akim@epita.fr>
18128
18129 * src/getargs.c (version): Give the name of the authors, and use a
18130 translator friendly scheme for the bgr
18131 copyright notice.
18132
18133 2002-02-25 Akim Demaille <akim@epita.fr>
18134
18135 * src/output.c (header_output): Remove, now handled completely via
18136 M4.
18137
18138 2002-02-25 Akim Demaille <akim@epita.fr>
18139
18140 * m4/m4.m4: New, from CVS Autoconf.
18141 * configure.in: Invoke it.
18142 * src/output.c (output_skeleton): Use its result instead of the
18143 hard coded name.
18144
18145 2002-02-25 Akim Demaille <akim@epita.fr>
18146
18147 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18148 Fileutils 4.1.5.
18149 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18150 * src/output.c (output_skeleton): Use mkstemp to create a real
18151 temporary file.
18152 Move the filling of `skeleton' and its muscle to...
18153 (prepare): here.
18154 (output): Move the definition of the prologue muscle to...
18155 (prepare): here.
18156 * src/system.h (DEFAULT_TMPDIR): New.
18157
18158 2002-02-14 Paul Eggert <eggert@twinsun.com>
18159
18160 Remove the support for C++ namespace cleanliness; it was
18161 causing more problems than it was curing, since it didn't work
18162 properly on some nonstandard C++ compilers. This can wait
18163 for a proper C++ parser.
18164
18165 * NEWS: Document this.
18166 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18167 of C++, as it's treated like C now.
18168 * src/bison.simple (YYSTD): Remove.
18169 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18170 Treat C++ just like Standard C instead of trying to support
18171 namespace cleanliness.
18172
18173 2002-02-14 Akim Demaille <akim@epita.fr>
18174
18175 * tests/regression.at (else): Adjust to Andreas' change.
18176
18177 2002-02-14 Akim Demaille <akim@epita.fr>
18178
18179 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18180
18181 2002-02-13 Andreas Schwab <schwab@suse.de>
18182
18183 * src/output.c (output_rule_data): Don't output NULL, it might
18184 not be defined yet.
18185
18186 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
18187
18188 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18189 (Copyright notice): Update.
18190
18191 2002-02-11 Akim Demaille <akim@epita.fr>
18192
18193 * tests/regression.at (%nonassoc and eof): Don't include
18194 nonportable headers.
18195
18196 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
18197
18198 * data/bison.c++: Correct error recovery. Make the user able to
18199 initialize the starting location.
18200
18201 2002-02-07 Akim Demaille <akim@epita.fr>
18202
18203 * tests/input.at: New.
18204
18205 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18206
18207 * data/bison.c++: Replace some direct m4 expansions by constants. Be
18208 more consistent when naming methods and variables. Put preprocessor
18209 directives around tables only needed for debugging.
18210
18211 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18212
18213 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18214 C++ parsers.
18215 (yy::b4_name::parse): Use print_.
18216
18217 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18218
18219 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18220
18221 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18222
18223 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18224 C++ parsers.
18225 (yy::b4_name::parse): Build verbose error messages, and use error_.
18226
18227 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18228
18229 * data/bison.c++: Fix m4 quoting in comments.
18230
18231 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18232
18233 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18234 not expanded by m4.
18235
18236 2002-02-05 Akim Demaille <akim@epita.fr>
18237
18238 * data/bison.c++: Adjust to the M4 back end.
18239 More is certainly needed.
18240
18241 2002-02-05 Akim Demaille <akim@epita.fr>
18242
18243 Give a try to M4 as a back end.
18244
18245 * lib/readpipe.c: New, from wdiff.
18246 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18247 BISON_HAIRY.
18248 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18249 specific values. Now it is m4 that performs the lookup.
18250 * src/parse-skel.y: Remove.
18251 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18252 * src/output.c (actions_output, guards_output)
18253 (token_definitions_output): No longer keeps track of the output
18254 line number, hence remove the second argument.
18255 (guards_output): Check against the guard member of a rule, not the
18256 action member.
18257 Adjust callers.
18258 (output_skeleton): Don't look for the skeleton location, let m4 do
18259 that.
18260 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18261 file will be used.
18262 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18263 (prepare): Given that for the time being changesyntax is not
18264 usable in M4, rename the muscles using `-' to `_'.
18265 Define `defines_flag', `output_parser_name' and `output_header_name'.
18266 * src/output.h (actions_output, guards_output)
18267 (token_definitions_output): Adjust prototypes.
18268 * src/scan-skel.l: Instead of scanning the skeletons, it now
18269 processes the output of m4: `__oline__' and `#output'.
18270 * data/bison.simple: Adjust to be used by M4(sugar).
18271 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18272 to date.
18273 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18274 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18275 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18276 shamelessly stolen from CVS Autoconf.
18277
18278 2002-02-05 Akim Demaille <akim@epita.fr>
18279
18280 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18281 * configure.in: Check for the declarations of free and malloc.
18282 * src/muscle_tab.c: Adjust.
18283
18284 2002-02-05 Akim Demaille <akim@epita.fr>
18285
18286 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18287 which have no values.
18288
18289 2002-02-05 Akim Demaille <akim@epita.fr>
18290
18291 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18292 * data/: here.
18293
18294 2002-01-29 Paul Eggert <eggert@twinsun.com>
18295
18296 * src/bison.simple (YYSIZE_T): Do not define merely because
18297 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18298 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18299
18300 2002-01-27 Akim Demaille <akim@epita.fr>
18301
18302 Fix `%nonassoc and eof'.
18303
18304 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18305 which were not properly copied! Replace
18306 memcpy (res->errs, src->errs, src->nerrs);
18307 with
18308 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18309 !!!
18310 * tests/regression.at (%nonassoc and eof): Adjust to newest
18311 Autotest: `.' is not in the PATH.
18312
18313 2002-01-27 Akim Demaille <akim@epita.fr>
18314
18315 * tests/sets.at (AT_EXTRACT_SETS): New.
18316 (Nullable): Use it.
18317 (Firsts): New.
18318
18319 2002-01-26 Akim Demaille <akim@epita.fr>
18320
18321 * tests/actions.at, tests/calc.at, tests/headers.at,
18322 * tests/torture.at: Adjust to the newest Autotest which no longer
18323 forces `.' in the PATH.
18324
18325 2002-01-25 Akim Demaille <akim@epita.fr>
18326
18327 * tests/regression.at (%nonassoc and eof): New.
18328 Suggested by Robert Anisko.
18329
18330 2002-01-24 Akim Demaille <akim@epita.fr>
18331
18332 Bison dumps core when trying to complain about broken input files.
18333 Reported by Cris van Pelt.
18334
18335 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18336 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18337 into...
18338 (Invalid inputs): Strengthen: exercise parse_percent_token.
18339
18340 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
18341
18342 * src/Makefile.am: Add bison.c++.
18343 * src/bison.c++: New skeleton.
18344
18345 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
18346
18347 * po/it.po: New.
18348
18349 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18350
18351 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18352
18353 2002-01-20 Marc Autret <marc@gnu.org>
18354
18355 * src/files.c (compute_output_file_names): Fix
18356
18357 2002-01-20 Marc Autret <marc@gnu.org>
18358
18359 * tests/output.at: New test.
18360 * src/files.c (compute_base_names): Don't map extensions when
18361 the YACC flag is set, use defaults.
18362 Reported by Evgeny Stambulchik.
18363
18364 2002-01-20 Marc Autret <marc@gnu.org>
18365
18366 * src/system.h: Need to define __attribute__ away for non-GCC
18367 compilers as well (i.e., the vendor C compiler).
18368 Suggested by Albert Chin-A-Young.
18369
18370 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18371
18372 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18373 canonical definition.
18374 * src/system.h: Use the canonical definition for PARAMS (avoids
18375 a conflict with the macro from lib/hash.h).
18376
18377 2002-01-11 Akim Demaille <akim@epita.fr>
18378
18379 * configure.in: Use AC_FUNC_STRNLEN.
18380 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
18381
18382 2002-01-09 Akim Demaille <akim@epita.fr>
18383
18384 * src/files.c, src/files.h (output_infix): New.
18385 (tab_extension): Remove.
18386 (compute_base_names): Compute the former, drop the latter.
18387 * src/output.c (prepare): Insert the muscles `output-infix', and
18388 `output-suffix'.
18389 * src/parse-skel.y (string, string.1): New.
18390 (section.header): Use it.
18391 (section.yacc): Remove.
18392 (prefix): Remove too.
18393 * src/scan-skel.l: Adjust.
18394 * src/bison.simple, src/bison.hairy: Adjust.
18395
18396 2002-01-09 Akim Demaille <akim@epita.fr>
18397
18398 * configure.in (WERROR_CFLAGS): Compute it.
18399 * src/Makefile.am (CFLAGS): Pass it.
18400 * tests/atlocal.in (CFLAGS): Idem.
18401 * src/files.c: Fix a few warnings.
18402 (get_extension_index): Remove, unused.
18403
18404 2002-01-08 Akim Demaille <akim@epita.fr>
18405
18406 * src/getargs.c (AS_FILE_NAME): New.
18407 (getargs): Use it to convert DOSish file names.
18408 * src/files.c (base_name): Rename as full_base_name to avoid
18409 clashes with `base_name ()'.
18410 (filename_split): New.
18411 (compute_base_names): N-th rewrite, using filename_split.
18412
18413 2002-01-08 Akim Demaille <akim@epita.fr>
18414
18415 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18416 New, stolen from the Fileutils 4.1.
18417 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18418 * configure.in: Check for the presence of memrchr, and of its
18419 prototype.
18420
18421 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18422
18423 * lib/hash.h (__P): Added definition for this macro.
18424 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18425 BUILT_SOURCES, to ensure they are generated first.
18426 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18427 %error-verbose to allow bootstrapping with bison 1.30x.
18428
18429 2002-01-06 Akim Demaille <akim@epita.fr>
18430
18431 * src/reader.c (parse_braces): Don't fetch the next char, the
18432 convention is to fetch on entry.
18433 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18434 'switch' without a following semicolon.
18435 * tests/regression.at (braces parsing): New.
18436
18437 2002-01-06 Akim Demaille <akim@epita.fr>
18438
18439 Bison is dead wrong in its RR conflict reports.
18440
18441 * tests/torture.at (GNU Cim Grammar): New.
18442 * src/conflicts.c (count_rr_conflicts): Fix.
18443
18444 2002-01-06 Akim Demaille <akim@epita.fr>
18445
18446 Creating package.m4 from configure.ac causes too many problems.
18447
18448 * tests/Makefile.am (package.m4): Create it by hand,
18449 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18450
18451 2002-01-06 Akim Demaille <akim@epita.fr>
18452
18453 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18454 skeleton.h.
18455
18456 2002-01-04 Paul Eggert <eggert@twinsun.com>
18457
18458 * doc/bison.texinfo (Debugging):
18459 Remove YYSTDERR; it's no longer defined or used.
18460 Also, s/cstdio.h/cstdio/.
18461
18462 2002-01-03 Akim Demaille <akim@epita.fr>
18463
18464 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18465
18466 2002-01-03 Akim Demaille <akim@epita.fr>
18467
18468 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18469 tracing code to --trace, wait for a better --trace option, with
18470 args.
18471
18472 2002-01-03 Akim Demaille <akim@epita.fr>
18473
18474 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18475 The ISO C++ standard is extremely clear about it: stderr is
18476 considered a macro, not a regular symbol (see table 94 `Header
18477 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18478 Therefore std:: does not apply to it. It still does with fprintf.
18479 Also, s/cstdio.h/cstdio/.
18480
18481 2002-01-03 Akim Demaille <akim@epita.fr>
18482
18483 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18484 for non system headers.
18485
18486 2002-01-02 Akim Demaille <akim@epita.fr>
18487
18488 Equip the skeleton chain with location tracking, runtime trace,
18489 pure parser and scanner.
18490
18491 * src/parse-skel.y: Request a pure parser, locations, and prefix
18492 renaming.
18493 (%union): Having several members with the same type does not help
18494 type mismatches, simplify.
18495 (YYPRINT, yyprint): New.
18496 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18497 (skel_error): this.
18498 Handle locations.
18499 * src/scan-skel.l: Adjust to these changes.
18500 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18501 (LOCATION_PRINT, skel_control_t): New.
18502
18503 2001-12-30 Akim Demaille <akim@epita.fr>
18504
18505 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18506 replace `gb' with BLANKS.
18507 * src/scan-skel.l: Adjust.
18508
18509 2001-12-30 Akim Demaille <akim@epita.fr>
18510
18511 * src/system.h: We don't need nor want bcopy.
18512 Throw away MS-DOS crap: we don't need getpid.
18513 * configure.in: We don't need strndup. It was even causing
18514 problems: because Flex includes the headers *before* us,
18515 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18516 not visible.
18517 * lib/xstrndup.c: New.
18518 * src/scan-skel.l: Use it.
18519 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18520 * src/parse-skel.y: Use %directives instead of #defines.
18521
18522 2001-12-30 Akim Demaille <akim@epita.fr>
18523
18524 * src/skeleton.h: New.
18525 * src/output.c (output_parser, output_master_parser): Remove, dead
18526 code.
18527 * src/output.h (get_lines_number, actions_output, guards_output)
18528 (token_definitions_output): Prototype them.
18529 * src/parse-skel.y: Add the license notice.
18530 Include output.h and skeleton.h.
18531 (process_skeleton): Returns void, and takes a single parameter.
18532 * src/scan-skel.l: Add the license notice.
18533 Include skeleton.h.
18534 Don't use %option yylineno: it seems that then Flex imagines
18535 REJECT has been used, and therefore it won't reallocate its
18536 buffers (which makes no other sense to me than a bug). It results
18537 in warnings for `unused: yy_flex_realloc'.
18538
18539 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
18540
18541 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18542 (MUSCLE_INSERT_PREFIX): ...to there.
18543 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18544 (MUSCLE_INSERT_PREFIX): Move from here...
18545
18546 * src/bison.hairy: Add a section directive. Put braces around muscle
18547 names. This parser skeleton is still broken, but Bison should not
18548 choke on a bad muscle 'syntax'.
18549 * src/bison.simple: Add a section directive. Put braces around muscle
18550 names.
18551
18552 * src/files.h (strsuffix, stringappend): Add declarations.
18553 (tab_extension): Add declaration.
18554 (short_base_name): Add declaration.
18555
18556 * src/files.c (strsuffix, stringappend): No longer static. These
18557 functions are used in the skeleton parser.
18558 (tab_extension): New.
18559 (compute_base_names): Use the computations done in this function
18560 to guess if the generated parsers should have '.tab' in their
18561 names.
18562 (short_base_name): No longer static.
18563
18564 * src/output.c (output_skeleton): New.
18565 (output): Disable call to output_master_parser, and give a try to
18566 a new skeleton handling system.
18567 (guards_output, actions_output): No longer static.
18568 (token_definitions_output, get_lines_number): No longer static.
18569
18570 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18571
18572 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
18573 parse-skel.y.
18574
18575 * src/parse-skel.y: New file.
18576 * src/scan-skel.l: New file.
18577
18578 2001-12-29 Akim Demaille <akim@epita.fr>
18579
18580 %name-prefix is broken.
18581
18582 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18583 Adjust all dependencies.
18584 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18585 %name-prefix.
18586
18587 Renaming yylval but not yylloc is not consistent. Now we do.
18588
18589 * src/bison.simple: Prefix yylloc if used.
18590 * doc/bison.texinfo (Decl Summary): Document that.
18591
18592 2001-12-29 Akim Demaille <akim@epita.fr>
18593
18594 * doc/bison.texinfo: Promote `%long-directive' over
18595 `%long_directive'.
18596 Remove all references to fixed-output-files, yacc is enough.
18597
18598 2001-12-29 Akim Demaille <akim@epita.fr>
18599
18600 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18601 user prologue. These are defaults.
18602 * tests/actions.at (Mid-rule actions): Make sure the user can
18603 define YYDEBUG and YYERROR_VERBOSE.
18604
18605 2001-12-29 Akim Demaille <akim@epita.fr>
18606
18607 * src/output.c (header_output): Don't forget to export YYLTYPE and
18608 yylloc.
18609 * tests/headers.at (export YYLTYPE): New, make sure it does.
18610 * tests/regression.at (%union and --defines, Invalid CPP headers):
18611 Move to...
18612 * tests/headers.at: here.
18613
18614 2001-12-29 Akim Demaille <akim@epita.fr>
18615
18616 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18617
18618 2001-12-29 Akim Demaille <akim@epita.fr>
18619
18620 * tests/actions.at (Mid-rule actions): Output on a single line
18621 instead of several.
18622
18623 2001-12-29 Akim Demaille <akim@epita.fr>
18624
18625 * doc/bison.texinfo: Formatting changes.
18626
18627 2001-12-29 Akim Demaille <akim@epita.fr>
18628
18629 Don't store the token defs in a muscle, just be ready to output it
18630 on command. Now possible via `symbols'. Fixes a memory leak.
18631
18632 * src/output.c (token_definitions_output): New.
18633 (output_parser, header_output): Use it.
18634 * src/reader.c (symbols_save): Remove.
18635
18636 2001-12-29 Akim Demaille <akim@epita.fr>
18637
18638 * src/bison.simple: Do not provide a default for YYSTYPE and
18639 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18640 default.
18641
18642 2001-12-29 Akim Demaille <akim@epita.fr>
18643
18644 Mid-rule actions are simply... ignored!
18645
18646 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18647 the empty-rule associated to the dummy symbol, not to the host
18648 rule.
18649 * tests/actions.at (Mid-rule actions): New.
18650
18651 2001-12-29 Akim Demaille <akim@epita.fr>
18652
18653 Memory leak.
18654
18655 * src/reader.c (reader): Free grammar.
18656
18657 2001-12-29 Akim Demaille <akim@epita.fr>
18658
18659 Memory leak.
18660
18661 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18662 since it allocates it for each state, although only one is needed.
18663 (allocate_storage): Do it here.
18664
18665 2001-12-29 Akim Demaille <akim@epita.fr>
18666
18667 * src/options.h, src/options.c (create_long_option_table): Rename
18668 as...
18669 (long_option_table_new): this, with a clearer prototype.
18670 (percent_table): Remove, unused,
18671 * src/getargs.c (getargs): Adjust.
18672
18673 2001-12-29 Akim Demaille <akim@epita.fr>
18674
18675 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18676 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18677 as states.
18678
18679 2001-12-29 Akim Demaille <akim@epita.fr>
18680
18681 * src/lalr.c (build_relations): Rename `states' as `states1'.
18682 Sorry, I don't understand exactly what it is, no better name...
18683
18684 2001-12-29 Akim Demaille <akim@epita.fr>
18685
18686 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18687 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18688 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18689 as rules.
18690
18691 2001-12-29 Akim Demaille <akim@epita.fr>
18692
18693 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18694 ago.
18695
18696 2001-12-29 Akim Demaille <akim@epita.fr>
18697
18698 * src/reader.c, src/reader.h (user_toknums): Remove.
18699 Adjust all users to use symbols[i]->user_token_number.
18700
18701 2001-12-29 Akim Demaille <akim@epita.fr>
18702
18703 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18704 Adjust all users to use symbols[i]->prec or ->assoc.
18705
18706 2001-12-29 Akim Demaille <akim@epita.fr>
18707
18708 * src/reader.c, src/reader.h (tags): Remove.
18709 Adjust all users to use symbols[i]->tag.
18710
18711 2001-12-29 Akim Demaille <akim@epita.fr>
18712
18713 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18714 and rule_table.
18715 * src/reader.c (packsymbols): Fill this table.
18716 Drop sprec.
18717 * src/conflicts.c (resolve_sr_conflict): Adjust.
18718 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18719 single table.
18720 Use symbols[i]->tag instead of tags[i].
18721
18722 2001-12-29 Akim Demaille <akim@epita.fr>
18723
18724 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18725 In addition, put a comment in there, to replace...
18726 * tests/regression.at (%union and C comments): Remove.
18727
18728 2001-12-29 Akim Demaille <akim@epita.fr>
18729
18730 * tests/regression.at (Web2c Actions): Blindly move the actual
18731 output as expected output. The contents *seem* right to me, but I
18732 can't pretend reading perfectly parser tables... Nonetheless, all
18733 the other tests pass correctly, the table look OK, even though the
18734 presence of `$axiom' is to be noted: AFAICS it is useless (but
18735 harmless).
18736
18737 2001-12-29 Akim Demaille <akim@epita.fr>
18738
18739 * src/reader.c (readgram): Don't add the rule 0 if there were no
18740 rules read. In other words, add it _after_ having performed
18741 grammar sanity checks.
18742 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18743
18744 2001-12-29 Akim Demaille <akim@epita.fr>
18745
18746 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18747 visible, and some states have now a different number.
18748
18749 2001-12-29 Akim Demaille <akim@epita.fr>
18750
18751 * src/reader.c (readgram): Bind the initial rule's lineno to that
18752 of the first rule.
18753 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18754 (Solved SR Conflicts): Adjust rule 0's line number.
18755
18756 2001-12-29 Akim Demaille <akim@epita.fr>
18757
18758 Fix the `GAWK Grammar' failure.
18759
18760 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18761 the reductions of the first state which was mistakenly confused
18762 with the final state because precisely final_state was initialized
18763 to 0.
18764 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18765 now noticed by Bison.
18766 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18767 have a reduction on $default.
18768
18769 2001-12-29 Akim Demaille <akim@epita.fr>
18770
18771 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18772 rule line numbers.
18773 * src/closure.c (print_closure): Likewise.
18774 * src/derives.c (print_derives): Likewise.
18775 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18776 now.
18777
18778 2001-12-29 Akim Demaille <akim@epita.fr>
18779
18780 * src/lalr.c (lookaheads_print): New.
18781 (lalr): Call it when --trace-flag.
18782 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18783 are dumped.
18784
18785 2001-12-29 Akim Demaille <akim@epita.fr>
18786
18787 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18788 when walking through ritem, even via rule->rhs.
18789 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18790 (useful_production, useless_nonterminals): Likewise.
18791 (reduce_grammar_tables): Likewise, plus update nritems.
18792 * src/nullable.c (set_nullable): Likewise.
18793 * src/lalr.c (build_relations): Likewise.
18794 * tests/sets.at (Nullable): Adjust.
18795 Fortunately, now, the $axiom is no longer nullable.
18796
18797 2001-12-29 Akim Demaille <akim@epita.fr>
18798
18799 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18800 the 0-sentinel.
18801 * src/gram.c (ritem_longest_rhs): Likewise.
18802 * src/reduce.c (nonterminals_reduce): Likewise.
18803 * src/print_graph.c (print_graph): Likewise.
18804 * src/output.c (output_rule_data): Likewise.
18805 * src/nullable.c (set_nullable): Likewise.
18806
18807 2001-12-29 Akim Demaille <akim@epita.fr>
18808
18809 * src/output.c: Comment changes.
18810
18811 2001-12-27 Paul Eggert <eggert@twinsun.com>
18812
18813 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18814 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18815 Sparc, as they were causing more porting problems than the
18816 (minor) performance improvement was worth.
18817
18818 Also, catch up with 1.31's YYSTD.
18819
18820 2001-12-27 Akim Demaille <akim@epita.fr>
18821
18822 * src/output.c (output_gram): Rely on nritems, not the
18823 0-sentinel. See below.
18824 Use -1 as separator, not 0.
18825 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18826 Rely on -1 as separator in yyrhs, instead of 0.
18827 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18828 twice `Now at end of input', therefore there are two lines less to
18829 expect.
18830
18831 2001-12-27 Akim Demaille <akim@epita.fr>
18832
18833 * tests/regression.at (Unresolved SR Conflicts):
18834 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
18835 below.
18836
18837 2001-12-27 Akim Demaille <akim@epita.fr>
18838
18839 * src/LR0.c (new_state): Recognize the final state by the fact it
18840 is reached by eoftoken.
18841 (insert_start_shifting_state, insert_eof_shifting_state)
18842 (insert_accepting_state, augment_automaton): Remove, since now
18843 these states are automatically computed from the initial state.
18844 (generate_states): Adjust.
18845 * src/print.c: When reporting a rule number to the user, substract
18846 1, so that the axiom rule is rule 0, and the first user rule is 1.
18847 * src/reduce.c: Likewise.
18848 * src/print_graph.c (print_core): For the time being, just as for
18849 the report, depend upon --trace-flags to dump the full set of
18850 items.
18851 * src/reader.c (readgram): Once the grammar read, insert the rule
18852 0: `$axiom: START-SYMBOL $'.
18853 * tests/set.at: Adjust: rule 0 is now displayed, and since the
18854 number of the states has changed (the final state is no longer
18855 necessarily the last), catch up.
18856
18857 2001-12-27 Akim Demaille <akim@epita.fr>
18858
18859 Try to make the use of the eoftoken valid. Given that its value
18860 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
18861 is used instead of > 0 where appropriate, (ii), depend upon nritems
18862 instead of the 0-sentinel.
18863
18864 * src/gram.h, src/gram.c (nritems): New.
18865 Expected to be duplication of nitems, but for the time being...
18866 * src/reader.c (packgram): Assert nritems and nitems are equal.
18867 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
18868 * src/closure.c (print_closure, print_fderives): Likewise.
18869 * src/gram.c (ritem_print): Likewise.
18870 * src/print.c (print_core, print_grammar): Likewise.
18871 * src/print_graph.c: Likewise.
18872
18873 2001-12-27 Akim Demaille <akim@epita.fr>
18874
18875 * src/main.c (main): If there are complains after grammar
18876 reductions, then output the report anyway if requested, then die.
18877 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
18878 * src/reader.c (eoftoken): New.
18879 (parse_token_decl): If the token being defined has value `0', it
18880 is the eoftoken.
18881 (packsymbols): No longer hack `tags' to insert `$' by hand.
18882 Be sure to preserve the value of the eoftoken.
18883 (reader): Make sure eoftoken is defined.
18884 Initialize nsyms to 0: now eoftoken is created just like the others.
18885 * src/print.c (print_grammar): Don't special case the eof token.
18886 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
18887 lie anyway, albeit pleasant.
18888 * tests/calc.at: Exercise error messages with eoftoken.
18889 Change the grammar so that empty input is invalid.
18890 Adjust expectations.
18891 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
18892
18893 2001-12-27 Akim Demaille <akim@epita.fr>
18894
18895 * configure.in: Check the protos of strchr ans strspn.
18896 Replace strchr if needed.
18897 * src/system.h: Provide the protos of strchr, strspn and memchr if
18898 missing.
18899 * lib/strchr.c: New.
18900 * src/reader.c (symbols_save): Use strchr.
18901
18902 2001-12-27 Akim Demaille <akim@epita.fr>
18903
18904 * src/print.c, src/print_graph.c (escape): New.
18905 Use it to quote the TAGS outputs.
18906 * src/print_graph.c (print_state): Now errors are in red, and
18907 reductions in green.
18908 Prefer high to wide: output the state number on a line of its own.
18909
18910 2001-12-27 Akim Demaille <akim@epita.fr>
18911
18912 * src/state.h, src/state.c (reductions_new): New.
18913 * src/LR0.c (set_state_table): Let all the states have a
18914 `reductions', even if reduced to 0.
18915 (save_reductions): Adjust.
18916 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
18917 * src/print.c (print_reductions, print_actions): Adjust.
18918 * src/output.c (action_row): Adjust.
18919
18920 2001-12-27 Akim Demaille <akim@epita.fr>
18921
18922 * src/state.h, src/state.c (errs_new, errs_dup): New.
18923 * src/LR0.c (set_state_table): Let all the states have an errs,
18924 even if reduced to 0.
18925 * src/print.c (print_errs, print_reductions): Adjust.
18926 * src/output.c (output_actions, action_row): Adjust.
18927 * src/conflicts.c (resolve_sr_conflict): Adjust.
18928
18929 2001-12-27 Akim Demaille <akim@epita.fr>
18930
18931 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
18932
18933 2001-12-27 Akim Demaille <akim@epita.fr>
18934
18935 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
18936 * src/print.c: here.
18937 (lookaheadset, shiftset): New, used as additional storage by
18938 print_reductions.
18939 (print_results): Adjust.
18940 (print_shifts, print_gotos, print_errs): New, extracted from...
18941 (print_actions): here.
18942 * src/print_graph.c (print_actions): Remove dead code.
18943
18944 2001-12-27 Akim Demaille <akim@epita.fr>
18945
18946 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
18947 `$n' and `@n'.
18948
18949 2001-12-27 Akim Demaille <akim@epita.fr>
18950
18951 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
18952 (build_relations): Adjust.
18953
18954 2001-12-27 Akim Demaille <akim@epita.fr>
18955
18956 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
18957 duplication.
18958
18959 2001-12-27 Akim Demaille <akim@epita.fr>
18960
18961 * src/reader.c (packgram): Catch nitems overflows.
18962
18963 2001-12-27 Akim Demaille <akim@epita.fr>
18964
18965 * src/files.c, src/files.h (guard_obstack): Remove.
18966 * src/output.c (output): Adjust.
18967 * src/reader.c (parse_braces): New, factoring...
18968 (copy_action, copy_guard): these two which are renamed as...
18969 (parse_action, parse_guard): these.
18970 As a voluntary consequence, using braces around guards is now
18971 mandatory.
18972
18973 2001-12-27 Akim Demaille <akim@epita.fr>
18974
18975 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
18976 * src/reader.c (symbol_list): `guard' and `guard_line' are new
18977 members.
18978 (symbol_list_new): Adjust.
18979 (copy_action): action_line is the first line, not the last.
18980 (copy_guard): Just as for actions, store the `action' only, not
18981 the switch/case/break flesh.
18982 Don't parse the user action that might follow the guard, let...
18983 (readgram): do it, i.e., now, there can be an action after a
18984 guard.
18985 In other words the guard is just explicitly optional.
18986 (packgram): Adjust.
18987 * src/output.c (guards_output): New.
18988 (output_parser): Call it when needed.
18989 (output): Also free the guard and attrs obstacks.
18990 * src/files.c, src/files.h (obstack_save): Remove.
18991 (output_files): Remove.
18992 As a result, if one needs the former `.act' file, using an
18993 appropriate skeleton which requires actions and guards is now
18994 required.
18995 * src/main.c (main): Adjust.
18996 * tests/semantic.at: New.
18997 * tests/regression.at: Use `input.y' as input file name.
18998 Avoid 8+3 problems by requiring input.c when the test needs the
18999 parser.
19000
19001 2001-12-27 Akim Demaille <akim@epita.fr>
19002
19003 * src/reader.c (symbol_list_new): Be sure to initialize all the
19004 fields.
19005
19006 2001-12-27 Akim Demaille <akim@epita.fr>
19007
19008 All the hacks using a final pseudo state are now useless.
19009
19010 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19011 * src/lalr.c (nLA): New.
19012 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19013 instead of lookaheadsp from the pseudo state (nstate + 1).
19014
19015 2001-12-27 Akim Demaille <akim@epita.fr>
19016
19017 * src/output.c (action_row, token_actions): Use a state_t instead
19018 of a integer, and nlookaheads instead of the following state's
19019 lookaheadsp.
19020
19021 2001-12-27 Akim Demaille <akim@epita.fr>
19022
19023 * src/conflicts.c (log_resolution, flush_shift)
19024 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19025 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19026 (conflicts_print, print_reductions): Use a state_t instead of an
19027 integer when referring to a state.
19028 As much as possible, depend upon nlookaheads, instead of the
19029 `lookaheadsp' member of the following state (since lookaheads of
19030 successive states are successive, the difference between state n + 1
19031 and n served as the number of lookaheads for state n).
19032 * src/lalr.c (add_lookback_edge): Likewise.
19033 * src/print.c (print_core, print_actions, print_state)
19034 (print_results): Likewise.
19035 * src/print_graph.c (print_core, print_actions, print_state)
19036 (print_graph): Likewise.
19037 * src/conflicts.h: Adjust.
19038
19039 2001-12-27 Akim Demaille <akim@epita.fr>
19040
19041 * src/bison.hairy: Formatting/comment changes.
19042 ANSIfy.
19043 Remove `register' indications.
19044 Add plenty of `static'.
19045
19046 2001-12-27 Akim Demaille <akim@epita.fr>
19047
19048 * src/output.c (prepare): Drop the muscle `ntbase' which
19049 duplicates ntokens.
19050 * src/bison.simple: Formatting/comment changes.
19051 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19052 is an undocumented synonym.
19053
19054 2001-12-22 Akim Demaille <akim@epita.fr>
19055
19056 * src/output.c (output_table_data): Change the prototype to use
19057 `int' for array ranges: some invocations do pass an int, not a
19058 short.
19059 Reported by Wayne Green.
19060
19061 2001-12-22 Akim Demaille <akim@epita.fr>
19062
19063 Some actions of web2c.y are improperly triggered.
19064 Reported by Mike Castle.
19065
19066 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19067 * tests/regression.at (Web2c): Rename as...
19068 (Web2c Report): this.
19069 (Web2c Actions): New.
19070
19071 2001-12-22 Akim Demaille <akim@epita.fr>
19072
19073 Reductions in web2c.y are improperly reported.
19074 Reported by Mike Castle.
19075
19076 * src/conflicts.c (print_reductions): Fix.
19077 * tests/regression.at (Web2c): New.
19078
19079 2001-12-18 Akim Demaille <akim@epita.fr>
19080
19081 Some host fail on `assert (!"foo")', which expands to
19082 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19083 Reported by Nelson Beebee.
19084
19085 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19086 `#define it_succeeded 0' and `assert (it_succeeded)'.
19087
19088 2001-12-17 Marc Autret <autret_m@epita.fr>
19089
19090 * src/bison.simple: Don't hard code the skeleton line and filename.
19091 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19092 New line counter 'skeleton_line' (skeleton-line muscle).
19093
19094 2001-12-17 Paul Eggert <eggert@twinsun.com>
19095
19096 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19097 YYDEBUG must be defined to a nonzero value.
19098
19099 * src/bison.simple (yytname): Do not assume that the user defines
19100 YYDEBUG to a properly parenthesized expression.
19101
19102 2001-12-17 Akim Demaille <akim@epita.fr>
19103
19104 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19105 nlookaheads is a new member.
19106 Adjust all users.
19107 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19108 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19109 state.
19110
19111 2001-12-17 Akim Demaille <akim@epita.fr>
19112
19113 * src/files.h, src/files.c (open_files, close_files): Remove.
19114 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19115 let...
19116 * src/reader.c (reader): Do it.
19117
19118 2001-12-17 Akim Demaille <akim@epita.fr>
19119
19120 * src/conflicts.c (print_reductions): Formatting changes.
19121
19122 2001-12-17 Akim Demaille <akim@epita.fr>
19123
19124 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19125 (flush_reduce): New.
19126 (resolve_sr_conflict): Adjust.
19127
19128 2001-12-17 Akim Demaille <akim@epita.fr>
19129
19130 * src/output.c (output_obstack): Be static and rename as...
19131 (format_obstack): this, to avoid any confusion with files.c's
19132 output_obstack.
19133 * src/reader.h (muscle_obstack): Move to...
19134 * src/output.h: here, since it's defined in output.c.
19135
19136 2001-12-17 Akim Demaille <akim@epita.fr>
19137
19138 * src/output.c (action_row, save_column, default_goto)
19139 (sort_actions, matching_state, pack_vector): Better variable
19140 locality.
19141
19142 2001-12-17 Akim Demaille <akim@epita.fr>
19143
19144 * src/output.c: Various formatting changes.
19145
19146 2001-12-17 Akim Demaille <akim@epita.fr>
19147
19148 * src/files.c (output_files): Free the output_obstack.
19149 * src/main.c (main): Call print and print_graph conditionally.
19150 * src/print.c (print): Work unconditionally.
19151 * src/print_graph.c (print_graph): Work unconditionally.
19152 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19153
19154 2001-12-16 Marc Autret <autret_m@epita.fr>
19155
19156 * src/output.c (actions_output): Fix. When we use %no-lines,
19157 there is one less line per action.
19158
19159 2001-12-16 Marc Autret <autret_m@epita.fr>
19160
19161 * src/bison.simple: Remove a useless #line directive.
19162 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19163 * src/output.c (get_lines_number): New.
19164 (output_parser): Adjust, now takes care about the lines of a
19165 output muscles.
19166 Fix line numbering.
19167 (actions_output): Computes the number of lines taken by actions.
19168 (output_master_parser): Insert new skeleton which is the name of
19169 the output parser file name.
19170
19171 2001-12-15 Marc Autret <autret_m@epita.fr>
19172
19173 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19174
19175 2001-12-15 Marc Autret <autret_m@epita.fr>
19176
19177 * src/output.c (output_gram): Keep track of the hairy one.
19178
19179 2001-12-15 Akim Demaille <akim@epita.fr>
19180
19181 Make `make distcheck' work.
19182
19183 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19184 system.h which uses libgettext.h.
19185
19186 2001-12-15 Akim Demaille <akim@epita.fr>
19187
19188 * src/nullable.c (set_nullable): Useless rules must be skipped,
19189 otherwise, since we range over their symbols, we might look at a
19190 nonterminal which no longer ``exists'', i.e., it is not counted in
19191 `nvars', hence we overflow our arrays.
19192
19193 2001-12-15 Akim Demaille <akim@epita.fr>
19194
19195 The header can also be produced directly, without any obstack!
19196 Yahoo!
19197
19198 * src/files.c, src/files.h (defines_obstack): Remove.
19199 (compute_header_macro): Global.
19200 (defines_obstack_save): Remove.
19201 * src/reader.c (parse_union_decl): No longer output to
19202 defines_obstack: its content can be found in the `stype' muscle
19203 anyway.
19204 (output_token_translations): Merge into...
19205 (symbols_output): this.
19206 Rename as...
19207 (symbols_save): this.
19208 (reader): Adjust.
19209 * src/output.c (header_output): New.
19210 (output): Call it.
19211
19212 2001-12-15 Akim Demaille <akim@epita.fr>
19213
19214 * src/reader.c (parse_union_decl): Instead of handling two obstack
19215 simultaneously, use one to define the `stype' muscle, and use the
19216 value of the latter to fill defines_obstack.
19217 (copy_comment): Remove.
19218 (copy_comment2): Work for a single obstack.
19219 Rename as...
19220 (copy_comment): this.
19221
19222 2001-12-15 Akim Demaille <akim@epita.fr>
19223
19224 * src/lex.c, src/lex.h (xgetc): No longer static.
19225 * src/reader.c (parse_union_decl): Revamp.
19226
19227 2001-12-15 Akim Demaille <akim@epita.fr>
19228
19229 Still making progress in separating Bison into (i) input, (ii)
19230 process, (iii) output: now we can directly output the parser file
19231 without using table_obstack at all.
19232
19233 * src/files.c, src/files.h (table_obstack): Bye bye.
19234 (parser_file_name): New.
19235 * src/files.c (compute_output_file_names): Compute it.
19236 * src/output.c (actions_output, output_parser)
19237 (output_master_parser): To a file instead of an obstack.
19238
19239 2001-12-15 Akim Demaille <akim@epita.fr>
19240
19241 Attach actions to rules, instead of pre-outputting them to
19242 actions_obstack.
19243
19244 * src/gram.h (rule_t): action and action_line are new members.
19245 * src/reader.c (symbol_list): Likewise.
19246 (copy_action): Save the actions within the rule.
19247 (packgram): Save them in rule_table.
19248 * src/output.c (actions_output): New.
19249 (output_parser): Use it on `%%actions'.
19250 (output_rule_data): Don't free rule_table.
19251 (output): Do it.
19252 (prepare): Don't save the `action' muscle.
19253 * src/bison.simple: s/%%action/%%actions/.
19254
19255 2001-12-15 Akim Demaille <akim@epita.fr>
19256
19257 * src/reader.c (copy_action): When --yacc, don't append a `;'
19258 to the user action: let it fail if lacking.
19259 Suggested by Arnold Robbins and Tom Tromey.
19260
19261 2001-12-14 Akim Demaille <akim@epita.fr>
19262
19263 * src/lex.c (literalchar): Simply return the char you decoded, non
19264 longer mess around with obstacks and int pointers.
19265 Adjust all callers.
19266
19267 2001-12-14 Akim Demaille <akim@epita.fr>
19268
19269 * src/lex.c (literalchar): Don't escape the special characters,
19270 just decode them, and keep them as char (before, eol was output as
19271 the 2 char string `\n' etc.).
19272 * src/output.c (output_rule_data): Use quotearg to output the
19273 token strings.
19274
19275 2001-12-13 Paul Eggert <eggert@twinsun.com>
19276
19277 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19278 Do not infringe on the global user namespace when using C++.
19279 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19280 All uses of `fprintf' and `stderr' changed.
19281
19282 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19283
19284 2001-12-13 Akim Demaille <akim@epita.fr>
19285
19286 The computation of nullable is broken: it doesn't handle empty
19287 RHS's properly.
19288
19289 * tests/torture.at (GNU AWK Grammar): New.
19290 * tests/sets.at (Nullable): New.
19291 * src/nullable.c (set_nullable): Instead of blindly looping over
19292 `ritems', loop over the rules, and then over their rhs's.
19293
19294 Work around Autotest bugs.
19295
19296 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19297 frame, because Autotest understand lines starting with a `+' as
19298 traces from the shell. Then, they are not processed properly.
19299 Admittedly an Autotest bug, but we don't have time to wait for
19300 Autotest to catch up.
19301 * tests/regression.at (Broken Closure): Adjust to the new table
19302 frames.
19303 Move to...
19304 * tests/sets.at: here.
19305
19306 2001-12-13 Akim Demaille <akim@epita.fr>
19307
19308 * src/closure.c (closure): Use nrules instead of playing tricks
19309 with BITS_PER_WORD.
19310
19311 2001-12-13 Akim Demaille <akim@epita.fr>
19312
19313 * src/print.c (print_actions): Output the handling of `$' as the
19314 traces do: shifting the token EOF. Before EOF was treated as a
19315 nonterminal.
19316 * tests/regression.at: Adjust some tests.
19317 * src/print_graph.c (print_core): Complete the set of items via
19318 closure. The next-to-final and final states are still unsatisfying,
19319 but that's to be addressed elsewhere.
19320 No longer output the rule numbers, but do output the state number.
19321 A single loop for the shifts + gotos is enough, but picked a
19322 distinct color for each.
19323 (print_graph): Initialize and finalize closure.
19324
19325 2001-12-13 Akim Demaille <akim@epita.fr>
19326
19327 * src/reader.c (readgram): Remove dead code, an strip useless
19328 braces.
19329 (get_type): Remove, unused.
19330
19331 2001-12-12 Akim Demaille <akim@epita.fr>
19332
19333 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19334 on that of lib/error.c.
19335
19336 2001-12-12 Akim Demaille <akim@epita.fr>
19337
19338 Some hosts don't like `/' in includes.
19339
19340 * src/system.h: Include libgettext.h without qualifying the path.
19341 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19342 $(top_srcdir).
19343
19344 2001-12-11 Marc Autret <autret_m@epita.fr>
19345
19346 * src/output.c (output_parser): Remove useless muscle.
19347
19348 2001-12-11 Marc Autret <autret_m@epita.fr>
19349
19350 * src/bison.simple: Remove #line just before %%epilogue. It
19351 is now handled in ...
19352 * src/reader.c (read_additionnal_code): Add the output of a
19353 #line for the epilogue.
19354
19355 2001-12-10 Marc Autret <autret_m@epita.fr>
19356
19357 * src/reader.c (copy_definition): Re-use CPP-outed code which
19358 replace precedent remove.
19359 * src/bison.simple: Remove #line before %%prologue because
19360 %%input-line is wrong at this time.
19361
19362 2001-12-10 Marc Autret <autret_m@epita.fr>
19363
19364 * src/reader.c (symbols_output): Clean up.
19365 * src/output.c (output_gram, output): Clean up.
19366
19367 2001-12-10 Akim Demaille <akim@epita.fr>
19368
19369 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19370 * src/LR0.c (set_state_table): here.
19371 * src/lalr.c (lalr): Call it.
19372
19373 2001-12-10 Akim Demaille <akim@epita.fr>
19374
19375 * src/state.h (shifts): Remove the `number' member: shifts are
19376 attached to state, hence no longer need to be labelled with a
19377 state number.
19378
19379 2001-12-10 Akim Demaille <akim@epita.fr>
19380
19381 Now that states have a complete set of members, the linked list of
19382 shifts is useless: just fill directly the state's shifts member.
19383
19384 * src/state.h (shifts): Remove the `next' member.
19385 * src/LR0.c (first_state, last_state): Remove.
19386 Adjust the callers.
19387 (augment_automaton): Don't look for the shifts that must be added
19388 a shift on EOF: it is those of the state we looked for! But now,
19389 since shifts are attached, it is no longer needed to looking
19390 merely by its id: its number.
19391
19392 2001-12-10 Akim Demaille <akim@epita.fr>
19393
19394 * src/LR0.c (augment_automaton): Better variable locality.
19395 Remove an impossible branch: if there is a state corresponding to
19396 the start symbol being shifted, then there is shift for the start
19397 symbol from the initial state.
19398
19399 2001-12-10 Akim Demaille <akim@epita.fr>
19400
19401 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19402 only when appropriate: when insert_start_shifting_state' is not
19403 invoked.
19404 * tests/regression.at (Rule Line Numbers): Adjust.
19405
19406 2001-12-10 Akim Demaille <akim@epita.fr>
19407
19408 * src/LR0.c (augment_automaton): Now that all states have shifts,
19409 merge the two cases addition shifts to the initial state.
19410
19411 2001-12-10 Akim Demaille <akim@epita.fr>
19412
19413 * src/lalr.c (set_state_table): Move to...
19414 * src/LR0.c: here.
19415 * src/lalr.c (lalr): Don't call it...
19416 * src/LR0.c (generate_states): do it.
19417 * src/LR0.h (first_state): Remove, only the table is used.
19418
19419 2001-12-10 Akim Demaille <akim@epita.fr>
19420
19421 * src/LR0.h (first_shift, first_reduction): Remove.
19422 * src/lalr.c: Don't use first_shift: find shifts through the
19423 states.
19424
19425 2001-12-10 Akim Demaille <akim@epita.fr>
19426
19427 * src/LR0.c: Attach shifts to states as soon as they are
19428 computed.
19429 * src/lalr.c (set_state_table): Instead of assigning shifts to
19430 state, just assert that the mapping was properly done.
19431
19432 2001-12-10 Akim Demaille <akim@epita.fr>
19433
19434 * src/LR0.c (insert_start_shift): Rename as...
19435 (insert_start_shifting_state): this.
19436 (insert_eof_shifting_state, insert_accepting_state): New.
19437 (augment_automaton): Adjust.
19438 Better locality of the variables.
19439 When looking if the start_symbol is shifted from the initial
19440 state, using `while (... symbol != start_symbol ...)' sounds
19441 better than `while (... symbol < start_symbol ...)': If fail
19442 to see how the order between symbols could be relevant!
19443
19444 2001-12-10 Akim Demaille <akim@epita.fr>
19445
19446 * src/getargs.h: Don't declare `spec_name_prefix' and
19447 `spec_file_prefix', declared by src/files.h.
19448 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19449 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19450 * src/output.c (prepare): Adjust.
19451 * src/reader.c (symbols_output): Likewise.
19452 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19453
19454 2001-12-10 Akim Demaille <akim@epita.fr>
19455
19456 * src/muscle_tab.c (muscle_init): NULL is a better default than
19457 `"0"'.
19458
19459 2001-12-10 Akim Demaille <akim@epita.fr>
19460
19461 * src/reader.c (reader): Calling symbols_output once is enough.
19462
19463 2001-12-10 Akim Demaille <akim@epita.fr>
19464
19465 Now that states have a complete set of members, the linked list of
19466 reductions is useless: just fill directly the state's reductions
19467 member.
19468
19469 * src/state.h (struct reductions): Remove member `number' and
19470 `next'.
19471 * src/LR0.c (first_reduction, last_reduction): Remove.
19472 (save_reductions): Don't link the new reductions, store them in
19473 this_state.
19474 * src/lalr.c (set_state_table): No need to attach reductions to
19475 states, it's already done.
19476 * src/output.c (output_actions): No longer free the shifts, then
19477 the reductions, then the states: free all the states and their
19478 members.
19479
19480 2001-12-10 Akim Demaille <akim@epita.fr>
19481
19482 * src/options.c (OPTN, DRTV, BOTH): New.
19483 (option_table): Use them.
19484
19485 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19486 the job of system.h.
19487 * src/options.c: Don't include stdio.h and xalloc.h for the same
19488 reasons.
19489
19490 2001-12-10 Akim Demaille <akim@epita.fr>
19491
19492 * src/output.c (output, prepare): Make sure the values of the
19493 muscles `action' and `prologue' are 0-terminated.
19494
19495 2001-12-10 Akim Demaille <akim@epita.fr>
19496
19497 Clean up GCC warnings.
19498
19499 * src/reader.c (copy_action): `buf' is not used.
19500 (parse_skel_decl): Be static.
19501 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19502 * src/options.h (create_long_option_table): Have a real prototype.
19503 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19504 (hash_delete_at): Return const void *.
19505 Adjust casts to preserve the const.
19506
19507 2001-12-10 Akim Demaille <akim@epita.fr>
19508
19509 * configure.in: Require 2.52g.
19510 M4 is not needed, but AUTOM4TE is.
19511 * m4/m4.m4: Remove.
19512 * tests/Makefile.am: Adjust.
19513
19514 2001-12-10 Akim Demaille <akim@epita.fr>
19515
19516 One structure for states is enough, even though theoretically
19517 there are LR(0) states and LALR(1) states.
19518
19519 * src/lalr.h (state_t): Remove.
19520 (state_table): Be state_t **, not state_t *.
19521 * src/state.h (core, CORE_ALLOC): Rename as...
19522 (state_t, STATE_ALLOC): this.
19523 Add the LALR(1) members: shifts, reductions, errs.
19524 * src/LR0.c (state_table): Rename as...
19525 (state_hash): this, to avoid name clashes with the global
19526 `state_table'.
19527 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19528 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19529
19530 2001-12-10 Akim Demaille <akim@epita.fr>
19531
19532 Bison dumps core on bash.y.
19533 Reported by Pascal Bart.
19534
19535 * src/warshall.c (bitmatrix_print): New.
19536 (TC): Use it.
19537 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
19538 j must be the outer loop.
19539 * tests/regression.at (Broken Closure): New.
19540
19541 2001-12-05 Akim Demaille <akim@epita.fr>
19542
19543 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19544 its argument.
19545 Reported by Peter Hamorsky.
19546
19547 2001-12-05 Akim Demaille <akim@epita.fr>
19548
19549 * src/conflicts.c (err_table): Remove.
19550 (resolve_sr_conflict): Adjust.
19551 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19552 Rename as...
19553 (state_t.reductions, state_t.shifts): this.
19554
19555 2001-12-05 Akim Demaille <akim@epita.fr>
19556
19557 * src/reduce.c (reduce_grammar_tables): No longer disable the
19558 removal of useless rules via CPP but via `if (0)', so that the
19559 compiler still check the code is valid.
19560 For instance, it should have noticed `rline' no longer exists: use
19561 the `line' member of rule_t.
19562 * src/gram.c (dummy, rline): Remove, unused.
19563
19564 2001-12-05 Akim Demaille <akim@epita.fr>
19565
19566 * src/output.c (pack_vector): Use assert, not berror.
19567 * src/main.c (berror): Remove, unused.
19568
19569 2001-12-05 Akim Demaille <akim@epita.fr>
19570
19571 New experimental feature: if --verbose --trace output all the
19572 items of a state, not only its kernel.
19573
19574 * src/print.c (print_core): If `trace_flag', then invoke closure
19575 before outputting the items of the state (print_core is no longer
19576 a correct name them).
19577 (print_results): Invoke new_closure/free_closure if needed.
19578
19579 2001-12-05 Akim Demaille <akim@epita.fr>
19580
19581 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19582 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19583 (nitemset): for consistency with the rest of the project.
19584
19585 2001-12-05 Akim Demaille <akim@epita.fr>
19586
19587 * src/closure.c (print_closure): Improve.
19588 (closure): Use it for printing input and output.
19589
19590 2001-12-05 Akim Demaille <akim@epita.fr>
19591
19592 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19593 indexed by nonterminals.
19594
19595 2001-12-05 Akim Demaille <akim@epita.fr>
19596
19597 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19598 what it was!).
19599 * src/warshall.h: Remove accidental duplication of the content.
19600
19601 2001-12-05 Akim Demaille <akim@epita.fr>
19602
19603 * src/closure.c (set_fderives): De-obfuscate.
19604
19605 2001-12-05 Akim Demaille <akim@epita.fr>
19606
19607 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19608
19609 2001-12-05 Akim Demaille <akim@epita.fr>
19610
19611 * src/closure.c (set_firsts): De-obfuscate.
19612
19613 2001-12-05 Akim Demaille <akim@epita.fr>
19614
19615 * src/output.c (action_row): De-obfuscate
19616 using the good o' techniques: arrays not pointers, variable
19617 locality, BITISSET, RESETBIT etc.
19618
19619 2001-12-05 Akim Demaille <akim@epita.fr>
19620
19621 Pessimize the code to simplify it: from now on, all the states
19622 have a valid SHIFTS, which NSHIFTS is possibly 0.
19623
19624 * src/LR0.c (shifts_new): Be global and move to..
19625 * src/state.c, src/state.h: here.
19626 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19627 * src/print_graph: Adjust.
19628
19629 2001-12-05 Akim Demaille <akim@epita.fr>
19630
19631 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19632 * src/conflicts.c: Use it.
19633 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19634 incorrectly ``simplified''.
19635
19636 2001-12-05 Akim Demaille <akim@epita.fr>
19637
19638 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19639 using the good o' techniques: arrays not pointers, variable
19640 locality, BITISSET, RESETBIT etc.
19641
19642 2001-12-05 Akim Demaille <akim@epita.fr>
19643
19644 * src/state.h (SHIFT_SYMBOL): New.
19645 * src/conflicts.c: Use it to deobfuscate.
19646
19647 2001-12-05 Akim Demaille <akim@epita.fr>
19648
19649 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19650 (print_reductions): De-obfuscate using the good o' techniques:
19651 arrays not pointers, variable locality, BITISSET.
19652
19653 2001-12-05 Akim Demaille <akim@epita.fr>
19654
19655 * src/conflicts.c (print_reductions): Arrays, not pointers.
19656 Use BITISSET.
19657
19658 2001-12-05 Akim Demaille <akim@epita.fr>
19659
19660 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19661
19662 2001-12-05 Akim Demaille <akim@epita.fr>
19663
19664 * src/conflicts.c (print_reductions): Improve variable locality.
19665
19666 2001-12-05 Akim Demaille <akim@epita.fr>
19667
19668 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19669
19670 2001-12-05 Akim Demaille <akim@epita.fr>
19671
19672 * src/conflicts.c (print_reductions): Improve variable locality.
19673
19674 2001-12-05 Akim Demaille <akim@epita.fr>
19675
19676 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19677 * src/lalr.c: Use them.
19678
19679 2001-12-05 Akim Demaille <akim@epita.fr>
19680
19681 * src/LR0.c (augment_automaton): Formatting changes.
19682 Better variable locality.
19683
19684 2001-12-05 Akim Demaille <akim@epita.fr>
19685
19686 * src/lalr.c (matrix_print): New.
19687 (transpose): Use it.
19688 Use arrays instead of pointers.
19689
19690 2001-12-05 Akim Demaille <akim@epita.fr>
19691
19692 * src/lalr.c (maxrhs): Move to...
19693 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19694 * src/lalr.c (build_relations): Adjust.
19695
19696 2001-12-05 Akim Demaille <akim@epita.fr>
19697
19698 * src/lalr.c (transpose): Free the memory allocated to the
19699 argument, as it is replaced by the results by the unique caller.
19700 (build_relations): Merely invoke transpose: it handles the memory
19701 deallocation.
19702 Improve variable locality.
19703 Avoid variables used as mere abbreviations.
19704 (compute_lookaheads): Use arrays instead of pointers.
19705
19706 2001-12-05 Akim Demaille <akim@epita.fr>
19707
19708 * src/lalr.c (initialize_F): Improve variable locality.
19709 Avoid variables used as mere abbreviations.
19710
19711 2001-12-05 Akim Demaille <akim@epita.fr>
19712
19713 * src/derives.c (print_derives): Display the ruleno.
19714 * src/lalr.c (initialize_F, transpose): Better variable locality
19715 to improve readability.
19716 Avoid variables used as mere abbreviations.
19717
19718 2001-12-05 Akim Demaille <akim@epita.fr>
19719
19720 * src/lalr.c (traverse): Use arrays instead of pointers.
19721
19722 2001-12-05 Akim Demaille <akim@epita.fr>
19723
19724 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19725 the handling of squeue.
19726 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19727
19728 2001-12-05 Akim Demaille <akim@epita.fr>
19729
19730 Because useless nonterminals are now kept alive (instead of being
19731 `destroyed'), we now sometimes examine them, and store information
19732 related to them. Hence we need to know their number, and adjust
19733 memory allocations.
19734
19735 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19736 static.
19737 * src/LR0.c (allocate_itemsets): The memory allocated to
19738 `symbol_count' was used for two different purpose: once to count
19739 the number of occurrences of each symbol, and later reassigned to
19740 `shift_symbol', containing the symbol that can be shifted from a
19741 given state.
19742 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19743 only, and...
19744 (new_itemsets): Allocate `shift_symbol' here.
19745 (allocate_itemsets): symbol_count includes useless nonterminals.
19746 Make room for them.
19747 (free_storage): Use `free', not `XFREE', for pointers that cannot
19748 be null.
19749
19750 2001-12-05 Akim Demaille <akim@epita.fr>
19751
19752 * src/nullable.c (set_nullable): Deobfuscate the handling of
19753 ritem.
19754 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19755
19756 2001-12-05 Akim Demaille <akim@epita.fr>
19757
19758 * src/gram.c, src/gram.h (ritem_print): New.
19759 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19760 (This useless function was defined only to work around VMS linkers
19761 that can't handle compilation units with variables only).
19762 * src/reduce.c (dump_grammar): Use it to trace the construction of
19763 ritem.
19764
19765 2001-12-04 Paul Eggert <eggert@twinsun.com>
19766
19767 * src/bison.simple (union yyalloc): Change member names
19768 to be the same as the stack names.
19769 (yyparse): yyptr is now union yyalloc *, not char *.
19770 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19771 and may generate better code on some machines.
19772 (yystpcpy): Use prototype if __STDC__ is defined, not just
19773 if __cplusplus is defined.
19774
19775 2001-11-30 Akim Demaille <akim@epita.fr>
19776
19777 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19778 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19779 Gettext doesn't compile cleanly, and dies with -Werror.
19780 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19781 Include WARNING_CFLAGS here.
19782 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19783 before being defined.
19784
19785 2001-11-27 Paul Eggert <eggert@twinsun.com>
19786
19787 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19788 First arg is int, not unsigned.
19789 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19790 (SIZE_MAX, UINT_MAX): New macros.
19791 (quotearg_n_options): Abort if N is negative.
19792 Avoid overflow check on hosts where size_t is 64 bits and int
19793 is 32 bits, as overflow is impossible there.
19794 Fix off-by-one typo that caused unnecessary reallocation.
19795
19796 2001-11-29 Paul Eggert <eggert@twinsun.com>
19797
19798 Name space cleanup in generated parser.
19799
19800 * doc/bison.texinfo (Bison Parser): Discuss system headers
19801 and their effect on the user name space.
19802
19803 * src/bison.simple:
19804 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19805 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19806 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19807
19808 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19809 on user names when possible.
19810
19811 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19812 Simplify test for whather <alloca.h> exists.
19813
19814 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19815
19816 (<stdio.h>): Include if YYDEBUG.
19817
19818 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19819 ! defined (yyoverflow) && ! defined (yymemcpy).
19820
19821 (yymemcpy, yyparse): Rename local variables as needed so that
19822 they all begin with 'yy'.
19823
19824 (yystrlen, yystpcpy): New functions.
19825
19826 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19827 All uses changed.
19828
19829 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
19830 instead of relying on string.h functions. Use YYSTACK_ALLOC
19831 and YYSTACK_FREE instead of malloc and free.
19832
19833 2001-11-30 Akim Demaille <akim@epita.fr>
19834
19835 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
19836 before their first uses.
19837 (YYBISON, YYPURE): Move to the top of the output.
19838
19839 2001-11-30 Akim Demaille <akim@epita.fr>
19840
19841 * tests/reduce.at (Useless Nonterminals): Fix.
19842
19843 2001-11-30 Akim Demaille <akim@epita.fr>
19844
19845 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
19846 if body instead of `;' to pacify GCC's warnings.
19847
19848 2001-11-30 Akim Demaille <akim@epita.fr>
19849
19850 Instead of mapping the LHS of unused rules to -1, keep the LHS
19851 valid, but flag the rules as invalid.
19852
19853 * src/gram.h (rule_t): `useful' is a new member.
19854 * src/print.c (print_grammar): Adjust.
19855 * src/derives.c (set_derives): Likewise.
19856 * src/reader.c (packgram, reduce_output): Likewise.
19857 * src/reduce.c (reduce_grammar_tables): Likewise.
19858 * tests/reduce.at (Underivable Rules, Useless Rules): New.
19859
19860 2001-11-30 Akim Demaille <akim@epita.fr>
19861
19862 * src/reduce.c (reduce_output): Formatting changes.
19863 * src/print.c (print_results, print_grammar): Likewise.
19864 * tests/regression.at (Rule Line Numbers)
19865 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
19866
19867 2001-11-30 Akim Demaille <akim@epita.fr>
19868
19869 * src/reduce.c (nonterminals_reduce): Instead of throwing away
19870 useless nonterminals, move them at the end of the symbol arrays.
19871 (reduce_output): Adjust.
19872 * tests/reduce.at (Useless Nonterminals): Adjust.
19873
19874 2001-11-30 Akim Demaille <akim@epita.fr>
19875
19876 * src/reduce.c: Various comment/formatting changes.
19877 (nonterminals_reduce): New, extracted from...
19878 (reduce_grammar_tables): here.
19879 (reduce_grammar): Call nonterminals_reduce.
19880
19881 2001-11-29 Paul Eggert <eggert@twinsun.com>
19882
19883 * src/bison.simple (YYSTACK_REALLOC): Remove.
19884 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
19885 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
19886 New macros.
19887 (union yyalloc): New type.
19888 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
19889 an arbitrary restriction on hosts where size_t is wider than int.
19890
19891 (yyparse): Don't dump core if alloca or malloc fails; instead, report
19892 a parser stack overflow. Allocate just one block of memory for all
19893 three stacks, instead of allocating three blocks; this typically is
19894 faster and reduces fragmentation.
19895
19896 Do not limit the number of items in the stack to a value that fits
19897 in 'int', as this is an arbitrary limit on hosts with 64-bit
19898 size_t and 32-bit int.
19899
19900 2001-11-29 Marc Autret <autret_m@epita.fr>
19901
19902 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
19903 of defining YYERROR_VERBOSE.
19904 [AT_DATA]: $4 is now out of C declarations in the prologue.
19905
19906 2001-11-28 Marc Autret <autret_m@epita.fr>
19907
19908 * src/reader.c (parse_dquoted_param): New.
19909 (parse_skel_decl): Use it.
19910 * src/lex.h: Add its prototype.
19911 * src/lex.c (literalchar): Become not static.
19912
19913 2001-11-28 Marc Autret <autret_m@epita.fr>
19914
19915 * src/output.h: And put its extern declaration here.
19916 * src/output.c (error_verbose): Define here.
19917 (prepare): Echo name modification.
19918 * src/getargs.h: Clean its extern declaration.
19919 * src/getargs.c (error_verbose_flag): Remove.
19920 (getargs): Remove case 'e'.
19921 * src/options.c (option_table): 'error-verbose' is now seen as simple
19922 percent option.
19923 Include output.h.
19924
19925 * src/reader.c (read_declarations): Remove case tok_include.
19926 (parse_include_decl): Remove.
19927 * src/lex.h (token_t): Remove tok_include.
19928 * src/options.c (option_table): 'include' is now a simple command line
19929 option.
19930
19931 2001-11-28 Marc Autret <autret_m@epita.fr>
19932
19933 * src/bison.simple: Adjust muscle names.
19934 * src/muscle_tab.c (muscle_init): Also rename the muscles.
19935 * src/output.c (prepare): s/_/-/ for the muscles names.
19936 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
19937
19938 2001-11-28 Marc Autret <autret_m@epita.fr>
19939
19940 * src/bison.simple: Fix debug.
19941 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
19942
19943 2001-11-28 Akim Demaille <akim@epita.fr>
19944
19945 * src/LR0.c (shifts_new): New.
19946 (save_shifts, insert_start_shift, augment_automaton): Use it.
19947
19948 2001-11-28 Akim Demaille <akim@epita.fr>
19949
19950 * src/closure.c (closure): `b' and `ruleno' denote the same value:
19951 keep ruleno only.
19952
19953 2001-11-28 Akim Demaille <akim@epita.fr>
19954
19955 * src/closure.c (closure): Instead of looping over word in array
19956 then bits in words, loop over bits in array.
19957
19958 2001-11-28 Akim Demaille <akim@epita.fr>
19959
19960 * src/closure.c (closure): No longer optimize the special case
19961 where all the bits of `ruleset[r]' are set to 0, to make the code
19962 clearer.
19963
19964 2001-11-28 Akim Demaille <akim@epita.fr>
19965
19966 * src/closure.c (closure): `r' and `c' are new variables, used to
19967 de-obfuscate accesses to RULESET and CORE.
19968
19969 2001-11-28 Akim Demaille <akim@epita.fr>
19970
19971 * src/reduce.c (reduce_print): Use ngettext.
19972 (dump_grammar): Improve the trace accuracy.
19973
19974 2001-11-28 Akim Demaille <akim@epita.fr>
19975
19976 * src/reduce.c (dump_grammar): Don't translate trace messages.
19977
19978 2001-11-28 Akim Demaille <akim@epita.fr>
19979
19980 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
19981 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19982 as all tags are free'ed afterwards.
19983 From Enrico Scholz.
19984
19985 2001-11-27 Paul Eggert <eggert@twinsun.com>
19986
19987 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19988 use alloca when we didn't want to, and vice versa.
19989
19990 2001-11-27 Marc Autret <autret_m@epita.fr>
19991
19992 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19993 initialization.
19994 * src/output.c (prepare): Remove its update.
19995
19996 2001-11-27 Marc Autret <autret_m@epita.fr>
19997
19998 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19999 Use %error-verbose.
20000
20001 2001-11-27 Marc Autret <autret_m@epita.fr>
20002
20003 * src/bison.simple: Remove YYERROR_VERBOSE using.
20004 Use %%error_verbose.
20005 (yyparse): Likewise.
20006 * src/output.c (prepare): Give its final value.
20007 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20008 * src/getargs.h: Add its extern declaration.
20009 * src/getargs.c (error_verbose_flag): New int.
20010 (getargs): Update to catch new case.
20011 * src/options.c (option_table): 'error-verbose' is a new option.
20012 (shortopts): Update.
20013
20014 2001-11-27 Akim Demaille <akim@epita.fr>
20015
20016 * src/system.h: Use intl/libgettext.h.
20017 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20018
20019 2001-11-27 Akim Demaille <akim@epita.fr>
20020
20021 * tests/torture.at (Exploding the Stack Size with Malloc):
20022 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20023
20024 2001-11-27 Akim Demaille <akim@epita.fr>
20025
20026 * src/files.c: Include error.h.
20027 Reported by Hans Aberg.
20028
20029 2001-11-26 Marc Autret <autret_m@epita.fr>
20030
20031 * src/reader.c (parse_include_decl): New, not yet implemented.
20032 (read_declarations): Add case tok_include.
20033 * src/getargs.h (include): Add its extern definition.
20034 * src/getargs.c (include): New const char *.
20035 (getargs): Add case '-I'.
20036 * src/options.c (option_table): Add include as command line and
20037 percent option.
20038 * src/lex.h (token_t): Add tok_include.
20039
20040 2001-11-26 Akim Demaille <akim@epita.fr>
20041
20042 * src/reader.c (readgram): Make sure rules for mid-rule actions
20043 have a lineno equal to that of their host rule.
20044 Reported by Hans Aberg.
20045 * tests/regression.at (Rule Line Numbers): New.
20046
20047 2001-11-26 Akim Demaille <akim@epita.fr>
20048
20049 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20050 size_ts.
20051
20052 2001-11-26 Akim Demaille <akim@epita.fr>
20053
20054 * src/complain.c, src/complain.h (error): Remove, provided by
20055 lib/error.[ch].
20056
20057 2001-11-26 Akim Demaille <akim@epita.fr>
20058
20059 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20060 issue an error message.
20061 * tests/regression.at (Invalid %directive): New.
20062 Reported by Hans Aberg.
20063
20064 2001-11-26 Akim Demaille <akim@epita.fr>
20065
20066 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20067 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20068
20069 2001-11-26 Akim Demaille <akim@epita.fr>
20070
20071 * src/conflicts.c (conflicts_print): Don't complain at all when
20072 there are no reduce/reduce conflicts, and as many shift/reduce
20073 conflicts as expected.
20074 * tests/regression.at (%expect right): Adjust.
20075
20076 2001-11-23 Akim Demaille <akim@epita.fr>
20077
20078 * lib/alloca.c: Update, from fileutils.
20079
20080 2001-11-23 Akim Demaille <akim@epita.fr>
20081
20082 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20083
20084 2001-11-23 Akim Demaille <akim@epita.fr>
20085
20086 * src/system.h: Include alloca.h.
20087 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20088
20089 2001-11-23 Akim Demaille <akim@epita.fr>
20090
20091 * src/print_graph.c (print_actions): Remove `rule', unused.
20092 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20093 pacify GCC's signed < unsigned warnings.
20094 * src/closure.c (itemsetsize): Likewise.
20095 * src/reader.c (symbol_list_new): Static.
20096
20097 2001-11-23 Akim Demaille <akim@epita.fr>
20098
20099 Attaching lineno to buckets is stupid, since only one copy of each
20100 symbol is kept, only the line of the first occurrence is kept too.
20101
20102 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20103 * src/reader.c (rline_allocated): Remove, unused.
20104 (symbol_list): Have a `line' member.
20105 (symbol_list_new): New.
20106 (readgram): Use it.
20107 * src/print.c (print_grammar): Output the rule line numbers.
20108 * tests/regression.at (Solved SR Conflicts)
20109 (Unresolved SR Conflicts): Adjust.
20110 Reported by Hans Aberg.
20111
20112 2001-11-22 Marc Autret <autret_m@epita.fr>
20113
20114 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20115
20116 2001-11-22 Marc Autret <autret_m@epita.fr>
20117
20118 * src/muscle_tab.c (muscle_init): Remove initialization of
20119 skeleton muscle.
20120 * src/output.c (output_master_parser): Do it here.
20121
20122 2001-11-20 Akim Demaille <akim@epita.fr>
20123
20124 * po/sv.po: New.
20125 * configure.in (ALL_LINGUAS): Adjust.
20126 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20127 longer contains strings to translate.
20128
20129 2001-11-19 Akim Demaille <akim@epita.fr>
20130
20131 * src/conflicts.c (conflicts_print): Add a missing \n.
20132
20133 2001-11-19 Akim Demaille <akim@epita.fr>
20134
20135 * src/nullable.c (nullable_print): New.
20136 (set_nullable): Call it when tracing.
20137 Better locality of variables.
20138
20139 2001-11-19 Akim Demaille <akim@epita.fr>
20140
20141 * src/print.c (print_actions): Better locality of variables.
20142
20143 2001-11-19 Akim Demaille <akim@epita.fr>
20144
20145 * src/derives.c (print_derives): Fix and enrich.
20146 * src/closure.c (print_fderives): Likewise.
20147
20148 2001-11-19 Akim Demaille <akim@epita.fr>
20149
20150 * src/closure.c (itemsetend): Remove, replaced with...
20151 (itemsetsize): new.
20152
20153 2001-11-19 Akim Demaille <akim@epita.fr>
20154
20155 * src/LR0.c (kernel_end): Remove, replaced with...
20156 (kernel_size): new.
20157
20158 2001-11-19 Akim Demaille <akim@epita.fr>
20159
20160 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20161 to clarify.
20162
20163 2001-11-19 Akim Demaille <akim@epita.fr>
20164
20165 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20166
20167 2001-11-19 Akim Demaille <akim@epita.fr>
20168
20169 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20170 trace messages.
20171 * src/LR0.c: Likewise.
20172 (allocate_itemsets): Use arrays instead of pointers to clarify.
20173
20174 2001-11-19 Akim Demaille <akim@epita.fr>
20175
20176 * src/getargs.c (statistics_flag): Replace with...
20177 (trace_flag): New.
20178 (longopts): Accept --trace instead of --statistics.
20179 * src/getargs.h, src/options.c: Adjust.
20180 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20181 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20182
20183 2001-11-19 Akim Demaille <akim@epita.fr>
20184
20185 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
20186 pointers to clarify the code.
20187 (save_reductions, save_shifts): Factor common parts of alternatives.
20188
20189 2001-11-19 Akim Demaille <akim@epita.fr>
20190
20191 * src/LR0.c (new_state, get_state): Complete TRACE code.
20192 * src/closure.c: Include `reader.h' to get `tags', needed by the
20193 trace code.
20194 Rename the conditional DEBUG as TRACE.
20195 Output consistently TRACEs to stderr, not stdout.
20196 * src/derives.c: Likewise.
20197 * src/reduce.c: (inaccessable_symbols): Using if is better style
20198 than goto.
20199 Use `#if TRACE' instead of `#if 0' for tracing code.
20200
20201 2001-11-19 Akim Demaille <akim@epita.fr>
20202
20203 * src/system.h (LIST_FREE, shortcpy): New.
20204 * src/LR0.c: Use them.
20205 * src/output.c (free_itemsets, free_reductions, free_shifts):
20206 Remove, replaced by LIST_FREE.
20207
20208 2001-11-19 Akim Demaille <akim@epita.fr>
20209
20210 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20211 (REDUCTIONS_ALLOC): New.
20212 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20213 allocation.
20214
20215 2001-11-19 Akim Demaille <akim@epita.fr>
20216
20217 * src/LR0.c (new_state): Complete trace code.
20218 * src/nullable.c (set_nullable): Don't translate traces.
20219
20220 2001-11-19 Akim Demaille <akim@epita.fr>
20221
20222 * src/print_graph.c (print_core): Better locality of variables.
20223 * src/print.c (print_core): Likewise.
20224
20225 2001-11-19 Akim Demaille <akim@epita.fr>
20226
20227 * src/vcg.c: You do the output, so you are responsible of the
20228 handling of VCG syntax, in particular: use quotearg.
20229 * src/print_graph.c: Don't.
20230 (print_actions): Don't output the actions as part of the nodes,
20231 since that's the job of the edges.
20232 (print_state): Don't output by hand: fill the node description,
20233 and ask for its output.
20234
20235 2001-11-19 Akim Demaille <akim@epita.fr>
20236
20237 * src/bison.simple (yyparse): When verbosely reporting an error,
20238 no longer put additional quotes around token names.
20239 * tests/calc.at: Adjust.
20240
20241 2001-11-19 Akim Demaille <akim@epita.fr>
20242
20243 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20244 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20245 * src/output.c: Adjust.
20246
20247 2001-11-19 Akim Demaille <akim@epita.fr>
20248
20249 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20250 (rule_t): this.
20251 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20252
20253 2001-11-19 Akim Demaille <akim@epita.fr>
20254
20255 * src/gram.h (rule_t): New.
20256 (rule_table): New.
20257 (rrhs, rlhs): Remove, part of state_t.
20258 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20259 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20260 * src/reader.c, src/reduce.c: Adjust.
20261
20262 2001-11-19 Akim Demaille <akim@epita.fr>
20263
20264 * src/reader.c (symbols_output): New, extracted from...
20265 (packsymbols): Here.
20266 (reader): Call it.
20267
20268 2001-11-19 Akim Demaille <akim@epita.fr>
20269
20270 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20271 (maxrhs): this new function.
20272
20273 2001-11-19 Akim Demaille <akim@epita.fr>
20274
20275 * src/lalr.c (F): New macro to access the variable F.
20276 Adjust.
20277
20278 2001-11-19 Akim Demaille <akim@epita.fr>
20279
20280 * src/lalr.h (LA): New macro to access the variable LA.
20281 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20282 * src/lalr.c: Adjust.
20283
20284 2001-11-19 Akim Demaille <akim@epita.fr>
20285
20286 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20287 (set_state_table): handle the `lookaheads' members.
20288
20289 2001-11-19 Akim Demaille <akim@epita.fr>
20290
20291 * src/lalr.h (lookaheads): Removed array, whose contents is now
20292 a member of...
20293 (state_t): this structure.
20294 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20295 Adjust.
20296
20297 2001-11-19 Akim Demaille <akim@epita.fr>
20298
20299 * src/lalr.h (consistent): Removed array, whose contents is now
20300 a member of...
20301 (state_t): this structure.
20302 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20303 Adjust.
20304
20305 2001-11-19 Akim Demaille <akim@epita.fr>
20306
20307 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20308 contents are now members of...
20309 (state_t): this structure.
20310 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20311 Adjust.
20312
20313 2001-11-19 Akim Demaille <akim@epita.fr>
20314
20315 * src/lalr.h (state_t): New.
20316 (state_table): Be a state_t * instead of a core **.
20317 (accessing_symbol): Remove, part of state_t.
20318 * src/lalr.c: Adjust.
20319 (set_accessing_symbol): Merge into...
20320 (set_state_table): this.
20321 * src/print_graph.c, src/conflicts.c: Adjust.
20322
20323 2001-11-14 Akim Demaille <akim@epita.fr>
20324
20325 * tests/calc.at, tests/output.at, tests/regression.at,
20326 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20327 now the tests are run in private dirs, therefore AC_CLEANUP and
20328 family can be simplified to 0-ary.
20329 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20330 use abs. path to find config.h.
20331 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20332 stderr, there can be way too much random noise.
20333 Instead pass -Werror to GCC and rely on the exit status.
20334 Reported by Wolfram Wagner.
20335
20336 2001-11-14 Akim Demaille <akim@epita.fr>
20337
20338 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20339 defined only if yyoverflow is defined, to avoid `warning: unused
20340 variable `yyvs1''.
20341 Reported by The Test Suite.
20342
20343 2001-11-14 Akim Demaille <akim@epita.fr>
20344
20345 * src/print.c: Include reduce.h.
20346 Reported by Hans Aberg.
20347
20348 2001-11-14 Akim Demaille <akim@epita.fr>
20349
20350 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20351 Revert a previous patch: these are really const.
20352 * src/conflicts.c (conflict_report): Additional useless pair of
20353 braces to pacify GCC's warnings for `if () if () {} else {}'.
20354 * src/lex.c (parse_percent_token): Replace equal_offset with
20355 arg_offset.
20356 arg is const.
20357 Be sure to strdup `arg' when used, since there is no reason for
20358 token_buffer not to change.
20359
20360 2001-11-14 Akim Demaille <akim@epita.fr>
20361
20362 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20363 definition.
20364 * src/main.c (main): Use them.
20365 Suggested by Hans Aberg.
20366
20367 2001-11-12 Akim Demaille <akim@epita.fr>
20368
20369 * src/system.h (ngettext): Now that we use ngettext, be sure to
20370 provide a default definition when NLS are not used.
20371
20372 2001-11-12 Akim Demaille <akim@epita.fr>
20373
20374 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20375 Use @kbd to denote user input.
20376 (Language and Grammar): ANSIfy the example.
20377 Adjust its layout for info/notinfo.
20378 (Location Tracking Calc): Output error messages to stderr.
20379 Output locations in a more GNUtically correct way.
20380 Fix a couple of Englishos.
20381 Adjust @group/@end group pairs.
20382
20383 2001-11-12 Akim Demaille <akim@epita.fr>
20384
20385 %expect was not functioning at all.
20386
20387 * src/conflicts.c (expected_conflicts): Set to -1.
20388 (conflict_report): Use ngettext.
20389 (conflicts_print): Check %expect and make its violation an error.
20390 * doc/bison.texinfo (Expect Decl): Adjust.
20391 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20392 * tests/regression.at (%expect not enough, %expect right)
20393 (%expect too much): New.
20394
20395 2001-11-12 Akim Demaille <akim@epita.fr>
20396
20397 * tests/regression.at (Conflicts): Rename as...
20398 (Unresolved SR Conflicts): this.
20399 (Solved SR Conflicts): New.
20400
20401 2001-11-12 Akim Demaille <akim@epita.fr>
20402
20403 * src/reduce.c (print_results): Rename as...
20404 (reduce_output): This.
20405 Output to OUT, passed as argument, instead of output_obstack.
20406 (dump_grammar): Likewise.
20407 (reduce_free): New.
20408 Also free V1.
20409 (reduce_grammar): No longer call reduce_output, since...
20410 * src/print.c (print_results): do it.
20411 * src/main.c (main): Call reduce_free;
20412
20413 2001-11-12 Akim Demaille <akim@epita.fr>
20414
20415 * src/conflicts.c (print_reductions): Accept OUT as argument.
20416 Output to it, not to output_obstack.
20417 * src/print.c (print_actions): Adjust.
20418
20419 2001-11-12 Akim Demaille <akim@epita.fr>
20420
20421 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20422 the result instead of using...
20423 (src_total, rrc_total, src_count, rrc_count): Remove.
20424 (any_conflicts): Remove.
20425 (print_conflicts): Split into...
20426 (conflicts_print, conflicts_output): New.
20427 * src/conflicts.h: Adjust.
20428 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
20429 * src/print.c (print_grammar): Issue `\n' between two rules.
20430 * tests/regression.at (Conflicts): New.
20431 Reported by Tom Lane.
20432
20433 2001-11-12 Akim Demaille <akim@epita.fr>
20434
20435 * tests/regression.at (Invalid input): Remove, duplicate with
20436 ``Invalid input: 1''.
20437
20438 2001-11-12 Akim Demaille <akim@epita.fr>
20439
20440 * tests/torture.at (AT_DATA_STACK_TORTURE)
20441 (Exploding the Stack Size with Alloca)
20442 (Exploding the Stack Size with Malloc): New.
20443
20444 2001-11-12 Akim Demaille <akim@epita.fr>
20445
20446 * src/bison.simple (YYSTACK_REALLOC): New.
20447 (yyparse) [!yyoverflow]: Use it and free the old stack.
20448 Reported by Per Allansson.
20449
20450 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
20451
20452 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20453 define CPP macro, which substitute YYSTYPE by yystype.
20454 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20455 with yyltype/YYLTYPE. This allows inclusion of the generated
20456 header within the parser if the compiler, such as GGC, accepts
20457 multiple equivalent #defines.
20458 From Akim.
20459
20460 2001-11-05 Akim Demaille <akim@epita.fr>
20461
20462 * src/reader.c (symbols_output): New, extracted from...
20463 (packsymbols): here.
20464 (reader): Adjust.
20465
20466 2001-11-05 Akim Demaille <akim@epita.fr>
20467
20468 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20469
20470 2001-11-05 Akim Demaille <akim@epita.fr>
20471
20472 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20473 pattern.
20474
20475 2001-11-05 Akim Demaille <akim@epita.fr>
20476
20477 * src/options.h (struct option_table_struct): set_flags is void*.
20478 * src/options.c (longopts): Support `--output' and `%output'.
20479 (usage): Adjust.
20480 * src/lex.h (tok_setopt): Remove, replaced with...
20481 (tok_intopt, tok_stropt): these new guys.
20482 * src/lex.c (getopt.h): Not needed.
20483 (token_buffer, unlexed_token_buffer): Not const.
20484 (percent_table): Promote `-' over `_' in directive names.
20485 Active `%name-prefix', `file-prefix', and `output'.
20486 (parse_percent_token): Accept possible arguments to directives.
20487 Promote `-' over `_' in directive names.
20488
20489 2001-11-04 Akim Demaille <akim@epita.fr>
20490
20491 * doc/bison.texinfo (Decl Summary): Split the list into
20492 `directives for grammars' and `directives for bison'.
20493 Sort'em.
20494 Add description of `%name-prefix', `file-prefix', and `output'.
20495 Promote `-' over `_' in directive names.
20496 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20497 Simplify the description of `--name-prefix'.
20498 Promote `-' over `_' in directive names.
20499 Promote `--output' over `--output-file'.
20500 Fix the description of `--defines'.
20501 * tests/output.at: Exercise %file-prefix and %output.
20502
20503 2001-11-02 Akim Demaille <akim@epita.fr>
20504
20505 * doc/refcard.tex: Update.
20506
20507 2001-11-02 Akim Demaille <akim@epita.fr>
20508
20509 * src/symtab.h (SUNDEF): New.
20510 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20511 stand for `uninitialized', instead of 0.
20512 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20513 * src/lex.c (lex): Adjust.
20514
20515 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20516 Number it 0.
20517 Let yylex return it instead of a plain 0.
20518 Reported by Dick Streefland.
20519
20520 2001-11-02 Akim Demaille <akim@epita.fr>
20521
20522 * tests/regression.at (Mixing %token styles): New test.
20523
20524 2001-11-02 Akim Demaille <akim@epita.fr>
20525
20526 * src/reader.c (parse_thong_decl): Formatting changes.
20527 (token_translations_init): New, extracted from...
20528 (packsymbols): Here.
20529 Adjust.
20530
20531 2001-11-01 Akim Demaille <akim@epita.fr>
20532
20533 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20534 Check that `9foo.y' produces correct cpp guards.
20535 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20536 guards.
20537 Reported by Wwp.
20538
20539 2001-11-01 Akim Demaille <akim@epita.fr>
20540
20541 * tests/regression.at (Invalid input: 2): New.
20542 * src/lex.c (unlexed_token_buffer): New.
20543 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20544 too.
20545 Reported by Wwp.
20546
20547 2001-11-01 Akim Demaille <akim@epita.fr>
20548
20549 * tests/calc.at: Catch up with 1.30.
20550 * configure.in: Bump to 1.49a.
20551 Adjust to newer Autotest.
20552
20553 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
20554
20555 * src/conflicts.c: Move global variables rrc_total and src_total ...
20556 (print_conflicts): here.
20557 * src/output.c (output): Free global variable user_toknums.
20558 * src/lex.c (token_obstack): Become static.
20559
20560 2001-10-18 Akim Demaille <akim@epita.fr>
20561
20562 * tests/atlocal.in (GCC): Add.
20563 * tests/calc.at: s/m4_match/m4_bmatch/.
20564 s/m4_patsubst/m4_bpatsubst/.
20565 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20566 * configure.in: AC_SUBST(GCC).
20567
20568 2001-10-14 Marc Autret <autret_m@epita.fr>
20569
20570 * src/options.c (create_long_option_table): Fix.
20571
20572 2001-10-10 Akim Demaille <akim@epita.fr>
20573
20574 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20575
20576 2001-10-04 Akim Demaille <akim@epita.fr>
20577
20578 * src/reader.c (parse_union_decl): Push the caracters in
20579 union_obstack, not attrs_obstack.
20580
20581 2001-10-04 Akim Demaille <akim@epita.fr>
20582
20583 Merge in the branch 1.29.
20584
20585 * src/reader.c (packsymbols): Use a temporary obstack for
20586 `%%tokendef', since output_stack is already used elsewhere.
20587
20588 2001-10-02 Akim Demaille <akim@epita.fr>
20589
20590 Bump 1.29d.
20591
20592 2001-10-02 Akim Demaille <akim@epita.fr>
20593
20594 Version 1.29c.
20595
20596 2001-10-02 Akim Demaille <akim@epita.fr>
20597
20598 * tests/regression.at (Invalid CPP headers): New.
20599 From Alexander Belopolsky.
20600 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20601
20602 2001-10-02 Akim Demaille <akim@epita.fr>
20603
20604 * tests/regression.at (Invalid input): New.
20605 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20606 Reported by Shura.
20607
20608 2001-10-02 Akim Demaille <akim@epita.fr>
20609
20610 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20611
20612 2001-10-02 Akim Demaille <akim@epita.fr>
20613
20614 * src/output.c (output_parser): Assert `skeleton'.
20615 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20616 systems.
20617 From Shura.
20618
20619 2001-10-01 Marc Autret <autret_m@epita.fr>
20620
20621 * src/lex.h: Echo modifications.
20622 * src/lex.c (unlex): Parameter is now token_t.
20623 From Hans Aberg.
20624
20625 2001-10-01 Marc Autret <autret_m@epita.fr>
20626
20627 * src/main.c: Include lex.h.
20628 From Hans Aberg.
20629
20630 2001-09-29 Akim Demaille <akim@epita.fr>
20631
20632 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20633
20634 2001-09-28 Akim Demaille <akim@epita.fr>
20635
20636 * tests/testsuite.at: Update to newer Autotest.
20637 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20638
20639 2001-09-27 Akim Demaille <akim@epita.fr>
20640
20641 Position independent wrapper.
20642
20643 * tests/bison: Remove.
20644 * tests/bison.in: New.
20645 * configure.in: Adjust.
20646
20647 2001-09-27 Paul Eggert <eggert@twinsun.com>
20648
20649 Port quotearg fixes from tar 1.13.24.
20650
20651 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20652 tm to be declared.
20653 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20654 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20655
20656 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20657 * m4/mbrtowc.m4: New file.
20658 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20659 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20660
20661 2001-09-27 Akim Demaille <akim@epita.fr>
20662
20663 Bump to 1.29c.
20664
20665 2001-09-27 Akim Demaille <akim@epita.fr>
20666
20667 Version 1.29b.
20668
20669 2001-09-25 Akim Demaille <akim@epita.fr>
20670
20671 * src/system.h: Include `xalloc.h'.
20672 Remove it from the C files.
20673 * src/files.c (output_files): Free the obstacks.
20674 * src/lex.c (init_lex): Rename as...
20675 (lex_init): this.
20676 (lex_free): New.
20677 * src/main.c (main): Use it.
20678
20679 2001-09-24 Marc Autret <autret_m@epita.fr>
20680
20681 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20682 to output informations in fout (FILE*).
20683 (open_graph, close_graph): Likewise.
20684 (output_graph, output_edge, output_node): Likewise.
20685 * src/vcg.h: Update function prototypes.
20686 * src/print_graph.c (print_graph): Open output graph file.
20687 (print_actions): Adjust.
20688 * src/files.h: Remove extern declaration.
20689 * src/files.c: Remove graph_obstack declaration.
20690 (open_files): Remove graph_obstack initialization.
20691 (output_files): Remove graph_obstack saving.
20692
20693 2001-09-24 Marc Autret <autret_m@epita.fr>
20694
20695 * src/files.c (compute_output_file_names): Fix.
20696
20697 2001-09-24 Marc Autret <autret_m@epita.fr>,
20698 Akim Demaille <akim@epita.fr>
20699
20700 * src/reader.c (reader): Remove call to free_symtab ().
20701 * src/main.c (main): Call it here.
20702 Include symtab.h.
20703 * src/conflicts.c (initialize_conflicts): Rename as...
20704 (solve_conflicts): this.
20705 * src/print.c (print_core, print_actions, print_state)
20706 (print_grammar): Dump to a file instead a `output_obstack'.
20707 (print_results): Dump `output_obstack', and then proceed with the
20708 FILE *.
20709 * src/files.c (compute_output_file_names, close_files): New.
20710 (output_files): Adjust.
20711 * src/main.c (main): Adjust.
20712
20713 2001-09-23 Marc Autret <autret_m@epita.fr>
20714
20715 * src/files.c (compute_header_macro): Computes header macro name
20716 from spec_defines_file when given.
20717
20718 2001-09-23 Marc Autret <autret_m@epita.fr>
20719
20720 * src/files.c (output_files): Add default extensions.
20721
20722 2001-09-22 Akim Demaille <akim@epita.fr>
20723
20724 * src/conflicts.c (finalize_conflicts): Rename as...
20725 (free_conflicts): this.
20726
20727 2001-09-22 Akim Demaille <akim@epita.fr>
20728
20729 * src/gram.c (gram_free): Rename back as...
20730 (dummy): this.
20731 (output_token_translations): Free `token_translations'.
20732 * src/symtab.c (free_symtab): Free the tag field.
20733
20734 2001-09-22 Akim Demaille <akim@epita.fr>
20735
20736 Remove `translations' as it is always set to true.
20737
20738 * src/gram.h: Adjust.
20739 * src/reader.c (packsymbols, parse_token_decl): Adjust
20740 * src/print.c (print_grammar): Adjust.
20741 * src/output.c (output_token_translations): Adjust.
20742 * src/lex.c (lex): Adjust.
20743 * src/gram.c: Be sure the set pointers to NULL.
20744 (dummy): Rename as...
20745 (gram_free): this.
20746
20747 2001-09-22 Akim Demaille <akim@epita.fr>
20748
20749 * configure.in: Invoke AM_LIB_DMALLOC.
20750 * src/system.h: Use dmalloc.
20751 * src/LR0.c: Be sure to have pointers initialized to NULL.
20752 (allocate_itemsets): Allocate kernel_items only if needed.
20753
20754 2001-09-22 Akim Demaille <akim@epita.fr>
20755
20756 * configure.in: Bump to 1.29b.
20757 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20758 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20759 need xmalloc.c in calc.y.
20760 From Pascal Bart.
20761
20762 2001-09-21 Akim Demaille <akim@epita.fr>
20763
20764 Version 1.29a.
20765 * Makefile.maint, config/config.guess, config/config.sub,
20766 * config/missing: Update from masters.
20767 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20768 upon package.m4.
20769 * configure.in (ALL_LINGUAS): Add `tr'.
20770
20771 2001-09-21 Akim Demaille <akim@epita.fr>
20772
20773 * tests/Makefile.am (package.m4): Move to...
20774 ($(srcdir)/$(TESTSUITE)): here.
20775
20776 2001-09-20 Akim Demaille <akim@epita.fr>
20777
20778 * src/complain.c: No longer try to be standalone: use system.h.
20779 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20780 * src/complain.h: Likewise.
20781 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20782 Remove the unused variable `n'.
20783 From Albert Chin-A-Young.
20784
20785 2001-09-18 Marc Autret <autret_m@epita.fr>
20786
20787 * doc/bison.1: Update.
20788 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20789 descriptions.
20790 (Option Cross Key): Update.
20791 Add --graph.
20792
20793 2001-09-18 Marc Autret <autret_m@epita.fr>
20794
20795 * tests/regression.at: New test (comment in %union).
20796
20797 2001-09-18 Marc Autret <autret_m@epita.fr>
20798
20799 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20800 do that.
20801 Reported by Keith Browne.
20802
20803 2001-09-18 Marc Autret <autret_m@epita.fr>
20804
20805 * tests/output.at: Add tests for --defines and --graph.
20806
20807 2001-09-18 Marc Autret <autret_m@epita.fr>
20808
20809 * tests/output.at: Removes tests of %{header,src}_extension features.
20810
20811 2001-09-18 Akim Demaille <akim@epita.fr>
20812
20813 * tests/Makefile.am (package.m4): New.
20814 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20815 (_AT_CHECK_CALC_ERROR): Likewise.
20816 Factor the `, ' part of verbose error messages.
20817
20818 2001-09-18 Marc Autret <autret_m@epita.fr>
20819
20820 * src/getargs.c (longopts): Declare --defines and --graph as options
20821 with optional arguments.
20822 * src/files.h: Add extern declarations.
20823 * src/files.c (spec_graph_file, spec_defines_file): New.
20824 (output_files): Update.
20825 Remove CPP-outed code.
20826
20827 2001-09-18 Marc Autret <autret_m@epita.fr>
20828
20829 Turn off %{source,header}_extension feature.
20830
20831 * src/files.c (compute_exts_from_gf): Update.
20832 (compute_exts_from_src): Update.
20833 (output_files): CPP-out useless code.
20834 * src/files.h: Remove {header,source}_extension extern declarations.
20835 * src/reader.c (parse_dquoted_param): CPP-out.
20836 (parse_header_extension_decl): Remove.
20837 (parse_source_extension_decl): Remove.
20838 (read_declarations): Remove cases tok_{hdrext,srcext}.
20839 * src/lex.c (percent_table): Remove {header,source}_extension entries.
20840 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
20841
20842 2001-09-10 Akim Demaille <akim@epita.fr>
20843
20844 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
20845 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
20846 (AT_CHECK_OUTPUT): this.
20847 Merely check ls' exit status, its output is useless.
20848
20849 2001-09-10 Akim Demaille <akim@epita.fr>
20850
20851 * tests/calc.at: Use m4_match.
20852 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
20853
20854 2001-09-10 Marc Autret <autret_m@epita.fr>,
20855 Akim Demaille <akim@epita.fr>
20856
20857 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
20858 enum color_e.
20859 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
20860 to `normal'.
20861 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
20862 * src/lex.h: Adjust prototype.
20863 (token_t): Add `tok_undef'.
20864 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
20865 (parse_percent_token): Now returns token_t.
20866 Add default statement in switch.
20867 (lex): Separate `c' as an input variable, from the token_t result
20868 part.
20869 (unlexed): Is a token_t.
20870
20871 2001-09-10 Akim Demaille <akim@epita.fr>
20872
20873 * configure.in: Bump to 1.29a.
20874
20875 2001-09-07 Akim Demaille <akim@epita.fr>
20876
20877 Version 1.29.
20878
20879 2001-08-30 Akim Demaille <akim@epita.fr>
20880
20881 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
20882 * m4/atconfig.m4: Remove.
20883 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
20884 * tests/bison: New.
20885 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
20886 m4_if, m4_patsubst, and m4_regexp.
20887 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
20888 `input' file instead of echo.
20889
20890 2001-08-29 Akim Demaille <akim@epita.fr>
20891
20892 Bump to 1.28e.
20893
20894 2001-08-29 Akim Demaille <akim@epita.fr>
20895
20896 Version 1.28d.
20897
20898 2001-08-29 Paul Eggert <eggert@twinsun.com>
20899
20900 * src/bison.simple (yyparse): Don't take the address of an
20901 item before the start of an array, as that doesn't conform to
20902 the C Standard.
20903
20904 2001-08-29 Robert Anisko <anisko_r@epita.fr>
20905
20906 * doc/bison.texinfo (Location Tracking Calc): New node.
20907
20908 2001-08-29 Paul Eggert <eggert@twinsun.com>
20909
20910 * src/output.c (output): Do not define const, as this now
20911 causes more problems than it cures.
20912
20913 2001-08-29 Akim Demaille <akim@epita.fr>
20914
20915 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
20916 the nodes.
20917 Be sure to tag the `detailmenu'.
20918
20919 2001-08-29 Akim Demaille <akim@epita.fr>
20920
20921 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
20922 download in a tmp dir.
20923
20924 2001-08-28 Marc Autret <autret_m@epita.fr>
20925
20926 * config/depcomp: New file.
20927
20928 2001-08-28 Marc Autret <autret_m@epita.fr>
20929
20930 * doc/bison.1 (mandoc): Adjust.
20931 From Juan Manuel Guerrero.
20932
20933 2001-08-28 Marc Autret <autret_m@epita.fr>
20934
20935 * src/print_graph.c (print_state): Fix.
20936
20937 2001-08-27 Marc Autret <autret_m@epita.fr>
20938
20939 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
20940 char * members.
20941 Echo modifications to the functions prototypes.
20942 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
20943
20944 2001-08-27 Marc Autret <autret_m@epita.fr>
20945
20946 * src/vcg.c: Include `xalloc.h'.
20947 (add_colorentry): New.
20948 (add_classname): New.
20949 (add_infoname): New.
20950 * src/vcg.h: Add new prototypes.
20951
20952 2001-08-27 Akim Demaille <akim@epita.fr>
20953
20954 * Makefile.maint: Sync. again with CVS Autoconf.
20955
20956 2001-08-27 Akim Demaille <akim@epita.fr>
20957
20958 * Makefile.maint: Formatting changes.
20959 (po-update, cvs-update, update): New targets.
20960 (AMTAR): Remove.
20961
20962 2001-08-27 Akim Demaille <akim@epita.fr>
20963
20964 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20965 * Makefile.maint: Sync. with CVS Autoconf.
20966
20967 2001-08-27 Marc Autret <autret_m@epita.fr>
20968
20969 * src/vcg.h (struct infoname_s): New.
20970 (struct colorentry_s): New.
20971 (graph_s): New fields {vertical,horizontal}_order in structure.
20972 Add `infoname' field.
20973 Add `colorentry' field;
20974 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
20975 (G_HORIZONTAL_ORDER): New.
20976 (G_INFONAME): New.
20977 (G_COLORENTRY): New.
20978 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
20979 Add output of `infoname'.
20980 Add output of `colorentry'.
20981
20982 2001-08-27 Marc Autret <autret_m@epita.fr>
20983
20984 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20985 This one shadowed a global parameter.
20986
20987 2001-08-24 Marc Autret <autret_m@epita.fr>
20988
20989 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20990 instead of `unsigned'.
20991 (print_state): Do not call obstack_object_size () in obstack_grow ()
20992 to avoid macro variables shadowing.
20993
20994 2001-08-23 Marc Autret <autret_m@epita.fr>
20995
20996 * src/lex.c (percent_table): Typo: s/naem/name/.
20997 Add graph option.
20998 Normalize new options declarations.
20999
21000 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21001
21002 * tests/suite.at: Exercise %header_extension and %source_extension.
21003
21004 2001-08-16 Marc Autret <autret_m@epita.fr>
21005
21006 * src/reader.c (parse_dquoted_param): New.
21007 (parse_header_extension_decl): Use it.
21008 (parse_source_extension_decl): Likewise.
21009
21010 2001-08-16 Marc Autret <autret_m@epita.fr>
21011
21012 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21013 (get_xxxx_str): Use assert () instead of complain ().
21014 Remove return invokations in default cases.
21015 (get_decision_str): Modify default behaviour. Remove second argument.
21016 Echo modifications on calls.
21017 (output_graph): Fix.
21018
21019 2001-08-16 Marc Autret <autret_m@epita.fr>
21020
21021 * src/getargs.c (usage): Update with ``-g, --graph''.
21022
21023 2001-08-16 Marc Autret <autret_m@epita.fr>
21024
21025 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21026 (Option Cross Key): Likewise.
21027 * doc/bison.1: Update.
21028
21029 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
21030
21031 * src/output.c (output_master_parser): Don't finish action_obstack.
21032 (output_parser): Don't care about the muscle action, here.
21033 (prepare): Copy the action_obstack in the action muscle.
21034 (output): Free action_obstack.
21035
21036 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21037
21038 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21039 will contain `%union' declaration.
21040 (parse_union_decl): Delete #line directive output.
21041 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21042 informations about %union.
21043 (parse_union_decl): Copy the union_obstack in the muscle stype.
21044 * src/bison.simple: Add new #line directive.
21045 Add typdef %%stype YYSTYPE.
21046
21047 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21048
21049 * src/bison.simple: Add new `#line' directive.
21050
21051 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
21052
21053 * src/bison.simple: New `#line' directive.
21054 * src/output.c (output_parser): Support new dynamic muscle input_line.
21055
21056 2001-09-22 Marc Autret <autret_m@epita.fr>
21057
21058 * src/output.c (output_master_parser): New.
21059 (output_parser): Be more re-entrant.
21060
21061 2001-09-21 Marc Autret <autret_m@epita.fr>
21062
21063 * src/reader.c (copy_definition, parse_union_decl): Update and use
21064 `linef' muscle.
21065 (copy_action): Likewise.
21066 Use obstack_1grow ().
21067 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21068
21069 2001-09-21 Marc Autret <autret_m@epita.fr>
21070
21071 * src/options.c (option_table): Adjust.
21072 * src/lex.c (parse_percent_token): Fix.
21073
21074 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21075
21076 * src/options.c (symtab.h): Include it, need by lex.h.
21077
21078 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21079
21080 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21081 is now an option_table_struct*.
21082 (option_strcmp): New function option_strcmp.
21083 (parse_percent_token): Call option_strcmp.
21084 * src/getargs.c (xalloc.h, options.h): Include it.
21085 (getargs): Call create_long_option_table.
21086 (getargs): Free longopts at the end of the function.
21087 (shortopts): Move in options.c.
21088 * src/options.c (create_long_option_table): New function. Convert
21089 information from option_table to option structure.
21090 * src/reader.c (options.h): Include it.
21091
21092 * src/Makefile.am: Adjust.
21093 * src/options.c (option_table): Create from longopts and percent_table.
21094 * src/getargs.c (longopts): Delete.
21095 * src/lex.c (struct percent_table_struct): Delete.
21096 (percent_table): Delete.
21097 (options.h): Include it.
21098 * src/options.c: Create.
21099 * src/options.h: Create.
21100 Declare enum opt_access_e.
21101 Define struct option_table_struct.
21102
21103 2001-09-20 Marc Autret <autret_m@epita.fr>
21104
21105 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21106 sections of Bison.
21107
21108 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
21109
21110 * src/bison.simple: s/%%filename/%%skeleton.
21111 * src/muscle_tab.c (getargs.h): Include it.
21112 (muscle_init): Insert new muscle skeleton.
21113
21114 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
21115
21116 * src/output.c (output_parser): Delete unused variable actions_dumped.
21117
21118 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
21119
21120 * src/output.c (output): Delete call to reader_output_yylsp.
21121 * src/reader.c (reader): Likewise.
21122 * src/reader.h: Delete declaration of reader_output_yylsp.
21123
21124 2001-09-02 Marc Autret <autret_m@epita.fr>
21125
21126 * src/reader.c: Include muscle_tab.h.
21127 (parse_union_decl): Update.
21128 (parse_macro_decl): Rename parse_muscle_decl.
21129 Update to use renamed functions and variable.
21130 (read_declarations, copy_action, read_additionnal_code, : Updated
21131 with correct variables and functions names.
21132 (packsymbols, reader): Likewise.
21133
21134 * src/reader.h (muscle_obstack): Extern declaration update.
21135
21136 * src/output.c: Include muscle_tab.h
21137 In all functions using macro_insert, change by using muscle_insert ().
21138 (macro_obstack): Rename muscle_obstack.
21139 Echo modifications in the whole file.
21140 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21141 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21142 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21143
21144 * src/muscle_tab.h: Update double inclusion macros.
21145 (macro_entry_s): Rename muscle_entry_s.
21146 Update prototypes.
21147
21148 * src/muscle_tab.c: Include muscle_tab.h.
21149 Rename macro_tabble to muscle_table.
21150 (mhash1, mhash2, mcmp): Use muscle_entry.
21151 (macro_init): Rename muscle_init. Update.
21152 (macro_insert): Rename muscle_insert. Update.
21153 (macro_find): Rename muscle_find. Update.
21154
21155 * src/main.c: Include muscle_tab.h.
21156 (main): Call muscle_init ().
21157 * src/Makefile.am (bison_SOURCES): Echo modifications.
21158
21159 2001-09-02 Marc Autret <autret_m@epita.fr>
21160
21161 Now the files macro_tab.[ch] are named muscle_tab.[ch].
21162
21163 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21164
21165 2001-09-02 Marc Autret <autret_m@epita.fr>
21166
21167 * src/macrotab.c, src/macrotab.h: Remove.
21168
21169 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
21170
21171 * src/reader.c (copy_guard): Use muscle to specify the `#line'
21172 filename.
21173
21174 2001-09-01 Marc Autret <autret_m@epita.fr>
21175
21176 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21177 to an explicit value to activate the feature. We do it here.
21178
21179 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21180
21181 * src/output.c (prepare): Delete the `filename' muscule insertion.
21182 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21183 (parse_union_decl): Likewise.
21184 * src/macrotab.c (macro_init): Initialize filename by infile.
21185
21186 2001-08-31 Marc Autret <autret_m@epita.fr>
21187
21188 * src/bison.simple (YYLSP_NEEDED): New definition.
21189 * src/output.c (prepare): Add macro insertion of `locations_flag'
21190
21191 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21192
21193 * src/output.c (prepare): Delete insertion of previous muscles,
21194 and insert the `prefix' muscles.
21195 * src/macrotab.c (macro_init): Likewise.
21196 (macro_init): Initialization prefix directive by `yy'.
21197 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
21198 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21199 yylval, yydebug, yyerror, yynerrs and yyparse.
21200 New directive `#define' to substitute yydebug, ... with option
21201 name_prefix.
21202
21203 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21204
21205 * src/main.c (main): Standardize.
21206 * src/output.c (output_table_data, output_parser): Likewise.
21207 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21208
21209 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21210
21211 * src/reader.c (read_additionnal_code): Rename %%user_code to
21212 %%epilogue.
21213 * src/output.c (output): Rename %%declarations to %%prologue.
21214 * src/bison.simple: Echo modifications.
21215
21216 2001-08-31 Marc Autret <autret_m@epita.fr>
21217
21218 * src/reader.c (readgram): CleanUp.
21219 (output_token_defines): Likewise.
21220 (packsymbols): Likewise.
21221 (reader): Likewise.
21222 * src/output.c (output): CPP-out useless code.
21223
21224 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21225
21226 * src/reader.c (reader): Delete obsolete call to function
21227 output_trailers and output_headers.
21228 * src/output.h: Remove obsolete functions prototypes of output_headers
21229 and output_trailers.
21230
21231 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
21232
21233 * src/main.c: Include macrotab.h.
21234 * src/macrotab.h (macro_entry_s): Constify fields.
21235 Adjust functions prototypes.
21236 * src/macrotab.c (macro_insert): Constify key and value.
21237 (macro_find): Constify key.
21238 (macro_insert): Include 'xalloc.h'
21239 (macro_insert): Use XMALLOC.
21240 (macro_find): Constify return value.
21241 * src/output.c (output_table_data): Rename table to table_data.
21242 (output_parser): Constify macro_key, macro_value.
21243
21244 2001-08-30 Marc Autret <autret_m@epita.fr>
21245
21246 * src/reader.c (parse_skel_decl): New.
21247 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
21248 * src/lex.h (token_t): New token `tok_skel'.
21249 * src/lex.c (percent_table): Add skeleton option entry.
21250 Standardize.
21251
21252 2001-08-29 Marc Autret <autret_m@epita.fr>
21253
21254 * src/bison.simple: Add %%user_code directive at the end.
21255 * src/reader.c (read_additionnal_code): New.
21256 (reader): Use it.
21257 * src/output.c (output_program): Remove.
21258 (output): Update.
21259
21260 2001-08-28 Marc Autret <autret_m@epita.fr>
21261
21262 * src/output.c (output_actions): Clean up.
21263 (output_gram): CPP-out useless code.
21264 * src/reader.c (reader): Clean up, CPP-out useless code.
21265
21266 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
21267
21268 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
21269 directive.
21270 * src/bison.simple: Add `%%definitions'.
21271
21272 2001-08-28 Marc Autret <autret_m@epita.fr>
21273
21274 * config/depcomp: New file.
21275
21276 2001-08-27 Paul Eggert <eggert@twinsun.com>
21277
21278 * src/bison.simple (yyparse): Don't take the address of an
21279 item before the start of an array, as that doesn't conform to
21280 the C Standard.
21281
21282 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21283
21284 * src/output.c (output): Remove the initialization of the macro
21285 obstack. It was done too late here.
21286
21287 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21288 completely wrong.
21289 (reader): Initialize the macro obstack here, since we need it to grow
21290 '%define' directives.
21291
21292 * src/reader.h: Declare the macro obstack as extern.
21293
21294 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21295
21296 * src/output.c (output_parser): Fix. Store single '%' characters in
21297 the output obstack instead of throwing them away.
21298
21299 2001-08-27 Akim Demaille <akim@epita.fr>
21300
21301 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21302
21303 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21304
21305 * lib/Makefile.am: Adjust.
21306
21307 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21308
21309 * src/bison.simple: Update and add '%%' directives.
21310
21311 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21312
21313 * src/reader.c (reader): Remove calls to 'output_headers' and
21314 'output_trailers'. Remove some C output.
21315 (readgram): Disable a piece of code that was writing a default
21316 definition for 'YYSTYPE'.
21317 (reader_output_yylsp): Remove.
21318 (packsymbols): Output token defintions to a macro.
21319 (copy_definition): Disable C output.
21320
21321 * src/reader.c (parse_macro_decl): New function used to parse macro
21322 declarations.
21323 (copy_string2): Put the body of copy_string into this new function.
21324 Add a parameter to let the caller choose whether he wants to copy the
21325 string delimiters or not.
21326 (copy_string): Be a simple call to copy_string2 with the last argument
21327 bound to true.
21328 (read_declarations): Add case for macro definition.
21329 (copy_identifier): New.
21330 (parse_macro_decl): Read macro identifiers using copy_identifier
21331 rather than lex.
21332
21333 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21334
21335 * src/output.c (prepare): Add prefixed names.
21336 (output_parser): Output semantic actions.
21337 (output_parser): Fix bug on '%%line' directives.
21338
21339 * src/output.c (output_headers): Remove. The C code printed by this
21340 function should now be in the skeletons.
21341 (output_trailers): Remove.
21342 (output): Disable call to 'reader_output_yylsp'.
21343 (output_rule_data): Do not output tables to the table obstack.
21344
21345 * src/output.c: Remove some C dedicated output.
21346 Improve the use of macro and output obstacks.
21347 (output_defines): Remove.
21348
21349 * src/output.c (output_token_translations): Associate 'translate'
21350 table with a macro. No output to the table obstack.
21351 (output_gram): Same for 'rhs' and 'prhs'.
21352 (output_stos): Same for 'stos'.
21353 (output_rule_data): Same for 'r1' and 'r2'.
21354 (token_actions): Same for 'defact'.
21355 (goto_actions): Same for 'defgoto'.
21356 (output_base): Same for 'pact' and 'pgoto'.
21357 (output_table): Same for 'table'.
21358 (output_check): Same for 'check'.
21359
21360 * src/output.c (output_table_data): New function.
21361 (output_short_table): Remove.
21362 (output_short_or_char_table): Remove.
21363
21364 * src/output.c (output_parser): Replace most of the skeleton copy code
21365 with something new. Skeletons are now processed character by character
21366 rather than line by line, and Bison looks for '%%' macros. This is the
21367 first step in making Bison's output process (a lot) more flexible.
21368 (output_parser): Use the macro table.
21369
21370 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21371
21372 * src/main.c (main): Initialize the macro table.
21373
21374 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21375
21376 * src/lex.c (percent_table): Add tok_define.
21377 * src/lex.h: Add tok_define.
21378
21379 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21380
21381 * src/macrotab.c: New file.
21382 * src/macrotab.h: New file.
21383 * src/Makefile.am: Update.
21384
21385 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21386
21387 * lib/hash.c: New file.
21388 * lib/hash.h: New file.
21389 * lib/Makefile.am: Update.
21390
21391 2001-08-15 Akim Demaille <akim@epita.fr>
21392
21393 Version 1.28c.
21394
21395 2001-08-15 Marc Autret <autret_m@epita.fr>
21396
21397 * src/reader.c (readgram): Indent output macro YYSTYPE.
21398 (packsymbols): Likewise.
21399 (output_token_defines): Likewise.
21400 * src/files.c: Standardize.
21401 (compute_header_macro): New.
21402 (defines_obstack_save): New. Use compute_header_macro.
21403 (output_files): Update. Use defines_obstack_save.
21404
21405 2001-08-15 Akim Demaille <akim@epita.fr>
21406
21407 * doc/bison.texinfo (Table of Symbols): Document
21408 YYSTACK_USE_ALLOCA.
21409
21410 2001-08-15 Akim Demaille <akim@epita.fr>
21411
21412 * missing: Update from CVS Automake.
21413 * config/config.guess, config/config.sub, config/texinfo.tex:
21414 Update from gnu.org.
21415
21416 2001-08-15 Akim Demaille <akim@epita.fr>
21417
21418 * Makefile.maint: Sync with CVS Autoconf.
21419
21420 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
21421
21422 * doc/bison.texinfo: Include GNU Free Documentation License from
21423 `fdl.texi'.
21424 * doc/fdl.texi: Add to package.
21425
21426 2001-08-14 Marc Autret <autret_m@epita.fr>
21427
21428 Turn on %{source,header}_extension features.
21429
21430 * src/lex.c (percent_table): Un-CPP out header_extension and
21431 source_extension.
21432 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
21433 (compute_exts_from_src): Remove conditions. It restores priorities
21434 between options.
21435
21436 2001-08-14 Marc Autret <autret_m@epita.fr>
21437
21438 * src/files.c (compute_base_names): Add extensions computing when
21439 `--file-prefix' used.
21440 Standardize function calls.
21441
21442 2001-08-13 Marc Autret <autret_m@epita.fr>
21443
21444 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
21445 defining it (defined but null disables alloca).
21446
21447 2001-08-13 Marc Autret <autret_m@epita.fr>
21448
21449 * src/bison.simple (_yy_memcpy): CPP reformat.
21450
21451 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
21452
21453 * tests/atconfig.in (CPPFLAGS): Fix.
21454
21455 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
21456
21457 * doc/bison.texinfo: Include GNU General Public License from
21458 `gpl.texi'.
21459 * doc/gpl.texi: Add to package.
21460
21461 2001-08-10 Marc Autret <autret_m@epita.fr>
21462
21463 * src/print_graph.h: Fix.
21464 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21465
21466 2001-08-10 Akim Demaille <akim@epita.fr>
21467
21468 * src/system.h: Provide default declarations for stpcpy, strndup,
21469 and strnlen.
21470
21471 2001-08-10 Robert Anisko <anisko_r@epita.fr>
21472
21473 * doc/bison.texinfo (Locations): Update @$ stuff.
21474
21475 2001-08-09 Robert Anisko <anisko_r@epita.fr>
21476
21477 * src/bison.simple (YYLLOC_DEFAULT): Update.
21478 (yyparse): Adjust.
21479
21480 2001-08-08 Marc Autret <autret_m@epita.fr>
21481
21482 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
21483 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21484 Reported by Fabrice Bauzac.
21485
21486 2001-08-08 Marc Autret <autret_m@epita.fr>
21487
21488 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21489 * src/vcg.c (output_node): Fix.
21490 * src/vcg.h: Cleanup.
21491 * src/print_graph.c: Add comments.
21492 (node_output_size): New global variable. Simplify the formatting of
21493 the VCG graph output.
21494 (print_actions): Unused code is now used. It notifies the final state
21495 and no action states in the VCG graph. It also give the reduce actions.
21496 The `shift and goto' edges are red and the `go to state' edges are
21497 blue.
21498 Get the current node name and node_obstack by argument.
21499 (node_obstack): New variable.
21500 (print_state): Manage node_obstack.
21501 (print_core): Use node_obstack given by argument.
21502 A node is not only computed here but in print_actions also.
21503 (print_graph): CPP out useless code instead of commenting it.
21504
21505 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
21506
21507 * tests/atconfig.in (CPPFLAGS): Fix.
21508
21509 2001-08-07 Akim Demaille <akim@epita.fr>
21510
21511 * src/print_graph.c (quote): New.
21512 (print_core): Use it.
21513
21514 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
21515
21516 * src/vcg.c (complain.h): Include it.
21517 Unepitaize `return' invocations.
21518 [NDEBUG] (main): Remove.
21519 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
21520 * src/files.c (open_files): Initialize graph_obstack.
21521 * src/print_graph.c (print_actions): CPP out useless code.
21522 (print_core): Don't output the last `\n' in labels.
21523 Use `quote'.
21524 * src/files.c (output_files): Output the VCG file.
21525 * src/main.c (main): Invoke print_graph ();
21526
21527 2001-08-06 Marc Autret <autret_m@epita.fr>
21528
21529 Automaton VCG graph output.
21530 Using option ``-g'' or long option ``--graph'', you can generate
21531 a gram_filename.vcg file containing a VCG description of the LALR (1)
21532 automaton of your grammar.
21533
21534 * src/main.c: Call to print_graph() function.
21535 * src/getargs.h: Update.
21536 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21537 (graph_flag): New flag.
21538 (longopts): Update.
21539 (getargs): Add case `g'.
21540 * src/files.c (graph_obstack): New obstack struct.
21541 (open_files): Initialize new obstack.
21542 (output_files): Saves graph_obstack if required.
21543 * src/files.h (graph_obstack): New extern declaration.
21544 * src/Makefile.am: Add new source files.
21545
21546 2001-08-06 Marc Autret <autret_m@epita.fr>
21547
21548 * src/print_graph.c, src/print_graph.h (graph): New.
21549 * src/vcg.h: New file.
21550 * src/vcg.c: New file, VCG graph handling.
21551
21552 2001-08-06 Marc Autret <autret_m@epita.fr>
21553
21554 Add of %source_extension and %header_extension which specify
21555 the source or/and the header output file extension.
21556
21557 * src/files.c (compute_base_names): Remove initialisation of
21558 src_extension and header_extension.
21559 (compute_exts_from_gf): Update.
21560 (compute_exts_from_src): Update.
21561 (output_files): Update.
21562 * src/reader.c (parse_header_extension_decl): New.
21563 (parse_source_extension_decl): New.
21564 (read_declarations): New case statements for the new tokens.
21565 * src/lex.c (percent_table): Add entries for %source_extension
21566 and %header_extension.
21567 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21568
21569 2001-08-06 Marc Autret <autret_m@epita.fr>
21570
21571 * configure.in: Bump to 1.28c.
21572 * doc/bison.texinfo: Texinfo thingies.
21573
21574 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
21575
21576 * tests/atconfig.in (CPPFLAGS): Add.
21577 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21578
21579 2001-08-03 Akim Demaille <akim@epita.fr>
21580
21581 Version 1.28b.
21582
21583 2001-08-03 Akim Demaille <akim@epita.fr>
21584
21585 * tests/Makefile.am (check-local): Ship testsuite.
21586 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21587 Include `string.h'.
21588
21589 2001-08-03 Akim Demaille <akim@epita.fr>
21590
21591 * configure.in: Try using -Wformat when compiling.
21592
21593 2001-08-03 Akim Demaille <akim@epita.fr>
21594
21595 * configure.in: Bump to 1.28b.
21596
21597 2001-08-03 Akim Demaille <akim@epita.fr>
21598
21599 * src/complain.c: Adjust strerror_r portability issues.
21600
21601 2001-08-03 Akim Demaille <akim@epita.fr>
21602
21603 Version 1.28a.
21604
21605 2001-08-03 Akim Demaille <akim@epita.fr>
21606
21607 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21608 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21609 * src/getargs.c: Include complain.h.
21610 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21611 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21612
21613 2001-08-03 Akim Demaille <akim@epita.fr>
21614
21615 * src/reader.c (readgram): Display hidden chars in error messages.
21616
21617 2001-08-03 Akim Demaille <akim@epita.fr>
21618
21619 Update to gettext 0.10.39.
21620
21621 2001-08-03 Akim Demaille <akim@epita.fr>
21622
21623 * lib/strspn.c: New.
21624
21625 2001-08-01 Marc Autret <autret_m@epita.fr>
21626
21627 * doc/bison.texinfo: Update.
21628 * doc/bison.1 (mandoc): Update.
21629 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21630 * src/files.c: Support output files extensions computing.
21631 (src_extension): New static variable.
21632 (header_extension): New static variable.
21633 (tr): New function.
21634 (get_extension_index): New function, gets the index of an extension
21635 filename in a string.
21636 (compute_exts_from_gf): New function, computes extensions from the
21637 grammar file extension.
21638 (compute_exts_from_src): New functions, computes extensions from the
21639 C source file extension, file given by ``-o'' option.
21640 (compute_base_names): Update.
21641 (output_files): Update.
21642
21643 2001-08-01 Robert Anisko <anisko_r@epita.fr>
21644
21645 * doc/bison.texi: Document @$.
21646 (Locations): New section.
21647
21648 2001-07-18 Akim Demaille <akim@epita.fr>
21649
21650 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21651 * config/prev-version.txt, config/move-if-change: New.
21652 * Makefile.am: Adjust.
21653
21654 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
21655
21656 * src/bison.simple (yyparse): Suppress warning `comparaison
21657 between signed and unsigned'.
21658
21659 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
21660
21661 * src/getargs.h (raw_flag): Remove.
21662 * src/getargs.c: Die on `-r'/`--raw'.
21663 * src/lex.c (parse_percent_token): Die on `%raw'.
21664 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21665 * tests/calc.at: Suppress test with option `--raw'.
21666
21667 2001-07-14 Akim Demaille <akim@epita.fr>
21668
21669 * config/: New.
21670 * configure.in: Require Autoconf 2.50.
21671 Update to gettext 0.10.38.
21672
21673 2001-03-16 Akim Demaille <akim@epita.fr>
21674
21675 * doc/bison.texinfo: ANSIfy the examples.
21676
21677 2001-03-16 Akim Demaille <akim@epita.fr>
21678
21679 * getargs.c (skeleton): New variable.
21680 (longopts): --skeleton is a new option.
21681 (shortopts, getargs): -S is a new option.
21682 * getargs.h: Declare skeleton.
21683 * output.c (output_parser): Use it.
21684
21685 2001-03-16 Akim Demaille <akim@epita.fr>
21686
21687 * m4/strerror_r.m4: New.
21688 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21689 * lib/error.h, lib/error.c: Update.
21690
21691 2001-03-16 Akim Demaille <akim@epita.fr>
21692
21693 * src/getargs.c (longopts): Clean up.
21694
21695 2001-02-21 Akim Demaille <akim@epita.fr>
21696
21697 * src/reader.c (gensym): `gensym_count' is your own.
21698 Use a static buf to create the symbol name, as token_buffer is no
21699 longer a buffer.
21700
21701 2001-02-08 Akim Demaille <akim@epita.fr>
21702
21703 * src/conflicts.c (conflict_report): Be sure not to append to res
21704 between two calls, which could happen if both first sprintf were
21705 skipped, but not the first cp += strlen.
21706
21707 2001-02-08 Akim Demaille <akim@epita.fr>
21708
21709 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21710 New, from fileutils 4.0.37.
21711 * configure.in: Require Autoconf 2.49c. I took some time before
21712 making this decision. This is the only way out for portability
21713 issues in Bison, it would mean way too much duplicate effort to
21714 import in Bison features implemented in 2.49c since 2.13.
21715 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21716
21717 2001-02-02 Akim Demaille <akim@epita.fr>
21718
21719 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
21720 * lib/xalloc.h, lib/xmalloc.c: Update.
21721
21722 2001-01-19 Akim Demaille <akim@epita.fr>
21723
21724 Get rid of the ad hoc handling of token_buffer in the scanner: use
21725 the obstacks.
21726
21727 * src/lex.c (token_obstack): New.
21728 (init_lex): Initialize it. No longer call...
21729 (grow_token_buffer): this. Remove it.
21730 Adjust all the places which used it to use the obstack.
21731
21732 2001-01-19 Akim Demaille <akim@epita.fr>
21733
21734 * src/lex.h: Rename all the tokens:
21735 s/\bENDFILE\b/tok_eof/g;
21736 s/\bIDENTIFIER\b/tok_identifier/g;
21737 etc.
21738 Let them be enums, not #define, to ease debugging.
21739 Adjust all the code.
21740
21741 2001-01-18 Akim Demaille <akim@epita.fr>
21742
21743 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21744 * src/lex.c (maxtoken, grow_token_buffer): Static.
21745
21746 2001-01-18 Akim Demaille <akim@epita.fr>
21747
21748 Since we now use obstacks, more % directives can be enabled.
21749
21750 * src/lex.c (percent_table): Also accept `%yacc',
21751 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21752 `%debug'.
21753 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21754 instead of returning a token.
21755 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21756 * src/reader.c (read_declarations): Adjust.
21757 * src/files.c (open_files): Don't call `compute_base_names', don't
21758 compute `attrsfile' since they depend upon data which might be
21759 *in* the input file now.
21760 (output_files): Do it here.
21761 * src/output.c (output_headers): Document the fact that this patch
21762 introduces a guaranteed SEGV for semantic parsers.
21763 * doc/bison.texinfo: Document them.
21764 * tests/suite.at: Exercise these %options.
21765
21766 2000-12-20 Akim Demaille <akim@epita.fr>
21767
21768 Also handle the output file (--verbose) with obstacks.
21769
21770 * files.c (foutput): Remove.
21771 (output_obstack): New.
21772 Adjust all dependencies.
21773 * src/conflicts.c: Return a string.
21774 * src/system.h (obstack_grow_string): Rename as...
21775 (obstack_sgrow): this. Be ready to work with non literals.
21776 (obstack_fgrow4): New.
21777
21778 2000-12-20 Akim Demaille <akim@epita.fr>
21779
21780 * src/files.c (open_files): Fix the computation of short_base_name
21781 in the case of `-o foo.tab.c'.
21782
21783 2000-12-20 Akim Demaille <akim@epita.fr>
21784
21785 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21786 (copy_dollar): Now that everything uses obstacks, get rid of the
21787 FILE * parameters.
21788
21789 2000-12-20 Akim Demaille <akim@epita.fr>
21790
21791 * src/files.c (open_files): Actually the `.output' file is based
21792 on the short_base_name, not base_name.
21793 * tests/suite.at (Checking output file names): Adjust.
21794
21795 2000-12-20 Akim Demaille <akim@epita.fr>
21796
21797 * src/bison.s1: Remove, we now use directly...
21798 * src/bison.simple: this.
21799 * src/Makefile.am: Use pkgdata instead of data.
21800
21801 2000-12-20 Akim Demaille <akim@epita.fr>
21802
21803 * src/files.c (guard_obstack): New.
21804 (open_files): Initialize it.
21805 (output_files): Dump it...
21806 * src/files.h: Export it.
21807 * src/reader.c (copy_guard): Use it.
21808
21809 2000-12-19 Akim Demaille <akim@epita.fr>
21810
21811 * src/files.c (outfile, defsfile, actfile): Removed as global
21812 vars.
21813 (open_files): Don't compute them.
21814 (output_files): Adjust.
21815 (base_name, short_base_name): Be global.
21816 Adjust dependencies.
21817
21818 2000-12-19 Akim Demaille <akim@epita.fr>
21819
21820 * src/files.c (strsuffix): New.
21821 (stringappend): Be just like strcat but allocate.
21822 (base_names): Eve out from open_files.
21823 Try to simplify the rather hairy computation of base_name and
21824 short_base_name.
21825 (open_files): Use it.
21826 * tests/suite.at (Checking output file names): New test.
21827
21828 2000-12-19 Akim Demaille <akim@epita.fr>
21829
21830 * src/system.h (obstack_grow_literal_string): Rename as...
21831 (obstack_grow_string): this.
21832 * src/output.c (output_parser): Recognize `%% actions' instead of
21833 `$'.
21834 * src/bison.s1: s/$/%% actions/.
21835 * src/bison.hairy: Likewise.
21836
21837 2000-12-19 Akim Demaille <akim@epita.fr>
21838
21839 * src/output.c (output_parser): Compute the `#line' lines when
21840 there are.
21841 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
21842 Suggested by Hans Aberg.
21843
21844 2000-12-19 Akim Demaille <akim@epita.fr>
21845
21846 Let the handling of the skeleton files be local to the procedures
21847 that use it.
21848
21849 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
21850 longer static.
21851 (fparser, open_extra_files): Remove.
21852 (open_files, output_files): Don't take care of fparser.
21853 * src/files.h: Adjust.
21854 * src/output.c (output_parser): Open and close the file to the
21855 skeleton.
21856 * src/reader.c (read_declarations): When %semantic_parser, open
21857 fguard.
21858
21859 2000-12-19 Akim Demaille <akim@epita.fr>
21860
21861 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
21862 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
21863
21864 2000-12-19 Akim Demaille <akim@epita.fr>
21865
21866 * src/files.c (open_files): Yipee! We no longer need all the code
21867 looking for `/tmp' since we have no tmp file.
21868
21869 2000-12-19 Akim Demaille <akim@epita.fr>
21870
21871 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
21872 New macros.
21873 * src/files.c (open_files): Less dependency on MSDOS etc.
21874
21875 2000-12-14 Akim Demaille <akim@epita.fr>
21876
21877 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
21878 Provide a default definition.
21879 Use it when executing the default @ action.
21880 * src/reader.c (reader_output_yylsp): No longer include
21881 `timestamp' and `text' in the default YYLTYPE.
21882
21883 2000-12-12 Akim Demaille <akim@epita.fr>
21884
21885 * src/reader.c (copy_definition, parse_union_decl, copy_action)
21886 (copy_guard): Quote the file names.
21887 Reported by Laurent Mascherpa.
21888
21889 2000-12-12 Akim Demaille <akim@epita.fr>
21890
21891 * src/output.c (output_headers, output_program, output): Be sure
21892 to escape special characters when outputting filenames.
21893 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
21894 (output_headers): Don't depend on them, Use ACTSTR.
21895
21896 2000-11-17 Akim Demaille <akim@epita.fr>
21897
21898 * lib/obstack.h: Formatting changes.
21899 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
21900 prevents type checking.
21901 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21902 cast the value to (void *): assigning a `foo *' to a `void *'
21903 variable is valid.
21904 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21905 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
21906 append characters.
21907
21908 2000-11-17 Akim Demaille <akim@epita.fr>
21909
21910 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
21911 as...
21912 (suite.m4, regression.m4, calc.m4): these.
21913 * tests/atgeneral.m4: Update from CVS Autoconf.
21914
21915 2000-11-17 Akim Demaille <akim@epita.fr>
21916
21917 * tests/regression.m4 (%union and --defines): New test,
21918 demonstrating a current bug in the obstack implementation.
21919
21920 2000-11-17 Akim Demaille <akim@epita.fr>
21921
21922 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
21923 macros.
21924 Use them to declare the variables which are global or local to
21925 `yyparse'.
21926
21927 2000-11-17 Akim Demaille <akim@epita.fr>
21928
21929 * acconfig.h: Remove, no longer used.
21930
21931 2000-11-07 Akim Demaille <akim@epita.fr>
21932
21933 * src: s/Copyright (C)/Copyright/g.
21934
21935 2000-11-07 Akim Demaille <akim@epita.fr>
21936
21937 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
21938 defining.
21939 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
21940
21941 2000-11-07 Akim Demaille <akim@epita.fr>
21942
21943 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
21944 Merge in a single CPP if/else.
21945
21946 2000-11-07 Akim Demaille <akim@epita.fr>
21947
21948 * src/output.c (output): Remove useless variables.
21949 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
21950 argument `data' for consistency with the prototypes.
21951 Qualify it `const'.
21952 (obstack_copy, obstack_copy0): Rename the second argument as
21953 `address' for consistency. Qualify it `const'.
21954 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
21955 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
21956 `const' their input argument (`data' or `address').
21957 Adjust the corresponding macros to include `const' in casts.
21958
21959 2000-11-03 Akim Demaille <akim@epita.fr>
21960
21961 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
21962 s/PFILE1/BISON_HAIRY/.
21963 Adjust dependencies.
21964
21965 2000-11-03 Akim Demaille <akim@epita.fr>
21966
21967 For some reason, this was not applied.
21968
21969 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21970 `unlink': it's no longer used.
21971
21972 2000-11-03 Akim Demaille <akim@epita.fr>
21973
21974 * src/files.c (skeleton_find): New function, eved out of...
21975 (open_files, open_extra_files): here.
21976
21977 2000-11-03 Akim Demaille <akim@epita.fr>
21978
21979 Don't use `atexit'.
21980
21981 * src/files.c (obstack_save): New function.
21982 (done): Rename as...
21983 (output_files): this.
21984 Use `obstack_save'.
21985 * src/main.c (main): Don't use `atexit' to register `done', since
21986 it no longer has to remove tmp files, just call `output_files'
21987 when there are no errors.
21988
21989 2000-11-02 Akim Demaille <akim@epita.fr>
21990
21991 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21992 `unlink': it's no longer used.
21993 * src/files.h: Formatting changes.
21994
21995 2000-11-02 Akim Demaille <akim@epita.fr>
21996
21997 Remove the last uses of mktemp and unlink/delete.
21998
21999 * src/files.c (fdefines, ftable): Removed.
22000 (defines_ostack, table_obstack): New.
22001 Adjust dependencies of the former into uses of the latter.
22002 * src/output.c (output_short_or_char_table, output_short_table):
22003 Convert to using obstacks.
22004 * src/reader.c (copy_comment2): Accept one FILE * and two
22005 obstacks.
22006 (output_token_defines, reader_output_yylsp): Use obstacks.
22007 * src/system.h (obstack_fgrow3): New.
22008 * po/POTFILES.in: Adjust.
22009
22010 2000-11-01 Akim Demaille <akim@epita.fr>
22011
22012 Change each use of `fattrs' into a use of `attrs_obstack'.
22013
22014 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22015 * src/files.c (fattrs): Remove.
22016 (attrs_obstack): New.
22017 Adjust all dependencies.
22018 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22019
22020 2000-11-01 Akim Demaille <akim@epita.fr>
22021
22022 Introduce obstacks.
22023 Change each use of `faction' into a use of `action_obstack'.
22024
22025 * lib/obstack.h, lib/obstack.c: New files.
22026 * src/files.c (faction): Remove.
22027 (action_obstack): New.
22028 Adjust all dependencies.
22029
22030 2000-10-20 Akim Demaille <akim@epita.fr>
22031
22032 * lib/quote.h (PARAMS): New macro. Use it.
22033
22034 2000-10-16 Akim Demaille <akim@epita.fr>
22035
22036 * src/output.c (output_short_or_char_table): New function.
22037 (output_short_table, output_token_translations): Use it.
22038 (goto_actions): Use output_short_table.
22039
22040 2000-10-16 Akim Demaille <akim@epita.fr>
22041
22042 * src/symtab.c (bucket_new): New function.
22043 (getsym): Use it.
22044
22045 * src/output.c (output_short_table): New argument to display the
22046 comment associated with the table.
22047 Adjust dependencies.
22048 (output_gram): Use it.
22049 (output_rule_data): Nicer output layout for YYTNAME.
22050
22051 2000-10-16 Akim Demaille <akim@epita.fr>
22052
22053 * src/lex.c (read_typename): New function.
22054 (lex): Use it.
22055 * src/reader.c (copy_dollar): Likewise.
22056
22057 2000-10-16 Akim Demaille <akim@epita.fr>
22058
22059 * src/reader.c (copy_comment2): Expect the input stream to be on
22060 the `/' which is suspected to open a comment, instead of being
22061 called after `//' or `/*' was read.
22062 (copy_comment, copy_definition, parse_union_decl, copy_action)
22063 (copy_guard): Adjust.
22064
22065 2000-10-16 Akim Demaille <akim@epita.fr>
22066
22067 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22068 `read_signed_integer'.
22069
22070 2000-10-16 Akim Demaille <akim@epita.fr>
22071
22072 * src/reader.c (copy_dollar): New function.
22073 (copy_guard, copy_action): Use it.
22074
22075 2000-10-16 Akim Demaille <akim@epita.fr>
22076
22077 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22078 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22079 New files, from Fileutils 4.0.27.
22080 * src/main.c (printable_version): Remove.
22081 * src/lex.c, src/reader.c: Use `quote'.
22082
22083 2000-10-04 Akim Demaille <akim@epita.fr>
22084
22085 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22086
22087 2000-10-04 Akim Demaille <akim@epita.fr>
22088
22089 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22090
22091 2000-10-04 Akim Demaille <akim@epita.fr>
22092
22093 When a literal string is used to define two different tokens,
22094 `bison -v' segfaults.
22095 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22096
22097 * tests/regression.m4: New file.
22098 Include the core of the sample provided by Piotr Gackiewicz.
22099 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22100 properly.
22101
22102 2000-10-04 Akim Demaille <akim@epita.fr>
22103
22104 * src/reader.c (parse_expect_decl): Keep `count' within the size
22105 of `buffer'.
22106 From Neil Booth.
22107
22108 2000-10-02 Paul Eggert <eggert@twinsun.com>
22109
22110 * bison.s1 (yyparse): Assign the default value
22111 unconditionally, to avoid a GCC warning and make the parser a
22112 tad smaller.
22113
22114 2000-10-02 Akim Demaille <akim@epita.fr>
22115
22116 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22117 options.
22118
22119 2000-10-02 Akim Demaille <akim@epita.fr>
22120
22121 * src/derives.c, src/print.c, src/reduce.c: To ease the
22122 translation, move some `\n' out of the translated strings.
22123
22124 2000-10-02 Akim Demaille <akim@epita.fr>
22125
22126 The location tracking mechanism is precious for parse error
22127 messages. Nevertheless, it is enabled only when `@n' is used in
22128 the grammar, which is a different issue (you can use it in error
22129 message, but not in the grammar per se). Therefore, there should
22130 be another means to enable it.
22131
22132 * src/getargs.c (getargs): Support `--locations'.
22133 (usage): Report it.
22134 * src/getargs.h (locationsflag): Export it.
22135 * src/lex.c (percent_table): Support `%locations'.
22136 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22137 with `locationsflag'.
22138 * doc/bison.texinfo: Document `--locations' and `%locations'.
22139 Sort the options.
22140 * tests/calc.m4: Test it.
22141
22142 For regularity of the names, replace each
22143 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22144 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22145 In addition replace each `flag' with `_flag'.
22146
22147 2000-10-02 Akim Demaille <akim@epita.fr>
22148
22149 Also test parse error messages, including with YYERROR_VERBOSE.
22150
22151 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22152 associative).
22153 Use it to check the computations.
22154 Use it to check `nonassoc' is honored.
22155 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22156 `--yyerror-verbose'.
22157 (_AT_CHECK_CALC): Adjust to this option.
22158 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22159
22160 2000-10-02 Akim Demaille <akim@epita.fr>
22161
22162 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22163 the latter demonstrates a flaw in the handling of non debugging
22164 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22165 was used in order to simplify:
22166
22167 #if YYDEBUG
22168 if (yydebug)
22169 {
22170 ...
22171 }
22172 #endif
22173
22174 into
22175
22176 if (yydebug)
22177 {
22178 ...
22179 }
22180
22181 unfortunately this leads to a CPP conflict when
22182 `--name-prefix=foo' is used since it produces `#define yydebug
22183 foodebug'.
22184
22185 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22186 (YYDPRINTF): New macro.
22187 Spread its use.
22188 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22189 the bison options.
22190 Also test `--verbose', `--defines' and `--name-prefix'.
22191
22192 2000-10-02 Akim Demaille <akim@epita.fr>
22193
22194 Improve the readability of the produced parsers.
22195
22196 * src/bison.s1: Formatting changes.
22197 Improve the comment related to the `$' mark.
22198 (yydefault): Don't fall through to `yyresume': `goto' there.
22199 * src/output.c (output_parser): When the `$' is met, skip the end
22200 of its line.
22201 New variable, `number_of_dollar_signs', to check there's exactly
22202 one `$' in the parser skeleton.
22203
22204 2000-10-02 Akim Demaille <akim@epita.fr>
22205
22206 * lib/xstrdup.c: New file, from the fileutils.
22207 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22208 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22209 instead of strlen + xmalloc + strcpy.
22210 * src/symtab.c (copys): Remove, use xstrdup instead.
22211
22212 2000-10-02 Akim Demaille <akim@epita.fr>
22213
22214 * src/gram.h (associativity): New enum type which replaces the
22215 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22216 `right_assoc', `left_assoc' and `non_assoc'.
22217 Adjust all dependencies.
22218 * src/reader.c: Formatting changes.
22219 (LTYPESTR): Don't define it, use it as a literal in
22220 `reader_output_yylsp'.
22221 * src/symtab.h (symbol_class): New enum type which replaces the
22222 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22223 `sunknown', `stoken and `snterm'.
22224
22225 2000-10-02 Akim Demaille <akim@epita.fr>
22226
22227 * src/getargs.c (fixed_outfiles): Rename as...
22228 (yaccflag): for consistency and accuracy.
22229 Adjust dependencies.
22230
22231 2000-10-02 Akim Demaille <akim@epita.fr>
22232
22233 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22234 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22235 difficult and introduced a lot of core dump. It turns out that
22236 Bison used an implementation of `xmalloc' based on `calloc', and
22237 at various places it does depend upon the initialization to 0. I
22238 have not tried to isolate the pertinent places, and all the former
22239 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22240 someone should address this issue.
22241
22242 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22243 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22244 files.
22245 Adjust dependencies.
22246 * src/warshall.h: New file.
22247 Propagate.
22248
22249 2000-10-02 Akim Demaille <akim@epita.fr>
22250
22251 Various anti-`extern in *.c' changes.
22252
22253 * src/system.h: Include `assert.h'.
22254
22255 2000-10-02 Akim Demaille <akim@epita.fr>
22256
22257 * src/state.h (nstates, final_state, first_state, first_shift)
22258 (first_reduction): Move their exportation from here...
22259 * src/LR0.h: to here.
22260 Adjust dependencies.
22261 * src/getargs.c (statisticsflag): New variable.
22262 Add support for `--statistics'.
22263 Adjust dependencies.
22264
22265 Remove a lot of now useless `extern' statements in most files.
22266
22267 2000-10-02 Akim Demaille <akim@epita.fr>
22268
22269 * src/LR0.h: New file.
22270 Propagate its use.
22271
22272 2000-10-02 Akim Demaille <akim@epita.fr>
22273
22274 * src/print.h: New file.
22275 Propagate its use.
22276 * src/print.c: Formatting and ordering changes.
22277 (verbose, terse): Replace with...
22278 (print_results): this new function.
22279 Adjust dependencies.
22280
22281 2000-10-02 Akim Demaille <akim@epita.fr>
22282
22283 * src/conflicts.c (conflict_report): New function.
22284 (conflict_log, verbose_conflict_log): Replace with...
22285 (print_conflicts): this function.
22286 Adjust dependencies.
22287 * src/conflicts.h: New file.
22288 Propagate its inclusion.
22289
22290 2000-10-02 Akim Demaille <akim@epita.fr>
22291
22292 * src/nullable.h: New file.
22293 Propagate its inclusion.
22294 * src/nullable.c: Formatting changes.
22295
22296 2000-10-02 Akim Demaille <akim@epita.fr>
22297
22298 * src/reduce.h: New file.
22299 Propagate its inclusion.
22300 * src/reduce.c: Topological sort and other formatting changes.
22301 (bool, TRUE, FALSE): Move their definition to...
22302 * src/system.h: here.
22303
22304 2000-10-02 Akim Demaille <akim@epita.fr>
22305
22306 * src/files.c: Formatting changes.
22307 (tryopen, tryclose, openfiles): Rename as...
22308 (xfopen, xfclose, open_files): this.
22309 (stringappend): static.
22310 * src/files.h: Complete the list of exported symbols.
22311 Propagate its use.
22312
22313 2000-10-02 Akim Demaille <akim@epita.fr>
22314
22315 * src/reader.h: New file.
22316 Propagate its use instead of tedious list of `extern' and
22317 prototypes.
22318 * src/reader.c: Formatting changes, topological sort,
22319 s/register//.
22320
22321 2000-10-02 Akim Demaille <akim@epita.fr>
22322
22323 * src/lex.h: Prototype `lex.c' exported functions.
22324 * src/reader.c: Adjust.
22325 * src/lex.c: Formatting changes.
22326 (safegetc): Rename as...
22327 (xgetc): this.
22328
22329 2000-10-02 Akim Demaille <akim@epita.fr>
22330
22331 * src/lalr.h: New file.
22332 Propagate its inclusion instead of prototypes and `extern'.
22333 * src/lalr.c: Formatting changes, topological sorting etc.
22334
22335 2000-10-02 Akim Demaille <akim@epita.fr>
22336
22337 * src/output.c (token_actions): Introduce a temporary array,
22338 YYDEFACT, that makes it possible for this function to use
22339 output_short_table.
22340
22341 2000-10-02 Akim Demaille <akim@epita.fr>
22342
22343 `user_toknums' is output as a `short[]' in `output.c', while it is
22344 defined as a `int[]' in `reader.c'. For consistency with the
22345 other output tables, `user_toknums' is now defined as a table of
22346 shorts.
22347
22348 * src/reader.c (user_toknums): Be a short table instead of an int
22349 table.
22350 Adjust dependencies.
22351
22352 Factor the short table outputs.
22353
22354 * src/output.c (output_short_table): New function.
22355 * src/output.c (output_gram, output_stos, output_rule_data)
22356 (output_base, output_table, output_check): Use it.
22357
22358 2000-10-02 Akim Demaille <akim@epita.fr>
22359
22360 * src/output.c (output): Topological sort of the functions, in
22361 order to get rid of the `static' prototypes.
22362 No longer use `register'.
22363 * src/output.h: New file.
22364 Propagate its inclusion in files explicitly prototyping functions
22365 from output.c.
22366
22367 2000-09-21 Akim Demaille <akim@epita.fr>
22368
22369 * src/atgeneral.m4: Update from Autoconf.
22370
22371 2000-09-21 Akim Demaille <akim@epita.fr>
22372
22373 * src/closure.h: New file.
22374 * src/closure.c: Formatting changes, topological sort over the
22375 functions, use of closure.h.
22376 (initialize_closure, finalize_closure): Rename as...
22377 (new_closure, free_closure): these. Adjust dependencies.
22378 * src/LR0.c: Formatting changes, topological sort, use of
22379 cloture.h.
22380 (initialize_states): Rename as...
22381 (new_states): this.
22382 * src/Makefile.am (noinst_HEADERS): Adjust.
22383
22384 2000-09-20 Akim Demaille <akim@epita.fr>
22385
22386 * src/acconfig.h: Don't protect config.h against multiple
22387 inclusion.
22388 Don't define PARAMS.
22389 * src/system.h: Define PARAMS.
22390 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22391 purpose of config.h. system.h must not try to fix wrong
22392 definitions in config.h.
22393
22394 2000-09-20 Akim Demaille <akim@epita.fr>
22395
22396 * src/derives.h: New file.
22397 * src/main.c, src/derives.h: Use it.
22398 Formatting changes.
22399 * src/Makefile.am (noinst_HEADERS): Adjust.
22400
22401 2000-09-20 Akim Demaille <akim@epita.fr>
22402
22403 * tests/atgeneral.m4: Update from Autoconf.
22404 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22405 (AT_CHECK_CALC): New macros.
22406 Use these macros to test bison with options `', `--raw',
22407 `--debug', `--yacc', `--yacc --debug'.
22408
22409 2000-09-19 Akim Demaille <akim@epita.fr>
22410
22411 * src/output.c: Formatting changes.
22412 * src/machine.h: Remove, leaving its contents in...
22413 * src/system.h: here.
22414 Include stdio.h.
22415 Adjust all dependencies on stdio.h and machine.h.
22416 * src/getargs.h: New file.
22417 Let all `extern' declarations about getargs.c be replaced with
22418 inclusion of `getargs.h'.
22419 * src/Makefile.am (noinst_HEADERS): Adjust.
22420
22421 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22422 scope.
22423 (yyerror): Returns void, not int.
22424 * doc/bison.texinfo: Formatting changes.
22425
22426 2000-09-19 Akim Demaille <akim@epita.fr>
22427
22428 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22429 portable.
22430
22431 2000-09-18 Akim Demaille <akim@epita.fr>
22432
22433 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22434 * src/Makefile.am (INCLUDES): Don't.
22435 Be ready to fetch headers in lib/.
22436
22437 2000-09-18 Akim Demaille <akim@epita.fr>
22438
22439 * doc/bison.texinfo: Update the copyright.
22440 ANSIfy and GNUify the examples.
22441 Remove the old menu.
22442
22443 2000-09-18 Akim Demaille <akim@epita.fr>
22444
22445 First set of tests: use the `calc' example from the documentation.
22446
22447 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22448 is defined only when YYDEBUG is.
22449 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22450 * src/files.c (tryopen, tryclose): Formatting changes.
22451 Move to the top and be static.
22452 * src/reader.c (read_signed_integer): Likewise.
22453 * tests/calc.m4: New file.
22454 * Makefile.am, suite.m4: Adjust.
22455 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22456
22457 2000-09-18 Akim Demaille <akim@epita.fr>
22458
22459 Add support for an Autotest test suite for Bison.
22460
22461 * m4/m4.m4, m4/atconfig.m4: New files.
22462 * m4/Makefile.am (EXTRA_DIST): Adjust.
22463 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22464 files.
22465 * src/getargs.c: Display a more standard --version message.
22466 * src/reader.c (reader): Formatting changes.
22467 No longer depend upon VERSION_STRING.
22468 * configure.in: No longer use `dnl'.
22469 Set up the test suite and the new directory `tests/.
22470 (VERSION_STRING): Remove.
22471
22472 2000-04-14 Akim Demaille <akim@epita.fr>
22473
22474 * src/reader.c (copy_comment2): New function, same as former
22475 `copy_comment', but outputs into two FILE *.
22476 (copy_comment): Use it.
22477 (parse_union_decl): Use it.
22478 (get_type, parse_start_decl): Use the same `invalid' message.
22479 (parse_start_decl, parse_union_decl): Use the same `multiple'
22480 message.
22481 (parse_union_decl, copy_guard, copy_action): Use the same
22482 `unmatched' message.
22483 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22484
22485 2000-03-31 Akim Demaille <akim@epita.fr>
22486
22487 * src/files.c (tryopen, tryclose): Move to the top.
22488 Be static.
22489
22490 2000-03-31 Akim Demaille <akim@epita.fr>
22491
22492 * src/main.c (main): Don't call `done', exit does it.
22493
22494 2000-03-31 Akim Demaille <akim@epita.fr>
22495
22496 * allocate.c: s/return (foo)/return foo/.
22497 * lalr.c: Likewise.
22498 * LR0.c: Likewise.
22499 * output.c: Likewise.
22500 * reader.c: Likewise.
22501 * symtab.c: Likewise.
22502 * vmsgetargs.c: Likewise.
22503
22504 2000-03-31 Akim Demaille <akim@epita.fr>
22505
22506 Clean up the error reporting functions.
22507
22508 * src/report.c: New file.
22509 * src/report.h: Likewise.
22510 * src/Makefile.am: Adjust.
22511 * m4/error.m4: New file.
22512 * m4/Makefile.am: Adjust.
22513 * configure.in (jm_PREREQ_ERROR): Call it.
22514 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22515 Remove.
22516 (fatal, fatals): Remove. All callers use complain.c::fatal.
22517 (warn, warni, warns, warnss, warnss): Remove. All callers use
22518 complain.c::complain.
22519 (toomany): Remove, use fatal instead.
22520 * src/files.c (done): No argument, use complain_message_count.
22521 * src/main.c (main): Register `done' to `atexit'.
22522
22523 * src/getargs.c (usage): More `fputs', less `fprintf'.
22524
22525 2000-03-28 Akim Demaille <akim@epita.fr>
22526
22527 * lib/: New directory.
22528 * Makefile.am (SUBDIRS): Adjust.
22529 * configure.in: Adjust.
22530 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22531 useless.
22532 * src/alloca.c: Moved to lib/.
22533 * src/getopt.c: Likewise.
22534 * src/getopt1.c: Likewise.
22535 * src/getopt.h: Likewise.
22536 * src/ansi2knr.c: Likewise.
22537 * src/ansi2knr.1: Likewise.
22538 * src/Makefile.am: Adjust.
22539 * lib/Makefile.am: New file.
22540
22541 2000-03-28 Akim Demaille <akim@epita.fr>
22542
22543 * src/getargs.c (usage): Refresh the help message.
22544
22545 2000-03-17 Akim Demaille <akim@epita.fr>
22546
22547 * src/getopt1.c: Updated from textutils 2.0e
22548 * src/getopt.c: Likewise.
22549 * src/getopt.h: Likewise.
22550
22551 2000-03-17 Akim Demaille <akim@epita.fr>
22552
22553 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22554 the file name, not the whole `#line LINE FILE'.
22555
22556 2000-03-17 Akim Demaille <akim@epita.fr>
22557
22558 On syntax errors, report the token on which we choked.
22559
22560 * src/bison.s1 (yyparse): In the label yyerrlab, when
22561 YYERROR_VERBOSE, add yychar in msg.
22562
22563 2000-03-17 Akim Demaille <akim@epita.fr>
22564
22565 * src/reader.c (copy_at): New function.
22566 (copy_guard): Use it.
22567 (copy_action): Use it.
22568
22569 2000-03-17 Akim Demaille <akim@epita.fr>
22570
22571 Be kind to translators, save some useless translations.
22572
22573 * src/main.c (banner): New function.
22574 (fatal_banner): Use it.
22575 (warn_banner): Use it.
22576
22577 2000-03-17 Akim Demaille <akim@epita.fr>
22578
22579 * src/reader.c (copy_definition): Use copy_string and
22580 copy_comment. Removed now unused `match', `ended',
22581 `cplus_comment'.
22582 (copy_comment, copy_string): Moved, to be visible from
22583 copy_definition.
22584
22585 2000-03-17 Akim Demaille <akim@epita.fr>
22586
22587 * src/reader.c (copy_string): Declare `static inline'. No
22588 problems with inline, since it is checked by configure.
22589 (copy_comment): Likewise.
22590
22591 2000-03-17 Akim Demaille <akim@epita.fr>
22592
22593 * src/reader.c (packsymbols): Formatting changes.
22594
22595 2000-03-17 Akim Demaille <akim@epita.fr>
22596
22597 * src/reader.c (copy_comment): New function, factored out from:
22598 (copy_action): Use it. Removed now unused `match', `ended',
22599 `cplus_comment'.
22600 (copy_guard): Likewise.
22601
22602 2000-03-17 Akim Demaille <akim@epita.fr>
22603
22604 * src/reader.c (copy_string): New function, factored out from:
22605 (copy_action): Use it.
22606 (copy_guard): Likewise.
22607
22608 2000-03-17 Akim Demaille <akim@epita.fr>
22609
22610 Change the handling of @s so that they behave exactly like $s.
22611 There is now a pseudo variable @$ (readble and writable), location
22612 of the lhs of the rule (by default ranging from the location of
22613 the first symbol of the rhs, to the location of the last symbol,
22614 or, if the rhs is empty, YYLLOC).
22615
22616 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22617 yyval.
22618 (yyparse): When providing a default semantic action, provide a
22619 default location action.
22620 (after the $): No longer change `*YYLSP', just stack YYLOC the
22621 same way you stack YYVAL.
22622 * src/reader.c (read_declarations): Use warns.
22623 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22624 (copy_action, case '@'): Likewise.
22625 Use a standard error message, to save useless work from
22626 translators.
22627
22628 2000-03-17 Akim Demaille <akim@epita.fr>
22629
22630 * src/bison.s1: Formatting and cosmetics changes.
22631 * src/reader.c: Likewise.
22632 Update the Copyright notice.
22633
22634 2000-03-17 Akim Demaille <akim@epita.fr>
22635
22636 * src/bison.s1 (#line): All set to `#line' only, since the
22637 Makefile now handles them.
22638
22639 2000-03-16 Akim Demaille <akim@epita.fr>
22640
22641 * src/output.c (output_rule_data): Output the documentation of
22642 some of the tables.
22643 (Copyright notice): Update.
22644 Formatting changes.
22645
22646 2000-03-16 Akim Demaille <akim@epita.fr>
22647
22648 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22649 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22650 One `#if YYDEBUG' remains, since it uses variables which are
22651 defined only if `YYDEBUG != 0'.
22652
22653 2000-03-16 Akim Demaille <akim@epita.fr>
22654
22655 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22656 and related variables so that the similarities are highlighted.
22657
22658 2000-03-16 Akim Demaille <akim@epita.fr>
22659
22660 * src/bison.s1: Properly indent CPP directives.
22661
22662 2000-03-16 Akim Demaille <akim@epita.fr>
22663
22664 * src/bison.s1: Properly indent the `alloca' CPP section.
22665
22666 2000-03-16 Akim Demaille <akim@epita.fr>
22667
22668 Do not hard code values of directories in `configure.in'.
22669 Update the `configure' tool chain.
22670
22671 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22672 src/makefile.am.
22673 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22674 (AC_OUTPUT): Add m4/Makefile.
22675 Bump to bison 1.28a, 1.29 has never been released.
22676 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22677 handled via src/Makefile.am.
22678 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22679 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22680 autoheader.
22681 * Makefile.am (SUBDIRS): Add m4.
22682 (ACLOCAL_AM_FLAGS): New variable.
22683 (AUTOMAKE_OPTIONS): Add check-news.
22684 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22685 the proper line number and file name.
22686 (DEFS): Propagate the location of bison library files and of the
22687 locale files.
22688 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22689 builddir.
22690 * acinclude.m4: Remove, replaced by the directory m4.
22691 * m4/Makefile.am (EXTRA_DIST): New variable.
22692 * m4/gettext.m4: New file, from the fileutils.
22693 * m4/lcmessage.m4: Likewise
22694 * m4/progtest.m4: Likewise.
22695 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22696
22697 2000-03-10 Akim Demaille <akim@epita.fr>
22698
22699 * src/closure.c:
22700 Formatting changes of various comments.
22701 Respect the GNU coding standards at various places.
22702 Don't use `_()' when no translation is needed.
22703
22704 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22705
22706 * src/files.c:
22707 OS/2 honors TMPDIR environment variable.
22708
22709 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22710
22711 * doc/bison.texinfo: Tweaked spelling and grammar.
22712 Updated ISBN.
22713 Removed reference to price of printed copy.
22714 Mention BISON_SIMPLE and BISON_HAIRY.
22715
22716 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22717
22718 * configure.in, NEWS:
22719 Bison 1.29 released.
22720
22721 1999-10-27 Jesse Thilo <jthilo@gnu.org>
22722
22723 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22724 Added reference card.
22725
22726 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22727
22728 * po/ru.po: Added Russian translation.
22729
22730 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22731
22732 * configure.in: Added Russian translation.
22733
22734 1999-07-06 Jesse Thilo <jthilo@gnu.org>
22735
22736 * configure.in, NEWS, README:
22737 Released version 1.28.
22738
22739 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22740
22741 * src/system.h:
22742 Squashed redefinition warning on some systems.
22743
22744 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22745 Have configure build version string instead of relying on ANSI string
22746 concatentation.
22747
22748 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22749
22750 * po/POTFILES.in: Got rid of version.c.
22751
22752 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22753
22754 * acconfig.h, configure.in:
22755 Have configure build version string instead of relying on ANSI string
22756 concatentation.
22757
22758 1999-06-08 Jesse Thilo <jthilo@gnu.org>
22759
22760 * doc/bison.1:
22761 Dropped mention of `+' for long-named options.
22762
22763 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22764
22765 * src/files.c: Added <unistd.h> for unlink().
22766
22767 * src/Makefile.am, src/system.h:
22768 I18n fixes.
22769
22770 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22771
22772 * README: Added a FAQ list.
22773
22774 * configure.in, acconfig.h:
22775 I18n fixes.
22776
22777 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22778
22779 * doc/FAQ, doc/Makefile.am:
22780 Added a FAQ list.
22781
22782 1999-05-19 Jesse Thilo <jthilo@gnu.org>
22783
22784 * src/alloc.h, src/symtab.h, src/version.c:
22785 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22786
22787 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22788
22789 * src/.cvsignore, src/Makefile.am:
22790 Reorganized: sources in `src', documentation in `doc'.
22791
22792 * src/lex.c (literalchar):
22793 fixed the code for escaping double quotes (thanks
22794 Jonathan Czisny.)
22795
22796 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22797
22798 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22799 Adjusted paths to reflect directory reorganization.
22800
22801 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22802
22803 * doc/.cvsignore, doc/Makefile.am:
22804 Reorganized: sources in `src', documentation in `doc'.
22805
22806 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22807
22808 * configure.in:
22809 Updated AC_INIT file to reflect directory reorganization.
22810
22811 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22812 Reorganized: sources in `src', documentation in `doc'.
22813
22814 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22815
22816 * src/allocate.c:
22817 Don't declare calloc() and realloc() if not necessary.
22818
22819 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22820
22821 * configure.in, acconfig.h, acinclude.m4:
22822 Don't declare calloc() and realloc() if not necessary.
22823
22824 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22825
22826 * po/.cvsignore: Added i18n support.
22827
22828 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22829
22830 * acconfig.h, configure.in, Makefile.am:
22831 Added i18n support.
22832
22833 1999-03-22 Jesse Thilo <jthilo@gnu.org>
22834
22835 * src/bison.s1: Fixed #line numbers.
22836
22837 1999-03-15 Jesse Thilo <jthilo@gnu.org>
22838
22839 * po/es.po, po/fr.po, po/nl.po, po/de.po:
22840 Added PO files from Translation Project.
22841
22842 1999-03-03 Jesse Thilo <jthilo@gnu.org>
22843
22844 * Makefile.am:
22845 Added support for non-ANSI compilers (ansi2knr).
22846
22847 1999-02-16 Jesse Thilo <jthilo@gnu.org>
22848
22849 * configure.in: Bumped version number to 1.27.
22850
22851 * Makefile.am:
22852 Added `bison.simple' to list of files removed by `make distclean'.
22853
22854 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22855
22856 * src/files.c, src/files.h:
22857 Defined locations of parser files in config.h instead of Makefile.
22858
22859 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22860
22861 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
22862 Defined locations of parser files in config.h instead of Makefile.
22863
22864 1999-02-09 Jesse Thilo <jthilo@gnu.org>
22865
22866 * Makefile.am:
22867 Removed inappropriate use of $< macro.
22868
22869 1999-02-05 Jesse Thilo <jthilo@gnu.org>
22870
22871 * po/Makefile.in.in, po/POTFILES.in:
22872 Add `po' directory skeleton.
22873
22874 1999-01-27 Jesse Thilo <jthilo@gnu.org>
22875
22876 * README: Document help-bison list.
22877
22878 * configure.in: Add check for mkstemp().
22879
22880 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22881
22882 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
22883 Hush a few compiler warnings.
22884
22885 * src/files.c:
22886 Add tryclose(), which verifies that fclose was successful.
22887 Hush a couple of compiler warnings.
22888
22889 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22890
22891 * Makefile.am, OChangeLog:
22892 ChangeLog is now automatically generated. Include the old version as
22893 OChangeLog.
22894
22895 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22896
22897 * 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:
22898 Update FSF address.
22899
22900 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22901
22902 * doc/bison.texinfo: Fix formatting glitch.
22903
22904 * doc/bison.texinfo: Update FSF address.
22905
22906 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22907
22908 * acconfig.h: Update FSF address.
22909
22910 1999-01-08 Jesse Thilo <jthilo@gnu.org>
22911
22912 * src/system.h:
22913 Don't define PACKAGE here, since config.h defines it.
22914
22915 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22916
22917 * src/reader.c: Update copyright date.
22918
22919 * src/main.c:
22920 Ditch sprintf to statically-sized buffers in fatal/warn functions in
22921 favor of output directly to stderr (avoids buffer overruns).
22922
22923 * src/reader.c: Some checks for premature EOF.
22924
22925 * 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:
22926 Use prototypes if the compiler understands them.
22927
22928 * src/files.c: Honor TMPDIR on Unix hosts.
22929 Use prototypes if the compiler understands them.
22930
22931 * src/reader.c:
22932 Fix a couple of buffer overrun bugs.
22933 Use prototypes if the compiler understands them.
22934
22935 * src/system.h: Include unistd.h and ctype.h.
22936 Use #ifdef instead of #if for NLS symbols.
22937
22938 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22939
22940 * doc/bison.texinfo:
22941 Delete comment "consider using @set for edition number, etc..." since
22942 we now are doing so.
22943
22944 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22945
22946 * configure.in:
22947 Use prototypes if the compiler understands them.
22948
22949 * NEWS: Document 1.26 highlights.
22950
22951 * Makefile.am: Require Automake 1.3 or later.
22952
22953 * acconfig.h:
22954 Use prototypes if the compiler understands them.
22955
22956 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22957
22958 * src/version.c:
22959 Use VERSION symbol from automake for version number.
22960
22961 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22962
22963 * acconfig.h, configure.in, version.cin:
22964 Use VERSION symbol from automake for version number.
22965
22966 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22967
22968 * Makefile.am:
22969 Distribute original version of simple parser (bison.s1), not built
22970 version (bison.simple).
22971
22972 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22973
22974 * doc/bison.texinfo: Add info dir entry.
22975
22976 * doc/bison.texinfo:
22977 Let automake put version number into documentation.
22978
22979 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22980
22981 * src/bison.cld, src/build.com, src/vmshlp.mar:
22982 Add non-RCS files from /gd/gnu/bison.
22983
22984 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22985
22986 * doc/bison.1:
22987 Document the BISON_HAIRY and BISON_SIMPLE variables.
22988
22989 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22990
22991 * src/version.c: Build version.c automatically.
22992
22993 * src/reader.c:
22994 Fix token numbering (used to start at 258, not 257).
22995
22996 * src/system.h: Include config.h.
22997
22998 * src/getargs.c: Update bug report address.
22999
23000 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23001 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23002
23003 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23004
23005 * Makefile.am:
23006 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23007
23008 * configure.in, version.cin:
23009 Build version.c automatically.
23010
23011 * AUTHORS: Add AUTHORS file.
23012
23013 * README: Update bug report address.
23014
23015 * bison.simple:
23016 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23017
23018 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23019 Add automake stuff.
23020
23021 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23022
23023 * doc/bison.texinfo: Clean up some formatting.
23024
23025 1998-05-05 Richard Stallman <rms@gnu.org>
23026
23027 * doc/bison.texinfo:
23028 Explain better why to make a pure parser.
23029
23030 1998-01-05 Richard Stallman <rms@gnu.org>
23031
23032 * src/files.c (openfiles):
23033 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23034 find a temporary directory, if possible. Do not unlink files while
23035 they are open.
23036
23037 1997-08-25 Richard Stallman <rms@gnu.org>
23038
23039 * src/reader.c (stack_offset;):
23040 Change some warni to warns.
23041
23042 * src/lex.c (literalchar): Use warns, not warni.
23043
23044 1997-06-28 Richard Stallman <rms@gnu.org>
23045
23046 * src/bison.s1: Add a Bison version comment.
23047
23048 * src/main.c (fatal, warn, berror):
23049 Use program_name.
23050
23051 1997-06-28 Richard Stallman <rms@gnu.org>
23052
23053 * Makefile.in (bison_version): New variable.
23054 (dist): Use that variable.
23055 (bison.s1): Substitute the Bison version into bison.simple.
23056
23057 * bison.simple: Add a Bison version comment.
23058
23059 1997-06-18 Richard Stallman <rms@gnu.org>
23060
23061 * src/main.c (fatal, warn, berror):
23062 Make error messages standard.
23063 (toomany): Improve error message text.
23064
23065 * 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:
23066 new.h renamed to alloc.h.
23067
23068 1997-06-18 Richard Stallman <rms@gnu.org>
23069
23070 * Makefile.in: new.h renamed to alloc.h.
23071
23072 1997-05-24 Richard Stallman <rms@gnu.org>
23073
23074 * src/lex.c (literalchar):
23075 Fix the code for escaping \, " and '.
23076
23077 (lex): Avoid trouble when there are many chars
23078 to discard in a char literal with just several chars in it.
23079
23080 1997-05-17 Richard Stallman <rms@gnu.org>
23081
23082 * src/bison.s1:
23083 Use malloc, if using alloca is troublesome.
23084 (YYSTACK_USE_ALLOCA): New flag macro.
23085 Define it for some systems and compilers.
23086 (YYSTACK_ALLOC): New macro.
23087 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23088 If it was malloc'd, free it.
23089
23090 1997-05-17 Richard Stallman <rms@gnu.org>
23091
23092 * bison.simple:
23093 Use malloc, if using alloca is troublesome.
23094 (YYSTACK_USE_ALLOCA): New flag macro.
23095 Define it for some systems and compilers.
23096 (YYSTACK_ALLOC): New macro.
23097 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23098 If it was malloc'd, free it.
23099
23100 1997-04-23 Richard Stallman <rms@gnu.org>
23101
23102 * src/bison.s1:
23103 (alloca) [__hpux]: Always define as __builtin_alloca.
23104
23105 1997-04-23 Richard Stallman <rms@gnu.org>
23106
23107 * bison.simple:
23108 (alloca) [__hpux]: Always define as __builtin_alloca.
23109
23110 1997-04-22 Richard Stallman <rms@gnu.org>
23111
23112 * src/bison.s1:
23113 [__hpux]: Include alloca.h (right for HPUX 10)
23114 instead of declaring alloca (right for HPUX 9).
23115
23116 * src/bison.s1 (__yy_memcpy):
23117 Declare arg `count' as unsigned int.
23118 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23119
23120 1997-04-22 Richard Stallman <rms@gnu.org>
23121
23122 * bison.simple:
23123 [__hpux]: Include alloca.h (right for HPUX 10)
23124 instead of declaring alloca (right for HPUX 9).
23125
23126 * bison.simple (__yy_memcpy):
23127 Declare arg `count' as unsigned int.
23128 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23129
23130 1997-01-03 Richard Stallman <rms@gnu.org>
23131
23132 * src/allocate.c: [__STDC__ or _MSC_VER]:
23133 Declare calloc and realloc to return void *.
23134
23135 1997-01-02 Richard Stallman <rms@gnu.org>
23136
23137 * src/system.h:
23138 [_MSC_VER]: Include stdlib.h and process.h.
23139 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23140
23141 * src/main.c (main): Return FAILURE as a value.
23142 (printable_version): Declare arg as int, not char.
23143
23144 1997-01-02 Richard Stallman <rms@gnu.org>
23145
23146 * Makefile.in (dist):
23147 Explicitly check for symlinks, and copy them.
23148
23149 1996-12-19 Richard Stallman <rms@gnu.org>
23150
23151 * src/files.c:
23152 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23153
23154 1996-12-18 Paul Eggert <eggert@gnu.org>
23155
23156 * src/bison.s1 (yyparse):
23157 If __GNUC__ and YYPARSE_PARAM are both defined,
23158 declare yyparse to have a void * argument.
23159
23160 1996-12-18 Paul Eggert <eggert@gnu.org>
23161
23162 * bison.simple (yyparse):
23163 If __GNUC__ and YYPARSE_PARAM are both defined,
23164 declare yyparse to have a void * argument.
23165
23166 1996-12-17 Richard Stallman <rms@gnu.org>
23167
23168 * src/reduce.c (nbits): Add some casts.
23169
23170 1996-08-12 Richard Stallman <rms@gnu.org>
23171
23172 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23173
23174 1996-08-12 Richard Stallman <rms@gnu.org>
23175
23176 * bison.simple: Test _MSDOS as well as _MSDOS_.
23177
23178 1996-07-31 Richard Stallman <rms@gnu.org>
23179
23180 * src/bison.s1:
23181 [__sun && __i386]: Include alloca.h.
23182
23183 1996-07-31 Richard Stallman <rms@gnu.org>
23184
23185 * bison.simple:
23186 [__sun && __i386]: Include alloca.h.
23187
23188 1996-07-30 Richard Stallman <rms@gnu.org>
23189
23190 * src/bison.s1: Comment change.
23191
23192 * src/bison.s1: Test _MSDOS_, not MSDOS.
23193
23194 1996-07-30 Richard Stallman <rms@gnu.org>
23195
23196 * bison.simple: Comment change.
23197
23198 * bison.simple: Test _MSDOS_, not MSDOS.
23199
23200 1996-06-01 Richard Stallman <rms@gnu.org>
23201
23202 * 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:
23203 Insert `_' macro around many string constants.
23204
23205 * src/main.c:
23206 Insert `_' macro around many string constants.
23207
23208 (main): Call setlocale, bindtextdomain and textdomain.
23209
23210 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23211 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23212 [ENABLE_NLS]: Include libintl.h.
23213 [ENABLE_NLS] (gettext): Define.
23214 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23215 (N_, PACKAGE, LOCALEDIR): New macros.
23216
23217 1996-06-01 Richard Stallman <rms@gnu.org>
23218
23219 * POTFILES.in: New file.
23220
23221 * Makefile.in (allocate.o):
23222 Define target explicitly.
23223
23224 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23225 (LDFLAGS): Set to @LDFLAGS@.
23226 (configure): Run autoconf only if preceding `cd' succeeds.
23227 (bison.s1): Redirect output to temporary file then move the
23228 temporary to the target, rather than redirecting directly to bison.s1.
23229 (clean): Remove config.status and config.log.
23230 (distclean): Don't remove config.status here.
23231
23232 1996-05-12 Richard Stallman <rms@gnu.org>
23233
23234 * src/bison.s1:
23235 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23236
23237 1996-05-12 Richard Stallman <rms@gnu.org>
23238
23239 * bison.simple:
23240 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23241
23242 1996-05-11 Richard Stallman <rms@gnu.org>
23243
23244 * src/bison.s1 (__yy_memcpy):
23245 Really reorder the args, as was supposedly done on Feb 14 1995.
23246 (yyparse): Calls changed accordingly.
23247
23248 1996-05-11 Richard Stallman <rms@gnu.org>
23249
23250 * Makefile.in (dist): Don't use $(srcdir).
23251
23252 * bison.simple (__yy_memcpy):
23253 Really reorder the args, as was supposedly done on Feb 14 1995.
23254 (yyparse): Calls changed accordingly.
23255
23256 1996-01-27 Richard Stallman <rms@gnu.org>
23257
23258 * src/output.c (output_rule_data):
23259 Test YYERROR_VERBOSE in the conditional
23260 around the definition of ttyname.
23261
23262 1995-12-29 Richard Stallman <rms@gnu.org>
23263
23264 * src/bison.s1:
23265 Fix line numbers in #line commands.
23266
23267 1995-12-29 Richard Stallman <rms@gnu.org>
23268
23269 * bison.simple:
23270 Fix line numbers in #line commands.
23271
23272 1995-12-27 Richard Stallman <rms@gnu.org>
23273
23274 * src/bison.s1 (YYPARSE_PARAM_DECL):
23275 In C++, make it always null.
23276 (YYPARSE_PARAM_ARG): New macro.
23277 (yyparse): Use YYPARSE_PARAM_ARG.
23278
23279 1995-12-27 Richard Stallman <rms@gnu.org>
23280
23281 * bison.simple (YYPARSE_PARAM_DECL):
23282 In C++, make it always null.
23283 (YYPARSE_PARAM_ARG): New macro.
23284 (yyparse): Use YYPARSE_PARAM_ARG.
23285
23286 1995-11-29 Richard Stallman <rms@gnu.org>
23287
23288 * doc/bison.texinfo:
23289 Describe literal string tokens, %raw, %no_lines, %token_table.
23290
23291 1995-11-29 Daniel Hagerty <hag@gnu.org>
23292
23293 * doc/bison.texinfo: Fixed update date
23294
23295 1995-10-16 Richard Stallman <rms@gnu.org>
23296
23297 * src/version.c: Version 1.25.
23298
23299 1995-10-16 Richard Stallman <rms@gnu.org>
23300
23301 * NEWS: *** empty log message ***
23302
23303 1995-10-16 Richard Stallman <rms@gnu.org>
23304
23305 * doc/bison.1, doc/bison.rnh:
23306 Add new options.
23307
23308 1995-10-15 Richard Stallman <rms@gnu.org>
23309
23310 * src/vmsgetargs.c, src/getargs.c:
23311 Added -n, -k, and -raw switches.
23312 (noparserflag, toknumflag, rawtoknumflag): New variables.
23313
23314 * src/symtab.h (SALIAS):
23315 New #define for adding aliases to %token.
23316 (struct bucket): Added `alias' field.
23317
23318 * src/reduce.c (reduce_grammar):
23319 Revise error message.
23320 (print_notices): Remove final `.' from error message.
23321
23322 * src/reader.c (reader_output_yylsp):
23323 New function.
23324 (readgram): Use `#if 0' around code that accepted %command
23325 inside grammar rules: The documentation doesn't allow it,
23326 and it will fail since the %command processors scan for the next %.
23327 (parse_token_decl): Extended the %token
23328 declaration to allow a multi-character symbol as an alias.
23329 (parse_thong_decl): New function.
23330 (read_declarations): Added %thong declarations.
23331 (read_declarations): Handle NOOP to deal with allowing
23332 % declarations as another means to specify the flags.
23333 (readgram): Allow %prec prior to semantics embedded in a rule.
23334 (skip_to_char, read_declarations, copy_definition)
23335 (parse_token_decl, parse_start_decl, parse_type_decl)
23336 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23337 (get_type_name, copy_guard, copy_action, readgram)
23338 (get_type, packsymbols): Revised most error messages.
23339 Changed `fatal' to `warnxxx' to avoid aborting for error.
23340 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23341 (read_declarations): Improve the error message for
23342 an invalid character. Do not abort.
23343 (read_declarations, copy_guard, copy_action): Use
23344 printable_version to avoid unprintable characters in printed output.
23345 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23346 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23347 Allow the type of a non-terminal can be given
23348 more than once, as long as all specifications give the same type.
23349
23350 * src/output.c:
23351 (output_headers, output_trailers, output, output_gram)
23352 (output_rule_data): Implement noparserflag variable.
23353 Implement toknumflag variable.
23354 (output): Call reader_output_yylsp to output LTYPESTR.
23355
23356 * src/main.c (main):
23357 If reader sees an error, don't process the grammar.
23358 (fatals): Updated to not use VARARGS1.
23359 (printable_version, int_to_string, warn, warni, warns, warnss)
23360 (warnsss): New error reporting functions. Avoid abort for error.
23361
23362 * src/lex.h:
23363 Added THONG and NOOP for alias processing.
23364 Added SETOPT for the new code that allows setting options with %flags.
23365
23366 * src/lex.c:
23367 Include getopt.h. Add some extern decls.
23368 (safegetc): New function to deal with EOF gracefully.
23369 (literalchar); new function to deal with reading \ escapes.
23370 (lex): Use literalchar.
23371 (lex): Implemented "..." tokens.
23372 (literalchar, lex, parse_percent_token): Made tokenbuffer
23373 always contain the token. This includes growing the token
23374 buffer while reading an integer.
23375 (parse_percent_token): Replaced if-else statement with percent_table.
23376 (parse_percent_token): Added % declarations as another
23377 way to specify the flags -n, -l, and -r. Also added hooks for
23378 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23379 major changes to files.c.
23380 (lex) Retain in the incoming stream a character following
23381 an incorrect '/'.
23382 (skip_white_space, lex): Revised most error messages
23383 and changed fatal to warn to avoid aborting.
23384 (percent_table): Added %thong declarations.
23385
23386 * src/gram.h: Comment changes.
23387
23388 * src/files.c (openfiles, open_extra_files, done):
23389 Add faction flag
23390 and actfile file. Handle noparserflag. Both for -n switch.
23391
23392 * src/conflicts.c (resolve_sr_conflict):
23393 Remove use of alloca.
23394
23395 1995-06-01 Jim Meyering <meyering@gnu.org>
23396
23397 * doc/bison.texinfo: *** empty log message ***
23398
23399 1995-05-06 Richard Stallman <rms@gnu.org>
23400
23401 * src/bison.s1: Comment change.
23402
23403 1995-05-06 Richard Stallman <rms@gnu.org>
23404
23405 * bison.simple: Comment change.
23406
23407 1995-05-03 Richard Stallman <rms@gnu.org>
23408
23409 * src/version.c: Version now 1.24.
23410
23411 * src/bison.s1: Change distribution terms.
23412
23413 * src/version.c: Version now 1.23.
23414
23415 1995-05-03 Richard Stallman <rms@gnu.org>
23416
23417 * doc/bison.texinfo:
23418 Rewrite "Conditions for Using Bison".
23419 Update version to 1.24.
23420
23421 1995-05-03 Richard Stallman <rms@gnu.org>
23422
23423 * bison.simple: Change distribution terms.
23424
23425 1995-02-23 Richard Stallman <rms@gnu.org>
23426
23427 * src/files.c: Test __VMS_POSIX as well as VMS.
23428
23429 1995-02-14 Jim Meyering <meyering@gnu.org>
23430
23431 * src/bison.s1 (__yy_memcpy):
23432 Renamed from __yy_bcopy to avoid
23433 confusion. Reverse FROM and TO arguments to be consistent with
23434 those of memcpy.
23435
23436 1995-02-14 Jim Meyering <meyering@gnu.org>
23437
23438 * bison.simple (__yy_memcpy):
23439 Renamed from __yy_bcopy to avoid
23440 confusion. Reverse FROM and TO arguments to be consistent with
23441 those of memcpy.
23442
23443 1994-11-10 David J. MacKenzie <djm@gnu.org>
23444
23445 * NEWS: reformat
23446
23447 * NEWS: New file.
23448
23449 * Makefile.in (DISTFILES): Include NEWS.
23450
23451 * Makefile.in (DISTFILES):
23452 Include install-sh, not install.sh.
23453
23454 * configure.in: Update to Autoconf v2 macro names.
23455
23456 1994-10-05 David J. MacKenzie <djm@gnu.org>
23457
23458 * Makefile.in: fix typo
23459
23460 * Makefile.in (prefix, exec_prefix):
23461 Let configure set them.
23462
23463 1994-09-28 David J. MacKenzie <djm@gnu.org>
23464
23465 * Makefile.in: Set datadir to $(prefix)/share.
23466
23467 1994-09-15 Richard Stallman <rms@gnu.org>
23468
23469 * src/bison.s1:
23470 Update copyright notice and GPL version.
23471
23472 1994-09-15 Richard Stallman <rms@gnu.org>
23473
23474 * bison.simple:
23475 Update copyright notice and GPL version.
23476
23477 1994-07-12 Richard Stallman <rms@gnu.org>
23478
23479 * src/reduce.c, src/reader.c:
23480 entered into RCS
23481
23482 1994-05-05 David J. MacKenzie <djm@gnu.org>
23483
23484 * Makefile.in: entered into RCS
23485
23486 1994-03-26 Richard Stallman <rms@gnu.org>
23487
23488 * src/bison.s1: entered into RCS
23489
23490 1994-03-26 Richard Stallman <rms@gnu.org>
23491
23492 * bison.simple: entered into RCS
23493
23494 1994-03-25 Richard Stallman <rms@gnu.org>
23495
23496 * src/main.c: entered into RCS
23497
23498 1994-03-24 Richard Stallman <rms@gnu.org>
23499
23500 * src/conflicts.c: entered into RCS
23501
23502 1994-01-02 Richard Stallman <rms@gnu.org>
23503
23504 * Makefile.in: *** empty log message ***
23505
23506 1993-11-21 Richard Stallman <rms@gnu.org>
23507
23508 * src/bison.s1: *** empty log message ***
23509
23510 1993-11-21 Richard Stallman <rms@gnu.org>
23511
23512 * doc/bison.texinfo: entered into RCS
23513
23514 * doc/bison.texinfo: *** empty log message ***
23515
23516 1993-11-21 Richard Stallman <rms@gnu.org>
23517
23518 * bison.simple: *** empty log message ***
23519
23520 1993-10-25 David J. MacKenzie <djm@gnu.org>
23521
23522 * doc/bison.texinfo: *** empty log message ***
23523
23524 1993-10-19 Richard Stallman <rms@gnu.org>
23525
23526 * src/bison.s1: *** empty log message ***
23527
23528 1993-10-19 Richard Stallman <rms@gnu.org>
23529
23530 * bison.simple: *** empty log message ***
23531
23532 1993-10-14 Richard Stallman <rms@gnu.org>
23533
23534 * src/bison.s1: *** empty log message ***
23535
23536 1993-10-14 Richard Stallman <rms@gnu.org>
23537
23538 * bison.simple: *** empty log message ***
23539
23540 1993-09-14 David J. MacKenzie <djm@gnu.org>
23541
23542 * doc/bison.texinfo: *** empty log message ***
23543
23544 1993-09-13 Noah Friedman <friedman@gnu.org>
23545
23546 * Makefile.in: *** empty log message ***
23547
23548 1993-09-10 Richard Stallman <rms@gnu.org>
23549
23550 * src/conflicts.c: *** empty log message ***
23551
23552 * src/system.h: entered into RCS
23553
23554 1993-09-10 Richard Stallman <rms@gnu.org>
23555
23556 * doc/bison.1: entered into RCS
23557
23558 1993-09-06 Noah Friedman <friedman@gnu.org>
23559
23560 * src/version.c: entered into RCS
23561
23562 1993-09-06 Noah Friedman <friedman@gnu.org>
23563
23564 * Makefile.in: *** empty log message ***
23565
23566 1993-07-30 David J. MacKenzie <djm@gnu.org>
23567
23568 * Makefile.in: *** empty log message ***
23569
23570 1993-07-24 Richard Stallman <rms@gnu.org>
23571
23572 * src/bison.s1: *** empty log message ***
23573
23574 1993-07-24 Richard Stallman <rms@gnu.org>
23575
23576 * bison.simple: *** empty log message ***
23577
23578 1993-07-08 David J. MacKenzie <djm@gnu.org>
23579
23580 * Makefile.in: *** empty log message ***
23581
23582 1993-07-04 Richard Stallman <rms@gnu.org>
23583
23584 * src/bison.s1: *** empty log message ***
23585
23586 1993-07-04 Richard Stallman <rms@gnu.org>
23587
23588 * bison.simple: *** empty log message ***
23589
23590 1993-06-26 David J. MacKenzie <djm@gnu.org>
23591
23592 * src/getargs.c: entered into RCS
23593
23594 1993-06-26 David J. MacKenzie <djm@gnu.org>
23595
23596 * doc/bison.texinfo: *** empty log message ***
23597
23598 * doc/bison.1: New file.
23599
23600 1993-06-25 Richard Stallman <rms@gnu.org>
23601
23602 * src/getargs.c: New file.
23603
23604 1993-06-16 Richard Stallman <rms@gnu.org>
23605
23606 * src/bison.s1: *** empty log message ***
23607
23608 1993-06-16 Richard Stallman <rms@gnu.org>
23609
23610 * bison.simple: *** empty log message ***
23611
23612 1993-06-03 Richard Stallman <rms@gnu.org>
23613
23614 * src/bison.s1: New file.
23615
23616 1993-06-03 Richard Stallman <rms@gnu.org>
23617
23618 * doc/bison.texinfo: *** empty log message ***
23619
23620 1993-06-03 Richard Stallman <rms@gnu.org>
23621
23622 * bison.simple: New file.
23623
23624 1993-05-19 Richard Stallman <rms@gnu.org>
23625
23626 * doc/bison.texinfo: New file.
23627
23628 1993-05-07 Noah Friedman <friedman@gnu.org>
23629
23630 * Makefile.in: *** empty log message ***
23631
23632 1993-04-28 Noah Friedman <friedman@gnu.org>
23633
23634 * src/reader.c: *** empty log message ***
23635
23636 1993-04-23 Noah Friedman <friedman@gnu.org>
23637
23638 * src/alloc.h: entered into RCS
23639
23640 1993-04-20 David J. MacKenzie <djm@gnu.org>
23641
23642 * src/version.c: *** empty log message ***
23643
23644 * src/files.c, src/allocate.c:
23645 entered into RCS
23646
23647 * src/reader.c: *** empty log message ***
23648
23649 * src/lex.c: entered into RCS
23650
23651 * src/conflicts.c: New file.
23652
23653 * src/symtab.c: entered into RCS
23654
23655 * src/alloc.h: New file.
23656
23657 * src/LR0.c: entered into RCS
23658
23659 1993-04-18 Noah Friedman <friedman@gnu.org>
23660
23661 * src/reader.c: New file.
23662
23663 * src/version.c: *** empty log message ***
23664
23665 1993-04-18 Noah Friedman <friedman@gnu.org>
23666
23667 * Makefile.in: *** empty log message ***
23668
23669 1993-04-17 Noah Friedman <friedman@gnu.org>
23670
23671 * Makefile.in: *** empty log message ***
23672
23673 1993-04-15 Richard Stallman <rms@gnu.org>
23674
23675 * src/main.c, src/files.c:
23676 New file.
23677
23678 1993-04-15 Noah Friedman <friedman@gnu.org>
23679
23680 * configure.in: entered into RCS
23681
23682 * configure.in: *** empty log message ***
23683
23684 * configure.in: New file.
23685
23686 1993-04-14 Richard Stallman <rms@gnu.org>
23687
23688 * Makefile.in: New file.
23689
23690 1993-04-13 Richard Stallman <rms@gnu.org>
23691
23692 * src/version.c: New file.
23693
23694 1993-03-25 Richard Stallman <rms@gnu.org>
23695
23696 * src/output.c: entered into RCS
23697
23698 1992-09-25 Richard Stallman <rms@gnu.org>
23699
23700 * configure.bat: entered into RCS
23701
23702 1992-06-22 Richard Stallman <rms@gnu.org>
23703
23704 * src/vmsgetargs.c: entered into RCS
23705
23706 1992-06-22 Richard Stallman <rms@gnu.org>
23707
23708 * doc/bison.rnh: entered into RCS
23709
23710 1992-04-20 David J. MacKenzie <djm@gnu.org>
23711
23712 * README: entered into RCS
23713
23714 1992-01-22 Richard Stallman <rms@gnu.org>
23715
23716 * src/machine.h: entered into RCS
23717
23718 1991-12-21 Richard Stallman <rms@gnu.org>
23719
23720 * src/lalr.c, src/closure.c:
23721 entered into RCS
23722
23723 1991-12-20 Richard Stallman <rms@gnu.org>
23724
23725 * src/state.h: entered into RCS
23726
23727 1991-12-18 Richard Stallman <rms@gnu.org>
23728
23729 * src/print.c, src/nullable.c, src/derives.c:
23730 entered into RCS
23731
23732 1991-11-03 David J. MacKenzie <djm@gnu.org>
23733
23734 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23735 entered into RCS
23736
23737 1988-09-09 Richard Stallman <rms@gnu.org>
23738
23739 * src/bison.hairy: entered into RCS
23740
23741 1987-12-16 Richard Stallman <rms@gnu.org>
23742
23743 * REFERENCES: entered into RCS
23744
23745
23746 -----
23747
23748 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
23749 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
23750 2008, 2009 Free Software Foundation, Inc.
23751
23752 Copying and distribution of this file, with or without
23753 modification, are permitted provided the copyright notice and this
23754 notice are preserved.