]> git.saurik.com Git - bison.git/blame - ChangeLog
Convert "misleading reference" messages to warnings.
[bison.git] / ChangeLog
CommitLineData
ce268795
AR
12009-08-08 Alex Rozenman <rozenman@gmail.com>
2
3 Convert "misleading reference" messages to warnings.
4 * src/scan-code.l: New function 'show_sub_messages', more
5 factoring.
6 * tests/named-ref.at: Adjust tests.
7
401b73af
JD
82009-08-06 Joel E. Denny <jdenny@clemson.edu>
9
10 maint: run "make update-copyright"
11
a1a9422d
JD
122009-08-06 Joel E. Denny <jdenny@clemson.edu>
13
14 maint: make update-b4-copyright easier to use
15 * build-aux/update-b4-copyright: In warnings, report line
16 numbers rather than character positions.
17 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
18 that update-copyright runs it.
19 * gnulib: Update.
20
0b61a8ec
JD
212009-08-05 Joel E. Denny <jdenny@clemson.edu>
22
23 maint: clean up update-b4-copyright code
24 * build-aux/update-b4-copyright: Do not accept 2-digit
25 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
26 Don't accept a `[' in a b4_copyright argument.
27 Format code more consistently.
28 Don't assume b4*copyright never occurs.
29
269e222e
JD
302009-08-04 Joel E. Denny <jdenny@clemson.edu>
31
32 maint: automate b4_copyright updates.
33 * Makefile.am (update-b4-copyright): New target rule.
34 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
35 * build-aux/update-b4-copyright: New.
36 * data/yacc.c: Remove stray characters around b4_copyright
37 invocations.
38
35905f2b
JD
392009-08-04 Joel E. Denny <jdenny@clemson.edu>
40
41 maint: automate annual package-wide copyright-year update.
42 * .x-update-copyright: New.
43 * Makefile.am (EXTRA_DIST): Remove maint.mk.
44 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
45 update-copyright. Remove gnumakefile, which is implied by
46 maintainer-makefile.
47 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
48 * gnulib: Update.
49 * maint.mk: Remove, now copied from gnulib.
50 * examples/extexi: Add missing "(C)" in copyright statement so
51 update-copyright can recognize it.
52 * src/LR0.h: Likewise.
53 * src/print.h: Likewise.
54 * src/print_graph.h: Likewise.
55 * src/gram.c: Add missing comma in copyright statement.
56 * src/gram.h: Likewise.
57
b30e18dc
JD
582009-08-04 Joel E. Denny <jdenny@clemson.edu>
59
60 Fix "make distcheck".
61 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
62 of just calc.stamp.
63
8d90395d
JD
642009-08-01 Joel E. Denny <jdenny@clemson.edu>
65
66 Pacify "gcc -Wunused" for the input function from Flex.
67 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
68 and later.
69 * src/scan-code.l: Add "%option noinput", which I cannot find in
70 the Flex manual, but which Flex has supported since at least as
71 far back as 2.5.4. However, if any of our developers still use
72 Flex 2.5.4, they'll need to stop configuring with
73 --enable-gcc-warnings because "%option noinput" didn't work
74 correctly until Flex 2.5.6.
75 * src/scan-gram.l: Likewise.
76 * src/scan-skel.l: Likewise.
77
ba4184ec
AR
782009-07-31 Alex Rozenman <rozenman@gmail.com>
79
80 Fix --enable-gcc-warnings problems.
81 * src/reader.c: Adjust variable names.
82 * src/scan-code.l: Fix prototypes and adjust names.
83 * src/named-ref.c: Remove redundant "if".
84
91a2af97
JD
852009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
86
87 Fix a --enable-gcc-warnings problem.
88 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
89 variable.
90
3208e3f4
JD
912009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
92
93 Warn about character literals not of length one.
94 * NEWS (2.5): Document.
95 * src/scan-gram.l (INITIAL): Remove comment that we don't check
96 the length.
97 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
98 * tests/input.at (Bad character literals): New test group.
99
5add20ab 1002009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
101
102 Fix some memory leaks.
103 * src/named-ref.c: Add a pointer check (named_ref_free).
104 * src/scan-code.l: New function (variant_table_free). Called in
105 code_scanner_free.
106 * src/symlist.c: Call to named_ref_free (symbol_list_free).
107
e459fb0e
JD
1082009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
109
110 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
111
c4be5517
JD
1122009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
113
114 Some M4 cleanup in the testsuite.
115 Suggested by Eric Blake at
116 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
117 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
118 complicate the code by distinguishing between a missing value
119 and an empty string value for an optional argument. This fix is
120 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
121 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
122 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
123 arguments are not needed because of the following changes.
124 Fix stale comments.
125 Bison developers should use GNU M4 and should not use
126 POSIXLY_CORRECT when building the test suite, so do not
127 complicate the code by avoiding $10 and above.
128 Do not quote an empty string value for an optional argument, and
129 do not distinguish between a missing value and an empty string
130 value.
131
feeb56cd
JD
1322009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
133
134 Revert unnecessary column realignment in --help output.
135 Reported by Akim Demaille at
136 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
137 * src/getargs.c (usage): Here.
138
5add20ab 1392009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
140
141 Alphabetical order in src/local.mk.
142 * src/local.mk: Adjust.
143
5add20ab 1442009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
145
146 Style changes and factoring.
147 * src/named-ref.h: Add comments.
148 * src/parse-gram.y: Readability and style changes.
149 * src/reader.c: Factoring: assign_named_ref function.
150 * src/scan-code.l: Factoring and style changes. Rename
151 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
152 Use "unsigned" type for variant index. Improve readablity.
153 * src/scan-gram.l: Change error messages and add comments.
154 * src/symlist.h: symbol_list_null: New function decl.
155 * src/symlist.c: symbol_list_null: Implement here.
156 * tests/named-refs.at: Adjust for new error messages.
157
83ea2423
EB
1582009-06-29 Eric Blake <ebb9@byu.net>
159
160 scan-code: avoid compiler warnings
161 * src/scan-code.l (parse_named_ref): Use correct specifiers.
162
5ece73ea
AD
1632009-06-29 Akim Demaille <demaille@gostai.com>
164
165 build: avoid concurrent extraction of calc++.
166 * examples/calc++/Makefile.am (calc.stamp): New.
167 Depend on it to create the sources of calc++ so that concurrent
168 builds don't launch several "extexi" in parallel.
169 Not only this is inefficient, this also builds incorrect sources
170 with several extractions mixed together.
171
ad597a78
AD
1722009-06-29 Akim Demaille <demaille@gostai.com>
173
174 parse.error: fix.
175 * data/bison.m4: Move code related to specific variables after the
176 definition of the variable-maintaining macros so that we don't
177 "invoke" b4_percent_define_check_values before it is defined.
178
31b850d2
AD
1792009-06-29 Akim Demaille <demaille@gostai.com>
180
181 variables: parse.error
182
183 Implement, document, and test the replacement of %error-verbose
184 by %define parse.error "verbose".
185 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
186 values of the parse.error variable.
187 Make "simple" its default value.
188 Check the valid values.
189 * src/parse-gram.y: Use %define parse.error.
190 (PERCENT_ERROR_VERBOSE): New token.
191 Support it.
192 * src/scan-gram.l: Support %error-verbose.
193
194 * doc/bison.texinfo (Decl Summary): Replace the documentation of
195 %define error-verbose by that of %define parse.error.
196 * NEWS: Document it.
197
198 * tests/actions.at, tests/calc.at: Use parse.error instead of
199 %error-verbose.
200
b9f1d9a4
AR
2012009-06-27 Alex Rozenman <rozenman@gmail.com>
202
203 Implement support for named symbol references.
204 * src/parse-gram.y: Add new syntax (named_ref.opt).
205 * src/reader.c: Store named refs in symbol lists.
206 * src/reader.h: New argument for symbol_append and
207 action_append functions.
208 * src/scan-code.h: Add new field (named_ref) into
209 code_props data structure. Keeps named ref of midrule
210 actions.
211 * src/scan-code.l: Support for named refs in semantic
212 action code. New function 'parse_named_ref'.
213 * src/scan-gram.l: Support bracketed id.
214 * src/symlist.c: Store named refs in symbol lists.
215 * src/symlist.h: New field in symbol list: named_ref.
216 * src/named-ref.h: New file, a struct for named_ref.
217 * src/named-ref.cp: New file, named_ref_new function.
218 * src/local.mk: Add two new files.
219 * tests/testsuite.at: Include new test group:
220 * tests/named-refs.at: this new file.
221
b5c212b6
AD
2222009-06-25 Akim Demaille <demaille@gostai.com>
223
224 hash: check insertion for memory exhaustion.
225 * src/uniqstr.c (uniqstr_new): New.
226
67501061
AD
2272009-06-24 Akim Demaille <demaille@gostai.com>
228
229 variables: rename namespace as api.namespace.
230 Discussed in
231 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
232
233 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
234 New.
235 (b4_percent_define_use): New.
236 Use it where applicable.
237 * data/c++.m4: Replace uses of the variable "namespace" by
238 "api.namespace".
239 Default the latter to the former.
240 * doc/bison.texinfo (Decl Summary): Document "namespace" as
241 obsolete.
242 Document api.namespace.
243 Use @samp to document %define uses, keep @code for identifiers.
244 * NEWS: Likewise.
245 * tests/c++.at, tests/input.at: Test api.namespace instead of
246 namespace. (The tests passed with namespace.)
247
41976786
AD
2482009-06-11 Akim Demaille <demaille@gostai.com>
249
250 style changes.
251 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
252 * src/print-xml.c: Style changes.
253 * tests/conflicts.at: Comment changes.
254
44bb9084
AD
2552009-06-11 Akim Demaille <demaille@gostai.com>
256
257 xml: beware of user strings used to give a %prec to rules.
258 * tests/conflicts.at (%prec with user strings): New.
259 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
260 XML output.
261
04d1e39d
AD
2622009-06-11 Akim Demaille <demaille@gostai.com>
263
264 hash: check insertion for memory exhaustion.
265 * src/muscle-tab.c (muscle_insert, muscle_grow)
266 * src/state.c (state_hash_insert): Check the return value of
267 hash_insert.
268
a8873669
AD
2692009-06-11 Akim Demaille <demaille@gostai.com>
270
271 tests: honor TESTSUITEFLAGS in every check target.
272 * tests/local.mk (RUN_TESTSUITE): New.
273 (check-local, installcheck-local, maintainer-check-g++)
274 (maintainer-check-posix, maintainer-check-valgrind): Use it.
275
8893145a
AD
2762009-06-10 Akim Demaille <demaille@gostai.com>
277
278 deterministic test suite.
279 Some consistency checks on symbols are performed after all the
280 symbols were read, by an iteration over the symbol table. This
281 traversal is nondeterministic, which can be a problem for test
282 cases.
283 Avoid this.
284 Addresses another form of nondeterminism reported by Joel E. Denny.
285 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
286
287 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
288 test in two.
289 Use different file names for the three tests to make the
290 maintenance easier.
291
92d7a23a
AD
2922009-06-10 Akim Demaille <demaille@gostai.com>
293
294 gnulib: update.
295 * gnulib: Update to latest.
296 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
297 * m4/.gitignore: Regen.
298 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
299 Call xalloc_die on hash_insert failures.
300 Requested by the new __warn_unused_result__ attribute of
301 hash_insert.
302
12cf133f
AD
3032009-06-10 Akim Demaille <demaille@gostai.com>
304
305 deterministic user-token-number redeclaration errors.
306 Address nondeterminism reported by Joel E. Denny.
307 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
308
309 * src/uniqstr.h: Comment changes.
310 * src/location.h (boundary_cmp, location_cmp): New.
311 * src/symtab.c (user_token_number_redeclaration): New.
312 (symbol_translation): Use it.
313 * tests/input.at (Numbered tokens): Adjust the expected output.
314
796a2b0a
AD
3152009-05-25 Akim Demaille <demaille@gostai.com>
316
317 build: avoid ignored errors.
318 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
319 errors, they pollute the output.
320
0b6d43c5
JD
3212009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
322
323 Convert multiple variable definition warnings to complaints.
324 * NEWS (2.5): Add a new entry for that change.
325 * doc/bison.texinfo (Decl Summary): Update %define entry.
326 (Bison Options): Update -D/--define/-F/--force-define entry.
327 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
328 * src/muscle-tab.h (muscle_percent_define_insert): Update
329 comments.
330 * tests/input.at (`%define errors'): Update.
331 (`%define, --define, --force-define'): Update.
332
de5ab940
JD
3332009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
334
335 -F/--force-define and relative %define/-D/--define priorities.
336 * NEWS (2.5): Add documentation to -D/--define entry.
337 * build-aux/cross-options.pl: Hard-code association of
338 --force-define with %define.
339 * doc/bison.texinfo (Decl Summary): In %define entry,
340 cross-reference command-line options.
341 (Bison Options): Add documentation to -D/--define entry.
342 (Option Cross Key): Widen column for --force-define row.
343 * src/getargs.c (usage): Document -F/--force-define. Realign
344 options in output.
345 (short_options, long_options, getargs): Parse -F/--force-define,
346 and update muscle_percent_define_insert invocations.
347 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
348 (muscle_percent_define_insert): Add argument with that type.
349 * src/muscle-tab.c (muscle_percent_define_insert): Implement
350 -F/--force-define behavior and priorities.
351 (muscle_percent_define_ensure): Update
352 muscle_percent_define_insert invocation.
353 * src/parse-gram.y (prologue_declaration): Update
354 muscle_percent_define_insert invocations.
355 * tests/input.at (`%define, --define'): Rename to...
356 (`%define, --define, --force-define'): ... this and extend.
357
f8e7258f
JD
3582009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
359
360 Update some comments to make sense for -D.
361 * data/bison.m4 (b4_check_user_names): In header comments, say
362 "user occurrence" instead of "grammar occurrence".
363 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
364 (muscle_percent_code_grow): Likewise just for consistency.
365
b987342b
JD
3662009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
367
368 * data/c++.m4 (b4_namespace_close): Simplify slightly.
369
4977e0a7
JD
3702009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
371
372 Handle a trailing `:' in a user-supplied C++ namespace better.
373 * data/c++.m4 (b4_namespace_close): Don't let it be printed
374 among the closing braces here. This fix might make the
375 generated code easier to debug, but otherwise it should be
376 insignificant because a trailing `:' is a C++ error already.
377
9b04dad7
AD
3782009-05-19 Akim Demaille <demaille@gostai.com>
379
380 remove useless variable.
381 * src/getargs.c (skeleton_arg): Remove now useless variable.
382 Should help the compiler see that this printf-like call is sane.
383
4c6622c2
AD
3842009-05-15 Akim Demaille <demaille@gostai.com>
385
386 Rename token.prefix as api.tokens.prefix.
387 Discussed here.
388 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
389
390 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
391 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
392 (token.prefix): Rename as...
393 (api.tokens.prefix): this.
394
3c248d70
AD
3952009-05-11 Akim Demaille <demaille@gostai.com>
396
397 doc: use C++ headers.
398 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
399 headers.
400
99c08fb6
AD
4012009-05-11 Akim Demaille <demaille@gostai.com>
402
403 doc: token.prefix
404 * doc/bison.simple (Decl Summary): Document token.prefix.
405 (Calc++ Parser): Various fixes.
406 Formatting changes.
407 Use token.prefix.
408 Introduce a macro TOKEN to shorten the code and make it more
409 readable.
410 (Calc++ Scanner): Adjust.
411 * NEWS (Variable token.prefix): New.
412
84a1cb5a
AD
4132009-05-04 Akim Demaille <demaille@gostai.com>
414
415 bison: catch bad symbol names.
416 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
417 * tests/input.at: Adjust.
418
cdf3f113
AD
4192009-05-04 Akim Demaille <demaille@gostai.com>
420
421 identifiers: dashes are letters.
422 Dashes can now start identifiers (symbols and directives).
84a1cb5a 423
cdf3f113
AD
424 * src/scan-gram.l ({letter}): Add dash.
425 ({id}): Remove it.
426 * tests/input.at (Symbols): Adjust.
427 Remove stray comment.
428 * tests/regression.at (Invalid inputs): Adjust error message.
429 * doc/bison.texinfo (Symbols): Update.
430
98a345a2
JD
4312009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
432
433 Declare %code to be a permanent feature.
434 * NEWS (2.4.2): Here.
435 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
436 experimental.
437 (Decl Summary): Likewise.
438
67212941
JD
4392009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
440
441 Convert underscores to dashes in some %define variable names.
442 For now, just api.push-pull and lr.keep-unreachable-states.
443 Maintain old names for backward compatibility.
444 * NEWS (2.5): Document.
445 * data/c.m4 (b4_identification): Update comment.
446 * data/yacc.c: Update access.
447 * doc/bison.texinfo: Update.
448 * etc/bench.pl.in (bench_push_parser): Update use.
449 * src/files.c (tr): Move to...
450 * src/getargs.c, src/getargs.h (tr): ... here because I can't
451 think of a better place to expose it. My logic is that, for all
452 uses of tr so far, command-line arguments can be involved, and
453 getargs.h is already included.
454 * src/main.c (main): Update access.
455 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
456 variable names to new variable names before assigning value.
457 * src/reader.c (reader): Update setting default.
458 * tests/calc.at: Update uses.
459 * tests/conflicts.at (Unreachable States After Conflict
460 Resolution): Update use.
461 * tests/input.at (%define enum variables): Update use.
462 (%define backward compatibility): New test group.
463 * tests/push.at: Update uses.
464 * tests/reduce.at: Update uses.
465 * tests/torture.at: Update uses.
466
ba5c6d94
JD
4672009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
468
469 Set all front-end %define defaults in one place.
470 * src/main.c (main): Move lr.keep_unreachable_states default...
471 * src/reader.c (reader): ... to here.
472
5bab9d08
JD
4732009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
474
475 Rename lr.default_reductions to lr.default-reductions.
476 * NEWS (2.5): Here.
477 * doc/bison.texinfo: Here.
478 * src/lalr.c (initialize_LA): Here.
479 * src/print.c (print_reductions): Here.
480 * src/reader.c (reader): Here.
481 * src/tables.c (action_row): Here.
482 * tests/input.at (%define enum variables): Here.
483 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
484
d521ee19
JD
4852009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
486
487 Pacify ./configure --enable-gcc-warnings.
488 * tests/input.at (Symbols): Prototype yyerror and yylex.
489
4902009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
491
492 Document how `%define "var" "value"' is not M4-friendly.
493 * src/parse-gram.y (variable): In comments here.
494
8f0d265e
JD
4952009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
496
497 Clean up recent patches a little.
498 Reported by Akim Demaille.
499 * doc/bison.texinfo (Understanding): Fix typos.
500 * src/print.c (print_reductions): Don't use negated variable.
501
f4909773
JD
5022009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
503
504 List accepted values for a %define enum variable with an invalid value.
505 Suggested by Akim Demaille at
506 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
507 * data/bison.m4 (_b4_percent_define_check_values): Implement.
508 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
509 * tests/input.at (%define lr.default_reductions invalid values): Merge
510 into...
511 (%define enum variables): ... here, and update output.
512
110ef36a
JD
5132009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
514
515 Rename "default rule" to "default reduction".
516 This includes changing variable names in code, changing
517 comments, and renaming %define lr.default_rules to %define
518 lr.default_reductions.
519 * NEWS (2.5): Update IELR documentation.
520 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
521 documentation.
522 * data/glr.c, data/lalr1.java: Sync copyright dates.
523 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
524 and lr.type documentation. Make some other wording
525 improvements.
526 (Glossary): Adjust cross-references and Default Reduction
527 definition.
528 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
529 Remove a confusing comment pointed out by Akim Demaille.
530 (initialize_LA): Adjust code.
531 * src/print-xml.c (print_reductions): Adjust code.
532 * src/print.c (print_reductions): Adjust code.
533 * src/reader.c (reader): Adjust code.
534 * src/tables.c (action_row): Adjust code.
535 (token_actions): Adjust code.
536 * src/tables.h: Adjust YYDEFACT documentation.
537 * tests/input.at (%define lr.default_rules invalid values):
538 Rename test group to...
539 (%define lr.default_reductions invalid values): ... this, and
540 update grammar file and expected output.
541 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
542 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
543
746ee38c
AD
5442009-04-21 Akim Demaille <demaille@gostai.com>
545
546 tests: check the use of dashes and periods in symbols.
547 * tests/input.at (Symbol): New test group.
548
eb45ef3b
JD
5492009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
550
551 Document %define lr.type and lr.default_rules.
552 * NEWS (2.5): Add an entry.
553 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
554 besides just LALR(1) and GLR(1).
555 * doc/bison.texinfo (Introduction): Likewise.
556 (Language and Grammar): Bison is no longer limited to LALR(1)
557 restrictions.
558 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
559 when trying to distinguish from GLR. Talk about LR(1) grammars
560 rather than LALR(1) grammars.
561 (Decl Summary): In %define api.push_pull entry, say it applies
562 to deterministic parsers in C rather than LALR(1) parsers in C.
563 Add lr.default_rules entry.
564 Add lr.type entry.
565 (Mystery Conflicts): Bison is no longer limited to LALR(1)
566 restrictions.
567 (Generalized LR Parsing): Same changes as for the previous GLR
568 section.
569 (Memory Management): Say deterministic rather than LALR(1).
570 (Understanding): Correct some bison output.
571 Index discussion of "accepting state".
572 Say deterministic rather than LALR(1).
573 (Bison Options): In --yacc entry, say deterministic rather than
574 LALR(1).
575 In --report, --graph, and --xml entries, just don't mention
576 LALR(1).
577 (C++ Parsers): Say deterministic rather than LALR(1).
578 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
579 (Glossary): Add Accepting State, Consistent State, Default Rule,
580 and IELR(1) definitions.
581 In Generalized LR (GLR) definition, make same changes as in
582 previous GLR sections.
583 In LALR(1) definition, say Bison uses LALR(1) by default rather
584 than implying Bison is limited to LALR(1).
585 (LocalWords): Add IELR.
586
db34f798
JD
5872009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
588
589 Finish implementing %define lr.type.
590 Its value can be "LALR", "IELR", or "canonical LR".
591 * lib/timevar.def (TV_IELR_PHASE1): New var.
592 (TV_IELR_PHASE2): New var.
593 (TV_IELR_PHASE3): New var.
594 (TV_IELR_PHASE4): New var.
595 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
596 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
597 Sbitset.h, ielr.h, and ielr.c.
598 * src/getargs.h, src/getargs.c (enum trace, trace_args,
599 trace_types): Add trace_ielr.
600 * src/lalr.h, src/lalr.c (ngotos): Export it.
601 (F): Rename to...
602 (goto_follows): ... this, update all uses, and export it.
603 (set_goto_map): Export it.
604 (map_goto): Export it.
605 (compute_lookahead_tokens): Don't free goto_follows yet. Now
606 handled in ielr.
607 (initialize_LA): Export it. Move lookback allocation to...
608 (lalr): ... here because, for canonical LR, initialize_LA must
609 be invoked but lookback and much of the rest of LALR isn't
610 needed.
611 * main.c (main): Instead of lalr, invoke ielr, which invokes
612 lalr.
613 * src/reader.c (reader): Default lr.type to "LALR".
614 Default lr.default_rules to "accepting" if lr.type is "canonical
615 LR". Leave the default as "all" otherwise.
616 Check for a valid lr.type value.
617 * src/state.h, src/state.c (struct state_list): Add state_list
618 member.
619 (state_new): Initialize state_list member to NULL.
620 (state_new_isocore): New function, exported.
621 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
622 exercises all values of lr.type.
623 (GNU AWK Grammar): Rename test group to...
624 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
625 AT_TEST_EXISTING_GRAMMAR.
626 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
627 (GNU pic Grammar): Rename test group to...
628 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
629 AT_TEST_EXISTING_GRAMMAR.
630 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
631 all values of lr.type.
632 (Single State Split): New test groups using AT_TEST_LR_TYPE.
633 (Lane Split): Likewise.
634 (Complex Lane Split): Likewise.
635 (Split During Added Lookahead Propagation): Likewise.
636
7fe11bb5
JD
6372009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
638
639 Add new files for IELR and canonical LR implementation.
640 * src/AnnotationList.c: New.
641 * src/AnnotationList.h: New.
642 * src/InadequacyList.c: New.
643 * src/InadequacyList.h: New.
644 * src/Sbitset.c: New.
645 * src/Sbitset.h: New.
646 * src/ielr.c: New.
647 * src/ielr.h: New.
648
7254f6a8
JD
6492009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
650
651 Implement %define lr.default_rules.
652 Its value describes the states that are permitted to contain
653 default rules: "all", "consistent", or "accepting".
654 * src/reader.c (reader): Default lr.default_rules to "all".
655 Check for a valid lr.default_rules value.
656 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
657 is "accepting", then only mark the accepting state as
658 consistent.
659 (initialize_LA): Tell state_lookahead_tokens_count whether
660 lr.default_rules is "accepting".
661 * src/tables.c (action_row): If lr.default_rules is not "all",
662 then disable default rules in inconsistent states.
663 * src/print.c (print_reductions): Use this opportunity to
664 perform some assertions about whether lr.default_rules was
665 obeyed correctly.
666 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
667 helps with checking the parser tables for a grammar.
668 * tests/input.at (%define lr.default_rules invalid values): New
669 test group.
670 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
671 AT_TEST_TABLES_AND_PARSE.
672 (`no %define lr.default_rules'): New test group generated by
673 AT_TEST_LR_DEFAULT_RULES.
674 (`%define lr.default_rules "all"'): Likewise.
675 (`%define lr.default_rules "consistent"'): Likewise.
676 (`%define lr.default_rules "accepting"'): Likewise.
677
72e727f2
AD
6782009-04-20 Akim Demaille <demaille@gostai.com>
679
680 Formatting change.
681
90462b8d
AD
6822009-04-20 Akim Demaille <demaille@gostai.com>
683
684 bison: factoring.
685 * src/output.c (token_definitions_output): Use symbol_id_get
686 instead of duplicating its logic.
687 * TODO (YYERRCODE): Extend.
688
4f646c37
AD
6892009-04-20 Akim Demaille <demaille@gostai.com>
690
71b00ed8
AD
691 variables: prefer error-verbose to error_verbose.
692 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
693 instead of error_verbose.
694 * src/scan-gram.l (%error-verbose): Map to the error-verbose
695 variable.
696 * doc/bison.texinfo: Promote %define error-verbose instead of
697 %error-verbose.
698 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
699
7002009-04-15 Akim Demaille <demaille@gostai.com>
701
4f646c37
AD
702 variables: accept dashes.
703 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
704 underscores.
705 * src/scan-gram.l ({id}): Also accept dashes after the initial
706 letter.
707 ({directive}): Use {id}.
708 * src/parse-gram.y: Comment and formatting changes.
709 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
710 symbols.
711 * src/complain.h, src/complain.c (yacc_at): New.
712 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
713 symbol names.
714 * src/output.c (token_definitions_output): Do not #define token
715 names with dashes.
716
184e3179
AD
7172009-04-20 Akim Demaille <demaille@gostai.com>
718
719 Consistently refer to Yacc, not YACC.
720 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
721
41253c3a
JD
7222009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
723
724 Pacify make maintainer-check-posix.
725 * tests/input.at (%define, --define): Move bison command-line
726 options before grammar file name.
727
197b82ba
JD
7282009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
729
730 Document semicolon warnings.
731 * NEWS (2.5): Here.
732
0c90a1f5
AD
7332009-04-14 Akim Demaille <demaille@gostai.com>
734
735 variables: use `parse.assert' instead of `assert'.
736 * TODO (assert): Remove.
737 * data/bison.m4 (b4_assert_if): Replace with...
738 (b4_parse_assert_if): this.
739 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
740 * doc/bison.texinfo (Decl Summary): Document parse.assert.
741
fa819509
AD
7422009-04-14 Akim Demaille <demaille@gostai.com>
743
16dc0d90 744 variables: use `parse.trace' instead of `debug'.
fa819509
AD
745 * src/getargs.c (getargs): Map -t to %define trace.parse.
746 * src/scan-gram.l (%debug): Map to %define trace.parse.
747 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
748 names to `_' in macro names.
749 (b4_debug_if): Replace with...
750 (b4_parse_trace_if): this.
751 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
752 * data/yacc.c: Adjust.
753 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
754 Use @code to label the variable list.
755 Document the variable parse.trace.
756 (Tracing): Promote the parse.trace variable.
757 * TODO: %printer is not documented.
758
f7dae1ea
AD
7592009-04-14 Akim Demaille <demaille@gostai.com>
760
761 doc: minor fixes.
762 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
763 (Table of Symbols): Remove duplicate entry for %debug.
764
3535c071
EB
7652009-04-10 Eric Blake <ebb9@byu.net>
766
767 submodules: update to latest
768 * submodules/autoconf: Use latest upstream Autoconf.
769
cf48f675
EB
7702009-04-06 Eric Blake <ebb9@byu.net>
771
772 Work around autoconf 2.63b bug in testsuite.
773 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
774 autoconf bug related to # in test.
775
50cca368
JD
7762009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
777
778 * NEWS (2.5): New section. Describe new -D/--define feature.
779
3583d96b
AD
7802009-04-06 Akim Demaille <demaille@gostai.com>
781
782 Regen.
783 * src/parse-gram.h, src/parse-gram.c: Regen.
784
00f5d575
AD
7852009-04-06 Akim Demaille <demaille@gostai.com>
786
787 rename muscle_tab.* as muscle-tab.* for consistency.
788 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
789 * src/muscle-tab.h, src/muscle-tab.c: these.
790 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
791 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
792
76bf5102
AD
7932009-04-06 Akim Demaille <demaille@gostai.com>
794
795 Makefile: introduce $(BISON).
796 * src/local.mk (BISON): New.
797 (YACC): Use it.
798
bc0f5737
AD
7992009-04-06 Akim Demaille <demaille@gostai.com>
800
801 parser: handle %locations as %define locations.
802 * src/getargs.h, src/getargs.c (locations_flag): Remove.
803 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
804 to set "locations" to true.
805 * src/output.c (prepare): Don't output "locations".
806 * src/scan-gram.l (%locations): Handle it as a %<flag>.
807 * src/parse-gram.y: It's no longer a token.
808 Don't handle it.
809 * data/bison.m4 (b4_locations_if): Define it with
810 b4_percent_define_if_define.
811 * data/c.m4, data/glr.cc: Adjust.
812
697c912f
AD
8132009-04-06 Akim Demaille <demaille@gostai.com>
814
815 Regen.
816 * src/parse-gram.c: Regen.
817
4920ae8b
AD
8182009-04-06 Akim Demaille <demaille@gostai.com>
819
820 muscle: factor the handling of obsolete of obsolete directives.
821 Suggested by Joel E. Denny.
50cca368 822
4920ae8b
AD
823 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
824 New, extracted from...
825 * src/parse-gram.y (prologue_declaration: pure-parser): here.
826 Remove it.
827 (prologue_declaration: "%<flag>"): Use
828 muscle_percent_define_ensure.
829 (%error-verbose, %pure-parser): No longer tokens.
830 * src/scan-gram.l (pure-parser): Return as a %<flag>.
831
1d5b3c08
JD
8322009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
833
834 Fix options documentation.
835 * build-aux/cross-options.pl: As in --help output, write optional
836 arguments as [=ARG] not =[ARG].
837 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
838
62c99cf4
JD
8392009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
840
841 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
842 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
843 requirements for a correct m4 are stricter.
844 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
845 * configure.ac: Update to use AC_PROG_GNU_M4.
846 Reported by Eric Blake.
847
1c93f35b
JD
8482009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
849
850 Help with updating web manual.
851 * HACKING: Incorporate instructions from gnulib/doc/README.
852 * bootstrap.conf (gnulib_modules): Add gendocs.
853
86cfae0a
AD
8542009-04-03 Akim Demaille <demaille@gostai.com>
855
856 Regen.
857 * src/parse-gram.h, src/parse-gram.c: Regen.
858
ba061fa6
AD
8592009-04-03 Akim Demaille <demaille@gostai.com>
860
861 Factor %FLAG at scan level.
862 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
863 definitions and associated rules, replaced by....
864 (PERCENT_FLAG): this new token type, and rule.
865 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
866 Use it for %debug and %error-verbose.
867
b19ebeb3
AD
8682009-04-03 Akim Demaille <demaille@gostai.com>
869
870 Regen.
871 * src/parse-gram.h, src/parse-gram.c: Regen.
872
001a16a9
AD
8732009-04-03 Akim Demaille <demaille@gostai.com>
874
875 Treat %debug as %define debug.
876 * data/bison.m4 (b4_debug_if): New.
877 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
878 * data/lalr1.java: Use it instead of b4_debug_flag.
879 * src/getargs.h, src/getargs.c (debug_flag): Remove.
880 * src/output.c (prepare): Don't output it.
881 * src/parse-gram.y: Treat %debug as %define debug.
882
8832009-04-03 Akim Demaille <demaille@gostai.com>
884
885 Treat %error-verbose as %define error_verbose.
886 This allows to pass -Derror_verbose on the command line. Better
887 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
888 ERROR_VERBOSE being defined as false or true.
889 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
890 on b4_percent_define_ifdef, for does not check the defined value,
891 but only whether the symbol is defined, rely on
892 b4_percent_define_flag_if, so that a value of "false" is processed
893 as a false.
894 If not defined, define the flag to "false".
895 (b4_error_verbose_if): New.
896 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
897 b4_error_verbose_flag.
898 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
899 * src/output.c (prepare): Don't output it.
900 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
901
92822aff
JD
9022009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
903
904 Fix strange %define locations for default values.
905 Reported by Akim Demaille at
906 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
907 and discussed again starting at
908 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
909 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
910 because location information is bogus.
911 Use angle brackets to delimit fake file name because square brackets
912 look like underexpanded m4. Choose a better fake file name.
913 Use negative line numbers.
914 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
915 * src/location.c (location_print): If line for a boundary is negative,
916 only print that boundary's file name.
917 * src/location.h: Document that.
918 * tests/skeletons.at (%define Boolean variables: invalid skeleton
919 defaults): Update output.
920
e021191b
JD
9212009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
922
923 Pacify ./configure --enable-gcc-warnings.
924 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
925 in lib won't compile with it.
926 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
927
78f65418
AD
9282009-03-31 Akim Demaille <demaille@gostai.com>
929
930 bootstrap: --help to stdout.
931 * bootstrap (usage): Don't send --help to stderr.
932 Use a here doc instead of a long string.
933
f7e241f4
AD
9342009-03-31 Akim Demaille <demaille@gostai.com>
935
936 bootstrap: README-hacking no longer exists
937 * bootstrap (checkout_only_file): Set to HACKING.
938
31d3e510
AD
9392009-03-26 Akim Demaille <demaille@gostai.com>
940
941 doc: merge HACKING and README-hacking.
942 Two files is confusing.
943 Reported by Alexandre Duret-Lutz.
1f9d8248 944
31d3e510
AD
945 * README-hacking: Merge into...
946 * HACKING (Working from the repository): here.
947
81535bfa
AD
9482009-03-26 Akim Demaille <demaille@gostai.com>
949
950 doc: update README-hacking.
951 * README-hacking: We now use git and git submodules.
952 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
953
56f772e9
AD
9542009-03-26 Akim Demaille <demaille@gostai.com>
955
956 lalr1.cc: avoid GCC 4.3 warnings.
957 GCC 4.3 now warns about "a || b && c" and asks for explicit
958 parentheses.
959 Reported by Alexandre Duret-Lutz.
960 * data/location.cc: Update copyright years.
961 (Position::operator==): Use parens to make precedence explicit.
962 Compare lines and columns first, as they are more likely to be
963 different, and they are faster to compare.
964
11c073b7
AD
9652009-03-26 Akim Demaille <demaille@gostai.com>
966
967 gnulib: update.
968 * gnulib: Update to latest.
969 * src/local.mk (AM_CFLAGS): Move to...
970 * Makefile.am: here.
971 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
972 AM_CFLAGS.
973
91be6b28
AD
9742009-03-02 Akim Demaille <demaille@gostai.com>
975
976 Comment changes.
977
cbf25ce7
AD
9782009-03-02 Akim Demaille <demaille@gostai.com>
979
980 Share b4_yytranslate_define.
981 * data/lalr1.cc (b4_yytranslate_define): Move to...
982 * data/c++.m4: here.
983
882f02ed
AD
9842009-03-02 Akim Demaille <demaille@gostai.com>
985
986 Use locations in the variant example.
1f9d8248
AD
987 Yes, this obfuscates the point of this example, variants only.
988 But glr.cc cannot work (yet?) without locations. This change
989 makes it easier to use this example with glr.cc.
11c073b7 990
882f02ed
AD
991 * examples/variant.yy (assert): %define it.
992 (locations): Request them.
993 (yylex): Bind the location to the stage.
994
0623bacc
AD
9952009-03-02 Akim Demaille <demaille@gostai.com>
996
997 Dub make_TOKEN as a public type interface.
998 * data/c++.m4 (b4_symbol_constructor_declare)
999 (b4_symbol_constructor_define): New empty stubs.
1000 (b4_public_types_declare, b4_public_types_define): Use them.
1001 * data/lalr1.cc (b4_symbol_constructor_declare)
1002 (b4_symbol_constructor_declare_)
1003 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1004 Move to...
1005 * data/variant.hh: here.
1006 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1007 needed.
1008 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1009 b4_symbol_constructor_declare, as it is now done by
1010 b4_public_types_define and b4_public_types_declare.
1011
5f5a90df
AD
10122009-03-02 Akim Demaille <demaille@gostai.com>
1013
1014 Coding style changes.
1015 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1016 (b4_symbol_constructor_declarations)
1017 (b4_symbol_constructor_definition_)
1018 (b4_symbol_constructor_definitions)
1019 (b4_yytranslate_definition): Rename as...
1020 (b4_symbol_constructor_declare_)
1021 (b4_symbol_constructor_declare)
1022 (b4_symbol_constructor_define_)
1023 (b4_symbol_constructor_define)
1024 (b4_yytranslate_define): these.
1025 * data/variant.hh (b4_variant_definition): Rename as...
1026 (b4_variant_define): this.
1027
b47b6ff7
AD
10282009-03-02 Akim Demaille <demaille@gostai.com>
1029
1030 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1031 * data/bison.m4 (b4_percent_define_if_define): New.
1032 * data/c++.m4 (b4_variant_if): Move to...
1033 * data/bison.m4: Here, using b4_percent_define_if_define.
1034 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1035 * data/bison.m4: Here, using b4_percent_define_if_define.
1036
1d6b689b
AD
10372009-03-02 Akim Demaille <demaille@gostai.com>
1038
1039 Dub symbol_type_base as a public type.
1040 * data/c++.m4 (b4_public_types_declare): Now define
1041 symbol_type_base and symbol_type.
1042 (b4_public_types_define): New.
1043 In both cases, the definitions are taken verbatim from lalr1.cc.
1044 * data/lalr1.cc: Adjust.
1045
4f84717d
AD
10462009-03-02 Akim Demaille <demaille@gostai.com>
1047
1048 b4_public_types_declare.
1049 * data/c++.m4 (b4_public_types_declare): New.
1050 * data/glr.cc, data/lalr1.cc: Use it.
1051
b9e4eb5b
AD
10522009-03-02 Akim Demaille <demaille@gostai.com>
1053
1054 b4_semantic_type_declare.
1055 * data/c++.m4 (b4_semantic_type_declare): New.
1056 Factors and generalizes what was in glr.cc and lalr1.cc.
1057 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1058 variants.
1059 * data/lalr1.cc, data/glr.cc: Use it.
1060
6a6e7f0c
AD
10612009-02-26 Akim Demaille <demaille@gostai.com>
1062
1063 Upgrade gnulib.
1064 * gnulib: Upgrade from master.
1065 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1066 Regen.
1067
e9e61b00
AD
10682009-02-25 Akim Demaille <demaille@gostai.com>
1069
1070 Remove useless arguments.
1071 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1072 relevant.
1073
3eead995
AD
10742009-02-25 Akim Demaille <demaille@gostai.com>
1075
1076 Comment changes.
1077 * data/lalr1.cc: here.
1078
87f28efe
AD
10792009-02-25 Akim Demaille <demaille@gostai.com>
1080
1081 Fix glr.cc's debug level handling.
1082 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1083 glr.c which is used.
1084 (debug_level, set_debug_level): Adjust.
1085
9be2a009
AD
10862009-02-25 Akim Demaille <demaille@gostai.com>
1087
1088 Copyright years.
1089 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1090
07a6e87d
AD
10912009-02-25 Akim Demaille <demaille@gostai.com>
1092
1093 Style changes.
1094 * etc/bench.pl.in (generate_grammar_list): Consitently use
1095 location_type, not yy::location.
1096
33c78bd2
AD
10972009-02-25 Akim Demaille <demaille@gostai.com>
1098
1099 Comment change.
1100 * data/lalr1.cc: here.
1101
49572920
AD
11022009-02-19 Akim Demaille <demaille@gostai.com>
1103
1104 Make yyparser::error public.
1105 * data/lalr1.cc: here.
1106 There is no good reason to keep it private (and it is convenient
1107 to use it from the scanner for instance). It is already public in
1108 glr.cc.
1109
88654b47
AD
11102009-02-19 Akim Demaille <demaille@gostai.com>
1111
1112 Comment changes.
1113 * data/glr.cc: here.
1114
4524c55b
AD
11152009-02-19 Akim Demaille <demaille@gostai.com>
1116
1117 Remove trailing blanks.
6a6e7f0c
AD
1118 The epilogue has its own ending \n, no need to add another.
1119
4524c55b
AD
1120 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
1121 epilogue.
1122 * data/glr.cc: dnl when extending the epilogue.
1123 Remove stray "private:".
1124
6ceccee8
AD
11252009-02-19 Akim Demaille <demaille@gostai.com>
1126
1127 Use b4_c_modern.
1128 * data/c.m4 (b4_c_function_decl): Here.
1129
9c6a8966
AD
11302009-02-19 Akim Demaille <demaille@gostai.com>
1131
1132 Comment changes.
1133 * data/lalr1.cc: here.
1134
507aa0e2
AD
11352009-02-19 Akim Demaille <demaille@gostai.com>
1136
1137 Extract variant.hh
1138 * data/variant.hh: New, extracted from...
1139 * data/lalr1.cc: here.
1140 Adjust.
1141 * data/local.mk: Adjust.
1142
51bacae6
AD
11432009-02-19 Akim Demaille <demaille@gostai.com>
1144
1145 Extract stack.hh from lalr1.cc.
1146 * data/stack.hh: New.
1147 * data/lalr1.cc: Extract from here.
1148 * data/local.mk: Adjust.
1149
06c3084f
JD
11502009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1151
1152 Add reminder about uploading public key to keys.gnupg.net.
1153 * HACKING (Release Procedure): Here.
1154
0ea583d2
AD
11552009-01-28 Akim Demaille <demaille@gostai.com>
1156
1157 * NEWS: Update information about 2.4.1 and 2.4.2.
1158
402b123d
AD
11592008-11-04 Akim Demaille <demaille@gostai.com>
1160
1161 Reformat NEWS.
1162 * NEWS: Use more outline-mode markup.
1163 Suggested by Jim Meyering.
1164
74553c98
AD
11652009-01-08 Akim Demaille <demaille@gostai.com>
1166
1167 Fix grep portability issues.
1168 Grep on Solaris does not support -q.
1169 Reported by Summum Bonum.
1170
1171 * NEWS: Add a stub for 2.4.2.
1172 * THANKS: Add Summum Bonum.
1173 * tests/atlocal.in (EGREP): New.
1174 (CC, CXX, XSLTPROC): Make it possible to override them via
1175 envvars.
1176 * tests/java.at: Use $EGREP instead of egrep.
1177 Use AT_CHECK's ignore instead of grep's -q.
1178
84eedf86
AD
11792008-12-11 Akim Demaille <demaille@gostai.com>
1180
1181 Pass the token type to yysyntax_error.
1182 * data/yacc.c (yysyntax_error): Take the transated token instead
1183 of the raw number.
1184 Adjust callers.
1185 * TODO: Update.
1186
5860cc8c
AD
11872008-12-11 Akim Demaille <demaille@gostai.com>
1188
1189 Formatting changes.
1190 * data/glr.c: Formatting changes.
1191
2b008529
AD
11922008-12-11 Akim Demaille <demaille@gostai.com>
1193
1194 Propagate i18n changes into glr.c.
1195 * TODO: Update.
1196 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1197 building the error message format dynamically.
1198 * data/lalr1.java: Formatting changes.
1199
2cd1af95
AD
12002008-12-11 Akim Demaille <demaille@gostai.com>
1201
1202 Use testsuite -C.
1203 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
1204 Solves problems when top_srcdir is an absolute path.
1205 Suggested by Eric Blake.
1206 * configure.ac: Require Autoconf 2.62.
1207
eeb29422
AD
12082008-12-11 Akim Demaille <demaille@gostai.com>
1209
1210 Simplify the i18n of the error messages.
1211 * data/lalr1.cc: Comment changes.
1212 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
1213 lalr1.cc instead of building dynamically the format string.
1214
6617622c
AD
12152008-12-08 Akim Demaille <demaille@gostai.com>
1216
1217 Fix portability issue in the test suite.
1218 * tests/local.at (AT_MATCHES_CHECK): New.
1219 Based on Perl instead of Sed. Sed has too many portability
1220 pitfalls, not ever Sed is GNU Sed.
1221 * tests/actions.at (Fix user actions without a trailing semicolon):
1222 Use it.
1223
2ca1136c
AD
12242008-12-08 Akim Demaille <demaille@gostai.com>
1225
1226 Update data/README.
1227 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1228
6c63b895
AD
12292008-12-08 Akim Demaille <demaille@gostai.com>
1230
1231 Install autoconf as a submodule to get m4sugar.
1232 * .gitmodules: Add submodules/autoconf.
1233 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1234 submodules/autoconf.
1235
417e31d2
AD
12362008-12-08 Akim Demaille <demaille@gostai.com>
1237
1238 Test token.prefix in all the skeletons.
1239 * data/java.m4 (b4_token_enum): Use the token.prefix.
1240 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
1241 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
1242 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
1243 * tests/java.at: Comment changes.
1244 (AT_CHECK_JAVA_MINIMAL): Define the END token.
1245 (Java parser class and package names): Add token.prefix check.
1246
97abf544
AD
12472008-12-08 Akim Demaille <demaille@gostai.com>
1248
1249 Fix regeneration of atconfig.
1250 * tests/local.mk (tests/atconfig): The rule was incorrect, but
1251 remove it: now that there is no tests/Makefile.am, the top-level
1252 Makefile properly updates atconfig when needed.
1253
e8cd1ad6
DJ
12542008-12-07 Di-an Jan <dianj@freeshell.org>
1255
1256 Implement the FIXME that ends an user action with a semicolon
1257 if it seems necessary.
1258 * src/scan-code.l (flex rules section): Flag cpp directive from
1259 any `#' to the first unescaped end-of-line. Semicolon is not
1260 needed after `;', `{', '}', or cpp directives and is needed after
1261 any other token (whitespaces and comments have no effect).
1262 * tests/actions.at (Fix user actions without a trailing semicolon):
1263 New test.
1264 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1265 to make user actions complete statements.
1266 Adjust column numbers in error messages.
1267 * tests/regression.at (Fix user actions without a trailing semicolon):
1268 Remove. Covered by new test.
1269
ce9447fc
AD
12702008-12-07 Akim Demaille <demaille@gostai.com>
1271
1272 Update gnulib.
1273 * gnulib: Update from master.
1274
d333175f
EB
12752008-12-05 Eric Blake <ebb9@byu.net>
1276
1277 Avoid compiler warning.
1278 * src/output.c (muscle_insert_item_number_table): Delete unused
1279 function.
1280
215b40ac
EB
12812008-12-02 Eric Blake <ebb9@byu.net>
1282
1283 Build testsuite with newer autoconf.
1284 * tests/output.at (m4_expand): Don't override in newer autoconf,
1285 where the underlying implementation changed.
1286 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1287 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1288 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1289 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1290 since some of them contain unbalanced ')'.
1291
3bb21113
AD
12922008-12-01 Akim Demaille <demaille@gostai.com>
1293
1294 Use b4_symbol for printers and destructors everywhere.
1295 * data/bison.m4 (b4_symbol_action_location): New.
1296 * data/c.m4 (b4_symbol_actions): Remove.
1297 Adjust all callers to use by b4_symbol_foreach and the corresponding
1298 b4_symbol_printer/destructor macro.
1299 * data/glr.cc: Adjust.
1300 * data/lalr1.java: Adjust the %destructor sanity check.
1301 * src/output.c (symbol_code_props_output): Remove, we no longer
1302 need the b4_symbol_printers/destructors tables.
1303
fb7c5b1f
AD
13042008-12-01 Akim Demaille <demaille@gostai.com>
1305
1306 Use b4_symbol_case_.
1307 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
1308 b4_symbol_case_.
1309
cf6fb222
AD
13102008-12-01 Akim Demaille <demaille@gostai.com>
1311
1312 Move b4_symbol based macro to bison.m4.
1313 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
1314 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
1315 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
1316 (b4_type_foreach): Move to...
1317 * data/bison.m4: Here.
1318 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
1319 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 1320
e3c52a63
AD
13212008-12-01 Akim Demaille <demaille@gostai.com>
1322
1323 b4_symbol/type_foreach.
1324 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
1325 Use them.
1326
2bde9113
AD
13272008-12-01 Akim Demaille <demaille@gostai.com>
1328
1329 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
1330 Instead of defining complex list of tuples to define various
1331 properties of the symbols, we now prefer to define symbols as
1332 "structs" in m4: using the symbol key (its number), and the
1333 property name, b4_symbol gives it value. Use this to handle
1334 destructors and printers.
1335
2bde9113
AD
1336 * src/output.c (CODE_PROP): New.
1337 (prepare_symbol_definitions): Use it to define the printer and
1338 destructor related attributes of the symbols.
1339 * data/lalr1.cc (b4_symbol_actions): Rename as...
1340 (b4_symbol_action): this.
1341 Use b4_symbol instead of 6 arguments.
1342 (b4_symbol_printer, b4_symbol_destructor): New.
1343 Use them instead of b4_symbol_actions.
1344
44494bf6
AD
13452008-12-01 Akim Demaille <demaille@gostai.com>
1346
1347 Avoid capturing variables too easily.
1348 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
1349 v__ and p__ instead of v and p.
1350
fad814bd
AD
13512008-12-01 Akim Demaille <demaille@gostai.com>
1352
1353 Remove spurious empty line before syncline.
1354 * data/bison.m4 (b4_syncline): Don't output an empty line before
1355 the output.
1356
feda5527
AD
13572008-11-26 Akim Demaille <demaille@gostai.com>
1358
1359 Convert lib/Makefile.am into lib/local.mk.
1360 The real problem is rather gnulib.mk, which itself is extracted
1361 from a Makefile.am that gnulib expects to the "recursive". The
1362 tool prefix-gnulib-mk converts such a gnulib.mk to be
1363 non-recursive. Also, some AC_SUBST variables need to be adjusted.
1364
1365 * etc/prefix-gnulib-mk: New.
1366 * bootstrap (slurp): Use it to convert further gnulib.mk.
1367 No longer try to avoid re-creation of lib/gnulib.mk as the changes
1368 are deeper.
1369 * lib/Makefile.am: Rename as...
1370 * lib/local.mk: this.
1371 Adjust to be prefixed.
1372 * Makefile.am, configure.ac: Adjust.
1373 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
1374
56ddee7f
AD
13752008-11-26 Akim Demaille <demaille@gostai.com>
1376
1377 s/_FLAGS/FLAGS/.
1378 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
1379 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
1380 Reported by Eric Blake.
1381
728e89a0
AD
13822008-11-26 Akim Demaille <demaille@gostai.com>
1383
1384 Use b4_parser_tables_define in glr.cc.
1385 * data/glr.c: Use b4_parser_tables_define instead of defining the
1386 (deterministic integral) tables by hand.
1387
2c1bf9bd
AD
13882008-11-26 Akim Demaille <demaille@gostai.com>
1389
1390 Use b4_parser_tables_define in Java.
1391 * data/java.m4 (b4_typed_parser_table): Rename as...
1392 (b4_typed_parser_table_define): this, for consistency.
1393 Accept a comment as $4.
1394 Move $2 into yy*_.
1395 (b4_integral_parser_table): Rename as...
1396 (b4_integral_parser_table_define): this.
1397 * data/lalr1.java: Adjust all uses.
1398 Use b4_parser_tables_define instead of generation by hand.
1399
ba206cf4
AD
14002008-11-26 Akim Demaille <demaille@gostai.com>
1401
1402 Prepare the convergence bw C style and Java table generation.
1403 * data/bison.m4 (b4_tables_map, b4_tables_declare)
1404 (b4_tables_define): Rename as...
1405 (b4_integral_parser_tables_map, b4_parser_tables_declare)
1406 (b4_parser_tables_define): these.
1407 * data/c.m4 (b4_table_define): Rename as...
1408 (b4_integral_parser_table_define): this.
1409 * data/lalr1.cc: Adjust.
1410 (b4_table_define, b4_table_declare): Rename as...
1411 (b4_integral_parser_table_define)
1412 (b4_integral_parser_table_declare): these.
1413 (yyrline_): Move the comment where it is actually used.
1414 * data/yacc.c: Adjust.
1415 (yyrline): Use b4_integral_parser_table_define.
1416
d12f8e49
AD
14172008-11-26 Akim Demaille <demaille@gostai.com>
1418
1419 Regen.
1420 * src/parse-gram.h, src/parse-gram.c: Regen.
1421
0991e29b
AD
14222008-11-26 Akim Demaille <demaille@gostai.com>
1423
1424 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
1425 * data/lalr1.cc (b4_tables_map): Move to...
1426 * data/bison.m4: here.
1427 Update the comment for yytable during the flight.
1428 (b4_tables_declare, b4_tables_define): New.
1429 * data/lalr1.cc: Use them.
1430 * data/c.m4 (b4_table_define): New.
1431 * data/yacc.c: Use b4_tables_define instead of output the tables
1432 by hand.
1433 * tests/regression.at (Web2c Actions): Adjust the expected output,
1434 the order of the tables changed.
1435
3d3bc1fe
AD
14362008-11-26 Akim Demaille <demaille@gostai.com>
1437
1438 Get rid of (yy)rhs and (yy)prhs.
1439 These tables are no longer needed in the parsers, and they don't seem to
1440 be useful. They are not documented either.
feda5527 1441
3d3bc1fe
AD
1442 * src/output.c (prepare_rules): Get rid of rhs and prhs.
1443 Adjust the computation of (yy)r2.
1444
08c81469
AD
14452008-11-26 Akim Demaille <demaille@gostai.com>
1446
1447 Rule length is unsigned.
1448 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
1449
932b0c96
AD
14502008-11-26 Akim Demaille <demaille@gostai.com>
1451
1452 Get rid of lalr1-split.cc.
1453 It was no longer maintainer.
feda5527 1454
932b0c96
AD
1455 * data/lalr1-split.cc: Remove.
1456 * etc/bench.pl.in (bench_fusion_parser): Remove.
1457 Adjust.
1458
8452c667
AD
14592008-11-26 Akim Demaille <demaille@gostai.com>
1460
1461 Use yy* consistently.
1462 * data/glr.c: Now that yyrhs no longer exists as a global
1463 variable, rename local "rhs" variables into "yyrhs" for
1464 consistency.
1465
783aa653
AD
14662008-11-25 Akim Demaille <demaille@gostai.com>
1467
1468 Get rid of yyrhs and yyprhs in glr.c.
1469 * data/glr.c (yyrhs, yyprhs): Remove.
1470 Instead, use the state stack and yystos.
1471
6130b755
AD
14722008-11-25 Akim Demaille <demaille@gostai.com>
1473
1474 Flag glr tests.
1475 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
1476 as an Autotest keyword.
1477
95a7b1c9
AD
14782008-11-25 Akim Demaille <demaille@gostai.com>
1479
1480 Prefer TESTSUITE_FLAGS.
1481 TESTSUITEFLAGS is barely readable.
feda5527 1482
95a7b1c9
AD
1483 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
1484 for backward compatibility.
1485 Use the former instead of the latter.
1486
b4f18401
AD
14872008-11-25 Akim Demaille <demaille@gostai.com>
1488
1489 Get rid of yyrhs and yyprhs in larl1.java.
1490 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
1491 (yy_reduce_print): Rather, use yystos_ and the state stack.
1492
c265fd6b
AD
14932008-11-25 Akim Demaille <demaille@gostai.com>
1494
1495 Formatting changes.
1496
68dbdee8
AD
14972008-11-25 Akim Demaille <demaille@gostai.com>
1498
1499 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
1500 They were used to get the symbol types, given a rule number, when
1501 displaying the top of the stack before a reduction. But the
1502 symbol type is available from the state stack. This has two be
1503 benefits: two tables less in the parser (making it smaller), and a
1504 more consistent use of the three stacks which will help to fuse
1505 them.
feda5527 1506
68dbdee8
AD
1507 * data/yacc.c (yyprhs, yyrhs): Remove.
1508 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
1509 (yy_reduce_print): Take yyssp as argument.
1510 Use it, together with yystos, to get the symbol type.
1511 * tests/regression.at (Web2c Report): Remove these tables from the
1512 expected output.
1513
6ab1adbe
AD
15142008-11-25 Akim Demaille <demaille@gostai.com>
1515
1516 b4_tables_map.
1517 The point is to factor the generation of the tables across skeletons.
1518 This is language dependant.
feda5527 1519
6ab1adbe
AD
1520 * data/c.m4 (b4_comment_): New.
1521 Should be usable to define how to generate tables independently of
1522 the language.
1523 (b4_c_comment): New.
1524 (b4_comment): Bounce to b4_c_comment.
1525 Now support $2 = [PREFIX] for indentation.
1526 * data/lalr1.cc (b4_table_declare): Don't output a comment if
1527 there is no comment.
1528 Indent it properly when there is one.
1529 Output the ending semicolon.
1530 (b4_table_define): Space changes.
1531 Output the ending semicolon.
1532 (b4_tables_map): New.
1533 Use it twice instead of declaring and defining the (integral)
1534 tables by hand.
1535
0fddb3d5
AD
15362008-11-25 Akim Demaille <demaille@gostai.com>
1537
1538 b4_table_declare.
1539 * data/lalr1.cc (b4_table_declare): New.
1540 Use it to declare the tables defined with b4_table_define.
1541 (b4_table_define): Declare a third arg to match b4_table_declare
1542 signature.
1543 Move all the comments around invocations of b4_table_define into
1544 the invocations itselves.
1545 Move things around to have the order for declarations and
1546 definitions.
1547
c4ddc0fb
AD
15482008-11-25 Akim Demaille <demaille@gostai.com>
1549
1550 Formatting changes.
1551 * data/lalr1.java: here.
1552
e0c653e7
AD
15532008-11-25 Akim Demaille <demaille@gostai.com>
1554
1555 b4_args is more general than only C++.
1556 * data/lalr1.cc (b4_args, _b4_args): Move to...
1557 * data/bison.m4: here.
1558
4182a0a1
DJ
15592008-11-21 Di-an Jan <dianj@freeshell.org>
1560
1561 Implement no-XXX arguments for --warnings, --report, --trace.
1562 * src/getargs.c (flags_argmatch): Handles no-XXX.
1563 Fix typo in doxygen comment.
1564
01466c3e
AD
15652008-11-21 Akim Demaille <demaille@gostai.com>
1566
1567 Display the changes in cross-options.texi.
1568 * build-aux/cross-options.pl ($sep): New, to separate items.
1569 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
1570 changes.
1571
a7c09cba
DJ
15722008-11-20 Di-an Jan <dianj@freeshell.org>
1573
1574 Improves options in the manual.
1575 * doc/bison.texinfo (-g, -x): Add space before argument.
1576 (Option Cross Key): Implement FIXME: listing directives also.
1577 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1578 (Short Option): Special case -d. Put arguments inside @option.
feda5527 1579 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
1580 src/scan-gram.l (actual name passed as the first argument)
1581 with special case for %define.
1582 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
1583 to build-aux/cross-options.pl.
1584 * src/getargs.c (usage): Document limitations of cross-options.pl.
1585 * src/scan-gram.l: Likewise.
1586
6c88b51e
JD
15872008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1588
1589 Fix unexpanded macros in GLR defines file.
1590 Reported by Csaba Raduly at
1591 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1592 * THANKS (Csaba Raduly): Add.
1593 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1594 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1595 lexer in a separate module that includes the defines file.
1596 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
1597 source.
1598 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1599 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1600 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1601 (AT_DATA_SOURCE_PROLOGUE): New.
1602 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1603 (AT_DATA_SOURCE): New.
1604 (AT_FULL_COMPILE): Extend to support an additional source file.
1605
1e034807
AD
16062008-11-18 Akim Demaille <demaille@gostai.com>
1607
1608 More TODO.
1609 * TODO: More short term issues.
1610
e3dda35c
AD
16112008-11-18 Akim Demaille <demaille@gostai.com>
1612
1613 Regen.
1614 * src/parse-gram.h, src/parse-gram.c: Regen.
1615
bd187d7b
AD
16162008-11-18 Akim Demaille <demaille@gostai.com>
1617
1618 Use b4_subtract where possible.
1619 * data/lalr1.cc (b4_subtract): Move to...
1620 * data/bison.m4: here.
1621 * data/glr.c (b4_rhs_data): Use it.
1622 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
1623
6085ab0d
AD
16242008-11-18 Akim Demaille <demaille@gostai.com>
1625
1626 Remove incorrect mode specification.
1627 * data/glr.cc: Don't pretend it's C code.
1628
9ce405ce
JD
16292008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1630
1631 Simplify last patch slightly.
1632 * src/getargs.c (getargs): Here.
1633
a8beef7e
JD
16342008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1635
1636 Fix last warning from --enable-gcc-warnings.
1637 * src/getargs.c (getargs): Don't assign const address to non-const
1638 pointer.
1639
d50eea6d
JD
16402008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1641
1642 Don't let maintainer-*-check targets force a version update.
1643 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1644 handled.
1645
f5f419de
DJ
16462008-11-17 Di-an Jan <dianj@freeshell.org>
1647
1648 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1649 Align menus. Adjust word wrapping. Use node names for menu names.
1650 (Examples): Don't abbreviate node names.
1651 (LocalWords): Remove abbreviations.
1652 (Copying): Make description a sentence.
d50eea6d 1653 (Java Action Features): Remove period to match the rest of menu.
f5f419de 1654
d73e55e0
DJ
16552008-11-17 Di-an Jan <dianj@freeshell.org>
1656
1657 Handles several --enable-gcc-warnings.
1658 * src/getargs.c (command_line_location): Set parameters to void.
1659 * src/output.c (symbol_type_name_cmp): Make static.
1660 (symbols_by_type_name): Set parameters to void.
1661 (symbol_definitions_output): Remove unused parameter. Rename as...
1662 (prepare_symbol_definitions): this.
1663 (muscles_output): Move symbol_definitions_output to...
1664 (output): here as prepare_symbol_definitions.
1665 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 1666 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 1667
68c989de
DJ
16682008-11-17 Di-an Jan <dianj@freeshell.org>
1669
1670 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
1671 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
1672
23ce6f4c
AD
16732008-11-16 Akim Demaille <demaille@gostai.com>
1674
1675 Add missing $(EXEEXT).
1676 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
1677 "src/bison$(EXEEXT)".
1678 Reported by Di-an Jan.
1679
dd704c35
AD
16802008-11-15 Akim Demaille <demaille@gostai.com>
1681
1682 * TODO: Update.
1683
dab244d5
AD
16842008-11-15 Akim Demaille <demaille@gostai.com>
1685
1686 Formatting changes.
1687 * tests/input.at: here.
1688
4b4da9fb
AD
16892008-11-15 Akim Demaille <demaille@gostai.com>
1690
1691 Remove duplicate header inclusion.
1692 * src/LR0.c: here.
1693
4ea3f53d
AD
16942008-11-15 Akim Demaille <demaille@gostai.com>
1695
1696 * src/parse-gram.h, src/parse-gram.c: Regen.
1697
cb823b6f
AD
16982008-11-15 Akim Demaille <demaille@gostai.com>
1699
1700 Support parametric types.
b06df3c2
AD
1701
1702 There are two issues to handle: first scanning nested angle
1703 bracket pairs to support types such as std::pair< std::string,
1704 std::list<std::string> > >.
1705
1706 Another issue is to address idiosyncracies of C++: do not glue two
1707 closing angle brackets together (otherwise it's operator>>), and
1708 avoid sticking blindly a TYPE to the opening <, as it can result
1709 in '<:' which is a digraph for '['.
1710
cb823b6f
AD
1711 * src/scan-gram.l (brace_level): Rename as...
1712 (nesting): this.
1713 (SC_TAG): New.
1714 Implement support for complex tags.
b06df3c2 1715 (tag): Accept
cb823b6f
AD
1716 , but not <.
1717 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
1718 (b4_symbol_variant): Leave space around types as parameters.
1719 * examples/variant.yy: Use nested template types and leading ::.
1720 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
1721 Rename as...
1722 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
1723 * tests/c++.at: Test parametric types.
1724
7b6e6753
AD
17252008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1726
1727 Test token.prefix.
1728 This is not sufficient, but we test at least that the make_SYMBOL
1729 interface is not affected by token.prefix. A more general test
1730 will be implemented when the support of token.prefix is generalized
1731 to more skeletons.
b06df3c2 1732
7b6e6753
AD
1733 * tests/c++.at: One more variant test, using token.prefix.
1734
dddec537
AD
17352008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1736
1737 Test the make_TOKEN interface.
1738 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
1739 Factor the common code in yylex.
1740 Use it to test "%define lex_symbol".
1741
7d3e21ba
AD
17422008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1743
1744 Formatting change.
1745
4fc55348
AD
17462008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1747
1748 Simplify code for variants bench marks.
1749 * etc/bench.pl.in (&generate_grammar_list): Define and use
1750 location_type.
1751 Factor the common code in yylex.
1752
070e6509
AD
17532008-11-15 Akim Demaille <demaille@gostai.com>
1754
1755 Better error message.
1756 * bootstrap (find_tool): Fix the error message.
1757
0078681b
AD
17582008-11-15 Akim Demaille <demaille@gostai.com>
1759
1760 Update variant.yy to newest interface.
1761 * examples/variant.yy: Define lex_symbol.
1762 Adjust.
1763
ff084799
AD
17642008-11-15 Akim Demaille <demaille@gostai.com>
1765
1766 Don't use locations in variant.yy.
1767 * examples/variant.yy: Adjust to not using locations.
1768
b0d79ec6
AD
17692008-11-15 Akim Demaille <demaille@gostai.com>
1770
1771 Comment changes.
1772 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
1773 comments for the license.
1774
d4977ce3
AD
17752008-11-15 Akim Demaille <demaille@gostai.com>
1776
1777 Remove tests/Makefile.am.
1778 * tests/Makefile.am: Rename as...
1779 * tests/local.mk: this.
1780 * Makefile.am, configure.ac: Adjust.
1781 * Makefile.am (DISTCLEANFILES): Define.
1782 (maintainer-check, maintainer-xml-check, maintainer-push-check):
1783 Remove, we no longer need to bounce to the real targets.
1784
87f1149a
AD
17852008-11-15 Akim Demaille <demaille@gostai.com>
1786
1787 Comment changes.
1788
36415906
AD
17892008-11-15 Akim Demaille <demaille@gostai.com>
1790
1791 djgpp/local.mk.
1792 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
1793 * djgpp/local.mk: this new file.
1794
e2c2f696
AD
17952008-11-15 Akim Demaille <demaille@gostai.com>
1796
1797 Remove doc/Makefile.am.
1798 * doc/Makefile.am: Rename as...
1799 * doc/local.mk: this.
1800 Adjust paths
1801 * Makefile.am, configure.ac: Adjust.
1802 * Makefile.am (MOSTLYCLEANFILES): New.
1803 * src/local.mk: Adjust.
1804
2ead32e6
AD
18052008-11-15 Akim Demaille <demaille@gostai.com>
1806
1807 Move sc_tight_scope into maint.mk.
b06df3c2
AD
1808 It does not work, and I don't know how it was supposed to work: it
1809 seems to be looking for sources in the build tree. I just moved
1810 it at a better place, fixing it is still required.
1811
2ead32e6
AD
1812 * src/local.mk (echo): Remove.
1813 (sc_tight_scope): Move to...
1814 * maint.mk: here.
1815
2df9ec37
AD
18162008-11-15 Akim Demaille <demaille@gostai.com>
1817
1818 Regen.
1819 * src/parse-gram.h, src/parse-gram.h: Regen.
1820
0305d25e
AD
18212008-11-15 Akim Demaille <demaille@gostai.com>
1822
1823 Remove src/Makefile.am.
1824 * src/Makefile.am: Rename as...
1825 * src/local.mk: this.
1826 Prefix all the paths with src/.
1827 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
1828 (AM_CPPFLAGS): Find find in builddir/src.
1829 (YACC): Move the flags into...
1830 (AM_YFLAGS): here.
1831 * maint.mk (sc_tight_scope): Disable.
1832 It used to bounce to the version in src/Makefile.am which is now
1833 part of this very Makefile.
1834 * Makefile.am, configure.ac: Adjust.
1835 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
1836 include "..." to find files "here": we are no longer in src/, so
1837 qualify the includes with src/.
1838 * doc/Makefile.am (PREPATH): No longer include the top_builddir
1839 prefix.
1840 (.x.1): Adjust to be able to create src/foo from the top level
1841 Makefile, instead of going bounce to src/Makefile the creation of
1842 foo.
1843
5277c0a3
AD
18442008-11-15 Akim Demaille <demaille@gostai.com>
1845
1846 Remove useless variable.
1847 * doc/Makefile.am (srcsrcdir): Remove.
1848
6a5aa0cd
AD
18492008-11-15 Akim Demaille <demaille@gostai.com>
1850
1851 Remove data/Makefile.am.
1852 * data/Makefile.am: Rename as...
1853 * data/local.mk: this.
1854 Adjust paths.
1855 * Makefile.am, configure.ac: Adjust.
1856
7cb794dc
AD
18572008-11-15 Akim Demaille <demaille@gostai.com>
1858
1859 Remove etc/Makefile.am.
1860 * etc/Makefile.am: Rename as...
1861 * etc/local.mk: this.
1862 Adjust.
1863 * Makefile.am, configure.ac: Adjust.
1864
cd409e3b
AD
18652008-11-15 Akim Demaille <demaille@gostai.com>
1866
1867 Remove examples/local.mk.
1868 examples/calc++/Makefile.am might be interesting to keep as is, since
1869 it is an example in itself.
2df9ec37 1870
cd409e3b
AD
1871 * examples/Makefile.am: Rename as...
1872 * examples/local.mk: this.
1873 Adjust.
1874 * Makefile.am, configure.ac: Adjust.
1875
9a1e4214
AD
18762008-11-15 Akim Demaille <demaille@gostai.com>
1877
1878 Remove build-aux/Makefile.am.
1879 Recursive Makefiles are really way too slow, let's get rid of some of
1880 them.
2df9ec37 1881
9a1e4214
AD
1882 * build-aux/Makefile.am: Rename as...
1883 * build-aux/local.mk: this.
1884 Adjust paths.
1885 * Makefile.am, configure.ac: Adjust.
1886
0634493c
AD
18872008-11-15 Akim Demaille <demaille@gostai.com>
1888
1889 Provide convenience constructors for locations and positions.
1890 * data/location.cc (position::position): Accept file, line and
1891 column as arguments with default values.
1892 Always qualify initial line and column literals as unsigned.
1893 (location::location): Provide convenience constructors.
1894
fe1b448a
AD
18952008-11-15 Akim Demaille <demaille@gostai.com>
1896
b06df3c2
AD
1897 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
1898 token type.
fe1b448a
AD
1899 Using template buys us nothing, and makes it uselessly complex to
1900 construct a symbol. Besides, it could not be generalized to other
1901 languages, while make_FOO would work in C/Java etc.
2df9ec37 1902
fe1b448a
AD
1903 * data/lalr1.cc (b4_symbol_): New.
1904 (b4_symbol): Use it.
1905 (b4_symbol_constructor_declaration_)
1906 (b4_symbol_constructor_definition_): Instead of generating
1907 specializations of an overloaded template function, just generate
1908 several functions whose names are forged from the token names
1909 without the token.prefix.
1910 (b4_symbol_constructor_declarations): Generate them for all the
1911 symbols, not just by class of symbol type, now that instead of
1912 specializing a function template by the token, we generate a
1913 function named after the token.
1914 (b4_symbol_constructor_specialization_)
1915 (b4_symbol_constructor_specializations): Remove.
1916 * etc/bench.pl.in: Adjust to this new API.
1917
5679f311
AD
19182008-11-13 Akim Demaille <demaille@gostai.com>
1919
1920 %define token.prefix.
b06df3c2
AD
1921 Provide a means to add a prefix to the name of the tokens as
1922 output in the generated files. Because of name clashes, it is
1923 good to have such a prefix such as TOK_ that protects from names
1924 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 1925
5679f311
AD
1926 * data/bison.m4 (token.prefix): Empty by default.
1927 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
1928 * data/lalr1.cc (b4_symbol): Ditto.
1929
3204049e
AD
19302008-11-13 Akim Demaille <demaille@gostai.com>
1931
1932 Compute at M4 time some of the subtractions.
90290ce5 1933 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
1934 (b4_rhs_data): Use it.
1935
202598d3
AD
19362008-11-13 Akim Demaille <demaille@gostai.com>
1937
1938 symbol::token.
b06df3c2 1939 This allows the user to get the type of a token returned by yylex.
2df9ec37 1940
202598d3
AD
1941 * data/lalr1.cc (symbol::token): New.
1942 (yytoknum_): Define when %define lex_symbol, independently of
1943 %debug.
1944 (yytoken_number_): Move into...
1945 (symbol::token): here, since that's the only use.
1946 The other one is YYPRINT which was not officially supported
1947 by lalr1.cc, and anyway it did not work since YYPRINT uses this
1948 array under a different name (yytoknum).
1949
fc2476c7
AD
19502008-11-13 Akim Demaille <demaille@gostai.com>
1951
1952 YYERRCODE.
1953 * TODO (YYERRCODE): Mention the case of $undef.
1954
865f1e9f
AD
19552008-11-13 Akim Demaille <demaille@gostai.com>
1956
1957 TODO: YYPRINT.
1958 * TODO (YYPRINT): New.
1959
cb0b136a
AD
19602008-11-13 Akim Demaille <demaille@gostai.com>
1961
1962 Comment changes.
1963 * data/lalr1.cc, data/yacc.c: Fix the description of the
1964 yytranslate and yytoknum tables.
1965
2c086d29
AD
19662008-11-13 Akim Demaille <demaille@gostai.com>
1967
1968 Define make_symbol in the header.
b06df3c2
AD
1969 To reach good performances these functions should be inlined (yet
1970 this is to measure precisely). To this end they must be available
1971 to the caller.
2df9ec37 1972
2c086d29
AD
1973 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
1974 location_type with the class name.
1975 Since will now be output in the header, declare "inline".
1976 No longer use b4_symbol_constructor_specializations, but
1977 b4_symbol_constructor_definitions in the header.
1978 Don't call it in the *.cc file.
1979
1c4af381
AD
19802008-11-13 Akim Demaille <demaille@gostai.com>
1981
1982 Define yytranslate in the header for lex_symbol.
1983 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
1984 into the header file when using %define lex_symbol.
1985 (yytranslate_): Declare inline.
1986
e51b0a82
AD
19872008-11-13 Akim Demaille <demaille@gostai.com>
1988
b06df3c2
AD
1989 Define the constructors of symbol_type in
1990 b4_symbol_constructor_definitions.
e51b0a82 1991 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
1992 forthcoming patch will move elsewhere. Hence the interest of
1993 putting them together.
2df9ec37 1994
b06df3c2
AD
1995 The stack_symbol_type does not need to be moved, it is used only
1996 by the parser.
2df9ec37 1997
e51b0a82
AD
1998 * data/lalr1.cc: Move symbol_type and symbol_base_type
1999 constructors into...
2000 (b4_symbol_constructor_definitions): here.
2001 Adjust.
2002
78835571
AD
20032008-11-13 Akim Demaille <demaille@gostai.com>
2004
2005 Make it easier to move the definition of yytranslate_.
2006 Forthcoming changes will make it possible to use yytranslate_
2007 from outside the parser implementation file.
2df9ec37 2008
78835571
AD
2009 * data/lalr1.cc (b4_yytranslate_definition): New.
2010 Use it.
2011
c1e6c88c
AD
20122008-11-13 Akim Demaille <demaille@gostai.com>
2013
2014 Remove useless class specification.
2015 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2016 to refer to the class name to use a type defined by the class for
2017 arguments of member functions.
2018
4654b0c0
AD
20192008-11-13 Akim Demaille <demaille@gostai.com>
2020
2021 Finer input type for yytranslate.
2022 This patch is debatable: the tradition expects yylex to return an int
2023 which happens to correspond to token_number (which is an enum). This
2024 allows for instance to return characters (such as '*' etc.). But this
2025 goes against the stronger typing I am trying to have with the new
2026 lex interface which return a symbol_type. So in this case, feed
2027 yytranslate_ with a token_type.
2df9ec37 2028
4654b0c0
AD
2029 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2030 expect a token_type.
2031
dd735e4e
AD
20322008-11-13 Akim Demaille <demaille@gostai.com>
2033
2034 Honor lex-params in %define lex_symbol mode.
2035 * data/lalr1.cc: Use b4_lex_param.
2036
6659366c
AD
20372008-11-13 Akim Demaille <demaille@gostai.com>
2038
2039 Simplify names.
2040 * src/output.c (symbol_definitions_output): Rename symbol
2041 attributes type_name and has_type_name as type and has_type.
2042 * data/lalr1.cc: Adjust uses.
2043
e9805e57
AD
20442008-11-13 Akim Demaille <demaille@gostai.com>
2045
2046 Use b4_type_names for the union type.
b06df3c2
AD
2047 The union used to compute the size of the variant used to iterate
2048 over the type of all the symbols, with a lot of redundancy. Now
2049 iterate over the lists of symbols having the same type-name.
2df9ec37 2050
e9805e57
AD
2051 * data/lalr1.cc (b4_char_sizeof_): New.
2052 (b4_char_sizeof): Use it.
2053 Adjust to be called with a list of numbers instead of a single
2054 number.
2055 Adjust its caller for new-line issues.
2056
aea10ef4
AD
20572008-11-13 Akim Demaille <demaille@gostai.com>
2058
2059 Define the "identifier" of a symbol.
b06df3c2
AD
2060 Symbols may have several string representations, for instance if
2061 they have an alias. What I call its "id" is a string that can be
2062 used as an identifier. May not exist.
2df9ec37 2063
b06df3c2
AD
2064 Currently the symbols which have the "tag_is_id" flag set are
2065 those that don't have an alias. Look harder for the id.
2df9ec37 2066
aea10ef4
AD
2067 * src/output.c (is_identifier): Move to...
2068 * src/symtab.c (is_identifier): here.
2069 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2070 * src/output.c (symbol_definitions_output): Use it to define "id"
2071 and "has_id".
2072 Remove the definition of "tag_is_id".
2073 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2074 "tag_is_id" were used to produce code.
2075 We still use "tag" for documentation.
2076
2ea7730c
AD
20772008-11-11 Akim Demaille <demaille@gostai.com>
2078
2079 Locations are no longer required by lalr1.cc.
2080 * data/lalr1.cc (_b4_args, b4_args): New.
2081 Adjust all uses of locations to make them optional.
2082 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2083 (AT_CHECK_NAMESPACE): Check the use of locations.
2084 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2085 without locations with lalr1.cc.
2086 Test these cases.
2087 * tests/output.at: Check lalr1.cc with and without location
2088 support.
2089 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2090 Don't use locations.
2091
7ca2266a
AD
20922008-11-11 Akim Demaille <demaille@gostai.com>
2093
2094 AT_FULL_COMPILE.
2095 * tests/local.at (AT_FULL_COMPILE): New.
2096 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2097
1a7a65f9
AD
20982008-11-11 Akim Demaille <demaille@gostai.com>
2099
2100 Support parens in calc++.
2101 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2102 * examples/calc++/test (run): Check the expected output.
2103 Adjust callers.
2104 Check parens too.
2105
c944f7f2
AD
21062008-11-11 Akim Demaille <demaille@gostai.com>
2107
2108 Simplify lalr1.cc since %defines is mandatory.
2109 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2110
dada3cd1
AD
21112008-11-11 Akim Demaille <demaille@gostai.com>
2112
2113 TODO: yyfmt.
2114 * TODO (yysyntax_error): New item.
2115
422c18f4
AD
21162008-11-11 Akim Demaille <demaille@gostai.com>
2117
2118 Prefer M4 to CPP.
2119 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
2120 YYERROR_VERBOSE.
2121
a0ffc175
AD
21222008-11-11 Akim Demaille <demaille@gostai.com>
2123
2124 Support i18n of the parse error messages.
2125 * TODO (lalr1.cc/I18n): Remove.
2126 * data/lalr1.cc (yysyntax_error_): Support the translation of the
2127 error messages, as done in yacc.c.
2128 Stay within the yy* pseudo namespace.
2129
00a8a083
AD
21302008-11-11 Akim Demaille <demaille@gostai.com>
2131
2132 More TODO.
2133 * TODO (single stack, yysyntax_error): New.
2134
09277875
AD
21352008-11-11 Akim Demaille <demaille@gostai.com>
2136
2137 Make it possible to return a symbol_type from yylex.
2138 * data/lalr1.cc (b4_lex_symbol_if): New.
2139 (parse): When lex_symbol is defined, expected yylex to return the
2140 complete lookahead.
2141 * etc/bench.pl.in (generate_grammar_list): Extend to support this
2142 yylex interface.
2143 (bench_variant_parser): Exercise it.
2144
64c1b92a
AD
21452008-11-11 Akim Demaille <demaille@gostai.com>
2146
2147 Remove useless bench case.
2148 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
2149 no longer used.
2150
2722aa42
AD
21512008-11-11 Akim Demaille <demaille@gostai.com>
2152
2153 Improve display of directives.
2154 * etc/bench.pl.in (parse_term): Don't add useless eol.
2155
918eb7c5
AD
21562008-11-11 Akim Demaille <demaille@gostai.com>
2157
2158 Use string_cast in the bench.
2159 * etc/bench.pl.in (generate_grammar_list): Define and use
2160 string_cast.
2161
39be9022
AD
21622008-11-11 Akim Demaille <demaille@gostai.com>
2163
2164 Replace yychar with a Boolean.
2165 * data/lalr1.cc (parse::yychar): Replace by...
2166 (parse::yyempty): this.
2167
a2e3fa77
AD
21682008-11-11 Akim Demaille <demaille@gostai.com>
2169
2170 Factor the tables.
2171 * TODO: New item.
2172
aba12ad1
AD
21732008-11-11 Akim Demaille <demaille@gostai.com>
2174
2175 Let yytranslate handle the eof case.
2176 * data/lalr1.cc (yytranslate_): Handle the EOF case.
2177 Adjust callers.
2178 No longer expect yychar to be equal to yyeof_, rather, test the
2179 lookahead's (translated) kind.
2180
27cb5b59
AD
21812008-11-11 Akim Demaille <demaille@gostai.com>
2182
2183 yychar cannot be empty in yyerrlab.
2184 * TODO (yychar == yyempty_): New.
2185 * data/lalr1.cc: Remove the handling of this case.
2186 This eases forthcoming changes related to yychar and yytranslate.
2187
fce629c0
AD
21882008-11-11 Akim Demaille <demaille@gostai.com>
2189
2190 Bench: syntactic sugar for %define/#define.
2191 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
2192 (&bench_push_parser, bench_variant_parser): Use this feature.
2193 (&eat): New.
2194 Use it.
2195
ce671960
AD
21962008-11-11 Akim Demaille <demaille@gostai.com>
2197
2198 Less memory pressure on the "list" bench.
2199 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
2200 the values, to limit memory pressure.
2201
2873fdf8
AD
22022008-11-11 Akim Demaille <demaille@gostai.com>
2203
2204 Introduce make_symbol.
b06df3c2
AD
2205 make_symbol provides a means to construct a full symbol (kind,
2206 value, location) in a single shot. It is meant to be a Symbol
2207 constructor, parameterized by the symbol kind so that overloading
2208 would prevent incorrect kind/value pairs. Unfortunately
2209 parameterized constructors do not work well in C++ (unless the
2210 parameter also appears as an argument, which is not acceptable),
2211 hence the use of a function instead of a constructor.
2df9ec37 2212
2873fdf8
AD
2213 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2214 (b4_symbol_constructor_declarations)
2215 (b4_symbol_constructor_specialization_)
2216 (b4_symbol_constructor_specializations)
2217 (b4_symbol_constructor_definition_)
2218 (b4_symbol_constructor_definitions): New.
2219 Use them where appropriate to generate declaration, declaration of
2220 the specializations, and implementations of the templated
2221 overloaded function "make_symbol".
2222 (variant::variant): Always define a default ctor.
2223 Also provide a copy ctor.
2224 (symbol_base_type, symbol_type): New ctor overloads for value-less
2225 symbols.
2226 (symbol_type): Now public, so that functions such as yylex can use
2227 it.
2228
8be046d7
AD
22292008-11-11 Akim Demaille <demaille@gostai.com>
2230
2231 Inform m4 whether a tag is a valid id.
2232 * src/output.c (is_identifier): New.
2233 (symbol_definitions_output): Use it to define tag_is_id.
2234 But maybe this should be done at m4 level?
2235
de62edee
AD
22362008-11-11 Akim Demaille <demaille@gostai.com>
2237
2238 Test 214 was failing: it greps with a pattern containing [ ]*
2239 which obviously meant to catch spaces and tabs, but contained only
2240 spaces. Tabulations in sources are a nuisance, so to simplify the
2241 matter, get rid of all the tabulations in the Java sources. The
2242 other skeletons will be treated equally later.
2243
2244 * data/java.m4, data/lalr1.java: Untabify.
2245 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
2246 tabulations are no longer generated.
2247
905f0697
PB
22482008-11-11 Paolo Bonzini <bonzini@gnu.org>
2249
2250 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2251 * configure.ac: Adjust usage.
2252 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2253 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2254 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2255
09ccae9b
DJ
22562008-11-10 Di-an Jan <dianj@freeshell.org>
2257
2258 Workaround Java's ``code too large'' problem for parser tables
2259 in most cases, by using one function per initialization.
2260 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
2261 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
2262 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
2263 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
2264 (yytname_): Use b4_typed_parser_table.
2265 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
2266 ``code too large'' error.
2267
1979121c
DJ
22682008-11-10 Di-an Jan <dianj@freeshell.org>
2269
2270 * NEWS: Document them.
de62edee 2271
1979121c
DJ
2272 General Java skeleton improvements.
2273 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
2274 using gcj < 4.3 in the testsuite, according to comments in
2275 gnulib/m4/javacomp.m4.
2276 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
2277 location_type, position_type): Remove extraneous brackets from
2278 b4_percent_define_default.
2279 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
2280 m4_define and m4_define_default.
2281 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
2282 which marks the end of user code with appropriate syncline, like all
2283 the other skeletons.
2284 (b4_user_post_prologue): Add. Don't silently drop.
2285 (yylex): Remove.
2286 (parse): Inline yylex.
2287 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
2288 (%{...%}): Fix typo of %code imports.
2289 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
2290
2291 Support annotations on parser class with %define annotations.
2292 * data/lalr1.java (annotations): Add to parser class modifier.
2293 * doc/bison.texinfo (Java Parser Interface): Document
2294 %define annotations.
2295 (Java Declarations Summary): Document %define annotations.
2296 * tests/java.at (Java parser class modifiers): Test annotations.
2297
2298 Do not generate code for %error-verbose unless requested.
2299 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
2300 Make private. Make conditional on %error-verbose.
2301 (getErrorVerbose, setErrorVerbose): New.
2302 (yytnamerr_): Make conditional on %error-verbose.
2303 (yysyntax_error): Make some code conditional on %error-verbose.
2304 * doc/bison.texinfo (Java Bison Interface): Remove the parts
2305 about %error-verbose having no effect.
2306 (getErrorVerbose, setErrorVerbose): Document.
2307
2308 Move constants for token names to Lexer interface.
2309 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
2310 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
2311 (parse): Qualify EOF to Lexer.EOF.
2312 * doc/bison.texinfo (Java Parser Interface): Move documentation of
2313 EOF and token names to Java Lexer Interface.
2314 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
2315
2316 Make yyerror public.
2317 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
2318 (yyerror): Change to public. Add Javadoc comments. Use longer
2319 parameter names. Make the body rather than the declarator
2320 conditional on %locations.
2321 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
2322
2323 Allow user to add code to the constructor with %code init.
2324 * data/java.m4 (b4_init_throws): New, for %define init_throws.
2325 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
2326 Add %code init to the front of the constructor body.
2327 * doc/bison.texinfo (YYParser.YYParser): Document %code init
2328 and %define init_throws.
2329 (Java Declarations Summary): Document %code init and
2330 %define init_throws.
2331 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
2332 (Java constructor init and init_throws): Add tests.
de62edee 2333
42f832d6
AD
23342008-11-10 Akim Demaille <demaille@gostai.com>
2335
2336 Update TODO.
2337 * TODO (-D): is implemented.
2338 (associativity): Same precedence must have the same associativity.
2339 For instance, how can a * b / c be parsed if * is %left and / is
2340 %right?
2341 (YYERRORCODE, YYFAIL, YYBACKUP): New.
2342
247efe34
AD
23432008-11-10 Akim Demaille <demaille@gostai.com>
2344
2345 Formatting changes.
2346
5d731440
AD
23472008-11-10 Akim Demaille <demaille@gostai.com>
2348
2349 More information about the symbols.
2350 * src/output.c (type_names_output): Document all the symbols,
2351 including those that don't have a type-name.
2352 (symbol_definitions_output): Define "is_token" and
2353 "has_type_name".
2354 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
2355 type-name, now that they are defined too in b4_type_names.
2356
21db118b
AD
23572008-11-10 Akim Demaille <demaille@gostai.com>
2358
2359 Regen.
2360
6ed15cde
AD
23612008-11-10 Akim Demaille <demaille@gostai.com>
2362
2363 Make parser::yytranslate static.
b06df3c2
AD
2364 Small speedup (1%) on the list grammar. And makes yytranslate_
2365 available in non member functions.
de62edee 2366
6ed15cde
AD
2367 * data/lalr1.cc (yytranslate_): Does not need to be a instance
2368 function.
2369
30bb2edc
AD
23702008-11-10 Akim Demaille <demaille@gostai.com>
2371
2372 Avoid trailing spaces.
2373 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
2374 * data/lalr1.cc: Don't indent before rule and symbol actions, as
2375 they can be empty, and anyway this incorrectly indents the first
2376 action.
2377
b3a28fd4
AD
23782008-11-10 Akim Demaille <demaille@gostai.com>
2379
2380 Comment changes.
2381
914202bd
AD
23822008-11-10 Akim Demaille <demaille@gostai.com>
2383
2384 Use "enum" for integral constants.
2385 This is just nicer to read, I observed no speedup.
de62edee 2386
914202bd
AD
2387 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
2388 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
2389 (yyuser_token_number_max_, yyundef_token_): Move into...
2390 (yytranslate_): here.
2391
c17f9a4a
AD
23922008-11-10 Akim Demaille <demaille@gostai.com>
2393
2394 Shortcuts in bench directives.
2395 * etc/bench.pl.in (parse_dirs): New.
2396 Use it.
2397 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
2398 Create the benches in "benches/".
2399
b9855ea5
AD
24002008-11-10 Akim Demaille <demaille@gostai.com>
2401
2402 Formatting changes.
2403 * data/lalr1.cc: here.
2404
6e097787
AD
24052008-11-10 Akim Demaille <demaille@gostai.com>
2406
2407 Adjust verbose message to using emacs.
2408 * etc/bench.pl.in: Inform compilation-mode when we change the
2409 directory.
2410 (generate_grammar_list): Recognize %define "variant" in addition
2411 to %define variant.
2412
4c3cc7da
AD
24132008-11-10 Akim Demaille <demaille@gostai.com>
2414
2415 Classify symbols by type-name.
2416 * src/uniqstr.h (UNIQSTR_CMP): New.
2417 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
2418 (type_names_output): New.
2419 (muscles_output): Use it.
2420 * data/lalr1.cc (b4_symbol_action_): Remove.
2421 (b4_symbol_case_, b4_type_action_): New.
2422 Adjust uses of b4_symbol_action_ to use b4_type_action_.
2423
d69c9694
AD
24242008-11-10 Akim Demaille <demaille@gostai.com>
2425
2426 Change the handling of the symbols in the skeletons.
2427 Before we were using tables which lines were the symbols and which
2428 columns were things like number, tag, type-name etc. It is was
2429 difficult to extend: each time a column was added, all the numbers had
2430 to be updated (you asked for colon $2, not for "tag"). Also, it was
2431 hard to filter these tables when only a subset of the symbols (say the
2432 tokens, or the nterms, or the tokens that have and external number
2433 *and* a type-name) was of interest.
de62edee 2434
d69c9694
AD
2435 Now instead of monolithic tables, we define one macro per cell. For
2436 instance "b4_symbol(0, tag)" is a macro name which contents is
2437 self-decriptive. The macro "b4_symbol" provides easier access to
2438 these cells.
de62edee 2439
d69c9694
AD
2440 * src/output.c (type_names_output): Remove.
2441 (symbol_numbers_output, symbol_definitions_output): New.
2442 (muscles_output): Call them.
2443 (prepare_symbols): Define b4_symbols_number.
2444
5263bea9
AD
24452008-11-10 Akim Demaille <demaille@gostai.com>
2446
2447 --trace=muscles
2448 * src/getargs.h, src/getargs.c (trace_muscle): New.
2449 (trace_types, trace_args): Support it.
2450 * src/output.c (output_skeleton): Use it.
2451
4175f6bb
AD
24522008-11-10 Akim Demaille <demaille@gostai.com>
2453
2454 muscles_output.
2455 * src/output.c (muscles_output): New, extracted from...
2456 (output_skeleton): here.
2457 Adjust.
2458
1de69d6a
AD
24592008-11-10 Akim Demaille <demaille@gostai.com>
2460
2461 Formatting changes.
2462
36db78a7
AD
24632008-11-10 Akim Demaille <demaille@gostai.com>
2464
2465 Update the variant example.
2466 * examples/variant.yy: Formatting changes.
2467 One stage build.
2468
e5eb92e7
AD
24692008-11-10 Akim Demaille <demaille@gostai.com>
2470
2471 Support constructor with an argument.
2472 This improves the "list" bench by 2%.
de62edee 2473
e5eb92e7
AD
2474 * data/lalr1.cc (variant::build): Add an overloaded version with
2475 an argument.
2476 * tests/c++.at (AT_CHECK_VARIANT): Check it.
2477
76307410
AD
24782008-11-10 Akim Demaille <demaille@gostai.com>
2479
2480 Test variants.
2481 * tests/c++.at (AT_CHECK_VARIANTS): New.
2482 Use it with and without %define assert.
2483
d78f0ac9
AD
24842008-11-10 Akim Demaille <demaille@gostai.com>
2485
2486 Add %precedence support.
2487 Unfortunately it is not possible to reuse the %prec directive. This
2488 is because to please POSIX, we do not require to end the rules with a
2489 semicolon. As a result,
de62edee 2490
d78f0ac9 2491 foo: bar %prec baz
de62edee 2492
d78f0ac9
AD
2493 is ambiguous: either a rule which precedence is that of baz, or a rule,
2494 and then a declaration of the precedence of the token baz.
de62edee 2495
d78f0ac9
AD
2496 * doc/bison.texinfo: Document %precedence.
2497 (Precedence Only): New.
2498 * src/assoc.h, src/assoc.c (precedence_assoc): New.
2499 * src/conflicts.c (resolve_sr_conflict): Support it.
2500 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
2501 Parse it.
2502 * tests/calc.at: Use %precedence for NEG.
2503 * tests/conflicts.at (%precedence does not suffice)
2504 (%precedence suffices): New tests.
2505
c85be41a
AD
25062008-11-09 Akim Demaille <demaille@gostai.com>
2507
2508 Make benches in a sub dirs.
2509 * etc/bench.pl.in ($dir): New.
2510 Use it.
2511 Check the use of constructors with an argument.
2512 (bench_variant_parser): Fix.
2513
db65ca1f
AD
25142008-11-09 Akim Demaille <demaille@gostai.com>
2515
2516 fix eof condition
2517
9b0efa5b
AD
25182008-11-09 Akim Demaille <demaille@gostai.com>
2519
2520 Fix --help.
2521
432ac57a
AD
25222008-11-09 Akim Demaille <demaille@gostai.com>
2523
2524 Require the generation of parse-gram.output.
2525 * src/Makefile.am (YACC): Pass --report=all.
2526
deef2a0a
AD
25272008-11-09 Akim Demaille <demaille@gostai.com>
2528
2529 Formatting changes.
2530
df72984a
AD
25312008-11-09 Akim Demaille <demaille@gostai.com>
2532
2533 Update TODO.
2534 * TODO: Remove obsolete items.
2535 Update others.
2536
f10e19fd
AD
25372008-11-09 Akim Demaille <demaille@gostai.com>
2538
2539 Enhance bench.pl.
2540 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
2541 (@token, $grammar, $bench): New.
2542 (generate_grammar_variant): Rename as...
2543 (generate_grammar_list): this.
2544 (generate_grammar): Adjust.
2545 (bench_grammar): Rename as...
2546 (bench): this.
2547 Use it in the various bench-marking routines.
2548 (-b, -g): New options.
2549
5de9c593
AD
25502008-11-09 Akim Demaille <demaille@gostai.com>
2551
2552 Use a static hierarchy for symbols in the C++ parser.
2553 * data/lalr1.cc (symbol_base_type, symbol_type)
2554 (stack_symbol_type): Make it a static hierarchy.
2555 Adjust dependencies.
2556
757f8f98
AD
25572008-11-09 Akim Demaille <demaille@gostai.com>
2558
2559 bench.pl -d, --directive.
2560 * etc/bench.pl.in (@directive): New.
2561 (&bench_grammar): Use it.
2562 (&bench_list_grammar): New, to provide access to the "variant"
2563 grammar.
2564 Use it.
2565 (getopts): Support -d, --directive.
2566
d3be4f6d
AD
25672008-11-09 Akim Demaille <demaille@gostai.com>
2568
2569 Use inline for small operations.
2570 * data/lalr1.cc (symbol_base_type, symbol_type)
2571 (stack_symbol_type): Declare constructor and other operations as
2572 inline.
2573 (yy_destroy_): Inline.
2574
1f7d007b
AD
25752008-11-09 Akim Demaille <demaille@gostai.com>
2576
2577 Introduce a hierarchy for symbols.
2578 * data/lalr1.cc (symbol_base_type, symbol_type): New.
2579 (data_type): Rename as...
2580 (stack_symbol_type): this.
2581 Derive from symbol_base_type.
2582 (yy_symbol_value_print_): Merge into...
2583 (yy_symbol_print_): this.
2584 Rename as...
2585 (yy_print_): this.
2586 (yydestruct_): Rename as...
2587 (yy_destroy_): this.
2588 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
2589 (parser::parse): yyla is now of symbol_type.
2590 Use its type member instead of yytoken.
2591
bc0b0477
AD
25922008-11-09 Akim Demaille <demaille@gostai.com>
2593
2594 Rename data_type and stack_symbol_type.
2595 * data/lalr1.cc (data_type): Rename as...
2596 (stack_symbol_type): this.
2597
57295d14
AD
25982008-11-09 Akim Demaille <demaille@gostai.com>
2599
2600 Handle semantic value and location together.
2601 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
2602 yydata.value and yydata.location.
2603 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
2604 (YY_SYMBOL_PRINT): Now take semantic value and location as a
2605 single arg.
2606 Adjust all callers.
2607 (yydestruct_): New overload for a stack symbol.
2608
e9b0834e
AD
26092008-11-09 Akim Demaille <demaille@gostai.com>
2610
2611 Push a complete symbol, not connected parts.
2612 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
2613 state, value and location.
2614 Adjust callers.
2615
6082531a
AD
26162008-11-09 Akim Demaille <demaille@gostai.com>
2617
2618 Agregate yylval and yylloc.
2619 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
2620 (parser::yyla): this.
2621
33c195cc
AD
26222008-11-09 Akim Demaille <demaille@gostai.com>
2623
2624 Rely on the state stack to display reduction traces.
b06df3c2
AD
2625 To display rhs symbols before a reduction, we used information
2626 about the rule reduced, which required the tables yyrhs and
2627 yyprhs. Now use rely only on the state stack to get the same
2628 information.
de62edee 2629
33c195cc
AD
2630 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
2631 Use them.
2632 (parser::yyrhs_, parser::yyprhs_): Remove.
2633 (parser::yy_reduce_print_): Use the state stack.
2634
e1f93869
AD
26352008-11-09 Akim Demaille <demaille@gostai.com>
2636
2637 Fuse yyval and yyloc into yylhs.
2638 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
2639 yylhs.
2640 (parse): Replace yyval and yyloc with yylhs.value and
2641 yylhs.location.
2642 After a user action, compute yylhs.state earlier.
2643 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
2644 fresh error_token.
2645
2935744b
DJ
26462008-11-09 Di-an Jan <dianj@freeshell.org>
2647
2648 Remove unused variable.
2649 * src/output.c (type_names_output): Remove unused variable sep.
2650
bbf9ca37
PB
26512008-11-09 Paolo Bonzini <bonzini@gnu.org>
2652
2653 Change tests/output.at quoting.
2654 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
2655 expanding arguments.
2656
d9a9b96b
JD
26572008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2658
2659 Don't add a semicolon to actions for %skeleton or %language.
2660 It breaks Java test cases as reported by Akim Demaille.
2661 * src/scan-code.l: Implement.
2662
51365192
JD
26632008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2664
2665 Clean up %skeleton and %language priority implementation.
2666 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2667 remove static qualifier because others will soon need to see it.
2668 (language_prio): Likewise.
2669 (getargs): Use command_line_prio rather than 0.
2670 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2671 enum fields.
2672 (skeleton_prio): Extern it.
2673 (language_prio): Extern it.
2674 * src/parse-gram.y: Use grammar_prio rather than 1.
2675
9380cfd0
AD
26762008-11-07 Akim Demaille <demaille@gostai.com>
2677
2678 Moving push traces into yypush_.
2679 * data/lalr1.cc (yypush_): Now takes a optional trace message.
2680 Adjust all uses.
2681
8901f32e
AD
26822008-11-07 Akim Demaille <demaille@gostai.com>
2683
2684 The single-stack C++ parser is now the standard one.
2685 * data/lalr1.cc: Rename as...
2686 * data/lalr1-split.cc: this.
2687 * data/lalr1-fusion.cc: Rename as...
2688 * data/lalr1.cc: this.
2689 * etc/bench.pl.in: Adjust.
2690
8cdabf02
AD
26912008-11-07 Akim Demaille <demaille@gostai.com>
2692
2693 Avoid empty-if warnings.
2694 Reported by Quentin Hocquet.
de62edee 2695
8cdabf02
AD
2696 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
2697 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
2698
5a893c2b
AD
26992008-11-07 Akim Demaille <demaille@gostai.com>
2700
2701 Pass command line location to skeleton_arg and language_argmatch.
2702 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2703 The location argument is now mandatory.
2704 Adjust all dependencies.
2705 (getargs): Use command_line_location.
2706
58697c6d
AD
27072008-11-07 Akim Demaille <demaille@gostai.com>
2708
2709 -D, --define.
2710 * src/getargs.c (usage): Document -D.
2711 Fix help string for --locations.
2712 (command_line_location): New.
2713 (short_options, long_options, getargs): Support -D, --define.
2714 (getargs): Move -d support at the right place.
2715 * doc/bison.texinfo (Bison Options): Update.
2716 * tests/input.at (%define, --define): New.
2717
9fe5a457
AD
27182008-11-07 Akim Demaille <demaille@gostai.com>
2719
2720 Initialize the muscle table before parsing the command line.
2721 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2722 (getargs): Define file_name.
2723 * src/main.c (main): Initialize muscle_tab before calling
2724 getargs.
2725 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2726 its value is not available yet.
2727
56c5eca9
AD
27282008-11-07 Akim Demaille <demaille@gostai.com>
2729
2730 Locations without columns for command line arguments.
2731 * src/location.c (location_print): Don't display negative columns.
2732 * src/location.h: Document this.
2733
9b9e0a7d
AD
27342008-11-07 Akim Demaille <demaille@gostai.com>
2735
2736 Fix --help.
2737 * src/getargs.c (usage): Fix help string for -W.
2738
74eae918
AD
27392008-11-07 Akim Demaille <demaille@gostai.com>
2740
2741 Handle more general types of option arguments.
2742 * build-aux/cross-options.pl: The argument ends at the first
2743 space, not the first non-symbol character.
2744 Use @var for each word appearing the argument description.
2745
a3d4c6fb
AD
27462008-11-07 Akim Demaille <demaille@gostai.com>
2747
2748 Destroy the variants that remain on the stack in case of error.
2749 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
2750 destructor.
2751 Display the value only if yymsg is nonnull.
2752 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
2753
2d32fc9f
AD
27542008-11-07 Akim Demaille <demaille@gostai.com>
2755
2756 Add "%define assert" to variants.
2757 This is used to help the user catch cases where some value gets
2758 ovewritten by a new one. This should not happen, as this will
2759 probably leak.
de62edee 2760
2d32fc9f
AD
2761 Unfortunately this uncovered a bug in the C++ parser itself: the
2762 lookahead value was not destroyed between two calls to yylex. For
2763 instance if the previous lookahead was a std::string, and then an int,
2764 then the value of the std::string was correctly taken (i.e., the
2765 lookahead was now an empty string), but std::string structure itself
2766 was not reclaimed.
de62edee 2767
2d32fc9f
AD
2768 This is now done in variant::build(other&) (which is used to take the
2769 value of the lookahead): other is not only stolen from its value, it
2770 is also destroyed. This incurs a new performance penalty of a few
2771 percent, and union becomes faster again.
de62edee 2772
2d32fc9f
AD
2773 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
2774 (b4_variant_if): New.
2775 (variant::built): New.
2776 Use it whereever the status of the variant changes.
2777 * etc/bench.pl.in: Check the penalty of %define assert.
2778
f6038cb8
AD
27792008-11-07 Akim Demaille <demaille@gostai.com>
2780
2781 Use "%define variant" in bench.pl.
2782 * etc/bench.pl.in: No longer use the pseudo directive %variants,
2783 just use %define variants.
2784
ccde1f98
AD
27852008-11-07 Akim Demaille <demaille@gostai.com>
2786
2787 Regen.
2788 * src/parse-gram.h, src/parse-gram.c: Regen.
2789
58bd33b7
JD
27902008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2791
2792 Fix user actions without a trailing semicolon.
2793 Reported by Sergei Steshenko at
2794 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2795 * THANKS (Sergei Steshenko): Add.
2796 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2797 * tests/regression.at (Fix user actions without a trailing semicolon):
2798 New test case.
2799
639867b5
AD
28002008-11-04 Akim Demaille <demaille@gostai.com>
2801
2802 Use b4_copyright_years.
2803 * data/yacc.c (b4_copyright_years): New.
2804 Fix its value according to the comments in the file.
2805 Use it and undefine it.
2806
3c262606
AD
28072008-11-04 Akim Demaille <demaille@gostai.com>
2808
2809 Formatting changes.
2810 * data/lalr1-fusion.cc, src/parse-gram.y: here.
2811
a2b93d52
AD
28122008-11-04 Akim Demaille <demaille@gostai.com>
2813
2814 Formatting changes.
2815 * data/lalr1-fusion.cc: here.
2816
3a2803df
AD
28172008-11-04 Akim Demaille <demaille@gostai.com>
2818
2819 Use strict on bench.pl.
2820 * etc/bench.pl.in (&run, &generate_grammar): New.
2821 Rename the grammar generating functions for consistency.
2822 Change the interface so that the list of benches to run is passed
2823 as (optionless) arguments.
2824 (&compile): Use &run.
2825
a0d4650a
AD
28262008-11-04 Akim Demaille <demaille@gostai.com>
2827
2828 Remove spurious initial empty lines.
2829 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2830 * data/yacc.c: End the @output lines with an @.
2831
cac9e09b
AD
28322008-11-04 Akim Demaille <demaille@gostai.com>
2833
2834 Improve the display of sizes.
2835 * etc/bench.p.in: Higher precision.
2836 Sort by decreasing size.
2837
4af4348a
AD
28382008-11-04 Akim Demaille <demaille@gostai.com>
2839
2840 Don't memcpy C++ structures.
2841 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
2842 arguments.
2843 (variant::build): New overload for
2844 copy-construction-that-destroys.
2845 (variant::swap): New.
2846 (parser::yypush_): Use it in variant mode.
2847
ef05c4d6
AD
28482008-11-04 Akim Demaille <demaille@gostai.com>
2849
2850 Better defaults for bench.pl.
2851 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
2852 default values.
2853 Adjust &verbose uses.
2854 (-q, --quiet): New.
2855
9718cfa9
AD
28562008-11-04 Akim Demaille <demaille@gostai.com>
2857
2858 Make variant.yy more complex.
2859 std::list cannot be copied via memcpy, they are more demanding than
2860 std::string. Use one std::list to strengthen the test.
de62edee 2861
9718cfa9
AD
2862 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
2863 Adjust.
2864 Create a list of strings, instead of a single large string.
2865
a6df593d
AD
28662008-11-04 Akim Demaille <demaille@gostai.com>
2867
2868 bench.pl --bench.
2869 * etc/bench.pl.in (--bench, $bench): New.
2870
006a0303
AD
28712008-11-04 Akim Demaille <demaille@gostai.com>
2872
2873 Sort methods.
2874 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
2875 Define it after as().
2876
faef3466
AD
28772008-11-04 Akim Demaille <demaille@gostai.com>
2878
2879 Useless parens.
2880 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
2881
2141aded
AD
28822008-11-04 Akim Demaille <demaille@gostai.com>
2883
2884 Issue missing synclines after user actions.
2885 * data/c.m4 (b4_case): Issue synclines on the output file.
2886
e426d17b
AD
28872008-11-04 Akim Demaille <demaille@gostai.com>
2888
2889 Remove trailing empty line.
2890 * data/lalr1-fusion.cc: Don't add an empty line after the user's
2891 epilogue.
2892
a9ce3f54
AD
28932008-11-04 Akim Demaille <demaille@gostai.com>
2894
2895 Fix output of copyright years.
2896 * data/bison.m4 (b4_copyright): Fix the indentation of the
2897 copyright year paragraph.
2898 Use b4_copyright_years when no years are given.
2899 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
2900 (b4_copyright_years): New.
2901 Use it.
2902
59c544c2
AD
29032008-11-04 Akim Demaille <demaille@gostai.com>
2904
2905 Avoid the spurious initial empty line.
2906 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
2907 the end of @output request to suppress the empty line that
2908 results.
2909
96b15448
AD
29102008-11-04 Akim Demaille <demaille@gostai.com>
2911
2912 Remove parser::rhs_number_type.
2913 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
2914 (yyrhs_): Use b4_table_define.
2915
f0633174
AD
29162008-11-04 Akim Demaille <demaille@gostai.com>
2917
2918 Fix iteration type.
2919 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
2920
417b8004
AD
29212008-11-04 Akim Demaille <demaille@gostai.com>
2922
2923 Factor the declaration of the integer tables.
2924 * data/lalr1-fusion.cc (b4_table_define): New.
2925 Use it.
2926
1a5246c6
AD
29272008-11-03 Akim Demaille <demaille@gostai.com>
2928
2929 Fix indentation of tables in lalr1.cc
2930 * data/lalr1-fusion.cc: Fix the indentation.
2931
f8a95c9c
AD
29322008-11-03 Akim Demaille <demaille@gostai.com>
2933
2934 Destroy the lhs symbols after reduction.
2935 * data/lalr1-fusion.cc (parse): After the user action, when in
2936 variant mode, destroy the lhs symbols.
2937
d7f4d823
AD
29382008-11-03 Akim Demaille <demaille@gostai.com>
2939
2940 Simplify yysyntax_error_ use.
2941 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
2942 type, but make it unnamed in the declaration when it is not used.
2943
8b9c89fb
AD
29442008-11-03 Akim Demaille <demaille@gostai.com>
2945
2946 Let yy::variant::build return an lvalue.
2947 * data/lalr1-fusion.cc (variant::build): Return a reference to the
2948 object.
2949
83243c24
AD
29502008-11-03 Akim Demaille <demaille@gostai.com>
2951
2952 Define yy::variant only when needed.
2953 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
2954 used.
2955
429b4848
AD
29562008-11-03 Akim Demaille <demaille@gostai.com>
2957
2958 Bench the three-stack lalr1.cc.
2959 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
2960 one-stack one.
2961
414c76a4
AD
29622008-11-03 Akim Demaille <demaille@gostai.com>
2963
2964 Fail on parse error in calc++.
2965 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
2966 status.
2967 * examples/calc++/test ($me, $number, $exit, run): New.
2968 Use them to propagate errors to the exit status.
2969
8a5783fd
AD
29702008-11-03 Akim Demaille <demaille@gostai.com>
2971
2972 Don't specify the skeleton twice in the example.
2973 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
2974 file does what is needed.
2975
0cc5bead
AD
29762008-11-03 Akim Demaille <demaille@gostai.com>
2977
2978 bench: Improve output.
2979 * etc/bench.pl.in (bench_grammar): Tune the printf format.
2980
5b421a4e
AD
29812008-11-03 Akim Demaille <demaille@gostai.com>
2982
2983 bench: check impact of %debug on variants.
2984 * etc/bench.pl.in (variant_grammar): Fix the computation of
2985 $variant.
2986 Generate a grammar file that can work with or without %debug.
2987 Do use the @directive.
2988 (bench_variant_parser): Check impact of %debug.
2989 (@directives): Rename all the occurrences to...
2990 (@directive): this, for consistency.
2991
d11ee647
AD
29922008-11-03 Akim Demaille <demaille@gostai.com>
2993
2994 bench: report the size too.
2995 * etc/bench.pl.in ($iterations): Defaults to -3.
2996 (&bench_grammar): Require hireswallclock.
2997 Compute and display the size of the result.
2998 More comments.
2999
e1b74b92
AD
30002008-11-03 Akim Demaille <demaille@gostai.com>
3001
3002 bench: More use of the verbosity level.
3003 * etc/bench.pl.in ($verbose, &verbose): New.
3004 Use them.
3005 More POD documentation.
3006
7e5f9c54
AD
30072008-11-03 Akim Demaille <demaille@gostai.com>
3008
3009 bench.pl: a command line interface
3010 * etc/bench.pl.in: More doc.
3011 Some fixes in the documentation.
3012 ($cflags, $iterations, &help, &getopt): New.
3013 Use them.
3014 (&variant_grammar): Let the number of stages be 10 times what is
3015 specified.
3016
7109a18d
AD
30172008-11-03 Akim Demaille <demaille@gostai.com>
3018
3019 Bench the use of Boost.Variants.
3020 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3021 New.
3022 (&compile): Be ready to compile C++ parsers.
3023 (&bench_push_parser): Move debug information to the outermost
3024 level.
3025 * THANKS: Add Michiel De Wilde.
3026
922730fe
AD
30272008-11-03 Akim Demaille <demaille@gostai.com>
3028
3029 bench.pl: Pass directives as a list instead of as a string.
3030 * etc/bench.pl.in (&directives): New.
3031 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3032 directives.
3033 (&triangular_grammar): Do use the directives (were ignored).
3034 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3035 directives.
3036
7484f1d4
AD
30372008-11-03 Akim Demaille <demaille@gostai.com>
3038
3039 Improve genericity of bench.pl.
3040 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3041 argument.
3042 (&bench_push_parser): New.
3043 Call it.
3044
15129f25
AD
30452008-11-03 Akim Demaille <demaille@gostai.com>
3046
3047 Add documentation to bench.pl.
3048 * etc/bench.pl.in: Comment changes.
3049
0e0ed236
AD
30502008-11-03 Akim Demaille <demaille@gostai.com>
3051
3052 Fuse the three stacks into a single one.
de62edee 3053
b06df3c2
AD
3054 In order to make it easy to perform benchmarks to ensure that
3055 there are no performance loss, lalr1.cc is forked into
3056 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3057 lalr1.cc.
3058
3059 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3060 exercized by the test suite, the user must install a symbolic link
3061 from lalr1.cc to it.
de62edee 3062
b06df3c2
AD
3063 Instead of having three stacks (state, value, location), use a
3064 stack of triples. This considerably simplifies the code (and it
3065 will be easier not to require locations as currently does the C++
3066 parser), and also gives a 10% speedup according to
3067 etc/bench (probably mainly since memory allocation is done once
3068 instead of three times).
de62edee 3069
0e0ed236
AD
3070 Another motivation is to make it easier to destruct properly
3071 semantic values: now that they are bound to their state (hence
3072 symbol type) it will be easier to call the appropriate destructor.
de62edee 3073
0e0ed236 3074 These changes should probably benefit the C parser too.
de62edee 3075
b06df3c2
AD
3076 * data/lalr1.cc: Copy as...
3077 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
3078 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3079 from c++.m4.
3080 (state_stack_type, semantic_stack_type, location_stack_type)
3081 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3082 (data_type, stack_type, yystack_): New.
3083 (YYLLOC_DEFAULT, yypush_): Adjust.
3084 (yyerror_range): Now based on data_type, not location_type.
3085
7dedf26e
AD
30862008-11-03 Akim Demaille <demaille@gostai.com>
3087
3088 Push the state, value, and location at the same time.
3089 This is needed to prepare a forthcoming patch that fuses the three
3090 stacks into one.
de62edee 3091
7dedf26e
AD
3092 * data/lalr1.cc (parser::yypush_): New.
3093 (parser::yynewstate): Change the semantics: instead of arriving to
3094 this label when value and location have been pushed, but yystate
3095 is to be pushed on the state stack, now the three of them must
3096 have been pushed before. yystate still must be the new state.
3097 This allows to use yypush_ everywhere instead of individual
3098 handling of the stacks.
3099
c4585f1e
AD
31002008-11-03 Akim Demaille <demaille@gostai.com>
3101
3102 Prefer references to pointers.
3103 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3104 definition to use references instead of pointers.
3105 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3106 Take the value and location as references.
3107 Adjust callers.
3108
56017c17
AD
31092008-11-03 Akim Demaille <demaille@gostai.com>
3110
3111 stack::size instead of stack::height.
3112 * data/lalr1.cc (stack::height): Rename as...
3113 (stack::size): this.
3114 Fix the output type.
3115 Comment changes.
3116
5ab8c47b
AD
31172008-11-03 Akim Demaille <demaille@gostai.com>
3118
3119 Use variants to support objects as semantic values.
b06df3c2
AD
3120 This patch was inspired by work by Michiel De Wilde. But he used
3121 Boost variants which (i) requires Boost on the user side, (ii) is
3122 slow, and (iii) has useless overhead (the parser knows the type of
3123 the semantic value there is no reason to duplicate this
3124 information as Boost.Variants do).
3125
3126 This implementation reserves a buffer large enough to store the
3127 largest objects. yy::variant implements this buffer. It was
3128 implemented with Quentin Hocquet.
de62edee 3129
5ab8c47b
AD
3130 * src/output.c (type_names_output): New.
3131 (output_skeleton): Invoke it.
3132 * data/c++.m4 (b4_variant_if): New.
3133 (b4_symbol_value): If needed, provide a definition for variants.
3134 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
3135 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
3136 (b4_char_sizeof, yy::variant): New.
3137 (parser::parse): If variants are requested, define
3138 parser::union_type, parser::variant, change the definition of
3139 semantic_type, construct $$ before running the user action instead
3140 of performing a default $$ = $1.
3141 * examples/variant.yy: New.
3142 Based on an example by Michiel De Wilde.
3143
1fa5d8bb
AD
31442008-11-03 Akim Demaille <demaille@gostai.com>
3145
3146 Parameterize the extraction of semantic values.
3147 To make future changes easier, no longer rely on ".TYPE" being the
3148 way to get a semantic value.
de62edee 3149
1fa5d8bb
AD
3150 * data/c.m4 (b4_symbol_value): New.
3151 Use it.
3152 * data/c++.m4, data/yacc.c: Use it.
3153 * data/glr.c: Use b4_symbol_value.
3154 (b4_rhs_data): New.
3155 Use it.
3156
91ba8a55
AD
31572008-11-03 Akim Demaille <demaille@gostai.com>
3158
3159 Prepare easier M4 changes.
3160 * data/lalr1.cc: Use escaped [] instead of literals to prepare
3161 future changes.
3162
c9ba9e59
JD
31632008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3164
3165 Initiate further development.
3166 * NEWS: Create an empty section for new entries.
3167 * gnulib: Update submodule to HEAD.
3168
bfb40910
JD
31692008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3170
3171 * NEWS: Version 2.4.
3172
241fda7a
JD
31732008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3174
3175 Prepare for next release.
3176 * NEWS: Briefly mention changes since 2.3b.
3177 * README: Say GNU m4 1.4.6, which we've been requiring in release
3178 announcements already, not 1.4.3, which breaks the build.
3179
ed4d67dc
JD
31802008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3181
3182 Say %language is experimental.
3183 We're thinking of extending it's effect on output file naming. See the
3184 thread at
3185 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3186 * NEWS: Say it's experimental.
3187 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3188 recommend it over %skeleton for now.
3189 (Bison Options): Likewise.
3190 (C++ Bison Interface): Use %skeleton not %language.
3191 (Calc++ Parser): Use %skeleton not %language.
3192 * src/getargs.c (usage): Say it's experimental.
3193
e254a580
DJ
31942008-11-01 Di-an Jan <dianj@freeshell.org>
3195 Paolo Bonzini <bonzini@gnu.org>
3196
3197 Support all Java parser class modifiers.
3198 * data/java.m4 (b4_percent_define_get3): New.
3199 (b4_final_if, b4_strictfp_if): New.
3200 * data/lalr1.java (final, strictfp, extends, implements): Support.
3201 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3202 documentation.
3203 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3204 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3205 (AT_CHECK_JAVA_GREP): New.
3206 (Java parser class modifiers): New test.
3207 (Java parser class extends and implements): New test.
3208
3209 Model exception propagation better with throws and lex_throws.
3210 * data/java.m4 (b4_list2): New.
3211 (throws): Change default.
3212 * data/lalr1.java (yyaction): Add throws.
3213 (parse): Add lex_throws in addition to throws.
3214 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3215 * tests/java.at (Java throws specifications): New test.
3216
3217 Improve documentation for Java parsers.
3218 * doc/bison.texinfo (Java Parsers): Add subsections.
3219 Don't quote first argument of %define.
3220 (Java Bison Interface): Document output files. Move documentation
3221 of parser class and merge into Java Parser Interface. Document
3222 features that error out. Document directives with no effect.
3223 Move note about Javadoc higher.
3224 (Java Semantic Values): Explicitly mention stype.
3225 Document that generic types cannot be used.
3226 (Java Location Values): Use @deftypeivar. Document constructors.
3227 Correct return value for toString.
3228 (Java Parser Interface): List undocumented constants/fields.
3229 Move documentation of fields added by %parse-param closer to list
3230 of members. Document that token names are added as fields.
3231 Document constructors accurately. Remove error method.
3232 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3233 Interface. Describe %code lexer and yylex accutately.
3234 Remove documentation that does not match the code.
3235 (Java Action Features): New.
3236 (Java Differences): Add reference. Add item on semantic values.
3237 Add note about @{ ... @}. Clarify %% epilogue placement.
3238 (Java Declarations Summary): New.
3239
3240 Fix Java skeleton.
3241 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3242 (b4_remove_comma): Quote test argument.
3243 (b4_identification): Remove "bison" field.
3244 * tests/java.at (Java parser class and package names): New test.
3245 (Java %parse-param and %lex-param): New test.
3246 (Java stype, position_class and location_class): New test.
3247
f259e4e6
PB
32482008-10-31 Di-an Jan <dianj@freeshell.org>
3249
3250 * data/lalr1.jave: Update copyright years.
3251 (YYParser): Correct name of "generated from" file in Javadoc:
3252 use b4_file_name instead of @ofile@.
3253 (Location constructor): Correct Javadoc parameter name.
3254 (yylloc): Add missing opening m4 quote after b4_location_if.
3255 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3256 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3257 (YYParser constructor): Correct Javadoc parameter name.
3258
cae5057f
JD
32592008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3260
3261 Always put auxiliary code files in the same dir as other output files.
3262 * src/files.c (compute_file_name_parts): When the user specifies
3263 --output but not --file-prefix, extract the directory prefix from the
3264 file prefix not from the grammar file name. This affects the location
3265 of files like location.hh generated by the C++ skeleton. The includes
3266 in the other output files require this fix.
3267 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3268 for expected output files.
3269 (Output files): Add a test for the above.
3270
4af432ba
JD
32712008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3272
3273 * gnulib: Update submodule to HEAD.
3274
e26d4e43
JD
32752008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3276
3277 Update copyright year.
3278 * src/files.c: Here.
3279
c0ee9e21
DJ
32802008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3281
3282 Don't overwrite the input file.
3283 * src/files.c (output_file_name_check): Fatal error if using input file
3284 for output.
3285 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3286 argument.
3287 (Conflicting output files): Add test.
3288
482dc52f
AD
32892008-10-28 Akim Demaille <demaille@gostai.com>
3290
3291 Space changes.
3292 * data/lalr1.cc: Formatting changes.
3293
52cbbe84
AD
32942008-10-28 Akim Demaille <demaille@gostai.com>
3295
3296 Don't define debugging functions when !YYDEBUG.
3297 * data/lalr1.cc (debug_stream, set_debug_stream)
3298 (debug_level_type, debug_level, set_debug_level): Don't
3299 declare them when YYDEBUG is not defined.
3300 The implementation are already YYDEBUG-aware.
3301
0925d5bf
AD
33022008-10-28 Akim Demaille <demaille@gostai.com>
3303
3304 Prefer "continue" for empty loop bodies.
3305 * etc/bench.pl.in: Use "continue" instead of {}.
3306
cf98343c
AD
33072008-10-28 Akim Demaille <demaille@gostai.com>
3308
3309 Space and comments changes.
3310 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3311 * data/c.m4, data/lalr1.cc: Space changes.
3312
9f467b7d
AD
33132008-10-28 Akim Demaille <demaille@gostai.com>
3314
3315 Make gnulib a submodule.
3316 * gnulib: New.
3317 * .gitmodules (gnulib): New.
3318
0f0e1ace
JD
33192008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3320
3321 Fix yyerror_range for user-defined location type in C++. Reported by
3322 Georg Sauthoff at
3323 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
3324 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
3325 * THANKS (Georg Sauthoff): Add.
3326
548e2104
JD
33272008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3328
3329 Update several administrative files mainly to facilitate releasing.
3330 * HACKING (Administrivia): Make the git-merge-changelog notes more
3331 helpful.
3332 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
3333 (Release Procedure): Update for git and add numerous details that were
3334 previously missing.
3335 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
3336 * maint.mk (announcement): Don't list bison as a bootstrap tool so
3337 that announcements don't claim we bootstrapped with whatever bison
3338 happened to be in PATH. Add flex as a bootstrap tool.
3339 * Makefile.maint: Remove, previously replaced by maint.mk.
3340 * Makefile.cfg: Remove, and migrate settings to...
3341 * cfg.mk: ... here for the sake of `make announcement'.
3342 * bootstrap.conf (gnulib_modules): Add announce-gen.
3343 * README: Say GNU Bison instead of just Bison. Suggested by Karl
3344 Berry.
3345
ddf17a6e
PB
33462008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
3347
3348 Small but important bugfixes for the Java skeleton.
3349 * data/lalr1.java (yyerror): Change Location to b4_location_type.
3350 (yy_symbol_print): Call toString on yyvaluep.
3351
e1145ad8
AD
33522008-08-29 Akim Demaille <demaille@gostai.com>
3353
3354 Clarify UPDATED use.
215b40ac 3355 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 3356 not to the release date of Bison.
215b40ac 3357 Reported by Joel E. Denny.
e1145ad8 3358
0df72d78
AD
33592008-08-29 Akim Demaille <demaille@gostai.com>
3360
3361 * README: Update FAQ pointer.
3362 Reported by Joel E. Denny.
3363
9a90b6bb
EB
33642008-08-27 Eric Blake <ebb9@byu.net>
3365
3366 Resync m4sugar from autoconf.
3367 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
3368 (m4_init): Adjust to latest m4.git changes.
3369 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
3370 effects.
3371 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
3372 (_m4_list_cmp): Reduce side effects.
3373
65015668
AD
33742008-08-27 Akim Demaille <demaille@gostai.com>
3375
3376 Check yyerrok in calc.at.
215b40ac
EB
3377 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3378 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3379 expected.
65015668 3380
98e26a92
AD
33812008-08-27 Akim Demaille <demaille@gostai.com>
3382
3383 Support yyerrok in lalr1.cc.
3384 YYBACKUP is still to import back into lalr1.cc.
215b40ac 3385 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 3386
86c0e784
JD
33872008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3388
3389 For maintainer-check*, don't recompile for a $(VERSION) update.
3390 * cfg.mk: New file.
3391 (_is-dist-target): Override the one in GNUmakefile.
3392 * Makefile.am (EXTRA_DIST): Add cfg.mk.
3393
88511166
JD
33942008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3395
3396 Update for recent change to gnulib.
3397 * src/parse-gram.y: Don't include strverscmp.h. It comes from
3398 string.h now.
3399
6bbb2ed5
EB
34002008-08-15 Eric Blake <ebb9@byu.net>
3401
d67c52e8
EB
3402 Remaining m4sugar merge from autoconf.
3403 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3404 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3405 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3406 * src/output.c (output_skeleton): Tell m4 how to find it.
3407
6bbb2ed5
EB
3408 Partial m4sugar merge from autoconf: m4_map.
3409 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3410 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3411 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3412 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3413 for empty list.
3414 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3415 Likewise.
3416 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3417 declares it.
3418
8dce3875
JD
34192008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3420
3421 Keep .version and PACKAGE_VERSION in sync.
3422 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3423 dependency, and add comments justifying this in more detail. Discussed
3424 starting at
3425 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3426
882a1fbf
EB
34272008-08-06 Eric Blake <ebb9@byu.net>
3428
a3764451
EB
3429 Partial m4sugar merge from autoconf: m4_shiftn.
3430 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3431 (m4_shift2, m4_shift3): New macros.
3432 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3433 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3434 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3435 * data/java.m4 (b4_remove_comma): Likewise.
3436
882a1fbf
EB
3437 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3438 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3439 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3440 (m4_init): Consolidate wrapped text into single m4_wrap.
3441 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3442 in wrapped text.
3443
a30e920d
EB
34442008-08-05 Eric Blake <ebb9@byu.net>
3445
dfcc5959
EB
3446 Partial m4sugar merge from autoconf: builtins, version.m4.
3447 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3448 (m4_prepend): Remove, as it is unused and inherently quadratic,
3449 whereas m4_append is linear in newer m4.
3450 (m4_mkstemp): New builtin.
3451 (m4_symbols): Make rename conditional.
3452 (m4_version_prereq): Ensure fatal error if used in bison, which
3453 intentionally lacks version.m4.
3454
a30e920d
EB
3455 Fix comments in m4sugar.
3456 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3457
445b7470
JD
34582008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3459
3460 Update for recent .gitignore fix in Gnulib.
3461 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3462 anchored .gitignore entries.
3463
a1e50014
JD
34642008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3465
3466 Set gnu or gnits strictness.
3467 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3468 development and gnits strictness for releases. Based on Eric Blake's
3469 suggestion at
3470 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3471
d43f77e7
PB
34722008-07-31 Paolo Bonzini <bonzini@gnu.org>
3473
3474 * NEWS: Clarify documentation of %language.
3475
fee2ed87
PB
34762008-07-31 Paolo Bonzini <bonzini@gnu.org>
3477
3478 Support usage of git-merge-changelog.
3479 * .gitattributes: New.
3480 * HACKING: Document usage of git-merge-changelog.
3481 * bootstrap: Install git-merge-changelog entries in .git/config
3482 if appropriate.
3483
78029cd5
JD
34842008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3485
3486 Remove remaining dependence on CVS Id keyword.
3487 * ChangeLog: For the sake of people still using CVS, don't use dollars
3488 when mentioning Id.
3489 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3490 unusual anyway.
3491 * data/xslt/xml2dot.xsl: Likewise.
3492 * data/xslt/xml2text.xsl: Likewise.
3493 * data/xslt/xml2xhtml.xsl: Likewise.
3494 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3495 * doc/Makefile.am (neutralize): Remove, no longer needed.
3496 (.x.1): Don't use neutralize.
3497 (edit): Don't substitute for ID.
3498 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3499
c53d18b1
JD
35002008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3501
3502 Fix dependence on computed configure variables.
3503 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3504 $(top_srcdir)/configure.ac so that changes to computed variables, such
3505 as PACKAGE_VERSION, are seen.
3506 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3507
5523ac79
JD
35082008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3509
3510 Update copyright dates for recent changes.
3511 * Makefile.am: Here.
3512 * src/Makefile.am: Here.
3513 * src/reduce.c: Here.
3514 * tests/reduce.at: Here.
3515
8fa36911
JD
35162008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3517
3518 Use git-version-gen for version names between releases.
3519 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3520 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3521 * .prev-version: New.
3522 * .version.in: Remove.
78029cd5 3523 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
3524 revision.
3525 * GNUmakefile: Remove, now copied from Gnulib.
3526 * Makefile.am: Add code suggested by comments in
3527 build-aux/git-version-gen.
3528 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3529 .prev-version, and .version.
3530 * NEWS (2.3b+): Rename to...
3531 (?.?): ... this because we're dropping the "+" version naming scheme,
3532 but, in general, we still can't be sure of our next release name.
3533 * bootstrap: Add a quick hack to remove from .gitignore the
3534 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3535 entry. This should really be fixed in gnulib instead.
3536 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3537 * configure.ac (AC_INIT): Set version name by invoking
3538 build-aux/git-version-gen.
3539 (AC_CONFIG_FILES): Remove .version, now generated by
3540 build-aux/git-version-gen.
3541 * maint.mk: New, copied from coreutils.
3542 * doc/.cvsignore (bison.1): Add.
3543 * doc/.gitignore (/bison.1): Add.
3544 * doc/bison.1: Remove, generated.
3545 * src/.cvsignore (revision.c): Remove.
3546 * src/.gitignore (/revision.c): Remove.
3547 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3548 (BUILT_SOURCES): Remove revision.c.
3549 (revision.c): Remove.
3550 * src/getargs.c (version): Don't print revision after the VERSION.
3551 * src/revision.h: Remove.
3552
bcf07cb7
JD
35532008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3554
3555 Fix untranslatable composition of sentences. Reported by Goran
3556 Uddeborg at
3557 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3558 * THANKS (Goran Uddeborg): Add.
3559 * src/reduce.c (reduce_print): Report the number of nonterminals and
3560 rules useless in the grammar in separate sentences.
3561 * tests/reduce.at (Useless Rules): Update output.
3562 (Reduced Automaton): Likewise.
3563 (Underivable Rules): Likewise.
3564 (Empty Language): Likewise.
3565
9aacab9a
JD
35662008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3567
3568 Fix some .gitignore and .cvsignore problems.
3569 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3570 (insert_vc_ignore): ... this new function, which prepends `/' to all
3571 .gitignore entries before passing them to insert_sorted_if_absent.
3572 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3573 .cvsignore files are maintained even though Bison developers run
3574 bootstrap while using Git.
3575 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3576 unneeded by Bison.
3577 (gnulib): Add.
3578 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3579 unneeded. Reported by Eric Blake.
3580 * lib/.gitignore (/*~): Add.
3581 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3582 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3583 Blake.
3584 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3585
a9fc7990
JD
35862008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3587
3588 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3589 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3590 * bootstrap.conf (gnulib_modules): Add unsetenv.
3591 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3592 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3593 (/setenv.m4): Add.
3594 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3595 the first argument because it may become position-dependent, and unset
3596 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3597 Add comments explaining these issues in more detail.
3598
0f1d6f10
JD
35992008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3600
3601 Add .gitignore everywhere based on .cvsignore.
3602 * .gitignore: New.
3603 * build-aux/.gitignore: New.
3604 * data/.gitignore: New.
3605 * doc/.gitignore: New.
3606 * etc/.gitignore: New.
3607 * examples/.gitignore: New.
3608 * examples/calc++/.gitignore: New.
3609 * lib/.gitignore: New.
3610 * m4/.gitignore: New.
3611 * po/.gitignore: New.
3612 * runtime-po/.gitignore: New.
3613 * src/.gitignore: New.
3614 * tests/.gitignore: New.
3615
7bd1665a
JD
36162008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3617
3618 * NEWS (2.3b+): New section, empty for now.
3619 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3620
72c5b982
JD
36212008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3622
3623 * NEWS (2.3b): Update release date since there has been a delay in
3624 getting the announcements and tarballs out.
3625
bd02cd5d
JD
36262008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3627
3628 * NEWS: Version 2.3b.
3629 * configure.ac (AC_INIT): Likewise.
3630 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3631
9126263e
JD
36322008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3633
3634 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3635 been doing it for years.
3636 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3637 (Release Procedure): Add FIXME about make alpha being unmaintained.
3638
fa6aa7b3
JD
36392008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3640
3641 * data/yacc.c: Reformat m4 a little for readability.
3642 * src/lalr.c (build_relations): Correct comment.
3643
d30b312d
JMG
36442008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3645
3646 DJGPP specific issue.
3647 * djgpp/config.sed: Fixes required to run configure scripts generated
3648 by autoconf 2.62.
3649
138d4cd9
JD
36502008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3651
3652 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3653 coordinator@translationproject.org.
3654
8f7e2e1f
JD
36552008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3656
3657 * THANKS: Add Eric Blake.
3658
f55efa38
JD
36592008-04-23 Eric Blake <ebb9@byu.net>
3660
3661 Revert prior patch, by working around autoconf regression.
3662 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3663 ("Output file name: ("): Uncomment test.
3664 ("Output file name: )"): Likewise.
3665 Based on an idea from Noah Misch.
3666
096c9f9d
JD
36672008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3668
3669 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3670 2.61. Reported by Juan Manuel Guerrero at
3671 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3672 * tests/output.at ("Output file name: ("): Comment out test case for
3673 now.
3674 ("Output file name: )"): Likewise.
3675
0f664b89
JD
36762008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3677
3678 * GNUmakefile: Update git-version-gen invocation so make dist
3679 succeeds.
3680
1cfe6375
JD
36812008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3682
3683 Update to the current gnulib CVS repository, and fix trigraph handling
3684 in Bison.
3685 * bootstrap: Update gnulib CVS repository URL.
3686 (symlink_to_dir): Encapsulate the code that guarantees the destination
3687 directory exists into...
3688 (check_dst_dir): ... this new function, and...
3689 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3690 fail when copying files into lib/uniwidth/.
3691 * src/output.c (prepare_symbols): When writing yytname muscles, where
3692 symbol names will be encoded in C-string literals, tell quotearg to
3693 escape trigraphs. This used to be the default in gnulib.
3694 * tests/regression.at (Token definitions): Because of the change in
3695 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3696 escapes trigraphs in symbol names. Thus, yytname no longer has
3697 trigraphs unnecessarily doubly escaped. Update test case output.
3698 Extend test case to be sure Bison's own error messages will no longer
3699 have trigraphs in symbol names unnecessarily escaped once.
3700
74c52fc8
JD
37012008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3702
3703 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3704 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3705 * .cvsignore: Add .version.
3706 * .version.in: New.
3707 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3708 * configure.ac (AC_CONFIG_FILES): Add .version.
3709 * build-aux/.cvsignore: Add git-version-gen.
3710
8e55b3aa
JD
37112008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3712
3713 * NEWS (2.3a+): Mention that -g now takes an argument.
3714 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3715 consistency. Update the -g and -x entries now that they take
3716 arguments. Use brackets to indicate optional arguments.
3717 * src/getargs.c (usage): Explain the relationship between arguments of
3718 long and short options more completely. Document --defines and -d
3719 separately since the former takes an argument but, for POSIX Yacc, the
3720 latter does not.
3721 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 3722 (getargs): Sort cases.
8e55b3aa 3723
59c5ac72
AD
37242008-02-28 Akim Demaille <demaille@gostai.com>
3725
3726 * doc/bison.texinfo: Fix a few typos.
3727
118d4978
AD
37282008-02-28 Akim Demaille <akim@epita.fr>
3729
3730 * doc/bison.texinfo (Bison Options): Document -W.
3731 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3732
7020f1e9
AD
37332008-02-28 Akim Demaille <akim@epita.fr>
3734
3735 * src/getargs.c (short_options): Split and sort for readability.
3736 -g and -x take optional arguments, just like their long options.
3737 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3738 understand.
3739 Fix the handling of $opt which resulted in all the argument to be
3740 considered as optional.
3741
59da312b
JD
37422008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3743
3744 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3745 say its interface is experimental.
3746 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3747 Java.
3748 (Bison Options): In the -L and --language entry, mention Java.
3749 (Java Bison Interface): Say the interface is experimental.
3750 * src/getargs.c (usage): Mention -L and --language.
3751
3752 * NEWS (2.3a+): Say the push parsing interface is experimental.
3753 * doc/bison.texinfo (Push Decl): Likewise.
3754 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3755 (Push Parser Function): Likewise.
3756 (Pull Parser Function): Likewise.
3757 (Parser Create Function): Likewise.
3758 (Parser Delete Function): Likewise.
3759 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3760 yypull_parse, and yypush_parse entries.
3761
3762 * NEWS (2.3a+): Mention XML support, and say the schema is
3763 experimental.
3764 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3765 * src/getargs.c (usage): Say the XML schema is experimental.
3766
3767 * NEWS (2.3a+): Say option instead of flag.
3768
2bb3ebec
WP
37692008-02-21 Wojciech Polak <polak@gnu.org>
3770
3771 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3772 text.
3773
333e670c
JD
37742008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3775
3776 Fix impure push parser compile error reported by Bob Rossi at
3777 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3778 * data/yacc.c: Clean up whitespace in the output a little.
3779 (yypstate_allocated): Define for impure push parsers regardless of
3780 whether the pull interface is also requested.
3781 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3782 check impure push parsers without the pull interface.
3783
3784 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3785 yyerror takes arguments specified by %parse-param while yypstate_new
3786 does not.
3787 * doc/bison.texinfo (Parser Create Function): Document that
3788 yypstate_new returns 0 for multiple impure parser instances.
3789 * tests/push.at (Push Parsing: Multiple impure instances): Update
3790 expected stderr output.
3791
798096e1
JD
37922008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3793
3794 * runtime-po/POTFILES.in (push.c): Remove.
3795
9ca7f077
JD
37962008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3797
3798 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3799 * data/push.c: Rename to...
3800 * data/yacc.c: ... this, overwriting it.
3801 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3802 `%push-pull-parser' -> `%define api.push_pull "both"'.
3803 Remove old yacc.c tests, and update push.c tests to yacc.c.
3804
42ee26bb
JD
38052008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3806
3807 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3808 `"%code top" blocks' instead of `%code "top" blocks'.
3809 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3810 Clean up whitespace in the output a little.
3811
b1cc23c4
JD
38122008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3813
3814 Fix documentation problems reported by Tim Josling at
3815 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3816 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3817 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3818 integers. Explain the effect of literal string aliases on error
3819 messages. Copy token 0 documentation from the C++ skeleton
3820 documentation.
3821
ab7f29f8
JD
38222008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3823
3824 Accept a token number in a %left, %right, or %nonassoc for POSIX
3825 conformance. Reported by Tim Josling at
3826 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3827 * NEWS (2.3a+): Mention.
3828 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3829 and code numbers are treated by precedence declarations.
3830 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3831 of symbols.1.
3832 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3833 of symbol.
3834 (symbol.prec): New, just like symbol but allows INT.
3835 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3836 longer holds.
3837 * tests/regression.at (Token number in precedence declaration): New
3838 test case.
3839
a924ef36
JMG
38402008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3841
3842 DJGPP specific issues.
3843 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3844 be changed. Copyright timestamp adjusted.
3845 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3846 be changed. Copyright timestamp adjusted.
3847 * djgpp/config.site: Copyright timestamp adjusted.
3848 * djgpp/config_h.sed: Copyright timestamp adjusted.
3849 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3850 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3851 filename translation list.
3852 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3853 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3854 files shall be created. Before trying to use the temp dir where the
3855 environment variable points to check that the dir really exists. If
3856 not default to the cwd as temp dir. Copyright timestamp adjusted.
3857 * djgpp/subpipe.h: Copyright timestamp adjusted.
3858 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3859
389c8cfd
PE
38602008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3861
3862 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3863
5d1cfef4
PE
38642008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3865
3866 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3867 Problem reported by Claudio Saavedra in
3868 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3869
e2dcf996
WP
38702008-01-05 Wojciech Polak <polak@gnu.org>
3871
3872 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3873 document's title with the input grammar file name.
3874
da730230
JD
38752007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3876
3877 Automate regression testing of the XML/XSLT implementation. Discussed
3878 starting at
3879 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3880 * configure.ac (XSLTPROC): New substitution.
3881 * Makefile.am (maintainer-xml-check): New phony target invoking...
3882 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3883 invoking make maintainer-check with BISON_TEST_XML=1.
3884 * tests/atlocal.in (XSLTPROC): New.
3885 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3886 not to report reachable memory when Bison is expected to have a
3887 non-zero exit status and (2) to compare XML/XSLT output with --graph
3888 and --report=all output for every working grammar when
3889 BISON_TEST_XML=1.
3890 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3891 (AT_BISON_CHECK_XML): New.
3892 (AT_QUELL_VALGRIND): New.
3893 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3894 (AT_CHECK): ... don't redefine this since this was the old way to
3895 quell Valgrind.
3896 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3897 AT_BISON_CHECK invocations.
3898 * tests/c++.at: Likewise.
3899 * tests/calc.at: Likewise.
3900 * tests/conflicts.at: Likewise.
3901 * tests/cxx-type.at: Likewise.
3902 * tests/existing.at: Likewise.
3903 * tests/glr-regression.at: Likewise.
3904 * tests/headers.at: Likewise.
3905 * tests/input.at: Likewise.
3906 * tests/java.at: Likewise.
3907 * tests/output.at: Likewise.
3908 * tests/push.at: Likewise.
3909 * tests/reduce.at: Likewise.
3910 * tests/regression.at: Likewise.
3911 * tests/sets.at: Likewise.
3912 * tests/skeletons.at: Likewise.
3913 * tests/synclines.at: Likewise.
3914 * tests/torture.at: Likewise.
3915 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3916 tends to hang xsltproc.
3917 (Big horizontal): Likewise.
3918
408476bc
JD
39192007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3920
3921 In XML output, remove redundant class attribute on symbol element.
3922 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3923 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3924 look up a symbol to determine whether it's a nonterminal or terminal.
3925 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3926 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3927
3928 Add prec/assoc information to XML output.
3929 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3930 %prec, add a percent_prec attribute.
3931 * src/print-xml.c (print_grammar): For each terminal that has a
3932 precedence or associativity, add a prec or assoc attribute.
3933 (xml_indent): New.
3934 (xml_puts): Use xml_indent.
3935 (xml_printf): Use xml_indent.
3936 * src/print-xml.h (xml_indent): Prototype.
3937
3938 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3939 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3940
d4a26c48
JD
39412007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3942
3943 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3944 (bison:ruleByNumber): ... this for clarity.
3945 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3946 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3947 (xsl:template match="reduction"): Update.
3948 (xsl:template match="item"): Update.
3949 (xsl:template match="reduction"): Update.
3950
3951 In the XML output, don't print the list of rules where symbols appear.
3952 Compute it in XSLT instead. Discussed at
3953 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3954 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3955 (bison:ruleByRhs): New.
3956 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3957 bison:ruleByRhs.
3958 (xsl:template match="terminal/rule"): Remove.
3959 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3960 bison:ruleByRhs.
3961 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3962 Remove.
3963 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3964 bison:ruleByRhs and mode="number-link" for rule template.
3965 (xsl:template match="terminal/rule"): Remove.
3966 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3967 bison:ruleByRhs and mode="number-link" for rule template.
3968 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3969 Rewrite as...
3970 (xsl:template match="rule" mode="number-link"): ... this.
3971 * src/print-xml.c (print_grammar): Don't print the list of rules.
3972
ef1b4273
JD
39732007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3974
3975 Don't let --report affect XML output; always print all information.
3976 Discussed at
3977 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3978 * src/conflicts.c (log_resolution): Implement.
3979 * src/print-xml.c (print_core): Implement.
3980 (print_state): Implement.
3981 (print_xml): Implement.
3982
3983 * NEWS (2.3a+): Fix quotes.
3984 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3985 don't let %verbose clear the list specified by --report.
3986
0f6cd9e3
AD
39872007-11-26 Akim Demaille <akim@epita.fr>
3988
3989 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3990
d80fb37a
JD
39912007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3992
3993 In the XML output, list useless and unused symbols and rules with the
3994 useful ones and add a "usefulness" attribute. Discussed starting at
3995 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3996 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3997 (grammar_rules_print_xml): Print all rules instead of just those
3998 useful in the grammar, and add a "usefulness" attribute.
3999 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4000 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4001 (print_grammar): Print all nonterminals instead of just useful ones,
4002 and add a "usefulness" attribute to nonterminals and terminals.
4003 (print_xml): Don't print a separate "reductions" or
4004 "rules-useless-in-parser" element.
4005 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4006 (reduce_xml): Remove.
4007 (reduce_token_unused_in_grammar): New.
4008 (reduce_nonterminal_useless_in_grammar): New.
4009 * src/reduce.h (reduce_xml): Remove prototype.
4010 (reduce_token_unused_in_grammar): Add prototype.
4011 (reduce_nonterminal_useless_in_grammar): Add prototype.
4012 * data/xslt/xml2text.xsl: Update for XML changes.
4013 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4014 * tests/reduce.at (Useless Terminals): Update output.
4015 (Useless Rules): Update output.
4016 (Reduced Automaton): Update output.
4017
4018 Say "Terminals unused in grammar" instead of "Unused terminals".
4019 * NEWS (2.3a+): Update.
4020 * doc/bison.texinfo (Understanding): Update example output.
4021 * src/reduce.c (reduce_output): Implement.
4022 * data/xslt/xml2text.xsl: Implement.
4023 * data/xslt/xml2xhtml.xsl: Implement.
4024
1bb2bd75
JD
40252007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4026
4027 Accept --report-file=FILE to override the default `.output' filename.
4028 * NEWS (2.3a+): Mention.
4029 * doc/bison.texinfo (Bison Options): Add an entry.
4030 * src/files.c (compute_output_file_names): Don't override
4031 spec_verbose_file if already set.
4032 * src/getargs.c (usage): Document --report-file.
4033 (REPORT_FILE_OPTION): New anonymous enum member.
4034 (long_options): Add entry for it.
4035 (getargs): Add case for it setting spec_verbose_file.
4036
4037 * build-aux/cross-options.pl: Don't record a short option just because
4038 there's an arg.
4039 * doc/.cvsignore: Add yacc.1.
4040
a005a9c4
AD
40412007-11-14 Akim Demaille <akim@epita.fr>
4042
4043 * doc/yacc.1.in: New.
4044 * configure.ac, doc/Makefile.am: Adjust.
4045 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4046 config.h symbol.
4047 Use AC_SUBST for assignments too.
4048 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4049
cff03fb2
JD
40502007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4051
4052 * src/gram.c: Remove comments that duplicate comments in gram.h.
4053
4054 When reporting useless rules and nonterminals, say "useless in grammar"
4055 instead of "useless", and say "useless in parser" instead of "never
4056 reduced". Discussed starting at
4057 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4058 * NEWS (2.3a+): Mention this change.
4059 * data/xslt/xml2text.xsl: Update output text and expected input XML
4060 element names to match changes below.
4061 * data/xslt/xml2xhtml.xsl: Likewise.
4062 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4063 Contents: "Rules useless in parser due to conflicts".
4064 * doc/bison.texinfo (Decl Summary): Reword a little.
4065 (Understanding): Update example output for changes below.
4066 * src/gram.c: (rule_useful_p): Rename to...
4067 (rule_useful_in_grammar_p): ... this.
4068 (rule_useless_p): Rename to...
4069 (rule_useless_in_grammar_p): ... this.
4070 (rule_never_reduced_p): Rename to...
4071 (rule_useless_in_parser_p): ... this.
4072 (grammar_rules_print): Update for renames.
4073 (grammar_rules_print_xml): Update for renames.
4074 (grammar_rules_never_reduced_report): Rename to...
4075 (grammar_rules_useless_report): ... this since it is used for either
4076 kind of useless rule.
4077 * src/gram.h: Reword comments and update function names in prototypes.
4078 * src/main.c (main): Say "rule useless in parser due to conflicts".
4079 * src/print-xml.c (print_rules_never_reduced): Rename to...
4080 (print_rules_useless_in_parser): ... this, and rename output XML
4081 element "rules-never-reduced" to "rules-useless-in-parser".
4082 (print_xml): Update for rename.
4083 * src/print.c (print_results): Say "Rules useless in parser due to
4084 conflicts".
4085 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4086 (nonterminals_reduce): Say "nonterminal useless in grammar".
4087 (reduce_output): Say "Nonterminals useless in grammar".
4088 Say "Rules useless in grammar".
4089 (reduce_xml): Rename output XML element "useless" to
4090 "useless-in-grammar".
4091 (reduce_print): Don't report the count of grammatically useless rules
4092 as "rules never reduced" just because %yacc is specified.
4093 In the correct report of this count, say nonterminal(s) and rule(s)
4094 "useless in grammar".
4095 * tests/conflicts.at (S/R in initial): Update expected output.
4096 (Defaulted Conflicted Reduction): Likewise.
4097 (Unreachable States After Conflict Resolution): Likewise.
4098 * tests/existing.at (GNU pic Grammar): Likewise.
4099 * tests/reduce.at (Useless Nonterminals): Likewise.
4100 (Useless Rules): Likewise.
4101 (Reduced Automaton): Likewise.
4102 (Underivable Rules): Likewise.
4103 (Empty Language): Likewise.
4104
66f0441d
JD
41052007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4106
4107 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4108 here document and before the EOF so that BSD's implementation of Bourne
4109 shell doesn't parse the delimiter as part of the here document.
4110 * doc/.cvsignore: Add cross-options.texi.
4111 * src/getargs.c (usage): Add a blank line after the warning categories.
4112
d0ee4105
PB
41132007-11-08 Paolo Bonzini <bonzini@gnu.org>
4114
4115 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4116
e8b1fb9b
AD
41172007-11-05 Akim Demaille <akim@epita.fr>
4118
4119 Remove Id: from bison.1.
4120 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4121 (perl -0777 -pi -e 's/\.PP\nId): New.
4122 (.x.1): Use it to ignore the version control revision.
4123
2f7a96b5
AD
41242007-11-05 Akim Demaille <demaille@gostai.com>
4125
4126 * build-aux/Makefile.am: Ship cross-options.pl.
4127 * doc/Makefile.am: Always refer to cross-options.texi with
4128 $(srcdir).
4129 (MAINTAINERCLEANFILES): Add it.
4130
f4101aa6
AD
41312007-11-04 Akim Demaille <demaille@gostai.com>
4132
4133 Generate the long/short option cross-table.
4134 * build-aux/cross-options.pl: New.
4135 * doc/Makefile.am (cross-options.texi): New.
4136 * doc/bison.texinfo: Use it.
4137
727a1401
AD
41382007-11-04 Akim Demaille <demaille@gostai.com>
4139
4140 Generate bison.1 using help2man.
4141 * doc/common.x, doc/bison.x: New.
4142 * doc/Makefile.am (bison.1, .x.1): New.
4143 The code is taken from autoconf-2.61/man/Makefile.am.
4144 * configure.ac: Look for help2man.
4145
6aeb9c57
AD
41462007-11-04 Akim Demaille <demaille@gostai.com>
4147
4148 Complete --help.
4149 * src/getargs.c (usage): Document -W, make it clear that -d,
4150 -g and -x have optional arguments.
4151
d7be4085
AD
41522007-11-04 Akim Demaille <demaille@gostai.com>
4153
4154 Find sha1sum when named gsha1sum.
4155 * bootstrap (find_tool): New.
4156 ($SHA1SUM): New.
4157
d9df47b6
JD
41582007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4159
4160 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4161 at
4162 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4163 * NEWS (2.3a+): Mention.
4164 * data/bison.m4 (b4_pure_if): Don't define it here.
4165 * data/c.m4 (b4_identification): Depend on individual skeletons to
4166 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4167 values of the %define variables api.pure or api.push_pull. Define
4168 YYPURE, YYPUSH, and YYPULL accordingly.
4169 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4170 glr.cc has already defined b4_pure_flag.
4171 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4172 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 4173 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
4174 * doc/bison.texinfo (Pure Decl): Update.
4175 (Push Decl): Update.
4176 (Decl Summary): Add api.pure to %define entry.
4177 In %pure-parser entry, say it's deprecated and reference %define.
4178 (Pure Calling): Update.
4179 (Error Reporting): Update.
4180 (C++ Scanner Interface): Update.
4181 (How Can I Reset the Parser): Update.
4182 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4183 reference %define.
4184 * src/getargs.c (pure_parser): Remove global variable.
4185 * src/getargs.h (pure_parser): Remove extern.
4186 * src/output.c (prepare): Don't define pure_flag muscle.
4187 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4188 wrapper around `%define api.pure'.
4189 * tests/calc.at (Simple LALR Calculator): Update.
4190 (Simple GLR Calculator): Update.
4191 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4192 Update.
4193 (GLR: Resolve ambiguity, pure, locations): Update.
4194 (GLR: Merge conflicting parses, pure, no locations): Update.
4195 (GLR: Merge conflicting parses, pure, locations): Update.
4196 * tests/glr-regression.at (Uninitialized location when reporting
4197 ambiguity): Update
4198 * tests/input.at (Unused %define api.pure): New test case.
4199 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4200 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4201 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4202
c373bf8b
JD
42032007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4204
4205 %define push_pull -> %define api.push_pull. Discussed starting at
4206 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4207 * data/push.c: Expect the new name.
4208 * data/yacc.c: Likewise.
4209 * doc/bison.texinfo (Push Decl): Update.
4210 (Decl Summary): Update %define entry.
4211 (Push Parser Function): Update.
4212 (Pull Parser Function): Update.
4213 (Parser Create Function): Update.
4214 (Parser Delete Function): Update.
4215 * tests/calc.at (Simple LALR Calculator): Update.
4216 * tests/input.at (%define enum variables): Update.
4217 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4218 (Push Parsing: Multiple impure instances): Update.
4219 (Push Parsing: Unsupported Skeletons): Update.
4220 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4221 (Exploding the Stack Size with Malloc): Update.
4222
4223 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4224 other entries some.
4225
32f19b6b
JD
42262007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4227
4228 For the XML output's terminal element, rename @number to @token-number,
4229 and add @symbol-number. In the nonterminal element, rename @number to
4230 @symbol-number. Discussed starting at
4231 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4232 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4233 renames.
4234 (xsl:template match="nonterminal"): Likewise.
4235 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4236 (xsl:template match="nonterminal"): Likewise.
4237 * src/print-xml.c (print_grammar): Implement.
4238
255a6b90
JD
42392007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4240
4241 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4242 2007-10-11 change, the child elements here are items not rules.
408476bc 4243 (xsl:template match="item"): New.
255a6b90
JD
4244 (xsl:template match="rule"): Update for new reduced itemset.
4245 (xsl:template match="point"): Remove.
4246 (xsl:template match="empty"): For consistency with --graph, don't
4247 output "/* empty */".
4248 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4249 line-wrap, don't pass a negative value as first-line-length since this
4250 won't work with the following changes.
4251 (xsl:template name="line-wrap"): Simplify slightly.
4252 (xsl:template name="ws-search"): Eliminate recursion.
4253 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4254 set next to an item whose dot is not at the end of the RHS even if it
4255 happens to be associated with the same rule.
4256
88c78747
JD
42572007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4258
31984206
JD
4259 Add %define lr.keep_unreachable_states.
4260 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4261 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4262 * src/main.c (main): Implement it.
4263 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4264 Extend to test it, and fix a typo.
4265
42662007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4267
4268 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
4269 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4270 the example .output text.
4271 * tests/regression.at (Extra lookahead sets in report): Improve wording
4272 of comments.
4273
b7a70162
WP
42742007-10-17 Wojciech Polak <polak@gnu.org>
4275
4276 * src/print-xml.c (print_grammar): Renamed
4277 <terminal> and <nonterminal> attributes:
4278 "type" to "number" and "symbol" to "name".
4279 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4280 Use new attribute names.
4281 (xsl:template match="nonterminal"): Likewise.
4282 * data/xslt/xml2xhtml.xsl: Likewise.
4283
a0de5091
JD
42842007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4285
4286 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4287 (Option Cross Key): Likewise.
4288
4289 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4290 next to an item whose dot is not at the end of the RHS even if it
4291 happens to be associated with the same rule.
4292 * src/print.c (print_core): Likewise.
4293 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4294 (Resolved SR Conflicts): Update output.
4295 * tests/regression.at (Extra lookahead sets in report): New test case.
4296
4c20d18d
WP
42972007-10-11 Wojciech Polak <polak@gnu.org>
4298
4299 * src/print-xml.c (print_core): Remove item set
4300 redundancy.
4301 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4302 Improve processing time. Suggested by Joel E. Denny.
4303 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4304 Write xsl:param "required" attribute as comment.
4305 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4306 (xsl:template match="rule"): Support new reduced itemset.
4307 (xsl:template match="point"): Remove.
4308 * data/xslt/xml2xhtml.xsl: Likewise.
4309
f506ad1c
JD
43102007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4311
4312 * src/getargs.c (version): Update copyright year.
4313
21f1b063
JD
43142007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4315
4316 Make xml2dot.xsl and --graph produce the same output.
4317 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
4318 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
4319 escaped later.
4320 (xsl:template name="output-node"): Use the new escape template instead
4321 of the string-replace template directly.
4322 (xsl:template name="output-edge"): Likewise.
4323 (xsl:template name="escape"): New, escapes backslashes and newlines in
4324 addition to quotation marks.
4325 * src/graphviz.c (start_graph, output_node, output_edge): Add
4326 whitespace to output for legibility.
4327
4328 Make xml2text.xsl and --report produce the same output, and remove the
4329 XML "conflicts" element since a conflict summary is easily extracted
4330 from the automaton.
4331 * data/xslt/bison.xsl: New.
4332 (xsl:template match="state" mode="bison:count-conflicts): New.
4333 * data/xslt/xml2text.xsl: Import bison.xsl.
4334 (xsl:template match="bison-xml-report"): Instead of styling the
4335 "conflicts" element, style the "automaton" element with mode
4336 "conflicts". Unlike the former, the latter lists S/R and R/R
4337 conflicts for a state on the same line.
4338 (xsl:template match="conflicts"): Remove.
4339 (xsl:template match="conflict"): Remove.
4340 (xsl:template match="terminal"): Line-wrap the list of rules in which
4341 the terminal is used.
4342 (xsl:template match="nonterminal"): Likewise for nonterminals.
4343 (xsl:template match="automaton" mode="conflicts"): New.
4344 (xsl:template match="state" mode="conflicts"): New.
4345 (xsl:template name="line-wrap"): New.
4346 (xsl:template name="ws-search"): New.
4347 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
4348 (xsl:template match="bison-xml-report"): Instead of styling the
4349 "conflicts" element, style the "automaton" element with mode
4350 "conflicts."
4351 (xsl:template match="conflicts"): Remove.
4352 (xsl:template match="conflict"): Remove.
4353 (xsl:template match="automaton" mode="conflicts"): New.
4354 (xsl:template match="state" mode="conflicts): New.
4355 * src/conflicts.c (conflicts_output_xml): Remove.
4356 * src/conflicts.h (conflicts_output_xml): Remove prototype.
4357 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
4358 * src/print.c (print_grammar): Consistently wrap at the 66th column so
4359 the corresponding XSLT is easier. Also, never wrap between a word and
4360 the comma that follows it.
4361
793fbca5
JD
43622007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4363
4364 Improve C++ namespace support. Discussed starting at
4365 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
4366 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
4367 b4_namespace_close): New macros that interpret the %define variable
4368 "namespace" so its value can contain "::" to indicate nested
4369 namespaces.
4370 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
4371 the above macros.
4372 * data/lalr1.cc (b4_namespace): Likewise.
4373 * data/location.cc (b4_namespace): Likewise.
4374 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
4375 inside a new table in the general %define entry. Document `%define
4376 namespace' there as well. Point the %name-prefix entry to it since it
4377 explains it more completely in the case of C++.
4378 (C++ Bison Interface): Mention `%define namespace' instead of
4379 %name-prefix.
4380 (Table of Symbols): Remove the `%define push_pull' entry. The %define
4381 entry suffices.
4382 * tests/c++.at (Relative namespace references): New test case.
4383 (Absolute namespace references): New test case.
4384 (Syntactically invalid namespace references): New test case.
4385 * tests/input.at (C++ namespace reference errors): New test case.
4386
35b8730d
JD
43872007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4388
4389 Add syncline support and location accessor to internal %define
4390 interfaces.
4391 * data/bison.m4 (b4_percent_define_get_loc): New.
4392 (b4_percent_define_get_syncline): New.
4393 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
4394 (b4_percent_define_default): Record defining location as line 1 rather
4395 than 0 for the sake of synchronizing #line's, and define
4396 b4_percent_define_syncline(VARIABLE).
4397 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
4398 * src/muscle_tab.c (muscle_syncline_grow): New.
4399 (muscle_code_grow): Use muscle_syncline_grow.
4400 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4401 define b4_percent_define_syncline(VARIABLE).
4402 (muscle_percent_define_get_loc): New.
4403 (muscle_percent_define_get_syncline): New.
4404 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4405 remove some unused variables.
4406 (muscle_percent_define_default): Record defining location as line 1
4407 rather than 0 for the sake of synchronizing #line's, and define
4408 b4_percent_define_syncline(VARIABLE).
4409 (muscle_percent_define_check_values): Use
4410 muscle_percent_define_get_loc.
4411 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4412 (muscle_percent_define_get_syncline): Prototype.
4413 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4414 defaults): Update output for location change.
4415 (Complaining during macro argument expansion): Extend to test
4416 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4417
7dc4a694
JD
44182007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4419
4420 Fix some error-reporting macro bugs.
4421 * data/bison.m4 (b4_cat): New.
4422 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4423 to stdout so they don't become arguments to other macros. Update
4424 comments and add examples.
4425 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4426 add examples.
4427 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4428 after printing the error directive so that M4 doesn't report subsequent
4429 problems that are induced by this problem.
4430 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4431 instead of just in them. Recognize @\n in both places. Both expand to
4432 the empty string. Needed by b4_cat.
4433 * tests/skeletons.at (Complaining during macro argument expansion):
4434 New test case.
4435 (Fatal errors make M4 exit immediately): New test case.
4436
d4bd2295
JD
44372007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4438
4439 Implement --print-datadir.
4440 * src/getargs.c (usage): Mention.
4441 (PRINT_DATADIR_OPTION): New anonymous enum member.
4442 (long_options): Add entry for it.
4443 (getargs): Add case for it calling compute_pkgdatadir.
4444 * src/output.c (output_skeleton): Encapsulate data directory
4445 computation from here...
4446 (prepare): ... and from here...
4447 (compute_pkgdatadir): ... into this new function.
4448 * src/output.h (compute_pkgdatadir): Prototype.
4449
34cdeddf
JD
44502007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4451
4452 * src/print-xml.c (escape_bufs): New static global variable
4453 replacing...
4454 (xml_escape_n): ... the static local variable buf here.
4455 (print_xml): Free memory for escape_bufs.
4456 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4457
d782395d
JD
44582007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4459
4460 Replace `%push-parser' and `%push-pull-parser' with
4461 `%define push_pull "push"' and `%define push_pull "both"'.
4462 `%define push_pull "pull"' is the default.
4463 * doc/bison.texinfo (Push Decl, Push Parser Function,
4464 Pull Parser Function, Parser Create Function, Parser Delete Function):
4465 Update declarations.
4466 (Decl Summary, Table of Symbols): Replace %push-parser and
4467 %push-pull-parser entries with a %define push_pull entry.
4468 * data/bison.m4 (b4_percent_define_check_values): New macro.
4469 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4470 definitions...
4471 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4472 definitions...
4473 * data/push.c: ... to here and compute them from the value of the
4474 %define variable push_pull.
4475 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4476 parsing requests here...
4477 * data/yacc.c: ... hack this to switch to push.c any time
4478 b4_use_push_pull_flag or the %define variable push_pull is set. This
4479 will go away when we mv push.c yacc.c.
4480 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4481 push parsing is not supported since unused %define variables are
4482 reported anyway.
4483 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4484 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4485 comments for consistency with b4_percent_define_check_values.
4486 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4487 muscles.
4488 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4489 Remove.
4490 (prologue_declaration): Remove %push-parser and %push-pull-parser
4491 rules.
4492 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4493 * tests/calc.at: Update declarations.
4494 * tests/input.at (%define enum variables): New test case.
4495 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4496 declaration.
4497 (Push Parsing: Multiple impure instances): Update declaration.
4498 (Push Parsing: Unsupported Skeletons): New test case.
4499 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4500 declaration.
4501 (Exploding the Stack Size with Malloc): Update declaration.
4502
3f999f78
WP
45032007-09-24 Wojciech Polak <polak@gnu.org>
4504
4505 Add XSLT transformations.
4506
4507 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4508 * data/xslt/xml2text.xsl: Transform XML into plain text.
4509 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4510 * data/Makefile.am (xsltdir): New variable.
4511 (dist_xslt_DATA): Add xslt/*.xsl files.
4512
a4f75309
PE
45132007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4514
4515 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4516 Problem reported by Wojciech Polak.
4517 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4518 (xml_printf): Undo change I made on 21 September; that is,
4519 indent 2 spaces, not 1.
4520
ad5feac4
JD
45212007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4522
4523 Pacify ./configure --enable-gcc-warnings.
4524 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4525 `char const *' instead of `char *'.
4526 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4527 local variable `sep'.
4528
41d7a5f2
PE
45292007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4530
4531 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4532 elsewhere.
4533 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4534 (xml_printf): Indent just 1 space for level.
4535 (e_char, xlate_char): Remove.
4536 (xml_escape_string): Rewrite to avoid undefined behavior (used
4537 storage that was freed from the stack).
4538 (xml_escape_n): Don't bother checking for subscript error.
4539
3f999f78
WP
45402007-09-21 Wojciech Polak <polak@gnu.org>
4541
4542 Add Bison XML Automaton Report.
41d7a5f2
PE
4543
4544 Add support for an -x option to generate an XML report.
4545 It is not documented yet.
4546 * src/print-xml.c: New file.
4547 * src/print-xml.h: Likewise.
4548 * lib/timevar.def (TV_XML): New var.
4549 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4550 * src/conflicts.c: Include print-xml.h.
4551 (solved_conflicts_xml_obstack): New var.
4552 (log_resolution, conflicts_solve, conflicts_free):
4553 Add support for XML report.
4554 (conflicts_output_val): New function.
4555 * src/conflicts.h (conflicts_output_val): New decl.
4556 * src/files.c (spec_xml_file): New var.
4557 (compute_output_file_names, output_file_names_free): Add XML support.
4558 * src/files.h (spec_xml_file): New decl.
4559 * src/getargs.c (xml_flag): New var.
4560 (usage, short_options, long_options, getargs): Add XML support.
4561 * src/getargs.h (xml_flag): New decl.
4562 * src/gram.c: Include print-xml.h.
4563 (rule_lhs_print_xml, rule_rhs_print_xml):
4564 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4565 New functions.
4566 * src/gram.h: Declare external ones.
4567 * src/main.c: Include print-xml.h.
4568 (main): Add XML support.
4569 * src/reduce.c: Include print-xml.h.
4570 (reduce_xml): New function.
4571 * src/reduce.h: Declare it.
4572 * src/state.c: Include print-xml.h.
4573 (state_new): Add XML support.
4574 (state_rule_lookahead_tokens_print_xml): New function.
4575 * src/state.h: Declare it.
4576 (struct state): New member solved_conflicts_xml.
4577 * src/symtab.c (symbol_class_get_string): New function.
4578 * src/symtab.h: Declare it.
4579
6d8e724d
PE
45802007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4581
4582 * GNUmakefile: Switch to coreutils's version.
4583 * bootstrap: Likewise.
4584 * Makefile.cfg: Adjust to new GNUmakefile.
4585 * README-hacking: Likewise.
4586
4587 Import from gnulib:
4588
4589 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4590 Bruno Haible <bruno@clisp.org>
4591
4592 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4593 and is a script that invokes bison. Tighten the code. Add comments.
4594
922bdd7f
JD
45952007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4596
4597 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4598 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4599 * doc/bison.texinfo (Decl Summary): Fix.
4600 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4601 * tests/input.at (Boolean %define variables): Update output.
4602 * tests/skeletons.at (%define boolean variables: invalid skeleton
4603 defaults): Rename to...
4604 (%define Boolean variables: invalid skeleton defaults): ... this and
4605 update output.
4606
1b17b01d
JD
46072007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4608
4609 In impure push mode, don't allow more than one yypstate to be allocated
4610 since multiple impure parsers would corrupt yynerrs.
4611 * data/push.c (yypstate_allocated): New static global variable
4612 initialized to 0.
4613 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4614 exhaustion if yypstate_allocated is 1, but still return 2.
4615 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4616 already 1. Otherwise, set it to 1.
4617 (yypstate_delete): Set it to 0.
4618 * tests/push.at (Push Parsing: Multiple impure instances): New test
4619 case.
4620
9987d1b3
JD
46212007-08-17 Bob Rossi <bob@brasko.net>
4622
4623 * doc/bison.texinfo (Push Decl): Document the push parser.
4624 (Table of Symbols): Ditto.
4625 (Pure Decl): Ditto.
4626 (Decl Summary): Ditto.
4627 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4628 Parser Create Function, Parser Delete Function):
4629 Add new push parser symbols.
4630 (Table of Symbols): Document push-parser, push-pull-parser,
4631 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4632
f16b0819
PE
46332007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4634
4635 Update to GPLv3.
4636 * doc/gpl-3.0.texi: New file.
4637 * doc/gpl.texi: Remove.
4638 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4639 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4640 * README-hacking, TODO, bootstrap, bootstrap.conf:
4641 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4642 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4643 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4644 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4645 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4646 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4647 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4648 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4649 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4650 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4651 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4652 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4653 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4654 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4655 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4656 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4657 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4658 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4659 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4660 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4661 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4662 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4663 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4664 * src/complain.c, src/complain.h, src/conflicts.c:
4665 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4666 * src/files.h, src/flex-scanner.h, src/getargs.c:
4667 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4668 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4669 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4670 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4671 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4672 * src/print.c, src/print.h, src/print_graph.c:
4673 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4674 * src/reduce.h, src/relation.c, src/relation.h:
4675 * src/revision.h, src/scan-code.h, src/scan-code.l:
4676 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4677 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4678 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4679 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4680 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4681 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4682 * tests/existing.at, tests/glr-regression.at:
4683 * tests/headers.at, tests/input.at, tests/java.at:
4684 * tests/local.at, tests/output.at, tests/push.at:
4685 * tests/reduce.at, tests/regression.at, tests/sets.at:
4686 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4687 * tests/torture.at:
4688 Update to GPLv3.
4689
728c4be2
JD
46902007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4691
4692 Get rid of broken %no-parser, -n, and --no-parser implementation and
4693 documentation.
4694 * TODO: Don't mention them.
4695 * doc/bison.1: Likewise.
4696 * doc/bison.texinfo (Decl Summary): Likewise.
4697 (Bison Options): Likewise.
4698 (Option Cross Key): Likewise.
4699 * src/getargs.c (no_parser_flag): Remove global variable.
4700 (usage): Don't print description of -n and --no-parser.
4701 (long_options): Remove --no-parser entry here.
4702 (getargs): Remove -n case in the switch here.
4703 * src/getargs.h (no_parser_flag): Remove extern.
4704 * tests/regression.at (Web2c Actions): Remove comment that mentions
4705 --no-parser.
4706
5d31a216
JD
47072007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4708
4709 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4710 name user variables starting with `yy'. Just pass NULL instead of a
4711 dummy local &yylval to yypush_parse.
4712 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4713 starting with `yy'.
4714
a2ea208d
JD
47152007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4716
4717 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4718 true since it's then always used regardless of whether yyoverflow is
4719 defined. Reported by Christian Burger at
4720 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4721 * THANKS: Add Christian Burger.
4722
91661ebb
JD
4723 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4724 node names: say "Decl Summary" not "Bison Declaration Summary".
4725
cbd50549
JD
47262007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4727
4728 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4729 determine whether this function has already complained about an invalid
4730 value for a %define boolean variable, don't check whether Bison has
4731 ever examined the value. As written, the check was a tautology.
4732 Instead, record and check for this complaint using a separate muscle.
4733
eb1b0740
JD
47342007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4735
4736 Fix push parsing memory leak reported by Brandon Lucia at
4737 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4738 * THANKS: Add Brandon Lucia.
4739 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4740 but the parse never completed and thus freed it.
4741 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4742 * tests/testsuite.at: Include push.at.
4743 * test/push.at: New.
4744 (Push Parsing: Memory Leak for Early Deletion): New test case.
4745
9d774aff
JD
47462007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4747
4748 Improve handling of multiple S/R conflicts in the same state and of S/R
4749 conflicts involving multiple reductions.
4750 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4751 set for a state here or Bison will abort if it is reassigned on a
4752 later conflicted reduction in the same state.
4753 Similarly, don't finalize and assign the solved conflicts report here
4754 or it will be lost if it is reassigned on a later conflicted reduction
4755 in the same state.
4756 (set_conflicts): Instead, assign them both here after all S/R conflicts
4757 in the state have been fully examined.
4758 * src/print.c (shift_set): Rename to...
4759 (no_reduce_set): ... this.
4760 (print_reductions): Update for rename, and add %nonassoc error action
4761 tokens to no_reduce_set so that, when printing the first remaining
4762 reduction on an error action token, the reduction is enclosed in
4763 brackets.
4764 (print_results): Update for rename.
4765 * tests/conflicts.at (Solved conflicts report for multiple reductions
4766 in a state): New test case.
4767 (%nonassoc error actions for multiple reductions in a state): New test
4768 case.
4769
4770 * src/main.c (main): Don't depend on C99 features.
4771
10159d2a
JD
47722007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4773
4774 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
4775 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4776 uniwidth.
10159d2a 4777
953b3935
JD
47782007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4779
4780 * bootstrap (slurp): Create target directories that don't exist.
4781 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4782
6ce2d93a
JD
47832007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4784
4785 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4786 than item number.
4787 * closure.c (closure): Likewise.
4788 * state.h (reductions): Comment sorting of rules.
4789 (state): Comment sorting of items.
4790
ce3448d5
JD
47912007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4792
4793 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4794 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4795 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4796 definition in order to avoid Gnulib headers since we don't use config.h
4797 here.
4798 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4799 rather than AT_DATA so that config.h is included.
4800
8a86eef0
JD
48012007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4802
4803 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4804 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4805 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4806 and so that YYFPRINTF is guaranteed to be defined here.
4807
b1a81613
JD
48082007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4809
4810 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4811 with...
4812 (muscle_percent_define_check_values): ... this more helpful function.
4813 Again, it's not used yet, but it will be.
4814 * src/muscle_tab.h: Likewise.
4815
71b61d4d
JD
4816 Improve some comments in parser table construction.
4817 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4818 (generate_states): Don't mention ruleset, which is internal to closure.
4819 * src/closure.c (closure): Explain sorting of core and itemset, which
4820 is required for this function to behave correctly.
4821 * src/closure.h (closure): Mention sorting.
4822
2a6b783d
JD
48232007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4824
4825 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4826 move the check for disabled transitions to an aver since conflict
4827 resolution hasn't happened yet.
4828
4829 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4830 labels a state as inconsistent just because it has error transitions.
4831 The original form of this check appeared in revision 1.1 of lalr.c,
4832 which was committed on 1991-12-21. Now (at least), changing the
4833 consistency label on such a state appears to have no useful effect in
4834 any of the places it is examined, which I enumerate below. The key
4835 point to understanding each item in this enumeration is that a state
4836 with an error transition is labelled consistent in the first place only
4837 if it has no rules, so the check cannot matter for states that have
4838 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4839 to try to identify its conflicts, and a state must have *rules* to have
4840 conflicts. (2) Labelling a state as inconsistent will affect how
4841 action_row sets the default *rule* for the state. (3) Labelling a
4842 state as inconsistent will cause build_relations to add lookback edges
4843 to *rules* in that state.
4844 * src/state.h (struct state): Word the comment for member consistent
4845 more carefully.
4846
14462c2b
JD
48472007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4848
4849 Don't depend on C99 features.
4850 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4851 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4852 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4853 * src/state.c (state_mark_reachable_states): Fix for-loop.
4854 (state_remove_unreachable_states): Fix for-loop.
4855
4856 Don't widen struct state with member reachable just to temporarily
4857 record reachability. Instead, use a local bitset.
4858 * src/state.h (struct state): Remove member.
4859 * src/state.c (state_new): Don't initialize it.
4860 (state_mark_reachable_states): Rename to...
4861 (state_record_reachable_states): ... this, and use bitset.
4862 (state_remove_unreachable_states): Use bitset.
4863
5a43d418
JD
48642007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4865
4866 * src/Makefile.am (yacc): Quote target action commands properly so
4867 that the yacc script isn't corrupt. Reported by Hans Aberg at
4868 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4869
0c650a20
JD
4870 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4871 the case of pure parsers. Reported by Frans Englich at
4872 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4873 * THANKS: Add Frans Englich.
4874
61fee93e
JD
4875 * NEWS (2.3a+): In the %code entry, reference section `Bison
4876 Declaration Summary' from the manual now since the %code summary has
4877 moved there.
4878 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4879 in the rules section must be terminated by semicolons.
4880
f124d423
JD
48812007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4882
4883 Extend the front-end API for %define variables to more completely
4884 mirror the back-end. This will be useful in the future.
4885 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4886 Update comments to mention the new front-end counterparts of these
4887 macros.
4888 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4889 for muscle_string_decode and muscle_location_decode.
4890 (muscle_string_decode): New static function.
4891 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4892 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4893 functions.
4894 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4895 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4896 implementation more closely.
4897 (muscle_percent_define_invalid_value): New function.
4898 * src/muscle_tab.h (muscle_percent_define_get,
4899 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4900 Prototype.
4901
75ad86ee
JD
49022007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4903
4904 * NEWS (2.3a+): Mention yesterday's state-removal change.
4905 (2.3a): Remove the %language entry, which was added after 2.3a.
4906 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4907 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4908 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4909 tests/existing.at: Update copyright date.
4910
5967f0cf
JD
49112007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4912
4913 If conflict resolution makes states unreachable, remove those states,
4914 report rules that are then unused, and don't report conflicts in those
4915 states.
4916 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4917 New global function.
4918 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4919 function.
4920 * src/main.c (main): After conflict resolution, remove the unreachable
4921 states and update all data structures that reference states by number.
4922 * src/state.c (state_new): Initialize each state's reachable member to
4923 false.
4924 (state_mark_reachable_states): New static function.
4925 (state_remove_unreachable_states): New global function.
4926 * src/state.h (struct state): Add member bool reachable.
4927 (state_remove_unreachable_states): Prototype.
4928 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4929 New test case.
4930 * tests/existing.at (GNU pic Grammar): Update test case output now that
4931 an unused rule is discovered.
4932
b09f4f48
JD
49332007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4934
4935 Minor code cleanup in parser table construction.
4936 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4937 (new_itemsets, save_reductions): Update for rename to nitemset.
4938 * src/closure.c (nritemset): Rename to...
4939 (nitemset): ... this since the "r" appears to meaningless and isn't
4940 used in the comments.
4941 (closure): Update for rename.
4942 * src/closure.h (nritemset): Update extern to...
4943 (nitemset): ... this.
4944 * src/lalr.c (LA): Fix a typo in comments.
4945 * src/print.c (print_core): Update for rename to nitemset.
4946 * src/print_graph.c (print_graph): Likewise.
4947 * src/state.h: Fix some typos in header comments.
4948
bbb44d83
PE
49492007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4950
9b33de72
PE
4951 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4952 still sticks to ASCII. Sorry!
4953
bbb44d83
PE
4954 * README-hacking: New file, taken mostly from coreutils, with changes
4955 for Bison. Contains much of the contents of:
4956 * README-cvs: Remove.
4957 * bootstrap: Sync from gnulib.
4958 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4959 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4960
29553547
JD
49612007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4962
4963 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4964 Setzer.
4965 (Java Differences): Fix some typos.
4966 * THANKS: Add Sebastian Setzer.
4967
01b477c6
PB
49682007-03-07 Paolo Bonzini <bonzini@gnu.org>
4969
730739e4
AD
4970 * data/java.m4 (b4_single_class_if): Remove.
4971 (b4_abstract_if): Look at "%define abstract".
4972 (b4_lexer_if): New.
4973 (b4_union_name): Rename...
4974 (b4_yystype): ... to this. Map to "%define stype".
4975 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4976 b4_maybe_throws): Fix quoting.
4977 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4978 * data/lalr1.java (Lexer interface): Always define.
4979 (Lexer interface within parser class): Remove.
4980 (YYLexer class): New, used when "%code lexer" is present.
4981 (constructor): When "%code lexer" is used, pass %lex-param
4982 to the lexer constructor.
4983 (yylex, yyparse): Remove %lex-param from method invocations
4984 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4985
4986 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4987 abstract". Rename "%define union_name" to "%define stype".
4988 Rename method names according to previous patch.
4989 (Java Scanner Interface): Describe "%code lexer" instead of
4990 "%pure-parser" and "%define single_class".
4991 (Java Differences): Mention "%code lexer".
4992
4993 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4994 Include scanner here, using macros from tests/local.at.
4995 (AT_DATA_CALC_Y): Remove final argument.
4996 (_AT_CHECK_JAVA_CALC): Likewise.
4997 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4998 of %locations and %error-verbose.
4999 (main): Test with and without %lex-param.
5000 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5001 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 5002
122bea3a
JMG
50032007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5004
5005 DJGPP spefic issue. Inhibit the use of disallowed characters for
5006 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5007 and concern testsuite case 46.
5008 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5009 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5010 * djgpp/config.bat: Inhibit the use of disallowed characters.
5011
9611cfa2
JD
50122007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5013
5014 Miscellaneous %define and %code cleanup.
5015 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5016 values are interpreted.
5017 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5018 documentation a little more.
5019 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5020 muscle_percent_define_insert, muscle_percent_code_grow): New
5021 functions/macros.
5022 * src/muscle_tab.h (muscle_percent_define_insert,
5023 muscle_percent_code_grow): Prototype.
5024 * src/parse-gram.y (prologue_declaration): Use
5025 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5026 %define and %code directives.
5027
5028 Make it easy to share %define boolean variables between the front-end
5029 and back-end. Though not used yet, this will be useful in the future.
5030 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5031 Bison uses of names rather than just skeleton uses of names.
5032 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5033 b4_percent_define_skeleton_variables(VARIABLE) to
5034 b4_percent_define_bison_variables(VARIABLE).
5035 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5036 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5037 b4_percent_code_bison_qualifiers(QUALIFIER).
5038 (b4_check_user_names_wrap): Update for renames.
5039 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5040 muscle_percent_define_default): New functions mimicking
5041 b4_percent_define_flag_if and b4_percent_define_default.
5042
5043 For %define variables, report locations for invalid values and
bbb44d83 5044 redefinitions.
9611cfa2
JD
5045 * data/bison.m4 (b4_percent_define_flag_if): Read
5046 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5047 value for VARIABLE.
5048 (b4_percent_define_default): Save a special location in
5049 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5050 must later be reported as invalid.
5051 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5052 functions.
5053 (muscle_percent_define_insert): Record the location of VARIABLE in
5054 muscle percent_define_loc(VARIABLE), and use it to report the previous
5055 location for a redefinition.
5056 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5057 (muscle_percent_define_default): Update like b4_percent_define_default.
5058 (muscle_grow_user_name_list): Rename to...
5059 (muscle_user_name_list_grow): ... this for consistency and use
5060 muscle_location_grow.
5061 * src/muscle_tab.h (muscle_location_grow): Prototype.
5062 * tests/input.at (%define errors): Update expected output.
5063 * tests/skeletons.at (%define boolean variables: invalid skeleton
5064 defaults): New test case.
5065
0bf92491
JD
50662007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5067
5068 * src/print.c (lookahead_set, state_default_rule): Remove.
5069 (print_reductions): Replace state_default_rule invocation with
5070 equivalent use of yydefact, which was computed in token_actions in
5071 tables.c.
5072 (print_results): Don't allocate lookahead_set.
5073
d3b12988
PB
50742007-02-27 Paolo Bonzini <bonzini@gnu.org>
5075
5076 * data/lalr1.java: Prefix all private members with yy.
5077
f57a7536
JD
50782007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5079
5080 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 5081 Sebastien Fricker at
f57a7536 5082 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 5083 * THANKS: Add Sebastien Fricker.
f57a7536
JD
5084 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5085 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5086 accept a variable number of arguments.
5087
6404a5bf
JD
50882007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5089
5090 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5091
e4e09639
JMG
50922007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5093
5094 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5095 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5096 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5097
d7e0a1a7
PE
50982007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5099
5100 Undo my 2007-02-07 change, switching back to the c-strcase module
5101 introduced in the 2007-02-03 change. Bruno Haible reported that
5102 the 2007-02-07 change would be dangerous in Turkish if we add a
5103 language whose name contains "i", since "i" is not lowercase "I"
5104 in Turkish.
5105 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5106 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5107 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5108 * m4/.cvsignore: Remove strcase.m4.
5109 * src/getargs.c: Revert 2007-02-07 change, as follows.
5110 Include c-strcase.h.
5111 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5112
deee93a1
JD
51132007-02-11 Bruno Haible <bruno@clisp.org>
5114
5115 Enable the Java related testsuite tests when the only Java compiler
5116 found is a gcj < 4.3. Discussed at
5117 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5118 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5119
574add85
JD
51202007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5121
5122 * data/Makefile.am: Update copyright date.
5123 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5124 yypstate_new returns NULL.
5125 (yypstate_new): Return NULL if malloc does.
5126 * src/reader.c (packgram): Move translation of rule actions from the
5127 beginning of packgram to...
5128 (check_and_convert_grammar): ... here right before packgram is invoked
5129 so it's easier to write more complete comments, and remove redundant
5130 code.
5131
e785ccf7
JD
51322007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5133
5134 As in semantic actions, make @$ in %initial-action, %destructor, and
5135 %printer imply %locations.
5136 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5137 scanning @$.
5138 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5139 (@$ in %initial-action implies %locations,
5140 @$ in %destructor implies %locations,
5141 @$ in %printer implies %locations): ... these new test cases.
5142
1cfe1ed7
PE
51432007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5144
5145 Undo most of the 2007-02-03 change, switching to the strcase module
5146 now that gnulib strcase has been fixed.
5147 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5148 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5149 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5150 * m4/.cvsignore: Add strcase.m4.
5151 * src/getargs.c: Revert 2007-02-03 change, as follows.
5152 Don't include c-strcase.h.
5153 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5154 strcasecmp has "unspecified behavior" outside the POSIX locale,
5155 but it works fine in practice if at least one argument is ASCII,
5156 as is the case in Bison.
5157
0049ec86
PB
51582007-02-07 Paolo Bonzini <bonzini@gnu.org>
5159
5160 * tests/java.at: Skip tests if only one of javac/java is present.
5161 Reported by Joel E. Denny.
5162 * tests/atlocal.in: Adjust copyright years.
5163
51642007-02-05 Paolo Bonzini <bonzini@gnu.org>
5165
5166 * data/lalr1.java (Stack): Work around old verifiers that disallow
5167 access to the private fields of an inner class, from the outer class.
5168 We can make Stack's fields public because user code doesn't have access
5169 to the instance of Stack used by parse(). Reported by Paul Eggert.
5170
2c2b7220
PE
51712007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5172
5173 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5174 the right spot for these files?
5175 * bootstrap.conf (gnulib_modules): Add c-strcase.
5176 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5177 c-strncasecmp.c.
5178 * src/getargs.c: Include c-strcase.h.
5179 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5180 to avoid unspecified behavior.
5181
b2b81dae
JD
51822007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5183
5184 * doc/bison.texinfo (Decl Summary): Correct typo.
5185
c1d19e10
PB
51862007-01-30 Paolo Bonzini <bonzini@gnu.org>
5187
5188 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5189 Complain if the value does not match empty, "true" or "false".
5190 * data/c++.m4: Adjust default definitions of %define variables.
5191 * data/java.m4: Adjust default definitions of %define variables.
5192 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5193 to above behavior.
5194 * tests/input.at (Boolean %define variables): Test new behavior.
5195
8405b70c
PB
51962007-01-29 Paolo Bonzini <bonzini@gnu.org>
5197
5198 * NEWS: Mention java.
5199 * TODO: Remove things that are done.
5200 * bootstrap.conf: Add javacomp-script and javaexec-script.
5201 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5202
5203 * data/Makefile.am: Add new files.
5204 * data/java-skel.m4: New.
5205 * data/java.m4: New.
5206 * data/lalr1.java: New.
5207
5208 * doc/bison.texinfo: Put "A Complete C++ Example" under
5209 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5210 under Other Languages.
5211
5212 * src/getargs.c (valid_languages): Add Java.
5213 * src/getargs.h (struct bison_language): Update size of string fields.
5214
5215 * tests/Makefile.am: Add java.at.
5216 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5217 * tests/java.at: New.
5218 * tests/testsuite.at: Include it.
5219
3eb82471
JD
52202007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5221
5222 Clean up.
5223 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5224 at_directive_argv arguments so these no longer have to be global
5225 variables. Also, update the implementation for the following changes.
5226 (fail_for_at_directive_too_many_args,
5227 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5228 (at_directive_name): Remove as at_directive_argv[0] will be used for
5229 this now.
5230 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5231 for the directive name.
5232 (at_directive_argc, at_directive_argv): Make these local within
5233 skel_lex instead of global.
5234 (INITIAL): Update directive start action for above changes.
5235 (SC_AT_DIRECTIVE_ARG): Rename to...
5236 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5237 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5238 (scan_skel): Move yylex_destroy to...
5239 (skel_scanner_free): ... here.
5240 * tests/skeletons.at (installed skeleton file name): Rename to...
5241 (installed skeleton file names): ... this.
5242
148d66d8
JD
52432007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5244
5245 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5246 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5247 Summary" not "Directives".
5248 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5249 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5250 since the former is now the more complete one.
5251 (Prologue Alternatives): Likewise and do the same for %defines.
5252 (Table of Symbols): Add summary of %code, add summary of %define, and
5253 move full %code documentation to...
5254 (Decl Summary): ... here for consistency with other entries in these
5255 sections.
5256 Move %define entry in order to keep this list alphabetized.
5257 Reword %define entry a little to put less emphasis on the skeleton
5258 concept, which most users shouldn't have to think about.
5259
665f0c24
PE
52602007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5261
5262 Adjust to recent gnulib changes.
5263 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5264 Add string.h, string_.h, unistd_.h, wchar_.h.
5265 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5266 * src/system.h: Don't include <stpcpy.h>; this is now done by
5267 <string.h>.
5268
592d0b1e
PB
52692007-01-23 Paolo Bonzini <bonzini@gnu.org>
5270
5271 Simplify implementation of unqualified %code, implement macros for
5272 uniform treatment of boolean %define flags. Document %define.
5273 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5274 b4_percent_code_ifdef): New.
5275 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5276 * data/c++.m4: Define default value for global_tokens_and_yystype.
5277 * data/glr.cc: Likewise.
5278 * data/location.cc: Use b4_percent_define_flag_if.
5279
148d66d8 5280 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
5281
5282 * src/parse-gram.y (Unqualified %code): Change muscle name to
5283 b4_percent_code().
5284 (content.opt): Default to empty.
5285
a7867f53
JD
52862007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5287
5288 Implement support for relative and absolute skeleton file names.
5289 Discussed starting at
5290 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5291 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5292 (Bison Options): Document in --skeleton entry.
5293 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5294 full_skeleton can't necessarily hold all of pkgdatadir.
5295 If the specified skeleton file name contains a `/', don't prepend
5296 pkgdatadir.
5297 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5298 file name contains a `/', prepend the grammar file directory.
5299 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5300 * skeletons.at: New file.
5301 (relative skeleton file names): New test case.
5302 (installed skeleton file names): New test case.
5303 * tests/testsuite.at: Include skeletons.at.
5304
5305 * bootstrap: Update copyright to 2007.
5306
830c9b18
PB
53072007-01-17 Paolo Bonzini <bonzini@gnu.org>
5308
5309 * bootstrap: Remove occurrences of .#bootmp from the files.
5310
a8c2e813
AD
53112007-01-17 Akim Demaille <akim@epita.fr>
5312
5313 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5314 nonterminals.
5315 Use per-type %printer.
5316
279cabb6
JD
53172007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5318
5319 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
5320 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5321 djgpp/config.site, src/files.c, src/files.h, src/main.c,
5322 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
5323 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
5324 tests/glr-regression.at, tests/input.at, tests/local.at,
5325 tests/output.at, tests/torture.at: Update copyright to 2007.
5326
bb32f4f2
AD
53272007-01-16 Akim Demaille <akim@epita.fr>
5328
5329 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
5330 error code.
5331 (Calc++ Scanner): Exit with failure if we can't open the input
5332 file.
5333 Accept "-" standing for stdin.
5334 (Calc++ Top Level): Print the result only if the parsing was
5335 successful.
5336
7cff04b5
AD
53372007-01-16 Akim Demaille <akim@epita.fr>
5338
5339 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
5340
a4e25e1d
JD
53412007-01-15 Paolo Bonzini <bonzini@gnu.org>
5342 and Joel E. Denny <jdenny@ces.clemson.edu>
5343
5344 Clean up %define and %code implementation in M4 some. Most
5345 importantly, rename all related macros to be in the b4_percent_define
5346 and b4_percent_code namespaces. Also, complete support for `.' in
5347 %define variable names and %code qualifiers.
5348 * data/bison.m4 (b4_check_user_names): Check for special
5349 "SKELETON-NAMESPACE(name)" macros instead of using two nested
5350 m4_foreach loops.
5351 (b4_get_percent_define, b4_get_percent_code): Rename to...
5352 (b4_percent_define_get, b4_percent_code_get): ... these.
5353 Extend documentation with examples.
5354 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
5355 b4_percent_define_skeleton_variables and
5356 b4_percent_code_skeleton_qualifiers.
5357 Expect any value for the %define variable `foo' to be stored in the
5358 macro named `b4_percent_define(foo)'; expect any %code blocks for the
5359 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
5360 expect any unqualified %code blocks to be stored in a macro named
5361 `b4_percent_code_unqualified'.
5362 Use m4_indir so that %define variable names and %code qualifiers can
5363 contain `.', which is allowed by the grammar parser.
5364 (b4_percent_define_default): New macro to set a default value for a
5365 %define variable.
5366 (m4_wrap): Update wrapped code, and fix some underquoting.
5367 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
5368 Expect grammar uses of %define variables and %code qualifiers to be
5369 defined in b4_percent_define_user_variables and
5370 b4_percent_code_user_qualifiers.
5371 * data/c++.m4: Use b4_percent_define_default rather than
5372 m4_define_default. Fix some underquoting. Skeleton usage of %define
5373 variable define_location_comparison now implies skeleton usage of
5374 %define variable filename_type.
5375 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5376 data/push.c, data/yacc.c: Update macro names.
5377 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
5378 muscle names.
5379
e37c665c
JMG
53802007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5381
5382 DJGPP specific issues.
5383
5384 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
5385 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
5386
7d2d521f
JD
53872007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5388
5389 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
5390 run parsers in all tests so that Valgrind is invoked during
5391 maintainer-check-valgrind.
5392 (Duplicate representation of merged trees): Free all semantic values.
5393 (Duplicated user destructor for lookahead): Likewise.
5394
e0ac9b4b
JD
53952007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5396
5397 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
5398 command-line prefix.
5399 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5400 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5401 miss Valgrind messages.
5402 (Exploding the Stack Size with Malloc): Likewise.
5403
78143faa
JD
54042007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5405
5406 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5407 locals. Reported by Juan Manuel Guerrero at
5408 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5409 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5410 Fix some indentation also.
5411 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5412 explaining this issue.
5413
7ecec4dd
JD
54142007-01-09 Paolo Bonzini <bonzini@gnu.org>
5415 and Joel E. Denny <jdenny@ces.clemson.edu>
5416
5417 Simplify union and prologue handling, and escape union and lex/parse
5418 params with digraphs.
5419 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5420 values to the empty string since these are no longer guaranteed
5421 initialized by the front-end.
5422 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5423 braces around b4_user_stype since this is no longer done by the
5424 front-end.
5425 * src/files.c, src/files.h (pre_prologue_obstack,
5426 post_prologue_obstack): Remove.
5427 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5428 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5429 with digraphs. This fixes lex params and parse params.
5430 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5431 * src/output.c (prepare): Remove muscle insertion of the prologues.
5432 (output): Remove freeing of pre_prologue_obstack and
5433 post_prologue_obstack.
5434 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5435 than prologue_augment for prologue parsing so you don't need prologue
5436 obstacks.
5c80250c
JD
5437 (grammar_declaration): For %union RHS, use `braceless' instead of
5438 "{...}" so that braces are already stripped and code is escaped with
5439 digraphs.
7ecec4dd
JD
5440 * src/reader.c (prologue_augment): Remove.
5441 (reader): Remove initialization of pre_prologue_obstack and
5442 post_prologue_obstack.
5443 * src/reader.h (prologue_augment): Remove.
5444
5445 * data/c.m4: Remove stray parenthesis.
5446
16dc6a9e
JD
54472007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5448
5449 Remove quotes from variables names in %define directives and from
5450 qualifiers in %code directives, and restrict the characters that are
5451 allowed in them to M4-friendly ones. For %define, continue to support
5452 the quoted form as a deprecated feature. Discussed starting at
5453 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5454 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5455 %code.
5456 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
5457 (Decl Summary): In %defines entry, update mention of `%code requires'
5458 and `%code provides'.
16dc6a9e
JD
5459 (C++ Location Values): Update %define uses.
5460 (Calc++ Parser Interface): Likewise.
5461 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 5462 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
5463 * src/parse-gram.y (prologue_declaration): For %define variables, use
5464 `variable' instead of `STRING'.
5465 (grammar_declaration): For %code qualifiers, use `ID' instead of
5466 `STRING'.
5467 (variable): New nonterminal that takes an `ID' or a `STRING'.
5468 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5469 and %define uses.
5470 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5471 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5472 (%define errors): Update %define uses.
5473
e9813cd4
JD
54742007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5475
5476 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5477 instead of muscle_insert for %define values so that M4-special
5478 characters are replaced with digraphs.
5479 * tests/input.at (%define errors): Extend to check weird values.
5480
6afc30cc
JD
54812007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5482
5483 Instead of having skeletons declare all valid %define variables and
5484 %code qualifiers, provide macros that retrieve the associated values
5485 and build these lists automatically. Thus Bison will now warn when a
5486 variable or qualifier is not used by the skeleton in the current
5487 invocation regardless of whether it might sometimes be used by that
5488 skeleton in other invocations. Also, move all %define value macros to
5489 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5490 form, which is replaced by %code.
5491 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5492 (b4_check_user_names): ... this, and change the series of valid name
5493 arguments to a single list argument for names used in the skeleton
5494 similar to the existing list argument for names used in the grammar.
5495 Warn instead of complaining.
5496 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5497 values and %code code, to format %code code properly, and to build
5498 lists of all %define variables and %code qualifiers used in the
5499 skeleton: b4_skeleton_percent_define_variables and
5500 b4_skeleton_percent_code_qualifiers.
5501 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5502 Remove, and...
5503 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5504 the skeleton names lists can finish building first. In place of
5505 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5506 expect the lists b4_user_percent_define_variables and
5507 b4_user_percent_code_qualifiers.
5508 * data/c++.m4: Where setting default values for b4_parser_class_name,
5509 b4_location_type, b4_filename_type, b4_namespace, and
5510 b4_define_location_comparison, update their names to the
5511 b4_percent_define_ namespace.
5512 * data/glr.c: Don't use b4_check_percent_define_variables and
5513 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5514 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5515 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 5516 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
5517 * data/location.cc: Use b4_get_percent_define.
5518 * data/push.c: Don't use b4_check_percent_define_variables and
5519 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5520 * data/yacc.c: Likewise, and don't call m4_exit in
5521 b4_use_push_for_pull_if or m4_wrap code will never execute.
5522 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5523 Rename to...
5524 (muscle_grow_user_name_list): ... this for consistency with the
5525 terminology used in bison.m4.
5526 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5527 %define variable names, and rename muscle used_percent_define_variables
5528 to user_percent_define_variables.
5529 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5530 user_percent_code_qualifiers.
5531 (content): Remove.
5532 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5533 {CODE} form is no longer accepted.
5534 * tests/input.at (Reject bad %code qualifiers): Rename to...
5535 (Reject unused %code qualifiers): ... this, and update test output.
5536 (%define error): Update test output.
5537
7eb8a0bc
JD
55382007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5539
5540 Check for unrecognized %define variables similar to checking for
5541 unrecognized %code qualifiers. Check for redefined %define variables.
5542 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5543 generalizes...
5544 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5545 (b4_check_percent_define_variables): New, also wraps it.
5546 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5547 variables using b4_check_percent_define_variables.
5548 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5549 all those exercised in the test suite and all those listed in the
5550 `Default values' section of c++.m4. Are there others?
5551 * data/push.c, data/yacc.c: Declare no valid %define variables.
5552 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5553 similar to muscle_find, but it works even when the muscle stores a
5554 const value.
5555 (muscle_grow_used_name_list): New function for constructing the used
5556 name list muscles that b4_check_for_unrecognized_names requires.
5557 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5558 %define'd more than once. Define the b4_used_percent_define_variables
5559 muscle with muscle_grow_used_name_list.
5560 (grammar_declaration): Abbreviate %code code with
5561 muscle_grow_used_name_list.
5562 * tests/input.at (%define errors): New.
5563
3fc65ead
JD
55642007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5565
5566 Provide warn_at, complain_at, and fatal_at function callbacks to the
5567 skeletons, and use this for %code qualifier complaints.
5568 * data/bison.m4 (b4_error_at): New, invoked by...
5569 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5570 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5571 @fatal_at(...@) directives.
5572 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5573 qualifiers in b4_used_percent_code_qualifiers and to use
5574 b4_complain_at.
5575 * src/location.c, src/location.h (boundary_set_from_string): New global
5576 function.
5577 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5578 function.
5579 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5580 to b4_used_percent_code_qualifiers.
5581 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5582 function.
5583 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5584 (lineno): Rename to...
5585 (out_lineno): ... this so I don't misunderstand it again.
5586 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5587 here; these newlines are in the input but not the output file.
5588 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5589 (at_directive_perform): ... this new static function, and add handling
5590 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5591 directives.
5592 * tests/input.at (Reject bad %code qualifiers): Update test output with
5593 locations and extend.
5594
5595 * tests/output.at (Output file name: [, Output file name: ]): Remove
5596 bogus comment about these tests failing.
5597
1c7b7e1d
JD
55982007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5599
5600 Clean up b4_check_percent_code_qualifiers a little.
5601 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5602 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5603 documentation and add examples.
5604 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5605 qualifiers here.
5606
08af01c2
JD
56072007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5608
5609 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5610 unreliable -- especially when they're hidden inside another macro.
5611 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5612 data/c.m4: Remove m4_divert(-1).
5613 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5614 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5615 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 5616 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
5617 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5618 pushed and popped by m4sugar, should be first on the stack.
5619
5620 Provide warn, complain, and fatal function callbacks to the skeletons.
5621 This provides more flexibility than m4_fatal, improves the error
5622 message format, and captures messages for translation. Discussed
5623 starting at
5624 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5625 * data/bison.m4 (b4_error): New, invoked by...
5626 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5627 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5628 directives. Because these M4 macros might be called when the current
5629 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5630 the previous removal of uses of m4_divert, which caused trouble.
5631 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5632 m4_fatal to report unrecognized %code qualifiers.
5633 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5634 push parser requests.
5635 * data/glr.c: Use b4_complain instead of m4_fatal to report
5636 non-deterministic push parser requests.
5637 Update @output usage to @output(...@) form.
5638 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5639 report missing %defines. Update @output usage to @output(...@) form.
5640 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5641 @output(...@) form.
5642 * src/main.c (main): Invoke skel_scanner_free.
5643 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5644 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5645 obstack_for_string from flex-scanner.h.
5646 (YY_DECL): Use to declare skel_lex static.
5647 (decode_at_digraphs): Remove; now handled in the new
5648 SC_AT_DIRECTIVE_ARG start condition.
5649 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5650 functions.
5651 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5652 at_directive_argv): New static globals.
5653 (INITIAL): Use fail_for_invalid_at.
5654 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5655 recognize the start of a generalized `@directive(...@)' form and
5656 start...
5657 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5658 directive args (using the new obstack_for_string), to decode the
5659 contained @ diagraphs, and to perform the directive. It recognizes
5660 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5661 @output(...@).
5662 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5663 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5664 `@,'.
5665 (scan_skel): Initialize obstack_for_string on the first call.
5666 (skel_scanner_free): New function to free obstack_for_string.
5667 * tests/input.at (Reject bad %code qualifiers): Update test output.
5668
8e0a5e9e
JD
56692007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5670
5671 Consolidate the 4 prologue alternative directives (%code, %requires,
5672 %provides, and %code-top) into a single %code directive with an
5673 optional qualifier field. Discussed at
5674 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5675 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5676 alternatives.
5677 * doc/bison.texinfo (Prologue Alternatives): Update.
5678 (Decl Summary): Update to %code "requires" and %code "provides".
5679 (Calc++ Parser): Update to %code "requires".
148d66d8 5680 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
5681 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5682 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5683 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5684 which are skeleton-specific.
5685 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5686 declare what %code qualifiers it supports and to complain if any other
5687 qualifiers were used in the grammar.
5688 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5689 and b4_user_code([b4_percent_code_provides]) in place of
5690 b4_user_requires and b4_user_provides.
5691 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5692 Add b4_user_code([b4_percent_code_top]) and
5693 b4_user_code([b4_percent_code]).
5694 Invoke b4_check_percent_code_qualifiers.
5695 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5696 PERCENT_REQUIRES): Remove.
5697 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5698 %requires. Rewrite the %code RHS as the unqualified form defining the
5699 muscle b4_percent_code. Add another RHS for the qualified %code form,
5700 which defines muscles of the form b4_percent_code_QUALIFIER and the
5701 b4_used_percent_code_qualifiers muscle.
5702 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5703 PERCENT_REQUIRES): Remove.
5704 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5705 %code "requires" and %code "provides".
5706 * tests/input.at (Reject bad %code qualifiers): New.
5707
95021767
JD
57082007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5709
5710 Use the new code_props interface for destructors and printers.
5711 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5712 printer_location members, and change the type of the destructor and
5713 printer members to code_props.
5714 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5715 symbol_printer_get, semantic_type_destructor_set,
5716 semantic_type_printer_set, default_tagged_destructor_set,
5717 default_tagless_destructor_set, default_tagged_printer_set,
5718 default_tagless_printer_set): Use code_props in arguments and return
5719 types in place of char const * and location.
5720 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5721 since the locations are now contained in the return of
5722 symbol_destructor_get and symbol_printer_get.
5723 * src/output.c (symbol_destructors_output, symbol_printers_output):
5724 Replace with...
5725 (symbol_code_props_output): ... this to eliminate duplicate code.
5726 (output_skeleton): Update to use symbol_code_props_output.
5727 * src/reader.c (symbol_should_be_used): Update use of
5728 symbol_destructor_get.
5729 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5730 Update uses of the various _destructor_set and _printer_set functions.
5731 * src/symtab.c: (default_tagged_destructor_location,
5732 default_tagless_destructor_location, default_tagged_printer_location,
5733 default_tagless_printer_location): Remove since we...
5734 (default_tagged_destructor, default_tagless_destructor,
5735 default_tagged_printer, default_tagless_printer): ... change the type
5736 of these to code_props.
5737 (symbol_new, semantic_type_new, symbol_destructor_set,
5738 semantic_type_destructor_set, symbol_destructor_get,
5739 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5740 symbol_check_alias_consistency, default_tagged_destructor_set,
5741 default_tagless_destructor_set, default_tagged_printer_set,
5742 default_tagless_printer_set): Update.
5743 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5744 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5745 code_props members.
5746 (symbol_print): Use SYMBOL_CODE_PRINT.
5747
f6857bbf
JD
57482007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5749
5750 Use the new code_props interface for rule actions.
5751 * src/symlist.h (symbol_list): Replace action, action_location, and
5752 used members with a code_props action_props member.
5753 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5754 grammar_midrule_action, grammar_current_rule_merge_set,
5755 grammar_current_rule_symbol_append, packgram): Update.
5756 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5757 * src/scan-code.l (handle_action_dollar): Update.
5758 (translate_rule_action): Remove, no longer used.
5759 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5760
7c0c6181
JD
57612007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5762
5763 Use the new code_props interface in parse-gram.y.
5764 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5765 Update all uses of translate_* functions to use the new code_props
5766 interface and to use gram_scanner_last_string_free and
5767 code_scanner_last_string_free where possible.
5768 (grammar_declaration): symbol_list_destructor_set and
5769 symbol_list_printer_set now perform the translation, so don't do it
5770 here. Use gram_scanner_last_string_free where possible.
5771 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5772 translate_code): Remove, no longer used.
5773 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5774 symbol_list_printer_set): Perform code translation here rather than
5775 depending on the caller to do so.
5776
5777 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5778 * src/scan-gram.h (gram_last_string): Remove declaration.
5779 * src/scan-gram.l (last_string): Declare it static.
5780
28e52c0d
JD
57812007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5782
5783 Encapsulate code properties and related functionality for the various
5784 destructors, printers, and actions into a code_props structure and
5785 interface. This patch merely implements code_props in scan-code.h and
5786 scan-code.l. Future patches will rewrite other modules to use it.
5787 Discussed starting at
5788 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5789 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5790 consistently initialize const structs that have an empty location
5791 field.
5792 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5793 to ensure consistency.
5794 * src/scan-code.h (code_props): New structure.
5795 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5796 function, macro, and const global variable for initializing a
5797 code_props with no code.
5798 (code_props_plain_init, code_props_symbol_action_init,
5799 code_props_rule_action_init, code_props_translate_code): The rest of
5800 the new code_props functional interface. Among other things, the init
5801 functions set the code_props kind field so that
5802 code_props_translate_code will know whether to behave like
5803 translate_symbol_action, translate_rule_action, or translate_code.
5804 These old translate functions must remain until all other modules are
5805 updated to use the new code_props interface.
5806 (code_scanner_last_string_free): New function similar to
5807 gram_scanner_last_string_free.
5808 (code_scanner_free): Add documentation.
5809 * src/scan-code.l: Implement the new interface.
5810 (code_lex): Make it static, add a code_props* argument, and remove the
5811 rule argument.
5812 (last_string): New static global similar to the one in scan-gram.l.
5813 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5814 instead of rule.
5815 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5816 code_props since Bison may one day use this information for destructors
5817 and printers.
5818 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5819 (handle_action_dollar): Use symbol_list_n_get and set used flag
5820 directly since symbol_list_n_used_set is removed.
5821 (translate_action): Add a code_props* argument and remove the rule,
5822 action, and location arguments. Pass the code_props* on to code_lex.
5823 (translate_rule_action, translate_symbol_action, translate_code):
5824 Rewrite as wrappers around the new code_props interface.
5825 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5826 it would eventually need to break the encapsulation of code_props.
5827
96034983
JD
58282007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5829
5830 * etc/.cvsignore: New.
5831
945e396c
JD
58322007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5833
5834 Add maintainer-push-check to run maintainer-check using push parsing in
5835 place of pull parsing where available.
5836 * Makefile.am (maintainer-push-check): New.
5837 * data/bison.m4 (b4_use_push_for_pull_if): New.
5838 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5839 appropriately based on their existing values.
5840 (yypush_parse): Don't print push-parser-specific diagnostics if push
5841 parsing is being used in place of pull parsing.
5842 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5843 push.c.
5844 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5845 variable, and insert b4_use_push_for_pull_flag into muscles.
5846 * tests/Makefile.am (maintainer-push-check): New.
5847
7d596384
JD
58482006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5849
5850 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5851 (whether successful or failed) so that yypush_parse can be invoked
5852 again to start a new parse using the same yypstate.
5853 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5854 check multiple yypull_parse invocations on the same yypstate. For pull
5855 mode, extend to check multiple yyparse invocations.
5856 (Exploding the Stack Size with Alloca): Extend to try with
5857 %push-pull-parser.
5858 (Exploding the Stack Size with Malloc): Likewise.
5859
5860 * tests/calc.at (Simple LALR Calculator): Don't specify
5861 %skeleton "push.c" since %push-pull-parser implies that now.
5862 * tests/headers.at (export YYLTYPE): Don't check for the push
5863 declarations. Otherwise, this test case can't be used to see if push
5864 mode can truly emulate pull mode.
5865 * tests/input.at (Torturing the Scanner): Likewise.
5866 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5867 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5868 AT_YACC_IF, which now includes the case of push mode since %skeleton
5869 need not be used for push mode. This will be more intuitive once
5870 push.c is renamed to yacc.c.
5871
7172e23e
JD
58722006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5873
5874 For push mode, convert yyparse from a macro to a function, invoke yylex
5875 instead of passing a yylexp argument to yypull_parse, and don't
5876 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5877 Discussed starting at
5878 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5879 * data/bison.m4 (b4_pull_if): New.
5880 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5881 * data/push.c: Improve M4 quoting a little.
5882 (b4_generate_macro_args, b4_parenthesize): Remove.
5883 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5884 any time a pull parser is requested.
5885 Don't #define this as a wrapper around yypull_parse. Instead, when
5886 both push and pull are requested, make it a function that does that
5887 same thing.
5888 (yypull_parse): If there's a b4_prefix, #define this to
5889 b4_prefix[pull_parse] when both push and pull are requested.
5890 Don't define this as a function unless both push and pull are
5891 requested.
5892 Remove the yylexp argument and hard-code yylex invocation instead.
5893 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5894 %push-parser.
5895 * src/getargs.c (pull_parser): New global initialized to true.
5896 * getargs.h (pull_parser): extern it.
5897 * src/output.c (prepare): Insert pull_flag muscle.
5898 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5899 (prologue_declaration): Set both push_parser and pull_parser = true for
5900 %push-pull-parser. Set push_parser = true and pull_parser = false for
5901 %push-parser.
5902 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5903 %push-parser since there's no backward-compatibility concern here.
5904 Scan %push-pull-parser.
5905 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5906 instead of %push-parser.
5907 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5908 prototype it in the module that calls yyparse.
5909 * tests/input.at (Torturing the Scanner): Likewise.
5910 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5911
2e7944cb
JD
59122006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5913
5914 Update etc/bench.pl. Optimize push mode a little (the yyn change
5915 deserves most of the credit).
5916 * Makefile.am (SUBDIRS): Add etc subdirectory.
5917 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5918 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5919 yytoken, yyval, and yyloc declarations to...
5920 (yyparse or yypush_parse): ... here to improve performance. For
5921 yypush_parse invocations after the first, be sure to assign yyn its old
5922 value again.
5923 (yypstate_new): Don't bother initializing the yyresult field since the
5924 initial value isn't used.
5925 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5926 remove the #define that, in push mode, set it to yyps->NAME.
5927 * etc/Makefile.am: New.
5928 * etc/bench.pl: Remove and build it instead from...
5929 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5930 "tests/bison" from the build directory by default rather than just
5931 invoking "bison" from $PATH.
5932 (calc_grammar): Update push parser code: don't declare yylval globally,
5933 don't define yyparse_wrapper, and don't #define yyparse.
5934 (bench_grammar): Update to check all working combinations of yacc.c,
5935 push.c, impure, pure, pull, and push.
5936
c3d50342
JD
59372006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5938
5939 For push mode, add pull wrappers around yypush_parse.
5940 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5941 (yypull_parse): New function wrapping yypush_parse.
5942 (yyparse): New #define wrapping yypull_parse.
5943 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5944 is declared.
5945 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5946 prototype yylex in the module that calls yyparse, and don't prototype
5947 yyparse there. Otherwise, the yyparse expansion won't compile.
5948 * tests/input.at (Torturing the Scanner): Likewise.
5949
94ebeba5
JD
59502006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5951
5952 Enable push parsers to operate in impure mode. Thus, %push-parser no
5953 longer implies %pure-parser. The point of this change is to move
5954 towards being able to test the push parser code by running the entire
5955 test suite as if %push-parser had been declared.
5956 * data/push.c (yypush_parse): For impure mode, remove the
5957 yypushed_char, yypushed_val, and yypushed_loc arguments.
5958 Instead, declare these as local variables initialized to the global
5959 yychar, yylval, and yylloc.
5960 For the first yypush_parse invocation only, restore the initial values
5961 of these global variables when it's time to read a token since they
5962 have been overwritten.
5963 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5964 %push-parser.
5965 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5966 %pure-parser along with %push-parser since this test case was designed
5967 for pure push parsers.
5968 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5969 (AT_YACC_OR_PUSH_IF): New.
5970 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5971 add a note that it's still wrong for some cases (as it has been for a
5972 while).
5973 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5974 %push-parser no longer implies %pure-parser.
5975
a0633178
JD
59762006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5977
5978 Remove some unnecessary differences between the pull parser code and
5979 the push parser code. This patch enables yynerrs in push mode.
5980 * data/push.c: Reformat M4 a little.
5981 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5982 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5983 because push mode is on. Instead, if pure mode is on, move yynerrs
5984 to...
5985 (b4_declare_parser_state_variables): ... here.
5986 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5987 to yyps->NAME so it can be used in yypush_parse.
5988 (yypush_parse): Don't omit uses of yynerrs in push mode.
5989
8646b6a3
JD
59902006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5991
5992 Fix bug such that the first pushed token's value and location are
5993 sometimes overwritten (sometimes by %initial-action) before being used.
5994 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5995 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5996 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5997 more closely mimic the pull parser logic.
5998 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5999 time to read a token, which is after any initialization of yylval and
6000 yylloc.
6001 (gottoken): Rename label to...
6002 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6003 user namespace.
6004
9baf4d74
JD
60052006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6006
6007 Rearrange initialization of the parser state variables so that the
6008 skeleton doesn't have to have a copy for pull mode and another for push
6009 mode. This patch also fixes at least a bug such that yylloc was not
6010 initialized (with b4_location_initial_line and
6011 b4_location_initial_column) upon calling yypush_parse. However, that
6012 initialization now overwrites the first token's location;
6013 %initial-action assigning @$ already did the same thing, and both bugs
6014 will be fixed in a later patch.
6015 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6016 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6017 yyss, yyvs, yyls, and yystacksize.
6018 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6019 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6020 yylsp.
6021 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6022 yyps->NAME so it can be used in yypush_parse.
6023 (yyparse or yypush_parse): For yypush_parse, don't print the
6024 "Starting parse" diagnostic for invocations after the first.
6025 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6026 yypush_parse, only do it for the first invocation.
6027 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6028 initialization to occur in yypush_parse but only on the first
6029 invocation.
6030
23522164
JD
60312006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6032
6033 * data/push.c: Add CPP guards around push parser declarations in both
6034 the header and the code file.
6035 In the code file, move the push parser declarations to the same place
6036 they appear in the header file.
6037 Clean up the M4 some, especially the inconsistent underquoting in
6038 some b4_c_function_def and b4_c_function_decl uses.
6039
bb010fe5
JD
60402006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6041
6042 Encapsulate the push parser state variables into an M4 macro so the
6043 push skeleton doesn't have to list them again for pull mode's yyparse.
6044 For push mode, remove yypush_parse's local equivalents of these
6045 variables to eliminate unnecessary copying between the two sets at
6046 run-time. This patch also fixes at least a bug related to multiple
6047 %initial-action invocations in push mode.
6048 * data/push.c (b4_declare_parser_variables): Rename to...
6049 (b4_declare_scanner_communication_variables): ... this for clarity and
6050 update both uses.
6051 (b4_declare_yyparse_variables): Remove and move its contents to the one
6052 spot where it was invoked.
6053 (b4_declare_parser_state_variables): New macro containing the parser
6054 state variables required by push mode.
6055 (struct yypstate): Replace all fields but yynew with
6056 b4_declare_parser_state_variables.
6057 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6058 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6059 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6060 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6061 parser state variable declarations with
6062 b4_declare_parser_state_variables.
6063 Don't initialize parser state variables when calling yypush_parse since
6064 yypstate_new already does that.
6065 Invoke the user's initial action only upon the first yypush_parse
6066 invocation.
6067 Remove all code that copies between the local parser state variables
6068 and the yypstate.
6069
2d212f8c
JD
60702006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6071
6072 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6073 prevent a name collision in a future patch where these names will
6074 sometimes be #define'd.
6075 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6076 since it no longer has the same name as the existing argument.
6077 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6078
e6e704dc
JD
60792006-12-19 Paolo Bonzini <bonzini@gnu.org>
6080 and Joel E. Denny <jdenny@ces.clemson.edu>
6081
6082 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6083 that the argument is case-insensitive, and there's no `=' here.
6084 For the %skeleton entry, mention that %language is better.
6085 (Bison Options): Likewise for --language and --skeleton. Move the
6086 --skeleton entry so that the `Tuning the parser' section is sorted
6087 alphabetically on long options.
6088 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6089 %language directive in detail here; cross-reference the %language
6090 documentation instead.
6091 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6092 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 6093 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
6094 * examples/extexi (normalize): Instead of replacing every %require
6095 argument with the current Bison version, just substitute for
6096 `@value{VERSION}'. This guarantees that we're testing what actually
6097 appears in the documentation.
6098 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6099 rather than `@VERSION@'.
6100
0e021770
PE
61012006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6102
fd575f05
PE
6103 * NEWS: Reword the %language news a bit, and put it earlier.
6104
0e021770
PE
6105 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6106 Rewrite to simplify the logic.
6107 (language_argmatch): Likewise.
fd575f05
PE
6108 (program_name): We now own this var.
6109 * src/getargs.h (struct bison_language): Use char[] rather than
6110 const char *.
0e021770
PE
6111
6112 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6113 Java is supported.
6114 * src/complain.c (program_name): Remove decl; no longer needed.
6115 * src/main.c (program_name): Remove; now belongs to getargs.
6116
61172006-12-18 Paolo Bonzini <bonzini@gnu.org>
6118
6119 * NEWS: Document %language.
6120
6121 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6122
6123 * data/c-skel.m4, data/c++-skel.m4: New files.
6124 * data/glr.c: Complain on push parsers.
6125
6126 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6127 over %skeleton.
148d66d8 6128 (Decl Summary): Document %language and %skeleton.
0e021770
PE
6129 (Command line): Document -L.
6130
6131 * examples/extexi: Rewrite %require directive.
6132 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6133
6134 * src/files.c (compute_exts_from_gc): Look in language structure
6135 for .y extension.
6136 (compute_file_name_parts): Check whether .tab should be added.
6137 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6138 (language, skeleton_arg, language_argmatch): New.
6139 (long_options): Add --language.
6140 (getargs): Use skeleton_arg, add -L/--language.
6141 * src/getargs.h: Include location.h.
6142 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6143 * src/output.c (prepare): Pick default skeleton from struct language.
6144 Don't dispatch C skeletons here.
6145 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6146 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6147 * src/scan-gram.l ("%language"): New rule.
6148
6149 * tests/calc.at: Test %skeleton and %language.
6150 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6151 (AT_GLR_IF): Look for %skeleton "glr.cc".
6152 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6153 (AT_YACC_IF): Reject %language.
6154
5691bf57
PE
61552006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6156
db06f0ce
PE
6157 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6158 since it wasn't used; only the typedef name 'semantic_type' is needed.
6159 Also, omit trailing white space.
6160
5691bf57
PE
6161 * bootstrap: Sync from coreutils.
6162 (gnulib_extra_files): Add build-aux/announce.gen.
6163 (slurp): Adjust .gitignore files like .cvsignore files.
6164 * build-aux/announce-gen: Remove from CVS, since bootstrap
6165 now creates this.
6166
791934e4
JD
61672006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6168
6169 Make %push-parser imply %pure-parser. This fixes several bugs; see
6170 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6171 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6172 pure_parser = true.
6173 * data/push.c: Don't bother testing b4_push_if when deciding whether
6174 to expand b4_declare_parser_variables globally.
6175 (yypush_parse): Likewise in here.
6176
6177 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6178 (yy_reduce_print): Reformat M4 for readability.
6179
ee5abb37
JD
61802006-12-15 Bob Rossi <bob@brasko.net>
6181 and Joel Denny <jdenny@ces.clemson.edu>
6182
6183 * data/push.c (yypstate): Add typedef, and update all uses of
6184 struct yypstate to just yypstate.
6185 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6186
16ca01f9
JD
61872006-12-14 Bob Rossi <bob@brasko.net>
6188
6189 * data/push.c (yypush_parse): Declare prototype regardless of
6190 %locations option.
6191
ab8e7e1a
JD
61922006-12-14 Bob Rossi <bob@brasko.net>
6193
6194 * data/push.c (yyparse): Remove the prototype and the #define when in
6195 push-parser mode.
6196
9bf32be3
JD
61972006-12-13 Bob Rossi <bob@brasko.net>
6198
6199 * data/push.c (yypstate_init): Rename to...
6200 (yypstate_new): ... this and use b4_c_function_def.
6201 (yypstate_delete): New.
6202 (yypush_parse): Change parameters yynval and yynlloc to be const.
6203 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6204 yypstate_delete functions.
6205
f02e2948
JD
62062006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6207
6208 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6209 strange test case titles. Reported by Bob Rossi.
6210
38eb7751
PE
62112006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6212
6213 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6214 of potential ambiguities in GLR grammers.
6215
bd9d212b
JD
62162006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6217
6218 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6219 `bison ', use m4_index instead of m4_substr since chopping up a string
6220 containing M4-special characters causes problems here.
6221
6222 Fix a couple of bugs related to special characters in user-specified
6223 file names, and make it easier for skeletons to compute output file
6224 names with the same file name prefix as Bison-computed output file
6225 names.
6226 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6227 b4_parser_file_name and b4_spec_defines_file instead of
6228 @output_parser_name@ and @output_header_name@, which are now redundant.
6229 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6230 b4_parser_file_name, b4_spec_defines_file, and the new
6231 @basename(FILENAME@) instead of @output_parser_name@ and
6232 @output_header_name@, which inappropriately escaped the file names as
6233 C string literals.
6234 * src/files.c (all_but_ext): Remove static qualifier.
6235 (compute_output_file_names): Move `free (all_but_ext)' to...
6236 (output_file_names_free): ... here since all_but_ext is needed later.
6237 * src/files.h (all_but_ext): Extern.
6238 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6239 exactly what MUSCLE_INSERT_STRING used to do.
6240 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6241 characters are escaped properly.
6242 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6243 all_but_ext.
6244 For pkgdatadir muscle, maintain previous functionality by using
6245 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6246 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6247 digraphs would never be expanded. Hopefully no one has M4-special
6248 characters in his Bison installation path.
6249 * src/scan-skel.l: Don't parse @output_header_name@ and
6250 @output_parser_name@ anymore since they're now redundant.
6251 In @output, use decode_at_digraphs.
6252 Parse a new @basename command that invokes last_component.
6253 (decode_at_digraphs): New.
6254 (BASE_QPUTS): Remove unused.
6255 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6256 (Output file name): New tests.
6257
3f7ca628
JD
62582006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6259
6260 Warn about output files that are generated by the skeletons and that
6261 conflict with other output files.
6262 * data/glr.c: Don't generate the header file here when glr.cc does.
6263 * src/files.c (file_names, file_names_count): New static globals.
6264 (compute_output_file_names): Invoke output_file_name_check for files
6265 not generated by the skeletons and remove existing checks.
6266 (output_file_name_check): New function that warns about conflicting
6267 output file names.
6268 (output_file_names_free): Free file_names.
6269 * src/files.h (output_file_name_check): Declare.
6270 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6271 the skeletons.
6272 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6273 (Conflicting output files): New tests.
6274
178e123e
PE
62752006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6276
6277 * doc/bison.texinfo: Fix a couple of typos.
6278
62792006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
6280
6281 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6282 Rename to...
6283 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6284 update all uses.
6285 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6286 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6287 local pv.
6288 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6289 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6290
ea17f233
JD
62912006-12-07 Bob Rossi <bob@brasko.net>
6292 and Joel Denny <jdenny@ces.clemson.edu>
6293
6294 * data/push.c (yypvarsinit): Change return type from void* to struct
6295 yypvars*. No longer cast to void* on return.
6296 (struct yypvars): Remove yylen since it need not be remembered between
6297 yypushparse invocations.
6298 (yypushparse): Don't copy between yylen and pv->yylen.
6299
55a30bda
JD
63002006-12-05 Bob Rossi <bob@brasko.net>
6301
6302 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6303 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6304 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6305 (struct yypvars): Remove b4_declare_parser_variables.
6306 (yypvarsinit): Remove init code for removed variables.
6307 (global scope): Do not declare b4_declare_parser_variables if
6308 push or pure mode.
6309 (yypushparse): Add b4_declare_parser_variables.
6310 Init new local variables, and remove init code for removed
6311 yypvars variables.
6312 (yyparse): Delete.
6313 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6314 and yyparse for other modes.
6315 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6316 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6317 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
6318 (AT_PURE_LEX_IF): True if pure or push parser.
6319
85894313
JD
63202006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
6321
6322 Document Yacc prologue alternatives and default %destructor's and
6323 %printer's as experimental. Don't mention Java yet. Discussed at
6324 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
6325 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
6326 (2.3a): Annotate this entry to say the old forms of these features were
6327 also experimental.
6328 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 6329 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
6330 of Java (we'll want this back eventually).
6331
02975b9a
JD
63322006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6333
6334 Support a file name argument to %defines. Deprecate `=' in
6335 %file-prefix, %name-prefix, and %output. Discussed at
6336 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
6337 * NEWS (2.3a+): Mention.
148d66d8 6338 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
6339 form of %defines, and remove `=' from entries for %file-prefix,
6340 %name-prefix, and %output.
6341 * src/parse-gram.y (prologue_declaration): Implement.
6342 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
6343 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
6344 all but one occurrence of %name-prefix.
6345 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
6346 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
6347 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
6348 occurrence of each of %file-prefix and %output. Add check for %defines
6349 with argument.
6350 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
6351 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
6352 Remove the `=' from %output.
6353
287b314e
JD
63542006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
6355
6356 Don't escape $ in test case titles since Autoconf 2.61 now does that
6357 correctly.
6358 * tests/actions.at (Default %printer and %destructor are not for error
6359 or $undefined): Here.
6360 (Default %printer and %destructor are not for $accept): Here.
6361 * tests/input.at (Invalid $n and @n): Here.
6362
3ebecc24
JD
63632006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
6364
6365 Rename <!> to <>. Discussed starting at
6366 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
6367 * NEWS (2.3a+): Update.
148d66d8 6368 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
6369 Update.
6370 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
6371 * src/scan-gram.l (INITIAL): Implement.
6372 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
6373 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
6374 comment.
6375 * tests/actions.at (Default tagless %printer and %destructor,
6376 Default tagged and per-type %printer and %destructor,
6377 Default %printer and %destructor are not for error or $undefined,
6378 Default %printer and %destructor are not for $accept,
6379 Default %printer and %destructor for mid-rule values): Update.
6380 * tests/input.at (Default %printer and %destructor redeclared,
6381 Unused values with default %destructor): Update.
6382
26b8a438
JD
63832006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
6384
6385 Don't let %prec take a nonterminal.
6386 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
6387 token.
6388 * tests/input.at (%prec takes a token): New test checking that %prec
6389 won't take a nonterminal.
6390
07c39ae9
JD
63912006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6392
405d53b7
JD
6393 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
6394 it was double-quoted.
07c39ae9
JD
6395 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
6396 grammar is maintained with Bison's highest standards.
6397 * src/getargs.c: Fix some typos in Doxygen comments.
6398
580b8926
JD
63992006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6400
6401 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6402 later. Reported by Paul Eggert in
6403 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6404 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6405 * src/scan-code.l (translate_action): Don't bother invoking
6406 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6407 (code_scanner_free): Instead of invoking
6408 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6409 which frees more.
6410 * src/scan-gram.l (gram_scanner_free): Likewise.
6411 * src/scan-skel.l (scan_skel): Likewise.
6412
4502eadc
JD
64132006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6414
6415 * src/files.c (tr): Change return type to void.
6416 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6417 has been called previously for the same key.
6418 (muscle_find): Return storage instead of value so that
6419 --enable-gcc-warnings doesn't produce warnings that the return discards
6420 const. aver that the value and storage are the same since storage
6421 could potentially be NULL when value is not.
6422 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6423 same as 0.
6424
7746c8f6
PE
64252006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6426
6427 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6428 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6429 us a slightly cleaner distribution, and also works.
6430 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6431 gnulib changes.
6432
eb095650
PE
64332006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6434 and Paul Eggert <eggert@cs.ucla.edu>
6435
6436 Don't let Bison leak memory except when it complains.
6437 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6438 (spec_defines_file, dir_prefix): Now char *, not const char *,
6439 since they are freed.
6440 * src/files.c: Likewise.
6441 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6442 Likewise.
6443 (tr): Now operates in-place. All uses changed.
6444 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6445 values.
6446 (compute_file_name_parts, compute_output_file_names): Don't store
6447 read-only data in variables that will be freed.
6448 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6449 src_extension, and header_extension.
6450 (output_file_names_free): New public function to free
6451 spec_verbose_file, spec_graph_file, spec_defines_file,
6452 parser_file_name, and dir_prefix.
6453 * src/getargs.c (getargs): Don't store read-only data in variables that
6454 will be freed.
6455 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6456 (which previously existed but was unused), and quotearg_free.
6457 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6458 * src/muscle_tab.c: Likewise.
6459 (muscle_entry): Make the value char const *,
6460 and add a new storage member that is char * and can be freed.
6461 (muscle_entry_free): New private function.
6462 (muscle_init): Use it instead of free.
6463 (muscle_insert, muscle_grow): Update and use new storage member.
6464 (muscle_code_grow): Free the string passed to muscle_grow
6465 since it's not needed anymore.
6466 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6467 add a new `char *code' member.
6468 ("{...}"): Declare semantic type as code.
6469 * src/scan-code.h (translate_rule_action):
6470 (translate_symbol_action, translate_code, translate_action): Return
6471 `char const *' rather than `char *' since external code should not free
6472 these strings.
6473 * src/scan-code.l: Likewise.
6474 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6475 which is "{...}" in the parser.
6476 * tests/Makefile.am (maintainer-check-valgrind): Set
6477 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6478 Valgrind.
6479 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6480 complain.
6481 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6482 expecting a non-zero exit status sets --leak-check=summary and
6483 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6484 this case, and we don't want to hear about it.
6485
ac564be4
PE
64862006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6487
6488 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6489 instead of from the template, to simplify configuration a bit.
6490 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6491 and m4/wint_t.m4, as they are needed with the latest gnulib.
6492
17bd8a73
JD
64932006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6494
6495 Disable unset/unused mid-rule value warnings by default, and recognize
6496 --warnings=midrule-values to enable them. Discussed starting at
6497 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6498 * NEWS (2.3a+): Mention.
6499 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6500 warnings): Add entry for midrule-values subargument.
6501 * src/reader.c (symbol_should_be_used): Don't return true just because
6502 the value is a set/used mid-rule value unless
6503 --warnings=midrule-values was specified.
6504 * tests/input.at (Unused values, Unused values before symbol
6505 declarations): Run tests with and without --warnings=midrule-values.
6506
6507 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6508 than LIST_FREE directly.
6509
89eb3c76
JD
65102006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6511
6512 Finish implementing --warnings=error, which should not be implied by
6513 --warnings=all (or by its synonyms -W and --warnings without
6514 subarguments).
6515 * src/complain.c (set_warning_issued): New function to report that
6516 warnings are being treated as errors and to record an error if so.
6517 Invoke...
6518 (warn_at, warn): ... here.
6519 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6520 "error - warnings are errors" does not appear above "all - all of the
6521 above".
6522 (getargs): For -W and --warnings without subarguments, don't let
6523 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6524 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6525
ba7560e2
JD
65262006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6527
6528 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6529 empty subargument list. For example: `bison --warnings= parser.y'.
6530
31283fc3
JD
65312006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6532
6533 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6534 the parser header file so that gcc doesn't warn.
6535
12e35840
JD
65362006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6537
6538 Split the default %destructor/%printer into two kinds: <*> and <!>.
6539 Discussed starting at
6540 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6541 * NEWS (2.3a+): Mention.
6542 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6543 previous change today related to mid-rules.
148d66d8 6544 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 6545 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
6546 (TYPE_TAG_ANY): Add as <*>.
6547 (TYPE_TAG_NONE): Add as <!>.
6548 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6549 for <*> and <!>.
6550 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6551 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6552 * src/symlist.c (symbol_list_default_new): Split into tagged and
6553 tagless versions.
6554 (symbol_list_destructor_set, symbol_list_printer_set): Split
6555 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6556 SYMLIST_DEFAULT_TAGLESS.
6557 * src/symlist.h: Update symbol_list_default*_new prototypes.
6558 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6559 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6560 * src/symtab.c (default_destructor, default_destructor_location,
6561 default_printer, default_printer_location): Split each into tagged and
6562 tagless versions.
6563 (symbol_destructor_get, symbol_destructor_location_get,
6564 symbol_printer_get, symbol_printer_location_get): Implement tagged
6565 default and tagless default cases.
6566 (default_destructor_set, default_printer_set): Split each into tagged
6567 and tagless versions.
6568 * src/symtab.h: Update prototypes.
6569 * tests/actions.at (Default %printer and %destructor): Rename to...
6570 (Default tagless %printer and %destructor): ... this, and extend.
6571 (Per-type %printer and %destructor): Rename to...
6572 (Default tagged and per-type %printer and %destructor): ... this, and
6573 extend.
6574 (Default %printer and %destructor for user-defined end token): Extend.
6575 (Default %printer and %destructor are not for error or $undefined):
6576 Update.
6577 (Default %printer and %destructor are not for $accept): Update.
6578 (Default %printer and %destructor for mid-rule values): Extend.
6579 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6580 (Unused values with default %destructor): Extend.
6581
f91b1629
JD
65822006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6583
6584 Don't apply the default %destructor/%printer to an unreferenced midrule
6585 value. Mentioned at
6586 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6587 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6588 like $@n instead of just @n so that the default %destructor/%printer
6589 logic doesn't see them as user-defined symbols.
6590 (symbol_is_dummy): Check for both forms of the name.
6591 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6592 name for which the midrule value is referenced in any action.
6593 * tests/actions.at (Default %printer and %destructor for mid-rule
6594 values): New test.
6595 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6596 for change to dummy symbol names.
6597
519d0004
JD
65982006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6599
6600 Warn about unset midrule $$ if the corresponding $n is used.
6601 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6602 $n usage.
6603 (packgram): Before invoking grammar_rule_check on any rule, make sure
6604 all actions have already been scanned in order to set `used' flags.
6605 Otherwise, checking that a midrule's $$ is set will not always work
6606 properly because the midrule check must forward-reference the midrule's
6607 parent rule.
6608 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6609 warning.
6610
a501eca9
JD
66112006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6612
6613 More improvements to the documentation of the prologue alternatives:
6614 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6615 Bison manual.
6616 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6617 some text to clarify the relative importance of the new directives and
6618 to show how these directives may be viewed as code labels.
6619
2cbe6b7f
JD
66202006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6621
6622 Similar to the recently removed %before-header, add %code-top as the
6623 alternative to the pre-prologue. Mentioned at
6624 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6625 Also, let the prologue alternatives appear in the grammar section.
6626 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6627 (prologue_declaration): Move the existing prologue alternatives to...
6628 (grammar_declaration): ... here and add %code-top.
6629 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6630
6631 Clean up and extend documentation for the prologue alternatives.
6632 * NEWS (2.3a+): Describe prologue alternatives.
6633 * doc/bison.texinfo (Prologue): Move discussion of prologue
6634 alternatives to...
6635 (Prologue Alternatives): ... this new section, and extend it to discuss
6636 all 4 directives in detail.
148d66d8
JD
6637 (Table of Symbols): Clean up discussion of prologue alternatives and
6638 add %code-top.
2cbe6b7f 6639
e557d3ea
JMG
66402006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6641
6642 DJGPP specific issues.
6643
6644 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6645 config.bat accordingly.
6646 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6647 * djgpp/config.site: Likewise.
6648
136a0f76
PB
66492006-10-16 Paolo Bonzini <bonzini@gnu.org>
6650
27bd5d67
PB
6651 Replace %*-header with %provides, %requires, %code. See discussion at
6652 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6653
136a0f76
PB
6654 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6655 (b4_user_start_header): Remove.
6656 * data/glr.c: Use new macros instead of b4_*start_header
6657 and b4_*end_header.
6658 * data/glr.cc: Likewise.
6659 * data/lalr1.cc: Likewise.
6660 * data/push.c: Likewise.
6661 * data/yacc.c: Likewise.
6662
6663 * doc/bison.texinfo: Remove %before-header, rename
6664 %{start,end,after}-header to %requires, %provides, %code.
6665
6666 * src/parse-gram.y: Likewise (also rename token names accordingly).
6667 * src/scan-gram.l: Likewise.
6668 * tests/actions.at: Likewise.
6669
10f429ef
PE
66702006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6671
6672 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6673 Problem reported by Joel E. Denny.
6674
66752006-10-14 Jim Meyering <jim@meyering.net>
6676
6677 (Sync from coreutils.)
6678 Work also when the working directory (with e.g. coreutils sources)
6679 is version controlled with git, rather than CVS.
6680 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6681 rather than CVS.
6682 In messages and comments, say e.g., "checked-out sources",
6683 rather than "CVS sources".
6684 (version_controlled_file): New function. Work for git as well as
6685 for CVS. Don't use grep's -q option.
6686 (slurp): Call it here, in place of CVS-specific code.
6687
c4bd5bf7
JD
66882006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6689
6690 Fix testsuite for ./configure --enable-gcc-warnings:
6691 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6692 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6693 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6694 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6695 * test/regression.at (Diagnostic that expects two alternatives):
6696 Likewise.
6697
46356ea4
PE
66982006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6699
231ed89a
PE
6700 * bootstrap.conf (gnulib_modules): Add config-h.
6701 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6702 worry about HAVE_CONFIG_H.
6703 * lib/abitset.c: Likewise.
6704 * lib/bitset.c: Likewise.
6705 * lib/bitset_stats.c: Likewise.
6706 * lib/bitsetv-print.c: Likewise.
6707 * lib/bitsetv.c: Likewise.
6708 * lib/ebitset.c: Likewise.
6709 * lib/get-errno.c: Likewise.
6710 * lib/lbitset.c: Likewise.
6711 * lib/subpipe.c: Likewise.
6712 * lib/timevar.c: Likewise.
6713 * lib/vbitset.c: Likewise.
6714 * lib/bitset.c: Include "bitset.h" first, to test interface.
6715 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6716 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6717 * lib/bitsetv.c: Include "bitsetv.h" first.
6718 * lib/get-errno.c: Include "get-errno.h" first.
6719 * m4/.cvsignore: Add config-h.m4.
6720 * tests/actions.at (Default %printer and %destructor for ...):
6721 Adjust expected line numbers in output to reflect removal of #if
6722 HAVE_CONFIG_H lines.
6723 * tests/glr-regression.at (Missed %merge type warnings when ...):
6724 Likewise.
6725 * tests/regression.at (Braced code in declaration in rules section):
6726 Likewise.
6727 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6728 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6729 Include <config.h> unconditionally.
6730
46356ea4
PE
6731 * bootstrap: Sync from coreutils, as follows:
6732
6733 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6734
6735 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6736 variable was sometimes used without being initialized. This
6737 messed up the installation of the INSTALL file in some cases.
6738
6739 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6740
6741 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6742 --copy. Inspired by a suggestion from Bruno Haible.
6743
6744 2006-10-03 Jim Meyering <jim@meyering.net>
6745
6746 * bootstrap: Undo last change to this file, since now gnulib-tool
6747 sticks with the automake default in generating dependencies.
6748
dd4bf078
PE
67492006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6750
cf2a5f7c
PE
6751 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6752 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6753
6754 * doc/bison.1: Add copyright notice.
6755
6756 * data/glr.c: Don't include <stdarg.h>; not used.
6757
35fe0834
PE
6758 * NEWS: The -g and --graph options now output graphs in Graphviz
6759 DOT format, not VCG format.
6760 * doc/bison.1: Likewise.
6761 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
6762 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6763 of this change in
6764 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
6765 * TODO: Remove Graphviz entry.
6766 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6767 remove vcg.c, vcg.h, vcg_defaults.h.
6768 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6769 * src/graphviz.c, src/graphviz.h: New files.
6770 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6771 * src/files.h: Make comment more generic.
6772 * src/main.c (main): Likewise.
6773 * src/print_graph.h: Likewise.
6774 * src/getargs.c (usage): Make usage description more generic.
6775 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6776 (static_graph, fgraph): Remove. All uses changed to pass
6777 arguments instead of sharing a static var.
6778 (print_core, print_actions, print_state, print_graph):
6779 Output graphviz format rather than VCG format.
6780 * tests/.cvsignore: Remove *.vcg; add *.dot.
6781 * tests/output.at: Expect *.dot files, not *.vcg files.
6782
dd4bf078
PE
6783 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6784 accommodates the 2006-10-08 change.
6785
efdd7421
PE
67862006-10-11 Bob Rossi <bob@brasko.net>
6787
6788 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6789 (b4_yyssa, b4_yyerror_range): New macros.
6790 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6791 (yypvarsinit): Remove init of removed fields.
6792 (yypushparse): Remove use of removed fields; use new macros instead.
6793
96a1981a
PE
67942006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6795
6796 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6797 in a push parser. Reindent slightly to match yacc.c better.
6798
67992006-10-11 Bob Rossi <bob@brasko.net>
6800
46356ea4
PE
6801 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6802 yymsg_alloc fields.
6803 (yypvarsinit, yypushparse): Remove init of removed fields.
6804 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 6805
c1630a8b
PE
68062006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6807
6808 * THANKS: Add Paolo Bonzini and Bob Rossi.
6809
90b9908d
PB
68102006-10-08 Paolo Bonzini <bonzini@gnu.org>
6811
6812 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6813 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6814 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6815 b4_define_user_cde and uses): Remove.
6816 (b4_comment, b4_prefix, b4_sync_start): New.
6817 * data/bison.m4: New file, with most of the content removed from c.m4.
6818 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6819 * src/output.c (output_skeleton): Pass bison.m4.
6820 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6821 only if specified.
6822
cf806753
PE
68232006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6824
6825 Fix test failure reported by Tom Lane in
6826 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6827 and try to make such failures easier to catch in the future.
6828 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6829 that's now the caller's responsibility.
6830 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6831 Set yychar = YYEOF if it's negative.
6832 * tests/actions.at (yylex): Abort if asked to read past EOF.
6833 * tests/conflicts.at (yylex): Likewise.
6834 * tests/cxx-type.at (yylex): Likewise.
6835 * tests/glr-regression.at (yylex): Likewise.
6836 * tests/input.at (yylex): Likewise.
6837 * tests/regression.at (yylex): Likewise.
6838 * tests/torture.at (yylex): Likewise.
6839
0e2f006a
PE
68402006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6841
6842 Fix problems with translating English-language diagnostics.
6843 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6844 respect to bison-runtime pot generation. The YY_ stuff
6845 wasn't being captured.
6846 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6847 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6848 * runtime-po/POTFILES.in: Add data/push.c.
6849
e3ddc1e3
PE
68502006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6851
6852 Merge bootstrap changes from coreutils.
6853
6854 2006-09-28 Jim Meyering <jim@meyering.net>
6855
6856 Automatically generated dependencies are important even
6857 when all of the sources in a directory come from gnulib.
6858 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6859 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6860
6861 2006-09-23 Jim Meyering <jim@meyering.net>
6862
6863 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6864
6865 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6866
6867 * bootstrap: Add support for --force.
6868 (usage): New function. Describe usage less tersely.
6869 (CVS_only_file): New var.
6870
01e972b3
PE
68712006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6872
6873 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6874 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6875 Adjust white space and comments to match GNU style better.
6876
c63d3e90
PE
68772006-09-20 Bob Rossi <bob@brasko.net>
6878
6879 * data/push.c (yyresult_get): Remove function.
6880 (YYPUSH_MORE): Add #define.
6881 (yypushparse): Modify return value.
6882
e70f46d1
PE
68832006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6884
6885 * stamp-h.in: Remove; no longer needed.
6886 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6887 Remove config.h, config.hin, intl (no longer created).
6888 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6889 stamp-h1.
6890
6891 Sync bootstrap from coreutils, as follows:
6892
6893 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6894
6895 * bootstrap (symlink_to_gnulib): New function.
6896 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6897 to copies-of-gnulib.
6898 (cp_mark_as_generated, slurp, gnulib_files):
6899 Avoid making a copy if it's the same as the old version.
6900 (gnulib_files): Add support for this variable (used by Bison).
6901
a92be413
PE
69022006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6903
6904 * src/getargs.c (usage): Rework to use conventions similar to
6905 coreutils, to make translation a bit easier and the code a bit
6906 smaller. Problem reported by Tim Van Holder.
6907
4f82b42a
PE
69082006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6909
3b2942e6
PE
6910 Use some of gnulib's new modules, taken from coreutils.
6911
6912 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6913 * bootstrap.conf: New file.
6914 (gnulib_modules): Add configmake, inttypes, unistd.
6915 (XGETTEXT_OPTIONS): Add complain, complain_at,
6916 fatal, fatal_at, warn, warn_at, unexpected_end.
6917 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6918 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6919 (gl_EARLY): Add.
6920 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6921 (gl_INIT): Add
6922 (GNULIB_AUTOCONF_SNIPPET): Remove.
6923 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6924 the pickiest.
6925 * lib/.cvsignore: Add inttypes_.h.
6926 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6927 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6928 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6929 no-longer-necessary initializations.
6930 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6931 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6932 use the unistd module.
6933 * src/system.h: Likewise.
6934 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6935 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6936 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6937 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6938 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6939 * src/system.h: Include inttypes.h unconditionally, now that we
6940 use the inttypes module. Don't bother to include stdint.h, since
6941 inttypes.h now does that for us.
6942 (LOCALEDIR): Remove, now that we use the configmake module.
6943 * src/getargs.c: Include configmake.h.
6944 * src/main.c: Likewise.
6945 * src/output.c: Likewise.
6946 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6947 not from $abs_top_builddir, since config.h moved.
6948
6949
4f82b42a
PE
6950 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6951 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6952
6953 * src/parse-gram.y (symbol_declaration): Don't put statements
6954 before declarations; it's not portable to C89.
6955 * src/scan-code.l (handle_action_at): Likewise.
6956
6957 * src/scan-code.l: Always initialize braces_level; the old code
6958 left it uninitialized and therefore had undefined behavior.
6959
6960 Don't attempt to redefine 'assert', since it runs afoul of
6961 systems where standard headers (mistakenly) include <assert.h>.
6962 Instead, define and use our own alternative, called 'aver'.
6963 * src/reader.c: Don't include assert.h, since we no longer
6964 use assert.
6965 * src/scan-code.l: Likewise.
6966 * src/system.h (assert): Remove, replacing with....
6967 (aver): New function, taking a bool arg. All uses changed.
6968 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6969 not merely an integer.
6970
31c10e38
PE
69712006-09-15 Bob Rossi <bob@brasko.net>
6972
6973 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6974 * data/c.m4 (YYPUSH): New.
6975 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6976 * src/getargs.c (push_parser): New var.
6977 * src/getargs.h (push_parser): New declaration.
6978 * src/output.c (prepare): Add macro insertion of `push_flag'.
6979 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6980 (prologue_declaration): Parse %push-parser.
6981 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6982 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6983 list of removed lines from the traces observed.
6984 (AT_CHECK_CALC_LALR): Added push parser tests.
6985
fa7b79c0
PE
69862006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6987
21fe08ca
PE
6988 * NEWS: Version 2.3a.
6989 * configure.ac (AC_INIT): Likewise.
6990
e8ec4d9b
PE
6991 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6992 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6993 due to header ordering dependencies. I don't know why the #define
6994 was there.
6995
fa7b79c0
PE
6996 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6997 runtime cost when YYDEBUG is not defined, and so that some tests
6998 that used to fail now work. Problem and initial suggestion by
6999 Paolo Bonzini.
7000 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7001 * data/glr.cc (b4_parser_class_name):
7002 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7003 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7004 (yydebug_) [YYDEBUG]: New member.
7005 (yycdebug_): Now defined only if YYDEBUG.
7006 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7007 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7008 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7009 if YYYDEBUG.
7010 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7011 Define only if YYDEBUG.
7012 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7013 set_debug_level.
7014 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7015 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7016 AT_CHECK_CALC_GLR_CC that are working now.
7017
4ec13d60
PE
70182006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7019
7020 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7021 We don't need them in glr.cc, and glr.c defines them.
7022 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7023 assumes that defining it to anything is the same as defining
7024 it to 1. Problem reported by Paolo Bonzini.
7025
8e1687ae
PE
70262006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7027
7028 * data/c.m4 (b4_null, b4_case): Define.
7029 * src/output.c (prepare_symbols): Use b4_null.
7030 (user_actions_output): Use b4_case.
7031
3dc5e96b
PE
70322006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7033
aef3da86
PE
7034 * data/glr.c (b4_shared_declarations): Put start-header first,
7035 before any #includes that we generate, so that feature-test
7036 macros work. Problem reported by Michael Deutschmann in
7037 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7038 * data/lalr1.cc: Likewise.
7039 * doc/bison.texinfo (Prologue): Document that feature-test macros
7040 should be defined before any Bison declarations.
7041 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7042 that depend on location.hh after, not before, Bison decls, since
7043 we now include location.hh after the first user prologue.
7044
3dc5e96b
PE
7045 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7046 Sander Brandenburg in
7047 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7048 Also, fix minor white space and comment issues.
aef3da86
PE
7049 (Prologue): Mention that it's better to define feature-test macros
7050 before Bison declarations. Problem reported by Michael Deutschmann.
7051
7052 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7053 by Jim Meyering.
7054 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7055 This adjusts to recent gnulib changes.
3dc5e96b 7056
b2a0b7ca
JD
70572006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7058
7059 Finish implementation of per-type %destructor/%printer. Discussed
7060 starting at
7061 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7062 and
7063 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7064 * NEWS (2.3+): Add a description of this feature to the default
7065 %destructor/%printer description.
7066 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7067 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7068 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7069 list node contains a semantic type.
7070 * src/symtab.c, src/symtab.h: Extend with a table that associates
7071 semantic types with their %destructor's and %printer's.
7072 (semantic_type_from_uniqstr, semantic_type_get,
7073 semantic_type_destructor_set, semantic_type_printer_set): New functions
7074 composing the public interface of that table.
7075 (symbol_destructor_get, symbol_destructor_location_get,
7076 symbol_printer_get, symbol_printer_location_get): If there's no
7077 per-symbol %destructor/%printer, look up the per-type before trying
7078 the default.
7079 * tests/actions.at (Per-type %printer and %destructor): New test case.
7080 * tests/input.at (Default %printer and %destructor redeclared):
7081 Extend to check that multiple occurrences of %symbol-default in a
7082 single %destructor/%printer declaration is an error.
7083 (Per-type %printer and %destructor redeclared, Unused values with
7084 per-type %destructor): New test cases.
7085
3be03b13
JD
70862006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7087
7088 Require default %destructor/%printer to be declared using
7089 %symbol-default instead of an empty symbol list, and start working on
7090 new per-type %destructor/%printer. Discussed at
7091 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7092 * NEWS (2.3+): Add %symbol-default to example.
7093 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 7094 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
7095 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7096 (generic_symlist, generic_symlist_item): New nonterminals for creating
7097 a list in which each item is a symbol, semantic type, or
7098 %symbol-default.
7099 (grammar_declaration): Use generic_symlist in %destructor and %printer
7100 declarations instead of symbols.1 or an empty list.
7101 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7102 for changes to symbol_list.
7103 * src/reader.c: Update for changes to symbol_list.
7104 * src/scan-code.l: Likewise.
7105 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7106 * src/symlist.c, src/symlist.h: Extend such that a list node may
7107 represent a semantic type or a %symbol-default in addition to just an
7108 ordinary symbol. Add switched functions for setting %destructor's and
7109 %printer's.
7110 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7111 %destructor/%printer declarations.
7112
3508ce36
JD
71132006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7114
7115 Whether the default %destructor/%printer applies to a particular symbol
7116 isn't a question of whether the user *declares* that symbol (in %token,
7117 for example). It's a question of whether the user by any means
7118 *defines* the symbol at all (by simply using a char token, for
7119 example). $end is defined by Bison whereas any other token with token
7120 number 0 is defined by the user. The error token is always defined by
7121 Bison regardless of whether the user declares it with %token, but we
7122 may one day let the user define error as a nonterminal instead.
7123 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7124 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7125 the meaning of "user-defined".
7126 * tests/actions.at (Default %printer and %destructor for user-declared
7127 end token): Rename to...
7128 (Default %printer and %destructor for user-defined end token): ...
7129 this.
7130
7131 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7132 computation of whether to apply the default, don't maintain a list of
7133 every Bison-defined symbol. Instead, just check for a first character
7134 of '$', which a user symbol cannot have, and check for the error token.
7135
9350499c
JD
71362006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7137
7138 Don't apply the default %destructor or %printer to the error token,
7139 $undefined, or $accept. This change fits the general rule that the
7140 default %destructor and %printer are only for user-declared symbols,
7141 and it solves several difficulties that are described in the new test
7142 cases listed below.
7143 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7144 * tests/actions.at (Default %printer and %destructor are not for error
7145 or $undefined, Default %printer and %destructor are not for $accept):
7146 New test cases.
7147
4d7370cb
JD
71482006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7149
7150 Allow %start after the first rule.
7151 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7152 when parsing the first rule.
7153 (check_and_convert_grammar): Search for it here after all grammar
7154 declarations have been parsed. Skip midrules, which have dummy LHS
7155 nonterminals.
7156 * src/symtab.c (symbol_is_dummy): New function.
7157 * src/symtab.h (symbol_is_dummy): Declare it.
7158 * tests/input.at (%start after first rule): New test.
7159
6d0ef4ec
JD
71602006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7161
7162 Redo some of the previous commit: add back the ability to use
7163 non-aliased/undeclared string literals since it might be useful to
7164 those declaring %token-table.
7165 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7166 commit: don't worry about complaints from symbols_pack.
7167 * src/symtab.c (symbol_new, symbol_class_set,
7168 symbol_check_alias_consistency): Undo changes in previous commit: count
7169 each string literal as a new symbol and token, assign it a symbol
7170 number, and don't complain about non-aliased string literals.
7171 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7172 and token counts but does still set aliased tokens to the same number,
7173 symbol_pack_processor now leaves empty slots in the symbols array.
7174 Remove those slots.
7175 * tests/regression.at (Undeclared string literal): Remove test case
7176 added in previous commit since non-aliased string literals are allowed
7177 again.
7178 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7179 remove unnecessary string literal declarations.
7180 * tests/sets.at (Firsts): Likewise.
7181
965537bc
JD
71822006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7183
7184 Don't allow an undeclared string literal, but allow a string literal to
7185 be used before its declaration.
7186 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7187 symbols_pack complained.
7188 * src/symtab.c (symbol_new): Don't count a string literal as a new
7189 symbol.
7190 (symbol_class_set): Don't count a string literal as a new token, and
7191 don't assign it a symbol number since symbol_make_alias does that.
7192 (symbol_make_alias): It's not necessary to decrement the symbol and
7193 token counts anymore. Don't assume that an alias declaration occurs
7194 before any uses of the identifier or string, and thus don't assert that
7195 one of them has the highest symbol number so far.
7196 (symbol_check_alias_consistency): Complain if there's a string literal
7197 that wasn't declared as an alias.
7198 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7199 symbol_pack asserts that every token has been assigned a symbol number
7200 although undeclared string literals have not.
7201 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 7202 string literal): New test cases.
965537bc
JD
7203 (Characters Escapes, Web2c Actions): Declare string literals as
7204 aliases.
7205 * tests/sets.at (Firsts): Likewise.
7206
47aee066
JD
72072006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7208
7209 In the grammar scanner, STRING_FINISH unclosed constructs and return
7210 them to the parser in order to improve error messages.
7211 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7212 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7213 * tests/input.at (Unclosed constructs): New test case.
7214 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7215 seen.
7216
7217 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7218 unused global.
7219
1f6b3679
JD
72202006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7221
7222 Handle string aliases for character tokens correctly.
7223 * src/symtab.c (symbol_user_token_number_set): If the token has an
7224 alias, check and set its alias's user token number instead of its own,
7225 which is set to indicate the alias. Previously, every occurrence of
7226 the character token in the grammar overwrote that alias indicator with
7227 the character code.
7228 * tests/input.at (String aliases for character tokens): New test.
7229
219741d8
JD
72302006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7231
7232 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7233
11daa4e7
PE
72342006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7235
7236 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7237 to prevent failures when building on older platforms.
7238 Check for autopoint failure.
7239 Set XGETTEXT_OPTIONS to values that check for C format strings,
7240 so that translators are warned about them (this also helps
7241 prevent core dumps).
7242
7243 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7244 function, since it simplifies our code a bit.
7245
7246 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7247 rather than -W, so we don't get bogus warnings about sign comparisons.
7248 Add -Wpointer-arith, since that warning is useful (it reports code
7249 that does not conform to C89 and that some compilers reject).
7250 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7251 since it's no longer needed.
7252
f9bfc42a
JD
72532006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7254
7255 Clean up scanners a bit.
7256 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7257 definitions so gcc won't warn when obstack_for_string is unused.
7258 * src/scan-code.l: config.h and system.h are already #include'd by
7259 scan-code-c.c, so get rid of them here.
7260 * src/scan-gram.l: Likewise.
7261 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7262 definitions rather than duplicating the rest of it.
7263 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7264
06e8700a
JD
72652006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7266
7267 Suppress signed/unsigned comparison warnings for yycheck.
7268 * data/c.m4 (b4_safest_int_type): New macro.
7269 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7270 a signed int type, cast it to b4_safest_int_type first.
7271 * data/yacc.c: Likewise.
7272 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7273 also overwritten.
7274
9c437126
PE
72752006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7276
7277 * doc/bison.texinfo: Fix some typos.
7278
284d8a13
PE
72792006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7280
7281 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7282 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7283
7284 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7285 the latest gnulib does this a different way.
7286 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7287 translation was patched, so stop omitting it.
7288
ec5479ce
JD
72892006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7290
7291 Enable declaration of default %printer/%destructor. Make the parser
7292 use these for all user-declared grammar symbols for which the user does
7293 not declare a specific %printer/%destructor. Thus, the parser uses it
7294 for token 0 if the user declares it but not if Bison generates it as
7295 $end. Discussed starting at
7296 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7297 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7298 and
7299 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7300 * NEWS (2.3+): Mention.
7301 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7302 declare a %destructor for a mid-rule's semantic value. It's just
7303 impossible to declare one specific to it.
7304 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7305 code. Describe default %destructor form.
7306 * src/parse-gram.y (grammar_declaration): Parse default
7307 %printer/%destructor declarations.
7308 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7309 and symbol_destructor_location_get rather than accessing the destructor
7310 and destructor_location members of struct symbol.
7311 (symbol_printers_output): Likewise but for %printer's.
7312 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7313 again.
7314 * src/symtab.c (default_destructor, default_destructor_location,
7315 default_printer, default_printer_location): New static global
7316 variables to record the default %destructor and %printer.
7317 (symbol_destructor_get, symbol_destructor_location_get,
7318 symbol_printer_get, symbol_printer_location_get): New functions to
7319 compute the appropriate %destructor and %printer for a symbol.
7320 (default_destructor_set, default_printer_set): New functions to set the
7321 default %destructor and %printer.
7322 * src/symtab.h: Prototype all those new functions.
7323 * tests/actions.at (Default %printer and %destructor): New test to
7324 check that the right %printer and %destructor are called, that they're
7325 not called for $end, and that $$ and @$ work correctly.
7326 (Default %printer and %destructor for user-declared end token): New
7327 test to check that the default %printer and %destructor are called for
7328 a user-declared end token.
7329 * tests/input.at (Default %printer and %destructor redeclared, Unused
7330 values with default %destructor): New tests to check related grammar
7331 warnings and errors.
7332
868d2d96
JD
73332006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7334
7335 Clean up handling of %destructor for the end token (token 0).
7336 Discussed starting at
7337 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
7338 and
7339 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
7340
7341 Make the skeletons consistent in how they pop the end token and invoke
7342 its %destructor.
7343 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
7344 state, which has token number 0, since this would invoke the
7345 %destructor for the end token.
7346 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
7347 until after shifting the end token, or else it won't be popped.
7348 * data/yacc.c (yyparse): Likewise.
7349
7350 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
7351 it's the end token. Upon termination, destroy an unshifted lookahead
7352 even when it's the end token.
7353 * data/lalr1.cc (yy::parser::parse): Likewise.
7354 * data/yacc.c (yyparse): Likewise.
7355
7356 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
7357 value warnings for the end token when the user gives the end token a
7358 %destructor.
7359
7360 * tests/actions.at (Printers and Destructors): Test all the above.
7361
62a9592d
PE
73622006-07-24 Paul Eggert <eggert@cs.ucla.edu>
7363
7364 Update to latest gnulib and gettext versions.
7365 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
7366 Add fopen-safer.
7367 (gnulib_files): Add m4/warning.m4. Don't worry about files
7368 overwritten by autopoint.
7369 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
7370 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
7371 rejects them.
7372 Don't use autoreconf; instead, invoke autopoint etc. by hand,
7373 so that we can remove the intl files at a better time.
7374 (intl_files_to_remove): Remove aclocal.m4, since it gets
7375 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
7376 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
7377 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
7378 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
7379 Remove datarootdir hack; no longer needed.
7380 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
7381 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
7382 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
7383 strdup.h.
7384 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
7385 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
7386
10d6970f
PE
73872006-07-20 Paul Eggert <eggert@cs.ucla.edu>
7388
7389 * bootstrap: Adjust to today's change to gnulib-tool by invoking
7390 it with --assume-autoconf='latest-stable'.
7391
50a33993
JD
73922006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7393
7394 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
7395 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
7396 YYSTYPE' and `{'.
7397 * src/muscle_tab.h (muscle_grow): Replace the header comments with
7398 those from muscle_tab.c since the old ones are misleading.
7399
2ce4ed68
AD
74002006-07-13 Akim Demaille <akim@epita.fr>
7401
7402 Support %define "KEY" {VALUE}.
7403 * src/scan-code.h, src/scan-code.l (translate_action)
7404 (translate_rule_action, translate_symbol_action, translate_code):
7405 Return char *, not const char *.
7406 * src/parse-gram.y (declaration): Rename as...
7407 (prologue_declaration): this.
7408 (string_content): Remove this nonterminal, use STRING.
7409 (braceless, content, content.opt): New nonterminal.
7410 Use them.
7411 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7412 as value.
7413 * src/scan-gram.l (getargs.h): Don't include it.
7414
db7e5eb5
PE
74152006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7416
7417 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7418 rather than a for-loop that declares a local bool variable. This
7419 should work around a compatibility problem with a Cray x1e C++
7420 compiler reported by Hung Nguyen in
7421 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7422 The for-loop was introduced in the 2004-11-17 change but I don't
7423 know why it was needed.
7424
a5d80ba5
AD
74252006-07-12 Akim Demaille <akim@epita.fr>
7426
7427 * data/c.m4: Comment changes.
7428
23eb2a69
AD
74292006-07-10 Akim Demaille <akim@lrde.epita.fr>
7430
7431 * src/complain.c (error_message, ERROR_MESSAGE): New.
7432 To factor...
7433 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7434 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7435
ddc8ede1
PE
74362006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7437
7438 * NEWS: Instead of %union, you can define and use your own union type
7439 YYSTYPE if your grammar contains at least one <type> tag.
7440 Your YYSTYPE need not be a macro; it can be a typedef.
7441 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7442 (Union Decl, Decl Summary): Document this.
7443 * data/glr.c (YYSTYPE): Implement this.
7444 * data/glr.cc (YYSTYPE): Likewise.
7445 * data/lalr1.cc (YYSTYPE): Likewise.
7446 * data/yacc.c (YYSTYPE): Likewise.
7447 * src/output.c (prepare): Output tag_seen_flag.
7448 * src/parse-gram.y (declaration, grammar_declaration):
7449 Use 'union_seen' rather than 'typed' to determine whether
7450 %union has been seen, since grammars can now be typed without
7451 %union.
7452 (symbol_declaration, type.opt, symbol_def):
7453 Keep track of whether a tag has been seen.
7454 * src/reader.c (union_seen, tag_seen): New vars.
7455 (typed): remove.
7456 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7457 * src/scan-code.l (untyped_var_seen): New variable.
7458 (handle_action_dollar): Adjust to above changes.
7459 (handle_action_dollar, handle_action_at):
7460 Improve overflow checking for outlandish numbers.
7461 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7462 avoid new diagnostics generated by above changes.
7463 * tests/regression.at (YYSTYPE typedef): Add test to check
7464 for type tags without %union.
7465
7466 * src/symlist.c (symbol_list_length): Return int, not unsigned
7467 int, since callers expect int. This may need to get revisited
7468 once we have proper integer overflow checking.
7469
7470 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7471 object is now static.
7472
7473 * src/getargs.c (flags_argmatch): Return void, not int,
7474 to pacify ./configure --enable-gcc-warnings.
7475
7476 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7477 since last_string is already defined to FLEX_PREFIX (last_string).
7478
7b42569e
AD
74792006-07-09 Akim Demaille <akim@lrde.epita.fr>
7480
7481 Implement --warnings/-W.
7482 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7483 replaced by...
7484 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7485 Adjust callers.
7486 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7487 (warnings_args, warnings_types): New.
7488 (getargs, short_options, long_options): Accept -W/--warnings.
7489 Sort the options by alphabetical order, upper case letter right
7490 before its lower case.
7491
3b452f4e
JD
74922006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7493
7494 Change %merge result type clash warnings to errors. Discussed at
7495 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7496 * src/reader.c (record_merge_function_type): Use complain_at.
7497 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7498 declared later): Update test case results.
7499
b8a41559
AD
75002006-07-09 Akim Demaille <akim@lrde.epita.fr>
7501
7502 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7503 to be in alphabetical order.
7504 (trace_args): Spelling fixes.
7505
cd9e1ba2
PE
75062006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7507
7508 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7509 so they don't collide with user-defined macros.
7510 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7511 this was never guaranteed, and now that we're using gnulib stdint,
7512 which defines int_fast16_t to long int, the problem is exposed.
7513
cb48f191
PE
75142006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7515
b8445a15
PE
7516 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7517 need the full POSIX semantics (and weren't implementing them
7518 anyway).
7519
cb48f191
PE
7520 Adjust to Autoconf 2.60 and today's gnulib.
7521 * bootstrap (gnulib_modules): Add stdint.
7522 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7523 no longer copies it.
7524 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7525 since stdint needs the former and wcwidth (which is now required
7526 by mbswidth) needs the latter.
7527 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7528 work around a compatibility glitch between gettext 0.14.6 and
7529 Autoconf 2.60.
7530 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7531 Do not check for uintptr_t, since new stdint module does the right
7532 thing.
7533 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7534 Add stdint.h, stdint_.h, wcwidth.h.
7535 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7536 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7537 stdint.m4, wchar_t.m4, wcwidth.m4.
7538 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7539 usual order for ../lib/*.h files.
7540 (file_name_split): Use last_component, not base_name, to adjust
7541 to gnulib changes.
7542 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7543 for ../lib/*.h files.
7544 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7545 Define unconditionally, since we now assume the stdint module.
7546 * src/scan-skel.l: Include <dirname.h>.
7547 (BASE_QPUTS): Use last_component, not base_name.
7548 * src/system.h: Include <unlocked-io.h> in the usual order
7549 for ../lib/*.h files. Include <stdint.h> unconditionally,
7550 since we now use the stdint module.
7551 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7552 HAVE_UINTPTR_T, since we now use the stdint module.
7553 (base_name): Remove decl, since files now include <dirname.h>
7554 to get the decl.
7555
cd48d21d
AD
75562006-07-08 Akim Demaille <akim@lrde.epita.fr>
7557
7558 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7559 New, default to 1.
7560 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7561 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7562 default.
7563 * tests/calc.at: Adjust.
7564
8ec0a172
AD
75652006-07-08 Akim Demaille <akim@lrde.epita.fr>
7566
b8445a15 7567 * data/c.m4 (b4_basename): New.
8ec0a172
AD
7568 (b4_syncline): Also output the location of its invocation (from
7569 the skeleton).
7570 (b4_user_action, b4_define_user_action, b4_user_actions)
7571 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7572 (b4_user_stype): New.
7573 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7574
4a678af8
JD
75752006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7576
7577 In the grammar file, the first column is 1 not 0 on the first line as
7578 on every other line.
7579 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7580 * tests/input.at (Torturing the Scanner): Update output.
7581
7582 * src/scan-gram.l (scanner_cursor): Declare it static.
7583
dd60572a
JD
75842006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7585
7586 In warnings, say "previous declaration" rather than "first
7587 declaration".
7588 * src/symtab.c (redeclaration): Do that here.
7589 * src/reader.c (record_merge_function_type): In the case of a result
7590 type clash, report the previous declaration rather than the very first
7591 one in the grammar file.
7592 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7593 declared later): Add a third declaration to check this behavior.
7594 * tests/input.at (Incompatible Aliases): Update output.
7595
2073e1b6
AD
75962006-06-27 Akim Demaille <akim@epita.fr>
7597
7598 * doc/Doxyfile.in: New.
7599 * doc/Makefile.am: Use it.
7600 * src/lalr.h, src/symtab.h: Initial doxygenation.
7601
8ee5b538
JD
76022006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7603
7604 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
7605 declared after the %merge. This continues the effort of the previous
7606 patch.
8ee5b538
JD
7607 * src/reader.c (get_merge_function): Don't set the merger type yet.
7608 (record_merge_function_type): New function for setting the merger type
7609 and checking for clashes.
7610 (grammar_current_rule_merge_set): Set the location of the %merge for
7611 the current rule.
7612 (packgram): Invoke record_merge_function_type for each rule now that
7613 all symbol type declarations have been parsed.
7614 * src/reader.h (merger_list.type_declaration_location): New member
7615 storing the location of the first %merge from which the type for this
7616 merging function was derived.
7617 * src/symlist.h (symbol_list.merger_declaration_location): New member
7618 storing the location of a rule's %merge, if any.
7619 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7620 declared later): New test to catch the error fixed by the above patch.
7621
ffa4ba3a
JD
76222006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7623
7624 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
7625 declarations appear after the rules. Discussed at
7626 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7627 and
7628 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7629 Don't mistake the type of $$ in a midrule to be that of its parent
7630 rule's $$.
ffa4ba3a
JD
7631 * src/reader.c (grammar_current_rule_end): Don't invoke
7632 grammar_rule_check yet since not all symbol declarations may have been
7633 parsed yet.
7634 (grammar_midrule_action): Likewise.
7635 Don't record whether the midrule's $$ has been used yet since actions
7636 haven't been translated yet.
7637 Record the midrule's parent rule and its RHS index within the parent
7638 rule.
7639 (grammar_current_rule_action_append): Don't translate the action yet
7640 since not all symbol declarations may have been parsed yet and, thus,
7641 warnings about types for $$, $n, @$, and @n can't be reported yet.
7642 (packgram): Translate the action and invoke grammar_rule_check now that
7643 all symbol declarations have been parsed.
7644 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7645 after parsing the entire grammar file, the symbol list here in the case
7646 of a midrule is actually the midrule's empty RHS, so reference its
7647 parent rule's RHS where necessary.
7648 On the other hand, now that you can already know it's a midrule, you
7649 aren't forced to think $$ has the same type as its parent rule's $$.
7650 (handle_action_at): In the case of a midrule, reference the parent rule
7651 where necessary.
7652 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7653 members.
7654 (symbol_list_length): Now that this is invoked after all rules have
7655 been parsed, a NULL symbol (rather than a NULL symbol list node)
7656 terminates a rule. symbol_list_print already does this correctly.
7657 * src/symlist.h (symbol_list.midrule_parent_rule,
7658 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7659 remember their relationships with their parents.
7660 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7661 fixed by the above patch.
7662 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7663 implementing...
7664 (Unused values): ... this old test case and...
7665 (Unused values before symbol declarations): ... this new test case.
7666 This one is the same as `Unused values' except that all symbol
7667 declarations appear after the rules in order to catch the rest of the
7668 errors fixed by the above patch.
7669
e256e17f
JD
76702006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7671
300a1930
JD
7672 More cleanup.
7673 * src/reader.c (current_rule): Declare it static since it's no longer
7674 used outside this file.
7675 (grammar_current_rule_action_append): Remove redundant arguments from
7676 translate_rule_action invocation.
7677 * src/reader.h (current_rule): Remove this unused extern.
7678 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7679 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 7680
381ecb06
JD
76812006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7682
7683 Clean up yesterday's patch.
7684 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7685 to...
7686 * src/reader.c (grammar_current_rule_action_append): ... here for
7687 consistency with grammar_current_rule_symbol_append.
7688 * tests/regression.at (Braced code in declaration in rules section):
7689 Make yyerror and yylex static as usual.
7690
4210cd0b
JD
76912006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7692
7693 Fix bug that mistakes braced code in a declaration in the rules section
7694 to be a rule action. Mentioned at
7695 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7696 * src/scan-gram.l: Move midrule action detection from the start of the
7697 scanning of any braced code to...
7698 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7699 action. For readability, use $2 and @2 rather than the equivalent
7700 global variables.
7701 * tests/regression.at (Braced code in declaration in rules section):
7702 New test to catch the error fixed by the above patch.
7703
7704 Work on code readability some.
7705 * src/scan-code.l (current_rule): Get rid of this misleading and
7706 redundant declaration: it's actually extern'ed in reader.h.
7707 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7708 translate_action): Add a rule argument and use it instead of the global
7709 current_rule.
7710 (translate_rule_action): This already receives current_rule through an
7711 argument, so pass it on to translate_action instead of assigning
7712 current_rule to current_rule.
7713 (translate_symbol_action, translate_code): Pass rule = NULL to
7714 translate_action.
7715
34f98f46
JD
77162006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7717
7718 Rename %before-definitions to %start-header and %after-definitions to
7719 %end-header. Don't use these declarations to separate pre-prologue
7720 blocks from post-prologue blocks. Add new order-independent
7721 declarations %before-header and %after-header as alternatives to the
7722 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7723 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7724 * NEWS (2.3+): Update for these changes.
7725 * data/glr.c (b4_before_definitions): Update to...
7726 (b4_start_header): ... this.
7727 (b4_after_definitions): Update to...
7728 (b4_end_header): ... this.
7729 * data/glr.cc: Likewise.
7730 * data/lalr1.cc: Likewise.
7731 * data/yacc.c: Likewise.
7732 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7733 prologue blocks with %*-header declarations.
7734 (Calc++ Parser): Likewise.
91661ebb 7735 (Decl Summary): Update names.
148d66d8 7736 (Table of Symbols): Update description.
34f98f46
JD
7737 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7738 (PERCENT_END_HEADER): ... this.
7739 (PERCENT_BEFORE_DEFINITIONS): Update to...
7740 (PERCENT_START_HEADER): ... this.
7741 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7742 (declaration): Update token names and m4 macro names.
7743 When parsing %end-header and %start-header, invoke translate_code
7744 before muscle_code_grow, and no longer set global booleans to remember
7745 whether these declarations have been seen.
7746 Parse new %after-header and %before-header.
7747 * src/reader.c (before_definitions, after_definitions): Remove.
7748 (prologue_augment): Accept a new bool argument to specify whether to
7749 augment the pre-prologue or post-prologue.
7750 * src/reader.h (before_definitions, after_definitions): Remove these
7751 extern's.
7752 (prologue_augment): Add new bool argument.
7753 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7754 (PERCENT_END_HEADER): ... this.
7755 (PERCENT_BEFORE_DEFINITIONS): Update to...
7756 (PERCENT_START_HEADER): ... this.
7757 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7758 * tests/actions.at (Printers and Destructors): Update names.
7759
31b2b07e
JD
77602006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7761
7762 Add comparison operators for C++ location classes. Discussed at
7763 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7764 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7765 declaration indicating whether filename_type has an operator==. If
7766 filename_type is `std::string', it defaults to `1', `0' otherwise.
7767 * data/location.cc: Iff b4_define_location_comparison is `1', add
7768 operator== and operator!= for class position and for class location.
7769
7770 Some minor fixes.
7771 * src/scan-action.l: Remove unused file.
7772 * src/symtab.c (symbol_printer_set): Use printer_location not
7773 destructor_location.
7774 * src/symtab.h (struct symbol): Replace incorrect source comment for
7775 printer members.
7776 * tests/input.at (Incompatible Aliases): Update output with correct
7777 printer location.
7778
9bc0dd67
JD
77792006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7780
7781 Don't put the pre-prologue in the header file. For the yacc.c code
7782 file and the glr.c header and code files, move the pre-prologue before
7783 the token definitions. Add new %before-definitions and
7784 %after-definitions to declare code that will go in both the header file
7785 and code file. Discussed at
7786 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7787 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7788 and
7789 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7790 * NEWS (2.3+): Describe these changes.
7791 * data/glr.c (b4_pre_prologue): Move from within to before...
7792 (b4_shared_declarations): ... this.
7793 Add new b4_before_definitions before b4_token_enums.
7794 Add new b4_after_definitions at the end.
7795 * data/glr.cc (b4_pre_prologue): Replace with...
7796 (b4_before_definitions): ... this in the header file.
7797 (b4_after_definitions): New near the end of the header file.
7798 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7799 code file right before including the header file.
7800 (b4_before_definitions): New in the previous position of
7801 b4_pre_prologue in the header file.
7802 (b4_after_definitions): New near the end of the header file.
7803 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7804 (b4_token_enums_defines): In the code file, move to right before
7805 YYSTYPE for consistency with the header file.
7806 (b4_before_definitions): New right before b4_token_enums_defines in
7807 both the header and code file.
7808 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7809 header and code file.
7810 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7811 of prologues for %union dependencies.
91661ebb
JD
7812 (Decl Summary): In %defines description, mention the effect of
7813 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
7814 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7815 than in the pre-prologue so that make check succeeds.
148d66d8 7816 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
7817 %after-definitions.
7818 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7819 %before-definitions.
7820 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7821 (declaration): Parse those declarations and append to
7822 b4_before_definitions and b4_after_definitions, respectively.
7823 * src/reader.c (before_definitions, after_definitions): New bools to
7824 track whether those declarations have been seen.
7825 (prologue_augment): Add to the post-prologue if %union,
7826 %before-definitions, or %after-definitions has been seen.
7827 * src/reader.h (before_definitions, after_definitions): New extern's.
7828 * src/scan-gram.l: Scan the new declarations.
7829 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7830 prologue block in a %before-definitions or a %after-definitions based
7831 on whether the %union is declared.
7832 * tests/regression.at (Early token definitions with --yacc, Early token
7833 definitions without --yacc): Move tests for token definitions into the
7834 post-prologue since token names are no longer defined in the
7835 pre-prologue.
7836
203b9274
AD
78372006-06-20 Akim Demaille <akim@epita.fr>
7838
7839 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7840 (symbol_get): Use it.
7841 * src/parse-gram.y: Use it.
7842
a7ee59cf
JD
78432006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7844
7845 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7846 build succeeds when configured with --enable-gcc-warnings.
7847
5a2baae7
PE
78482006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7849
33ad1a9c
PE
7850 * src/parse-gram.y (char_name): New function.
7851 (CHAR, STRING, string_content): For %printer, properly escape.
7852 (ID): Prefer fputs to fprintf.
7853 (id): Reindent to be consistent with other rules.
7854 Properly quote char.
7855
5a2baae7
PE
7856 The Translation Project changed its way of publishing translations
7857 to maintainers. I haven't received any responses to my request
7858 for supporting the old way, or for documenting the new way. I
7859 have modified 'bootstrap' to use screen scraping
7860 (in this case, HTML scraping). This is unreliable and inelegant,
7861 but I don't see any better way. Yuck.
7862 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7863 (get_translations): New function, which uses HTML scraping to
7864 deduce locations of latest translations.
7865 Use this function to grab both bison and bison-runtime .po files.
7866 Don't bother priming the pump for the runtime-po domain any more,
7867 as it's now translated better than bison is.
7868
58d7a1a1
AD
78692006-06-19 Akim Demaille <akim@epita.fr>
7870
7871 * src/scan-gram.l: No longer "parse" things after `%union' until
7872 `{'. Rather, return a single "%union" token.
7873 No longer make symbols: return strings, and leave the conversion
7874 to symbols to the parser.
7875 (SC_PRE_CODE, token_type): Remove.
7876 * src/parse-gram.y (%union): New field `character'.
7877 Sort tokens.
7878 (CHAR): New token.
7879 (ID, ID_COLON): Now that the scanner no longer makes them
7880 identifiers, adjust all uses to invoke symbol_get.
7881 (id_colon): New, wraps the conversion from string to symbol.
7882 (%union): Accept a possible union_name.
7883 (symbol): Now can be a char.
7884 * data/c.m4 (b4_union_name): Leave a default value.
7885 * data/glr.c, data/yacc.c: Use it.
7886
b931235e
JD
78872006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7888
7889 For associating token numbers with token names for "yacc.c", don't use
7890 #define statements unless `--yacc' is specified; always use enum
7891 yytokentype. Most important discussions start at:
7892 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7893 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7894 and
7895 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7896 * NEWS (2.3+): Mention.
7897 * data/c.m4 (b4_yacc_if): New.
7898 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7899 token #define's.
7900 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7901 on token name definitions.
7902 * src/getargs.c (usage): Capitalize `Yacc' in English.
7903 * src/output.c (prepare): Define b4_yacc_flag.
7904 * tests/regression.at (Early token definitions): Test that tokens names
7905 are defined before the pre-prologue not just before the post-prologue.
7906 Remove this test case and copy to...
7907 (Early token definitions with --yacc): ... this to test #define's.
7908 (Early token definitions without --yacc): ... and this to test enums.
7909
9e6e7ed2
PE
79102006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7911
7912 * NEWS: Reword the post-2.3 change to not be so optimistic about
7913 removing the old "look-ahead" spelling.
7914 Update previous look-ahead/lookahead change reports.
7915 * REFERENCES: look-ahead -> lookahead (since that's
7916 what he actually wrote).
7917 * doc/refcard.tex: look ahead -> lookahead,
7918 look-ahead -> lookahead
7919
742e4900
JD
79202006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7921
7922 For consistency, use `lookahead' instead of `look-ahead' or
7923 `look_ahead'. Discussed starting at
7924 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7925 and then at
7926 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7927 * NEWS: For the next release, note the change to `--report'.
7928 * TODO, doc/bison.1: Update English.
7929 * doc/bison.texinfo: Update English.
7930 (Understanding Your Parser, Bison Options): Document as
7931 `--report=lookahead' rather than `--report=look-ahead'.
7932 * src/conflicts.c: Update English in comments.
7933 (lookahead_set): Rename from look_ahead_set.
7934 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7935 (resolve_sr_conflict): Rename local look_ahead_tokens to
7936 lookahead_tokens, and update other uses.
7937 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7938 count_rr_conflicts, conflicts_free): Update uses.
7939 * src/getargs.c (report_args): Move "lookahead" before alternate
7940 spellings.
7941 (report_types): Update uses.
7942 (usage): For `--report' usage description, state `lookahead' spelling
7943 rather than `look-ahead'.
7944 * src/getargs.h (report.report_lookahead_tokens): Rename from
7945 report_look_ahead_tokens.
7946 * src/lalr.c: Update English in comments.
7947 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7948 (state_lookahead_tokens_count): Rename from
7949 state_look_ahead_tokens_count.
7950 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7951 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7952 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7953 Update other uses.
7954 Update English in output.
7955 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7956 * src/print.c: Update English in comments.
7957 (lookahead_set): Rename from look_ahead_set.
7958 (print_reduction): Rename argument lookahead_token from
7959 look_ahead_token.
7960 (print_core, state_default_rule, print_reductions, print_results):
7961 Update uses.
7962 * src/print_graph.c: Update English in comments.
7963 (print_core): Update uses.
7964 * src/state.c: Update English in comments.
7965 (reductions_new): Update uses.
7966 (state_rule_lookahead_tokens_print): Rename from
7967 state_rule_look_ahead_tokens_print, and update other uses.
7968 * src/state.h: Update English in comments.
7969 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7970 (state_rule_lookahead_tokens_print): Rename from
7971 state_rule_look_ahead_tokens_print.
7972 * src/tables.c: Update English in comments.
7973 (conflict_row, action_row): Update uses.
7974 * tests/glr-regression.at
7975 (Incorrect lookahead during deterministic GLR,
7976 Incorrect lookahead during nondeterministic GLR): Rename
7977 print_look_ahead to print_lookahead.
7978 * tests/torture.at: Update English in comments.
7979 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7980 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7981 (Many lookahead tokens): Update uses.
7982 * data/glr.c: Update English in comments.
7983 * lalr1.cc: Likewise.
7984 * yacc.c: Likewise.
7985 * src/conflicts.h: Likewise.
7986 * src/lalr.h: Likewise.
7987 * src/main.c: Likewise.
7988 * src/output.c: Likewise.
7989 * src/parse-gram.c: Likewise.
7990 * src/tables.h: Likewise.
7991 * tests/calc.at: Likewise.
7992
3c40d0b5
JD
79932006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7994
7995 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7996
5d278082
PE
79972006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7998
7999 * TODO: Add request from Nelson H. F. Beebe to be able to install
8000 Bison without installing the yacc script.
8001
9e668899
JD
80022006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8003
8004 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8005 and yytext if they're already #define'd.
8006 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8007 * src/scan-code-c.c: ... here.
8008 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8009 <config.h>.
8010
0c8e079f
JD
80112006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8012
8013 Get Bison to build again when configured with --enable-gcc-warnings.
8014 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8015 missing #include's.
8016 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8017 loc argument as it shadows a global.
8018 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8019 invocation.
8020
8021 * src/.cvsignore: Add scan-code.c.
8022
2346344a
AD
80232006-06-07 Akim Demaille <akim@epita.fr>
8024
8025 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8026 to...
8027 * src/scan-code.l: here.
8028 * tests/input.at (Torturing the Scanner): Fix another location
8029 error.
8030
4862bdfd
AD
80312006-06-07 Akim Demaille <akim@epita.fr>
8032
8033 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8034
e9071366
AD
80352006-06-06 Akim Demaille <akim@epita.fr>
8036
8037 Extract the parsing of user actions from the grammar scanner.
8038 As a consequence, the relation between the grammar scanner and
8039 parser is much simpler. We can also split "composite tokens" back
8040 into simple tokens.
8041 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8042 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8043 rename as...
8044 * src/location.h, src/location.c (add_column_width)
8045 (location_compute): these.
8046 Fix the column count: the initial column is 0.
8047 (location_print): Be robust to ending column being 0.
8048 * src/location.h (boundary_set): New.
8049 * src/main.c: Adjust to scanner_free being renamed as
8050 gram_scanner_free.
8051 * src/output.c: Include scan-code.h.
8052 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8053 Use boundary_set.
8054 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8055 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8056 which is now, again, a separate token.
8057 Adjust all dependencies.
8058 Whereever actions with $ and @ are used, use translate_code.
8059 (action): Remove this nonterminal which is now useless.
8060 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8061 (grammar_current_rule_action_append): Use translate_code.
8062 (packgram): Bound check ruleno, itemno, and rule_length.
8063 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8064 (last_string, last_braced_code_loc, max_left_semantic_context)
8065 (scanner_initialize, scanner_free, scanner_last_string_free)
8066 (gram_out, gram_lineno, YY_DECL_): Move to...
8067 * src/scan-gram.h: this new file.
8068 (YY_DECL): Rename as...
8069 (GRAM_DECL): this.
8070 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8071 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8072 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8073 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8074 Move these declarations, and...
8075 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8076 these to...
8077 * src/flex-scanner.h: this new file.
8078 * src/scan-gram.l (rule_length, rule_length_overflow)
8079 (increment_rule_length): Remove.
8080 (last_braced_code_loc): Rename as...
8081 (gram_last_braced_code_loc): this.
8082 Adjust to the changes of the parser.
8083 Move all the handling of $ and @ into...
8084 * src/scan-code.l: here.
8085 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8086 (handle_action_dollar, handle_action_at): Move to...
8087 * src/scan-code.l: here.
8088 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8089 scan-code.h, scan-code-c.c, scan-gram.h.
8090 (EXTRA_bison_SOURCES): Add scan-code.l.
8091 (BUILT_SOURCES): Add scan-code.c.
8092 (yacc): Be robust to white spaces.
8093
8094 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8095 * tests/regression.at: Adjust the column numbers.
8096 * tests/regression.at: Adjust the error message.
7891a7c4 8097
184e42f0
JD
80982006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8099
8100 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8101 Use Akim's wording from
8102 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8103
7891a7c4
JD
81042006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8105
8106 Between Bison releases, manually append `+' to the previous Bison
8107 release number, and use that as a signal to automatically print the
8108 ChangeLog's CVS Id keyword from --version. Discussed starting at
8109 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8110 * ChangeLog: Add Id header.
8111 * configure.ac (AC_INIT): Append `+' to `2.3'.
8112 * src/.cvsignore: Add revision.c.
8113 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8114 (BUILT_SOURCES): Add revision.c.
8115 (revision.c): New target rule. This file defines a new global variable
8116 named revision. It initializes it with either the Id from ChangeLog
8117 or, if VERSION doesn't contain `+', with the empty string.
8118 * src/getargs.c (version): Print the value of revision.
8119 * src/revision.h: Extern revision.
8120
4ad3ed84
PE
81212006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8122
8123 * NEWS: Version 2.3.
8124 * configure.ac (AC_INIT): Likewise.
8125
02103984
PE
81262006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8127
8128 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8129 with no arguments, not as an object-like macro. This is for
8130 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8131 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8132 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8133 Document this.
8134
2c08afa5
JD
81352006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8136
8137 * src/getargs.c (usage): Back out yesterday's modification of the
8138 --help output so that we don't have to wait for translation before
8139 releasing 2.3.
8140
6077da58
PE
81412006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8142
8143 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8144 Problem reported by Akim Demaille.
8145
2a26b6c2
JD
81462006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8147
8148 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8149
aefef0d6
PE
81502006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8151
8152 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8153 generated source code. Problem reported by Frans Englich in
8154 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8155
fcd8e201
PE
81562006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8157
8158 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8159 shell, not within 'make', so that 'make' by an ordinary builder
8160 (using GNU make) does not worry about configuring gzip. This also
8161 works around a bug reported independently by Keith Thompson and by
8162 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8163 stderr rather than stdout, messing up the build logs.
8164
7b5cdcbd
JD
81652006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8166
8167 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8168 to make sure that YYID will never be unused. This fixes a 'make
8169 maintainer-check' failure caused by the recent changes to the 'Trivial
8170 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8171 not used.
8172 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8173
5ad0a449
JD
81742006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8175
8176 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8177 state before an empty RHS is always resolved here. Only the location
8178 of that state is guaranteed to be resolved, and that's enough. This
8179 fixes the remaining bug reported by Derek M. Jones in
8180 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8181 * tests/glr-regression.at (Uninitialized location when reporting
8182 ambiguity): Test the above case.
8183 Also, the embedded comments in this test case claim it checks the case
8184 of an empty RHS that has inherited the initial location. However, the
8185 corresponding LHS was already resolved, so yyresolveLocations didn't
8186 actually have reason to modify it. Fix this by forcing
8187 nondeterministic operation at the beginning of the parse.
8188
50cce58e
PE
81892006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8190
8191 * data/c.m4 (b4_yy_symbol_print_generate):
8192 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8193 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8194 of the bugs reported today by Derek M Jones in
8195 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8196 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8197 defined to be a type name without parens or brackets.
8198 (Location Type): Similarly for YYLTYPE.
8199 * tests/regression.at (Trivial grammars): Put in a test for this
8200 bug that will be caught by 'make maintainer-check' (though not,
8201 alas, by 'make check' unless your compiler is picky).
8202
ab8d9dc5
PE
82032006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8204
0d2c8934 8205 * NEWS: Version 2.2.
ab8d9dc5
PE
8206 * configure.ac (AC_INIT): Likewise.
8207
9138c575
JD
82082006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8209
8210 * data/glr.c (yyreportTree): Make room in yystates for the state
8211 preceding the RHS. This fixes the segmentation fault reported by Derek
8212 M. Jones in
8213 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8214 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8215 to the user. Reported for yyreportTree by Derek M. Jones later in the
8216 same thread.
8217 * THANKS: Add Derek M. Jones.
8218 Update my email address.
8219 Fix typo in Steve Murphy's name.
8220
276f48df
PE
82212006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8222
d6645148
PE
8223 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8224 checking against YYLAST that caused the parser to miss a potential
8225 alternative in its diagnostic.
8226 Problem reported by Maria Jose Moron Fernandez in
8227 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8228 * data/lalr1.cc (yysyntax_error_): Likewise.
8229 * data/yacc.c (yysyntax_error): Likewise.
8230 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8231 tokens, in case we run into an older C compiler.
8232 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8233 Use them to check for the off-by-one error fixed above.
8234
276f48df
PE
8235 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8236 YYSIZE_T, not size_t.
8237 * tests/regression.at (Trivial grammars): New test, to catch
8238 the error fixed by the above patch.
8239
cd8b5791
AD
82402006-05-14 Akim Demaille <akim@lrde.epita.fr>
8241
8242 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8243 scheme.
8244 Reported by Steve Murphy.
8245
34376418
AD
82462006-05-14 Akim Demaille <akim@lrde.epita.fr>
8247
8248 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8249 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8250
327afc7c
AD
82512006-05-14 Akim Demaille <akim@lrde.epita.fr>
8252
8253 Implement --trace=m4.
8254 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8255 * src/output.c (output_skeleton): When set, pass -dV to m4.
8256
8257 Factor the handling of flags in m4.
8258 * src/output.c (prepare): Rename the muscle names debug, defines,
8259 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8260 * data/c.m4: Adjust.
8261 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8262 Use b4_define_flag_if to define other b4_FLAG_if macros.
8263 (b4_location_if): As a consequence, rename as...
8264 (b4_locations_if): this, for consistency.
8265 Adjust all the skeletons.
8266
ba9ecd19
AD
82672006-05-14 Akim Demaille <akim@lrde.epita.fr>
8268
8269 * etc/bench.pm: Shorten bench names.
8270
4e83ea15
AD
82712006-05-14 Akim Demaille <akim@lrde.epita.fr>
8272
8273 * src/output.h, src/output.c (error_verbose): Move to...
8274 * src/getargs.h, src/getargs.c: here.
8275 Sort the flags.
8276 Adjust dependencies.
8277
6e93d810
PE
82782006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8279
8280 * data/c.m4 (b4_copyright): Put the special exception for Bison
8281 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
8282 uses changed. Suggested by Akim Demaille. Also, wrap the
8283 copyright notice, in case it is longer than 80 columns. Replace
8284 comma by newline after title.
6e93d810 8285
eaea13f5
PE
82862006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8287
8288 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8289 incompatibility, not a bug. Mention that it wasn't fixed as of
8290 flex 2.5.33.
8291
3cf084ec
AD
82922006-05-11 Akim Demaille <akim@lrde.epita.fr>
8293
8294 * examples/extexi: Enforce the precedence of concatenation over
8295 >>.
0a9f1c7d 8296 Reported by Tommy Nordgren.
3cf084ec 8297
32c96bd7
AD
82982006-05-11 Akim Demaille <akim@lrde.epita.fr>
8299
8300 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8301 with the member "token".
f94705b2 8302 Reported by Martin Nylin.
32c96bd7 8303
eaea13f5
PE
83042006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8305
8306 * data/glr.c: Switch to Bison 2.2 special-exception language in
8307 the copyright notice. Use more-regular format for titles and
8308 copyright notices.
8309 * data/glr.cc: Likewise.
8310 * data/location.cc: Likewise.
8311 * data/yacc.cc: Likewise.
8312 * doc/bison.texinfo (Conditions): Document this.
8313 * NEWS: likewise. Upgrade version to 2.2.
8314
6e2d1146
AD
83152006-04-27 Akim Demaille <akim@lrde.epita.fr>
8316
8317 * data/glr.cc: Remove dead code.
8318
47671055
PE
83192006-04-25 Paul Eggert <eggert@cs.ucla.edu>
8320
8321 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
8322 that variable and the line breaks the bootstrap. Problem reported
8323 by Juan M. Guerrero.
8324
ed2e6384
AD
83252006-04-24 Akim Demaille <akim@lrde.epita.fr>
8326
8327 * doc/bison.texinfo (Multiple start-symbols): New.
8328
3cedc2dc
AD
83292006-04-24 Akim Demaille <akim@lrde.epita.fr>
8330
8331 * etc/README, etc/bench.pl: New.
8332
b2ddc3f3
AD
83332006-04-03 Akim Demaille <akim@lrde.epita.fr>
8334
8335 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
8336 rule.
8337 Reported by Mickael Labau.
8338 * tests/input.at (Torturing the Scanner): Test it.
8339
91e3ac9a
PE
83402006-03-16 Paul Eggert <eggert@cs.ucla.edu>
8341
8342 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
8343 Problem reported by Bob Rossi.
8344
83452006-03-13 Paul Eggert <eggert@cs.ucla.edu>
8346
8347 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
8348 and didn't really work.
8349 For the index, use @ifnotinfo, not @iftex.
8350 Minor cleanups of spacing and terminology.
8351
5cf61e93
AD
83522006-03-12 Akim Demaille <akim@lrde.epita.fr>
8353
8354 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
8355 of AT_NAME_PREFIX when %name-prefix is not used.
8356
aa08666d
AD
83572006-03-12 Akim Demaille <akim@lrde.epita.fr>
8358
8359 Apply --prefix to C++ skeletons too: they change the namespace.
8360 The test suite already exercize these cases.
8361 * data/c++.m4 (b4_namespace): New.
8362 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
8363 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
8364 * data/yacc.c, data/glr.c: Remove a useless `[]'.
8365 * doc/bison.texinfo: Document it.
8366 (Option Cross Key): Use @multitable in all formats. It looks
8367 nicer, even in TeX outputs.
8368 (Rules): Use the same code whatever the output type is.
8369 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
8370 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
8371 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 8372
45567173
AD
83732006-03-10 Akim Demaille <akim@lrde.epita.fr>
8374
8375 * TODO: Remove dead items.
8376
e9d8f881 83772006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
8378
8379 * doc/FAQ: Remove, merged into...
8380 * doc/bison.texinfo (FAQ): this.
8381 * doc/Makefile.am (EXTRA_DIST): Adjust.
8382
c095d689
AD
83832006-03-10 Akim Demaille <akim@lrde.epita.fr>
8384
8385 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
8386 even if empty.
8387 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
8388 * doc/bison.texinfo (Calc++ Scanner): Use it.
8389
6e0f8287
PE
83902006-03-09 Paul Eggert <eggert@cs.ucla.edu>
8391
8392 Fix two nits reported by twlevo, plus one more that I discovered.
8393
8394 * src/assoc.h (assoc_to_string): Give a name to the arg, as
8395 this is the usual Bison style.
8396 * src/location.h (location_print): Likewise.
8397
8398 * src/reader.h (token_name): Likewise.
8399
d6b771c3
PE
84002006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8401
8402 Fix some nits reported by twlevo.
8403 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8404 and "POSIX". Use more-modern syntax for URLs. Mention C++
8405 and ask for Java. Don't hardwire OS version numbers. Add
8406 copyright notice.
8407 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8408 * src/conflicts.c (solved_conflicts_obstack): Now static.
8409
1e137b71
JD
84102006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8411
8412 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8413 page. Say "you can use it" not "you may use it" as on the web page;
8414 we're describing capabilities not granting permission.
8415
73f2e47e
PE
84162006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8417
6d05403d
PE
8418 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8419 shadowing warnings. Use usual patter for iterating through RHS.
8420 * tests/glr-regression.at
8421 (Uninitialized location when reporting ambiguity):
8422 Modify yylex so that it uses its argument, rather than trying
8423 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8424 const char -> char const.
8425
73f2e47e
PE
8426 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8427 Don't use tabs inside commands; it messes up 'ps'.
8428 Problem reported by twlevo.
8429
8710fc41
JD
84302006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8431
8432 * tests/glr-regression.at (Uninitialized location when reporting
8433 ambiguity): New test case.
8434 * data/glr.c (yyresolveLocations): New function, which uses
8435 YYLLOC_DEFAULT.
8436 (yyresolveValue): Invoke yyresolveLocations before reporting an
8437 ambiguity.
8438 * doc/bison.texinfo (Default Action for Locations): Note
8439 YYLLOC_DEFAULT's usage for ambiguity locations.
8440 (GLR Semantic Actions): Cross-reference those notes.
8441
ae952af2
JD
84422006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8443
8444 * tests/glr-regression.at (Leaked semantic values when reporting
8445 ambiguity): Remove unnecessary union and type declarations.
8446 (Leaked lookahead after nondeterministic parse syntax error): New test
8447 case.
8448 * data/glr.c (yyparse): Check for zero stacks remaining before
8449 attempting to shift the lookahead so that you don't lose it.
8450
35ee866a
JD
84512006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8452
8453 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8454 * tests/glr-regression.at (Leaked semantic values when reporting
8455 ambiguity): New test case.
8456 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8457 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8458 now unnecessary yystackp parameter.
8459 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8460 destructors can be called.
8461
8462 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8463 in existing testcases.
8464
520181ab
JD
84652006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8466
8467 Don't leak semantic values for parent RHS when a user action cuts the
8468 parser, and clean up related code a bit.
8469 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
8470 cuts parse): Rename to...
8471 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
8472 for leaked parent RHS values.
8473 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8474 between an unresolved state (non-empty chain of semantic options) and
8475 an incomplete one (signaled by an empty chain).
ae952af2 8476 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
8477 successfully or unsuccessfully resolved yyGLRState to...
8478 (yyresolveValue): ... here so that yyresolveValue always leaves a
8479 yyGLRState with consistent data and thus is easier to understand.
8480 Remove the yyvalp and yylocp parameters since they are always just
8481 taken from the yys parameter. When reporting a discarded merged value
8482 in debugging output, note that it is incompletely merged. Document the
8483 interface.
8484 (yyresolveAction): If resolving any of the RHS states fails, destroy
8485 them all rather than leaking them. Thus, as long as user actions are
8486 written to clean up the RHS correctly, yyresolveAction always cleans up
8487 the RHS of a semantic option. Document the interface.
8488
18d9185c
PE
84892006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8490
8491 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8492 led to a segmentation fault in GNU Pascal. Problem reported
8493 by Waldek Hebisch.
8494
841a7737
JD
84952006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8496
8497 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8498 mid-rule action inside a nonterminal symbol in order to declare a
8499 destructor for its semantic value.
8500
fc3f467f
PE
85012006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8502
8503 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8504 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8505 __cplusplus && ! defined _STDLIB_H && !
8506 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8507 defined free))]: Include <stdlib.h> rather than rolling our own
8508 declarations of malloc and free, to avoid problems with
8509 incompatible declarations (using 'throw') C++'s stdlib.h. This
8510 should fix Debian bug 340012
8511 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8512 reported by Guillaume Melquiond.
8513
a3af26dd
PE
85142006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8515
4d7bc38c
PE
8516 * NEWS: Clarify symbols versus types in unused-value warnings.
8517
a3af26dd
PE
8518 * configure.ac (AC_INIT): Bump version number.
8519
4e26c69e
PE
85202006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8521
8522 * NEWS: Version 2.1a.
8523 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8524 since C99 requires this.
8525
498e897c
PE
85262006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8527
8528 * m4/c-working.m4: New file.
8529 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8530
57bb17ca
PE
85312006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8532
8533 * Makefile.maint: Merge from coreutils.
8534
0be105dc
PE
85352006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8536
8537 More portability fixes for problems summarized by Nelson H. F. Beebe.
8538
8539 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8540 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8541 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8542 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8543 messes up because C++ code is compiled in 32-bit mode but linked
8544 in 64-bit mode.
8545
6fc0c024
PE
85462006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8547
8548 More portability fixes for problems summarized by Nelson H. F. Beebe.
8549
7870f699
PE
8550 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8551 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8552
6fc0c024
PE
8553 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8554 nodist_PROGRAMS, since we don't need to actually compile the
8555 example if we're just doing a plain 'make'. This avoids bothering
8556 the installer unnecessarily about problems due to weird C++
8557 compilers.
8558
fe6c2fde
PE
85592006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8560
8561 More portability fixes for problems summarized by Nelson H. F. Beebe.
8562
8563 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8564 than #include "...", and compile with -I'.'. The old method was
8565 not portable, according to Posix and the C standard, and it does
8566 not work with Sun C 5.7, where previous #line directives affect
8567 the working directory used in later #include "..." directives.
8568
927b425b
JMG
85692006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8570
8571 Various DJGGP specific issues in /djgpp
8572
d9735e9e
PE
85732006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8574
8575 More portability fixes for problems summarized by Nelson H. F. Beebe.
8576
8577 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8578 '#include <map>' works and that you can apply ++ to iterators.
8579
5a6755af
PE
85802006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8581
67a0dc4f
PE
8582 Work around portability problems summarized by Nelson H. F. Beebe in
8583 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8584
8c86f0ef
PE
8585 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8586 that '#include <string>' works.
8587
de35dd59
PE
8588 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8589 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8590 "warning: sorry: semantics of inline function static data `const
8591 unsigned char translate_table[262]' are wrong (you'll wind up with
8592 multiple copies)".
8593
67a0dc4f
PE
8594 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8595 or, xor to not_, and_, or_, and xor_, respectively. This works
8596 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8597 random system header somewhere that includes the equivalent of
8598 <iso646.h>.
8599
5a6755af
PE
8600 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8601 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 8602 Suite Version 2.0.
5a6755af 8603
3f001415
JD
86042006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8605
8606 During deterministic GLR operation, user actions should be able to
8607 influence the parse by changing yychar. To make this easier to fix and
8608 to make glr.c easier to evolve in general, don't maintain yytoken in
8609 parallel with yychar; just compute yytoken when needed.
8610 * tests/glr-regression.at (Incorrect lookahead during deterministic
8611 GLR): Check that setting yychar in a user action has the intended
8612 effect.
8613 * data/glr.c (yyGLRStack): Remove yytokenp member.
8614 (yyclearin): Don't set *yytokenp.
8615 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8616 yychar rather than *yytokenp to determine the current lookahead.
8617 Compute yytoken locally when needed.
8618 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8619 point to.
8620
8621 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8622 after `--report' documentation.
8623
e2a8c0f5
PE
86242006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8625
8626 * src/parse-gram.y (grammar_declaration): Location of printer
8627 symbol is @1, not list->location. Bug reported by twlevo.
8628 * tests/input.at (Incompatible Aliases): Adjust to above change.
8629
6b702268
PE
86302006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8631
27622431
PE
8632 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8633 all the test at once. This makes the output easier to read in the
8634 normal case.
8635
6b702268
PE
8636 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8637 got from <http://bro-ids.org/download.html>. The bug is that
8638 when two actions appeared in succession, the second one was
8639 scanned before the first one was added to the grammar rule
8640 as a midrule action. Bison then output the incorrect warning
8641 "parse.y:905.17-906.36: warning: unused value: $3".
8642 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8643 associated with a value.
8644 (rhs): Don't invoke grammar_current_rule_action_append.
8645 (action): Invoke it here instead.
8646 * src/reader.c (grammar_midrule_action): Now extern.
8647 (grammar_current_rule_action_append): Don't invoke
8648 grammar_midrule_action; that is now the scanner's job.
8649 * src/reader.h (last_string, last_braced_code_loc):
8650 (grammar_midrule_action): New decls.
8651 * src/scan-gram.l (last_string): Now extern, sigh.
8652 (last_braced_code_loc): New extern variable.
8653 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8654 rule already has an action.
8655 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8656 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8657 Add some tests to check that the above changes fixed the bug.
8658
d40ba6c2
PE
86592006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8660
8661 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8662 All used changed. Check whether the symbol has a destructor,
8663 not whether it is typed.
8664 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8665 that the values are still reported as unused. All line numbers
8666 adjusted.
8667
401aace6
PE
86682006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8669
8670 Work around a bug in bro 0.8, which underparenthesizes its
8671 definition of YYLLOC_DEFAULT.
8672 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8673 their arguments.
8674 * data/lalr1.cc: Likewise.
8675 * data/yacc.cc: Likewise.
8676
06f01bc4
PE
86772006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8678
401aace6
PE
8679 Work around a bug in Pike 7.0, and give the Pike folks a
8680 better way to override the usual int widths.
8681 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8682 user can override the types.
8683 (short): #undef, to work around a bug in Pike 7.0.
8684 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8685 (union yyalloc.yyss): Use yytype_int16 rather than short.
8686 All uses changed.
8687 (yysigned_char): Remove.
8688 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8689 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8690 * tests/regression.at (Web2c Actions): Adjust to above changes.
8691
8692 * src/reader.c (check_and_convert_grammar): New function.
8693 (reader): Close the input file even if something went wrong during
8694 parsing. Minor file descriptor leak reported by twlevo.
8695
06f01bc4
PE
8696 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8697 to pacify gcc -Wswitch-default.
8698 * src/scan-gram.l (adjust_location): Use a default: break; case
8699 to pacify gcc -Wswitch-default.
8700 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8701 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8702 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8703 Move these decls to scan-skel.l, since they don't need to be
8704 visible elsewhere.
8705 * src/scan-skel.l: Accept the above decls.
8706 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8707 is used.
8708
02650b7f
PE
87092006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8710
8711 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8712 since we don't want to insist on a version number at the start
8713 of the changelog every time.
8714 * Makefile.maint: Sync from coreutils a bit better.
8715 (sc_trailing_blank): Renamed from sc_trailing_space.
8716 All uses changed.
8717 (sc_no_if_have_config_h, sc_require_config_h):
8718 (sc_prohibit_assert_without_use): New rules.
8719 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8720 (sc_dd_max_sym_length): Fix leading spaces in rule.
8721 (sc_system_h_headers): Prefix with @.
8722 (sc_useless_cpp_parens, m4-check): Output line numbers.
8723 (changelog-check): Allow version only in head.
8724 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8725 satisfy new Makefile.maint rule.
8726 * data/glr.c: Likewise.
8727 * data/glr.cc: Likewise.
8728 * data/lalr1.cc: Likewise.
8729 * data/yacc.c: Likewise.
8730 * lib/ebitsetv.c: Likewise.
8731 * lib/lbitset.c: Likewise.
8732 * lib/subpipe.c: Likewise.
8733 * lib/timevar.c: Likewise.
8734 * src/system.h: Likewise.
8735 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8736 * djgpp/Makefile.maint: Add copyright notice.
8737 * djgpp/README.in: Likewise.
8738 * djgpp/config.bat: Likewise.
8739 * djgpp/config.site: Likewise.
8740 * djgpp/config_h.sed: Likewise.
8741 * djgpp/djunpack.bat: Likewise.
8742 * djgpp/config.sed: Fix copyright notice to match standard format.
8743 * djgpp/subpipe.h: Likewise.
8744 * lib/bitsetv-print.c: Likewise.
8745 * lib/bitsetv.c: Likewise.
8746 * lib/subpipe.h: Likewise.
8747 * lib/timevar.c: Likewise.
8748 * lib/timevar.h: Likewise.
8749 * djgpp/subpipe.c: Use standard recipe for config.h.
8750 * lib/abitset.c: Likewise.
8751 * lib/bitset.c: Likewise.
8752 * lib/bitset_stats.c: Likewise.
8753 * lib/bitsetv-print.c: Likewise.
8754 * lib/bitsetv.c: Likewise.
8755 * lib/ebitsetv.c: Likewise.
8756 * lib/get-errno.c: Likewise.
8757 * lib/lbitset.c: Likewise.
8758 * lib/subpipe.c: Likewise.
8759 * lib/timevar.c: Likewise.
8760 * lib/vbitset.c: Likewise.
8761 * tests/local.at: Likewise.
8762 * src/scan-gram.l: Don't include verify.h, since system.h does
8763 that for us.
8764 * .x-sc_require_config_h: New file.
8765 * .x-sc_unmarked_diagnostics: New file.
8766
287c78f6
PE
87672006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8768
287c78f6
PE
8769 Be a bit more systematic about using 'abort'.
8770 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8771 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8772 Put 'default: abort ();' before some other case, to satisfy older
8773 pedantic compilers.
8774 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8775 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8776 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8777 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
8778 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8779 (get_decision_str, get_orientation_str, get_node_alignment_str):
8780 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8781 (get_linestyle_str, get_arrowstyle_str): Likewise.
8782 * src/conflicts.c (resolve_sr_conflict):
8783 Use a default case rather than one for the one remaining enum
8784 value, to catch invalid enum values as well.
8785 * src/lalr.c (set_goto_map, map_goto):
8786 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8787 * src/nullable.c (nullable_compute, token_definitions_output):
8788 Likewise.
8789 * src/reader.c (packgram, reader): Likewise.
8790 * src/state.c (transitions_to, state_new, state_reduction_find):
8791 Likewise.
8792 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8793 (symbol_pack): Likewise.
8794 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
8795 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8796 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
8797 * src/system.h: Don't include <assert.h>.
8798 (assert): New macro.
8799
8800 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8801 (Destructor Decl, Parser Function, Pure Calling):
8802 Describe rules for braces inside C code more carefully.
287c78f6 8803
c66dfadd
PE
88042006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8805
c21493b8
PE
8806 Fix some porting glitches found by Nelson H. F. Beebe.
8807 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8808 compilers that don't understand that abort () does not return.
8809 * src/state.c (transitions_to): Likewise.
8810 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8811 that '#include <cstdlib>' works.
8812 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8813 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8814 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8815 for the benefit of some pre-C99 compilers.
8816
b6e3facf
PE
8817 * bootstrap: Undo changes to gnulib files that autoreconf made.
8818
c66dfadd
PE
8819 Minor fixups to get 'make maintainer-check' to work.
8820 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8821 with the new verify.h implementation.
8822 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8823 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8824 * data/yacc.c (YYUSE): Likewise.
8825 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8826 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8827 * src/parse-gram.y (declaration): Don't pass a string constant
8828 to a function that expects char *, since GCC might complain
8829 about the constant value.
8830 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8831 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8832 before #defining them.
8833 * tests/glr-regression.at
8834 (Incorrectly initialized location for empty right-hand side in GLR):
8835 In yyerror, use the msg arg.
8836 (Corrupted semantic options if user action cuts parse):
8837 (Incorrect lookahead during deterministic GLR):
8838 (Incorrect lookahead during nondeterministic GLR):
8839 Don't name a local var 'index'; it shadows string.h's 'index'.
8840
ed94ef2a
AD
88412006-01-19 Akim Demaille <akim@epita.fr>
8842
8843 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8844 location, not just parts of it.
8845
e9ad4aec
PE
88462006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8847
d6ca7905
PE
8848 * NEWS: Document the fact that multiple %unions are now allowed.
8849 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
8850 * TODO: This feature is now implemented, so remove it from
8851 the wishlist.
d6ca7905 8852
ef1b70e0
PE
8853 * Makefile.maint: Merge with coreutils Makefile.maint.
8854 (CVS_LIST): Use build-aux version if available.
8855 (VERSION_REGEXP): New macro.
8856 (syntax-check-rules): Add sc_no_if_have_config_h,
8857 sc_prohibit_assert_without_use, sc_require_config_h,
8858 sc_useless_cpp_parens.
8859 (sc_obsolete_symbols): Check for O_NDELAY.
8860 (sc_dd_max_sym_length): Track coreutils.
8861 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8862 (sc_useless_cpp_parens): New rule.
8863 (news-date-check): Look for version or today's date.
8864 (changelog-check): Don't require version number near head.
8865 (copyright-check): Use current year instead of hardwiring 2005.
8866 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8867 (announcement): Add --gpg-key-ID.
8868
8869 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8870 with "file system".
8871
2073ce56 8872 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
8873 array. Problem reported by twlevo.
8874 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8875 * src/lalr.c (build_relations): Rely on new sentinel.
8876 * src/gram.c (gram_free): Adjust to new sentinel.
8877
b7691f15
JD
88782006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8879
8880 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8881 yylookaheadNeeds. All uses updated.
8882 (yysplitStack): Rename local yynewLookaheadStatuses to
8883 yynewLookaheadNeeds.
8884 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8885 GLR): In comments, change `lookahead status' to `lookahead need'.
8886
ddee1b06
PH
88872006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8888
8889 * data/glr.c (yysplitStack): A little stylistic rewrite.
8890
12f4614d
PH
88912006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8892
8893 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8894
32c29292
JD
88952006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8896
8897 * doc/bison.texinfo: Fix some typos.
8898 (GLR Semantic Actions): New subsection discussing special
8899 considerations because GLR semantic actions might be deferred.
8900 (Actions): Mention look-ahead usage of yylval.
8901 (Actions and Locations): Mention look-ahead usage of yylloc.
8902 (Special Features for Use in Actions): Add YYEOF entry and mention it
8903 in the yychar entry.
8904 In the yychar entry, remove mention of the local yychar case (pure
8905 parser) since this is irrelevant information when writing semantic
148d66d8 8906 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
8907 yychar is otherwise described as an external variable.
8908 In the yychar entry, don't call it the `current' look-ahead since it
8909 isn't when semantic actions are deferred.
8910 In the yychar and yyclearin entries, add note about deferred semantic
8911 actions.
8912 Add yylloc and yylval entries discussing look-ahead usage.
8913 (Look-Ahead Tokens): When discussing yychar, don't call it the
8914 `current' look-ahead, and do mention yylval and yylloc.
8915 (Error Recovery): Cross-reference `Action Features' when mentioning
8916 yyclearin.
148d66d8 8917 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
8918 look-ahead.
8919 In the yylloc and yylval entries, mention look-ahead usage.
8920
de366a2f 89212006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
8922
8923 * tests/glr-regression.at: Update copyright year to 2006.
8924
bf70fa87
JD
89252006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8926
8927 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8928 use during nondeterministic operation to track which stacks have
8929 actually needed the current lookahead.
8930 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8931 Allocate, deallocate, resize, and otherwise shuffle space for
8932 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8933 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8934 appropriately during nondeterministic operation.
8935 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8936 members to store the current lookahead to be used by the deferred
8937 user action.
8938 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8939 from which the RHS is taken. Set the lookahead members of the new
8940 yySemanticOption according to the lookahead status for stack yyk.
8941 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8942 yyaddDeferredAction.
8943 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8944 members of yySemanticOption before invoking yyuserAction, and then set
8945 them back to their current values afterward.
8946 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8947 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8948 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8949 titles for consistency.
8950 (Leaked merged semantic value if user action cuts parse): In order to
8951 suppress lint warnings, use arguments in merge function, and assign
8952 char value < 128 in main.
8953 (Incorrect lookahead during deterministic GLR): New test case.
8954 (Incorrect lookahead during nondeterministic GLR): New test case.
8955
05449a2c
JD
89562006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8957
de366a2f 8958 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
8959 !yyvaluep as signal that no semantic value is available to print.
8960 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8961 to print a semantic value.
8962
4158e0a1 89632006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 8964
4158e0a1
JD
8965 * tests/glr-regression.at: For consistency with my newer test cases,
8966 don't thank myself.
8967
d659304d
JD
89682006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8969
8970 * data/glr.c (yyresolveValue): When merging semantic options, if at
8971 least one user action succeeds but a later one cuts the parse, then
8972 destroy the semantic value before returning rather than leaking it.
8973 (yyresolveStates): If a user action cuts the parse and thus
8974 yyresolveValue fails, ignore the (unset) semantic value rather than
8975 corrupting the yyGLRState, and empty the semantic options list since
8976 the user actions should have called all necessary destructors.
8977 Simplify code with YYCHK.
8978 * tests/glr-regression.at (Corrupted semantic options if user action
8979 cuts parse): New test case.
8980 (Undesirable destructors if user action cuts parse): New test case.
8981 Before applying any of this patch, this test case never actually failed
8982 for me... but only because the corrupted semantic options usually
8983 masked this bug.
8984 (Leaked merged semantic value if user action cuts parse): New test
8985 case.
8986
6ec2c0f2
AD
89872006-01-05 Akim Demaille <akim@epita.fr>
8988
8989 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8990
1b9c21fb
PE
89912006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8992
8993 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8994 _MSC_VER. Problem reported by Cenzato Marco.
8995 (b4_c_function_def): Use it.
8996 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8997 b4_c_modern.
8998 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8999 than rolling our own.
9000
84866159
AD
90012006-01-04 Akim Demaille <akim@epita.fr>
9002
9003 Also warn about non-used mid-rule values.
9004 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9005 member.
9006 (symbol_list_new): Adjust.
9007 * src/reader.c (symbol_typed_p): New.
9008 (grammar_rule_check): Use it.
9009 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9010 Check its rule.
9011 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9012 Use it.
9013 * tests/actions.at (Exotic Dollars): Adjust.
9014
378f4bd8
AD
90152006-01-04 Akim Demaille <akim@epita.fr>
9016
9017 * src/reader.c (grammar_midrule_action): If $$ is set in a
9018 mid-rule, move the `used' bit to its lhs.
9019 * tests/input.at (Unused values): New.
9020 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9021
e2a21b6f
PE
90222006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9023
54662697
PE
9024 * doc/bison.texinfo (Bison Options): Say more accurately what
9025 --yacc does.
9026 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9027 about declarations in the grammar when in Yacc mode, as POSIX does
9028 not require a diagnostic when the grammar uses extensions.
9029
9030 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9031
073f9288
PE
9032 Warn about dubious constructions like "%token T T".
9033 Reported by twlevo.
9034 * src/symtab.h (struct symbol.declared): New member.
9035 * src/symtab.c (symbol_new): Initialize it to false.
9036 (symbol_class_set): New arg DECLARING, specifying whether
9037 this is a declaration that we want to warn about, if there
9038 is more than one of them. All uses changed.
9039
1221b78a
PE
9040 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9041 Allow multiple %union directives, whose contents concatenate.
9042 * src/parse-gram.y (grammar_declaration): Likewise.
9043 Use muscle_code_grow, so that we don't need stype_line any more.
9044 All uses changed.
9045
9046 * src/muscle_tab.c (muscle_grow): Fix comment.
9047
e2a21b6f
PE
9048 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9049 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9050 Update copyright year to 2006.
9051
8f7e3cf9
AD
90522006-01-03 Akim Demaille <akim@epita.fr>
9053
9054 Have glr.cc pass (some of) the calc.at tests.
9055 * data/glr.cc (b4_parse_param_orig): New.
9056 (b4_parse_param): Improve its definition, and bound it more
9057 clearly in the skeleton.
9058 (b4_epilogue): Append, instead of prepending, in order to keep
9059 #line consistency.
9060 Simplify the generation of auxiliary functions: locations and
9061 purity are mandated.
9062 (b4_global_tokens_and_yystype): Honor it.
9063 * data/location.cc (c++.m4): Don't include it.
9064 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9065 and AT_SKEL_CC_IF.
9066 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9067 AT_LALR1_CC_IF.
9068 Be sure to initialize the first position's filename.
9069 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9070 mandated anyway.
9071 (AT_CHECK_CALC_GLR_CC): New.
9072 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9073
3953ed88
AD
90742006-01-02 Akim Demaille <akim@epita.fr>
9075
9076 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9077 c.m4.
0a96ba81 9078 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
9079 * data/glr.cc: Do not include stack.hh.
9080
9ecafbbf
AD
90812006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9082
9083 * data/glr.c: Reformat whitespace with tabs.
9084 (b4_lpure_formals): Remove this unused m4 macro.
9085 * tests/cxx-type.at: Reformat whitespace with tabs.
9086 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9087 since it's a member. Rename type to isNterm for clarity.
9088
c4d497a0
AD
90892005-12-29 Akim <akim@sulaco.local>
9090
9091 Let glr.cc catch up with symbol_value_print.
9092 * data/glr.cc (b4_yysymprint_generate): Replace by...
9093 (b4_yy_symbol_print_generate): this.
9094 (yy_symbol_print, yy_symbol_value_print): Declare them.
9095
4517da37
PE
90962005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9097
9098 * src/location.h (boundary): Note that a line or column equal
9099 to INT_MAX indicates an overflow.
9100 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9101 (rule_length_overflow, increment_rule_length, add_column_width):
9102 New functions.
9103 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9104 (<SC_BRACED_CODE>"}"):
9105 Use increment_rule_length rather than incrementing it by hand.
9106 (adjust_location, handle_syncline): Diagnose overflow.
9107 (handle_action_dollar, handle_action_at):
9108 Fix bug with monstrosities like $-2147483648.
9109 Remove now-unnecessary checks.
9110 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9111 (convert_ucn_to_byte): Verify assumptions.
9112 (handle_syncline): New arg LOC. All callers changed.
9113 Don't store through a value derived from char const * pointer.
9114
9115 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9116 GCC warnings.
9117
e3233bf6
PE
91182005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9119
9120 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9121 Remove unnecessary forward static decls.
9122
8f3596a6
AD
91232005-12-27 Akim Demaille <akim@epita.fr>
9124
9125 * src/reader.c (grammar_current_rule_check): Also check that $$
9126 is used.
9127 Take the rule to check as argument, hence rename as...
9128 (grammar_rule_check): this.
9129 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9130 Rename as...
9131 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9132 (grammar_midrule_action, grammar_symbol_append): Now static.
9133 * tests/torture.at (input): Don't rely on the default action
9134 being always performed.
9135 * tests/calc.at: "Set" $$ even when the action is "cut" with
9136 YYERROR or other.
9137 * tests/actions.at (Exotic Dollars): Instead of using unused
9138 values, check that the warning is issued.
9139
721be13c
PE
91402005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9141
9142 * NEWS: Improve wording for unused-value warnings.
9143
a0af42fc
AD
91442005-12-22 Akim Demaille <akim@epita.fr>
9145
9146 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9147 (b4_yysymprint_generate): Rename as...
9148 (b4_yy_symbol_print_generate): this.
9149 Generate yy_symbol_print instead of yysymprint.
9150 Generate also yy_symbol_value_print, and use it.
9151
affac613
AD
91522005-12-22 Akim Demaille <akim@epita.fr>
9153
721be13c 9154 * NEWS: Warn about unused values.
affac613
AD
9155 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9156 a `used' member.
9157 (symbol_list_n_get, symbol_list_n_used_set): New.
9158 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9159 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9160 * src/reader.c (grammar_current_rule_check): Check that values are
9161 used.
9162 * src/symtab.c (symbol_print): Accept 0.
9163 * tests/existing.at: Remove the type information.
9164 Empty the actions.
9165 Remove useless actions (beware of mid-rule actions: perl -000
9166 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9167 * tests/actions.at (Exotic Dollars): Use unused values.
9168 * tests/calc.at: Likewise.
9169 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9170 Likewise.
9171
9172 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9173 rule_useful_p.
9174
9d9b8b70
PE
91752005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9176
8bb4c753
PE
9177 Undo 2005-12-01 tentative license wording change. The wording is
9178 still being reviewed by the lawyers, and we don't want to wait for
9179 them before publishing a test release. For now, revert to the
9180 previous wording.
9181 * NEWS: Undo 2005-12-01 change.
9182 * data/glr.c: Revert to previous license wording.
9183 * data/glr.cc: Likewise.
9184 * data/lalr1.cc: Likewise.
9185 * data/location.cc: Likewise.
9186 * data/yacc.c: Likewise.
9187
9d9b8b70
PE
9188 * NEWS: Reword %destructor vs YYABORT etc.
9189 * data/glr.c: Use American spacing, for consistency.
9190 * data/glr.cc: Likewise.
9191 * data/lalr1.cc: Likewise.
9192 * data/yacc.c: Likewise.
9193 * data/yacc.c: Reformat comments slightly.
9194 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9195 for consistency. Fix some spelling errors and reword recently-included
9196 text slightly.
9197 * tests/cxx-type.at: Cast results of malloc, for C++.
9198
2c3b392a
AD
91992005-12-21 Joel E. Denny <address@hidden>
9200
9201 * tests/cxx-type.at: Construct a tree, count the parents of shared
9202 nodes, and free each node once and only once. Previously, the memory
9203 for semantic values was leaked instead.
9204
d6cff4dc
AD
92052005-12-21 Joel E. Denny <address@hidden>
9206
9207 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9208 (yylval, yylloc): If pure, #define to yystackp->yyval and
9209 yystackp->yyloc similar to yychar and yynerrs.
9210 (yyparse): If pure, remove local yylval and yylloc. Add local
9211 yystackp to accommodate pure definitions of yylval and yylloc.
9212 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9213 yylvalp and yyllocp to &yylval and &yylloc.
9214 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9215 namespace. Previously, nerrs and char were missing, but lval and lloc
9216 weren't necessary.
9217 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9218 yylvalp and yyllocp parameters since, if pure, these are now always
9219 accessible through yystackp. If not pure, they are still accessible
9220 globally.
9221 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9222 `if (YYID (N))' to pacify lint.
9223
a85284cf
AD
92242005-12-21 Akim Demaille <akim@epita.fr>
9225
9226 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9227 destroy the RHS symbols of a rule.
9228 * data/yacc.c (yylen): Initialize to 0.
9229 Keep its value to the number of items to possibly shift.
9230 In particular, a regular successful parse that ends on YYFINAL by
9231 a (internal) YYACCEPT must not have yylen != 0.
9232 (yyerrorlab, yyreturn): Pop the RHS.
9233 Reorder a bit to emphasize the `shifting' bits of code.
9234 (YYPOPSTACK): Now accept a number of items to pop.
9235 * data/lalr1.cc: Likewise.
9236 * data/glr.c: Formatting changes.
9237 Use goto instead of fall through.
9238 * doc/bison.texinfo (Destructor Decl): Complete.
9239
d508c281
JMG
92402005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9241
9242 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9243 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9244 * djgpp/config.bat: Replace every occurence of the file name
9245 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9246 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9247 * djgpp/config.sed: Replace every occurence of the file name
9248 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9249 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9250 * djgpp/djunpack.bat: DJGPP specific file.
9251 * djgpp/fnchange.lst: DJGPP specific file.
9252 * djgpp/README.in: Add new information about how to unpack the bison
9253 source on MSDOS and other systems which have 8.3 file name restrictions
9254 using djunpack.bat and fnchange.lst.
9255
3e7a2cd9
PE
92562005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9257
9258 * bootstrap (build_cvs_prefix): Remove; unused.
9259 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9260 when getting gnulib.
9261
92622005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9263
9264 * data/glr.c: Reorder typedef declarations for structs to match order
9265 of struct declarations.
9266 Rename yystack everywhere to yystackp except in yyparse where it's not
9267 a pointer.
9268 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9269 consistency.
9270 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9271 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9272 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9273 lint.
9274
877519f8
PE
92752005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9276
0eca5a39
PE
9277 * tests/sets.at (Accept): Fix typos in regular expression used to
9278 sed out the final state number.
9279
2cec9080
PE
9280 Work around portability problem on Solaris 10: flex-generated
9281 files include <stdio.h> before <config.h>, which messes up
9282 because the latter defines __EXTENSIONS__. Address the problem
9283 by creating two new little files that include <config.h> first,
9284 then include the flex-generated files. Rewrite everyone else
9285 to include <config.h> first, as well.
9286 * lib/timevar.c: Always include "config.h".
9287 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9288 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9289 (EXTRA_bison_SOURCES): New macro.
9290 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9291 * src/system.h: Don't include config.h.
9292 * src/LR0.c: Include <config.h> first.
9293 * src/assoc.c: Likewise.
9294 * src/closure.c: Likewise.
9295 * src/complain.c: Likewise.
9296 * src/conflicts.c: Likewise.
9297 * src/derives.c: Likewise.
9298 * src/files.c: Likewise.
9299 * src/getargs.c: Likewise.
9300 * src/gram.c: Likewise.
9301 * src/lalr.c: Likewise.
9302 * src/location.c: Likewise.
9303 * src/main.c: Likewise.
9304 * src/muscle_tab.c: Likewise.
9305 * src/nullable.c: Likewise.
9306 * src/output.c: Likewise.
9307 * src/parse-gram.y: Likewise.
9308 * src/print.c: Likewise.
9309 * src/print_graph.c: Likewise.
9310 * src/reader.c: Likewise.
9311 * src/reduce.c: Likewise.
9312 * src/relation.c: Likewise.
9313 * src/state.c: Likewise.
9314 * src/symlist.c: Likewise.
9315 * src/symtab.c: Likewise.
9316 * src/tables.c: Likewise.
9317 * src/uniqstr.c: Likewise.
9318 * src/vcg.c: Likewise.
9319
877519f8
PE
9320 * src/parse-gram.y: Fix minor problems uncovered by lint.
9321 (current_lhs, current_lhs_location): Now static.
9322 (current_assoc): Remove unused variable.
9323
9324 Cleanups so that Bison-generated parsers have less lint.
9325 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
9326 Prepend /*ARGSUSED*/, for lint's sake.
9327 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
9328 definition if 'lint' is defined.
9329 (YYID): New macro (or function, if lint).
9330 All uses of /*CONSTCOND*/0 replaced by YYID(0).
9331 * data/yacc.c: Likewise.
9332 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
9333 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
9334 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
9335 is C++ only.
9336 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
9337 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
9338 Use YYID(0) rather than 0, for lint.
9339 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
9340 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
9341
f5228370
PE
93422005-12-07 Paul Eggert <eggert@cs.ucla.edu>
9343
9344 * tests/glr-regression.at
9345 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9346 Close memory leak reported by twlevo.
9347
69ce078b
PE
93482005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
9349
6ff99711
PE
9350 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
9351 all stacks.
9352 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
9353 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9354 New test case.
9355 (Duplicated user destructor for lookahead): This test now is expected
9356 to succeed.
9357
af3412cd
PE
93582005-12-01 Paul Eggert <eggert@cs.ucla.edu>
9359
32b5b719 9360 * NEWS: Document the following change.
af3412cd
PE
9361 * data/yacc.c: Say "parser skeleton" rather than "file", since
9362 it's no longer just a file.
9363 * data/glr.c: Grant a special exception for C GLR parsers, that
9364 reads like the already-existing exception for C LALR(1) parsers.
9365 * data/glr.cc: Likewise.
9366 * data/lalr1.cc: Likewise.
9367 * data/location.cc: Likewise.
9368 * data/yacc.c: Reword the "written by" statement to clarify that
9369 it was the parser skeleton, not the entire output file.
9370 * data/glr.c: Written by Paul Hilfinger.
9371 * data/glr.cc: Written by Akim Demaille.
9372 * data/lalr1.cc: Likewise.
9373
035aa4a0
PE
93742005-11-18 Paul Eggert <eggert@cs.ucla.edu>
9375
d9963c85
PE
9376 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
9377 Fix typos in previous change that broke 'make check'.
9378 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
9379 supported in C.
9380 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
9381 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
9382 We can revert this once things settle down.
9383
035aa4a0
PE
9384 * src/conflicts.c (conflicts_print): Don't print file name twice
9385 when %expect fails because there were no conflicts.
9386 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
9387 change.
9388 * tests/conflicts.at (%expect not enough, %expect too much):
9389 (%expect with reduce conflicts): Adjust to new behavior.
9390
93912005-11-18 Akim Demaille <akim@epita.fr>
9392
9393 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
9394 errors.
9395 * NEWS: Document this.
9396 * doc/bison.texinfo (Expect Decl): Likewise.
9397
d1ff7a7c
AD
93982005-11-16 Akim Demaille <akim@epita.fr>
9399
9400 Generalize the display of semantic values and locations in traces.
9401 * data/glr.c (yy_reduce_print): Fix indices (again).
9402 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9403 literal integers.
9404 * data/lalr1.cc (yyreduce_print): Rename as...
9405 (yy_reduce_print): this.
9406 Display values and locations.
9407 * data/yacc.c (yy_reduce_print): Likewise.
9408 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9409 (yysymprint): Move higher to be visible from yy_reduce_print).
9410 (yyparse): Adjust.
9411 * tests/calc.at: Adjust the expected length of the traces.
9412
6de5398d
AD
94132005-11-14 Akim Demaille <akim@epita.fr>
9414
9415 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9416 from 1 to N, while values and location start at 0.
9417 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9418
a1373f55
AD
94192005-11-14 Akim Demaille <akim@epita.fr>
9420
9421 * data/glr.c (yy_reduce_print): Fix the $ number.
9422
613d8952
AD
94232005-11-14 Akim Demaille <akim@epita.fr>
9424
9425 "Use" parse parameters.
9426 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9427 * data/glr.c, data/glr.cc: Use them.
9428 * data/glr.c (YYUSE): Have a C++ definition that supports
9429 non-pointer types.
9430
b2741627
AD
94312005-11-14 Akim Demaille <akim@epita.fr>
9432
9433 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9434
5059b5c8
AD
94352005-11-14 Akim Demaille <akim@epita.fr>
9436
42249483
AD
9437 * data/glr.cc: New.
9438 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 9439
4626a15d
AD
94402005-11-12 Akim Demaille <akim@epita.fr>
9441
9442 Let position and location be PODs.
9443 * data/location.cc (position::initialize, location::initialize): New.
9444 (position::position, location::location): Define only if
9445 b4_location_constructors is defined.
9446 * data/lalr1.cc (b4_location_constructors): Define it for backward
9447 compatibility.
9448 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9449
94502005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
9451
9452 * data/lalr1.cc: Move the body of the ctor and dtor into the
9453 parser file (instead of the header).
9454 Wrap the implementations in a "namespace yy".
9455
94562005-11-12 Akim Demaille <akim@epita.fr>
9457
9458 Have glr.c include its header file when created.
9459 * data/glr.c (b4_shared_declarations): New.
9460 Output them verbatim in the parser if !%defines, otherwise
9461 output then in the header file, and include it instead.
9462
1989d947
AD
94632005-11-11 Akim Demaille <akim@epita.fr>
9464
9465 * data/glr.c: Comment changes.
9466
94672005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
9468
9469 When yydebug, report semantic and location values for reductions.
9470 * data/glr.c (yy_reduce_print): Report the semantic values and the
9471 locations.
9472 (YY_REDUCE_PRINT): Adjust.
9473 (yyglrReduce): Use them.
9474 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9475 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9476 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9477 traces.
9478
02998094
AD
94792005-11-10 Akim Demaille <akim@epita.fr>
9480
9481 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9482 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9483 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9484
5210672f
PE
94852005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9486
9487 * m4/cxx.m4, examples/Makefile.am: Don't build
9488 examples/calc++ if no C++ compiler is available. (trivial change)
9489
a8991a1d
AD
94902005-11-09 Akim Demaille <akim@epita.fr>
9491
9492 * src/scan-skel.l: Use a couple of asserts.
9493
36b5e963
AD
94942005-11-03 Akim Demaille <akim@epita.fr>
9495
9496 In some (weird) cases, the final state number is incorrect.
9497 Reported by Alexandre Duret-Lutz.
9498 * src/LR0.c (state_list_append): Remove the computation of
9499 final_state.
9500 (save_reductions): Do it here.
9501 (get_state): Alpha conversion.
9502 (generate_states): Use a for loop.
9503 * src/gram.h (item_number_is_rule_number)
9504 (item_number_is_symbol_number): New.
9505 * src/state.c: Use assert.
9506 * src/system.h: Include assert.h.
9507 * tests/sets.at (Accept): New.
9508
44e7ead1
PH
95092005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9510
9511 * data/glr.c (yyfill): Adjust comment.
36b5e963 9512 (yyresolveAction): Initialize default location properly
44e7ead1
PH
9513 for empty right-hand sides.
9514 (yydoAction): Ditto.
9515 Add comment explaining apparently dead code.
36b5e963
AD
9516 * tests/glr-regression.at
9517 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 9518 New test.
36b5e963 9519
e10a80ee
PE
95202005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9521
9522 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9523 gnulib when interrupted. This fixes some race conditions and
9524 works around some portability problems (one noted by Paul
9525 Hilfinger).
9526
067b32ee
AD
95272005-10-22 Akim <akim@epita.fr>
9528
9529 * Makefile.cfg: Adjust to config -> build-aux.
9530 Reported by twledo.
9531
4b367315
AD
95322005-10-21 Akim Demaille <akim@epita.fr>
9533
9534 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9535 the %parse-params.
9536 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9537 * data/yacc.c (b4_Pure_if): Rename as...
9538 (b4_yacc_pure_if): this.
9539 (YY_SYMBOL_PRINT, yyparse): Adjust.
9540 * doc/bison.texinfo: Formatting changes.
9541
24cc23d9
AD
95422005-10-21 Akim Demaille <akim@epita.fr>
9543
9544 Finish the transition config -> build-aux.
9545 * configure.ac, Makefile.am: Use build-aux.
9546 * config/prev-version, config/announce-gen, config/Makefile.am:
9547 Move to...
9548 * build-aux/prev-version, build-aux/announce-gen,
9549 * build-aux/Makefile.am: here.
9550
d4476375
AD
95512005-10-14 Akim Demaille <akim@epita.fr>
9552
9553 * examples/calc++/test: Use set -x only when VERBOSE.
9554
302c0aee
PE
95552005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9556
9557 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9558 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9559
7625ec2c
AD
95602005-10-13 Akim Demaille <akim@epita.fr>
9561
9562 * src/scan-skel.l: Output the base name parts of the parser and
9563 header file names.
302c0aee 9564 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
9565 additional checks.
9566 Use this to exercise C++ outputs in subdirs.
9567 Reported by Oleg Smolsky.
9568
ba0fe3c7
PE
95692005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9570
9571 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9572 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9573 Problem reported by John P. Hartmann.
9574 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9575 already defined it.
9576
9b8a5ce0
AD
95772005-10-12 Akim Demaille <akim@epita.fr>
9578
9579 * src/parse-gram.y (version_check): Exit 63 to please missing
9580 (stands for "version mismatch).
9581 * tests/input.at, doc/bison.texinfo: Adjust.
9582
4f6e011e
PE
95832005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9584
9585 Work around portability problems with Visual Age C compiler
9586 (xlc and xlC_r) reported by John P. Hartmann.
9587 * data/location.cc (initial_column, initial_line): Remove.
9588 All uses replaced by 0 and 1.
9589 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9590 that xlc complains about.
9591 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 9592 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 9593 as __STDC__.
4d7aa45e
PE
9594 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9595 __STDC_VERSION__. Use it everywhere instead of looking at
9596 __STDC__ and __cplusplus.
4f6e011e 9597
a1b3bf8c
AD
95982005-10-10 Akim Demaille <akim@epita.fr>
9599
9600 * examples/calc++/test: Be quiet unless VERBOSE.
9601
412e44aa
PE
96022005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9603
2a4647a3
PE
9604 * data/c.m4 (yydestruct, yysymprint):
9605 Use YYUSE instead of casting to void.
9606 * data/glr.c (YYUSE): New macro.
9607 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9608 Use it instead of rolling our own.
9609 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9610 (YYCHK1):
9611 Use /*CONSTCOND*/ to suppress lint warnings.
9612 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9613 (YY_STACK_PRINT): Use 'false' not '0'.
9614 (YYUSE): New macro.
9615 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9616 * data/yacc.c (YYUSE): New macro.
9617 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9618 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9619 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9620
9621
412e44aa
PE
9622 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9623 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9624
88c6637f
PE
96252005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9626
2f4f028d
PE
9627 Undo the parts of the unlocked-I/O change that substituted
9628 putc or puts for printf. This might hurt performance a bit,
9629 but some people prefer the printf style.
9630 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9631 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9632 All uses replaced by YYFPRINTF and YYDPRINTF.
9633 * data/yacc.c: Likewise.
9634 * lib/bitset.c (bitset_print): Likewise.
9635 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9636 putc and puts.
9637 * lib/lbitset.c (debug_lbitset): Likewise.
9638 * src/closure.c (print_firsts, print_fderives): Likewise.
9639 * src/gram.c (grammar_dump): Likewise.
9640 * src/lalr.c (look_ahead_tokens_print): Likewise.
9641 * src/output.c (escaped_output): Likewise.
9642 (user_actions_output): Break apart two printfs.
9643 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9644 * src/reduce.c (reduce_print): Likewise.
9645 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9646 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9647
88c6637f
PE
9648 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9649 Use assignments rather than casts-to-void to suppress
9650 unused-variable warnings. This pacifies 'lint'.
9651 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9652 unused-variable warnings.
9653
fb32e373
JMG
96542005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9655
9656 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9657
edb8f44f
PE
96582005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9659
fb9c0b33
PE
9660 Use unlocked I/O for a minor performance improvement on hosts like
9661 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9662 is to use the gnlib unlocked-io module, and to prefer putc and
9663 puts to printf when either will work (since the latter doesn't
9664 come in an unlocked flavor).
9665 * bootstrap (gnulib_modules): Add unlocked-io.
9666 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9667 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9668 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9669 and similarly for puts and putc and printf.
9670 * data/yacc.c: Likewise.
9671 * lib/bitset.c (bitset_print): Likewise.
9672 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9673 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9674 to printf.
9675 * lib/lbitset.c (debug_lbitset): Likewise.
9676 * src/closure.c (print_firsts, print_fderives): Likewise.
9677 * src/gram.c (grammar_dump): Likewise.
9678 * src/lalr.c (look_ahead_tokens_print): Likewise.
9679 * src/output.c (escaped_output): Likewise.
9680 (user_actions_output): Coalesce two printfs.
2f4f028d 9681 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
9682 * src/reduce.c (reduce_print): Likewise.
9683 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 9684 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 9685
edb8f44f
PE
9686 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9687 this confuses xgettext.
9688
b50d2359
AD
96892005-10-02 Akim Demaille <akim@epita.fr>
9690
9691 * bootstrap (gnulib_modules): Add strverscmp.
9692 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9693 * m4/.cvsignore: Add strverscmp.m4.
9694 * src/parse-gram.y (%require): New token, new rule.
9695 (version_check): New.
9696 * src/scan-gram.l (%require): Adjust.
9697 * tests/input.at (AT_REQUIRE): New.
9698 Use it.
9699 * doc/bison.texinfo (Require Decl): New.
9700 (Calc++ Parser): Use %require.
9701
21667f64
AD
97022005-10-02 Akim Demaille <akim@epita.fr>
9703
9704 * data/location.cc: New.
9705
2b81e969
AD
97062005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9707 Akim Demaille <akim@epita.fr>
9708
9709 Make sure -odir/foo.cc creates dir/location.hh etc.
9710 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9711 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9712 (spec_defines_file): Now const.
9713 (dir_prefix): New.
9714 (short_base_name): Remove.
9715 * src/files.c: Adjust.
9716 (dirname.h): Include.
9717 (base_name): Don't prototype it.
9718 (finput): Remove, duplicates gram_in.
9719 (full_base_name, short_base_name): Replace by...
9720 (all_but_ext, all_but_tab_ext): these.
9721 (compute_base_names): Rename as...
9722 (compute_file_name_parts): this.
9723 Update to compute the new variables, including dir_prefix.
9724 Adjust dependencies.
9725 * src/output.c (prepare): Output them.
9726 * src/reader.c: Adjust to use gram_in, not finput.
9727 * src/scan-skel.l (@dir_prefix@): New.
9728
ad6a9b97
JMG
97292005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9730
9731 * lib/subpipe.c: New function end_of_output_subpipe() added
9732 to allow support for non-posix systems. This is a no-op function
9733 for posix systems.
9734
9735 * lib/subpipe.h: New function end_of_output_subpipe() added
9736 to allow support for non-posix systems. This is a no-op function
9737 for posix systems.
9738
9739 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9740 handle the lack of pipe/fork functionality on non-posix systems.
9741
9742 * djgpp/Makefile.maint: DJGPP specific file.
9743
9744 * djgpp/README.in: DJGPP specific file.
9745
9746 * djgpp/config.bat: DJGPP specific configuration file.
9747
9748 * djgpp/config.sed: DJGPP specific configuration file.
9749
9750 * djgpp/config.site: DJGPP specific configuration file.
9751
9752 * djgpp/config_h.sed: DJGPP specific configuration file.
9753
9754 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9755
9756 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9757
fc695704
AD
97582005-10-02 Akim Demaille <akim@epita.fr>
9759
9760 * data/location.cc: New, extract from...
9761 * data/lalr1.cc: here.
9762 (location.hh): Include it after the user prologue, in case the
9763 filename type is defined by the user.
9764 Forward declation location and position before the pre-prologue.
9765 (yyresult_): Rename as...
9766 (yyresult): this, it's a local variable, not an attribute.
9767 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9768
97692005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
9770
9771 * examples/extexi: Restore the #line generation.
9772
fb9712a9
AD
97732005-09-30 Akim Demaille <akim@epita.fr>,
9774 Alexandre Duret-Lutz <adl@gnu.org>
9775
9776 Move the token type and YYSTYPE in the parser class.
9777 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9778 (parser::token): New, from the moved free definition of tokens.
9779 (parser::semantic_value): Now a full definition instead of an
9780 indirection to YYSTYPE.
9781 (b4_post_prologue): No longer included in the header file, but
9782 in the implementation file.
9783 * doc/bison.texi (C+ Language Interface): Update.
9784 * src/parse-gram.y: Support unary %define.
9785 * tests/actions.at: Define global_tokens_and_yystype for backward
9786 compatibility until we update the tests.
9787 * tests/calc.at: Idem.
9788 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9789 to simplify the code.
9790
55f0c7b1
PE
97912005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9792
9793 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9794 Ah, the good old days! Problem reported by Peter Klein.
9795 * bootstrap (gnulib_modules): Add strerror, strtoul.
9796 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9797 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9798
fb9712a9 97992005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
9800
9801 * data/c.m4 (b4_error_verbose_if): New.
9802 * data/lalr1.cc: Use it.
9803 (YYERROR_VERBOSE_IF): Remove.
9804 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9805 parser members, replaced by...
9806 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9807 local variables.
9808 (yysyntax_error_): Takes the state number as argument.
9809 (yyreduce_print_): Use the argument yyrule, not the former
9810 attribute yyn_.
9811
8a6f72f3
PE
98122005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9813
9814 * bootstrap (gnulib_modules): Add verify.
9815 * lib/.cvsignore: Add verify.h.
9816 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9817 * src/system.h (verify): Remove.
9818 Include verify.h instead.
9819 * src/tables.c (tables_generate): Use new API for 'verify'.
9820
0d50976f
PE
98212005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9822
ebc3737e
PE
9823 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9824 local variables whose names begin with 'yy'.
9825 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9826 Trivial changes from Joel E. Denny.
9827
0d50976f
PE
9828 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9829 it itself.
9830 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9831 don't use alloca any more.
9832
9833 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9834 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 9835 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
9836 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9837 to match yacc.c, to test more hosts.
9838
a05b79df
PE
98392005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9840
55289366
PE
9841 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9842 doesn't affect behavior.
9843 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9844 Solaris, AIX, MSC.
9845 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9846 This works a bit better with glibc, if user code has already included
9847 stdlib.h.
9848 * doc/bison.texinfo (Bison Parser): Document that users can't
9849 arbitrarily use malloc and free for other purposes. Document
9850 that <alloca.h> and <malloc.h> might be included.
9851 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9852 user must declare alloca.
9853
a05b79df
PE
9854 * HACKING (release): Forwarn the Translation Project about
9855 stable releses.
9856
3ab2ca22
AD
98572005-09-20 Akim Demaille <akim@epita.fr>
9858
9859 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9860
a9739e7c
PE
98612005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9862
a702593e
PE
9863 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9864 (YYSTACK_ALLOC_MAXIMUM): Use it.
9865 (yysyntax_error): New function.
9866 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9867 multiple syntax errors are reported, and alloca is being used.
9868 Instead, reallocate buffers twice as big each time, so that
9869 we waste at most half the allocated memory. Start with a small
9870 (128-byte) buffer that will suffice in most cases anyway.
9871 Use yysyntax_error to do most of the work.
9872
9873 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9874 yynerrs is the number of errors reported, not the number of
9875 errors encountered.
9876
a9739e7c
PE
9877 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9878 Mark it as expected to fail.
9879 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9880 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9881 Don't start user-code symbols with "yy", to avoid name space problems.
9882
f479c6c6
AD
98832005-09-19 Akim Demaille <akim@epita.fr>
9884
9885 Remove the traits, failed experiment.
9886 It never proved useful, and anyway because of the current
9887 definition, it was not possible to have several specialization of
9888 this traits, making it useless.
9889 * data/lalr1.cc (yy:traits): Remove.
9890 Inline its definitions in the parser class.
9891
e2586f82
AD
98922005-09-19 Akim Demaille <akim@epita.fr>
9893
9894 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9895 least Mac OSX with a /usr/local install of gettext.
9896
2e8cf949
AD
98972005-09-19 Akim Demaille <akim@epita.fr>
9898
9899 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9900 and yytoken for similarity with the other skeletons.
9901
c7fb0b90
AD
99022005-09-19 Akim Demaille <akim@epita.fr>
9903
4e26c69e 9904 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 9905
1bd0deda
PE
99062005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9907
9908 * NEWS: Version 2.1.
9909
9910 * NEWS: Remove notice of yytname change, since it was never in an
9911 official release.
9912 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9913 diagnostic.
9914 * src/output.c (prepare): Likewise.
9915 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9916 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9917 is not defined. This is an awful hack, but it's enough for now.
9918 All callers changed.
9919 * tests/glr-regression-at (make_value): Args are const pointers now,
9920 to avoid GCC warning.
9921 (Duplicated user destructor for lookahead): New test. Currently
9922 skipped. It fails on my host but I'm not sure it'll always fail.
9923
99242005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
9925
9926 * src/symtab.h (struct symbol): Declare the printer and destructor
9927 as const, to avoid accidental calls to free.
9928 (symbol_destructor_set, symbol_printer_set): Adjust.
9929 * src/symtab.c: Adjust.
9930
1bd0deda 99312005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
9932
9933 * data/c.m4 (b4_token_enums): New.
9934 (b4_token_defines): Rename as...
9935 (b4_token_enums_defines): this.
9936 (b4_token_defines): New, output only the #defines.
9937 * data/yacc.c, data/glr.c: Adjust.
9938 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9939 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9940 as default values.
9941
dbcdae2d
AD
99422005-09-16 Akim Demaille <akim@epita.fr>
9943
9944 * data/lalr1.cc (yylex_): Remove, inline its code.
9945 (yyreport_syntax_error_): Remove, replaced by...
9946 (yysyntax_error_): this which returns a string and leaves to the
9947 caller the call to the users' error function.
9948 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9949 Move from members of the parser object...
9950 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9951 to local variables of the parse function.
9952
70d8f291
AD
99532005-09-16 Akim Demaille <akim@epita.fr>
9954
9955 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9956 since it's in Bison's name space.
9957
b47dbebe
PE
99582005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9959
ae199bf1
PE
9960 * data/glr.c (yyresolveValue): Add default case to pacify
9961 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9962
b47dbebe
PE
9963 * NEWS: Document when yyparse started to return 2.
9964 * doc/bison.texinfo (Parser Function): Document when yyparse
9965 returns 2.
9966
9967 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9968 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9969 changed.
9970 (class position): file_name -> filename (reverting). All uses changed.
9971
99722005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9973
9974 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9975 do anything if $@ exists. This reverts part of the 2005-07-07
9976 patch.
9977
00292f66
PE
99782005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9979
9980 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9981 contains obsolete information and isn't worth distributing as a
9982 separate file anyway.
9983 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9984 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9985 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9986 (yyparse): Abort if user code uses longjmp to throw an unexpected
9987 value.
9988
a420f962
PE
99892005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9990
00292f66
PE
9991 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9992 Suggested by twlevo@xs4all.nl.
9993
127287e9
PE
9994 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9995 This avoids a diagnostic from gcc -Wswitch-enum.
9996 Problem reported by twlevo@xs4all.nl.
9997
a420f962
PE
9998 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9999 standards. Use "file name" or "file" or "name", depending on
10000 the context.
10001 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10002 not to hack/foo.tab.c.
10003 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
10004 * data/glr.c: b4_filename -> b4_file_name.
10005 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10006 All uses changed.
10007 (class position): filename -> file_name. All uses changed.
10008 * data/yacc.c: b4_filename -> b4_file_name.
10009 * lib/bitset.h: filename -> file_name in local vars.
10010 * lib/bitset_stats.c: Likewise.
10011 * src/files.c: Likewise.
10012 * src/scan-skel.l ("@output ".*\n): Likewise.
10013 * src/files.c (file_name_split): Renamed from filename_split.
10014 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
10015
100162005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10017
10018 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10019 to accommodate latest gnulib.
10020
10021 * tests/glr-regression.at (Duplicate representation of merged trees):
10022 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10023
10024 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10025 needed.
10026
42a6501d
PE
100272005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10028
10029 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10030 All uses changed. Invoke user destructor after an error during a
10031 split parse (trivial change from Joel E. Denny).
10032
10033 * tests/glr-regression.at
10034 (User destructor after an error during a split parse): New test case.
10035 Problem reported by Joel E. Denny in:
10036 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10037
ef9a1faf
PE
100382005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10039
5b4aaf78
PE
10040 * README-cvs: Give URLs for recommended tools.
10041 Mention Gzip version problem, and bootstrapping issues.
10042 Remove troubleshooting section, as it's somewhat obsolete.
10043
b5240ba5
PE
10044 * bootstrap (no_cache): New var, to accommodate different wget
10045 variants. Use it instead of '-C off'. Problem reported by
10046 twlevo@xs4all.nl.
10047
ef9a1faf
PE
10048 * data/glr.c (yydestroyStackItem): New function.
10049 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10050 debugging information. Problem reported by Joel E. Denny.
10051
e6efa9da
AD
100522005-08-25 Akim Demaille <akim@epita.fr>
10053
10054 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10055
adc90f13
PE
100562005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10057
10058 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10059 Don't invoke destructor on unresolved entries.
10060 * tests/glr-regression.at
10061 (User destructor for unresolved GLR semantic value): New test case.
10062 Problem reported by Joel E. Denny in:
10063 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10064
f9315de5
PE
100652005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10066
15d29c1f
PE
10067 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10068 Add strnlen.c.
10069 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10070 lib-prefix.m4, po.m4.
10071
dd5f2af2
PE
10072 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10073 in yydestruct diagnostic, since it might not be an error.
10074 Problem reported by Joel Denny near end of
10075 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 10076 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
10077 * data/yacc.c (yyreturn): Likewise.
10078 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10079
10080 * src/files.c: Remove obsolete FIXME comment.
10081
10082 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10083 with the other templates, and to fix bogus run-on messages such
10084 as the one reported at the end of
10085 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10086 All callers changed to avoid the newline.
10087 (yyprocessOneStack): Output two lines rather than one, to accommodate
10088 the above change. This changes the debug output format slightly.
10089
f9315de5
PE
10090 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10091 reported by Joel E. Denny in
10092 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10093 (trivial change).
10094 * tests/glr-regression.at (Duplicate representation of merged trees):
10095 New test, from Joel E. Denny in:
10096 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10097 * THANKS: Add Joel E. Denny.
10098
10099 * configure.ac (AC_INIT): Bump to 2.0c.
10100
04098407
PE
101012005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10102
10103 * NEWS: Version 2.0b.
10104
ca5d2013
PE
10105 * Makefile.am (SUBDIRS): Put examples before tests, so that
10106 "make check" doesn't finish with "All 1 tests passed".
10107
3d54b576
PE
10108 * tests/regression.at (Token definitions): Don't rely on
10109 AT_PARSER_CHECK for data that contains backslashes. It currently
10110 uses 'echo', and 'echo' isn't portable if its argument contains
10111 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10112 that the byte '\0xff' is not printable in the C locale; it is,
10113 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10114 not printable, so use '\0x81' to test.
10115
d53ae497
PE
10116 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10117 version of GCC, since the macro is used with non-GCC compilers.
10118
fc01665e
PE
10119 Fix core dump reported by Pablo De Napoli in
10120 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10121 * tests/regression.at (Invalid inputs with {}): New test.
10122 * src/parse-gram.y (token_name): Translate type before using
10123 it as an index.
10124
04098407
PE
10125 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10126 the user's name space. All uses changed to __attribute__
10127 ((__unused__)).
10128 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10129 Add __attribute__ ((__noreturn__)).
10130
10131 * etc/clcommit: Remove. We weren't using it, and it failed
10132 "make maintainer-distcheck".
10133 * Makefile.maint: Merge from coreutils.
10134 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10135 (syntax-check-rules): Change list of rules as described below.
10136 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10137 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10138 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10139 (sc_trailing_space): New rules.
10140 (sc_xalloc_h_in_src): Remove.
10141 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10142 (sc_space_tab, sc_error_exit_success, sc_changelog):
10143 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10144 (makefile-check, po-check, author_mark_check):
10145 (makefile_path_separator_check, copyright-check):
10146 Use grep -n, to make it easier to find violations.
10147 Use CVS_LIST and CVS_LIST_EXCEPT.
10148 (header_regexp, h_re): Remove.
10149 (dd_c): New macro.
10150 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10151 (my-distcheck): Use more-modern GCC flags.
10152 (signatures, %.asc): Remove.
10153 (rel-files, announcement): Remove signatures.
10154 Restore old updating code, even though we don't use it, so
10155 that we're the same as coreutils.
10156 (alpha, beta, major): Depend on news-date-check.
10157 Make the upload commands.
10158
10159 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10160 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10161 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10162 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10163 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10164 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10165 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10166 * tests/sets.at: Likewise.
10167
10168 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10169 we comment out the Autoconf version number.
10170 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10171 it's error-prone and "make maintainer-distcheck" rejects it.
10172
10173 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10174 Indent calls to "error" to pacify "make maintainer-distcheck",
10175 when the calls are not intended to be translated.
10176 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10177
10178 * src/Makefile.am (DEFS): Use +=, to pacify
10179 "make maintainer-distcheck".
10180 (bison_SOURCES): Add scan-skel.h.
10181 (sc_tight_scope): New rule, from coreutils.
10182
10183 * src/files.c (src_extension, header_extension):
10184 Now static, not extern.
10185 * src/getargs.c (short_options): Likewise.
10186 * src/muscle_tab.c (muscle_table): Likewise.
10187 * src/parse-gram.y (current_class, current_type, current_prec):
10188 Likewise.
10189 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10190 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10191 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10192 void, to avoid warning when NLS is disabled.
10193 * src/output.c: Include scan-skel.h.
10194 (scan_skel): Remove decl, since scan-skel.h does this.
10195 (output_skeleton):
10196 Indent calls to "error" to pacify "make maintainer-distcheck".
10197 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10198 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10199 "make maintainer-distcheck".
10200 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10201 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10202 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10203 (skel_lex_destroy, scan_skel): Move these decls to...
10204 * src/scan-skel.h: New file.
10205 * src/uniqstr.c (uniqstr_assert):
10206 Indent calls to "error" to pacify "make maintainer-distcheck".
10207
10208 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10209 not @VAR@.
10210
10211 * tests/torture.at: Revamp to avoid misuse of atoi that
10212 "make maintainer-distcheck" complained about.
10213
10214 * examples/extexi (message): Don't print a message more than once,
10215 and omit line-number decoration that makes Emacs compile think
10216 that informative messages are worth worrying about.
10217
102182005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10219
10220 * configure.ac: Update version number.
10221
10222 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10223 accidentally.
10224 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10225 autogenerated by the maintainer.
10226 * examples/calc++/.cvsignore: Add *.yy.
10227
10228 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10229 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10230 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10231
10232 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10233
10234 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10235 from maintainer-distcheck about casting the argument of 'free'.
10236
10237 * NEWS: Mention recent yytname changes.
10238 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10239
10240 * bootstrap: For translations that have not yet been upgraded to
10241 the new runtime-po domain, prime the pump by extracting the
10242 relevant strings from the obsolete translations. This code can be
10243 removed once the bison-runtime domain has been translated by each
10244 team.
10245
10246 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10247 now that token names are already quoted.
10248
10249 Fix problem reported by Anthony Heading.
10250 * data/glr.c (YYTOKEN_TABLE): New macro.
10251 (yytname): Define if YYTOKEN_TABLE.
10252 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10253 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10254 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10255 * src/output.c (prepare_symbols): Output token_table_flag.
10256
0ffda363
PE
102572005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10258
10259 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10260 again if the first call fails.
10261
10262 * data/glr.c (yytnamerr): New function.
10263 (yyreportSyntaxError): Use it to dequote most string literals.
10264 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10265 with other skeletons. All uses changed.
10266 (yytnameerr_): New function.
10267 (yyreport_syntax_error): Use it to dequote most string literals.
10268 * data/yacc.c (yytnamerr): New function.
10269 (yyerrlab): Use it to decode most string literals.
10270 * doc/bison.texinfo (Decl Summary, Calling Convention):
10271 Clarify quoting convention of yytname.
10272 * src/output.c (prepare_symbols): Quote all names. This undoes
10273 the 2005-04-17 change, which is now accomplished (mostly) via
10274 changes in the parsers as described above.
10275 * tests/regression.at (Token definitions, Web2c Actions):
10276 Undo most 2005-04-17 change here, too.
10277
102782005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10279
10280 Fix more problems reported by twlevo@xs4all.nl.
10281 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10282 remove trailing spaces. This loses the exit status of ./types,
10283 and isn't needed since ./types shouldn't be emitting trailing
10284 spaces.
10285 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10286 as the stack isn't valid in that case.
10287
10288 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10289 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10290 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10291 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10292 is used.
10293 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10294 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10295 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10296 Likewise.
10297
10298 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10299 overly-picky compilers that reject 'char *foo = "bar";'.
10300
10301 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10302 to FILE * parameter, not to stderr. This fixes a typo introduced
10303 in the 2005-07-12 change.
10304
10305 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10306 warnings from GCC 4.
10307
10308 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10309 (yyglrShiftDefer, yysplitStack):
10310 Remove unused parameters b4_pure_formals. All uses changed.
10311 (yyglrShift): Remove unused parameters b4_user_formals.
10312 All uses changed.
10313 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10314
6100a9aa
PE
103152005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10316
258b75ca
PE
10317 Destructor cleanups and regularization among the three skeletons.
10318 * NEWS: Document the behavior changes.
10319 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
10320 stack before failing, as the cleanup code will do it for us now.
10321 * data/lalr1.cc (yyerrlab): Likewise.
10322 * data/glr.c (yyparse): Pop everything off the stack before
10323 freeing it, so that destructors get called properly.
10324 * data/lalr1.cc (yyreturn): Likewise.
10325 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
10326 This is more consistent.
10327 * doc/bison.texinfo (Destructor Decl): Mention more reasons
10328 why destructors might be called. 1.875 -> 2.1.
10329 (Destructor Decl, Decl Summary, Table of Symbols):
10330 Some English-language cleanups for %destructor.
10331 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10332 Add output line for destructor of start symbol.
10333 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
10334 because of that same extra output line.
10335
1a059451
PE
10336 * NEWS: Document minor wording changes in diagnostics of
10337 Bison-generated parsers.
10338 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
10339 Remove unused formals. All uses changed.
10340 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
10341 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
10342 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
10343 Rename yyoverflowab to yyexhaustedlab.
10344 When memory exhaustion occurs during syntax-error reporting,
10345 report it separately rather than in a single diagnostic; this
10346 eases translation.
10347 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
10348 (Memory Exhausted): Renamed from Parser Stack Overflow.
10349 Revamp wording slightly to prefer "memory exhaustion".
10350 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
10351
97460c78
PE
10352 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
10353
30757c8c
PE
10354 Add i18n support to the GLR skeleton. Partially fix the C++
10355 skeleton; a C++ expert needs to finish this. Remove debugging
10356 msgids; there's little point to having them translated, since they
10357 can be understood only by someone who can read the
10358 (English-language) source code.
10359
10360 Generate runtime-po/bison-runtime.pot automatically, so that we
10361 don't have to worry about garbage getting in that file. We'll
10362 make sure after the next official release that old msgids don't
10363 get lost. See
10364 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
10365
10366 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
10367 Now auto-generated.
10368 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
10369 Fix typos in explanations of the runtime file.
10370 * bootstrap: Change gettext keyword from YYI18N to YY_.
10371 Use standard Makefile.in.in in runtime-po, since we'll arrange
10372 for backward-compatible bison-runtime.po files in a different way.
10373 * data/glr.c (YY_): New macro, from yacc.c.
10374 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
10375 Translate messages intended for users.
10376 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
10377 the wording in the other skeletons. We don't know that the memory
10378 is virtual.
10379 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
10380 Use same method that yacc.c uses.
10381 Don't translate debugging messages.
10382 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
10383 it doesn't work (yet), and requires C++ expertise to fix.
10384 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
10385 Move defn to a more logical place, to be consistent with other
10386 skeletons.
10387 Don't translate debugging messages.
10388 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
10389 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
10390 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
10391 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
10392
ac8c5689
PE
10393 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
10394 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
10395 void, not int.
10396 * tests/glr-regression.at (Badly Collapsed GLR States):
10397 Likewise.
10398 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10399 yylex should return 0 at EOF rather than aborting.
10400
6100a9aa
PE
10401 Improve tests for stack overflow in GLR parser.
10402 Problem reported by twlevo@xs4all.nl.
10403 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10404 All uses removed.
10405 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10406 can handle the problem.
10407 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10408 (yyparse): New local variable yyresult to record the result.
10409 Use result of setjmp to set it, rather than storing itinto
10410 struct.
10411 (yyDone): Remove label.
10412 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10413 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10414 if YYABORT is used).
10415 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10416 yyparse status; put status > 1 into diagnostic.
10417 Check that status==2 works.
10418 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10419 Use exit status 3 for failure to open (which shouldn't happen).
10420
15f40952
PE
104212005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10422
67fd79c4
PE
10423 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10424 1 on syntax error; just let yyparse do its thing.
10425 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10426 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10427 (Exploding the Stack Size with Alloca):
10428 (Exploding the Stack Size with Malloc):
10429 Expect exit status 2, not 1, since the parser is supposed to blow
10430 its stack. Problem reported by twlevo@xs4all.nl.
10431
15f40952
PE
10432 * data/glr.c (yyparse): Don't assume that the initial calls
10433 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10434 Print a stack-overflow message and fail instead.
10435 Initialize the line-number information before creating the stack,
10436 so that the stack-overflow message can report line zero safely.
10437
f32c66b5
PE
104382005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10439
a22ff96f 10440 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
10441 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10442 (yyuserMerge): Provide a default case if b4_mergers is empty.
10443 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10444 * tests/glr-regression.at
10445 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 10446 Add casts to pacify C++ compilers.
1beb0b24
PE
10447 * tests/glr-regression.at (Improper merging of GLR delayed action
10448 sets): Declare yylex before using it.
f32c66b5 10449 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
10450 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10451 test for valgrind; valgrind is independent of g++.
10452 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10453 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10454 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10455 Use a destructor, so that we can expand the stack. Change
10456 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 10457
d741bd1b
PE
104582005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10459
10460 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10461 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10462
0410a6e0
PE
104632005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10464
10465 * PACKAGING: New file, suggested by Bruno Haible and taken from
10466 similar wording in gettext's PACKAGING file.
10467 * NEWS: Mention PACKAGING.
10468 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10469
f7ab6a50
PE
104702005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10471
baf785db 10472 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
10473 * bootstrap: Get runtime translations into runtime-po.
10474 Create runtime-po files automatically, if possible.
10475 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10476 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10477 does not infringe on the user's name space.
10478 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10479 * doc/bison.texinfo (Internationalization): Revamp the English
10480 and Texinfo syntax a bit, to try to make it clearer.
10481 (Bison Options, Option Cross Key): Mention --print-localedir.
10482 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10483 YYENABLE_NLS. Quote a bit more.
10484 * runtime-po/.cvsignore: New file.
10485 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10486 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10487 * runtime-po/quot.sed: Likewise.
10488 * runtime-po/boldquot.sed: Likewise.
10489 * runtime-po/en@quot.header: Likewise.
10490 * runtime-po/en@boldquot.header: Likewise.
10491 * runtime-po/insert-header.sin: Likewise.
10492 * runtime-po/remove-potcdate.sin: Likewise.
10493 * runtime-po/Makevars: Likewise.
10494 * runtime-po/LINGUAS: Likewise.
10495 * runtime-po/de.po: Likewise; we will rely on the translation project
10496 to maintain this, so "bootstrap" should get it.
0410a6e0 10497 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
10498 its value.
10499 * src/main.c (main): Bind the bison-runtime domain, too.
10500
105012005-07-12 Bruno Haible <bruno@clisp.org>
10502
10503 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10504 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10505 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10506 * runtime-po: New directory.
10507 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10508 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10509 * runtime-po/Rules-quot: New file, copied from po/.
10510 * runtime-po/quot.sed: Likewise.
10511 * runtime-po/boldquot.sed: Likewise.
10512 * runtime-po/en@quot.header: Likewise.
10513 * runtime-po/en@boldquot.header: Likewise.
10514 * runtime-po/insert-header.sin: Likewise.
10515 * runtime-po/remove-potcdate.sin: Likewise.
10516 * runtime-po/Makevars: New file.
10517 * runtime-po/POTFILES.in: New file.
10518 * runtime-po/LINGUAS: New file.
10519 * runtime-po/bison-runtime.pot: New file.
10520 * runtime-po/de.po: New file.
10521 * m4/bison.m4: New file.
10522 * Makefile.am (SUBDIRS): Add runtime-po.
10523 (aclocaldir, aclocal_DATA): New variables.
10524 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10525 Define aclocaldir.
10526 * src/getargs.c (usage): Document --print-localedir option.
10527 (PRINT_LOCALEDIR_OPTION): New enum item.
10528 (long_options): Add --print-localedir option.
10529 (getargs): Handle --print-localedir option.
10530 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10531 (Internationalization): New section.
10532
22dda0f0
AD
105332005-07-12 Akim Demaille <akim@epita.fr>
10534
10535 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10536 for consistency with the rest of the code.
10537 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10538 Add separators.
10539
82b248ad
AD
105402005-07-12 Akim Demaille <akim@epita.fr>
10541
10542 * src/parse-gram.y: Use %printer instead of YYPRINT.
10543
fa0e9314
AD
105442005-07-12 Akim Demaille <akim@epita.fr>
10545
867a3e00
AD
10546 * src/symtab.h, src/symtab.c (symbol_print): New.
10547 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10548 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10549
105502005-07-12 Akim Demaille <akim@epita.fr>
10551
10552 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
10553 b4_at_dollar and b4_dollar_dollar.
10554
e054b190
PE
105552005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10556
10557 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10558 and Pennello's paper.
10559
34160ec4
PE
105602005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10561
407d4a75
PE
10562 * data/yacc.c (yyparse): Undo previous patch. Instead,
10563 set yylsp[0] and yyvsp[0] only if the initial action
10564 sets yylloc and yylval, respectively.
10565
34160ec4
PE
10566 * data/yacc.c (yyparse): In the initial action, set
10567 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10568 This avoids the use of undefined variables if the initial
10569 action does not set yylloc and/or yylval.
10570
c3d5a4a7
PE
105712005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10572
b34d96c1
PE
10573 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10574 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10575 Remove from CVS. These files are automatically generated.
10576 * examples/extexi: Clarify that this file is now part of Bison,
10577 not GNU M4, and that it works with any POSIX-compatible Awk.
10578 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10579 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10580 so that we also get calc++-parser.yy. Geneate it.
10581 Use $(AWK), not gawk, since any conforming Awk will do.
10582 Put comment before action, since older 'make' can't handle comment
10583 in action.
10584 $(BUILT_SOURCES): List all built sources, not just some of them.
10585 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10586 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10587 $($(calc_sources_generated)): Remove unnecessary test for existence
10588 of target. (This had a shell syntax error anyway; a stray "x".)
10589 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10590 calc++-parser.yy.
10591 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10592
c3d5a4a7
PE
10593 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10594 implied by the other modules.
10595
828c373b
AD
105962005-07-06 Akim Demaille <akim@epita.fr>
10597
10598 Bind examples/calc++ to the package.
10599 * examples/calc++/Makefile: Remove, replaced by...
10600 * examples/calc++/Makefile.am: ... this new file.
10601 * examples/calc++/test: Remove input.
10602 * examples/calc++/compile: Remove.
10603 * examples/Makefile.am: New.
10604 * configure.ac, Makefile.am: Adjust.
10605 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10606
63cb01d6
PE
106072005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10608
fd2df2ed
PE
10609 * data/glr.c (yyFail): Drastically simplify; since the format argument
10610 never had any % directives, we can simply pass it to yyerror.
10611 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10612 be modified later, as that is the usual style in glr.c.
10613 Problems reported by Paul Hilfinger.
10614
63cb01d6
PE
10615 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10616 and size overflow errors.
10617 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10618 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10619 (YYSIZEMAX): New macro.
10620 (yystpcpy): New function, taken from yacc.c.
10621 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10622 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10623 so that we don't have to maintain their signatures.
10624 (yyFail): Check for buffer overflow, by using vsnprintf rather
10625 than vsprintf. Allocate a bigger buffer if possible.
10626 Report an error if buffer allocation fails.
10627 (yyStackOverflow): New function.
10628 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10629 the initialization was successful. It might fail if storage was
10630 exhausted.
10631 (yyexpandGLRStack): Add more checks for storage allocation failure.
10632 Use yyStackOverflow to report failures.
10633 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10634 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10635 Don't assume stack number fits in int.
10636 (yysplitStack): Check for storage allocation failure.
10637 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10638 can print diagnostics on storage allocation failure. All callers
10639 changed.
10640 (yyresolveValue): Use yybool for boolean.
10641 (yyreportSyntaxError): Check for size-calculation overflow.
10642 This code is taken from yacc.c.
10643 (yyparse): Check for storage allocation errors when allocating
10644 the initial stack.
10645
1c59e0a1
AD
106462005-07-05 Akim Demaille <akim@epita.fr>
10647
10648 Extract calc++ from the documentation.
10649 * doc/bison.texinfo (Calc++): Add the extraction marks.
10650 * examples/extexi: New, from the aborted GNU Programming 2E.
10651 Separate the different paragraph of a file with empty lines.
10652 * examples/Makefile: Use it to extract the whole calc++ example.
10653
8a0adb01
AD
106542005-06-24 Akim Demaille <akim@epita.fr>
10655
10656 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10657 class typedefs.
10658
12545799
AD
106592005-06-22 Akim Demaille <akim@epita.fr>
10660
10661 * doc/bison.texinfo (C++ Language Interface): First stab.
10662 (C++ Parsers): Remove.
10663
99be0235
AD
106642005-06-22 Akim Demaille <akim@epita.fr>
10665
10666 * data/lalr1.cc (yylex_): Honor %lex-param.
10667
0ffd4fd1
AD
106682005-06-22 Akim Demaille <akim@epita.fr>
10669
10670 Start a set of simple examples.
10671 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10672 * examples/calc++/calc++-driver.hh,
10673 * examples/calc++/calc++-parser.yy,
10674 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10675 * examples/calc++/compile, examples/calc++/test: New.
10676
0925ebb4
PE
106772005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10678
10679 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10680 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10681 which stems from the 2005-05-27 patch.
10682
43d3b664
PH
106832005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10684
10685 * data/glr.c: Modify treatment of unused parameters to permit use
10686 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10687
3062864d
PE
106882005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10689
10690 Fix infringement on user name space reported by Janos Zoltan Szabo.
10691 * data/yacc.c (yyparse): strlen -> yystrlen.
10692
989b5b8e
AD
106932005-05-30 Akim Demaille <akim@epita.fr>
10694
10695 * data/lalr1.cc (_): New.
10696 Translate the various messages.
10697
bedf57f5
PE
106982005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10699
10700 Fix infringement on user name space reported by Bruno Haible.
10701 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10702 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10703 the user's name space.
10704 (alloca): Include <stdlib.h> to get it, if it's not built in.
10705 (YYMALLOC, YYFREE): Define only if needed.
10706 (malloc, free): Declare, but only if needed, as this infringes on
10707 the user name space.
10708
4d1801f1
PE
107092005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10710
10711 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10712 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10713 with %d format.
10714 * lib/ebitset.c (min, max): Undef before defining.
10715 * lib/vbitset.c (min, max): Likewise.
10716 * lib/subpipe.c (create_subpipe): Save local variables in case
10717 vfork clobbers them.
10718
107192005-05-24 Bruno Haible <bruno@clisp.org>
10720
10721 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10722 error message syntax used by gcc-4.0.
10723
b94a9e1e
PE
107242005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10725
85ac3861
PE
10726 * README: Mention m4 1.4.3. Remove obsolete advice about
10727 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10728
b94a9e1e
PE
10729 * bootstrap: Remove workaround for problem I encountered with
10730 gettext 0.14.1; it seems to be fixed now.
10731
51c30d21
PE
107322005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10733
009ce67d
PE
10734 * NEWS: Version 2.0a.
10735
f2a97c62
PE
10736 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10737 the previous change.
10738
c8775f93
PE
10739 Various maintainer cleanups.
10740 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10741 conftest*, for benefit of CVS commands run at the same time as
10742 "configure". Add build-aux, since "bootstrap" now creates it and
10743 its subfiles.
10744 * Makefile.cfg (move_if_change): Remove.
10745 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10746 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10747 (po_repo, do-po-update, po-update, wget_files, get-targets):
10748 (config.guess-url_prefix, config.sub-url_prefix):
10749 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10750 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10751 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10752 Remove.
10753 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10754 this is now the recommended name.
10755 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10756 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10757 ylwrap. These files now go into build-aux.
10758 * config/move-if-change: Remove.
10759 * config/prev-version.txt: Bump from 1.75 to 2.0.
10760
3ea5f0ec
PE
10761 * bootstrap: Add stdio-safer, unistd-safer modules.
10762 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10763 we don't need it).
10764 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10765 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10766 * lib/subpipe.c: Include "unistd-safer.h".
10767 (create_subpipe): Make sure all the newly-created
10768 file descriptors are > 2, so that diagnostics don't
10769 get sent down them (which might cause Bison to hang, in theory).
10770 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10771 * src/files.c (xfopen): Use fopen_safer, not fopen.
10772
51c30d21
PE
10773 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10774 yesterday's yacc.c fix.
10775
cea1469d
PE
107762005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10777
3ea5f0ec
PE
10778 * data/glr.c, data/lalr1.cc: Update copyright date.
10779
cea1469d
PE
10780 Fix a destructor bug reported by Wolfgang Spraul in
10781 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10782 * data/yacc.c (yyabortlab): Don't call destructor, and
10783 don't set yychar to EMPTY.
10784 (yyoverflowlab): Don't call destructor.
10785 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10786 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10787 since we no longer output the message "discarding lookahead token
10788 end of input ()".
10789
5e6f62f2
PH
107902005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10791
10792 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10793 fix a small glitch in debugging output.
10794 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10795 after YY_SYMBOL_PRINT where needed.
10796
10797 (struct yyGLRState): Add some comments.
10798 (struct yySemanticOption): Add some comments.
10799 (union yyGLRStackItem): Add comment.
10800
10801 (yymergeOptionSets): Correct this to properly perform the union,
10802 avoiding infinite reported by Michael Rosien.
10803 Update comment.
10804
10805 * tests/glr-regression.at: Add test for GLR merging error reported
10806 by M. Rosien.
cea1469d 10807
0fb669f9
PE
108082005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10809
10810 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10811 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10812 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10813 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10814 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10815 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10816 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10817 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10818 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10819 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10820 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10821 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10822 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10823 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10824 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10825 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10826 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10827 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10828 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10829 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10830 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10831 src/output.h, src/parse-gram.c, src/parse-gram.h,
10832 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10833 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10834 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10835 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10836 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10837 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10838 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10839 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10840 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10841 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10842 tests/reduce.at, tests/regression.at, tests/sets.at,
10843 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10844 Update FSF postal mail address.
10845
51f4735e
PE
108462005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10847
10848 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10849 Problem reported by Ralf Menzel.
10850
80ce3401
PE
108512005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10852
10853 * tests/actions.at: Test that stack overflow invokes destructors.
10854 From Marcus Holland-Moritz.
10855 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10856 from here....
10857 (yyreturn): to here. That way, destructors are called properly
10858 even if the stack overflows, or the user calls YYACCEPT or
10859 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10860 (yyoverflowlab): Destroy the lookahead.
10861
108622005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10863
10864 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10865
72f000b0
PE
108662005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10867
10868 * NEWS: Bison-generated C parsers no longer quote literal strings
10869 associated with tokens.
10870 * src/output.c (prepare_symbols): Don't escape strings,
10871 since users don't want to see C escapes.
10872 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10873 in diagnostics.
c19683bb 10874 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
10875 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10876
1094323f
PE
108772005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10878
10879 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10880 the data size is known to be too small and we can't increase it.
10881 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10882
ca407bdf
PE
108832005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10884
10885 * src/parse-gram.y: Include quotearg.h.
10886 (string_as_id): Quote $1 before using it as a key, since the
10887 lexer no longer quotes it for us.
10888 (string_content): Don't strip quotes, since lexer no longer
10889 quotes it for us.
10890 * src/scan-gram.l: Include quotearg.h.
10891 ("\""): Omit quote.
10892 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10893 a key, since the rest of the lexer doesn't quote it.
10894 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10895 * tests/regression.at (Token definitions): Check for backslashes
10896 in token strings.
10897
10898 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10899 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10900 (yyparse): Revamp code to generate long syntax error message, to
10901 make it easier to translate, and to avoid problems with arithmetic
10902 overflow. Change "virtual memory" to "memory" in diagnostic, since
10903 we don't know whether the memory is virtual.
10904
1ce59070
PE
109052005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10906
10907 * NEWS: Bison-generated C parsers now use the _ macro to
10908 translate strings.
10909 * data/yacc.c (_) [!defined _]: New macro.
10910 All English strings wrapped inside this macro.
10911 * doc/bison.texinfo (Bison Parser): Document _.
10912 * po/POTFILES.in: Include src/parse-gram.c, since it now
10913 includes translateable strings that parse-gram.y doesn't.
10914
a749a695
PE
109152005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10916
10917 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10918 reverting the 2004-10-11 change to this function.
10919 (symbol_check_alias_consistency): Don't call symbol_type_set
10920 if the type name is already correct.
10921 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10922
8fb1053b
PE
109232005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10924
10925 * tests/regression.at (Token definitions): Don't use a token named
10926 c, as that generates a "#define c ..." that runs afoul of buggy
10927 stdlib.h that uses the identifier c as a member of struct
10928 drand48_data. Problem reported by Horst Wente.
10929
ff498c4a
PE
109302005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10931
10932 * bootstrap: Change translation URL from
10933 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10934 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10935 redirection glitches. Problem reported by twlevo@xs4all.nl.
10936
65211d70
PE
109372005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10938
10939 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10940 after operands; POSIX says this isn't portable for the c99 command.
10941
9577fb1f
PE
109422005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10943
10944 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10945 immediately if a data overrun has occurred; this may help us track
10946 down what may be a spurious failure on MacOS.
10947
78b178f7
PE
109482005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10949
a2599d0f
PE
10950 Respond to problems reported by twlevo@xs4all.nl.
10951
10952 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10953
78b178f7
PE
10954 * src/vcg.h: Comment fix.
10955 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10956 (G_CMAX): Change to -1 instead of INT_MAX.
10957
10958 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 10959
7296e729
PE
109602005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10961
10962 * src/tables.c (state_number_to_vector_number): Put it inside an
10963 "#if 0", since it's not currently used. Problem reported by
10964 Roland McGrath.
10965
05ac60f3
PE
109662005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10967
10968 * src/output.c (escaped_output): Renamed from
10969 escaped_file_name_output, since we now use it for symbol tags as
10970 well. All uses changed.
10971 (symbol_destructors_output, symbol_printers_output):
10972 Escape symbol tags too.
10973 Problem reported by Matyas Forstner in
10974 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10975
10976 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10977 not needed.
10978 * src/output.c (user_actions_output, token_definitions_output,
10979 symbol_destructors_output, symbol_printers_output): Likewise.
10980 * src/reader.c (prologue_augment): Likewise.
10981 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10982
10983 * src/vcg.c (output_edge): Don't quote linestyle arg.
10984 Problem reported by twlevo@xs4all.nl.
10985
7eb453ac
PE
109862005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10987
10988 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10989 example, reported by Derek M Jones. Also, make the example even
10990 more outrageous, to better illustrate how bad the problem is.
10991
4c04c52a
PE
109922005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10993
10994 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10995 putsym. Typo reported by Sebastian Piping.
10996
a61e1620
PE
109972005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10998
10999 * doc/bison.texinfo (Language and Grammar): some -> same
11000 (Epilogue): int he -> in the
11001 Typos reported by Sebastian Piping via Justin Pence.
11002
9ec93868
PE
110032005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11004
11005 * tests/glr-regression.at (Improper handling of embedded actions
11006 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11007 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11008 with dollar signs in test names.
11009 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11010 for a similar reason.
11011
73ce7e7e
PE
110122005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11013
11014 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11015 wants to redefine G_VIEW.
11016
2e72b98e
PE
110172005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11018
11019 * src/vcg.c (get_view_str): Remove case for normal_view.
11020 Problem reported by twlevo@xs4all.nl.
11021
e0d634e5
PE
110222005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11023
ccf830a4
PE
11024 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11025 Problem reported by twlevo@xs4all.nl.
11026
e0d634e5
PE
11027 * doc/bison.texinfo: Change @dircategory from "GNU programming
11028 tools" to "Software development". Requested by Richard Stallman
11029 via Karl Berry.
11030
7bbc8cb0
PE
110312005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11032
11033 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11034 Problem reported by twlevo@xs4all.nl.
11035
08b770bc
PE
110362005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11037
11038 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11039 keyword; it's not needed with modern compilers, and it doesn't
11040 affect correctness with older compilers. Suggested by
11041 twlevo@xs4all.nl.
11042
95f22ad2
PE
110432005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11044
11045 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11046 gcc -Wswitch-default.
11047 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11048 * data/yacc.c (yyparse): Likewise.
11049
d229d15c
PE
110502005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11051
11052 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11053 already. Let config.h define any nonstandard values.
11054
ecadd90f
PE
110552005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11056
11057 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11058 for the benefit of slower hosts. Problem reported by
11059 Nelson H. F. Beebe.
11060
213744b5
PE
110612005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11062
11063 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11064 being defined and not used.
11065 * data/lalr1.cc (yyparse): Likewise.
11066 Use "if (false)" rather than "if (0)".
11067
249d3236
PE
110682005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11069
11070 * TODO: Mention that we should allow NUL bytes in tokens.
11071
987cc1fb
PE
110722005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11073
11074 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11075 Problem reported by Hans Aberg.
11076
08fe02d9
PE
110772005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11078
11079 * src/getargs.c (version): Happy new year; update overall
11080 program copyright date from 2004 to 2005.
11081
11082 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11083 Problem reported by Hans Aberg.
11084 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11085 (Output file names.): Add a test for the case when standard output
11086 is closed.
11087
010c0266
PE
110882004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11089
11090 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11091 to fix an oversight in the Bison 2.0 manual.
11092
da12206a
PE
110932004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11094
11095 * NEWS: Version 2.0. Reformat the existing news items since
11096 1.875, so that related items are grouped together.
3a4734aa 11097 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
11098 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11099
c935d934
PE
11100 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11101 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11102 otherwise, we're not testing alloca. Unfortunately there's no
11103 simple way to consult HAVE_ALLOCA here.
11104
da12206a
PE
11105 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11106 for yymsg, too.
11107
11108 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11109 hand. This avoids a warning about comparing int to size_t when
11110 GCC warnings are enabled.
11111
0a2c5137
PE
111122004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11113
d7e14fc0
PE
11114 * NEWS: Bison-generated parsers no longer default to using the
11115 alloca function (when available) to extend the parser stack, due
11116 to widespread problems in unchecked stack-overflow detection.
11117 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11118 responsibility to set it to a positive value. This lets the user
11119 specify a value that is not a preprocessor constant.
11120 * data/yacc.c (YYMAXDEPTH): Likewise.
11121 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11122 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11123 to be a compile-time constant. However, explain the constraints on it.
11124 Also, explain the constraints on YYINITDEPTH.
11125 (Table of Symbols): Explain that alloca is no longer the default.
11126 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11127 to 1.
11128
0a2c5137
PE
11129 * doc/bison.texinfo (Location Default Action): Mention that n must
11130 be zero when k is zero. Suggested by Frank Heckenbach.
11131
e019c247
AD
111322004-12-22 Akim Demaille <akim@epita.fr>
11133
11134 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11135 (parser::state_type, parser::semantic_type, parser::location_type):
11136 Private, not public.
11137 (parser::parse): Return ints, not bool.
11138 Returning a bool introduces a problem: 0 corresponds to false, and
11139 it seems weird to return false on success. Returning true changes
11140 the conventions for yyparse.
11141 Alternatively we could return void and send an exception.
11142 There is no clear consensus (yet?).
11143 (state_stack, semantic_stack, location_stack): Rename as...
11144 (state_stack_type, semantic_stack_type, location_stack_type): these.
11145 Private, not public.
11146 * tests/c++.at: New.
11147 * tests/testsuite.at, tests/Makefile.am: Adjust.
11148
72731bb7
AD
111492004-12-21 Akim Demaille <akim@epita.fr>
11150
11151 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11152
9a0d8bec
AD
111532004-12-21 Akim Demaille <akim@epita.fr>
11154
11155 Don't impose std::string for filenames.
11156
11157 * data/lalr1.cc (b4_filename_type): New.
11158 (position::filename): Use it.
11159 (parser.hh): Move the inclusion of stack.hh and location.hh below
11160 the user code, so that needed headers for the filename type can be
11161 included first.
72731bb7
AD
11162 Forward declare them before the user code.
11163 * tests/Makefile.am (check-local, installcheck-local): Pass
11164 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 11165
99880de5
AD
111662004-12-20 Akim Demaille <akim@epita.fr>
11167
11168 Use more STL like names: my_class instead of MyClass.
11169
11170 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11171 (SemanticStack, SemanticType, StateStack, StateType)
11172 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11173 (Parser::value): Rename as...
11174 (location_stack, location_type, rhs_number_type, semantic_stack)
11175 (semantic_type, state_stack, state_type, token_number_type, stack)
11176 (slice, traits, parser::yylloc, parser::yylval): these.
11177
11178 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11179
9bec482e
PE
111802004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11181
11182 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11183 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11184
f6fbd3da
PE
111852004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11186
11187 Remove uses of 'short int' and 'unsigned short int'. This raises
11188 some arbitrary limits. It uses more memory but nowadays that's
11189 not much of an issue.
11190
11191 This change does not affect the generated parsers; that's a different
11192 task, as some users will want to conserve memory there.
11193
11194 Ideally we should use size_t to represent all object counts, and
11195 something like ptrdiff_t to represent signed differences of object
11196 counts; but that will require more code-cleanup than I have the
11197 time to do right now.
11198
11199 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11200 Use size_t, not int or short int, to count objects.
11201 * src/closure.c (nritemset, closure): Likewise.
11202 * src/closure.h (nritemset, closure): Likewise.
11203 * src/nullable.c (nullable_compute): Likewise.
11204 * src/print.c (print_core): Likewise.
11205 * src/print_graph.c (print_core): Likewise.
11206 * src/state.c (state_compare, state_hash): Likewise.
11207 * src/state.h (struct state): Likewise.
11208 * src/tables.c (default_goto, goto_actions): Likewise.
11209
11210 * src/gram.h (rule_number, rule): Use int, not short int.
11211 * src/output.c (prepare_rules): Likewise.
11212 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11213 errs, reductions): Likewise.
11214 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11215 Likewise.
11216 * src/tables.c (vector_number, tally, action_number,
11217 ACTION_NUMBER_MINIMUM): Likewise.
11218 * src/output.c (muscle_insert_short_int_table): Remove.
11219
efeed023
AD
112202004-12-17 Akim Demaille <akim@epita.fr>
11221
11222 * data/lalr1.cc: Extensive Doxygenation.
11223 (error_): Rename as...
11224 (error): this, since it is visible to the user.
11225 Adjust callers.
11226 (Parser::message): Now an automatic variable from...
11227 (Parser::yyreport_syntax_error_): here.
11228 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11229 Parser::error.
11230 * tests/input.at: Escape $.
11231
bc82c5a5
PE
112322004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11233
11234 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11235 Parenthesize rhs to avoid obscure problems with mistakes like
11236 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11237 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11238 b4_rhs_location): Likewise.
11239 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11240 b4_rhs_location): Likewise.
11241
fd19f271
AD
112422004-12-16 Akim Demaille <akim@epita.fr>
11243
11244 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11245 yacc.c: be sure to stay within yycheck_.
11246 * tests/actions.at: Re-enable C++ tests.
11247
10454ea4
AD
112482004-12-16 Akim Demaille <akim@epita.fr>
11249
11250 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11251 real.
11252
c5b95ccf
AD
112532004-12-16 Akim Demaille <akim@epita.fr>
11254
11255 Use #define to handle the %name-prefix.
11256
11257 * data/glr.c, data/yacc.c: Comment changes.
11258 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11259 so that one can refer to yylex in the parser file, and have it
11260 renamed, as is the case with other skeletons.
11261
617a8f12
AD
112622004-12-16 Akim Demaille <akim@epita.fr>
11263
11264 Move lalr1.cc internals into yy*.
11265
11266 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11267 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11268 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11269 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11270 (empty_, final_, terror_, errcode_, ntokens_)
11271 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11272 (looka_, ilooka_, error_range_, nerrs_):
11273 Rename as...
11274 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11275 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11276 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11277 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11278 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11279 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11280 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11281 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11282 these.
11283
1e547e6e
PE
112842004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11285
11286 Fix some problems reported by twlevo at xs4all.
11287 * src/symtab.c (symbol_new): Report an error if the input grammar
11288 contains too many symbols. This is better than calling abort() later.
11289 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11290 (struct node, struct graph):
11291 Rename member expand to stretch. All uses changed.
11292 (struct graph): Remove member layoutalgorithm. All uses removed.
11293 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11294 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11295 All uses changed.
11296 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11297
735d6bd4
AD
112982004-12-15 Akim Demaille <akim@epita.fr>
11299
11300 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11301 Add more Doxygen comments.
11302 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11303 (report_syntax_error_, translate_): Rename as...
11304 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11305 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11306
2e1f5829
AD
113072004-12-15 Akim Demaille <akim@epita.fr>
11308
11309 * data/lalr1.cc (lex_): Rename as...
11310 (yylex_): this.
11311 Move the trace here.
11312 Take the %name-prefix into account.
11313 Reported by Alexandre Duret-Lutz.
11314
a3cb6248
AD
113152004-12-15 Akim Demaille <akim@epita.fr>
11316
11317 Simplify the C++ parser constructor.
11318
11319 * data/lalr1.cc (debug_): Rename as...
11320 (yydebug_): so that the parser's internals are always in the yy*
11321 pseudo namespace.
11322 Adjust uses.
11323 (b4_parse_param_decl): Remove the leading comma as it is now only
11324 called as unique argument list.
11325 (Parser::Parser): Remove the constructor accepting a location and
11326 an initial debugging level.
11327 Remove from the other ctor the argument for the debugging level.
11328 (debug_level_type, debug_level, set_debug_level): New.
11329
11330 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
11331 constructor calls.
11332
07fed891
AD
113332004-12-15 Akim Demaille <akim@epita.fr>
11334
11335 Remove b4_root related material: failure experiment
a3cb6248 11336 (which goal was to allow to derive from a class).
07fed891
AD
11337
11338 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
11339 definitions and uses.
11340
e603eaa5
PE
113412004-12-14 Paul Eggert <eggert@cs.ucla.edu>
11342
11343 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
11344 not 2, since it's not portable to subtract 1 from the start of an
11345 array. The new item 0 is never set or used. All uses changed.
11346
11347 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
11348 the default definition of YYLLOC_DEFAULT. Problem reported
11349 by Frank Heckenbach.
11350
fafb007d
PE
113512004-12-12 Paul Eggert <eggert@cs.ucla.edu>
11352
11353 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
11354 the normal case and one for the error case. Just use the
11355 first one uniformly. Problem reported by Frank Heckenbach.
11356 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
11357 use exactly the same macro in both places.
11358 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
11359 so that the normal-case YYRHSLOC works for the error case too.
11360 All uses changed.
11361 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
11362 (YYLLOC_DEFAULT): Use the same macro as glr.c.
11363 * doc/bison.texinfo (Location Default Action): Don't claim that
11364 we have an array of locations. Use the same macro for both glr
11365 and lalr parsers. Mention YYRHSLOC. Mention what happens when
11366 the index is 0.
11367
48814dcd
PE
113682004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11369
a4e1a53b
PE
11370 * HACKING: Update email addresses to send announcements to.
11371
48814dcd
PE
11372 * configure.ac (AC_INIT): Bump version to 1.875f.
11373
337116ba
PE
113742004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11375
11376 * NEWS: Version 1.875e.
11377 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
11378
11379 * src/scan-skel.l: Include "complain.h", for "fatal".
11380
11381 * src/relation.h (relation_print, relation_digraph):
11382 Relation sizes are of type relation_node, not size_t (this is
11383 merely a doc fix, since the two types are equivalent).
11384 (relation_transpose): Relation sizes are of type relation_node,
11385 not int.
11386 * src/relation.c: Likewise.
11387 (top, infinity): Now of type relation_node, not int.
11388 (traverse, relation_transpose): Use relation_node, not int.
11389
11390 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
11391 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
11392 (yyparse): Remove unused local introduced in 2004-10-25 patch.
11393
11394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 11395 specifying whether the test should be skipped. Use it tp
337116ba 11396 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 11397 fail on some hosts, and should be skipped.
337116ba 11398
da2a7671
PE
113992004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11400
11401 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11402 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11403 unless otherwise specified below.
11404
11405 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11406 to allocate kernel_base, kernel_items, kernel_size, since
11407 they needn't be initialized to 0.
11408 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11409 * src/closure.c (new_closure): Likewise, for itemset.
11410 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11411 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11412 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11413 (build_relations): Likewise for edge, states1, includes.
11414 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11415 * src/reader.c (packgram): Likewise, for ritem, rules.
11416 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11417 * src/relation.c (relation_digraph): Likewise for VERTICES.
11418 (relation_transpose): Likewise for new_R, end_R.
11419 * src/symtab.c (symbols_token_translations_init): Likewise for
11420 token_translations.
11421 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11422 (token_actions): Likewise for yydefact, actrow, conflrow,
11423 conflict_list.
11424 (save_column): Likewise for froms[symno], tos[symno].
11425 (goto_actions): Likewise for state_count.
11426 (pack_table): Likewise for base, pos, check.
11427 (tables_generate): Likewise for width.
11428
11429 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11430 for initial core. Just have a separate core, so we needn't worry
11431 about whether kernel_size and kernel_base are initialized.
11432
11433 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11434 kernel_size, kernel_items): Remove unnecessary initialization.
11435 * src/conflicts.c (conflicts): Likewise.
11436 * src/derives.c (derives): Likewise.
11437 * src/muscle_tablc (muscle_insert): Likewise.
11438 * src/relation.c (relation_digraph): Likewise.
11439 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11440 conflrow, conflict_table, conflict_list, table, check):
11441 Likewise.
11442
11443 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11444 This is because all callers pass unsigned int.
11445 * src/closure.h (new_closure): Likewise.
11446
11447 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11448 (build_relations): Initialize includes[i] in all cases.
11449 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11450 and rules[ruleno].precsym. Initialize members in order.
11451 * src/relation.c (relation_transpose): Always initialize new_R[i]
11452 and end_R[i].
11453 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11454
11455 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11456 conflict_list[0] was always 0, but now it isn't initialized.
11457
11458 * src/table.c (table_grow): When conflict_table grew, the grown
11459 area wasn't cleared. Fix this.
11460
11461 * lib/.cvsignore: Add strdup.c, strdup.h.
11462 * m4/.cvsignore: Add strdup.m4.
11463
00baeeac
PE
114642004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11465
11466 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11467 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11468 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11469 ngotos + 1 without checking for overflow.
11470 (build_relations): Use END_NODE, not -1, to denote end of edges.
11471 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11472 build_relations): Use goto_number, not int, for goto numbers.
11473 * src/tables.c (save_column, default_goto): Likewise.
11474
be3d9d42
AD
114752004-11-23 Akim Demaille <akim@epita.fr>
11476
11477 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11478 of #defining from yystype.
11479 Don't typedef yystype, C++ does not need it.
11480 This lets it possible to forward declare it as union.
11481
78e526d5
PE
114822004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11483
11484 * bootstrap (gnulib_modules): Add extensions.
11485 Problem reported by Jim Meyering.
11486
afbb696d
PE
114872004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11488
11489 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11490 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11491 src/system.h, src/tables.c: XFREE -> free, to accommodate
11492 recent change to gnulib xalloc.h.
78e526d5 11493 Problem reported by Jim Meyering.
afbb696d 11494
c1f8f16a
AD
114952004-11-17 Akim Demaille <akim@epita.fr>
11496
11497 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11498
db7e5eb5 114992004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
11500 Alexandre Duret-Lutz <adl@gnu.org>
11501
11502 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11503 changes.
11504 (YYCDEBUG): Adjust.
11505 Use it instead of cdebug_.
11506 (Parser::debug_stream, Parser::set_debug_stream): New.
11507 (Parser::symprint_): Define cdebug_ for temporary backward
11508 compatibility.
11509 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11510 debug_stream ().
11511
68e11668
AD
115122004-11-17 Akim Demaille <akim@epita.fr>
11513
11514 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11515 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11516 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11517 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11518
97cbc73e
PE
115192004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11520
11521 * data/glr.c (yyloc_default): Remove; not used.
11522 Problem reported by Frank Heckenbach.
11523
e342c3be
AD
115242004-10-25 Akim Demaille <akim@epita.fr>
11525
11526 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11527 Introduce another definition to address simple location arrays.
11528 (yyGLRStack): New member: yyerror_range.
11529 (yyrecoverSyntaxError, yyparse): Update it.
11530 (yyrecoverSyntaxError): Use it when shifting the error token to
11531 have an accurate range, equivalent to the one computed by both
11532 yacc.c and lalr1.cc.
11533 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11534 that column numbers start at column 0, as per GNU Coding
11535 Standards, the others tests, and the doc.
11536 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11537 Adjust to the above change (first column is 0).
11538 And adjust the location of the "<error>", now covering the whole
11539 line.
11540
93602feb 115412004-10-22 Akim Demaille <akim@epita.fr>
04098407 11542 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
11543
11544 Remove some arbitrary limits on goto numbers and relations.
11545 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11546 initial values, since they're never used.
11547 (set_goto_map): ngotos is now unsigned, so test for overflow
11548 by seeing whether it wraps around to zero.
11549 * src/lalr.h (goto_number): Now size_t, not short int.
11550 (GOTO_NUMBER_MAXIMUM): Remove.
11551 * src/relation.c (relation_print, traverse, relation_transpose):
11552 Check for END_NODE rather than looking at sign.
11553 * src/relation.h (END_NODE): New macro.
11554 (relation_node): Now size_t, not short int.
11555
dba08b04
PE
115562004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11557
11558 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11559 keyword, not an identifier. Problem reported by Baron Schwartz in
11560 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11561
df09ef2e
AD
115622004-10-11 Akim Demaille <akim@epita.fr>
11563
11564 * src/symtab.c (symbol_check_alias_consistency): Also check
11565 type names, destructors, and printers.
11566 Reported by Alexandre Duret-Lutz.
11567 Recode the handling of associativity and precedence in terms
11568 of symbol_precedence_set.
11569 Accept no redeclaration at all, not even equal to the previous
11570 value.
11571 (redeclaration): New.
11572 Use it to factor redeclaration complaints.
11573 (symbol_make_alias): Don't set the type of the alias, let
11574 symbol_check_alias_consistency do it as for other features.
11575 * src/symtab.h (symbol): Add new member prec_location, and
11576 type_location.
11577 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11578 * tests/input.at (Incompatible Aliases): New.
11579
146bc99d
PE
115802004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11581
11582 .cvsignore fixes to accommodate gnulib changes,
11583 and the practice of naming build directories "_build".
11584 * .cvsignore: Add "_*". Sort.
11585 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11586 * m4/.cvsignore: Add "*_gl.m4".
11587
e503aa60
AD
115882004-10-06 Akim Demaille <akim@epita.fr>
11589
11590 * src/parse-gram.y (add_param): Fix the truncation of trailing
11591 spaces.
11592
b4a20338
AD
115932004-10-05 Akim Demaille <akim@epita.fr>
11594
11595 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11596 whether the reducion was empty or not. This leaves room to
11597 improve the use of YYLLOC_DEFAULT in such a case.
11598 lalr1.cc is still experimental, so changing this is acceptable.
11599 And finally, there are probably not many users who changed the
11600 handling of locations in GLR, so changing is admissible too.
11601
11602 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11603 empty reduction, set @$ to an empty location ending the previously
11604 stacked symbol.
11605 Adjust uses to make sure the code is triggered on empty
11606 reductions.
11607 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11608 expected output: empty reductions have empty locations.
11609
f85a5e6f
AD
116102004-09-29 Akim Demaille <akim@epita.fr>
11611
11612 * data/lalr1.cc: Move towards a more standard C++ coding style
11613 for templates: Class < T > -> Class<T>.
11614
b203fc2c
AD
116152004-09-29 Akim Demaille <akim@epita.fr>
11616
11617 * data/lalr1.cc: Reinstall the former ctor, for sake of
11618 compatibility, but warn it will be removed.
11619 Move towards a more standard C++ coding style (i.e., type *var ->
11620 type* var).
11621
5b7e1e73
PE
116222004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11623
3fee967f
PE
11624 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11625 since it's less likely to work if NULs are involved in the future.
5b7e1e73 11626
0dcca5c2
AD
116272004-09-27 Akim Demaille <akim@epita.fr>
11628
11629 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11630
6dde1c82
AD
116312004-09-27 Akim Demaille <akim@epita.fr>
11632
11633 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 11634 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
11635 and argument names.
11636 (b4_cc_constructor_call): Likewise.
11637
b233d555
AD
116382004-09-24 Akim Demaille <akim@epita.fr>
11639
11640 * src/parse-gram.y (add_param): Strip the leading and trailing
11641 blanks from a formal argument declaration.
11642 (YY_LOCATION_PRINT): New.
11643
619404e3
AD
116442004-09-24 Akim Demaille <akim@epita.fr>
11645
11646 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11647 after the location.
11648
dd8d9022
AD
116492004-09-24 Akim Demaille <akim@epita.fr>
11650
11651 * doc/bison.texinfo (Table of Symbols): Sort.
11652
0092f063
AD
116532004-09-21 Akim Demaille <akim@epita.fr>
11654
11655 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11656 the useless parentheses.
11657 Suggested by Paul Eggert.
11658
451364ed
AD
116592004-09-20 Akim Demaille <akim@epita.fr>
11660
11661 Let the initial-action act on the look-ahead, and use it for the
11662 "initial push" (corresponding to an hypothetical beginning-of-file).
11663 And let lalr1.cc honor %initial-action.
11664
11665 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11666 example.
11667 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11668 (Parser::Parser): Remove the ctor that used to initialize it.
11669 (Parser::parse): Like in the other skeletons, issue the "starting
11670 parse" message before any action.
11671 Honor %initial-action.
11672 Initialize the stacks with the lookahead.
11673 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11674 look-ahead.
11675 Push them in the stacks.
11676 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11677
18d192f0
AD
116782004-09-20 Akim Demaille <akim@epita.fr>
11679
11680 * doc/bison.texinfo (Initial Action Decl): New.
11681
b8458aa5
AD
116822004-09-20 Akim Demaille <akim@epita.fr>
11683
11684 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11685 clearer criterion to define it.
11686 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11687 When reducing on an empty RHS, use the latest stacked location as
11688 location.
11689 yylloc is not always available.
11690 * data/glr.c: Likewise.
11691 Also, honor initial-actions.
11692
3fc16193
AD
116932004-09-20 Akim Demaille <akim@epita.fr>
11694
11695 * data/yacc.c (YY_LOCATION_PRINT): New.
11696 Define when we know YYLTYPE's structure, i.e., when the default
11697 YYLLOC_DEFAULT is used.
11698 * data/c.m4 (b4_yysymprint_generate): Use it.
11699 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11700 value of the result.
11701 (error_start_): Replace with...
11702 (error_range_): this location array.
11703 This allows to replace code relying on the implementation of
11704 locations by portable code.
11705 * data/yacc.c (yylerrsp): Replace with...
11706 (yyerror_range): this.
11707 Every time a token is popped, update yyerror_range[0], to have an
11708 accurate location for the error token.
11709 * data/glr.c (YY_LOCATION_PRINT): New.
11710 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11711 deference a pointer.
11712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11713 report the location in %printers.
11714
11715 * src/scan-skel.l: Instead of abort, report error messages to ease
11716 understanding skeleton scanning failures.
11717
ecfe33e7
AD
117182004-09-16 Akim Demaille <akim@epita.fr>
11719
11720 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11721 (iterator, const_iterator): these, to be more in the C++ spirit.
11722 Also, return reverse iterators so that when displaying the stack
11723 we display its bottom first.
11724 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11725 from yacc.c.
11726 We should probably use vector here though.
11727
1576d44d
AD
117282004-09-16 Akim Demaille <akim@epita.fr>
11729
11730 Have more complete shift traces.
11731
11732 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11733 to report Shifts instead of ad hoc YYDPRINTF invocations,
11734 including for the error token.
11735 * data/lalr1.cc (symprint_): Output the location.
11736 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11737 output the location within the %printer.
11738 Activate GLR tests, at least to make sure they compile properly.
11739 They still don't pass though.
11740 * tests/calc.at: Adjust expect verbose output, since now "Entering
11741 state..." is on a different line than the "Shifting" message.
11742
9c66f418
AD
117432004-09-08 Akim Demaille <akim@epita.fr>
11744
11745 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11746 Bison directive from the Bison file to the invocation of this
11747 macro, so that these directives are passed to
11748 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11749 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11750 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11751 the extra Bison directives instead of the whole series.
11752 Change the grammar so that there are recoverable errors, and
11753 unrecoverable errors. Now we can have the parser give up before
11754 consuming the whole input. As a result we now can observe that
11755 the lookahead is freed when needed.
11756 Change the parser source to parse argv[1] instead of a hard coded
11757 string.
11758 Simplify yylex, and give a value and location to EOF.
11759 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11760 passed directives already coded in the file.
11761 Add some tests to check the location of "error".
11762 For some tests, the C++ parser is correct, and not yacc.c.
11763 For other tests, they provide different, but unsatisfying, values,
11764 so keep the C++ value so that at least one parser is "correct"
11765 according to the test suite.
11766 (Actions after errors): Remove, this is subsumed by the
11767 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11768
52d5733f
AD
117692004-09-06 Akim Demaille <akim@epita.fr>
11770
11771 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 11772 (Parser::pop): New.
52d5733f
AD
11773 Use it.
11774
a0e68930
AD
117752004-09-06 Akim Demaille <akim@epita.fr>
11776
11777 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11778 argument, an informative message.
11779 Call YY_SYMBOL_PRINT.
11780 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11781 * data/lalr1.cc (destruct_): Likewise.
11782 In addition, no longer depend on b4_yysymprint_generate and
11783 b4_yydestruct_generate to generate these functions, do it "by
11784 hand".
11785
e757bb10
AD
117862004-09-03 Akim Demaille <akim@epita.fr>
11787
11788 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11789 invoked, yydestruct the lookahead.
11790 * tests/calc.at (Calculator $1): Update the expected lengths of
11791 traces: there is an added line for the discarded lookahead.
11792 * doc/bison.texinfo (Destructor Decl): Some rewording.
11793 Define "discarded" symbols.
11794
0fe1f06d
AD
117952004-09-02 Akim Demaille <akim@epita.fr>
11796
11797 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11798
284acc8b
AD
117992004-09-02 Akim Demaille <akim@epita.fr>
11800
11801 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11802 (YYDSYMPRINTF): Rename as...
11803 (YY_SYMBOL_PRINT): this.
11804 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11805 two.
11806 Use it instead of direct symprint_ calls.
11807 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11808 one.
11809
a5eb1ed2
AD
118102004-09-02 Akim Demaille <akim@epita.fr>
11811
b7c72fe1
AD
11812 * data/lalr1.cc (b4_yysymprint_generate): New.
11813 (symprint_): New member function, defined when YYDEBUG.
11814 Use it consistently instead of token/nterm debugging output by
11815 hand.
a5eb1ed2
AD
11816 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11817 %printer calls to use cdebug_ when using lalr1.cc.
11818
417141dd
AD
118192004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11820
11821 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11822 with #ifdef YYDEBUG.
11823
2fa09258
AD
118242004-08-26 Akim Demaille <akim@epita.fr>
11825
11826 * doc/bison.texinfo (Implementing Loops): Rename as...
11827 (Implementing Gotos/Loops): this.
11828
9378b508
PE
118292004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11830
11831 Adjust to latest gnulib.
11832 * bootstrap (gnulib_modules): Add xalloc-die.
11833 Set LC_ALL=C so that file names sort consistently.
11834 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11835 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11836 uintmax_t.m4, ulonglong.m4.
11837 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11838 po.m4 since we are now using _gl.m4 instead.
11839
87a8ad5c
PE
118402004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11841
11842 * src/scan-action.l: Remove. Scanning of semantic actions is
11843 handled in scan-gram.l.
11844
dca81a78
PE
118452004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11846
11847 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11848
11849 * src/location.h (struct): The file member is a uniqstr.
11850 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11851
c9cbf7c5
PE
118522004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11853
11854 Fix bug with non-%union parsers that have printers or destructors,
11855 which led to a Bison core dump. Reported by Peter Fales in
11856 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 11857
c9cbf7c5
PE
11858 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11859 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11860 not to our own type.
11861 * src/output.c (symbol_destructors_output, symbol_printers_output):
11862 Don't assume %union.
11863 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11864 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11865 UNION-FLAG. All callers changed.
11866 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11867 Use type char, not unsigned int, when declaring an array of char;
11868 this lets us remove a cast.
11869 (Printers and Destructors): Add non-%union test cases.
11870
fa7e68c3
PE
118712004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11872
11873 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11874 GLR writeups. E.g., avoid frenchspacing and the future tense,
11875 change "lookahead" to "look-ahead", and change "wrt" to "with
11876 respect to".
2fa09258 11877
fa7e68c3
PE
118782004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11879
11880 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11881 New sections, split off from the GLR Parsers section. Put the new
11882 Simple GLR Parser near the start of the GLR section, for clarity.
11883 Rewrite connective text.
11884
99a9344e
PE
118852004-06-21 Frank Heckenbach <frank@g-n-u.de>
11886
11887 * doc/bison.texinfo (Simple GLR Parsers): New section.
11888
8dd162d3
PE
118892004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11890
11891 * NEWS, TODO, doc/bison.texinfo:
11892 Use "look-ahead" instead of "lookahead", to be consistent.
11893 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11894 while we're fixing "look-ahead".
11895 * src/conflicts.c (shift_set): Renamed from shiftset.
11896 (look_ahead_set): Renamed from lookaheadset.
11897 * src/print.c: Likewise.
11898 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11899 name for "lookahead".
11900 (report_types, usage): Likewise.
11901 * src/getargs.h (report_look_ahead_tokens): Renamed from
11902 report_lookaheads.
11903 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11904 compute_lookaheads.
11905 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11906 (look_ahead_tokens_print): Renamed from lookaheads_print.
11907 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11908 state_rule_lookaheads_print.
11909 * src/state.h: Likewise.
11910 (reductions.look_ahead_tokens): Renamed from lookaheads.
11911 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11912 AT_DATA_LOOKAHEADS_GRAMMAR.
11913
57a90331
PE
119142004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11915
11916 * README: Update location of patched M4 distribution.
11917
8ed3234a
PE
119182004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11919
11920 Don't assume the C++ compiler takes the same arguments as the C compiler
11921 (trivial change).
11922 * configure.ac (O0CXXFLAGS): New var.
11923 * tests/atlocal.in (CXXFLAGS): Use it.
11924
07971983
PE
119252004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11926
11927 Fix some "make check" problems with C++ reported by
11928 Albert Chin-A-Young for Tru64 C++ in this thread:
11929 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11930
11931 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11932 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11933 Output to a .cc file for C++, not to a .c file.
11934 * tests/calc.at (AT_CHECK_CALC): Likewise.
11935 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11936 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11937
29058652
PE
119382004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11939
11940 * tests/calc.at, tests/actions.at: Workaround for SGI
11941 C++ compiler. (trivial change)
11942
62cb8a99
PE
119432004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11944
fd418816
PE
11945 Spent a few hours checking out which prerequisite versions the
11946 current sources actually require. I went all the way back to
11947 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11948 a seemingly endless set of combinations of versions more recent
11949 than that. The bottom line is that the current sources require
11950 fairly recent versions of the build tools, and it'll be some work
11951 to change this.
11952 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11953 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11954 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11955 Add comments explaining why those particular versions are
11956 currently needed.
2fa09258 11957
62cb8a99
PE
11958 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11959 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 11960 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
11961
11962 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11963 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11964
caa52c10
PE
119652004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11966
11967 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11968 0.11.5. Suggested by Bruno Haible.
11969 * bootstrap: Remove gettext version checking.
11970
11971 * doc/bison.texinfo (Decl Summary): Also mention that %union
11972 can depend on prerequisite types. Problem reported by Tim
11973 Van Holder.
11974
4bfd5e4e
PE
119752004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11976
2cef3017
PE
11977 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11978 * README-alpha: Don't tell people not to package this.
11979
b9c85d5c
PE
11980 * bootstrap: Don't assume $(...) works; use `...` instead.
11981 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11982 gettext better.
11983
4bfd5e4e
PE
11984 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11985 put into the -d output file, and mention what to do if YYSTYPE is
11986 defined as a macro.
11987
6a36ff94
PE
119882004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11989
6712933e
PE
11990 Undo change made earlier today: it caused autopoint to not bring
11991 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11992 autopoint's.
11993
11994 * bootstrap: Check that gettext version matches what's in
11995 configure.ac. Warn users to ignore robots.txt ERROR 404.
11996 * bootstrap: Undo today's earlier change (logged below).
11997 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 11998
6a36ff94
PE
11999 The gettext version checking is causing more trouble than it's
12000 curing; remove it. Problem reported by Paul Hilfinger.
12001
12002 * bootstrap: Issue a warning that one can expect a message
12003 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12004 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12005
209ea708
PE
120062004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12007
12008 Ensure that the C++ compiler used for testing actually works on a
12009 simple test program; if not, skip the C++-related tests. Problem
12010 reported by Vin Shelton in:
161a71f3 12011 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
12012
12013 * m4/cxx.m4: New file.
12014 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12015 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12016 * tests/local.at (AT_COMPILE_CXX): Use it.
12017
41ca2549
PE
120182004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12019
383e69dc
PE
12020 * data/glr.c (yylloc): Output this macro even if locations are not
12021 being generated, as the GLR parser needs it even in that case.
12022 Problem reported by Troy A. Johnson
12023 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12024
41ca2549
PE
12025 * configure.ac (AC_INIT): Update to 1.875e.
12026
e476c87d
PE
120272004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12028
12029 * NEWS: Version 1.875d.
12030 * configure.ac (AC_INIT): Likewise.
12031 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12032
12033 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12034 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12035 lalr1.cc runs afoul of the first, and the last two are no longer
12036 supported by GCC 3.4.0.
12037 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12038 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12039
233a88ad
PE
120402004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12041
12042 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12043 unsigned int, for compatibility with latest gnulib hash module.
12044 * src/state.c (state_hash, state_hasher): Likewise.
12045 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12046 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 12047
12ffdd28
PE
120482004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12049
12050 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12051
12052 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12053 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12054 character and string literals.
12055 (unexpected_end): New function.
12056 (unexpected_eof): Use it.
12057 (unexpected_newline): New function.
12058 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12059 actions.
e476c87d 12060
12ffdd28
PE
12061 * NEWS: Document %expect-rr.
12062
12063 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12064 Fix typo by replacing $1 with $option.
12065 Remove more 'intl'-related files.
9668e2be 12066 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
12067
12068 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12069 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12070 strtoul.c.
12071 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12072 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12073 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12074 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12075 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12076 * src/.cvsignore: Add *.output.
12077
12078 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12079 gets copied to the output file.
e476c87d 12080
1f65350a
PE
120812004-04-28 Paul Eggert <eggert@twinsun.com>
12082
12083 Get files from the gnulib and po repositories, instead of relying
12084 on them being in our CVS. Upgrade to latest versions of gnulib
12085 and Automake.
12086
12087 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12088 * bootstrap: Bootstrap from gnulib and po repositories.
12089 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12090 * README-cvs: Document these changes. Remove version numbers from
12091 mentions of build tools, since they change so often. Mention Flex.
12092
12093 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12094 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
12095 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12096 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 12097 does this for us.
12ffdd28
PE
12098 (AC_ISC_POSIX): Remove; we no longer support this
12099 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
12100 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12101 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12102 Do not check for C89 headers, except for locale.h which is used
12103 by the Yacc library and must port to K&R hosts.
12104 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12105 Do not check for C89 functions, except for setlocale which is
12106 used by the Yacc library.
12107 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12108 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12109 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12110 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12111 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12112 AM_GNU_GETTEXT): Remove; now done by:
12113 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12114 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12115 for us.
12116
12117 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12118 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12119 Define to empty, as gnulib.mk will do the rest for us.
12120 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12121 for us.
12122 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12123 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12124
12125 * src/files.c: Include gnulib's xstrndup.h.
12126
12127 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12128 (REALLOC): Use xnrealloc, for likewise.
12129 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12130 (strnlen, memrchr): Remove decls; functions no longer used.
12131 Include <stpcpy.h>.
12132
12133 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12134 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12135 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12136 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12137 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12138 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12139 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12140 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12141 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12142 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12143 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12144 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12145 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12146 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12147 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12148 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12149 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12150 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12151 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12152 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12153 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12154 Remove, as these files are now generated automatically
12155 by bootstrap or automake.
12156
12157 * po/ChangeLog: Remove: all but one entry was a duplicate
12158 of this file, and I moved that 2000-11-02 entry here.
12159
12160 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12161 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12162 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12163 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12164 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12165 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12166 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12167 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12168 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12169 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12170 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12171 xstrndup.h.
12172 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12173 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12174 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12175 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12176 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12177 * src/.cvsignore: Remove *_.c.
12178
12179
12180 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12181 support it. (The latest stable gzip doesn't.)
12182
121832004-04-27 Paul Eggert <eggert@twinsun.com>
12184
12185 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12186 case, as stos_ is now used by destructors due to the 2004-02-09
12187 change.
12188
12189 Remove more K&R C support.
12190 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12191 * lib/subpipe.c (errno): Remove decl.
12192 Include <stdlib.h> unconditionally.
12193 (EXIT_FAILURE): Remove macro.
12194 * src/complain.c (vfprintf, strerror): Remove.
12195 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12196 unconditionally.
12197 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12198 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12199 (strchr, strspn, memchr): Remove decls.
12200 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12201 unconditionally. Do not declare perror.
12202 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12203 unconditionally.
12204
12205 * src/complain.c (_): Remove useless defn, as system.h defines this.
12206
12207 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12208 with latest obstack.h.
12209 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12210 to procedure types, as obstack.h now does that for us.
12211 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12212
12213 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12214 so that this include file can stand alone.
12215 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12216 does this now. Include subpipe.h first after config.h, to
12217 test whether it can stand alone.
12218
12219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12220 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12221 unused declaration.
12222
12223 * tests/synclines.at (%union synch line): Put a dummy member in
12224 the union, because empty unions aren't allowed in C. Caught
12225 by GCC 3.4.0.
12226
4f16766c
PE
122272004-04-13 Jim Meyering <jim@meyering.net>
12228
12229 * src/conflicts.c (conflicts_print): Correct format string typo:
12230 use `%%' to produce literal `%'. (trivial change)
12231
779e7ceb
PE
122322004-03-30 Paul Eggert <eggert@twinsun.com>
12233
12234 * src/getargs.c (version): Update copyright year to 2004.
12235
12236 * data/c.m4 (b4_int_type): Use 'short int' rather than
12237 'short', and similarly for 'long', 'unsigned', etc.
12238 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12239 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12240 yy_yypstack, yydumpstack): Likewise.
12241 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12242 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12243 Likewise.
12244 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12245 yy_stack_print, yyparse): Likewise.
12246 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12247 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12248 * lib/bitset.c (bitset_print): Likewise.
12249 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12250 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12251 * lib/bitsetv.c (bitsetv_dump): Likewise.
12252 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12253 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12254 Likewise.
12255 * src/LR0.c (allocate_itemsets): Likewise.
12256 * src/gram.h (rule_number, rule): Likewise.
12257 * src/lalr.h (goto_number): Likewise.
12258 * src/nullable.c (nullable_compute): Likewise.
12259 * src/output.c (prepare_rules): Likewise.
12260 * src/relation.c (relation_print, relation_digraph): Likewise.
12261 * src/relation.h (relation_node): Likewise.
12262 * src/state.h (state_number, transitions, errs, reductions,
12263 struct state): Likewise.
12264 * src/symtab.h (symbol_number, struct symbol): Likewise.
12265 * src/tables.c (vector_number, tally, action_number,
12266 default_goto, goto_actions): Likewise.
12267 * tests/existing.at (GNU Cim Grammar): Likewise.
12268 * tests/regression.at (Web2c Actions): Likewise.
12269
12270 * src/output.c (muscle_insert_short_int_table): Renamed from
12271 muscle_insert_short_table. All uses changed.
12272
d6328241
PH
122732004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12274
12275 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12276 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12277 Add %expect-rr rule.
4f16766c 12278
d6328241
PH
12279 * src/scan-gram.l: Recognize %expect-rr.
12280
4f16766c 12281 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 12282 expected_conflicts.
4f16766c 12283 (expected_rr_conflicts): Declare.
d6328241
PH
12284
12285 * src/conflicts.c (expected_sr_conflicts): Rename from
12286 expected_conflicts.
12287 (expected_rr_conflicts): Define.
12288 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12289 for GLR parsers.
12290 Use expected_sr_conflicts in place of expected_conflicts.
12291 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 12292
d6328241 12293 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 12294
1452af69
PE
122952004-03-08 Paul Eggert <eggert@gnu.org>
12296
12297 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 12298 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
12299
12300 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12301 in lalr1.cc.
12302 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12303 * src/scan-gram.l (scan_integer): New function.
12304 ({int}): Use it.
12305 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12306 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12307 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12308 Say "long int", not "long", for uniformity with GNU style.
12309
006d217d
PE
123102004-02-25 Paul Eggert <eggert@twinsun.com>
12311
12312 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12313 compilers. This fixes a problem with Intel's C++ compiler being
12314 chatty, reported by Guido Trentalancia in
161a71f3 12315 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 12316
c2729758
ADL
123172004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
12318
12319 Support %destructor and merge error locations in lalr1.cc.
12320
12321 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
12322 (Parser::stos_): Define unconditionally.
12323 (Parser::destruct_): New method. Generate its body with
12324 b4_yydestruct_generate.
12325 (Parser::error_start_): New attribute.
12326 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
12327 token which are discarded.
12328 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
12329 error_start_ when erroneous token are discarded.
12330 (Parser::parse) <yyerrlab1>: Compute the location of the error
12331 token so that it covers all the discarded tokens.
12332 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
12333 it can be called with `%skeleton "lalr1.cc"', and do that.
12334
dd0e0635
PE
123352004-02-02 Paul Eggert <eggert@twinsun.com>
12336
12337 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
12338 $(top_srcdir)/lib and ../lib. This fixes a bug reported
12339 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
12340 There's no need to mention top_builddir since Automake does that
12341 for us.
12342 (INCLUDES): Remove, as Automake says it's obsolescent.
12343 Contents migrated into AM_CPPFLAGS as described above.
12344 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
12345
123462004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12347
12348 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
12349 (yyreportSyntaxError): Handle case where lookahead token is
12350 YYEMPTY.
12351
be16239b
PH
123522004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12353
12354 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
12355 resulting parsers are compilable with C++.
12356
5fa90832
PE
123572003-12-23 Paul Eggert <eggert@twinsun.com>
12358
12359 * config/depcomp, config/install-sh: Sync with Automake 1.8.
12360 * src/output.c (output_skeleton): Rename local var.
12361 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
12362 Bison tokens, as this runs afoul of the 2003-10-07 change that
12363 disallowed NUL bytes in character constants or string literals.
12364
12365 * tests/local.at: Require Autoconf 2.59's Autotest.
12366 * tests/testsuite.at: Don't include local.at, since we now assume
12367 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
12368 including it.
12369 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
12370 multiple inclusion warnings.
dd0e0635 12371
b165c324
AD
123722003-12-02 Akim Demaille <akim@epita.fr>
12373
12374 * doc/bison.texinfo (How Can I Reset the Parser): More about start
12375 conditions.
12376 From Bruno Haible.
12377
26e06a21
ADL
123782003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
12379
12380 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
12381
92ac3705
PE
123822003-10-07 Paul Eggert <eggert@twinsun.com>
12383
6a5ecb38
PE
12384 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
12385 if testsuite doesn't exist.
12386
92ac3705
PE
12387 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
12388 literals, unfortunately.
12389 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
12390 Complain about NUL bytes in character constants or string literals.
12391
91d2c560
PE
123922003-10-05 Paul Eggert <eggert@twinsun.com>
12393
12394 * NEWS: Don't document %no-default-prec, as it's still
12395 too experimental.
12396 * doc/bison.texinfo: Document %no-default-prec only if
12397 the defaultprec flag is set. Normally it's not.
12398
0cc3da3a
PE
123992003-10-04 Paul Eggert <eggert@twinsun.com>
12400
12401 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12402 non-modifiable lvalue, instead of a modifiable one.
12403 * doc/bison.texinfo (Actions): Document that $$ can
12404 be assigned to. Do not claim that $$ and $N are
12405 array element references: user code should not rely on this.
12406
22fccf95
PE
124072003-10-01 Paul Eggert <eggert@twinsun.com>
12408
12409 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12410 (grammar_declaration): Use it.
12411 * src/scan-gram.l: New token %no-default-prec.
12412 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12413 * NEWS, doc/bison.texinfo: Document the above.
12414
fc8f2965
AD
124152003-10-01 Akim Demaille <akim@epita.fr>
12416
12417 VCG no longer supports long_straight_phase.
12418
12419 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12420 * src/print_graph.c (print_graph): Adjust.
12421
39a06c25
PE
124222003-09-30 Frank Heckenbach <frank@g-n-u.de>
12423 and Paul Eggert <eggert@twinsun.com>
12424
12425 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12426 Table of Symbols): Document %default-prec.
12427 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12428 (grammar_declaration): Set default_prec on %default-prec.
12429 * src/scan-gram.l (%default-prec): New token.
12430 * src/reader.h (default_prec): New flag.
12431 * src/reader.c: Likewise.
12432 (packgram): Handle it.
12433 * tests/conflicts.at (%default-prec without %prec,
12434 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 12435
39a06c25
PE
124362003-09-30 Paul Eggert <eggert@twinsun.com>
12437
12438 * tests/testsuite.at: Include local.at, not input.at, fixing
12439 a typo in the 2003-08-25 patch.
12440
62b6aef9
AD
124412003-08-27 Akim Demaille <akim@epita.fr>
12442
12443 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12444 GCC warnings.
12445
89e1cc61
AD
124462003-08-26 Akim Demaille <akim@epita.fr>
12447
12448 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12449 "<\#" to avoid magic from Gnus when posting parts of this script.
12450
a08460b0
AD
124512003-08-26 Akim Demaille <akim@epita.fr>
12452
12453 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12454 (Parser::parse): here.
12455 Adjust: nerrs and errstatus is now replaced by...
12456 (Parser::nerrs_, Parser::errstatus_): New.
12457
603f1cfd
AD
124582003-08-25 Akim Demaille <akim@epita.fr>
12459
12460 * config/announce-gen, Makefile.cfg: New.
12461 * Makefile.am: Adjust.
12462 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12463 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12464
cd3684cf
AD
124652003-08-25 Akim Demaille <akim@epita.fr>
12466
12467 When reducing initial empty rules, Bison parser read an initial
12468 location that is not defined. This results in garbage, and that
12469 affects Bison's own parser. Therefore we need (i) to extend Bison
12470 to support a means to initialize this location, and (ii) to use
12471 this CVS Bison to fix CVS Bison's parser.
12472
12473 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12474 with...
12475 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12476 * src/parse-gram.y: Adjust.
12477 (%initial-action): New.
12478 (%error-verbose): Since we require CVS Bison, there is no reason
12479 not to use it.
12480 * src/scan-gram.l: Adjust.
12481 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12482 * data/yacc.c (yyparse): Use b4_initial_action.
12483
4e03e201
AD
124842003-08-25 Akim Demaille <akim@epita.fr>
12485
12486 * doc/bison.texinfo: Don't promote stdout for error messages.
12487
8c182d05
AD
124882003-08-25 Akim Demaille <akim@epita.fr>
12489
12490 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12491 From Alexandre Duret-Lutz.
12492
6a60c4cf
PE
124932003-08-25 Akim Demaille <akim@epita.fr>
12494
12495 Version 1.875c.
12496
25f66e1a
AD
124972003-08-25 Akim Demaille <akim@epita.fr>
12498
12499 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12500 Use them.
12501
5348bfbe
AD
125022003-08-25 Akim Demaille <akim@epita.fr>
12503
12504 * data/lalr1.cc (Parser::reduce_print_): New.
12505 Use it.
12506
47301314
AD
125072003-08-25 Akim Demaille <akim@epita.fr>
12508
12509 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12510 error recovery loops. This patch is based on
161a71f3 12511 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
12512 Also, augment the similarity between lalr1.cc and yacc.c.
12513 Note: the locations of error recovery rules are not correct yet.
12514
12515 * data/lalr1.cc: Comment changes to augment the similarity between
12516 lalr1.cc and yacc.c.
12517 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12518 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12519 yyerrlab), when hitting EOF, pop the whole stack here instead of
12520 merely falling thru the default error handling mechanism.
12521 (yyerrorlab): New label, with the old contents of YYERROR,
12522 plus the following change: pop the stack of rhs corresponding
12523 to the production that invoked YYERROR. That is how Yacc
12524 behaves (required by POSIX).
12525 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12526 fail.
12527
1f7a61ff
AD
125282003-08-25 Akim Demaille <akim@epita.fr>
12529
12530 Tune local.at so that people can "autom4te -l autotest calc.at -o
12531 calc" for instance, to extract a sub test suite.
12532
12533 * tests/testsuite.at: Move the initialization, Autotest version
12534 requirement, and AT_TESTED invocation into...
12535 * tests/local.at: here.
12536 * tests/testsuite.at: Include it for compatibility with Autoconf
12537 2.57.
12538 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12539 be ignore.
12540
327b5b56
PE
125412003-08-04 Paul Eggert <eggert@twinsun.com>
12542
12543 Rework code slightly to avoid gcc -Wtraditional warnings.
12544 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12545 The returned value is now stored in *YY0. All callers changed.
12546 * src/output.c (merge_output): Adjust to the above change.
12547
0051e3ed
PE
125482003-07-26 Paul Eggert <eggert@twinsun.com>
12549
12550 * data/glr.c (YYASSERT): New macro.
12551 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12552 yyresolveStates, yyprocessOneStack):
12553 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12554 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 12555
137437c6
PE
125562003-07-25 Paul Eggert <eggert@twinsun.com>
12557
5b620e06
PE
12558 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12559 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 12560 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
12561 by Frank Heckenbach, though I have omitted the structure-initialization
12562 part of his glr-knr.diff patch since I recall that the Portable
12563 C Compiler didn't require that change.
12564
137437c6
PE
12565 Let the user specify how to allocate and free memory.
12566 Derived from a suggestion by Frank Heckenbach in
161a71f3 12567 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
12568 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12569 All uses of free, malloc, realloc changed to use these macros,
12570 and unnecessary casts removed.
12571 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12572
ddb85ca5
PE
125732003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12574
12575 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12576 use s.empty() rather than s == "" to test for empty string; see
161a71f3 12577 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
12578 (trivial change)
12579
39910e09
AD
125802003-06-25 Akim Demaille <akim@epita.fr>
12581
12582 * config/depcomp, config/install-sh: Update from masters.
12583
0ae99356
PE
125842003-06-20 Paul Eggert <eggert@twinsun.com>
12585
12586 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12587 and return properly parenthesized result.
12588 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12589 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12590 Remove unnecessary parentheses from uses.
12591 * doc/bison.texinfo (Location Default Action): Describe the
12592 conventions for parentheses.
12593
cd05d13c
PE
125942003-06-19 Paul Eggert <eggert@twinsun.com>
12595
81fd08ca
PE
12596 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12597 yyreportTree): Do not assume that size_t is the same width as int,
12598 when printing sizes. Print sizes using an unsigned format.
12599 Problem reported by Frank Heckenbach in
161a71f3 12600 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 12601
cd05d13c
PE
12602 Port to Forte Developer 7 C compiler.
12603 * data/glr.c (struct YYLTYPE): If locations are not being used,
12604 declare a single dummy member, as empty structs do not conform
12605 to the C standard.
12606 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12607 the Forte Developer 7 C compiler complains that end-of-loop
12608 code is not reached.
12609
4dcf140b
PE
126102003-06-17 Paul Eggert <eggert@twinsun.com>
12611
12612 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12613 avoid warnings from picky compilers about redefinition of PARAMS.
12614
8dd76bee
PE
126152003-06-17 Paul Eggert <eggert@twinsun.com>
12616
12617 Version 1.875b.
12618
12619 * NEWS: Document 1.875b.
12620
12621 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12622 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12623 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12624 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12625 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12626 per recent gettext manual's suggestion.
12627 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12628 Use prototypes, not old-style definitions.
12629 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12630 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12631 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12632 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12633 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12634 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12635 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12636 vbitset_or_and_cmp, vbitset_copy): Likewise.
12637
12638 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12639 Do not include <stdlib.h>.
12640 (PARAMS): Define unconditionally for C89.
12641 (ATTRIBUTE_NORETURN): Remove.
12642 (ATTRIBUTE_UNUSED): Define unconditionally.
12643
12644 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 12645 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
12646 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12647 * lib/vbitset.c, lib/vbitset.h: New files.
12648 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12649 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12650 from libbitset.
12651
12652 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12653 `How Can I Reset @code{yyparse}', since texinfo does not allow
12654 arbitrary @ in node names.
12655
12656 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12657 shouldn't be needed according to the gettext 0.12.1 documentation
12658 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 12659 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 12660 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 12661 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 12662
8dd76bee
PE
12663 * lib/.cvsignore: Add stdbool.h.
12664 * m4/.cvsignore: Add nls.m4, po.m4.
12665
12666 Upgrade to CVS gnulib.
12667 * stdbool_.h: File renamed from stdbool.h.in.
12668 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12669 AC_HEADER_STDBOOL.
12670 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12671 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12672 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12673 (MOSTLYCLEANFILES): New var.
12674 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12675 (stdbool.h): New rule.
12676 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12677 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12678 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12679 m4/quote.m4: Upgrade to today's gnulib.
12680
12681 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12682 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12683 the tests right now.
12684 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12685 yyerror are declared before use; C99 requires this.
12686
25005f6a
PH
126872003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12688
12689 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12690 first.
12691 (yyrecoverSyntaxError): Correct the logic for setting and testing
12692 yyerrState.
12693 Correct comment on handling EOF.
12694 Allow states with only a default reduction, rather than failing
8dd76bee 12695 (I can't quite reconstruct why these were not allowed before).
25005f6a 12696
137437c6 12697 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 12698 buffer overruns, corrupting state.
8dd76bee
PE
12699
12700 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
12701 definition.
12702 * src/reader.h (max_left_semantic_context): New variable declaration.
12703 * src/scan-gram.l (max_left_semantic_context): Define.
12704 (handle_action_dollar): Update max_left_semantic_context.
12705 * data/glr.c (YYMAXLEFT): New definition.
12706 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12707 (yyresolveAction): Ditto.
12708
12709 Fixes to problems with location handling in GLR parsers reported by
12710 Frank Heckenbach (2003/06/05).
12711
12712 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12713 (YYRHSLOC): Add parentheses, and define only if locations used.
12714 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12715 locations not used.
12716 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12717 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 12718
25005f6a
PH
12719 * tests/cxx-type.at: Exercise location information; update tests
12720 to differentiate output with and without locations.
8dd76bee 12721 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
12722 because default YYLTYPE not yet defined.
12723 Change semantic actions to compute strings, rather than printing
12724 them directly (to test proper passing of semantics values). Change
12725 output to prefix notation and update test data and expected results.
12726 (yylex): Track locations.
12727 (stmtMerge): Return value rather than printing, and include arguments
12728 in value.
8dd76bee 12729
711f40b7
PE
127302003-06-03 Paul Eggert <eggert@twinsun.com>
12731
12732 Avoid warnings generated by GCC 2.95.4 when Bison is
12733 configured with --enable-gcc-warnings.
12734 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12735 yy::]b4_parser_class_name[::translate_,
12736 yy::Stack::operator[] (unsigned),
12737 yy::Stack::operator[] (unsigned) const,
12738 yy::Slice::operator[] (unsigned),
12739 yy::Slice::operator[] (unsigned) const):
12740 Rename local vars to avoid warnings.
12741 * tests/glr-regression.at (Improper handling of embedded actions
12742 and $-N in GLR parsers): Remove unused local variable from yylex.
12743 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12744 (void) as arg when not pure, since we now assume C89 when building
12745 Bison. Pacify GCC by using parameter.
12746
ac695f7d
PE
127472003-06-02 Paul Eggert <eggert@twinsun.com>
12748
12749 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12750 yy::Location::lines, yy::Location::columns): Rename arguments
12751 to avoid shadowing; this removes a warning generated by GCC 3.3.
12752
26ec81e0
PE
127532003-06-01 Paul Eggert <eggert@twinsun.com>
12754
12755 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12756 to g++, as GCC 3.3 complains if you do it.
12757 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12758 everything that WARNING_CFLAGS has, except omit warnings
12759 not suitable for C++.
12760 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12761 * tests/atlocal.in (CXXFLAGS): New var.
12762 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12763
12764 Fix a GLR parser bug I reported in February; see
161a71f3 12765 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
12766 The problem was that GLR parsers did not conform to the C standard,
12767 because actions like { $1 = $2 + $3; } expanded to expressions
12768 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12769 to a local variable. The C standard says that expressions
12770 like (var = f ()) + (var = f ()) have undefined behavior.
12771 Another problem was that GCC sometimes issues warnings that
12772 yyfill and its parameters are unused.
12773
12774 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12775 as possibly unused.
12776 (yyfill): New function.
12777 (YYFILL): Use it.
12778 (yyuserAction): Change type of yynormal to bool, so that it matches
12779 the new yyfill signature. Mark it as possibly unused.
12780
12781
12782 Follow up on a bug I reported in February, where a Bison-generated
12783 parser can loop. Provide a test case and a fix for yacc.c. I
12784 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12785 The original bug report is in:
161a71f3 12786 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
12787
12788 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12789 macro's size was becoming unwieldy.
12790 (yyerrlab): Do not discard an empty lookahead symbol, as this
12791 might destroy garbage.
12792 (yyerrorlab): New label, with the old contents of YYERROR,
12793 plus the following change: pop the stack of rhs corresponding
12794 to the production that invoked YYERROR. That is how Yacc
12795 behaves, and POSIX requires this behavior.
12796 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12797 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12798 Define 'alarm' to do nothing if unistd.h is not available.
12799 Add a new rule "exp: '-' error;" to test the above change to
12800 data/yacc.c. Use 'alarm' to abort any test taking longer than
12801 10 seconds, as it's probably looping.
12802 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12803 Also, the new yacc.c generates two fewer diagnostics for an
12804 existing test.
12805
d0829076
PE
128062003-05-24 Paul Eggert <eggert@twinsun.com>
12807
c6ae27df
PE
12808 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12809 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12810 This fixes a problem reported by John Bowman when the Compaq/HP
12811 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12812 -ansi -Wall -gall).
12813 * data/yacc.c (union yyalloc): Likewise.
12814 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 12815
d0829076
PE
12816 Switch from 'int' to 'bool' where that makes sense.
12817
12818 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12819 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12820 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12821 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12822 Return or accept bool, not int. All callers changed.
12823 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12824 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12825 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12826 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12827 bitset_or_and_cmp_): Likewise.
12828 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12829 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12830 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12831 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12832 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12833 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12834 bitset_stats_or_and_cmp): Likewise.
12835 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12836 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12837 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12838 ebitset_xor_cmp): Likewise.
12839 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12840 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12841 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12842 lbitset_xor_cmp): Likewise.
12843 * lib/bbitset.h: Include <stdbool.h>.
12844 (struct bitset_vtable): The following members now return bool, not
12845 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12846 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12847 or_and_cmp).
12848 * src/conflicts.c (count_rr_conflicts): Likewise.
12849 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12850 All uses changed.
12851 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12852 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12853 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12854 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12855 graph_flag): Likewise.
12856 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12857 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12858 graph_flag): Likewise.
12859 * src/output.c (error_verbose): Likewise.
12860 * src/output.h (error_verbose): Likewise.
12861 * src/reader.c (start_flag, typed): Likewise.
12862 * src/reader.h (typed): Likewise.
12863 * src/getargs.c (LOCATIONS_OPTION): New constant.
12864 (long_options, getargs): Use it.
12865 * src/lalr.c (build_relations): Use bool, not int.
12866 * src/nullable.c (nullable_compute): Likewise.
12867 * src/print.c (print_reductions): Likewise.
12868 * src/tables.c (action_row, pack_vector): Likewise.
12869 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12870 * src/output.c (prepare): Use it.
12871 * src/output.c (token_definitions_output,
12872 symbol_destructors_output, symbol_destructors_output): Use string,
12873 not boolean integer, to keep track of whether to output separator.
12874 * src/print_graph.c (print_core): Likewise.
12875 * src/state.c (state_rule_lookaheads_print): Likewise.
12876
12877 * config/install-sh: Sync from automake 1.7.5.
12878
6b2584b7
PE
128792003-05-14 Paul Eggert <eggert@twinsun.com>
12880
12881 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12882 semicolon after a grammar declaration, in the interest of possible
12883 future changes to the Bison input language.
12884 Do not allow a stray semicolon at the start of the grammar.
12885 (rhses.1): Allow one or more semicolons after any rule, including
12886 just before "|" as required by POSIX.
12887 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12888 grammar.
12889
caf37a36
ADL
128902003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12891
12892 %parse-param support for lalr1.cc.
12893
12894 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12895 b4_cc_constructor_calls, b4_cc_constructor_call,
12896 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12897 definitions.
12898 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12899 parse-param arguments.
12900 (yy::b4_parser_class_name): Declare instance variables to
12901 hold parse-param arguments.
12902 * tests/calc.at: s/value/semantic_value/ because value clashes
12903 with a member of yy::b4_parser_class_name. Adjust C++ code
12904 to handle %parse-param. Enable %parse-param test in C++.
12905
3ab37077
PE
129062003-05-12 Paul Eggert <eggert@twinsun.com>
12907
12908 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12909 English a bit. Fix fclose typo. Change "const char" to "char
12910 const", and use ANSI C rather than K&R for "main". Suggest
12911 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12912 and suggest yy_switch_to_buffer.
12913
129142003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
12915
12916 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12917 C89. This avoids a diagnostic on compilers that define __STDC__
12918 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 12919 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 12920
e743727f
PE
129212003-05-03 Paul Eggert <eggert@twinsun.com>
12922
12923 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12924 Do not overrun array bounds.
12925 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 12926 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 12927
916708d5
AD
129282003-04-29 Akim Demaille <akim@epita.fr>
12929
12930 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12931 * src/getargs.c, src/getargs.h: here, as bool, not int.
12932 (nondeterministic_parser): New.
12933 * src/parse-gram.y, src/scan-gram.l: Support
12934 %nondeterministic-parser.
12935 * src/output.c (prepare): Use nondeterministic_parser instead
12936 of glr_parser where appropriate.
12937 * src/tables.c (conflict_row, action_row, save_row)
12938 (token_actions, token_actions, pack_vector): Ditto.
12939
a06ea4aa
AD
129402003-04-29 Akim Demaille <akim@epita.fr>
12941
12942 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12943
211074ca
AD
129442003-04-29 Akim Demaille <akim@epita.fr>
12945
12946 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12947 with %pure-parser and %locations to exercise the patch from Yakov
12948 Markovitch below.
12949
6175ffe3
PE
129502003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12951
12952 * data/yacc.c: (b4_lex_param): Corrected for the case where
12953 %lex-param is provided and %pure-parser isn't.
12954
b1e95857
PE
129552003-04-27 Paul Eggert <eggert@twinsun.com>
12956
12957 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 12958 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
12959 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12960 if it is not defined.
12961 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12962
acda9df6
PE
129632003-04-26 Paul Eggert <eggert@twinsun.com>
12964
3470c57b
PE
12965 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12966 Declare to be of type suitable for the ninf value itself, not of
12967 type suitable for the corresponding table, since the latter might
12968 be unsigned but the ninf value might be negative. This fixes a
12969 bug reported by Alexandre Duret-Lutz in
161a71f3 12970 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 12971
acda9df6
PE
12972 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12973 invokes it. We shouldn't invoke it twice because it will attempt
12974 to put error.o in the archive twice. This fixes a glitch reported
12975 by Martin Mokrejs in
161a71f3 12976 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 12977
b5250f26
PE
129782003-04-21 Paul Eggert <eggert@twinsun.com>
12979
12980 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12981 to gnulib.
12982
089ac0f1
PE
129832003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12984
12985 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12986 Fix obvious typo that results in uncompilable GLR parsers
12987 when both %pure-parser and %locations are used. (trivial change)
12988
5ededac6
PE
129892003-04-17 Paul Eggert <eggert@twinsun.com>
12990
1b8f2fff
PE
12991 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12992 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12993 Do not insert the expected token via unput, as this runs afoul
12994 of a POSIX-compatibility bug in flex 2.5.31.
12995 All uses changed to BEGIN the parent state,
12996 since we no longer insert the expected token via unput.
12997 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12998 that is no longer emitted after the above change.
12999
5ededac6
PE
13000 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13001 the first one. This change is from Paul Hilfinger, and it fixes
13002 regression reported by Werner Lemberg in
161a71f3 13003 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
13004
13005 (resolve_sr_conflict): Don't invoke state_errs_set
13006 unless one or more tokens have been explicitly made errors.
13007 Otherwise, the above change causes Bison to abort.
13008
13009 * tests/existing.at (GNU pic Grammar): New test case, taken from
13010 Lemberg's email.
13011
b8be9132
AD
130122003-03-31 Akim Demaille <akim@epita.fr>
13013
13014 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13015
d423d460
AD
130162003-03-31 Akim Demaille <akim@epita.fr>
13017
13018 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13019 output.
13020
c7e441b4
AD
130212003-03-31 Akim Demaille <akim@epita.fr>
13022
13023 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13024 From Paul Hilfinger.
13025
231897ad
AD
130262003-03-29 Akim Demaille <akim@epita.fr>
13027
13028 * m4/error.m4: Do not put under dynamic conditions some code which
13029 expansion is under static control.
13030
5b066063
AD
130312003-03-29 Akim Demaille <akim@epita.fr>
13032
13033 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13034
22a74fec
AD
130352003-03-29 Akim Demaille <akim@epita.fr>
13036
13037 * doc/bison.texinfo (Strings are Destroyed): New.
13038
0eee27e7
PE
130392003-03-13 Paul Eggert <eggert@twinsun.com>
13040
13041 * .cvsignore: Add configure.lineno.
13042 * src/.cvsignore: Add yacc.
13043 * tests/.cvsignore: Add testsuite.log.
13044 * doc/fdl.texi: Sync with latest FSF version.
13045
f61aad93
PE
130462003-03-12 Paul Eggert <eggert@twinsun.com>
13047
537636c7
PE
13048 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13049 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13050 cursor, instead of leaving it undefined. This fixes a bug
13051 reported by Tim Van Holder in
161a71f3 13052 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
13053 * tests/input.at (Torturing the Scanner): Test the scanner on
13054 an empty input file, which was Tim Van Holder's test case.
13055
13056 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13057 <sys/resource.h> can be included, include sys/time.h and
13058 sys/times.h first, if available. This works around the SunOS
13059 4.1.4 porting bug reported by Bruce Becker in
161a71f3 13060 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
13061
13062 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13063 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13064 AC_HEADER_SYS_WAIT.
13065
f61aad93
PE
13066 Merge changes from gnulib. This was prompted because the CVS
13067 snapshot didn't build on Solaris 7 due to strnlen problems.
13068
13069 These changes need to be merged back into gnulib:
13070 * lib/hash.c: Include <stdbool.h> unconditionally.
13071 * m4/onceonly.m4 (m4_quote): New macro.
13072 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13073 Quote AC_FOREACH variable-expansions properly.
13074 The 2003-01-03 obstack.h change also needs merging.
13075 {end of changes requiring merging}
5b066063 13076
f61aad93
PE
13077 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13078 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13079 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13080 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13081 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13082 New files, imported from gnulib.
13083 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13084 above.
13085
13086 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13087 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13088 gnulib sources.
13089
13090 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13091 Add.
13092 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13093 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13094 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13095 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13096 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13097 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13098 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13099 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13100 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13101 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13102 (jm_PREREQ_ARGMATCH): Remove.
13103 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13104 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13105
13106 * src/system.h: Include <stdbool.h> unconditionally.
13107
13108 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13109 assuming at least C89 in the bitset code for some time now.
13110
d2ffe116
AD
131112003-03-03 Akim Demaille <akim@epita.fr>
13112
13113 * ro.po: New.
13114
052826fd
AD
131152003-03-02 Akim Demaille <akim@epita.fr>
13116
13117 * doc/bison.texinfo (Table of Symbols): Reactivate the
13118 documentation for %lex-param, and %parse-param.
13119
c4749565
AD
131202003-03-02 Akim Demaille <akim@epita.fr>
13121
13122 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13123 generate verbose error messages.
13124 Use the number of tokens as an upper bound in yytname, as it
13125 cannot be a non terminal.
13126
d5286af1
AD
131272003-03-02 Akim Demaille <akim@epita.fr>
13128
13129 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13130 message.
13131
22e304a6
AD
131322003-03-02 Akim Demaille <akim@epita.fr>
13133
22e304a6
AD
13134 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13135 Use them to exercise yycheck overrun.
13136 Based on Andrew Suffield's grammar.
13137
67a25fed
AD
131382003-03-02 Akim Demaille <akim@epita.fr>
13139
13140 Create tests/local.at for Bison generic testing macros.
13141
13142 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13143 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13144 This new file.
13145 * tests/calc.at (AT_CHECK_CALC): Adjust.
13146 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13147 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13148 * tests/local.at: here.
13149 (AT_COMPILE_CXX): Tags the tests using it as c++.
13150 Ignore the test if CXX is not functional.
13151
9c2b381f
PE
131522003-03-01 Paul Eggert <eggert@twinsun.com>
13153
13154 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13155 not loc->end, since loc->end might contain garbage and this leads
13156 to undefined behavior on some platforms.
13157 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13158 depend on *loc, so that the reader doesn't give the the false
13159 impression that *loc is initialized.
13160 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13161 does not survive the return.
13162
0433ba88
AD
131632003-03-01 Akim Demaille <akim@epita.fr>
13164
13165 * src/scan-gram.l (code_start): Always initialize it when entering
13166 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13167 yylex invocation. An alternative would be making it static, but
13168 then it starts with the second %%'s beginning, instead of its end.
13169
b305ea69
PE
131702003-02-28 Paul Eggert <eggert@twinsun.com>
13171
13172 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13173 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 13174 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 13175
c3d25e01
PE
131762003-02-26 Paul Eggert <eggert@twinsun.com>
13177
13178 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13179 Remove Sequent/Pyramid discussion (nobody uses them any more).
13180 Merge VMS and MS-DOS discussion; these ports may well be dead
13181 but let's keep mentioning them for now. Put <> around email
13182 addresses. Add copyright notice.
13183
c267ffbc
PE
131842003-02-24 Paul Eggert <eggert@twinsun.com>
13185
13186 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13187 to avoid collision with flex use of yylineno.
13188 Problem reported by Bruce Lilly in
161a71f3 13189 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
13190 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13191 * data/yacc.c (yy_reduce_print): Likewise.
13192
13193 * config/depcomp: Sync with Automake 1.7.3.
13194
f939fc12
AD
131952003-02-21 Akim Demaille <akim@epita.fr>
13196
13197 * data/lalr1.cc: Use temporary variables instead of casts to
13198 change integer types.
13199 Suggested by Paul Eggert.
13200
95923bd6
AD
132012003-02-21 Akim Demaille <akim@epita.fr>
13202
13203 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13204 to avoid confusions with lalr1.cc's notion of Position.
13205 Suggested by Paul Eggert.
13206
2cdc240e
AD
132072003-02-20 Akim Demaille <akim@epita.fr>
13208
13209 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13210 before initial_columns.
13211 (location.hh): Use consistent variable names when defining the
13212 operator<<.
13213 Use "last" so that we subtract from Positions, not from unsigned.
13214
5d003116
AD
132152003-02-20 Akim Demaille <akim@epita.fr>
13216
13217 * data/lalr1.cc (position.hh): New subfile, including the extended
13218 and Doxygen'ed documentation of class Position.
13219 (location.hh): Use it.
13220 Document a` la Doxygen.
ba1ecc07 13221 With the help of Benoit Perrot.
5d003116 13222
d02b25f9
AD
132232003-02-20 Akim Demaille <akim@epita.fr>
13224
13225 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13226 AT_YACC_IF.
13227 Redefine AT_YYERROR_SEES_LOC_IF using it.
13228 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13229 not defined.
13230 Don't use the location in yy::Parser::error_ and
13231 yy::Parser::print_ when not %locations.
13232 Activate more lalr1.cc tests.
13233
0d1c3a04
AD
132342003-02-19 Akim Demaille <akim@epita.fr>
13235
13236 * data/lalr1.cc: When displaying a line number, be sure to make it
13237 an int.
13238
60a777aa
AD
132392003-02-19 Akim Demaille <akim@epita.fr>
13240
13241 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13242 Remove, useless.
13243 (YYABORT, YYACCEPT, YYERROR): New.
13244 * tests/calc.at: Renable the lalr1.cc test.
13245
0b86fc41
AD
132462003-02-19 Akim Demaille <akim@epita.fr>
13247
13248 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13249 error recovery, mixing with/without pops and discarding of the
13250 lookahead.
13251 Exercise YYERROR.
13252 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13253
da99a5dc
PE
132542003-02-17 Paul Eggert <eggert@twinsun.com>
13255
13256 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13257 * tests/testsuite.at (AT_COMPILE): Use them.
13258 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 13259 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 13260
93b8c255
PE
132612003-02-12 Paul Eggert <eggert@twinsun.com>
13262
13263 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13264 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 13265 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
13266 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13267 Check for malloc failure, for consistency with yacc.c.
13268 (yytname_size): Remove, for consistency with yacc.c.
13269
13270 The bug still remains in data/lalr1.cc, as I didn't have time
13271 to fix it there.
13272
7548fed2
AD
132732003-02-06 Akim Demaille <akim@epita.fr>
13274
13275 * configure.ac (GXX): Rename as...
13276 (CXX): this, to keep the original Autoconf semantics.
13277 Require 2.57.
13278 * data/lalr1.cc: Fix b4_copyright invocations.
13279 If YYDEBUG is not defined, don't depend upon name_ being defined.
13280 (location.hh): Include string and iostream.
13281 (Position::filename): New member.
13282 (Position::Position ()): New.
13283 (operator<< (Position)): New.
13284 (operator- (Position, int)): New.
13285 (Location::first, Location::last): Rename as...
13286 (Location::begin, Location::end): these, to mock the conventional
13287 iterator names.
13288 (operator<< (Location)): New.
13289 * tests/atlocal.in (CXX): New.
13290 * tests/testsuite.at (AT_COMPILE_CXX): New.
13291 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13292 locations in a more synthetic way.
13293 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13294 lalr1.cc is used.
13295 Adjust the C locations to match those from Emacs: first column is
13296 column 0.
13297 Change all the expected results.
13298 Conform to the GCS: simplify the locations when applicable.
13299 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13300 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13301 these CPP macros with the m4 macros new defined by...
13302 (AT_CHECK_PUSHDEFS): this, i.e.:
13303 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 13304 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
13305 New macros.
13306 (AT_CHECK_POPDEFS): Undefine them.
13307 (AT_CHECK_CALC_LALR1_CC): New.
13308 Use it for the first lalr1.cc test.
13309
43a176ef
AD
133102003-02-04 Akim Demaille <akim@epita.fr>
13311
13312 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13313 Location as is defined.
13314
fc049e9c
AD
133152003-02-04 Akim Demaille <akim@epita.fr>
13316
13317 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
13318 name_ being defined.
13319
a737b216
PE
133202003-02-03 Paul Eggert <eggert@twinsun.com>
13321
13322 * src/gram.h (start_symbol): Remove unused decl.
13323
13324 Use more-consistent naming conventions for local vars.
13325
13326 * src/derives.c (derives_compute): Change type of local var from
13327 int to rule_number.
13328 * src/gram.c (grammar_rules_partial_print): Likewise.
13329 * src/print.c (print_core): Likewise.
13330 * src/reduce.c (reduce_grammar_tables): Likewise.
13331
13332 * src/gram.c (grammar_dump): Change name of item_number *
13333 local var from r to rp.
13334 * src/nullable.c (nullable_compute): Likewise.
13335
13336 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
13337
13338 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
13339 for symbol or symbol_number var.
13340 * src/reader.c (grammar_start_symbol_set): Likewise.
13341 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
13342 Likewise.
13343 * src/state.c (transitions_to): Likewise.
13344 * src/state.h: Likewise.
13345 * src/tables.c (symbol_number_to_vector_number): Likewise.
13346
13347 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
13348 char * var.
13349
13350 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
13351 var.
13352
13353 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
13354 var.
13355
13356 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
13357 Use str, not s, for char * var. Use ch, not c, for character var.
13358 Use size for size var.
13359
13360 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
13361 char * var.
13362 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
13363 uniqstr var.
13364 * src/uniqstr.h: Likewise.
13365
13366 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13367 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13368 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
13369 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
13370 param to have same name as that of enum, so that we don't use
13371 "s" to stand for a non-state.
13372
68e93ad5
AD
133732003-02-02 Akim Demaille <akim@epita.fr>
13374
13375 * src/scan-skel.l: Scan more than one inert character per yylex
13376 invocation.
13377
92898986
PE
133782003-02-01 Paul Eggert <eggert@twinsun.com>
13379
13380 Version 1.875a.
13381
1d9d5d71
PE
13382 * po/LINGUAS: Add ms.
13383
0435d061
AD
133842003-01-30 Akim Demaille <akim@epita.fr>
13385
13386 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
13387
6029a57f
PH
133882003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13389
13390 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
13391 of $1.
0435d061
AD
13392
13393 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 13394 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 13395 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 13396
6029a57f
PH
13397 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
13398 (b4_rhs_location): Ditto.
0435d061 13399 (yyfill): New function to copy from stack tree into array
6029a57f 13400 incrementally.
0435d061
AD
13401 (yyuserAction): Modify to allow incremental move of semantic values
13402 to rhs array when in GLR mode.
13403 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
13404 as needed.
13405 Remove dummy use of yystack, as there is now a guaranteed use.
13406 (yydoAction): Modify to allow incremental move of semantic values
13407 to rhs array when in GLR mode.
13408 (yyresolveAction): Ditto.
13409 (yyglrShiftDefer): Update comment.
0435d061 13410 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
13411 (yyglrReduce): Ditto.
13412 (yydoAction): Ditto
0435d061 13413
6029a57f
PH
13414 * tests/glr-regr1.at: Rename to ...
13415 * tests/glr-regression.at: Add new regression test for the problems
13416 described above (adapted from S. Eken).
13417 Update copyright notice.
13418 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13419 * tests/Makefile.am: Ditto.
13420
6cee6297
PE
134212003-01-28 Paul Eggert <eggert@twinsun.com>
13422
13423 * data/lalr1.cc: Do not use @output_header_name@ unless
13424 b4_defines_flag is set. This fixes two bugs reported by
13425 Tim Van Holder in
161a71f3
PE
13426 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13427 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 13428
b2a836b5
PE
134292003-01-21 Paul Eggert <eggert@twinsun.com>
13430
13431 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13432 we don't need to worry about yyerrlab1 being reported as an
13433 "unused label" by non-GCC C compilers. The downside is that if
13434 locations are used then a couple of statements are duplicated each
13435 time YYERROR is invoked, but the upside is that the warnings
13436 should vanish.
13437 (yyerrlab1): Move code to YERROR.
13438 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13439 This reverts some of the 2002-12-27 change.
13440
4196b931
PE
134412003-01-17 Paul Eggert <eggert@twinsun.com>
13442
13443 * src/output.c (symbol_printers_output): Fix typo that led
13444 to core dump. Problem reported by Antonio Rus in
161a71f3 13445 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 13446
3ae831b4
AD
134472003-01-13 Akim Demaille <akim@epita.fr>,
13448 Quoc Peyrot <chojin@lrde.epita.fr>,
13449 Robert Anisko <anisko_r@lrde.epita.fr>
13450
13451 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13452 when the stacks contain one element, as the loop would otherwise
13453 free the last state, and then use the top state (the one we just
13454 popped). This means that the initial elements will not be freed
13455 explicitly, as is the case in yacc.c; it is not a problem, as
13456 these elements have fake values.
13457
e3aa65c5
PE
134582003-01-11 Paul Eggert <eggert@twinsun.com>
13459
13460 * NEWS: %expect-violations are now just warnings, reverting
13461 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13462 bootstrapping problem reported by Matthias Klose; see
161a71f3 13463 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
13464 * src/conflicts.c (conflicts_print): Likewise.
13465 * tests/conflicts.at (%expect not enough, %expect too much,
13466 %expect with reduce conflicts): Likewise.
13467 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13468 that the warning is enabled if the number of conflicts changes
13469 (not necessarily increases).
13470
13471 * src/getargs.c (version): Update copyright year.
13472
f0057011
AD
134732003-01-09 Akim Demaille <akim@epita.fr>
13474
13475 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13476
1ee6d2a0
PE
134772003-01-08 Paul Eggert <eggert@twinsun.com>
13478
13479 * Makefile.maint (WGETFLAGS):
13480 New macro, containing "-C off" to disable proxy caches.
13481 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13482 (rel-check): Use $(WGET) instead of wget.
13483
d4fd77c4
PE
134842003-01-06 Paul Eggert <eggert@twinsun.com>
13485
13486 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13487 the GLR paper of Scott, Johnstone and Hussain.
13488
464c6927
PE
134892003-01-04 Paul Eggert <eggert@twinsun.com>
13490
d600ee67
PE
13491 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13492 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13493 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13494 (EXTRA_LIBRARIES): New var, for liby.a.
13495 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13496 (EXTRA_SCRIPTS): New var, for yacc.
13497
464c6927
PE
13498 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13499 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13500 Problem reported by Nelson H. F. Beebe.
13501
135022003-01-03 Paul Eggert <eggert@twinsun.com>
13503
13504 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13505 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13506 when compiling Bison 1.875's `bitset bset = obstack_alloc
13507 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13508
13509 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13510 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13511 grow to a huge size with typical invocation.
d600ee67 13512
464c6927
PE
13513 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13514 Use the pattern recommended by Autoconf 2.57, except also protect
13515 against double-definition.
13516 * src/system.h: Likewise.
13517 Portability issues reported by Nelson H. F. Beebe.
d600ee67 13518
464c6927
PE
13519 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13520 All uses changed. Provide a definition in both C and C++.
13521 (yytrue, yyfalse): Define even if defined (__cplusplus).
13522
13523 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13524 Reported by Nelson H. F. Beebe.
d600ee67 13525
464c6927
PE
13526 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13527
0f42c7d5
PE
135282003-01-02 Paul Eggert <eggert@twinsun.com>
13529
13530 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13531 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13532 Bug reported by Nelson H. F. Beebe.
13533
dc546b0f
PE
135342003-01-01 Paul Eggert <eggert@twinsun.com>
13535
13536 * Version 1.875.
13537
2c09b6a7
PE
135382002-12-30 Paul Eggert <eggert@twinsun.com>
13539
13540 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13541 Moved here from...
13542 (<INITIAL>","): Here. This causes stray "," to be treated
13543 more uniformly.
13544
dc546b0f 13545 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
13546 last brace in braced code when not in Yacc mode, for compatibility
13547 with Bison 1.35. This resurrects the 2001-12-15 patch to
13548 src/reader.c.
13549
13550 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13551 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13552
535c0f63
PE
135532002-12-28 Paul Eggert <eggert@twinsun.com>
13554
13555 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13556 that of SYM's type. This fixes Debian bug 168069, reported by
13557 Thomas Olsson.
d600ee67 13558
963fcc17
PE
135592002-12-28 Paul Eggert <eggert@twinsun.com>
13560
13561 Version 1.75f.
13562
13563 Switch back to the Yacc style of conflict reports, undoing some
13564 of the 2002-07-30 change.
13565 * doc/bison.texinfo (Understanding): Use Yacc style for
13566 conflict reports. Also, use new way of locating rules.
13567 * src/conflicts.c (conflict_report):
13568 Renamed from conflict_report_yacc, removing the old
13569 'conflict_report'. Translate the entire conflict report at once,
13570 so that we don't assume that "," has the same interpretation in
13571 all languages.
13572 (conflicts_output): Use Yacc-style conflict report for each state,
13573 instead of our more-complicated style.
13574 (conflicts_print): Use Yacc-style conflict report, except print
13575 the input file name when not emulating Yacc.
13576 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13577 Conflicted Reduction, %expect not enough, %expect too much,
13578 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13579 * tests/existing.at (GNU Cim Grammar): Likewise.
13580 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13581
13582 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13583 fatal): Don't invoke fflush; it's not needed and it might even be
13584 harmful for stdout, as stdout might not be open.
13585 * src/reduce.c (reduce_print): Likewise.
13586
b1efe548
PE
135872002-12-27 Paul Eggert <eggert@twinsun.com>
13588
13589 Fix a bug where error locations were not being recorded correctly.
13590 This problem was originally reported by Paul Hilfinger in
161a71f3 13591 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
13592
13593 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13594 top of the location stack's error locations.
13595 (yyerrlab): Set it. When discarding a token, push its location
13596 onto yylerrsp so that we don't lose track of the error's end.
13597 (yyerrlab1): Now is only the target of YYERROR, so that we can
13598 properly record the location of the action that failed. For GCC
13599 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13600 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13601 (yyerrlab2): New label, which yyerrlab now falls through to.
13602 Compute the error's location by applying YYLLOC_DEFAULT to
13603 the locations of all the symbols that went into the error.
13604 * doc/bison.texinfo (Location Default Action): Mention that
13605 YYLLOC_DEFAULT is also invoked for syntax errors.
13606 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13607 Error locations include the locations of all the tokens that were
13608 discarded, not just the last token.
d600ee67 13609
983c5c2c
PE
136102002-12-26 Paul Eggert <eggert@twinsun.com>
13611
b1efe548
PE
13612 * src/files.c: Include quote.h.
13613 (compute_output_file_names): Warn if we detect conflicting
13614 outputs to the same file. This should catch the misunderstanding
13615 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13616
13617 * src/conflicts.c (conflicts_print): If the user specifies
13618 "%expect N", report an error if there are any reduce/reduce
13619 conflicts. This is what the manual says should happen.
13620 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13621 * tests/conflicts.at (%expect with reduce conflicts): New test.
13622
983c5c2c
PE
13623 Don't use m4_include on relative file names, as it doesn't work as
13624 desired if there happens to be a file with that name under ".".
d600ee67 13625
983c5c2c
PE
13626 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13627 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13628 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13629 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13630 * src/output.c (output_skeleton): Use full path names when
13631 specifying a file to include; don't rely on include path, as
13632 it's unreliable when the working file contains a file with
13633 that name.
d600ee67 13634
983c5c2c
PE
136352002-12-25 Paul Eggert <eggert@twinsun.com>
13636
13637 Remove obsolete references to bison.simple and bison.hairy.
13638 Problem mentioned by Aubin Mahe in
161a71f3 13639 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
13640 * data/glr.c: Comment fix.
13641 * doc/bison.1: Remove references. Also, mention "yacc".
13642
13643 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13644 with -g option.
13645
13646 * src/parse-gram.y (declaration): Use enum "report_states" rather
13647 than its numeric value 1.
13648
13649 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13650 opening a new one. This fixes Debian bug 165349, reported by
13651 Bruce Stephens.
13652
23f2d9dc
PE
136532002-12-24 Paul Eggert <eggert@twinsun.com>
13654
13655 Version 1.75e.
13656
13657 * Makefile.maint (cvs-update): Don't assume that the shell
13658 supports $(...), as Solaris sh doesn't.
13659
13660 * src/parse-gram.y (lloc_default): Remove test for empty
13661 nonterminals at the end, since it didn't change the result.
13662
136632002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
13664
13665 If the user does not define YYSTYPE as a macro, Bison now declares it
13666 using typedef instead of defining it as a macro. POSIX requires this.
13667 For consistency, YYLTYPE is also declared instead of defined.
13668
13669 %union directives can now have a tag before the `{', e.g., the
13670 directive `%union foo {...}' now generates the C code
13671 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13672 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13673 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13674 instead of `yyltype'.
13675
13676 `yystype' and `yyltype' are now obsolescent macros instead of being
13677 typedefs or tags; they are no longer documented and will be
13678 withdrawn in a future release.
13679
13680 * data/glr.c (b4_location_type): Remove.
13681 (YYSTYPE): Renamed from yystype.
13682 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13683 (struct YYLTYPE): Renamed from struct yyltype.
13684 (YYLTYPE): Renamed from yyltype.
13685 (yyltype, yystype): New (and obsolescent) macros,
13686 for backward compatibility.
13687 * data/yacc.c: Likewise.
13688
13689 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13690 does not specify a union tag. This is for compatibility with
13691 Solaris 9 yacc.
13692
13693 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13694 const *, since it is now modified by stripping surrounding { }.
13695 (current_braced_code): Remove.
13696 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13697 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13698 trailing " {...}". Now of type <chars>.
13699 (grammar_declaration): Adjust to bundled tokens.
13700 (code_content): Remove; stripping is now done by add_param.
13701 (print_token_value): Print contents of bundled tokens.
13702 (token_name): New function.
13703
13704 * src/reader.h (braced_code, current_braced_code): Remove.
13705 (token_name): New decl.
13706
13707 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13708 token_type, not braced_code code_kind. All uses changed.
13709 (SC_PRE_CODE): New state, for scanning after a keyword that
13710 has (or usually has) an immediately-following braced code.
13711 (token_type): New local var, to keep track of which token type
13712 to return when scanning braced code.
13713 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 13714 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
13715 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13716 instead of returning a token type immediately.
13717 (<INITIAL>"{"): Set token type.
13718 (<SC_BRACED_CODE>"}"): Use it.
13719 (handle_action_dollar, handle_action_at): Now returns bool
13720 indicating success. Fail if ! current_rule; this prevents a core dump.
13721 (handle_symbol_code_dollar, handle_symbol_code_at):
13722 Remove; merge body into caller.
13723 (handle_dollar, handle_at): Complain in invalid contexts.
13724
13725 * NEWS, doc/bison.texinfo: Document the above.
13726 * NEWS: Fix years and program names in copyright notice.
13727
879ca4f8
PE
137282002-12-17 Paul Eggert <eggert@twinsun.com>
13729
13730 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13731 Reporting, Table of Symbols): Omit mentions of %lex-param and
13732 %parse-param from the documentation for now.
13733
1c5fe69d
PE
137342002-12-15 Paul Eggert <eggert@twinsun.com>
13735
13736 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13737 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13738 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
13739 disagreed with the Bison documentation. Bug
13740 reported by Andrew Walrond.
d600ee67 13741
1c5fe69d
PE
13742 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13743 as the caller now does that.
13744 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13745 (YYEMPTY): Parenthesize right hand side, since others use it.
13746 (yyparse): Don't assume that our generated code is the only code
13747 that sets yychar.
13748
d1de5372
PE
137492002-12-13 Paul Eggert <eggert@twinsun.com>
13750
13751 Version 1.75d.
13752
13753 POSIX requires a "yacc" command.
13754 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13755 (MOSTLYCLEANFILES): Add yacc.
13756 (yacc): New rule.
1c5fe69d 13757 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
13758 as an alias for bison y.
13759
13760 * po/LINGUAS: Add da.
d600ee67 13761
d1de5372
PE
13762 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13763 problem with latest <getopt.h>.
13764 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13765
13766 * doc/fdl.texi: Upgrade to 1.2.
13767 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13768 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13769 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13770 gnulib.
13771 * config/install-sh: Sync with autotools.
13772
13773 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 13774 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
13775 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13776 locations are requested.
13777 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13778 locations are requested.
13779
d0f3fe23
PE
137802002-12-12 Paul Eggert <eggert@twinsun.com>
13781
13782 Remove unportable casts and storage allocation tricks.
13783 While we're at it, remove almost all casts, since they
13784 usually aren't needed and are a sign of trouble.
13785
13786 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13787
13788 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13789 the pointer DSET returned by malloc; this isn't portable.
13790 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13791 Similarly for DERIVES.
13792 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13793 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13794 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13795
13796 * src/derives.c (derives_compute): Do not bother invoking
13797 int_of_rule_number, since rule numbers are integers.
13798
13799 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13800 rather than XMALLOC (char, N).
13801
13802 * src/files.c (filename_split): Rewrite to avoid cast.
13803
13804 * src/gram.h (symbol_number_as_item_number,
13805 item_number_as_symbol_number, rule_number_as_item_number,
13806 item_number_as_rule_number):
13807 Now inline functions rather than macros, to avoid casts.
13808 * src/state.h (state_number_as_int): Likewise.
13809 * src/tables.c (state_number_to_vector_number,
13810 symbol_number_to_vector_number): Likewise.
13811
13812 * src/gram.h (int_of_rule_number): Remove; no longer used.
13813
13814 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13815 since the resulting storage is always stored into.
13816
13817 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13818 where it's needed.
13819
13820 * src/muscle_tab.c (muscle_m4_output):
13821 Now inline. Return bool, not int.
13822 * src/state.c (state_compare): Likewise.
13823 * src/symtab.c (symbol_check_defined,
13824 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13825 hash_compare_symbol, hash_symbol):
13826 Likewise.
13827 * src/uniqstr.c (uniqstr_print): Likewise.
13828 * src/muscle_tab.c (muscle_m4_output_processor):
13829 New function, to avoid casts.
13830 * src/state.c (state_comparator, stage_hasher): Likewise.
13831 * src/symtab.c (symbol_check_defined_processor,
13832 symbol_check_alias_consistency_processor, symbol_pack_processor,
13833 symbol_translation_processor, hash_symbol_comparator,
13834 hash_symbol_hasher): Likewise.
13835 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13836 * src/muscle_tab.c (muscles_m4_output):
13837 Use new functions instead of casting old functions unportably.
13838 * src/state.c (state_hash_new): Likewise.
13839 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13840 symbols_token_translations_init):
13841 Likewise.
13842 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13843
13844 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13845 var instead of casting to long, to avoid casts.
13846 (prepare_states): Use MALLOC rather than alloca, so that we don't
13847 have to worry about alloca.
13848 * src/state.c (state_hash_lookup): Likewise.
13849
13850 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13851 local var instead of casting to unsigned char, to avoid casts.
13852
13853 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13854 STATE_ALLOC): Remove.
13855 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13856 rather than calloc, and use offsetof to avoid allocating slightly
13857 too much storage.
13858 (state_new): Initialize all members.
13859
13860 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13861
13862 * src/symtab.c (symbol_free): Remove; unused.
13863 (symbol_get): Remove cast in lhs of assignment.
13864 (symbols_do): Now static. Accept generic arguments, not
13865 hashing-related ones.
13866
13867 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13868 (symbol_processor): Remove.
13869 (symbols_do): Remove decl; now static.
13870
13871 * src/system.h (alloca): Remove; decl no longer needed.
13872 (<stddef.h>): Include, for offsetof.
13873 (<inttypes.>, <stdint.h>): Include if available.
13874 (uintptr_t): New type, if system lacks it.
13875 (CALLOC, MALLOC, REALLOC): New macros.
13876 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13877 new macros.
13878
13879 * src/tables.c (table_size): Now int, to pacify GCC.
13880 (table_grow, table_ninf_remap): Use signed table size.
13881 (save_row): Don't bother initializing locals when not needed.
13882 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13883 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13884
13885 * src/vcg.h: Correct misspellings.
13886
13887 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13888
13889
13890 * src/getargs.c (getargs): Don't assume EOF == -1.
13891
26b4a969
PE
138922002-12-09 Paul Eggert <eggert@twinsun.com>
13893
13894 Change identifier spellings to avoid collisions with names
13895 that are reserved by POSIX.
13896
13897 Don't use names ending in _t, since POSIX reserves them.
13898 For consistency, remove _e and _s endings -- they're weren't
13899 needed to remove ambiguity. All uses changed.
13900 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13901 turn was just renamed from struniq_t.
13902 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13903 which in turn was just renamed from struniq_processor_t.
13904 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13905 in turn was renamed from hash_compare_struniq_t.
13906 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13907 (state_list): Renamed from state_list_t.
13908 * src/assoc.h (assoc): Renamed from assoc_t.
13909 * src/conflicts.c (enum conflict_resolution): Renamed from
13910 enum conflict_resolution_e.
13911 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13912 (rule_list): Renamed from rule_list_t.
13913 * src/getargs.h (enum trace): Renamed from enum trace_e.
13914 (enum report): Renamed from enum report_e.
13915 * src/gram.h (item_number): Renamed from item_number_t.
13916 (rule_number): Renamed from rule_number_t.
13917 (struct rule_s): Remove the "rule_s" part; not used.
13918 (rule): Renamed from rule_t.
13919 (rule_filter): Renamed from rule_filter_t.
13920 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13921 (goto_list): Renamed from goto_list_t.
13922 * src/lalr.h (goto_number): Renamed from goto_number_t.
13923 * src/location.h (location): Renamed from location_t.
13924 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13925 and moved here from:
13926 * src/muscle_tab.h (muscle_entry_t): here.
13927 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13928 (rule_list): Renamed from rule_list_t.
13929 * src/print_graph.c (static_graph): Renamed from graph.
13930 * src/reader.h (braced_code): Renamed from braced_code_t.
13931 Remove brace_code_e tag.
13932 * src/relation.h (relation_node): Renamed from relation_node_t.
13933 (relation_nodes): Renamed from relation_nodes_t.
13934 (relation): Renamed from relation_t.
13935 * src/state.h (state_number): Renamed from state_number_t.
13936 (struct state): Renamed from struct state_s.
13937 (state): Renamed from state_t.
13938 (transitions): Renamed from transitions_t. Unused (and
13939 misspelled) transtion_s tag removed.
13940 (errs): Renamed from errs_t. Unused errs_s tag removed.
13941 (reductions): Renamed from reductions_t. Unused tag
13942 reductions_s removed.
13943 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13944 (struct symbol_list): Renamed from struct symbol_list_s.
13945 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13946 (struct symbol): Renamed from struct symbol_s.
13947 (symbol): Renamed from symbol_t.
13948 * src/tables.c (vector_number): Renamed from vector_number_t.
13949 (action_number): Renamed from action_t.
13950 * src/tables.h (base_number): Renamed from base_t.
13951 * src/vcg.h (enum color): Renamed from enum color_e.
13952 (enum textmode): Renamed from enum textmode_e.
13953 (enum shape): Renamed from enum shape_e.
13954 (struct colorentry): Renamed from struct colorentry_s.
13955 (struct classname): Renamed from struct classname_s.
13956 (struct infoname): Renamed from struct infoname_s.
13957 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13958 (enum decision): Renamed from enum decision_e.
13959 (enum orientation): Renamed from enum orientation_e.
13960 (enum alignment): Renamed from enum alignment_e.
13961 (enum arrow_mode): Renamed from enum arrow_mode_e.
13962 (enum crossing_type): Renamed from enum crossing_type_e.
13963 (enum view): Renamed from enum view_e.
13964 (struct node): Renamed from struct node_s.
13965 (node): Renamed from node_t.
13966 (enum linestyle): Renamed from enum linestyle_e.
13967 (enum arrowstyle): Renamed from enum arrowstyle_e.
13968 (struct edge): Renamed from struct edge.
13969 (edge): Renamed from edge_t.
13970 (struct graph): Renamed from struct graph_s.
13971 (graph): Renamed from graph_t.
13972 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13973 Rename value_t -> value.
13974 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13975 value_t_as_yystype -> value_as_yystype.
13976
13977 Don't include <errno.h> in the mainstream code, since it
13978 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13979 * lib/get-errno.c, lib/get-errno.h: New files.
13980 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13981 get-errno.c.
13982 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13983 * src/output.c (output_skeleton): Likewise.
13984 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13985 instead of errno.
13986 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13987 Likewise.
13988 (handle_action_dollar, handle_action_at): Likewise.
13989 * src/system.h: Do not include <errno.h>.
13990 (TAB_EXT): Renamed from EXT_TAB.
13991 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13992
13993 Avoid str[a-z]*, since <string.h> reserves that name space.
13994 Change all instances of "struniq" in names to "uniqstr", and
13995 likewise for "STRUNIQ" and "UNIQSTR".
13996 * src/uniqstr.c: Renamed from src/struniq.c.
13997 * src/uniqstr.h: Renamed from src/struniq.h.
13998 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13999 * src/files.c (strsuffix): Remove; unused.
14000 (concat2): Renamed from stringappend. Now static.
14001 * src/files.h (strsuffix, stringappend): Remove; unused.
14002 * src/parse-gram.y (<chars>): Renamed from <string>.
14003 (<uniqstr>): Renamed from <struniq>.
14004 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14005 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14006 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14007 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14008 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14009 (N_EXPAND): Renamed from N_STRETCH.
14010
14011 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14012 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14013 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14014 Remove; unused.
14015 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14016 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14017 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14018 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14019 (BASE_MAXIMUM): Renamed from BASE_MAX.
14020 (BASE_MINIMUM): Renamed from BASE_MIN.
14021 (ACTION_MAX): Remove; unused.
14022 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14023 Unnecessary casts removed from above defines.
14024
14025
14026 Fix misspelling in names.
14027 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14028 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14029 G_NODE_ALIGNEMENT.
14030
14031
14032 * lib/timevar.c (timevar_report): Renamed from time_report,
14033 for consistency with other names.
14034 * lib/timevar.h (timevar_report): New decl.
14035 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14036
14037
14038 Sort include-file uses.
14039
14040 Reorder all include files under src to be in the order "system.h".
14041 then the ../lib include files in angle brackets (alphabetized),
14042 then the . include files in double-quotes (alphabetized). Fix
14043 dependency breakages encountered in this process, as follows:
14044 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14045 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14046 * src/state.h: Include "symtab.h".
14047
996b1c7e
PE
140482002-12-08 Paul Eggert <eggert@twinsun.com>
14049
14050 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14051 since this causes problems when __file__ contains character
14052 sequences like "@" that are treated specially by src/scan-skel.l.
14053 Instead, just use the file's basename. This fixes the bug
14054 reported by Martin Mokrejs in
161a71f3 14055 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 14056
e19c4e5d
PE
140572002-12-06 Paul Eggert <eggert@twinsun.com>
14058
14059 Add support for rules that do not have trailing semicolons, as
14060 POSIX requires. Improve the quality of locations in Bison
14061 diagnostics.
26b4a969 14062
e19c4e5d
PE
14063 * src/location.c: Include <quotearg.h>.
14064 (empty_location): Now const.
14065 (location_print): New function. Follow the recommendation of the
14066 GNU Coding Standards for locations that span file boundaries.
14067 * src/location.h: Do not include <quotearg.h>; no longer needed.
14068 (boundary): New type.
14069 (location_t): Use it. This allows locations to span file boundaries.
14070 All member uses changed: file -> start.file or end.file (as needed),
14071 first_line -> start.line, first_column -> start.column,
14072 last_line -> end.line, last_column -> end.column.
14073 (equal_boundaries): New function.
14074 (LOCATION_RESET, LOCATION_STEP): Remove.
14075 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14076 (empty_location): Now const.
14077 (location_print): New decl.
14078 * src/parse-gram.y (lloc_default): New function, which handles
14079 empty locations more accurately.
14080 (YYLLOC_DEFAULT): Use it.
14081 (%token COLON): Remove.
14082 (%token ID_COLON): New token.
26b4a969 14083 (rules): Use it.
e19c4e5d
PE
14084 (declarations, rules): Remove trailing semicolon.
14085 (declaration, rules_or_grammar_declaration):
14086 Allow empty (";") declaration.
14087 (symbol_def): Remove empty actions; no longer needed.
14088 (rules_or_grammar_declaration): Remove trailing semicolon.
14089 (semi_colon.opt): Remove.
14090 * src/reader.h: Include location.h.
14091 (scanner_cursor): New decl.
14092 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14093 rolling our own.
14094 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14095 of *loc.
14096 (STEP): Remove. No longer needed, now that adjust_location does
14097 the work. All uses removed.
14098 (scanner_cursor): New var.
14099 (adjust_location): Renamed from extend_location. It now sets
14100 *loc and adjusts the scanner cursor. All uses changed.
14101 Don't bother testing for CR.
14102 (handle_syncline): Remove location arg; now updates scanner cursor.
14103 All callers changed.
14104 (unexpected_end_of_file): Now accepts start boundary of token or
14105 comment, not location. All callers changed. Update scanner cursor,
14106 not the location.
14107 (SC_AFTER_IDENTIFIER): New state.
14108 (context_state): Renamed from c_context. All uses changed.
14109 (id_loc, code_start, token_start): New local vars.
14110 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14111 processing of Yacc white space and equivalents here.
14112 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14113 instead of returning ID immediately, since we need to search for
14114 a subsequent colon.
14115 (<INITIAL>"'", "\""): Save token_start.
14116 (<INITIAL>"%{", "{", "%%"): Save code_start.
14117 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14118 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14119 BEGIN context_state at end, not INITIAL.
14120 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14121 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14122 Return correct token start.
14123 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14124 the start of a character, string or multiline comment is found.
14125 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14126 Reduction): Adjust reported locations to match the more-precise
14127 results now expected.
14128 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14129 * tests/reduce.at (Useless Rules, Reduced Automaton,
14130 Underivable Rules): Likewise.
14131 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14132 or "|"' now that so many other tokens are allowed by the new grammar.
14133
14134 * src/complain.h (current_file): Remove duplicate decl;
14135 current_file is now owned by files.h.
14136 * src/complain.c, src/scan-gram.l: Include files.h.
14137
141382002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 14139
e19c4e5d
PE
14140 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14141 promotes to int; it might be unsigned int.
14142 * data/yacc.c (yy_reduce_print): Likewise.
14143
14144 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14145 be #defined in the prologue, not in the Bison declarations.
14146 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 14147
b64755e3
PE
141482002-12-02 Paul Eggert <eggert@twinsun.com>
14149
14150 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14151 * lib/strtoul.c: New file, from gnulib.
14152 This fixes a porting bug reported by Peter Klein in
161a71f3 14153 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 14154
6e746484
PE
141552002-11-30 Paul Eggert <eggert@twinsun.com>
14156
b64755e3
PE
14157 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14158 and put only a forward declaration in the prologue. This is for
14159 consistency with the other scanner helper functions.
14160
6ba55592
PE
14161 Type clashes now generate warnings, not errors, since it
14162 appears that POSIX may allow some grammars with type clashes.
14163 * src/reader.c (grammar_current_rule_check): Warn about
14164 type clashes instead of complaining.
14165 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14166
6e746484
PE
14167 Add Yacc library, since POSIX requires it.
14168 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14169 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14170 * lib/main.c, lib/yyerror.c: New files.
14171
14172 gram_error can be static; it need not be extern.
14173 * src/reader.h (gram_error): Remove decl.
14174 * src/parse-gram.y (gram_error): Now static. Add static decl.
14175 (print_token_value): Omit parameter names from forward decl,
14176 for consistency.
14177
88510f9c
PE
141782002-11-29 Paul Eggert <eggert@twinsun.com>
14179
6e746484
PE
14180 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14181 be declared before being used. E.g., one should typically
14182 declare them in the prologue. Use GNU coding style in examples.
14183 Put "const" consistently after the type it modifies. Mention
14184 that C99 supports "inline". Mention that yyerror traditionally
14185 returns "int".
14186
88510f9c
PE
14187 %parse-param and %lex-param now take just one argument, the
14188 declaration; the argument name is deduced from the declaration.
14189
14190 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14191 Reporting, Table of Symbols): Document this.
14192 * src/parse-gram.y (add_param): New function.
14193 (COMMA): Remove.
14194 (declaration): Implement new rule for %parse-param and %lex-param.
14195 * src/scan-gram.l: "," now elicits a warning, rather than being
14196 a token; this is more compatible with byacc.
14197 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14198
bb92250c
PE
141992002-11-27 Paul Eggert <eggert@twinsun.com>
14200
14201 Rename identifiers to avoid real and potential collisions.
14202
14203 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14204 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 14205 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
14206 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14207 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14208 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14209 All uses changed.
14210 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14211 The name "yycontrol" violates the name space rules, and this stuff
14212 wasn't being used anyway.
14213 (input): Remove action; this stuff wasn't being used.
14214 (gram_error): Rename local variable yylloc -> loc.
14215 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14216 (YY_DECL): Don't use "yy" at start of local variables.
14217 All uses changed, e.g., yylloc -> loc.
14218 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14219 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14220 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14221 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14222
14223 * src/parse-gram.y (gram_error): loc is now const *.
14224 * src/reader.h (gram_error): Likewise.
14225
3af4feb2
PE
142262002-11-24 Paul Eggert <eggert@twinsun.com>
14227
14228 Version 1.75c.
14229
14230 * tests/actions.at (Actions after errors): Use an output format
14231 more similar to that of the Printers and Destructors test.
14232 Test the position of the ';' token too.
14233 (Printers and Destructors): Likewise.
14234 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14235 unnecessarily alarming people when the test fails.
14236
14237 * data/yacc.c (yyerrlab1): Move this label down, so that the
14238 parser does not discard the lookahead token if the user code
14239 invokes YYERROR. This change is required for POSIX conformance.
14240
14241 * lib/error.c: Sync with gnulib.
14242
142432002-11-22 Paul Eggert <eggert@twinsun.com>
14244
14245 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14246 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14247 * lib/xmalloc.c: Likewise.
26b4a969 14248
58004308
PE
142492002-11-20 Paul Eggert <eggert@twinsun.com>
14250
14251 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14252
142532002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 14254
58004308
PE
14255 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14256 should use `if (! x) abort ();' rather than `assert (x);', and
14257 anyway it's one less thing to worry about configuring.
14258
14259 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14260 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14261 and replace all instances of assert with abort.
14262 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14263 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14264
14265 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14266 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14267 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14268 hash_find_entry, hash_rehash, hash_insert): Likewise.
14269 * src/conflicts.c (resolve_sr_conflict): Likewise.
14270 * src/lalr.c (set_goto_map, map_goto): Likewise.
14271 * src/nullable.c (nullable_compute): Likewise.
14272 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14273 * src/reader.c (packgram, reader): Likewise.
14274 * src/state.c (state_new, state_free, state_transitions_set,
14275 state_reduction_find): Likewise.
14276 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14277 symbol_pack): Likewise.
14278 * src/tables.c (conflict_row, pack_vector): Likewise.
14279 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14280 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14281 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14282 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14283
14284 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14285 (ARGMATCH_CONSTRAINT): New macro.
14286 (ARGMATCH_ASSERT): Use it.
14287
14288 * src/system.h (verify): New macro.
14289 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14290 rather than assert.
14291 * src/tables.c (tables_generate): Likewise.
14292
14293 * src/struniq.c (struniq_assert): Now returns void, and aborts
14294 if the assertion is false.
14295 (struniq_assert_p): Remove.
14296 * src/struniq.h: Likewise.
14297
76ae8198
PE
142982002-11-18 Paul Eggert <eggert@twinsun.com>
14299
14300 * data/glr.c (yygetLRActions): Replace `yyindex' with
14301 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14302 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 14303 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 14304
d3c4e709
AD
143052002-11-18 Akim Demaille <akim@epita.fr>
14306
14307 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14308 space.
14309 From Tim Van Holder.
14310
8d8a7238
PE
143112002-11-17 Paul Eggert <eggert@twinsun.com>
14312
14313 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14314 to "SyntaxError" for consistency with my 2002-11-15 change.
14315
14316 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14317 not define to {}, since this breaks the common use of `YYDPRINTF
14318 ((...));' if a single statement is desired (e.g. before `else').
14319 Work around GCC warnings by surrounding corresponding calls with
14320 {} if needed.
14321 (yyhasResolvedValue): Remove unused function.
14322 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
14323 loop body.
14324 (yyreportSyntaxError): Renamed from yyreportParseError.
14325 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
14326 All uses changed.
14327 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
14328 extern when possible. Remove unused initializations.
14329
b0937b22
AD
143302002-11-16 Akim Demaille <akim@epita.fr>
14331
14332 Augment the similarity between GLR and LALR traces.
14333
14334 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
14335 (YY_REDUCE_PRINT): New.
14336 (yyparse): Use them.
14337 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
14338 YYDPRINT here.
14339 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
14340 state reached after the reduction/recovery, since...
14341 (yyparse, yyprocessOneStack): Report the state we are entering in.
14342
c5e3e510
AD
143432002-11-16 Akim Demaille <akim@epita.fr>
14344
14345 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
14346 Add support for --trace=skeleton.
14347 * src/scan-skel.l: %option debug.
14348 Scan strings of non-@ or \n instead of character by character.
14349 (scan_skel): Handle trace_skeleton.
14350 (QPUTS): New.
14351 (@output_parser_name@, @output_header_name@): ``Restore'' their
14352 support (used to be M4 macros).
14353 * data/yacc.c: Quote larger chunks, a la glr.c.
14354 * data/lalr1.cc: Likewise.
14355 The header guards are no longer available, so use some other
14356 string than `YYLSP_NEEDED'.
14357
4c6cc1db
AD
143582002-11-16 Akim Demaille <akim@epita.fr>
14359
14360 Make the ``Printers and Destructors'' test more verbose, taking
14361 `yacc.c''s behavior as (possibly wrong) reference.
14362
14363 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
14364 instead of fprint on stdout.
14365 Set and report the last_line of the symbols.
14366 Consistently display values and locations.
14367
6d9e8019
PE
143682002-11-16 Paul Eggert <eggert@twinsun.com>
14369
14370 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
14371
6e649e65
PE
143722002-11-15 Paul Eggert <eggert@twinsun.com>
14373
b25d88f6
PE
14374 * tests/actions.at (Actions after errors): New test case.
14375
6e649e65
PE
14376 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
14377 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
14378 tests/action.at, tests/calc.at, tests/conflicts.at,
14379 tests/cxx-type.at, tests/regression.at:
14380 "parse error" -> "syntax error" for POSIX compatibility.
14381 "parsing stack overflow..." -> "parser stack overflow" so
14382 that code matches Bison documentation.
14383
0f39aab9
AD
143842002-11-15 Akim Demaille <akim@epita.fr>
14385
14386 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
14387 take two BRACED_CODE, not two string_content.
14388 Free the scanner's obstack when we are done.
14389 (code_content): New.
14390 * tests/calc.at: Adjust.
14391 * doc/bison.texinfo: Adjust.
14392 Also, make sure to include the `,' for these declarations.
14393
761c1926
AD
143942002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
14395
14396 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
14397 definition; avoids potential autoreconf problems.
14398
b0f98b10
AD
143992002-11-15 Akim Demaille <akim@epita.fr>
14400
14401 Always check the value returned by yyparse.
14402
14403 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14404 returned by yyparse.
14405 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14406 Adjust calls.
14407 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14408 returned by yyparse.
14409
970785f1
PH
144102002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14411
14412 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14413 on input.at test.
14414
8fcc7db1
PE
144152002-11-14 Paul Eggert <eggert@twinsun.com>
14416
7ec1b48e
PE
14417 * src/output.c (output_skeleton): Call xfopen instead of
14418 duplicating xfopen's body.
14419
cfff7583 14420 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 14421 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 14422
8fcc7db1
PE
14423 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14424 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14425 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14426 file twice in the grammar, as an extra check.
14427
14428 * tests/input.at (Torturing the Scanner): Surround the
14429 backslash-newline tests with "#if 0", to make it less likely that
14430 we'll run into compiler bugs. Bring back solitary \ inside
14431 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 14432 test backslash-newline in C character constant.
8fcc7db1 14433
4e8d992c
AD
144342002-11-14 Akim Demaille <akim@epita.fr>
14435
14436 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14437 status of the compiler.
f32b346d 14438 Calling `exit 1' is no longer needed.
4e8d992c
AD
14439 Reported by Nelson H. F. Beebe.
14440
9501dc6e
AD
144412002-11-14 Akim Demaille <akim@epita.fr>
14442
14443 * tests/atlocal.in (CPPFLAGS): We have config.h.
14444 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14445 New.
14446 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14447 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14448 * tests/regression.at, tests/torture.at: Use them for all the
14449 grammars that are to be compiled.
14450 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14451 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14452 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14453
18b519c0
AD
144542002-11-14 Akim Demaille <akim@epita.fr>
14455
14456 * doc/bison.texinfo: Various formatting changes (alignments in
14457 samples, additional @group/@end group, GCS in samples.
14458 Use @deffn instead of simple @table to define the directives,
14459 macros, variables etc.
14460
9a86cdb9
PE
144612002-11-13 Paul Eggert <eggert@twinsun.com>
14462
daa33def 14463 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 14464 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 14465
daa33def 14466 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 14467 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
14468 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14469 * tests/headers.at (export YYLTYPE): Likewise.
14470
14471 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 14472 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 14473
9a86cdb9
PE
14474 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14475 comments, since they're not portable. Use GNU coding style.
14476
9c1e26bd
AD
144772002-11-13 Akim Demaille <akim@epita.fr>
14478
14479 * data/yacc.c: Leave bigger chunks of quoted text.
14480 (YYDSYMPRINTF): New.
14481 Use it to report symbol activities.
14482 * data/glr.c (YYDSYMPRINTF): New.
14483 Use it.
14484
87f721cc
PE
144852002-11-12 Paul Eggert <eggert@twinsun.com>
14486
14487 Version 1.75b.
14488
14489 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14490 (yyglrReduce): Return yyok, not 0.
14491 This should avoid the enumerated-type warnings reported
464c6927 14492 by Nelson H. F. Beebe in
161a71f3 14493 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
14494
14495 * lib/bbitset.h (BITSET_INLINE): Remove.
14496 * lib/bitset.h [! BITSET_INLINE]: Remove.
14497 (bitset_set, bitset_reset, bitset_test): Rename local vars
14498 to avoid shadowing warnings by GCC.
14499
14500 * data/glr.c (inline): Remove #define. It's the user's
14501 responsibility to #define it away, just like 'const'.
464c6927 14502 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 14503 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 14504
87f721cc
PE
14505 * Makefile.maint (po-check): Scan .l and .y files instead of the
14506 .c and the .h files that they generate. This fixes the bug
14507 reported by Tim Van Holder in:
161a71f3 14508 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
14509 Look for N_ as well as for _. Try to avoid matching #define for
14510 N_ and _.
14511 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14512 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14513 * src/scan-gram.l: Revamp regular expressions so that " and '
14514 do not confuse xgettext.
14515
14516 * src/struniq.h (struniq_new): Do not declare the return type
14517 to be 'const'; this violates the C standard.
14518 * src/struniq.c (struniq_new): Likewise.
14519
be14ade5
AD
145202002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14521
14522 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14523 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14524 linker.
14525
05291fbc
AD
145262002-11-12 Akim Demaille <akim@epita.fr>
14527
14528 * Makefile.maint: Sync with Autoconf:
14529 (local_updates): New.
14530
1f5fd52e
AD
145312002-11-12 Akim Demaille <akim@epita.fr>
14532
14533 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14534
283f1e64
AD
145352002-11-12 Akim Demaille <akim@epita.fr>
14536
14537 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14538 locations.
14539
886b69d1
AD
145402002-11-12 Akim Demaille <akim@epita.fr>
14541
14542 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14543 not yyvalue.
14544
3df37415
AD
145452002-11-12 Akim Demaille <akim@epita.fr>
14546
14547 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14548 Use it to test the GLR parser.
14549
7bd6c77e
AD
145502002-11-12 Akim Demaille <akim@epita.fr>
14551
14552 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14553 defines it.
14554 * data/glr.c (yystos): New.
14555 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14556 (YYDSYMPRINT): New.
14557 (yyval): Don't define it, it is handled via M4.
14558 (yyrecoverParseError): Free verbosely the discarded symbols.
14559 * data/yacc.c (yysymprint): Remove, rather...
14560 (b4_yysymprint_generate): invoke.
14561 * data/c.m4 (b4_yysymprint_generate): New.
14562 Accept pointers as arguments, as opposed to the version from
14563 yacc.c.
14564 (b4_yydestruct_generate): Likewise.
14565 * tests/cations.at (Printers and Destructors): Use Bison directives
14566 instead of CPP macros.
14567 Don't rely on internal details.
14568
b0400cc6
AD
145692002-11-12 Akim Demaille <akim@epita.fr>
14570
14571 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14572 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14573 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14574 it against YYEMPTY and so forth), work on yytoken (i.e., set
14575 it to YYEMPTY etc.).
14576 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14577 (b4_symbol_actions): Remove.
14578 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14579 for 0, end-of-input.
14580
72f889cc
AD
145812002-11-12 Akim Demaille <akim@epita.fr>
14582
14583 * doc/bison.texinfo (Destructor Decl): New.
14584
b1ae9233
AD
145852002-11-12 Akim Demaille <akim@epita.fr>
14586
14587 * src/tables.c (tables_generate): Use free for pointers that
14588 cannot be NULL, not XFREE.
14589 (pack_vector): Use assert, not fatal, for bound violations.
14590 * src/state.c (state_new): Likewise.
14591 * src/reader.c (reader): Likewise.
14592 * src/lalr.c (set_goto_map): Likewise.
72f889cc 14593 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
14594 the file name.
14595
7ec2d4cd
AD
145962002-11-12 Akim Demaille <akim@epita.fr>
14597
14598 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14599 Restore.
14600 * src/scan-gram.l (last_string): Is global to the file, not to
14601 yylex.
14602 * src/parse-gram.y (input): Don't append the epilogue here,
14603 (epilogue.opt): do it here, and free the scanner's obstack.
14604 * src/reader.c (epilogue_set): Rename as...
14605 (epilogue_augment): this.
14606 * data/c.m4 (b4_epilogue): Defaults to empty.
14607
573a6cd3
AD
146082002-11-12 Akim Demaille <akim@epita.fr>
14609
14610 * src/getargs.c (long_options): Remove duplicates.
14611 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14612 Remove.
14613 * doc/bison.rnh: Remove.
14614 * doc/bison.texinfo (VMS Invocation): Remove.
14615
95612cfa
AD
146162002-11-12 Akim Demaille <akim@epita.fr>
14617
14618 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14619 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14620
14621 Use struniq for symbols.
14622
14623 * src/symtab.h (symbol_t): The tag member is a struniq.
14624 (symbol_type_set): Adjust.
14625 * src/symtab.c (symbol_new): Takes a struniq.
14626 (symbol_free): Don't free the tag member.
14627 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14628 (hash_compare_symbol, hash_symbol): these.
14629 Use the fact that tags as struniqs.
14630 (symbol_get): Use struniq_new.
14631 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14632 Returns a strniq.
14633 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14634 and type members are struniqs.
14635 * src/reader.c (get_merge_function)
14636 (grammar_current_rule_merge_set): Adjust.
14637 (TYPE, current_type): Are struniq.
14638
14639 Use struniq for file names.
14640
14641 * src/files.h, src/files.c (infile): Split into...
14642 (grammar_file, current_file): these.
14643 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14644 * src/reduce.c (reduce_print): Likewise.
14645 * src/getargs.c (getargs): Likewise.
14646 * src/complain.h, src/complain.c: Likewise.
14647 * src/main.c (main): Call struniqs_new early enough to use it for
14648 file names.
14649 Don't free the input file name.
14650
3e6656f9
AD
146512002-11-12 Akim Demaille <akim@epita.fr>
14652
14653 * src/symtab.c (symbol_free): Remove dead deactivated code:
14654 type_name are properly removed.
14655 Don't use XFREE to free items that cannot be NULL.
14656 * src/struniq.h, src/struniq.c: New.
14657 * src/main.c (main): Initialize/free struniqs.
14658 * src/parse-gram.y (%union): Add astruniq member.
14659 (yyprint): Adjust.
14660 * src/scan-gram.l (<{tag}>): Return a struniq.
14661 Free the obstack bit that used to store it.
14662 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14663
7672019c
PE
146642002-11-11 Paul Eggert <eggert@twinsun.com>
14665
14666 Revamp to fix many (but not all) of the C- and M4-related quoting
14667 problems. Among other things, this fixes the Bison bug reported
14668 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 14669 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
14670
14671 Use new @ escapes consistently. Represent brackets with @{ and @}
14672 rather than @<:@ and @:>@, since this works a bit better with dumb
14673 editors like vi. Represent @ with @@, since @ is now consistently
14674 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14675 __ofile__, to avoid unexpected expansions. Similarly, use @output
14676 rather than #output.
14677
14678 * data/c.m4 (b4_copyright): Omit file name from comment, since
14679 the file name could contain "*/".
14680 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14681 be quoted. All uses changed.
14682
14683 * data/glr.c: Use new @ escapes consistently.
14684 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14685 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14686 Remove, since they couldn't handle arbitrary characters in file
14687 names.
14688 * data/lalr1.cc: Likewise.
14689 * data/yacc.c: Likewise.
14690
14691 * src/files.c (output_infix): Remove; all uses removed.
14692 * src/files.h: Likewise.
14693
14694 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14695 mishandled funny characters in file names, and anyway it isn't
14696 needed any more.
14697 * data/yacc.c: Likewise.
14698 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14699
14700 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14701 * data/yacc.c: Likewise.
14702
14703 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14704 strings now.
14705 (muscle_init): Quote filename as a C string.
14706 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14707 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14708 * src/output.c (escaped_file_name_output): New function.
14709 (prepare_symbols): Quote tokens for M4.
14710 (prepare): Don't insert output_infix, output_prefix,
14711 output_parser_name, output_header_name; this is now down by scan-skel.
14712 Insert skeleton as a C string.
14713
14714 * src/output.c (user_actions_output, symbol_destructors_output,
14715 symbol_printers_output): Quote filenames for C and M4.
14716 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14717
14718 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14719 escapes other than \\ and \'; this simplifies the code.
14720 (<SC_STRING>): Likewise, for \\ and \".
14721 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14722 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14723 Use new escapes @{ and @} for [ and ].
14724
14725 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14726 them with auto vars.
14727 Switch to new escape scheme, where @ is the escape character uniformly.
14728 Abort if a stray escape character is found. Avoid unbounded input
14729 buffer when parsing non-escaped text.
14730
14731 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14732 __oline__, #output, $@, and @{ do not have unintended meanings.
14733
acea4f3b
PE
147342002-11-09 Paul Eggert <eggert@twinsun.com>
14735
14736 Fix the test failure due to GCC warnings described in
161a71f3 14737 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
14738 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14739 evaluate to 0 if it's impossible for NINF to be in the respective
14740 table.
14741 (yygetLRActions, yyrecoverParseError): Use them.
14742
14743 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14744 counted in the token inserted at end of file. Now takes
14745 location_t *, not location_t, so that the location can be
14746 adjusted. All uses changed.
14747
14748 * tests/regression.at (Invalid inputs): Adjust wording in
14749 diagnostic to match the new behavior.
14750
14751 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14752 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14753 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14754 abort ();'. This reduces the runtime of the "Many lookaheads"
14755 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14756 GCC 3.2.
14757
20ef1ad5
PE
147582002-11-07 Paul Eggert <eggert@twinsun.com>
14759
14760 * src/parse-gram.y (CHARACTER): Remove unused token.
14761 All uses removed.
14762
14763 * src/scan-gram.l: Remove stack option. We no longer use the
14764 stack, since the stack was never deeper than 1; instead, use the
14765 new auto var c_context to record the stacked value.
14766
14767 Remove nounput option. At an unexpected end of file, we now unput
14768 the minimal input necessary to end cleanly; this simplifies the
14769 code.
14770
14771 Avoid unbounded token sizes where this is easy.
14772
14773 (unexpected_end_of_file): New function.
14774 Use it to systematize the error message on unexpected EOF.
14775 (last-string): Now auto, not static.
14776 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14777 (scanner_last_string_free): Remove; not used.
14778 (percent_percent_count): Move decl to just before use.
14779 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14780 not the (never otherwised-used) CHARACTER.
14781
93724f13
AD
147822002-11-07 Akim Demaille <akim@epita.fr>
14783
14784 Let yyerror always receive the msg as last argument, so that
14785 yyerror can be variadic.
14786
14787 * data/yacc.c (b4_yyerror_args): New.
14788 Use it when calling yyerror.
14789 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14790 Use it when calling yyerror.
14791 * doc/bison.texinfo (Error Reporting): Adjust.
14792 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14793 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14794
6e40b4eb
AD
147952002-11-06 Akim Demaille <akim@epita.fr>
14796
14797 #line should have quoted strings.
14798 Ideally, this should be done by m4_quotearg.
14799
14800 * src/scan-skel.l: Include quotearg.h.
14801 Quote __ofile__.
14802 * src/output.c (symbol_printers_output)
14803 (symbol_destructors_output): Quote the file name.
14804
2dfbfc12
AD
148052002-11-06 Akim Demaille <akim@epita.fr>
14806
14807 * tests/regression.at (Invalid inputs): Adjust to the recent
14808 messages.
14809
437c2d80
AD
148102002-11-06 Akim Demaille <akim@epita.fr>
14811
14812 Restore --no-lines.
14813 Reported by Jim Kent.
14814
14815 * data/c.m4 (b4_syncline): New.
14816 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14817 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14818 * src/output.c (user_actions_output): Likewise.
14819 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 14820 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 14821
900c5db5
AD
148222002-11-06 Akim Demaille <akim@epita.fr>
14823
14824 * src/main.c (main): Free `infile'.
14825 * src/scan-gram.l (handle_syncline): New.
14826 Recognize `#line'.
14827 * src/output.c (user_actions_output, symbol_destructors_output)
14828 (symbol_printers_output): Use the location's file name, not
14829 infile.
14830 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14831
e183b123 148322002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 14833
e183b123 14834 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 14835 either has GLR conflict entries.
e183b123 14836
193eb6b7
PE
148372002-11-05 Paul Eggert <eggert@twinsun.com>
14838
e183b123
PE
14839 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14840 "integer out of range" rather than "invalid value".
14841 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14842 accordingly.
14843
193eb6b7
PE
14844 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14845 Also, remove one static variable in the scanner.
14846
14847 * src/scan-gram.l (braces_level): Now auto, not static.
14848 Initialize to zero if the compiler is being picky.
14849 (INITIAL): Clear braces_level instead of incrementing it.
14850 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14851 as POSIX 1003.1-2001 requires.
14852 * src/system.h (IF_LINT): New macro, taken from coreutils.
14853 * configure.ac: Define "lint" if --enable-gcc-warnings.
14854
29c01725
AD
148552002-11-05 Akim Demaille <akim@epita.fr>
14856
14857 * src/scan-gram.l: When it starts with `%', complain about the
14858 whole directive, not just that `invalid character: %'.
14859
8aeac3ca
AD
148602002-11-04 Akim Demaille <akim@epita.fr>
14861
14862 * Makefile.maint: Update from Autoconf.
14863 (update, cvs-update, po-update, do-po-update): New.
14864
793a58bb
AD
148652002-11-04 Akim Demaille <akim@epita.fr>
14866
14867 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14868 and yyerror.
14869 Have yyerror `use' its arguments.
14870 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14871 returns true when location & yacc & pure & parse-param.
14872 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14873
c4d720cd
AD
148742002-11-04 Akim Demaille <akim@epita.fr>
14875
14876 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14877 clashes.
14878 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14879 font-lock-mode.
14880 Use complain_at.
14881 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14882 slot 0.
14883
613a0dc5
PE
148842002-11-03 Paul Eggert <eggert@twinsun.com>
14885
14886 * src/reader.c (get_merge_function, grammar_current_rule_check):
14887 Use consistent diagnostics for reporting type name clashes.
14888 Quote the types with <>, for consistency with Yacc.
14889 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14890
2a8d363a
AD
148912002-11-03 Akim Demaille <akim@epita.fr>
14892
14893 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14894 New.
14895 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14896 (b4_parse_param): Remove.
14897 Use b4_identification.
14898 Propagate b4_pure_args where needed to pass them to yyerror.
14899 * data/glr.m4 (b4_parse_param): Remove.
14900 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14901 (b4_lpure_formals): New.
14902 Use b4_identification.
14903 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14904 b4_user_formals and b4_user_args.
14905 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14906 (yyreportAmbiguity): When using a pure parser, also need
14907 the location, and the parse-params.
14908 Adjust callers.
14909 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14910 When using a pure parser, also need the parse-params.
14911 Adjust callers.
14912 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14913 (%pure-parser + %parse-param) LALR and GLR parsers.
14914 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14915 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14916 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14917 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14918 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14919 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14920 * doc/bison.texinfo: Untabify the whole file.
14921 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14922 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14923 (Error Reporting): Adjust to these new directives.
14924 Document %error-verbose, deprecate YYERROR_VERBOSE.
14925
9e32add8
AD
149262002-11-03 Akim Demaille <akim@epita.fr>
14927
14928 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14929 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14930 command line options.
14931 * tests/cxx-type.at: Formatting changes.
14932
b02d90a5
PE
149332002-11-03 Paul Eggert <eggert@twinsun.com>
14934
14935 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14936 to count columns correctly, and to check for invalid inputs.
9e32add8 14937
b02d90a5
PE
14938 Use mbsnwidth to count columns correctly. Account for tabs, too.
14939 Include mbswidth.h.
14940 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14941 (extend_location): New function.
14942 (YY_LINES): Remove.
14943
14944 Handle CRLF in C code rather than in Lex code.
14945 (YY_INPUT): New macro.
14946 (no_cr_read): New function.
14947
14948 Scan UCNs, even though we don't fully handle them yet.
14949 (convert_ucn_to_byte): New function.
14950
14951 Handle backslash-newline correctly in C code.
14952 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14953 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14954 all uses changed.
14955 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14956 Use {splice} wherever C allows backslash-newline.
14957 YY_STEP after space, newline, vertical-tab.
14958 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 14959
b02d90a5
PE
14960 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14961
14962 ({int}, handle_action_dollar, handle_action_at): Check for integer
14963 overflow.
9e32add8 14964
b02d90a5
PE
14965 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14966
14967 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14968 as well as \000. Check for UCHAR_MAX, not 255.
14969 Allow \x with an arbitrary positive number of digits, as in C.
14970 Check for overflow here.
14971 Allow \? and UCNs, for compatibility with C.
14972
14973 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14974 with quote slot used by complain_at.
14975
14976 * tests/input.at: Add tests for backslash-newline, m4 quotes
14977 in symbols, long literals, and funny escapes in strings.
14978
14979 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14980 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14981 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14982 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14983 * m4/mbswidth.m4: New file, from GNU coreutils.
14984
14985 * doc/bison.texinfo (Grammar Outline): Document // comments.
14986 (Symbols): Document that trigraphs have no special meaning in Bison,
14987 nor is backslash-newline allowed.
14988 (Actions): Document that trigraphs have no special meaning.
14989
14990 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14991 no longer used.
14992
149932002-11-02 Paul Eggert <eggert@twinsun.com>
14994
14995 * src/reader.c: Don't include quote.h; not needed.
14996 (get_merge_function): Reword warning to be consistent with
14997 type clash diagnostic in grammar_current_rule_check.
14998
14999 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15000 bug in trigraph handling.
15001
15002 * src/output.c (prepare_symbols): When printing token names,
15003 escape "[" as "@<:@" and likewise for "]".
15004
15005 * src/system.h (errno): Remove declaration, as we are now
15006 assuming C89 or better, and C89 guarantees errno.
15007
762b212b
PE
150082002-10-30 Paul Eggert <eggert@twinsun.com>
15009
15010 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15011 Check for close failures.
15012 * src/files.h (xfclose): Return void, not int, since it always
15013 returned zero.
15014 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15015 indicates one.
15016 * src/output.c (output_skeleton): Use xfclose rather than fclose
15017 and ferror. xfclose now checks ferror.
15018
15019 * data/glr.c (YYLEFTMOST_STATE): Remove.
15020 (yyreportTree): Use a stack-based leftmost state. This avoids
15021 our continuing battles with bogus warnings about initializers.
15022
56100c60
AD
150232002-10-30 Akim Demaille <akim@epita.fr>
15024
15025 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15026 #if.
15027
51b4a04c
PH
150282002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15029
15030 * tests/glr-regr1.at: New test for reported regressions.
15031 * tests/testsuite.at: Add glr-regr1.at test.
15032 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 15033
bf1ebda2
PE
150342002-10-24 Paul Eggert <eggert@twinsun.com>
15035
5c16c6b1
PE
15036 Version 1.75a.
15037
bf1ebda2
PE
15038 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15039 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15040 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15041 Don't assume strdup exists; POSIX says its an XSI extension.
15042 Check for buffer overflow on input.
15043
b526ee61
AD
150442002-10-24 Akim Demaille <akim@epita.fr>
15045
15046 * src/output.c (output_skeleton): Don't disable M4sugar comments
15047 too soon: it results in comments being expanded.
15048 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15049 first output.
15050
f1886bb2
AD
150512002-10-24 Akim Demaille <akim@epita.fr>
15052
15053 * data/yacc.c (m4_int_type): New.
15054 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15055 char' as only yacc.c wants K&R portability.
15056 * data/glr.c (yysigned_char): Remove.
15057 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15058 Reported by Quoc Peyrot.
15059
c5576256
PE
150602002-10-23 Paul Eggert <eggert@twinsun.com>
15061
15062 * src/main.c (main): With --trace=time, report times even if a
15063 non-fatal error occurs. Formerly, the times were reported in some
15064 such cases but not in others.
15065 * src/reader.c (reader): Just return if a complaint has been issued,
15066 instead of exiting, so that 'main' can report times.
15067
27b0ffea
AD
150682002-10-22 Akim Demaille <akim@epita.fr>
15069
15070 * src/system.h: Include sys/types.
15071 Reported by Bert Deknuydt.
15072
223a7883
PE
150732002-10-23 Paul Eggert <eggert@twinsun.com>
15074
15075 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15076 Suggested by Art Haas.
15077
150782002-10-22 Paul Eggert <eggert@twinsun.com>
15079
15080 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15081 decl; not needed any more.
15082 * src/main.c (main): Use return to exit, undoing yesterday's change.
15083 The last OS that we could find where this wouldn't work is
15084 SunOS 3.5, and that's too old to worry about now.
15085
15086 * data/glr.c (struct yyltype): Define members even when not
15087 doing locations. This is more consistent with yacc.c, and it
15088 works around the following bug reports:
161a71f3
PE
15089 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15090 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 15091
223a7883
PE
15092 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15093 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15094 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15095
8b76775a
AD
150962002-10-22 Akim Demaille <akim@epita.fr>
15097
15098 * data/README: New.
15099
6db10d14
PE
151002002-10-21 Paul Eggert <eggert@twinsun.com>
15101
15102 Be consistent about 'bool'; the old code used an enum in one
15103 module and an int in another, and this violates the C standard.
15104 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15105 * configure.ac (AC_HEADER_STDBOOL): Add.
15106 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15107 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15108 * src/symtab.c (hash_compare_symbol_t): Likewise.
15109 * src/system.h (bool, false, true): Use a definition consistent
15110 with ../lib/hash.c. All uses changed.
15111
15112 * src/complain.c (warning_issued): Renamed from warn_message_count,
15113 so that we needn't worry about integer overflow (!).
15114 Now of type bool. All uses changed.
15115 (complaint_issued): Renamed from complain_message_count; likewise.
15116
15117 * src/main.c (main): Use exit to exit with failure.
27b0ffea 15118
6db10d14
PE
15119 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15120 rather than 1 and 0.
15121 * src/main.c (main): Likewise.
15122 * src/getargs.c (getargs): Likewise.
15123 * src/reader.c (reader): Likewise.
15124
15125 * src/getarg.c (getargs): Remove duplicate code for
15126 "Try `bison --help'".
15127
15128 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15129 What was that "2" for?
15130
15131 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15132 * src/getargs.c (usage): Likewise.
15133
15134 * src/getargs.c (getargs): When there are too few operands, report
15135 the last one. When there are too many, report the first extra
15136 one. This is how diffutils does it.
15137
92a060fd
PE
151382002-10-20 Paul Eggert <eggert@twinsun.com>
15139
15140 Remove K&R vestiges.
15141 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15142 * src/complain.c (VA_START): Remove. Assume prototypes.
15143 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15144 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15145 fatal): Assume prototypes.
15146 * src/complain.h: Assume prototypes.
15147 * src/system.h (PARAMS): Remove.
15148 Include <limits.h> unconditionally, since it's guaranteeed even
15149 for a freestanding C89 compiler.
15150 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15151 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 15152
e7cb57c0
AD
151532002-10-20 Akim Demaille <akim@epita.fr>
15154
15155 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15156 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15157 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15158 (yyresolveStates, yyresolveAction, yyresolveStack)
15159 (yyprocessOneStack): Use them.
15160 (yy_reduce_print): New.
15161 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15162
0245f82d
AD
151632002-10-20 Akim Demaille <akim@epita.fr>
15164
15165 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15166 arguments and output `void'.
15167 (b4_c_function): Rename as...
15168 (b4_c_function_def): this.
15169 (b4_c_function_decl, b4_c_ansi_function_def)
15170 (b4_c_ansi_function_decl): New.
15171 Change the interpretation of the arguments: before `int, foo', now
15172 `int foo, foo'.
15173 * data/yacc.c (yyparse): Prototype and define thanks to these.
15174 Adjust b4_c_function_def uses.
15175 * data/glr.c (yyparse): Likewise, but ANSI only.
15176
39912f52
AD
151772002-10-20 Akim Demaille <akim@epita.fr>
15178
15179 * src/output.c (prepare): Move the definition of `tokens_number',
15180 `nterms_number', `undef_token_number', `user_token_number_max'
15181 to...
15182 (prepare_tokens): Here.
15183 (prepare_tokens): Rename as...
15184 (prepare_symbols): this.
15185 (prepare): Move the definition of `rules_number' to...
15186 (prepare_rules): here.
15187 (prepare): Move the definition of `last', `final_state_number',
15188 `states_number' to...
15189 (prepare_states): here.
15190 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15191
20c1e2ad
AD
151922002-10-20 Akim Demaille <akim@epita.fr>
15193
15194 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15195
21964f43
AD
151962002-10-20 Akim Demaille <akim@epita.fr>
15197
15198 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15199 * data/c.m4: here.
15200
66d30cd4
AD
152012002-10-20 Akim Demaille <akim@epita.fr>
15202
15203 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15204 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15205 `pair'.
15206 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15207 `name' to...
15208 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15209 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15210 These.
15211
95f2c9fe
PE
152122002-10-19 Paul Eggert <eggert@twinsun.com>
15213
15214 Do not create a temporary file, as that involves security and
15215 cleanup headaches. Instead, use a pair of pipes.
15216 Derived from a suggestion by Florian Krohm.
15217 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15218 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15219 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15220 (BISON_PREREQ_SUBPIPE): Add.
15221 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15222 Add subpipe.h, subpipe.c.
15223 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15224 * po/POTFILES.in: Add lib/subpipe.c.
15225 * src/output.c: Include "subpipe.h".
15226 (m4_invoke): Remove decl.
15227 (scan_skel): New decl.
15228 (output_skeleton): Use pipe rather than temporary file for m4 input.
15229 Check that m4sugar.m4 is readable, to avoid deadlock.
15230 Check for pipe I/O error.
15231 * src/scan-skel.l (readpipe): Remove decl.
15232 (scan_skel): New function, to be used in place of m4_invoke.
15233 Read from stream rather than file.
66d30cd4 15234
95f2c9fe
PE
15235 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15236 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15237 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15238 this generates a more-accurate value anyway.
15239
15240 * lib/timevar.c (timervar_accumulate): Rename locals to
15241 avoid confusion with similarly-named more-global.
15242 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15243
15244 * src/output.c (prepare): Use xstrdup to convert char const *
15245 to char *, to avoid GCC warning.
15246
c19988b7
AD
152472002-10-19 Akim Demaille <akim@epita.fr>
15248
15249 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15250 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15251 Use them to have `calc.y' ready for %pure-parser.
15252 * data/yacc.c (YYLEX): Pass a yylex return type to
15253 b4_c_function_call.
15254
ae7453f2
AD
152552002-10-19 Akim Demaille <akim@epita.fr>
15256
15257 Prototype support of %lex-param and %parse-param.
15258
15259 * src/parse-gram.y: Add the definition of the %lex-param and
15260 %parse-param tokens, plus their rules.
15261 Drop the `_' version of %glr-parser.
15262 Add the "," token.
15263 * src/scan-gram.l (INITIAL): Scan them.
15264 * src/muscle_tab.c: Comment changes.
15265 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15266 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15267 (muscle_entry_s): The `value' member is no longer const.
15268 Adjust all dependencies.
15269 * src/muscle_tab.c (muscle_init): Adjust: use
15270 MUSCLE_INSERT_STRING.
15271 Initialize the obstack earlier.
15272 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15273 (muscle_pair_list_grow): New.
15274 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15275 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15276 * tests/calc.at: Use %locations, not --locations.
15277 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15278
0e575721
AD
152792002-10-19 Akim Demaille <akim@epita.fr>
15280
15281 * src/getargs.c (usage): Take status as argument and exit
15282 accordingly.
15283 Report the traditional `Try ... --help' message when status != 0.
15284 (usage, version): Don't take a FILE * as arg, it is pointless.
15285 (getargs): When there is an incorrect number of arguments, make it
15286 an error, and report it GNUlically thanks to `usage ()'.
15287
724ce7f5
PE
152882002-10-18 Paul Eggert <eggert@twinsun.com>
15289
3a781eb2
PE
15290 * data/glr.c (yyreportParseError): Don't assume that sprintf
15291 yields the length of the printed string, as this is not true
15292 on SunOS 4.1.4. Reported by Peter Klein.
15293
724ce7f5
PE
15294 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15295 * tests/conflicts.at (%nonassoc and eof): Likewise.
15296 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15297
473d0a75
AD
152982002-10-17 Akim Demaille <akim@epita.fr>
15299
15300 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15301 * src/getargs.c (trace_types, trace_args): Adjust.
15302 * src/reader.c (grammar_current_rule_prec_set)
15303 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15304 Standardize error messages.
15305 And s/@prec/%prec/!
15306 (reader): Use trace_flag to enable scanner/parser debugging,
15307 instead of an adhoc scheme.
15308 * src/scan-gram.l: Remove trailing debugging code.
15309
e76d2469
PE
153102002-10-16 Paul Eggert <eggert@twinsun.com>
15311
93e2236a
PE
15312 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15313 MUSCLE_TAB_H.
15314
e76d2469
PE
15315 * NEWS: Officially drop support for building Bison with K&R C,
15316 since it didn't work anyway and it's not worth worrying about.
15317 * Makefile.maint (wget_files): Remove ansi2knr.c.
15318 (ansi2knr.c-url_prefix): Remove.
15319 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
15320 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15321 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15322
5bd1c419
PE
153232002-10-15 Paul Eggert <eggert@twinsun.com>
15324
15325 Stop using the "enum_" trick for K&R-style function definitions;
15326 it confused me, and I was the author! Instead, assume that people
15327 who want to use K&R C compilers (when using these modules in GCC,
15328 perhaps?) will run ansi2knr.
15329
15330 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
15331 All uses of "enum_" changed to "enum ".
15332 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15333 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 15334
5bd1c419
PE
15335 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
15336 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
15337 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
15338 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
15339 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
15340 abitset_not, abitset_ones, abitset_or, abitset_or_and,
15341 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
15342 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
15343 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
15344 Use function prototypes; this removes the need for declaring
15345 static functions simply to provide their prototypes.
15346 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
15347 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
15348 bitset_count_, bitset_create, bitset_dump, bitset_first,
15349 bitset_free, bitset_init, bitset_last, bitset_next,
15350 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
15351 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
15352 bitset_print, bitset_release_memory, bitset_toggle_,
15353 bitset_type_choose, bitset_type_get, bitset_type_name_get,
15354 debug_bitset): Likewise.
15355 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
15356 * lib/bitset_stats.c (bitset_log_histogram_print,
15357 bitset_percent_histogram_print, bitset_stats_and,
15358 bitset_stats_and_cmp, bitset_stats_and_or,
15359 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
15360 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
15361 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
15362 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
15363 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
15364 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
15365 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
15366 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
15367 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
15368 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
15369 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
15370 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
15371 bitset_stats_zero): Likewise.
15372 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15373 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15374 bitsetv_dump, debug_bitsetv): Likewise.
15375 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
15376 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
15377 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
15378 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
15379 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
15380 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
15381 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
15382 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
15383 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
15384 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
15385 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
15386 Likewise.
15387 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
15388 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
15389 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
15390 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
15391 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
15392 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
15393 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
15394 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
15395 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
15396 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
15397 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 15398
ae26e1f0
AD
153992002-10-14 Akim Demaille <akim@epita.fr>
15400
15401 Version 1.75.
15402
d43baf71
AD
154032002-10-14 Akim Demaille <akim@epita.fr>
15404
15405 * tests/Makefile.am (maintainer-check-posix): New.
15406
7ebc83e3
AD
154072002-10-14 Akim Demaille <akim@epita.fr>
15408
15409 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15410 member.
15411
05846dae
AD
154122002-10-14 Akim Demaille <akim@epita.fr>
15413
15414 * src/tables.c (table_ninf_remap): base -> tab.
15415 Reported by Matt Rosing.
15416
1318e37d
PE
154172002-10-14 Paul Eggert <eggert@twinsun.com>
15418
447fbb17
PE
15419 * tests/action.at, tests/calc.at, tests/conflicts.at,
15420 tests/cxx-type.at, tests/headers.at, tests/input.at,
15421 tests/regression.at, tests/synclines.at, tests/torture.at:
15422 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15423 so that the tests still work even if POSIXLY_CORRECT is set.
15424 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 15425
1318e37d
PE
15426 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15427 for portability to K&R hosts. Fix typo: signed char is guaranteed
15428 only to 127, not to 128.
15429 * data/glr.c (yysigned_char): New type.
15430 * data/yacc.c (yysigned_char): Likewise.
15431 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15432
cc0f0794
PE
154332002-10-13 Paul Eggert <eggert@twinsun.com>
15434
5038f418
PE
15435 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15436 true due to limited range of data type" warning from GCC.
15437
cc0f0794
PE
15438 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15439 by wrapping enum yytokentype's definition inside #ifndef
15440 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15441
6fed0802
AD
154422002-10-13 Akim Demaille <akim@epita.fr>
15443
15444 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15445 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15446
32f0598d
AD
154472002-10-13 Akim Demaille <akim@epita.fr>
15448
15449 * Makefile.maint: Update from Autoconf 2.54.
15450 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15451
7ea9a33f
AD
154522002-10-13 Akim Demaille <akim@epita.fr>
15453
15454 * src/print.c (print_state): Separate the list of solved conflicts
15455 from the other items.
15456 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15457
ea99527d
AD
154582002-10-13 Akim Demaille <akim@epita.fr>
15459
15460 Let nondeterministic skeletons be usable with deterministic
15461 tables.
15462
15463 With the patch, GAWK compiled by GCC without -O2 passes its test
15464 suite using a GLR parser driven by LALR tables. It fails with -O2
15465 because `struct stat' gives two different answers on my machine:
15466 88 (definition of an auto var) and later 96 (memset on this var).
15467 Hence the stack is badly corrumpted. The headers inclusion is to
15468 blame: if I move the awk.h inclusion before GLR's system header
15469 inclusion, the two struct stat have the same size.
15470
15471 * src/tables.c (pack_table): Always create conflict_table.
15472 (token_actions): Always create conflict_list.
15473 * data/glr.c (YYFLAG): Remove, unused.
15474
f377f69f
AD
154752002-10-13 Akim Demaille <akim@epita.fr>
15476
15477 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15478 (O0FLAGS): New.
15479 (VALGRIND, GXX): New.
15480 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15481 * tests/bison.in: Run $PREBISON a pre-command.
15482 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15483 (maintainer-check-g++): New.
15484 * Makefile.am (maintainer-check): New.
15485
2a1fe6ed
AD
154862002-10-13 Akim Demaille <akim@epita.fr>
15487
15488 * data/glr.c: Formatting changes.
15489 Tweak some trace messages to match yacc.c's.
15490
f50adbbd
AD
154912002-10-13 Akim Demaille <akim@epita.fr>
15492
15493 GLR parsers sometimes raise parse errors instead of performing the
15494 default reduction.
15495 Reported by Charles-Henry de Boysson.
15496
15497 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 15498 check the length of the traces when %glr.
f50adbbd
AD
15499 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15500 GLR's traces.
15501 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15502 Test GLR parsers.
15503 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15504 (yyltype): Remove the yy prefix from the member names.
15505 (yytable): Complete its comment.
15506 (yygetLRActions): Map error action number from YYTABLE from
15507 YYTABLE_NINF to 0.
15508 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15509 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15510 not satisfying as we could compare an YYACTION computed from
15511 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15512 only value for error actions.
15513 (yyreportParseError): In verbose parse error messages, don't issue
15514 `error' in the list of expected tokens.
15515 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15516 next action to perform to match glr.c's decoding.
15517 (yytable): Complete its comment.
15518
bcbad5b9
PE
155192002-10-13 Paul Eggert <eggert@twinsun.com>
15520
15521 Fix problem reported by Henrik Grubbstroem in
161a71f3 15522 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
15523 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15524 because the Bison parser reads the second action before reducing
15525 the first one.
15526 * src/scan-gram.l (rule_length): New static var.
15527 Use it to keep track of the rule length in the scanner, since
15528 we can't expect the parser to be in lock-step sync with the scanner.
15529 (handle_action_dollar, handle_action_at): Use this var.
15530 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 15531
14904b89
PE
155322002-10-12 Paul Eggert <eggert@twinsun.com>
15533
1fe611e5
PE
15534 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15535 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15536 Include <sys/time.h> when checking for clock_t and struct tms.
15537 Use same include order as source.
15538 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 15539 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 15540
1fe611e5
PE
15541 * lib/timevar.c: Update copyright date and clarify comments.
15542 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 15543
1fe611e5
PE
15544 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15545 GCC version as of today, then merge Bison's changes.
15546 Change "GCC" to "Bison" in copyright notice. timevar.def's
15547 author is Akim, so change that too.
15548
98194095
PE
15549 * src/reader.c (grammar_current_rule_check):
15550 Don't worry about the default action if $$ is untyped.
15551 Prevents bogus warnings reported by Jim Gifford in
161a71f3 15552 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 15553
14904b89
PE
15554 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15555 * data/glr.c, data/lalr1.cc, data/yacc.c:
15556 Output token definitions before the first part of user declarations.
15557 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 15558 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 15559
ff6dca18
PE
155602002-10-11 Paul Eggert <eggert@twinsun.com>
15561
15562 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15563 (yyparse): here. This undoes some of the 2002-07-25 change.
15564 Compatibility problem reported by Ralf S. Engelschall with
15565 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15566
eb714592
AD
155672002-10-11 Akim Demaille <akim@epita.fr>
15568
15569 * tests/regression.at Characters Escapes): New.
15570 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15571 characters.
15572 Reported by Jan Nieuwenhuizen.
15573
b7195100
AD
155742002-10-11 Akim Demaille <akim@epita.fr>
15575
15576 * po/id.po: New.
15577
f28a0f2d
PE
155782002-10-10 Paul Eggert <eggert@twinsun.com>
15579
15580 Portability fixes for bitsets; this also avoids several GCC
15581 warnings.
15582
15583 * lib/abitset.c: Include <stddef.h>, for offsetof.
15584 * lib/lbitset.c: Likewise.
15585
15586 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15587 properly for vectors of objects. Do not assume that adding a
15588 header size to a multiple of a word size yields a value that is
15589 properly aligned for the whole union.
15590 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15591
15592 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15593 unique names for structures.
15594 * lib/ebitset.c (ebitset_bytes): Likewise.
15595 * lib/lbitset.c (lbitset_bytes): Likewise.
15596
15597 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15598 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15599 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15600 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15601 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15602 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15603 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15604 to improve the type-checking that GCC can do.
15605 * lib/bitset.c (bitset_op4_cmp): Likewise.
15606 * lib/bitset_stats.c (bitset_stats_count,
15607 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15608 bitset_stats_copy, bitset_stats_disjoint_p,
15609 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15610 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15611 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15612 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15613 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15614 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15615 bitset_stats_or_and_cmp): Likewise.
15616 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15617 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15618 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15619 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15620
15621 * lib/abitset.h: Include bitset.h, not bbitset.h.
15622 * lib/ebitset.h: Likewise.
15623 * lib/lbitset.h: Likewise.
15624
15625 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15626 All instances of parameters of type enum bitset_opts are now of
15627 type enum_bitset_opts, to conform to the C Standard, and similarly
15628 for enum_bitset_type.
15629 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15630 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15631
15632 Do not use "struct bitset_struct" to mean different things in
15633 different modules. Not only is this confusing, it violates
15634 the C Standard, which requires that structure types in different
15635 modules must be compatible if one is to be passed to the other.
15636 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15637 All instances of "struct bitset_struct *" replaced with "bitset".
15638 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15639 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15640 struct lbitset_struct, struct bitset_stats_struct): New types.
15641 All uses of struct bitset_struct changed to union bitset_union,
15642 etc.
ba0fe3c7 15643 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
15644 struct bitset_struct): Remove.
15645 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15646 struct bitset_struct): Remove.
15647 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15648 bitset_struct): Remove.
15649 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15650 Likewise.
15651
15652 Do not call a function of type T using a call that assumes the
15653 function is of a different type U. Standard C requires that a
15654 function must be called with a type that is compatible with its
15655 definition.
15656 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15657 New decls.
15658 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15659 New functions.
15660 * lib/ebitset.c (PFV): Remove.
15661 * lib/lbitset.c (PFV): Likewise.
15662 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15663 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15664 decls.
15665 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15666 (ebitset_vtable): Use them.
15667 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15668 lbitset_xor): New functions.
15669 (lbitset_vtable): Use them.
15670
15671 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15672 Declare.
15673
15674 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15675 GCC warning.
15676 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15677 Use offsetof, for simplicity.
15678
6fbe4984
PE
156792002-10-06 Paul Eggert <eggert@twinsun.com>
15680
15681 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15682 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 15683 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
15684 which was inadvertently undone by the 2002-09-30 patch.
15685 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15686 the same width as int.
15687
420f93c8
PE
156882002-10-04 Paul Eggert <eggert@twinsun.com>
15689
15690 Version 1.50.
15691
15692 * configure.ac (AC_INIT), NEWS: Increment version number.
15693
15694 * doc/bison.texinfo: Minor spelling, grammar, and white space
15695 fixes.
15696 (Symbols): Mention that any negative value returned from yylex
15697 signifies end-of-input. Warn about negative chars. Mention
15698 the portable Standard C character set.
15699
15700 The GNU coding standard says CFLAGS and YFLAGS are reserved
15701 for the installer to set.
15702 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15703 * src/Makefile.am (AM_CFLAGS): Likewise.
15704 (AM_YFLAGS): Renamed from YFLAGS.
15705
15706 Fix some MAX and MIN problems.
15707 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15708 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15709 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15710 * src/reader.c (reader): Use it.
15711
15712 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15713 POSIX 1003.1-2001 has removed fgrep.
15714
157152002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15716
15717 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15718 interpreted as signed.
15719 * lib/ebitset.c (ebitset_list): Fix bug.
15720
ff68026d
PE
157212002-10-01 Paul Eggert <eggert@twinsun.com>
15722
15723 More fixes for 64-bit hosts and large bitsets.
15724
15725 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15726 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15727 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15728 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15729 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15730 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15731 bitset_count_): Likewise.
15732 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15733 bitset_first, bitset_last): Likewise.
15734 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15735 bitset_stats_list_reverse, bitset_stats_size,
15736 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15737 Likewise.
15738 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15739 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15740 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15741 bitsetv_reflexive_transitive_closure): Likewise.
15742 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15743 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15744 Likewise.
15745 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15746 Likewise.
420f93c8 15747
ff68026d
PE
15748 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15749 Use size_t, not unsigned int, to count bytes.
15750 * lib/abitset.h (abitset_bytes): Likewise.
15751 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15752 Likewise.
15753 * lib/bitset.h (bitset_bytes): Likewise.
15754 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15755 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15756 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15757 * lib/ebitset.c (ebitset_bytes): Likewise.
15758 * lib/ebitset.h (ebitset_bytes): Likewise.
15759 * lib/lbitset.c (lbitset_bytes): Likewise.
15760 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 15761
ff68026d
PE
15762 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15763 abitset_subset_p, abitset_disjoint_p, abitset_and,
15764 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15765 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15766 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15767 abitset_or_and, abitset_or_and_cmp):
15768 Use bitset_windex instead of unsigned int.
15769 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15770 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15771 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15772 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15773 Likewise.
15774 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 15775
ff68026d
PE
15776 * lib/bitset.c (bitset_print):
15777 Use proper printf formats for widths of integer types.
15778 * lib/bitset_stats.c (bitset_percent_histogram_print,
15779 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15780 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15781 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15782 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 15783
ff68026d
PE
15784 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15785 BITSET_SIZE_MAX): New macros.
15786 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15787 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15788 to BITSET_WINDEX_MAX.
15789
15790 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15791 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15792 since we now return the bitset_bindex type (not int).
15793
15794 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15795 when computing sizes.
15796 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15797
15798 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15799 and avoid cast to unsigned.
15800
6aa452a6
AD
158012002-09-30 Akim Demaille <akim@epita.fr>
15802
15803 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15804 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15805 Updates from Michael Hayes.
15806
927f7817
AD
158072002-09-30 Art Haas <ahaas@neosoft.com>
15808
15809 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15810 invocations.
15811 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15812 defined.
15813
9738f41e
AD
158142002-09-27 Akim Demaille <akim@epita.fr>
15815
15816 Version 1.49c.
15817
a5c75d7f
AD
158182002-09-27 Akim Demaille <akim@epita.fr>
15819
15820 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15821 (Because of AC_LIBSOURCE).
15822
8280e179
AD
158232002-09-27 Akim Demaille <akim@epita.fr>
15824
15825 Playing with Autoscan.
15826
15827 * configure.ac: Remove the old LIBOBJ tweaks.
15828 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15829 * lib/strrchr.c: New.
15830 * lib/strtol.c: New, from the Coreutils 4.5.1.
15831
ae64af35
AD
158322002-09-27 Akim Demaille <akim@epita.fr>
15833
15834 Playing with Autoscan.
15835
15836 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15837 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15838 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15839 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15840 Coreutils 4.5.1.
15841
d1a1114f
AD
158422002-09-24 Akim Demaille <akim@epita.fr>
15843
15844 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15845 (Frequently Asked Questions, Parser Stack Overflow): New.
15846
b906441c
AD
158472002-09-13 Akim Demaille <akim@epita.fr>
15848
15849 Playing with autoscan.
15850
15851 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15852 * src/files.c (skeleton_find): Remove, unused.
15853 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15854 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15855
bd701811
AD
158562002-09-13 Akim Demaille <akim@epita.fr>
15857
15858 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15859 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15860
e0a13e7b
AD
158612002-09-13 Akim Demaille <akim@epita.fr>
15862
15863 * configure.ac: Require 2.54.
15864 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15865 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15866 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15867 Remove, provided by Autoconf macros.
15868
c97011bf
AD
158692002-09-12 Akim Demaille <akim@epita.fr>
15870
15871 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15872
d862b1be
AD
158732002-09-12 Akim Demaille <akim@epita.fr>
15874
15875 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15876 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15877 Reported by Martin Mokrejs.
15878
3d38c03a
AD
158792002-09-10 Akim Demaille <akim@epita.fr>
15880
15881 * src/parse-gram.y: Associate a human readable string to each
15882 token type.
15883 * tests/regression.at (Invalid inputs): Adjust.
15884
b6347355
AD
158852002-09-10 Gary V. Vaughan <gary@gnu.org>
15886
15887 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15888 with an Autoconf-2.5x style configure.ac.
15889
09ba4ab2
PE
158902002-09-06 Paul Eggert <eggert@twinsun.com>
15891
15892 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15893 exception applies only to yacc.c. This is a modification of a
15894 patch originally suggested by Akim Demaille.
15895
21846f69
AD
158962002-09-06 Akim Demaille <akim@epita.fr>
15897
09ba4ab2
PE
15898 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15899 here to...
15900 * data/yacc.c: here.
15901
21846f69
AD
15902 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15903 LocationType.
15904 (b4_ltype): Default to yy::Location from location.hh.
15905
c0ad8bf3
AD
159062002-09-04 Jim Meyering <jim@meyering.net>
15907
15908 * data/yacc.c: Guard the declaration of yytoknum also with
15909 `#ifdef YYPRINT', so it is declared only when used.
15910
3a93251e
AD
159112002-09-04 Akim Demaille <akim@epita.fr>
15912
15913 * configure.in: Rename as...
15914 * configure.ac: this.
15915 Bump to 1.49c.
15916
427c0dda
AD
159172002-09-04 Akim Demaille <akim@epita.fr>
15918
15919 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15920 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15921 translate maintainer only messages.
15922
6a254321
PE
159232002-08-12 Paul Eggert <eggert@twinsun.com>
15924
645e30d1
PE
15925 Version 1.49b.
15926
6a254321
PE
15927 * Makefile.am (SUBDIRS): Remove intl.
15928 (DISTCLEANFILES): Remove.
15929 * NEWS: Mention that GNU M4 is now required. Clarify what is
15930 meant by "larger grammars". Mention the pt_BR translation.
15931 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15932 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15933 Bump version from 0.11.2 to 0.11.5.
15934 (BISON_PREREQ_STAGE): Remove.
15935 (AM_GNU_GETTEXT): Use external gettext.
15936 (AC_OUTPUT): Remove intl/Makefile.
15937
15938 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15939
15940 * data/glr.c: Include string.h, for strlen.
15941 (yyreportParseError): Use size_t for yysize.
15942 (yy_yypstack): No longer nested inside yypstates, as nested
15943 functions are not portable. Do not assume size_t is the
15944 same width as int.
15945 (yypstates): Do not assume that ptrdiff_t is the same width
15946 as int, and similarly for yyposn and YYINDEX.
15947
15948 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15949
15950 * lib/Makefile.am (INCLUDES): Do not include from the intl
15951 directory, which has been removed.
15952 * src/Makefile.am (INCLUDES): Likewise.
15953
15954 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15955 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15956 New vars.
15957
15958 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15959 * tests/Makefile.am (EXTRA_DIST): Likewise.
15960
15961 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15962 Do not assume that bitset_windex is the same width as unsigned.
15963
15964 * lib/abitset.c (abitset_unused_clear): Do not assume that
15965 bitset_word is the same width as int.
15966 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15967 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15968 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15969 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15970 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15971
15972 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15973 portability to one's complement hosts!).
15974 * lib/ebitset.c (ebitset_op1): Likewise.
15975 * lib/lbitset.c (lbitset_op1): Likewise.
15976
15977 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15978 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15979 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15980 Sync with fileutils.
15981 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15982 lib/gettext.h: Sync with diffutils.
15983
15984 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15985 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15986
15987 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15988 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15989 check for void *.
15990
15991 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15992 size_t; the old version tried to do this but casted improperly.
15993 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15994 (bitset_test): Now returns int, not unsigned long.
15995
15996 * lib/bitset_stats.c: Include "gettext.h".
15997 (_): New macro.
15998 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15999 name locals "index", as it generates unnecessary warnings on some
16000 hosts that have an "index" function.
16001
16002 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16003 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16004 they need translation.
16005 * src/LR0.c (state_list_append, new_itemsets, get_state,
16006 append_states, generate_states): Likewise.
16007 * src/assoc.c (assoc_to_string): Likewise.
16008 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16009 * src/gram.c (grammar_dump): Likewise.
16010 * src/injections.c (injections_compute): Likewise.
16011 * src/lalr.c (lookaheads_print): Likewise.
16012 * src/relation.c (relation_transpose): Likewise.
16013 * src/scan-gram.l: Likewise.
16014 * src/tables.c (table_grow, pack_vector): Likewise.
16015
16016 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16017 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16018 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16019 * m4/mbstate_t.m4: Sync with fileutils.
16020 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16021
16022 * po/LINGUAS: Add pt_BR.
16023 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16024 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16025 lib/timevar.c.
16026 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16027 manual recommends.
16028 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16029
16030 * src/complain.c (strerror_r): Remove decl; not needed.
16031 (strerror): Use same pattern as ../lib/error.c.
16032
16033 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16034
16035 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16036
16037 * src/main.c (main): Cast result of bindtextdomain and textdomain
16038 to void, to avoid a GCC warning when --disable-nls is in effect.
16039
16040 * src/scan-gram.l: Use strings rather than escapes when possible,
16041 to minimize the number of warnings from xgettext.
16042 (handle_action_dollar, handle_action_at): Don't use isdigit,
16043 as it mishandles negative chars and it may not work as expected
16044 outside the C locale.
16045
16046 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16047 this is a GCC extension and is not portable to other compilers.
16048
16049 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16050 Do not include <ctype.h>; no longer needed.
16051 Do not include <malloc.h>; no longer needed (and generates
16052 warnings on OpenBSD 3.0).
16053
16054 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16055 it's not portable.
16056
16057 * tests/regression.at: Do not use 'cc -c input.c -o input';
16058 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16059
16060 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16061 exit status as failure, not just exit status 1. Sun C exits
16062 with status 2 sometimes.
16063
16064 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16065 Use it for the two large tests.
16066
c8f002c7
AD
160672002-08-02 Akim Demaille <akim@epita.fr>
16068
16069 * src/conflicts.c (conflicts_output): Don't output rules never
16070 reduced here, since anyway that computation doesn't work.
16071 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16072 (rule_useless_p, rule_never_reduced_p): New.
16073 (grammar_rules_partial_print): Use a filter instead of a range.
16074 Display the title only if needed.
16075 (grammar_rules_print): Adjust.
16076 (grammar_rules_never_reduced_report): New.
16077 * src/tables.c (action_row): Move the computation of rules never
16078 reduced to...
16079 (token_actions): here.
16080 * src/main.c (main): Make the parser before making the report, so
16081 that rules never reduced are computed.
16082 Call grammar_rules_never_reduced_report.
16083 * src/print.c (print_results): Report rules never reduced.
16084 * tests/conflicts.at, tests/reduce.at: Adjust.
16085
cd08e51e
AD
160862002-08-01 Akim Demaille <akim@epita.fr>
16087
16088 Instead of attaching lookaheads and duplicating the rules being
16089 reduced by a state, attach the lookaheads to the reductions.
16090
16091 * src/state.h (state_t): Remove the `lookaheads',
16092 `lookaheads_rule' member.
16093 (reductions_t): Add a `lookaheads' member.
16094 Use a regular array for the `rules'.
16095 * src/state.c (reductions_new): Initialize the lookaheads member
16096 to 0.
16097 (state_rule_lookaheads_print): Adjust.
16098 * src/state.h, src/state.c (state_reductions_find): New.
16099 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16100 (count_rr_conflicts): Adjust.
16101 * src/lalr.c (LArule): Remove.
16102 (add_lookback_edge): Adjust.
16103 (state_lookaheads_count): New.
16104 (states_lookaheads_initialize): Merge into...
16105 (initialize_LA): this.
16106 (lalr_free): Adjust.
16107 * src/main.c (main): Don't free nullable and derives too early: it
16108 is used by --verbose.
16109 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16110
bb0027a9
AD
161112002-08-01 Akim Demaille <akim@epita.fr>
16112
16113 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16114 `rule_number_t**'.
16115 (set_derives, free_derives): Rename as...
16116 (derives_compute, derives_free): this.
16117 Adjust all dependencies.
16118 * src/nullable.c (set_nullable, free_nullable): Rename as...
16119 (nullable_compute, nullable_free): these.
16120 (rule_list_t): Store rule_t *, not rule_number_t.
16121 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16122 pointers, instead of their numbers.
16123 * src/main.c (main): Call nullable_free, and derives_free earlier,
16124 as they were lo longer used.
16125
3325ddc4
AD
161262002-08-01 Akim Demaille <akim@epita.fr>
16127
16128 * lib/timevar.c (get_time): Include children time.
16129 * src/lalr.h (LA, LArule): Don't export them: used with the
16130 state_t.
16131 * src/lalr.c (LA, LArule): Static.
16132 * src/lalr.h, src/lalr.c (lalr_free): New.
16133 * src/main.c (main): Call it.
16134 * src/tables.c (pack_vector): Check whether loc is >= to the
16135 table_size, not >.
16136 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16137 (tables_generate): do it, since that's also it which allocates
16138 them.
16139 Don't free LA and LArule, main does.
16140
c6f1a33c
AD
161412002-07-31 Akim Demaille <akim@epita.fr>
16142
16143 Separate parser tables computation and output.
16144
16145 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16146 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16147 (yydefgoto, yydefact, high): Move to...
16148 * src/tables.h, src/tables.c: here.
16149 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16150 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16151 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16152 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16153 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16154 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16155 (action_row, save_row, token_actions, save_column, default_goto)
16156 (goto_actions, sort_actions, matching_state, pack_vector)
16157 (table_ninf_remap, pack_table, prepare_actions): Move to...
16158 * src/tables.c: here.
16159 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16160 * src/output.c (token_actions, output_base, output_conflicts)
16161 (output_check): Merge into...
16162 (prepare_actions): this.
16163 (actions_output): Rename as...
16164 (user_actions_output): this.
16165 * src/main.c (main): Call tables_generate and tables_free.
16166
1509d42f
AD
161672002-07-31 Akim Demaille <akim@epita.fr>
16168
16169 Steal GCC's --time-report support.
16170
16171 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16172 stolen/adjusted from GCC.
16173 * m4/stage.m4: Remove time related checks.
16174 * m4/timevar.m4: New.
16175 * configure.in: Adjust.
16176 * src/system.h: Adjust to using timevar.h.
16177 * src/getargs.h, src/getargs.c: Support trace_time for
16178 --trace=time.
16179 * src/main.c (stage): Remove.
16180 (main): Replace `stage' invocations with timevar calls.
16181 * src/output.c: Insert pertinent timevar calls.
16182
273a74fa
AD
161832002-07-31 Akim Demaille <akim@epita.fr>
16184
16185 Let --trace have arguments.
16186
16187 * src/getargs.h (enum trace_e): New.
16188 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16189 (long_options, short_options): --trace/-T takes an optional
16190 argument.
16191 Change all the uses of trace_flag to reflect the new flags.
16192 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16193
16194 Strengthen `stage' portability.
16195
16196 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16197 * configure.in: Use it.
16198 Don't check for malloc.h and sys/times.h.
16199 * src/system.h: Include them when appropriate.
16200 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16201 times and struct tms are available.
16202
217598da
AD
162032002-07-30 Akim Demaille <akim@epita.fr>
16204
16205 In verbose parse error message, don't report `error' as an
16206 expected token.
16207 * tests/actions.at (Printers and Destructors): Adjust.
16208 * tests/calc.at (Calculator $1): Adjust.
16209 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16210 error message, do not report the parser accepts the error token in
16211 that state.
16212
52489d44
AD
162132002-07-30 Akim Demaille <akim@epita.fr>
16214
16215 Normalize conflict related messages.
16216
16217 * src/complain.h, src/complain.c (warn, complain): New.
16218 * src/conflicts.c (conflicts_print): Use them.
16219 (conflict_report_yacc): New, extracted from...
16220 (conflicts_print): here.
16221 * tests/conflicts.at, tests/existing.at: Adjust.
16222
e8832397
AD
162232002-07-30 Akim Demaille <akim@epita.fr>
16224
16225 Report rules which are never reduced by the parser: those hidden
16226 by conflicts.
16227
16228 * src/LR0.c (save_reductions): Don't make the final state too
16229 different: save its reduction (accept) instead of having a state
16230 without any action (no shift or goto, no reduce).
16231 Note: the final state is now a ``regular'' state, i.e., the
16232 parsers now contain `reduce 0' as default reduction.
16233 Nevertheless, since they decide to `accept' when yystate =
16234 final_state, they still will not reduce rule 0.
16235 * src/print.c (print_actions, print_reduction): Adjust.
16236 * src/output.c (action_row): Track reduced rules.
16237 (token_actions): Report rules never reduced.
16238 * tests/conflicts.at, tests/regression.at: Adjust.
16239
caf23d24
AD
162402002-07-30 Akim Demaille <akim@epita.fr>
16241
16242 `stage' was accidently included in a previous patch.
16243 Initiate its autoconfiscation.
16244
16245 * configure.in: Look for malloc.h and sys/times.h.
16246 * src/main.c (stage): Adjust.
16247 Report only when trace_flag.
16248
640748ee
AD
162492002-07-29 Akim Demaille <akim@epita.fr>
16250
16251 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16252 state_number_t.
16253 (errs_t): symbol_t*, not symbol_number_t.
16254 (reductions_t): rule_t*, not rule_number_t.
16255 (FOR_EACH_SHIFT): New.
16256 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16257 * src/print.c, src/print_graph.c: Adjust.
16258
88bce5a2
AD
162592002-07-29 Akim Demaille <akim@epita.fr>
16260
16261 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16262
16263 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16264 (endtoken, accept): these.
16265 * src/reader.c (reader): Set endtoken's default tag to "$end".
16266 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16267 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16268 Adjust.
16269
1bfb97db
AD
162702002-07-29 Akim Demaille <akim@epita.fr>
16271
16272 * src/reduce.c (reduce_grammar): When the language is empty,
16273 complain about the start symbol, not the axiom.
16274 Use its location.
16275 * tests/reduce.at (Empty Language): New.
16276
fc5734fe
AD
162772002-07-26 Akim Demaille <akim@epita.fr>
16278
16279 * src/reader.h, src/reader.c (gram_error): ... can't get
16280 yycontrol without making too strong assumptions on the parser
16281 itself.
16282 * src/output.c (prepare_tokens): Use the real 0th value of
16283 token_translations instead of `0'.
16284 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16285 visible here.
16286 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16287 for the time being: %locations ought to provide it to yyerror.
16288
3650b4b8
AD
162892002-07-25 Akim Demaille <akim@epita.fr>
16290
16291 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16292 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16293 * tests/regression.at (Web2c Actions): Adjust.
16294
4b3d3a8e
AD
162952002-07-25 Akim Demaille <akim@epita.fr>
16296
16297 Stop storing rules from 1 to nrules + 1.
16298
16299 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16300 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16301 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16302 Iterate from 0 to nrules.
16303 Use rule_number_as_item_number and item_number_as_rule_number.
16304 Adjust to `derive' now containing possibly 0.
16305 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16306 Handle the `- 1' part in rule numbers from/to item numbers.
16307 * src/conflicts.c (log_resolution): Fix the message which reversed
16308 shift and reduce.
16309 * src/output.c (action_row): Initialize default_rule to -1.
16310 (token_actions): Adjust.
16311 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16312 expected output.
16313 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16314
4a2a22f4
AD
163152002-07-25 Akim Demaille <akim@epita.fr>
16316
16317 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
16318 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
16319 (b4_c_knr_arg_decl): New.
16320 * data/yacc.c: Use it to define yysymprint, yydestruct, and
16321 yyreport_parse_error.
16322
b8df3223
AD
163232002-07-25 Akim Demaille <akim@epita.fr>
16324
16325 * data/yacc.c (yyreport_parse_error): New, extracted from...
16326 (yyparse): here.
16327 (yydestruct, yysymprint): Move above yyparse.
16328 Be K&R compliant.
16329
a762e609
AD
163302002-07-25 Akim Demaille <akim@epita.fr>
16331
16332 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
16333 replace...
16334 (b4_sint_type, b4_uint_type): these.
16335 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
16336 * tests/regression.at (Web2c Actions): Adjust.
16337
12b0043a
AD
163382002-07-25 Akim Demaille <akim@epita.fr>
16339
16340 * src/gram.h (TIEM_NUMBER_MAX): New.
16341 (item_number_of_rule_number, rule_number_of_item_number): Rename
16342 as...
16343 (rule_number_as_item_number, item_number_as_rule_number): these.
16344 Adjust dependencies.
16345 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16346 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16347 (symbol_number_to_vector_number): New.
16348 (order): Of vector_number_t* type.
16349 (base_t, BASE_MAX, BASE_MIN): New.
16350 (froms, tos, width, pos, check): Of base_t type.
16351 (action_number_t, ACTION_MIN, ACTION_MAX): New.
16352 (actrow): Of action_number_t type.
16353 (conflrow): Of unsigned int type.
16354 (table_ninf, base_ninf): New.
16355 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
16356 (muscle_insert_int_table, muscle_insert_base_table)
16357 (muscle_insert_rule_number_table): New.
16358 (prepare_tokens): Output `toknum' as int_table.
16359 (action_row): Returns a rule_number_t.
16360 Use ACTION_MIN, not SHRT_MIN.
16361 (token_actions): yydefact is rule_number_t*.
16362 (table_ninf_remap): New.
16363 (pack_table): Use it for `base' and `table'.
16364 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
16365 replaced with...
16366 (YYPACT_NINF, YYTABLE_NINF): these.
16367 (yypact, yytable): Compute their types instead of hard-coded
16368 `short'.
16369 * tests/regression.at (Web2c Actions): Adjust.
16370
5dde258a
AD
163712002-07-19 Akim Demaille <akim@epita.fr>
16372
16373 * src/scan-gram.l (id): Can start with an underscore.
16374
a945ec39
AD
163752002-07-16 Akim Demaille <akim@epita.fr>
16376
16377 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
16378 Adjust all former `associativity' dependencies.
16379 * src/symtab.c (symbol_new): Default associativity is `undef', not
16380 `right'.
16381 (symbol_check_alias_consistence): Adjust.
16382
fae437e8
AD
163832002-07-09 Akim Demaille <akim@epita.fr>
16384
16385 * doc/bison.texinfo: Properly set the ``header'' part.
16386 Use @dircategory ``GNU programming tools'' as per Texinfo's
16387 documentation.
16388 Use @copying.
16389
1a715ef2
AD
163902002-07-09 Akim Demaille <akim@epita.fr>
16391
16392 * lib/quotearg.h: Protect against multiple inclusions.
16393 * src/location.h (location_t): Add a `file' member.
16394 (LOCATION_RESET, LOCATION_PRINT): Adjust.
16395 * src/complain.c (warn_at, complain_at, fatal_at): Drop
16396 `error_one_per_line' support.
16397
a5d50994
AD
163982002-07-09 Akim Demaille <akim@epita.fr>
16399
16400 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16401 * src/reader.c (lineno): Remove.
16402 Adjust all dependencies.
16403 (get_merge_function): Take a location and use complain_at.
16404 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16405 * tests/regression.at (Invalid inputs, Mixing %token styles):
16406 Adjust.
16407
b275314e
AD
164082002-07-09 Akim Demaille <akim@epita.fr>
16409
16410 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16411 recovery rule, and forbid extensions when --yacc.
16412 (gram_error): Use complain_at.
16413 * src/reader.c (reader): Exit if there were parse errors.
16414
865b9df1
AD
164152002-07-09 Akim Demaille <akim@epita.fr>
16416
16417 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16418 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16419 Reported by R Blake <blakers@mac.com>.
16420
c76e14da
AD
164212002-07-09 Akim Demaille <akim@epita.fr>
16422
16423 * data/yacc.c: Output the copyright notive in the header.
16424
7db2ed2d
AD
164252002-07-03 Akim Demaille <akim@epita.fr>
16426
16427 * src/output.c (froms, tos): Are state_number_t.
16428 (save_column): sp, sp1, and sp2 are state_number_t.
16429 (prepare): Rename `final' as `final_state_number', `nnts' as
16430 `nterms_number', `nrules' as `rules_number', `nstates' as
16431 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16432 unused.
16433 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16434 * data/lalr1.cc (nsym_): Remove, unused.
16435
e68e0410
AD
164362002-07-03 Akim Demaille <akim@epita.fr>
16437
16438 * src/lalr.h, src/lalr.c (goto_number_t): New.
16439 * src/lalr.c (goto_list_t): New.
16440 Propagate them.
16441 * src/nullable.c (rule_list_t): New.
16442 Propagate.
16443 * src/types.h: Remove.
16444
e1a4f3a4
AD
164452002-07-03 Akim Demaille <akim@epita.fr>
16446
16447 * src/closure.c (print_fderives): Use rule_rhs_print.
16448 * src/derives.c (print_derives): Use rule_rhs_print.
16449 (rule_list_t): New, replaces `shorts'.
16450 (set_derives): Add comments.
16451 * tests/sets.at (Nullable, Firsts): Adjust.
16452
536545f3
AD
164532002-07-03 Akim Demaille <akim@epita.fr>
16454
16455 * src/output.c (prepare_actions): Free `tally' and `width'.
16456 (prepare_actions): Allocate and free `order'.
16457 * src/symtab.c (symbols_free): Free `symbols'.
16458 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16459 * src/output.c (m4_invoke): Move to...
16460 * src/scan-skel.l: here.
16461 (<<EOF>>): Close yyout, and free its name.
16462
8b752b00
AD
164632002-07-03 Akim Demaille <akim@epita.fr>
16464
16465 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16466
16467 * src/LR0.c (new_state): Merge into...
16468 (state_list_append): this.
16469 (new_states): Merge into...
16470 (generate_states): here.
16471 (set_states): Don't ensure a proper `errs' state member here, do it...
16472 * src/conflicts.c (conflicts_solve): here.
16473 * src/state.h, src/state.c: Comment changes.
16474 (state_t): Rename member `shifts' as `transitions'.
16475 Adjust all dependencies.
16476 (errs_new): For consistency, also take the values as argument.
16477 (errs_dup): Remove.
16478 (state_errs_set): New.
16479 (state_reductions_set, state_transitions_set): Assert that no
16480 previous value was assigned.
16481 (state_free): New.
16482 (states_free): Use it.
16483 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16484 temporary storage: use `errs' and `nerrs' as elsewhere.
16485 (set_conflicts): Allocate and free this `errs'.
16486
613f5e1a
AD
164872002-07-02 Akim Demaille <akim@epita.fr>
16488
16489 * lib/libiberty.h: New.
16490 * lib: Update the bitset implementation from upstream.
16491 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16492 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16493 * src/main.c: Adjust bitset stats calls.
16494
26e0cadc
PE
164952002-07-01 Paul Eggert <eggert@twinsun.com>
16496
16497 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16498 char, so that negative chars don't collide with $.
16499
1154cced
AD
165002002-06-30 Akim Demaille <akim@epita.fr>
16501
16502 Have the GLR tests be `warning' checked, and fix the warnings.
16503
16504 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16505 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16506 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16507 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16508 (yyaddDeferredAction): static.
16509 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16510 (yyreportParseError): yyprefix is const.
16511 yytokenp is used only when verbose.
16512 (yy__GNUC__): Replace with __GNUC__.
16513 (yypdumpstack): yyi is size_t.
16514 (yypreference): Un-yy local variables and arguments, to avoid
16515 clashes with `yyr1'. Anyway, we are not in the user name space.
16516 (yytname_size): be an int, as is compared with ints.
16517 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16518 Use them.
16519 * tests/cxx-gram.at: Use quotation to protect $1.
16520 Use AT_COMPILE to enable warnings hunts.
16521 Prototype yylex and yyerror.
16522 `Use' argc.
16523 Include `string.h', not `strings.h'.
16524 Produce and prototype stmtMerge only when used.
16525 yylex takes a location.
16526
97650f4e
AD
165272002-06-30 Akim Demaille <akim@epita.fr>
16528
16529 We spend a lot of time in quotearg, in particular when --verbose.
16530
16531 * src/symtab.c (symbol_get): Store a quoted version of the key.
16532 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16533 Adjust all callers.
16534
d2576365
AD
165352002-06-30 Akim Demaille <akim@epita.fr>
16536
16537 * src/state.h (reductions_t): Rename member `nreds' as num.
16538 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16539 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16540
ccaf65bc
AD
165412002-06-30 Akim Demaille <akim@epita.fr>
16542
16543 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16544 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16545 (shifts_to): Rename as...
16546 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16547 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16548 (TRANSITION_IS_DISABLED, transitions_to): these.
16549
87675353
AD
165502002-06-30 Akim Demaille <akim@epita.fr>
16551
16552 * src/print.c (print_shifts, print_gotos): Merge into...
16553 (print_transitions): this.
16554 (print_transitions, print_errs, print_reductions): Align the
16555 lookaheads columns.
16556 (print_core, print_transitions, print_errs, print_state,
16557 print_grammar): Output empty lines separator before, not after.
16558 (state_default_rule_compute): Rename as...
16559 (state_default_rule): this.
16560 * tests/conflicts.at (Defaulted Conflicted Reduction),
16561 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16562 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16563
ce4ccb4b
AD
165642002-06-30 Akim Demaille <akim@epita.fr>
16565
16566 Display items as we display rules.
16567
16568 * src/gram.h, src/gram.c (rule_lhs_print): New.
16569 * src/gram.c (grammar_rules_partial_print): Use it.
16570 * src/print.c (print_core): Likewise.
16571 * tests/conflicts.at (Defaulted Conflicted Reduction),
16572 (Unresolved SR Conflicts): Adjust.
16573 (Unresolved SR Conflicts): Adjust and rename as...
16574 (Resolved SR Conflicts): this, as was meant.
16575 * tests/regression.at (Web2c Report): Adjust.
16576
bc933ef1
AD
165772002-06-30 Akim Demaille <akim@epita.fr>
16578
16579 * src/print.c (state_default_rule_compute): New, extracted from...
16580 (print_reductions): here.
16581 Pessimize, but clarify the code.
16582 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16583
53d4308d
AD
165842002-06-30 Akim Demaille <akim@epita.fr>
16585
16586 * src/output.c (action_row): Let default_rule be always a rule
16587 number.
16588
574fb2d5
AD
165892002-06-30 Akim Demaille <akim@epita.fr>
16590
16591 * src/closure.c (print_firsts, print_fderives, closure):
16592 Use BITSET_EXECUTE.
16593 * src/lalr.c (lookaheads_print): Likewise.
16594 * src/state.c (state_rule_lookaheads_print): Likewise.
16595 * src/print_graph.c (print_core): Likewise.
16596 * src/print.c (print_reductions): Likewise.
16597 * src/output.c (action_row): Likewise.
16598 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16599
05811fd7
AD
166002002-06-30 Akim Demaille <akim@epita.fr>
16601
16602 * src/print_graph.c: Use report_flag.
16603
0e4d5753
AD
166042002-06-30 Akim Demaille <akim@epita.fr>
16605
16606 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16607 to...
16608 * src/relation.h, src/relation.c (traverse, relation_digraph)
16609 (relation_print, relation_transpose): New.
16610
24c7d800
AD
166112002-06-30 Akim Demaille <akim@epita.fr>
16612
16613 * src/state.h, src/state.c (shifts_to): New.
16614 * src/lalr.c (build_relations): Use it.
16615
9222837b
AD
166162002-06-30 Akim Demaille <akim@epita.fr>
16617
16618 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16619 (item_number_of_rule_number, rule_number_of_item_number): New.
16620 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16621 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16622 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16623 Propagate their use.
16624 Much remains to be done, in particular wrt `shorts' from types.h.
16625
260008e5
AD
166262002-06-30 Akim Demaille <akim@epita.fr>
16627
16628 * src/symtab.c (symbol_new): Initialize the `printer' member.
16629
8a731ca8
AD
166302002-06-30 Akim Demaille <akim@epita.fr>
16631
16632 * src/LR0.c (save_reductions): Remove, replaced by...
16633 * src/state.h, src/state.c (state_reductions_set): New.
16634 (reductions, errs): Rename as...
16635 (reductions_t, errs_t): these.
16636 Adjust all dependencies.
16637
32e1e0a4
AD
166382002-06-30 Akim Demaille <akim@epita.fr>
16639
16640 * src/LR0.c (state_list_t, state_list_append): New.
16641 (first_state, last_state): Now symbol_list_t.
16642 (this_state): Remove.
16643 (new_itemsets, append_states, save_reductions): Take a state_t as
16644 argument.
16645 (set_states, generate_states): Adjust.
16646 (save_shifts): Remove, replaced by...
16647 * src/state.h, src/state.c (state_shifts_set): New.
16648 (shifts): Rename as...
16649 (shifts_t): this.
16650 Adjust all dependencies.
16651 * src/state.h (state_t): Remove the `next' member.
16652
e5fb6710
AD
166532002-06-30 Akim Demaille <akim@epita.fr>
16654
16655 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16656 escaped in slot 0.
16657
c7ca99d4
AD
166582002-06-30 Akim Demaille <akim@epita.fr>
16659
16660 Use hash.h for the state hash table.
16661
16662 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16663 (allocate_storage): Use state_hash_new.
16664 (free_storage): Use state_hash_free.
16665 (new_state, get_state): Adjust.
16666 * src/lalr.h, src/lalr.c (states): Move to...
16667 * src/states.h (state_t): Remove the `link' member, no longer
16668 used.
16669 * src/states.h, src/states.c: here.
16670 (state_hash_new, state_hash_free, state_hash_lookup)
16671 (state_hash_insert, states_free): New.
16672 * src/states.c (state_table, state_compare, state_hash): New.
16673 * src/output.c (output_actions): Do not free states now, since we
16674 still need to know the final_state number in `prepare', called
16675 afterwards. Do it...
16676 * src/main.c (main): here: call states_free after `output'.
16677
df0e7316
AD
166782002-06-30 Akim Demaille <akim@epita.fr>
16679
16680 * src/state.h, src/state.c (state_new): New, extracted from...
16681 * src/LR0.c (new_state): here.
16682 * src/state.h (STATE_ALLOC): Move to...
16683 * src/state.c: here.
16684 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16685 * src/state.h, src/state.c: here.
16686
39f41916
AD
166872002-06-30 Akim Demaille <akim@epita.fr>
16688
16689 * src/reader.c (gensym): Rename as...
16690 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16691 (getsym): Rename as...
16692 (symbol_get): this.
16693
d57650a5
AD
166942002-06-30 Akim Demaille <akim@epita.fr>
16695
16696 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16697 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16698 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16699 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16700
5a08f1ce
AD
167012002-06-30 Akim Demaille <akim@epita.fr>
16702
16703 Make the test suite pass with warnings checked.
16704
16705 * tests/actions.at (Printers and Destructors): Improve.
16706 Avoid unsigned vs. signed issues.
16707 * tests/calc.at: Don't exercise the scanner here, do it...
16708 * tests/input.at (Torturing the Scanner): here.
16709
720623af
PH
167102002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16711
88e7e941 16712 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
16713 reorganize first lines parallel to yacc.c.
16714
fb8135fa
AD
167152002-06-28 Akim Demaille <akim@epita.fr>
16716
16717 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16718 (b4_token_enum, b4_token_defines): New, factored from...
16719 * data/lalr1.cc, data/yacc.c, glr.c: here.
16720
41442480
AD
167212002-06-28 Akim Demaille <akim@epita.fr>
16722
16723 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16724 unused variables.
16725 * src/output.c (merger_output): static.
16726
e0e5bf84
AD
167272002-06-28 Akim Demaille <akim@epita.fr>
16728
ba0fe3c7 16729 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
16730 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16731 pacify GCC.
16732 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 16733
676385e2
PH
167342002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16735
16736 Accumulated changelog for new GLR parsing features.
16737
6a254321 16738 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
16739 conflicts_total_count.
16740 * src/conflicts.h: Ditto.
16741 * src/output.c (token_actions): Use the new name.
16742 (output_conflicts): Change conflp => conflict_list_heads, and
16743 confl => conflict_list for better readability.
16744 * data/glr.c: Use the new names.
16745 * NEWS: Add self to GLR announcement.
e0e5bf84 16746
676385e2
PH
16747 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16748
16749 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16750 Akim Demaille.
16751
16752 * data/bison.glr: Change name to glr.c
16753 * data/glr.c: Renamed from bison.glr.
16754 * data/Makefile.am: Add glr.c
e0e5bf84
AD
16755
16756 * src/getargs.c:
16757
676385e2 16758 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 16759 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 16760
676385e2
PH
16761 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16762
16763 * data/bison.glr: Be sure to restore the
16764 current #line when returning to the skeleton contents after having
16765 exposed the input file's #line.
16766
16767 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16768
16769 * data/bison.glr: Bring up to date with changes to bison.simple.
16770
16771 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16772
16773 * data/bison.glr: Correct definitions that use b4_prefix.
16774 Various reformatting.
16775 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16776 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16777 yytokenp argument; now part of stack.
16778 (yychar): Define to behave as documented.
16779 (yyclearin): Ditto.
e0e5bf84 16780
676385e2
PH
16781 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16782
16783 * src/reader.h: Add declaration for free_merger_functions.
16784
16785 * src/reader.c (merge_functions): New variable.
16786 (get_merge_function): New function.
16787 (free_merger_functions): New function.
16788 (readgram): Check for %prec that is not followed by a symbol.
16789 Handle %dprec and %merge declarations.
16790 (packgram): Initialize dprec and merger fields in rules array.
16791
16792 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16793 conflict_list_cnt, conflict_list_free): New variables.
16794 (table_grow): Also grow conflict_table.
e0e5bf84 16795 (prepare_rules): Output dprec and merger tables.
676385e2 16796 (conflict_row): New function.
e0e5bf84 16797 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
16798 default reduction in conflicted states for GLR parser so that there
16799 are spaces for the conflict lists.
16800 (save_row): Also save conflict information.
16801 (token_actions): Allocate conflict list.
16802 (merger_output): New function.
16803 (pack_vector): Pack conflict table, too.
16804 (output_conflicts): New function to output yyconflp and yyconfl.
16805 (output_check): Allocate conflict_tos.
16806 (output_actions): Output conflict tables, also.
16807 (output_skeleton): Output b4_mergers definition.
16808 (prepare): Output b4_max_rhs_length definition.
16809 Use 'bison.glr' as default skeleton for GLR parsers.
16810
16811 * src/gram.c (glr_parser): New flag.
16812 (grammar_free): Call free_merger_functions.
16813
16814 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16815 all pairs of conflicting reductions, rather than just all tokens
16816 causing conflicts. Needed to size conflict tables.
e0e5bf84 16817 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
16818 interface.
16819 (conflicts_print): Ditto.
16820 (count_total_conflicts): New function.
16821
16822 * src/reader.h (merger_list): New type.
16823 (merge_functions): New variable.
16824
16825 * src/lex.h (tok_dprec, tok_merge): New token types.
16826
16827 * src/gram.h (rule_s): Add dprec and merger fields.
16828 (glr_parser): New flag.
16829
16830 * src/conflicts.h (count_total_conflicts): New function.
16831
16832 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16833
16834 * doc/bison.texinfo (Generalized LR Parsing): New section.
16835 (GLR Parsers): New section.
16836 (Language and Grammar): Mention GLR parsing.
16837 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16838 Correct typo ("tge" -> "the").
16839
16840 * data/bison.glr: New skeleton for GLR parsing.
16841
16842 * tests/cxx-gram.at: New tests for GLR parsing.
16843
16844 * tests/testsuite.at: Include cxx-gram.at.
16845
16846 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 16847
676385e2
PH
16848 * src/parse-gram.y:
16849
16850 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16851
16852 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 16853
b5480d74 168542002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
16855
16856 * src/options.h, src/options.c: Remove.
16857 * src/getargs.c (short_options, long_options): New.
16858
60491a94
AD
168592002-06-27 Akim Demaille <akim@epita.fr>
16860
16861 * data/bison.simple, data/bison.c++: Rename as...
16862 * data/yacc.c, data/lalr1.cc: these.
16863 * doc/bison.texinfo (Environment Variables): Remove.
16864
9be0c25b
AD
168652002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16866
16867 * src/getargs.c (report_argmatch): Initialize strtok().
16868
1ae72863
AD
168692002-06-20 Akim Demaille <akim@epita.fr>
16870
16871 * data/bison.simple (b4_symbol_actions): New, replaces...
16872 (b4_symbol_destructor, b4_symbol_printer): these.
16873 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16874 user token numbers.
16875
87542d29
AD
168762002-06-20 Akim Demaille <akim@epita.fr>
16877
16878 * data/bison.simple (yydestructor): Rename as...
16879 (yydestruct): this.
16880
1a31ed21
AD
168812002-06-20 Akim Demaille <akim@epita.fr>
16882
16883 * src/symtab.h, src/symtab.c (symbol_type_set)
16884 (symbol_destructor_set, symbol_precedence_set): The location is
16885 the last argument.
16886 Adjust all callers.
16887
e776192e
AD
168882002-06-20 Akim Demaille <akim@epita.fr>
16889
16890 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16891 internals.
16892 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16893 Takes a location.
16894 * src/symtab.h, src/symtab.c (symbol_class_set)
16895 (symbol_user_token_number_set): Likewise.
16896 Adjust all callers.
16897 Promote complain_at.
16898 * tests/input.at (Type Clashes): Adjust.
16899
5c1180b3
AD
169002002-06-20 Akim Demaille <akim@epita.fr>
16901
16902 * data/bison.simple (YYLEX): Fix the declaration when
16903 %pure-parser.
16904
e3170060
AD
169052002-06-20 Akim Demaille <akim@epita.fr>
16906
16907 * data/bison.simple (yysymprint): Don't print the token number,
16908 just its name.
16909 * tests/actions.at (Destructors): Rename as...
16910 (Printers and Destructors): this.
16911 Also exercise %printer.
16912
253862fd
AD
169132002-06-20 Akim Demaille <akim@epita.fr>
16914
16915 * data/bison.simple (YYDSYMPRINT): New.
16916 Use it to remove many of the #if YYDEBUG/if (yydebug).
16917
366eea36
AD
169182002-06-20 Akim Demaille <akim@epita.fr>
16919
16920 * src/symtab.h, src/symtab.c (symbol_t): printer and
16921 printer_location are new members.
16922 (symbol_printer_set): New.
16923 * src/parse-gram.y (PERCENT_PRINTER): New token.
16924 Handle its associated rule.
16925 * src/scan-gram.l: Adjust.
16926 (handle_destructor_at, handle_destructor_dollar): Rename as...
16927 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16928 * src/output.c (symbol_printers_output): New.
16929 (output_skeleton): Call it.
16930 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16931 since there are already many grammar files with a user `yyprint'.
16932 Replace the calls to YYPRINT to calls to yysymprint.
16933 * tests/calc.at: Adjust.
16934 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16935 taking advantage of parser very internal details (stack size!).
16936
4f25ebb0
AD
169372002-06-20 Akim Demaille <akim@epita.fr>
16938
16939 * src/scan-gram.l: Complete the scanner with the missing patterns
16940 to pacify Flex.
16941 Use `quote' and `symbol_tag_get' where appropriate.
16942
93b68a0e
AD
169432002-06-19 Akim Demaille <akim@epita.fr>
16944
16945 * tests/actions.at (Destructors): Augment to test locations.
16946 * data/bison.simple (yydestructor): Pass it the current location
16947 if locations are enabled.
16948 Prototype only when __STDC__ or C++.
16949 Change the argument names to move into the yy name space: there is
16950 user code here.
16951
58612f1d
AD
169522002-06-19 Akim Demaille <akim@epita.fr>
16953
74310291
AD
16954 * data/bison.simple (b4_pure_if): New.
16955 Use it instead of #ifdef YYPURE.
16956
169572002-06-19 Akim Demaille <akim@epita.fr>
16958
16959 * data/bison.simple (b4_location_if): New.
58612f1d
AD
16960 Use it instead of #ifdef YYLSP_NEEDED.
16961
f25bfb75
AD
169622002-06-19 Akim Demaille <akim@epita.fr>
16963
16964 Prepare @$ in %destructor, but currently don't bind it in the
16965 skeleton, as %location use is not cleaned up yet.
16966
16967 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16968 (handle_action_at): New.
16969 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16970 a braced_code_t and a location as additional arguments.
16971 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16972 unquote one when outputting `b4_dollar_dollar'.
16973 Adjust callers.
16974 * data/bison.simple (b4_eval): Remove.
16975 (b4_symbol_destructor): Adjust.
16976 * tests/input.at (Invalid @n): Adjust.
16977
c732d2c6
AD
169782002-06-19 Zack Weinberg <zack@codesourcery.com>
16979
16980 * doc/bison.texinfo: Document ability to have multiple
16981 prologue sections.
16982
8c165d89
AD
169832002-06-18 Akim Demaille <akim@epita.fr>
16984
16985 * src/files.c (compute_base_names): When computing the output file
16986 names from the input file name, strip the directory part.
16987
ca98bf57
AD
169882002-06-18 Akim Demaille <akim@epita.fr>
16989
16990 * data/bison.simple.new: Comment changes.
16991 Reported by Andreas Schwab.
16992
0bfb02ff
AD
169932002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16994
16995 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16996 there are no `label `yyoverflowlab' defined but not used' warnings
16997 when yyoverflow is defined.
16998
24c0aad7
AD
169992002-06-18 Akim Demaille <akim@epita.fr>
17000
17001 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17002 new member.
17003 (symbol_destructor_set): Adjust.
17004 * src/output.c (symbol_destructors_output): Output the destructor
17005 locations.
17006 Output the symbol name.
17007 * data/bison.simple (b4_symbol_destructor): Adjust.
17008
5719c109
AD
170092002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17010 and Akim Demaille <akim@epita.fr>
17011
17012 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17013 what's left on the stack when the error recovery hits EOF.
17014 * tests/actions.at (Destructors): Complete to exercise this case.
17015
9280d3ef
AD
170162002-06-17 Akim Demaille <akim@epita.fr>
17017
17018 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17019 arguments is really empty, not only equal to `[]'.
17020 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17021 member.
17022 (symbol_destructor_set): New.
17023 * src/output.c (symbol_destructors_output): New.
17024 * src/reader.h (brace_code_t, current_braced_code): New.
17025 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17026 (handle_dollar): Rename as...
17027 (handle_action_dollar): this.
17028 (handle_destructor_dollar): New.
17029 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17030 (grammar_declaration): Use it.
17031 * data/bison.simple (yystos): Is always defined.
17032 (yydestructor): New.
17033 * tests/actions.at (Destructors): New.
17034 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17035
dafdc66f
AD
170362002-06-17 Akim Demaille <akim@epita.fr>
17037
17038 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17039 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17040 rule_length only when needed.
17041 * src/output.c (actions_output, token_definitions_output): Output
17042 the full M4 block.
17043 * src/symtab.c: Don't access directly to the symbol tag, use
17044 symbol_tag_get.
17045 * src/parse-gram.y: Use symbol_list_free.
17046
56c47203
AD
170472002-06-17 Akim Demaille <akim@epita.fr>
17048
17049 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17050 (symbol_list_prepend, get_type_name): Move to...
17051 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17052 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17053 Adjust all callers.
17054 (symbol_list_free): New.
17055 * src/scan-gram.l (handle_dollar): Takes a location.
17056 * tests/input.at (Invalid $n): Adjust.
17057
1e0bab92
AD
170582002-06-17 Akim Demaille <akim@epita.fr>
17059
17060 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17061 (symbol_list_prepend): New.
17062 * src/parse-gram.y (%union): `list' is a new member.
17063 (symbols.1): New, replaces...
17064 (terms_to_prec.1, nterms_to_type.1): these.
17065 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17066 Take a location as additional argument.
17067 Adjust all callers.
17068
04e60654
AD
170692002-06-15 Akim Demaille <akim@epita.fr>
17070
17071 * src/parse-gram.y: Move %token in the declaration section so that
17072 we don't depend upon CVS Bison.
17073
10e5b8bd
AD
170742002-06-15 Akim Demaille <akim@epita.fr>
17075
17076 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17077 * src/print.c (print_core): Use it.
17078
9801d40c
AD
170792002-06-15 Akim Demaille <akim@epita.fr>
17080
17081 * src/conflicts.c (log_resolution): Accept the rule involved in
17082 the sr conflicts instead of the lookahead number that points to
17083 that rule.
17084 (flush_reduce): Accept the current lookahead vector as argument,
17085 instead of the index in LA.
17086 (resolve_sr_conflict): Accept the current number of lookahead
17087 bitset to consider for the STATE, instead of the index in LA.
17088 (set_conflicts): Adjust.
17089 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17090
c0263492
AD
170912002-06-15 Akim Demaille <akim@epita.fr>
17092
17093 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17094 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17095 Adjust all dependencies.
17096 * src/lalr.c (initialize_lookaheads): Split into...
17097 (states_lookaheads_count, states_lookaheads_initialize): these.
17098 (lalr): Adjust.
17099
9757c359
AD
171002002-06-15 Akim Demaille <akim@epita.fr>
17101
17102 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17103 out of...
17104 (grammar_rules_print): here.
17105 * src/reduce.c (reduce_output): Use it.
17106 * tests/reduce.at (Useless Rules, Reduced Automaton)
17107 (Underivable Rules): Adjust.
17108
6b98e4b5
AD
171092002-06-15 Akim Demaille <akim@epita.fr>
17110
17111 Copy BYacc's nice way to report the grammar.
17112
17113 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17114 New.
17115 Don't print the rules' location, it is confusing and useless.
17116 (rule_print): Use grammar_rhs_print.
17117 * src/print.c (print_grammar): Use grammar_rules_print.
17118
6b98e4b5
AD
171192002-06-15 Akim Demaille <akim@epita.fr>
17120
17121 Complete and rationalize `useless thing' warnings.
17122
17123 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17124 (symbol_tag_print): New.
17125 Use them everywhere in place of accessing directly the tag member.
17126 * src/gram.h, src/gram.c (rule_print): New.
17127 Use it where a rule used to be printed `by hand'.
17128 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17129 (reduce_grammar_tables): Report the useless rules.
17130 (reduce_print): Useless things are a warning, not an error.
17131 Report it as such.
17132 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17133 (Reduced Automaton, Underivable Rules): Adjust.
17134 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17135 * tests/conflicts.at (Unresolved SR Conflicts)
17136 (Solved SR Conflicts): Adjust.
17137
ee000ba4
AD
171382002-06-15 Akim Demaille <akim@epita.fr>
17139
17140 Let symbols have a location.
17141
17142 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17143 (getsym): Adjust.
17144 Adjust all callers.
17145 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17146 Use location_t, not int.
17147 * src/symtab.c (symbol_check_defined): Take advantage of the
17148 location.
17149 * tests/regression.at (Invalid inputs): Adjust.
17150
8efe435c
AD
171512002-06-15 Akim Demaille <akim@epita.fr>
17152
17153 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17154 (input): Don't try to initialize yylloc here, do it in the
17155 scanner.
17156 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17157 * src/gram.h (rule_t): Change line and action_line into location
17158 and action_location, of location_t type.
17159 Adjust all dependencies.
17160 * src/location.h, src/location.c (empty_location): New.
17161 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17162 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17163 (grammar_current_rule_symbol_append)
17164 (grammar_current_rule_action_append): Expect a location as argument.
17165 * src/reader.c (grammar_midrule_action): Adjust to attach an
17166 action's location as dummy symbol location.
17167 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17168 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17169 the line numbers.
17170
1921f1d7
AD
171712002-06-14 Akim Demaille <akim@epita.fr>
17172
17173 Grammar declarations may be found in the grammar section.
17174
17175 * src/parse-gram.y (rules_or_grammar_declaration): New.
17176 (declarations): Each declaration may end with a semicolon, not
17177 just...
17178 (grammar_declaration): `"%union"'.
17179 (grammar): Branch to rules_or_grammar_declaration.
17180
4515534c
AD
171812002-06-14 Akim Demaille <akim@epita.fr>
17182
17183 * src/main.c (main): Invoke scanner_free.
17184
f958596b
AD
171852002-06-14 Akim Demaille <akim@epita.fr>
17186
17187 * src/output.c (m4_invoke): Extracted from...
17188 (output_skeleton): here.
17189 Free tempfile.
17190
2c569025
AD
171912002-06-14 Akim Demaille <akim@epita.fr>
17192
17193 * src/parse-gram.y (directives, directive, gram)
17194 (grammar_directives, precedence_directives, precedence_directive):
17195 Rename as...
17196 (declarations, declaration, grammar, grammar_declaration)
17197 (precedence_declaration, precedence_declarator): these.
17198 (symbol_declaration): New.
17199
592e8d4d
AD
172002002-06-14 Akim Demaille <akim@epita.fr>
17201
17202 * src/files.c (action_obstack): Remove, unused.
17203 (output_obstack): Remove it, and all its dependencies, as it is no
17204 longer needed.
17205 * src/reader.c (epilogue_set): Build the epilogue in the
17206 muscle_obstack.
17207 * src/output.h, src/output.c (muscle_obstack): Move to...
17208 * src/muscle_tab.h, src/muscle_tab.h: here.
17209 (muscle_init): Initialize muscle_obstack.
17210 (muscle_free): New.
17211 * src/main.c (main): Call it.
17212
0c15323d
AD
172132002-06-14 Akim Demaille <akim@epita.fr>
17214
17215 * src/location.h: New, extracted from...
17216 * src/reader.h: here.
17217 * src/Makefile.am (noinst_HEADERS): Merge into
17218 (bison_SOURCES): this.
17219 Add location.h.
17220 * src/parse-gram.y: Use location_t instead of Bison's.
17221 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17222 Use location_t instead of ints.
17223
e96c9728
AD
172242002-06-14 Akim Demaille <akim@epita.fr>
17225
17226 * data/bison.simple, data/bison.c++: Be sure to restore the
17227 current #line when returning to the skeleton contents after having
17228 exposed the input file's #line.
17229
75d1fe16
AD
172302002-06-12 Akim Demaille <akim@epita.fr>
17231
17232 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17233 eager.
17234 * tests/actions.at (Exotic Dollars): New.
17235
6c35d22c
AD
172362002-06-12 Akim Demaille <akim@epita.fr>
17237
17238 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17239 ['"/] too eagerly.
17240 * tests/input.at (Torturing the Scanner): New.
17241
1d6412ad
AD
172422002-06-11 Akim Demaille <akim@epita.fr>
17243
17244 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17245 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17246 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17247 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17248 * src/reader.c (reader): Use it.
17249
4cdb01db
AD
172502002-06-11 Akim Demaille <akim@epita.fr>
17251
17252 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17253 Adjust all callers.
17254 (scanner_last_string_free): New.
17255
44995b2e
AD
172562002-06-11 Akim Demaille <akim@epita.fr>
17257
17258 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17259 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17260 (last_string, YY_OBS_FREE): New.
17261 Use them when returning an ID.
17262
e9955c83
AD
172632002-06-11 Akim Demaille <akim@epita.fr>
17264
17265 Have Bison grammars parsed by a Bison grammar.
17266
17267 * src/reader.c, src/reader.h (prologue_augment): New.
17268 * src/reader.c (copy_definition): Remove.
17269
17270 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17271 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17272 (grammar_current_rule_prec_set, grammar_current_rule_check)
17273 (grammar_current_rule_symbol_append)
17274 (grammar_current_rule_action_append): Export.
17275 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17276 (symbol_list_action_append): Remove.
17277 Hook the routines from reader.
17278 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17279 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17280
17281 * src/reader.c (read_declarations): Remove, unused.
17282
17283 * src/parse-gram.y: Handle the epilogue.
17284 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17285 (grammar_start_symbol_set): this.
17286 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17287 * src/reader.c (readgram): Remove, unused.
17288 (reader): Adjust to insert eoftoken and axiom where appropriate.
17289
17290 * src/reader.c (copy_dollar): Replace with...
17291 * src/scan-gram.h (handle_dollar): this.
17292 * src/parse-gram.y: Remove `%thong'.
17293
17294 * src/reader.c (copy_at): Replace with...
17295 * src/scan-gram.h (handle_at): this.
17296
17297 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17298 New.
17299
17300 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17301 time being.
17302
17303 * src/reader.h, src/reader.c (grammar_rule_end): New.
17304
17305 * src/parse.y (current_type, current_class): New.
17306 Implement `%nterm', `%token' support.
17307 Merge `%term' into `%token'.
17308 (string_as_id): New.
17309 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17310 type name.
17311
17312 * src/parse-gram.y: Be sure to handle properly the beginning of
17313 rules.
17314
17315 * src/parse-gram.y: Handle %type.
17316 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17317
17318 * src/parse-gram.y: More directives support.
17319 * src/options.c: No longer handle source directives.
17320
17321 * src/parse-gram.y: Fix %output.
17322
17323 * src/parse-gram.y: Handle %union.
17324 Use the prologue locations.
17325 * src/reader.c (parse_union_decl): Remove.
17326
17327 * src/reader.h, src/reader.c (epilogue_set): New.
17328 * src/parse-gram.y: Use it.
17329
17330 * data/bison.simple, data/bison.c++: b4_stype is now either not
17331 defined, then default to int, or to the contents of %union,
17332 without `union' itself.
17333 Adjust.
17334 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
17335
17336 * src/output.c (actions_output): Don't output braces, as they are
17337 already handled by the scanner.
17338
17339 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
17340 characters to themselves.
17341
17342 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
17343 that the epilogue has a proper #line.
17344
17345 * src/parse-gram.y: Handle precedence/associativity.
17346
17347 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
17348 a terminal.
17349 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
17350 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
17351 at all to define terminals that cannot be emitted.
17352
17353 * src/scan-gram.l: Escape M4 characters.
17354
17355 * src/scan-gram.l: Working properly with escapes in user
17356 strings/characters.
17357
17358 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
17359 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
17360 grammar.
17361 Use more modest sizes, as for the time being the parser does not
17362 release memory, and therefore the process swallows a huge amount
17363 of memory.
17364
17365 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
17366 stricter %token grammar.
17367
17368 * src/symtab.h (associativity): Add `undef_assoc'.
17369 (symbol_precedence_set): Do nothing when passed an undef_assoc.
17370 * src/symtab.c (symbol_check_alias_consistence): Adjust.
17371
17372 * tests/regression.at (Invalid %directive): Remove, as it is now
17373 meaningless.
17374 (Invalid inputs): Adjust to the new error messages.
17375 (Token definitions): The new grammar doesn't allow too many
17376 eccentricities.
17377
17378 * src/lex.h, src/lex.c: Remove.
17379 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
17380 (copy_character, copy_string2, copy_string, copy_identifier)
17381 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
17382 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
17383 (parse_action): Remove.
17384 * po/POTFILES.in: Adjust.
17385
2e047461
AD
173862002-06-11 Akim Demaille <akim@epita.fr>
17387
cd05d13c 17388 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
17389 rule's action member: return the action as a string.
17390 Don't require `rule_length' as an argument: compute it.
17391 (grammar_current_rule_symbol_append)
17392 (grammar_current_rule_action_append): New, eved out from
17393 (readgram): here.
17394 Remove `action_flag', `rulelength', unused now.
17395
9af3fbce
AD
173962002-06-11 Akim Demaille <akim@epita.fr>
17397
17398 * src/reader.c (grammar_current_rule_prec_set).
17399 (grammar_current_rule_check): New, eved out from...
17400 (readgram): here.
17401 Remove `xaction', `first_rhs': useless.
17402 * tests/input.at (Type clashes): New.
17403 * tests/existing.at (GNU Cim Grammar): Adjust.
17404
1485e106
AD
174052002-06-11 Akim Demaille <akim@epita.fr>
17406
17407 * src/reader.c (grammar_midrule_action): New, Eved out from
17408 (readgram): here.
17409
da4160c3
AD
174102002-06-11 Akim Demaille <akim@epita.fr>
17411
17412 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17413 New.
17414 (readgram): Use them as replacement of inlined code, crule and
17415 crule1.
17416
f6d0f937
AD
174172002-06-11 Akim Demaille <akim@epita.fr>
17418
17419 * src/reader.c (grammar_end, grammar_symbol_append): New.
17420 (readgram): Use them.
17421 Make the use of `p' as local as possible.
17422
69078d4b
AD
174232002-06-10 Akim Demaille <akim@epita.fr>
17424
17425 GCJ's parser requires the tokens to be defined before the prologue.
17426
17427 * data/bison.simple: Output the token definition before the user's
17428 prologue.
17429 * tests/regression.at (Braces parsing, Duplicate string)
17430 (Mixing %token styles): Check the output from bison.
17431 (Early token definitions): New.
17432
5e424082
AD
174332002-06-10 Akim Demaille <akim@epita.fr>
17434
17435 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17436 assigning twice the same user number to a token, so that we can
17437 use it in...
17438 * src/lex.c (lex): here.
17439 Also use `symbol_class_set' instead of hand written code.
17440 * src/reader.c (parse_assoc_decl): Likewise.
17441
44536b35
AD
174422002-06-10 Akim Demaille <akim@epita.fr>
17443
17444 * src/symtab.c, src/symtab.c (symbol_class_set)
17445 (symbol_user_token_number_set): New.
17446 * src/reader.c (parse_token_decl): Use them.
17447 Use a switch instead of ifs.
17448 Use a single argument.
17449
8b9f2372
AD
174502002-06-10 Akim Demaille <akim@epita.fr>
17451
17452 Remove `%thong' support as it is undocumented, unused, duplicates
17453 `%token's job, and creates useless e-mail traffic with people who
17454 want to know what it is, why it is undocumented, unused, and
17455 duplicates `%token's job.
17456
17457 * src/reader.c (parse_thong_decl): Remove.
17458 * src/options.c (option_table): Remove "thong".
17459 * src/lex.h (tok_thong): Remove.
17460
3ae2b51f
AD
174612002-06-10 Akim Demaille <akim@epita.fr>
17462
17463 * src/symtab.c, src/symtab.c (symbol_type_set)
17464 (symbol_precedence_set): New.
17465 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17466 (value_components_used): Remove, unused.
17467
2f1afb73
AD
174682002-06-09 Akim Demaille <akim@epita.fr>
17469
17470 Move symbols handling code out of the reader.
17471
17472 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17473 (axiom): Move to...
17474 * src/symtab.h, src/symtab.c: here.
17475
17476 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17477 * src/reader.c (startval): Rename as...
17478 * src/symtab.h, src/symtab.c (startsymbol): this.
17479 * src/reader.c: Adjust.
17480
17481 * src/reader.c (symbol_check_defined, symbol_make_alias)
17482 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17483 (token_translations_init)
17484 Move to...
17485 * src/symtab.c: here.
17486 * src/reader.c (packsymbols): Move to...
17487 * src/symtab.h, src/symtab.c (symbols_pack): here.
17488 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17489 argument.
17490
e9bca3ad
AD
174912002-06-03 Akim Demaille <akim@epita.fr>
17492
17493 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17494 then statements.
17495
86eff183
AD
174962002-06-03 Akim Demaille <akim@epita.fr>
17497
17498 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17499 structs with non literals.
17500 * src/scan-skel.l: never-interactive.
17501 * src/conflicts.c (enum conflict_resolution_e): No trailing
17502 comma.
17503 * src/getargs.c (usage): Split long literal strings.
17504 Reported by Hans Aberg.
17505
717be197
AD
175062002-05-28 Akim Demaille <akim@epita.fr>
17507
17508 * data/bison.c++: Use C++ ostreams.
17509 (cdebug_): New member.
17510
670ddffd
AD
175112002-05-28 Akim Demaille <akim@epita.fr>
17512
17513 * src/output.c (output_skeleton): Be sure to allocate enough room
17514 for `/' _and_ for `\0' in full_skeleton.
17515
769b430f
AD
175162002-05-28 Akim Demaille <akim@epita.fr>
17517
17518 * data/bison.c++: Catch up with bison.simple:
17519 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17520 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17521 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17522 and popping traces.
17523
7067cb36
PH
175242002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17525
17526 * src/output.c (output_skeleton): Put an explicit path in front of
17527 the skeleton file name, rather than relying on the -I directory,
17528 to partially alleviate effects of having a skeleton file lying around
17529 in the current directory.
769b430f 17530
4a713ec2
PH
175312002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17532
769b430f 17533 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
17534 obstack_printf should be obstack_fgrow1.
17535
b408954b
AD
175362002-05-26 Akim Demaille <akim@epita.fr>
17537
17538 * src/state.h (state_t): `solved_conflicts' is a new member.
17539 * src/LR0.c (new_state): Set it to 0.
17540 * src/conflicts.h, src/conflicts.c (print_conflicts)
17541 (free_conflicts, solve_conflicts): Rename as...
17542 (conflicts_print, conflicts_free, conflicts_solve): these.
17543 Adjust callers.
17544 * src/conflicts.c (enum conflict_resolution_e)
17545 (solved_conflicts_obstack): New, used by...
17546 (log_resolution): this.
17547 Adjust to attach the conflict resolution to each state.
17548 Complete the description with the precedence/associativity
17549 information.
17550 (resolve_sr_conflict): Adjust.
17551 * src/print.c (print_state): Output its solved_conflicts.
17552 * tests/conflicts.at (Unresolved SR Conflicts)
17553 (Solved SR Conflicts): Exercise --report=all.
17554
a49aecd5
AD
175552002-05-26 Akim Demaille <akim@epita.fr>
17556
17557 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17558 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17559 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17560 (token_number_t, item_number_as_token_number)
17561 (token_number_as_item_number, muscle_insert_token_number_table):
17562 Rename as...
17563 (symbol_number_t, item_number_as_symbol_number)
17564 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17565 these, since it is more appropriate.
17566
5504898e
AD
175672002-05-26 Akim Demaille <akim@epita.fr>
17568
17569 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17570 `Error:' lines.
17571 * data/bison.simple (yystos) [YYDEBUG]: New.
17572 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17573 error recovery.
17574 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17575
ec3bc396
AD
175762002-05-25 Akim Demaille <akim@epita.fr>
17577
17578 * doc/bison.texinfo (Debugging): Split into...
17579 (Tracing): this new section, its former contents, and...
17580 (Understanding): this new section.
17581 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17582 by...
17583 (report_flag): this.
17584 Adjust all dependencies.
17585 (report_args, report_types, report_argmatch): New.
17586 (usage, getargs): Report/support -r, --report.
17587 * src/options.h
17588 (struct option_table_struct): Rename as..,
17589 (struct option_table_s): this.
17590 Rename the `set_flag' member to `flag' to match with getopt_long's
17591 struct.
17592 * src/options.c (option_table): Split verbose into an entry for
17593 %verbose, and another for --verbose.
17594 Support --report/-r, so remove -r from the obsolete --raw.
17595 * src/print.c: Attach full item sets and lookaheads reports to
17596 report_flag instead of trace_flag.
17597 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17598
78df8250
PE
175992002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17600 and Paul Eggert <eggert@twinsun.com>
769b430f 17601
78df8250
PE
17602 * data/bison.simple (yyparse): Correct error handling to conform to
17603 POSIX and yacc. Specifically, after syntax error is discovered,
17604 do not reduce further before shifting the error token.
17605 Clean up the code a bit by removing the labels yyerrdefault,
17606 yyerrhandle, yyerrpop.
17607 * NEWS: Document the above.
17608
c0c9ea05
PH
176092002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17610
17611 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17612 type; it isn't always big enough, since it doesn't necessarily
17613 include non-terminals.
769b430f 17614 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
17615 the latter can be removed.
17616 (yy_token_number_type): Remove, only one use.
17617 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17618 don't use TokenNumberType as element type.
769b430f 17619
c0c9ea05
PH
17620 * tests/regression.at: Modify expected output to agree with change
17621 to yyr1 and yytranslate.
769b430f 17622
6390a83f
FK
176232002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17624
17625 * src/reader.c (parse_action): Use copy_character instead of
17626 obstack_1grow.
17627
db7c8e9a
AD
176282002-05-13 Akim Demaille <akim@epita.fr>
17629
17630 * tests/regression.at (Token definitions): Prototype yylex and
17631 yyerror.
17632
fcc61800
PH
176332002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17634
158c687b 17635 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
17636 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17637 32-bit arithmetic.
17638 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17639
5683e9b2
AD
176402002-05-07 Akim Demaille <akim@epita.fr>
17641
17642 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17643 avoid GCC warnings.
17644
0c2d3f4c
AD
176452002-05-07 Akim Demaille <akim@epita.fr>
17646
17647 Kill GCC warnings.
17648
17649 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17650 over the RHS of each rule.
17651 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17652 * src/state.h (state_t): Member `nitems' is unsigned short.
17653 * src/LR0.c (get_state): Adjust.
17654 * src/reader.c (packgram): Likewise.
17655 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17656 `Type'.
17657 (muscle_insert_int_table): Remove, unused.
17658 (prepare_rules): Remove `max'.
17659
1565b720
AD
176602002-05-06 Akim Demaille <akim@epita.fr>
17661
17662 * src/closure.c (print_firsts): Display of the symbol tags.
17663 (bitmatrix_print): Move to...
17664 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17665 here.
17666 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17667
cfaee611
AD
176682002-05-06 Akim Demaille <akim@epita.fr>
17669
17670 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17671 hash_do_for_each.
17672
458be8e0
AD
176732002-05-06 Akim Demaille <akim@epita.fr>
17674
17675 * src/LR0.c (new_state, get_state): Instead of using the global
17676 `kernel_size' and `kernel_base', have two new arguments:
17677 `core_size' and `core'.
17678 Adjust callers.
17679
a900a624
AD
176802002-05-06 Akim Demaille <akim@epita.fr>
17681
17682 * src/reader.c (packgram): No longer end `ritem' with a 0
17683 sentinel: it is not used.
17684
d4e7d3a1
AD
176852002-05-05 Akim Demaille <akim@epita.fr>
17686
17687 New experimental feature: display the lookaheads in the report and
17688 graph.
17689
17690 * src/print (print_core): When --trace-flag, display the rules
17691 lookaheads.
17692 * src/print_graph.c (print_core): Likewise.
17693 Swap the arguments.
17694 Adjust caller.
17695
39ceb25b
AD
176962002-05-05 Akim Demaille <akim@epita.fr>
17697
17698 * tests/torture.at (Many lookaheads): New test.
17699
5372019f
AD
177002002-05-05 Akim Demaille <akim@epita.fr>
17701
17702 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17703 (GENERATE_MUSCLE_INSERT_TABLE): this.
17704 (output_int_table, output_unsigned_int_table, output_short_table)
17705 (output_token_number_table, output_item_number_table): Replace with...
17706 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17707 (muscle_insert_short_table, muscle_insert_token_number_table)
17708 (muscle_insert_item_number_table): these.
17709 Adjust all callers.
17710 (prepare_tokens): Don't free `translations', since...
17711 * src/reader.h, src/reader.c (grammar_free): do it.
17712 Move to...
17713 * src/gram.h, src/gram.c (grammar_free): here.
17714 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17715 b4_translate_max.
17716
5df5f6d5
AD
177172002-05-05 Akim Demaille <akim@epita.fr>
17718
17719 * src/output.c (output_unsigned_int_table): New.
17720 (prepare_rules): `i' is unsigned.
17721 `prhs', `rline', `r2' are unsigned int.
17722 Rename muscle `rhs_number_max' as `rhs_max'.
17723 Output muscles `prhs_max', `rline_max', and `r2_max'.
17724 Free rline and r1.
17725 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17726 to compute types instead of constant types.
17727 * tests/regression.at (Web2c Actions): Adjust.
17728
b87f8b21
AD
177292002-05-04 Akim Demaille <akim@epita.fr>
17730
17731 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17732 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17733 Adjust dependencies.
17734 * src/output.c (token_definitions_output): Be sure not to output a
17735 `#define 'a'' when fed with `%token 'a' "a"'.
17736 * tests/regression.at (Token definitions): New.
17737
8bb936e4
PE
177382002-05-03 Paul Eggert <eggert@twinsun.com>
17739
17740 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17741 for K&R C.
17742
177432002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17744
17745 * Makefile.am (SUBDIRS): Remove intl.
17746 (EXTRA_DIST): Add config/config.rpath.
17747
53c71a12
AD
177482002-05-03 Akim Demaille <akim@epita.fr>
17749
17750 * data/bison.simple (m4_if): Don't output empty enums.
17751 And actually, output valid enum definitions :(.
17752
289dd0cf
AD
177532002-05-03 Akim Demaille <akim@epita.fr>
17754
17755 * configure.bat: Remove, completely obsolete.
17756 * Makefile.am (EXTRA_DIST): Adjust.
17757 Don't distribute config.rpath...
17758 * config/Makefile.am (EXTRA_DIST): Do it.
17759
db85e524
AD
177602002-05-03 Akim Demaille <akim@epita.fr>
17761
17762 * configure.in (GETTEXT_VERSION): New.
17763 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17764
83ccf991
AD
177652002-05-03 Akim Demaille <akim@epita.fr>
17766
17767 * data/bison.simple (b4_token_enum): New.
17768 (b4_token_defines): Use it to output tokens both as #define and
17769 enums.
17770 Suggested by Paul Eggert.
17771 * src/output.c (token_definitions_output): Don't output spurious
17772 white spaces.
17773
1f418995
AD
177742002-05-03 Akim Demaille <akim@epita.fr>
17775
17776 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17777
45119f04
RA
177782002-05-02 Robert Anisko <robert@lrde.epita.fr>
17779
17780 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17781 Update the stack class, give a try to deque as the default container.
17782
b2d52318
AD
177832002-05-02 Akim Demaille <akim@epita.fr>
17784
17785 * data/bison.simple (yyparse): Do not implement @$ = @1.
17786 (YYLLOC_DEFAULT): Adjust to do it.
17787 * doc/bison.texinfo (Location Default Action): Fix.
17788
3a8b4109
AD
177892002-05-02 Akim Demaille <akim@epita.fr>
17790
17791 * src/reader.c (parse_braces): Merge into...
17792 (parse_action): this.
17793
84614e13
AD
177942002-05-02 Akim Demaille <akim@epita.fr>
17795
17796 * configure.in (ALL_LINGUAS): Remove.
17797 * po/LINGUAS, hr.po: New.
17798
fdbcd8e2
AD
177992002-05-02 Akim Demaille <akim@epita.fr>
17800
17801 Remove the so called hairy (semantic) parsers.
17802
17803 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17804 * src/gram.h, src/gram.c (semantic_parser): Remove.
17805 (rule_t): Remove the guard and guard_line members.
17806 * src/lex.h (token_t): remove tok_guard.
17807 * src/options.c (option_table): Remove %guard and %semantic_parser
17808 support.
17809 * src/output.c, src/output.h (guards_output): Remove.
17810 (prepare): Adjust.
17811 (token_definitions_output): Don't output the `T'
17812 tokens (???).
17813 (output_skeleton): Don't output the guards.
17814 * src/files.c, src/files.c (attrsfile): Remove.
17815 * src/reader.c (symbol_list): Remove the guard and guard_line
17816 members.
17817 Adjust dependencies.
17818 (parse_guard): Remove.
17819 * data/bison.hairy: Remove.
17820 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17821 BISON_HAIRY.
17822
82b6cb3f
AD
178232002-05-02 Akim Demaille <akim@epita.fr>
17824
17825 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17826 (parse_guard): Rename the formal argument `stack_offset' as
17827 `rule_length', which is more readable.
17828 Adjust callers.
17829 (copy_at, copy_dollar): Instead of outputting the hard coded
17830 values of $$, $n and so forth, output invocation to b4_lhs_value,
17831 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
17832 Note: this patch partially drops `semantic-parser' support: it
17833 always does `rule_length - n', where semantic parsers ought to
17834 always use `-n'.
82b6cb3f
AD
17835 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17836 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17837
6cbfbcc5
AD
178382002-05-02 Akim Demaille <akim@epita.fr>
17839
17840 * configure.in (AC_INIT): Bump to 1.49b.
17841 (AM_INIT_AUTOMAKE): Short invocation.
17842
b8548114
AD
178432002-05-02 Akim Demaille <akim@epita.fr>
17844
17845 Version 1.49a.
17846
c20cd1fa
AD
178472002-05-01 Akim Demaille <akim@epita.fr>
17848
17849 * src/skeleton.h: Remove.
17850
8a9566d4
AD
178512002-05-01 Akim Demaille <akim@epita.fr>
17852
17853 * src/skeleton.h: Fix the #endif.
17854 Reported by Magnus Fromreide.
17855
8c6d399a
PE
178562002-04-26 Paul Eggert <eggert@twinsun.com>
17857
17858 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17859 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 17860 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 17861
2b7ed18a
RA
178622002-04-25 Robert Anisko <robert@lrde.epita.fr>
17863
17864 * src/scan-skel.l: Postprocess quadrigraphs.
17865
17866 * src/reader.c (copy_character): New function, used to output
17867 single characters while replacing `[' and `]' with quadrigraphs, to
17868 avoid troubles with M4 quotes.
17869 (copy_comment): Output characters with copy_character.
17870 (read_additionnal_code): Likewise.
17871 (copy_string2): Likewise.
17872 (copy_definition): Likewise.
17873
17874 * tests/calc.at: Exercise M4 quoting.
17875
34a89c50
AD
178762002-04-25 Akim Demaille <akim@epita.fr>
17877
17878 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17879 between `!' and the command.
17880 Reported by Paul Eggert.
17881
0dd1580a
RA
178822002-04-24 Robert Anisko <robert@lrde.epita.fr>
17883
17884 * tests/calc.at: Exercise prologue splitting.
17885
17886 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17887 `b4_post_prologue' instead of `b4_prologue'.
17888
17889 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17890 muscles.
17891 (output): Free pre_prologue_obstack and post_prologue_obstack.
17892 * src/files.h, src/files.c (attrs_obstack): Remove.
17893 (pre_prologue_obstack, post_prologue_obstack): New.
17894 * src/reader.c (copy_definition): Add a parameter to specify the
17895 obstack to fill, instead of using attrs_obstack unconditionally.
17896 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17897 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17898
83c1796f
PE
178992002-04-23 Paul Eggert <eggert@twinsun.com>
17900
17901 * data/bison.simple: Remove unnecessary commentary and white
17902 space differences from 1_29-branch.
17903 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17904
17905 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17906 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17907 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17908 constructors or destructors.
17909
17910 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17911
1207eeac
AD
179122002-04-23 Akim Demaille <akim@epita.fr>
17913
17914 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17915 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17916 location with columns.
17917 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17918 All reported by Paul Eggert.
17919
78ab8f67
AD
179202002-04-22 Akim Demaille <akim@epita.fr>
17921
17922 * src/reduce.c (dump_grammar): Move to...
17923 * src/gram.h, src/gram.c (grammar_dump): here.
17924 Be sure to separate long item numbers.
17925 Don't read the members of a rule's prec if its nil.
17926
133c20e2
AD
179272002-04-22 Akim Demaille <akim@epita.fr>
17928
17929 * src/output.c (table_size, table_grow): New.
17930 (MAXTABLE): Remove, replace uses with table_size.
17931 (pack_vector): Instead of dying when the table is too big, grow it.
17932
9515e8a7
AD
179332002-04-22 Akim Demaille <akim@epita.fr>
17934
17935 * data/bison.simple (yyr1): Its type is that of a token number.
17936 * data/bison.c++ (r1_): Likewise.
17937 * tests/regression.at (Web2c Actions): Adjust.
17938
23c5a174
AD
179392002-04-22 Akim Demaille <akim@epita.fr>
17940
17941 * src/reader.c (token_translations_init): 256 is now the default
17942 value for the error token, i.e., it will be assigned another
17943 number if the user assigned 256 to one of her tokens.
17944 (reader): Don't force 256 to error.
17945 * doc/bison.texinfo (Symbols): Adjust.
17946 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17947 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17948 etc. instead of 10, 20, 30 (which was used to `jump' over error
17949 (256) and undefined (2)).
17950
5fbb0954
AD
179512002-04-22 Akim Demaille <akim@epita.fr>
17952
17953 Propagate more token_number_t.
17954
17955 * src/gram.h (token_number_as_item_number)
17956 (item_number_as_token_number): New.
17957 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17958 Use it to create output_item_number_table and
17959 output_token_number_table.
17960 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17961 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17962 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17963 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17964
4f940944
AD
179652002-04-22 Akim Demaille <akim@epita.fr>
17966
17967 * src/output.h, src/output.c (get_lines_number): Remove.
17968
3ded9a63
AD
179692002-04-19 Akim Demaille <akim@epita.fr>
17970
17971 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17972 as Lex/Flex'.
17973 (Debugging): More details about enabling the debugging features.
17974 (Table of Symbols): Describe $$, $n, @$, and @n.
17975 Suggested by Tim Josling.
17976
e0c471a9
AD
179772002-04-19 Akim Demaille <akim@epita.fr>
17978
17979 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17980
fecc10cd
AD
179812002-04-10 Akim Demaille <akim@epita.fr>
17982
17983 * src/system.h: Rely on HAVE_LIMITS_H.
17984 Suggested by Paul Eggert.
17985
51dec47b
AD
179862002-04-09 Akim Demaille <akim@epita.fr>
17987
17988 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17989 full stderr, and strip it according to the bison options, instead
17990 of composing the error message from different bits.
17991 This makes it easier to check for several error messages.
17992 Adjust all the invocations.
17993 Add an invocation exercising the error token.
17994 Add an invocation demonstrating a stupid error message.
17995 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17996 Adjust the tests.
17997 Error message are for stderr, not stdout.
17998
007a50a4
AD
179992002-04-09 Akim Demaille <akim@epita.fr>
18000
18001 * src/gram.h, src/gram.c (error_token_number): Remove, use
18002 errtoken->number.
18003 * src/reader.c (reader): Don't specify the user token number (2)
18004 for $undefined, as it uselessly prevents using it.
18005 * src/gram.h (token_number_t): Move to...
18006 * src/symtab.h: here.
18007 (state_t.number): Is a token_number_t.
18008 * src/print.c, src/reader.c: Use undeftoken->number instead of
18009 hard coded 2.
18010 (Even though this 2 is not the same as above: the number of the
18011 undeftoken remains being 2, it is its user token number which
18012 might not be 2).
18013 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18014 `user_token_number_max'.
18015 Output `undef_token_number'.
18016 * data/bison.simple, data/bison.c++: Use them.
18017 Be sure to map invalid yylex return values to
18018 `undef_token_number'. This saves us from gratuitous SEGV.
18019
18020 * tests/conflicts.at (Solved SR Conflicts)
18021 (Unresolved SR Conflicts): Adjust.
18022 * tests/regression.at (Web2c Actions): Adjust.
18023
06446ccf
AD
180242002-04-08 Akim Demaille <akim@epita.fr>
18025
18026 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18027 Adding #line.
18028 Remove the duplicate `typedefs'.
18029 (RhsNumberType): Fix the declaration and various other typos.
18030 Use __ofile__.
18031 * data/bison.simple: Use __ofile__.
18032 * src/scan-skel.l: Handle __ofile__.
18033
62a3e4f0
AD
180342002-04-08 Akim Demaille <akim@epita.fr>
18035
18036 * src/gram.h (item_number_t): New, the type of item numbers in
18037 RITEM. Note that it must be able to code symbol numbers as
18038 positive number, and the negation of rule numbers as negative
18039 numbers.
18040 Adjust all dependencies (pretty many).
18041 * src/reduce.c (rule): Remove this `short *' pointer: use
18042 item_number_t.
18043 * src/system.h (MINSHORT, MAXSHORT): Remove.
18044 Include `limits.h'.
18045 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18046 (shortcpy): Remove.
18047 (MAXTABLE): Move to...
18048 * src/output.c (MAXTABLE): here.
18049 (prepare_rules): Use output_int_table to output rhs.
18050 * data/bison.simple, data/bison.c++: Adjust.
18051 * tests/torture.at (Big triangle): Move the limit from 254 to
18052 500.
18053 * tests/regression.at (Web2c Actions): Ajust.
18054
18055 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18056 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18057 passes, but produces negative #line number, once fixed, GCC is
18058 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18059 C), it passes.
18060 * src/state.h (state_h): Code input lines on ints, not shorts.
18061
bb88b0fc
AD
180622002-04-08 Akim Demaille <akim@epita.fr>
18063
18064 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18065 and then the grammar.
18066
9a636f47
AD
180672002-04-08 Akim Demaille <akim@epita.fr>
18068
18069 * src/system.h: No longer using strndup.
18070
680e8701
AD
180712002-04-07 Akim Demaille <akim@epita.fr>
18072
18073 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18074 * src/output.c (output_table_data): Return the longest number.
18075 (prepare_tokens): Output `token_number_max').
18076 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18077 New.
18078 Use them to define yy_token_number_type/TokenNumberType.
18079 Use this type for yytranslate.
18080 * tests/torture.at (Big triangle): Push the limit from 124 to
18081 253.
18082 * tests/regression.at (Web2c Actions): Adjust.
18083
817e9f41
AD
180842002-04-07 Akim Demaille <akim@epita.fr>
18085
18086 * tests/torture.at (Big triangle): New.
18087 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18088 * tests/existing.at: here.
18089
5123689b
AD
180902002-04-07 Akim Demaille <akim@epita.fr>
18091
18092 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18093 nritems.
18094 Adjust dependencies.
18095
f3849179
AD
180962002-04-07 Akim Demaille <akim@epita.fr>
18097
18098 * src/reader.c: Normalize increments to prefix form.
18099
bd02036a
AD
181002002-04-07 Akim Demaille <akim@epita.fr>
18101
18102 * src/reader.c, symtab.c: Remove debugging code.
18103
db8837cb
AD
181042002-04-07 Akim Demaille <akim@epita.fr>
18105
18106 Rename all the `bucket's as `symbol_t'.
18107
18108 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18109 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18110 * src/symtab.c, src/symtab.h (bucket): Rename as...
18111 (symbol_t): this.
18112 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18113 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18114 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18115 (buckets_new, buckets_free, buckets_do): Rename as...
18116 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18117 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18118 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18119 (symbols_new, symbols_free, symbols_do): these.
18120
72a23c97
AD
181212002-04-07 Akim Demaille <akim@epita.fr>
18122
18123 Use lib/hash for the symbol table.
18124
18125 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18126 EOF.
18127 * src/lex.c (lex): Set the `number' member of new terminals.
18128 * src/reader.c (bucket_check_defined, bucket_make_alias)
18129 (bucket_check_alias_consistence, bucket_translation): New.
18130 (reader, grammar_free, readgram, token_translations_init)
18131 (packsymbols): Adjust.
18132 (reader): Number the predefined tokens.
18133 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18134 for predefined tokens.
18135 * src/symtab.h (bucket): Remove all the hash table related
18136 members.
18137 * src/symtab.c (symtab): Replace by...
18138 (bucket_table): this.
18139 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18140 (buckets_new, buckets_do): New.
18141
280a38c3
AD
181422002-04-07 Akim Demaille <akim@epita.fr>
18143
18144 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18145 (start_symbol, max_user_token_number, semantic_parser)
18146 (error_token_number): Initialize.
18147 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18148 Initialize.
18149 (reader): Don't.
18150 (errtoken, eoftoken, undeftoken, axiom): Extern.
18151
03b31c0c
AD
181522002-04-07 Akim Demaille <akim@epita.fr>
18153
18154 * src/gram.h (rule_s): prec and precsym are now pointers
18155 to the bucket giving the priority/associativity.
18156 Member `associativity' removed: useless.
18157 * src/reduce.c, src/conflicts.c: Adjust.
18158
8b3df748
AD
181592002-04-07 Akim Demaille <akim@epita.fr>
18160
18161 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18162 Properly escape the symbols' TAG when outputting them.
18163
e601aa1d
AD
181642002-04-07 Akim Demaille <akim@epita.fr>
18165
18166 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18167
b0299a2e
AD
181682002-04-07 Akim Demaille <akim@epita.fr>
18169
18170 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18171 (LArule): this, which is an array to rule_t*.
18172 * src/print.c, src/conflicts.c: Adjust.
18173
d7e1f00c
AD
181742002-04-07 Akim Demaille <akim@epita.fr>
18175
18176 * src/gram.h (rule_t): Rename `number' as `user_number'.
18177 `number' is a new member.
18178 Adjust dependencies.
18179 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18180
cc9305dd
AD
181812002-04-07 Akim Demaille <akim@epita.fr>
18182
18183 As a result of the previous patch, it is no longer needed
18184 to reorder ritem itself.
18185
18186 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18187
b0940840
AD
181882002-04-07 Akim Demaille <akim@epita.fr>
18189
18190 Be sure never to walk through RITEMS, but use only data related to
18191 the rules themselves. RITEMS should be banished.
18192
18193 * src/output.c (output_token_translations): Rename as...
18194 (prepare_tokens): this.
18195 In addition to `translate', prepare the muscles `tname' and
18196 `toknum', which were handled by...
18197 (output_rule_data): this.
18198 Remove, and move the remainder of its outputs into...
18199 (prepare_rules): this new routines, which also merges content from
18200 (output_gram): this.
18201 (prepare_rules): Be sure never to walk through RITEMS.
18202 (output_stos): Rename as...
18203 (prepare_stos): this.
18204 (output): Always invoke prepare_states, after all, just don't use it
18205 in the output if you don't need it.
18206
643a5994
AD
182072002-04-07 Akim Demaille <akim@epita.fr>
18208
18209 * src/LR0.c (new_state): Display `nstates' as the name of the
18210 newly created state.
18211 Adjust to initialize first_state and last_state if needed.
18212 Be sure to distinguish the initial from the final state.
18213 (new_states): Create the itemset of the initial state, and use
18214 new_state.
18215 * src/closure.c (closure): Now that the initial state has its
18216 items properly set, there is no need for a special case when
18217 creating `ruleset'.
18218
18219 As a result, now the rule 0, reducing to $axiom, is visible in the
18220 outputs. Adjust the test suite.
18221
18222 * tests/conflicts.at (Solved SR Conflicts)
18223 (Unresolved SR Conflicts): Adjust.
18224 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18225 * tests/conflicts.at (S/R in initial): New.
18226
b4c4ccc2
AD
182272002-04-07 Akim Demaille <akim@epita.fr>
18228
18229 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18230 the RHS of the rules.
18231 * src/output.c (output_gram): Likewise.
18232
bba97eb2
AD
182332002-04-07 Akim Demaille <akim@epita.fr>
18234
18235 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18236 bucket.
18237 Adjust all dependencies.
18238 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18239 `number' of the buckets too.
18240 * src/gram.h: Include `symtab.h'.
18241 (associativity): Move to...
18242 * src/symtab.h: here.
18243 No longer include `gram.h'.
18244
c3b407f4
AD
182452002-04-07 Akim Demaille <akim@epita.fr>
18246
18247 * src/gram.h, src/gram.c (rules_rhs_length): New.
18248 (ritem_longest_rhs): Use it.
18249 * src/gram.h (rule_t): `number' is a new member.
18250 * src/reader.c (packgram): Set it.
18251 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18252 the end of `rules', and count them out of `nrules'.
18253 (reduce_output, dump_grammar): Adjust.
18254 * src/print.c (print_grammar): It is no longer needed to check for
18255 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18256 * tests/reduce.at (Reduced Automaton): New test.
18257
11652ab3
AD
182582002-04-07 Akim Demaille <akim@epita.fr>
18259
18260 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18261 lacking `+ 1' to nrules, Bison reported as useless a token if it
18262 was used solely to set the precedence of the last rule...
18263
26b23c1a
AD
182642002-04-07 Akim Demaille <akim@epita.fr>
18265
18266 * data/bison.c++, data/bison.simple: Don't output the current file
18267 name in #line, to avoid useless diffs between two identical
18268 outputs under different names.
18269
18bcecb0
AD
182702002-04-07 Akim Demaille <akim@epita.fr>
18271
18272 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18273 Normalize loops to using `< nrules + 1', not `<= nrules'.
18274
fa770c86
AD
182752002-04-07 Akim Demaille <akim@epita.fr>
18276
18277 * TODO: Update.
18278
d9b739c3
AD
182792002-04-07 Akim Demaille <akim@epita.fr>
18280
18281 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18282 bucket.value as bucket.number.
18283
99013900
AD
182842002-04-07 Akim Demaille <akim@epita.fr>
18285
18286 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18287 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18288 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18289 RHS, instead of being an index in RITEMS.
18290
e966383b
PE
182912002-04-04 Paul Eggert <eggert@twinsun.com>
18292
18293 * doc/bison.texinfo: Update copyright date.
18294 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18295 (Symbols): Warn about running Bison in one character set,
18296 but compiling and/or running in an incompatible one.
18297 Warn about character code 256, too.
18298
182992002-04-03 Paul Eggert <eggert@twinsun.com>
18300
18301 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18302 YYERROR_VERBOSE is nonzero, not whether it is defined.
18303
18304 Merge changes from bison-1_29-branch.
c307773e 18305
8d6c48b9
PE
183062002-03-20 Paul Eggert <eggert@twinsun.com>
18307
18308 Merge fixes from Debian bison_1.34-1.diff.
18309
18310 * configure.in (AC_PREREQ): 2.53.
18311
e53c6322
AD
183122002-03-20 Akim Demaille <akim@epita.fr>
18313
18314 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18315
9ffbeca7
PE
183162002-03-19 Paul Eggert <eggert@twinsun.com>
18317
21db0b2a
PE
18318 * src/bison.simple (YYCOPY): New macro.
18319 (YYSTACK_RELOCATE): Use it.
18320 Remove Type arg; no longer needed. All callers changed.
18321 (yymemcpy): Remove; no longer needed.
18322
9ffbeca7
PE
18323 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18324 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
18325
642cb8f8
AD
183262002-03-19 Akim Demaille <akim@epita.fr>
18327
18328 Test and fix the #line outputs.
18329
18330 * tests/atlocal.at (GCC): New.
18331 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 18332 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
18333 (Action synch line, Epilogue synch line): New tests.
18334 * src/reader.c (parse_union_decl): Define the muscle stype_line.
18335 * data/bison.simple, data/bison.c++: Use it.
18336
3c31a486
AD
183372002-03-19 Akim Demaille <akim@epita.fr>
18338
18339 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
18340 (Solved SR Conflicts, %expect not enough, %expect right)
18341 (%expect too much): Move to...
18342 * tests/conflicts.at: this new file.
18343
0d8bed56
AD
183442002-03-19 Akim Demaille <akim@epita.fr>
18345
18346 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18347 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
18348 that we can move to enums for instance.
18349 * src/output.c (token_definitions_output): Output a list of
18350 `token-name, token-number' instead of the #define.
18351 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
18352
9208d17f
AD
183532002-03-14 Akim Demaille <akim@epita.fr>
18354
18355 Use Gettext 0.11.1.
18356
af27eacb
RA
183572002-03-09 Robert Anisko <robert@lrde.epita.fr>
18358
18359 * data/bison.c++: Make the user able to add members to the generated
18360 parser by subclassing.
18361
9101a310
RA
183622002-03-05 Robert Anisko <robert@lrde.epita.fr>
18363
18364 * src/reader.c (read_additionnal_code): `c' should be an integer, not
18365 a character.
18366 Reported by Nicolas Tisserand and Nicolas Burrus.
18367
fff9bf0b
RA
183682002-03-04 Robert Anisko <robert@lrde.epita.fr>
18369
18370 * src/reader.c: Warn about lacking semi-colons, do not complain.
18371
64dba31e
RA
183722002-03-04 Robert Anisko <robert@lrde.epita.fr>
18373
18374 * data/bison.c++: Remove a debug line.
18375
374f5a14
RA
183762002-03-04 Robert Anisko <robert@lrde.epita.fr>
18377
18378 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
18379 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
18380 provide a default implementation.
18381
bfcf1f3a
AD
183822002-03-04 Akim Demaille <akim@epita.fr>
18383
18384 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
18385 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
18386 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
18387 * tests/semantic.at (Parsing Guards): Similarly.
18388 * src/reader.at (readgram): Complain if the last rule is not ended
18389 with a semi-colon.
18390
65ccf9fc
AD
183912002-03-04 Akim Demaille <akim@epita.fr>
18392
18393 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
18394 * src/closure.c: here.
18395 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
18396 RTC.
18397 * src/warshall.h, src/warshall.c: Remove.
18398 * tests/sets.at (Broken Closure): Adjust.
18399
d0039cbc
AD
184002002-03-04 Akim Demaille <akim@epita.fr>
18401
18402 * src/output.c (output_skeleton): tempdir is const.
18403 bytes_read is unused.
18404
345cea78
AD
184052002-03-04 Akim Demaille <akim@epita.fr>
18406
18407 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18408 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18409 Update.
18410 From Michael Hayes.
18411
564801f7
AD
184122002-03-04 Akim Demaille <akim@epita.fr>
18413
18414 * src/closure.c (closure): `r' is unused.
18415
e5352bc7
AD
184162002-03-04 Akim Demaille <akim@epita.fr>
18417
18418 * tests/sets.at (Broken Closure): Add the ending `;'.
18419 * src/reader.at (readgram): Complain if a rule is not ended with a
18420 semi-colon.
18421
914feea9
AD
184222002-03-04 Akim Demaille <akim@epita.fr>
18423
18424 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18425 (count_sr_conflicts): Use bitset_count.
18426 * src/reduce.c (inaccessable_symbols): Ditto.
18427 (bits_size): Remove.
18428 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18429
f0250de6
AD
184302002-03-04 Akim Demaille <akim@epita.fr>
18431
18432 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18433 * src/reduce.c: Remove the `bitset_zero's following the
18434 `bitset_create's, as now it is performed by the latter.
18435
ef017502
AD
184362002-03-04 Akim Demaille <akim@epita.fr>
18437
18438 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18439 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18440 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18441 latest sources from Michael.
18442
76514394
AD
184432002-03-04 Akim Demaille <akim@epita.fr>
18444
18445 * src/output.c (output): Don't free the grammar.
18446 * src/reader.c (grammar_free): New.
18447 * src/main.c (main): Call it and don't free symtab here.
18448
55024580
AD
184492002-03-04 Akim Demaille <akim@epita.fr>
18450
18451 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18452 before returning.
18453 Reported by Benoit Perrot.
18454
f9abaa2c
AD
184552002-03-04 Akim Demaille <akim@epita.fr>
18456
18457 Use bitset operations when possible, not loops over bits.
18458
18459 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18460 bitset_or.
18461 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18462 * src/reduce.c (useless_nonterminals): Formatting changes.
18463 * src/warshall.c (TC): Use bitset_or.
18464
0e721e75
AD
184652002-03-04 Akim Demaille <akim@epita.fr>
18466
18467 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18468 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18469 Ditto.
18470
0fb1ffb1
AD
184712002-03-04 Akim Demaille <akim@epita.fr>
18472
18473 * src/lalr.c (F): Now a bitset*.
18474 Adjust all dependencies.
18475
b86796bf
AD
184762002-03-04 Akim Demaille <akim@epita.fr>
18477
18478 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18479 Adjust all dependencies.
18480
602bbf31
AD
184812002-03-04 Akim Demaille <akim@epita.fr>
18482
18483 * src/L0.c, src/LR0.h (nstates): Be size_t.
18484 Adjust comparisons (signed vs unsigned).
18485 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18486 bitset*.
18487 Adjust all dependencies.
18488
d8a0245c
AD
184892002-03-04 Akim Demaille <akim@epita.fr>
18490
18491 * src/closure.c (firsts): Now, also a bitset.
18492 Adjust all dependencies.
18493 (varsetsize): Remove, now unused.
18494 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18495
34ba9743
AD
184962002-03-04 Akim Demaille <akim@epita.fr>
18497
18498 * src/print.c: Convert to use bitset.h, not hand coded iterations
18499 over ints.
18500
ed86e78c
AD
185012002-03-04 Akim Demaille <akim@epita.fr>
18502
18503 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18504
dfdb1797
AD
185052002-03-04 Akim Demaille <akim@epita.fr>
18506
18507 * src/closure.c (ruleset): Be a bitset.
18508 (rulesetsize): Remove.
18509
7086e707
AD
185102002-03-04 Akim Demaille <akim@epita.fr>
18511
18512 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18513 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18514 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18515 * src/closure.c (fderives): Be an array of bitsets.
18516
98254360
RA
185172002-02-28 Robert Anisko <robert@lrde.epita.fr>
18518
18519 * data/bison.c++: Merge the two generated headers. Insert a copyright
18520 notice in each output file.
18521
a75c057f
AD
185222002-02-28 Akim Demaille <akim@epita.fr>
18523
18524 * data/bison.c++: Copy the prologue of bison.simple to fetch
18525 useful M4 definitions, such as b4_header_guard.
18526
06b00abc
AD
185272002-02-25 Akim Demaille <akim@epita.fr>
18528
18529 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
18530 translator friendly scheme for the bgr
18531 copyright notice.
06b00abc 18532
70e7d534
AD
185332002-02-25 Akim Demaille <akim@epita.fr>
18534
18535 * src/output.c (header_output): Remove, now handled completely via
18536 M4.
18537
abe017f6
AD
185382002-02-25 Akim Demaille <akim@epita.fr>
18539
18540 * m4/m4.m4: New, from CVS Autoconf.
18541 * configure.in: Invoke it.
18542 * src/output.c (output_skeleton): Use its result instead of the
18543 hard coded name.
18544
381fb12e
AD
185452002-02-25 Akim Demaille <akim@epita.fr>
18546
18547 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18548 Fileutils 4.1.5.
18549 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18550 * src/output.c (output_skeleton): Use mkstemp to create a real
18551 temporary file.
18552 Move the filling of `skeleton' and its muscle to...
18553 (prepare): here.
18554 (output): Move the definition of the prologue muscle to...
18555 (prepare): here.
18556 * src/system.h (DEFAULT_TMPDIR): New.
18557
6f38107f
PE
185582002-02-14 Paul Eggert <eggert@twinsun.com>
18559
18560 Remove the support for C++ namespace cleanliness; it was
18561 causing more problems than it was curing, since it didn't work
18562 properly on some nonstandard C++ compilers. This can wait
18563 for a proper C++ parser.
18564
18565 * NEWS: Document this.
18566 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18567 of C++, as it's treated like C now.
18568 * src/bison.simple (YYSTD): Remove.
18569 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18570 Treat C++ just like Standard C instead of trying to support
18571 namespace cleanliness.
18572
80cce3da
AD
185732002-02-14 Akim Demaille <akim@epita.fr>
18574
18575 * tests/regression.at (else): Adjust to Andreas' change.
18576
842e8679
AD
185772002-02-14 Akim Demaille <akim@epita.fr>
18578
18579 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18580
4bda3f10
AD
185812002-02-13 Andreas Schwab <schwab@suse.de>
18582
18583 * src/output.c (output_rule_data): Don't output NULL, it might
18584 not be defined yet.
18585
4162fa07 185862002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 18587
4162fa07
RA
18588 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18589 (Copyright notice): Update.
b418ecd8 18590
bd16a5dc
AD
185912002-02-11 Akim Demaille <akim@epita.fr>
18592
18593 * tests/regression.at (%nonassoc and eof): Don't include
18594 nonportable headers.
18595
8d69a1a3
RA
185962002-02-08 Robert Anisko <robert@lrde.epita.fr>
18597
18598 * data/bison.c++: Correct error recovery. Make the user able to
18599 initialize the starting location.
18600
9b2d0677
AD
186012002-02-07 Akim Demaille <akim@epita.fr>
18602
18603 * tests/input.at: New.
18604
69e2658b
RA
186052002-02-07 Robert Anisko <robert@lrde.epita.fr>
18606
18607 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 18608 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
18609 directives around tables only needed for debugging.
18610
4aacc3a7
RA
186112002-02-07 Robert Anisko <robert@lrde.epita.fr>
18612
18613 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18614 C++ parsers.
18615 (yy::b4_name::parse): Use print_.
18616
762a801e
RA
186172002-02-07 Robert Anisko <robert@lrde.epita.fr>
18618
18619 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18620
4bb2bc3f
RA
186212002-02-07 Robert Anisko <robert@lrde.epita.fr>
18622
18623 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18624 C++ parsers.
18625 (yy::b4_name::parse): Build verbose error messages, and use error_.
18626
6b45a3ca
RA
186272002-02-06 Robert Anisko <robert@lrde.epita.fr>
18628
18629 * data/bison.c++: Fix m4 quoting in comments.
18630
50997c6e
RA
186312002-02-06 Robert Anisko <robert@lrde.epita.fr>
18632
18633 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18634 not expanded by m4.
18635
3f3eed27
AD
186362002-02-05 Akim Demaille <akim@epita.fr>
18637
18638 * data/bison.c++: Adjust to the M4 back end.
18639 More is certainly needed.
18640
be2a1a68
AD
186412002-02-05 Akim Demaille <akim@epita.fr>
18642
18643 Give a try to M4 as a back end.
18644
18645 * lib/readpipe.c: New, from wdiff.
18646 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18647 BISON_HAIRY.
18648 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18649 specific values. Now it is m4 that performs the lookup.
18650 * src/parse-skel.y: Remove.
18651 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18652 * src/output.c (actions_output, guards_output)
18653 (token_definitions_output): No longer keeps track of the output
18654 line number, hence remove the second argument.
18655 (guards_output): Check against the guard member of a rule, not the
18656 action member.
18657 Adjust callers.
18658 (output_skeleton): Don't look for the skeleton location, let m4 do
18659 that.
18660 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18661 file will be used.
18662 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18663 (prepare): Given that for the time being changesyntax is not
18664 usable in M4, rename the muscles using `-' to `_'.
18665 Define `defines_flag', `output_parser_name' and `output_header_name'.
18666 * src/output.h (actions_output, guards_output)
18667 (token_definitions_output): Adjust prototypes.
18668 * src/scan-skel.l: Instead of scanning the skeletons, it now
18669 processes the output of m4: `__oline__' and `#output'.
18670 * data/bison.simple: Adjust to be used by M4(sugar).
18671 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18672 to date.
18673 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18674 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18675 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18676 shamelessly stolen from CVS Autoconf.
18677
beda758b
AD
186782002-02-05 Akim Demaille <akim@epita.fr>
18679
18680 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18681 * configure.in: Check for the declarations of free and malloc.
18682 * src/muscle_tab.c: Adjust.
18683
5ece6d43
AD
186842002-02-05 Akim Demaille <akim@epita.fr>
18685
18686 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18687 which have no values.
18688
5bb18f9a
AD
186892002-02-05 Akim Demaille <akim@epita.fr>
18690
18691 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18692 * data/: here.
18693
894dd62e
PE
186942002-01-29 Paul Eggert <eggert@twinsun.com>
18695
18696 * src/bison.simple (YYSIZE_T): Do not define merely because
18697 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18698 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18699
82841af7
AD
187002002-01-27 Akim Demaille <akim@epita.fr>
18701
18702 Fix `%nonassoc and eof'.
18703
18704 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18705 which were not properly copied! Replace
18706 memcpy (res->errs, src->errs, src->nerrs);
18707 with
18708 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18709 !!!
18710 * tests/regression.at (%nonassoc and eof): Adjust to newest
18711 Autotest: `.' is not in the PATH.
18712
318b76e9
AD
187132002-01-27 Akim Demaille <akim@epita.fr>
18714
18715 * tests/sets.at (AT_EXTRACT_SETS): New.
18716 (Nullable): Use it.
18717 (Firsts): New.
18718
30d2f3d5
AD
187192002-01-26 Akim Demaille <akim@epita.fr>
18720
18721 * tests/actions.at, tests/calc.at, tests/headers.at,
18722 * tests/torture.at: Adjust to the newest Autotest which no longer
18723 forces `.' in the PATH.
18724
30f8c395
AD
187252002-01-25 Akim Demaille <akim@epita.fr>
18726
18727 * tests/regression.at (%nonassoc and eof): New.
18728 Suggested by Robert Anisko.
18729
29ae55f1
AD
187302002-01-24 Akim Demaille <akim@epita.fr>
18731
18732 Bison dumps core when trying to complain about broken input files.
18733 Reported by Cris van Pelt.
18734
18735 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18736 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18737 into...
18738 (Invalid inputs): Strengthen: exercise parse_percent_token.
18739
2b548aa6
RA
187402002-01-24 Robert Anisko <robert.anisko@epita.fr>
18741
18742 * src/Makefile.am: Add bison.c++.
18743 * src/bison.c++: New skeleton.
18744
bb0146c2
AD
187452002-01-21 Paolo Bonzini <bonzini@gnu.org>
18746
18747 * po/it.po: New.
18748
bec30531
AD
187492002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18750
18751 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18752
fc6edc45
MA
187532002-01-20 Marc Autret <marc@gnu.org>
18754
18755 * src/files.c (compute_output_file_names): Fix
18756
5e5d5415
MA
187572002-01-20 Marc Autret <marc@gnu.org>
18758
18759 * tests/output.at: New test.
18760 * src/files.c (compute_base_names): Don't map extensions when
18761 the YACC flag is set, use defaults.
18762 Reported by Evgeny Stambulchik.
18763
44ea3fbd
MA
187642002-01-20 Marc Autret <marc@gnu.org>
18765
ba0fe3c7
PE
18766 * src/system.h: Need to define __attribute__ away for non-GCC
18767 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
18768 Suggested by Albert Chin-A-Young.
18769
338963d1
TVH
187702002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18771
18772 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18773 canonical definition.
18774 * src/system.h: Use the canonical definition for PARAMS (avoids
18775 a conflict with the macro from lib/hash.h).
18776
c57b2479
AD
187772002-01-11 Akim Demaille <akim@epita.fr>
18778
18779 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 18780 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 18781
b85810ae
AD
187822002-01-09 Akim Demaille <akim@epita.fr>
18783
18784 * src/files.c, src/files.h (output_infix): New.
18785 (tab_extension): Remove.
18786 (compute_base_names): Compute the former, drop the latter.
18787 * src/output.c (prepare): Insert the muscles `output-infix', and
18788 `output-suffix'.
18789 * src/parse-skel.y (string, string.1): New.
18790 (section.header): Use it.
18791 (section.yacc): Remove.
18792 (prefix): Remove too.
18793 * src/scan-skel.l: Adjust.
18794 * src/bison.simple, src/bison.hairy: Adjust.
18795
cae60122
AD
187962002-01-09 Akim Demaille <akim@epita.fr>
18797
18798 * configure.in (WERROR_CFLAGS): Compute it.
18799 * src/Makefile.am (CFLAGS): Pass it.
18800 * tests/atlocal.in (CFLAGS): Idem.
18801 * src/files.c: Fix a few warnings.
18802 (get_extension_index): Remove, unused.
18803
ae404801
AD
188042002-01-08 Akim Demaille <akim@epita.fr>
18805
18806 * src/getargs.c (AS_FILE_NAME): New.
18807 (getargs): Use it to convert DOSish file names.
18808 * src/files.c (base_name): Rename as full_base_name to avoid
18809 clashes with `base_name ()'.
18810 (filename_split): New.
18811 (compute_base_names): N-th rewrite, using filename_split.
18812
22312b71
AD
188132002-01-08 Akim Demaille <akim@epita.fr>
18814
18815 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18816 New, stolen from the Fileutils 4.1.
18817 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18818 * configure.in: Check for the presence of memrchr, and of its
18819 prototype.
18820
a67cef01
TVH
188212002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18822
18823 * lib/hash.h (__P): Added definition for this macro.
18824 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18825 BUILT_SOURCES, to ensure they are generated first.
18826 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18827 %error-verbose to allow bootstrapping with bison 1.30x.
18828
2b25d624
AD
188292002-01-06 Akim Demaille <akim@epita.fr>
18830
18831 * src/reader.c (parse_braces): Don't fetch the next char, the
18832 convention is to fetch on entry.
18833 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18834 'switch' without a following semicolon.
18835 * tests/regression.at (braces parsing): New.
18836
3460813b
AD
188372002-01-06 Akim Demaille <akim@epita.fr>
18838
18839 Bison is dead wrong in its RR conflict reports.
18840
18841 * tests/torture.at (GNU Cim Grammar): New.
18842 * src/conflicts.c (count_rr_conflicts): Fix.
18843
73784c64
AD
188442002-01-06 Akim Demaille <akim@epita.fr>
18845
18846 Creating package.m4 from configure.ac causes too many problems.
18847
18848 * tests/Makefile.am (package.m4): Create it by hand,
18849 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18850
25d81090
AD
188512002-01-06 Akim Demaille <akim@epita.fr>
18852
18853 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18854 skeleton.h.
18855
a9b8959e
PE
188562002-01-04 Paul Eggert <eggert@twinsun.com>
18857
18858 * doc/bison.texinfo (Debugging):
18859 Remove YYSTDERR; it's no longer defined or used.
18860 Also, s/cstdio.h/cstdio/.
18861
25d81090
AD
188622002-01-03 Akim Demaille <akim@epita.fr>
18863
18864 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18865
1109455c
AD
188662002-01-03 Akim Demaille <akim@epita.fr>
18867
18868 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18869 tracing code to --trace, wait for a better --trace option, with
18870 args.
18871
7ea5e977
AD
188722002-01-03 Akim Demaille <akim@epita.fr>
18873
18874 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18875 The ISO C++ standard is extremely clear about it: stderr is
18876 considered a macro, not a regular symbol (see table 94 `Header
18877 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18878 Therefore std:: does not apply to it. It still does with fprintf.
18879 Also, s/cstdio.h/cstdio/.
18880
fab5b110
AD
188812002-01-03 Akim Demaille <akim@epita.fr>
18882
18883 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18884 for non system headers.
18885
aed7fd9b
AD
188862002-01-02 Akim Demaille <akim@epita.fr>
18887
18888 Equip the skeleton chain with location tracking, runtime trace,
18889 pure parser and scanner.
18890
18891 * src/parse-skel.y: Request a pure parser, locations, and prefix
18892 renaming.
18893 (%union): Having several members with the same type does not help
18894 type mismatches, simplify.
18895 (YYPRINT, yyprint): New.
18896 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18897 (skel_error): this.
18898 Handle locations.
18899 * src/scan-skel.l: Adjust to these changes.
18900 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18901 (LOCATION_PRINT, skel_control_t): New.
18902
24fad99e
AD
189032001-12-30 Akim Demaille <akim@epita.fr>
18904
18905 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18906 replace `gb' with BLANKS.
18907 * src/scan-skel.l: Adjust.
18908
a4b36db4
AD
189092001-12-30 Akim Demaille <akim@epita.fr>
18910
18911 * src/system.h: We don't need nor want bcopy.
18912 Throw away MS-DOS crap: we don't need getpid.
18913 * configure.in: We don't need strndup. It was even causing
18914 problems: because Flex includes the headers *before* us,
18915 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18916 not visible.
18917 * lib/xstrndup.c: New.
18918 * src/scan-skel.l: Use it.
18919 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18920 * src/parse-skel.y: Use %directives instead of #defines.
18921
1239777d
AD
189222001-12-30 Akim Demaille <akim@epita.fr>
18923
18924 * src/skeleton.h: New.
18925 * src/output.c (output_parser, output_master_parser): Remove, dead
18926 code.
18927 * src/output.h (get_lines_number, actions_output, guards_output)
18928 (token_definitions_output): Prototype them.
18929 * src/parse-skel.y: Add the license notice.
18930 Include output.h and skeleton.h.
18931 (process_skeleton): Returns void, and takes a single parameter.
18932 * src/scan-skel.l: Add the license notice.
18933 Include skeleton.h.
18934 Don't use %option yylineno: it seems that then Flex imagines
18935 REJECT has been used, and therefore it won't reallocate its
18936 buffers (which makes no other sense to me than a bug). It results
18937 in warnings for `unused: yy_flex_realloc'.
18938
9b3add5b
RA
189392001-12-30 Robert Anisko <robert.anisko@epita.fr>
18940
18941 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18942 (MUSCLE_INSERT_PREFIX): ...to there.
18943 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18944 (MUSCLE_INSERT_PREFIX): Move from here...
18945
18946 * src/bison.hairy: Add a section directive. Put braces around muscle
18947 names. This parser skeleton is still broken, but Bison should not
18948 choke on a bad muscle 'syntax'.
18949 * src/bison.simple: Add a section directive. Put braces around muscle
18950 names.
18951
18952 * src/files.h (strsuffix, stringappend): Add declarations.
18953 (tab_extension): Add declaration.
18954 (short_base_name): Add declaration.
18955
18956 * src/files.c (strsuffix, stringappend): No longer static. These
18957 functions are used in the skeleton parser.
18958 (tab_extension): New.
18959 (compute_base_names): Use the computations done in this function
fab5b110 18960 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
18961 names.
18962 (short_base_name): No longer static.
18963
18964 * src/output.c (output_skeleton): New.
18965 (output): Disable call to output_master_parser, and give a try to
18966 a new skeleton handling system.
18967 (guards_output, actions_output): No longer static.
18968 (token_definitions_output, get_lines_number): No longer static.
18969
18970 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18971
fab5b110 18972 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
18973 parse-skel.y.
18974
18975 * src/parse-skel.y: New file.
18976 * src/scan-skel.l: New file.
18977
b5b61c61
AD
189782001-12-29 Akim Demaille <akim@epita.fr>
18979
18980 %name-prefix is broken.
18981
18982 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18983 Adjust all dependencies.
18984 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18985 %name-prefix.
18986
18987 Renaming yylval but not yylloc is not consistent. Now we do.
18988
18989 * src/bison.simple: Prefix yylloc if used.
18990 * doc/bison.texinfo (Decl Summary): Document that.
18991
8c9a50be
AD
189922001-12-29 Akim Demaille <akim@epita.fr>
18993
18994 * doc/bison.texinfo: Promote `%long-directive' over
18995 `%long_directive'.
18996 Remove all references to fixed-output-files, yacc is enough.
18997
d99361e6
AD
189982001-12-29 Akim Demaille <akim@epita.fr>
18999
19000 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19001 user prologue. These are defaults.
19002 * tests/actions.at (Mid-rule actions): Make sure the user can
19003 define YYDEBUG and YYERROR_VERBOSE.
19004
b9cecb91
AD
190052001-12-29 Akim Demaille <akim@epita.fr>
19006
19007 * src/output.c (header_output): Don't forget to export YYLTYPE and
19008 yylloc.
19009 * tests/headers.at (export YYLTYPE): New, make sure it does.
19010 * tests/regression.at (%union and --defines, Invalid CPP headers):
19011 Move to...
19012 * tests/headers.at: here.
19013
aea13e97
AD
190142001-12-29 Akim Demaille <akim@epita.fr>
19015
19016 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19017
931394cb
AD
190182001-12-29 Akim Demaille <akim@epita.fr>
19019
19020 * tests/actions.at (Mid-rule actions): Output on a single line
19021 instead of several.
19022
704a47c4
AD
190232001-12-29 Akim Demaille <akim@epita.fr>
19024
19025 * doc/bison.texinfo: Formatting changes.
19026
091e20bb
AD
190272001-12-29 Akim Demaille <akim@epita.fr>
19028
19029 Don't store the token defs in a muscle, just be ready to output it
19030 on command. Now possible via `symbols'. Fixes a memory leak.
19031
19032 * src/output.c (token_definitions_output): New.
19033 (output_parser, header_output): Use it.
19034 * src/reader.c (symbols_save): Remove.
19035
cce71710
AD
190362001-12-29 Akim Demaille <akim@epita.fr>
19037
19038 * src/bison.simple: Do not provide a default for YYSTYPE and
19039 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19040 default.
19041
82c035a8
AD
190422001-12-29 Akim Demaille <akim@epita.fr>
19043
19044 Mid-rule actions are simply... ignored!
19045
19046 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19047 the empty-rule associated to the dummy symbol, not to the host
19048 rule.
19049 * tests/actions.at (Mid-rule actions): New.
19050
8419d367
AD
190512001-12-29 Akim Demaille <akim@epita.fr>
19052
19053 Memory leak.
19054
19055 * src/reader.c (reader): Free grammar.
19056
375d5806
AD
190572001-12-29 Akim Demaille <akim@epita.fr>
19058
19059 Memory leak.
19060
19061 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19062 since it allocates it for each state, although only one is needed.
19063 (allocate_storage): Do it here.
19064
f51cb8ff
AD
190652001-12-29 Akim Demaille <akim@epita.fr>
19066
19067 * src/options.h, src/options.c (create_long_option_table): Rename
19068 as...
19069 (long_option_table_new): this, with a clearer prototype.
19070 (percent_table): Remove, unused,
19071 * src/getargs.c (getargs): Adjust.
19072
29e88316
AD
190732001-12-29 Akim Demaille <akim@epita.fr>
19074
19075 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19076 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19077 as states.
19078
b9f71f19
AD
190792001-12-29 Akim Demaille <akim@epita.fr>
19080
19081 * src/lalr.c (build_relations): Rename `states' as `states1'.
19082 Sorry, I don't understand exactly what it is, no better name...
19083
1a2b5d37
AD
190842001-12-29 Akim Demaille <akim@epita.fr>
19085
19086 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19087 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19088 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19089 as rules.
19090
1cca533e
AD
190912001-12-29 Akim Demaille <akim@epita.fr>
19092
19093 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19094 ago.
19095
c03ae966
AD
190962001-12-29 Akim Demaille <akim@epita.fr>
19097
19098 * src/reader.c, src/reader.h (user_toknums): Remove.
19099 Adjust all users to use symbols[i]->user_token_number.
19100
5a670b1e
AD
191012001-12-29 Akim Demaille <akim@epita.fr>
19102
19103 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19104 Adjust all users to use symbols[i]->prec or ->assoc.
19105
ad949da9
AD
191062001-12-29 Akim Demaille <akim@epita.fr>
19107
19108 * src/reader.c, src/reader.h (tags): Remove.
19109 Adjust all users to use symbols[i]->tag.
19110
0e78e603
AD
191112001-12-29 Akim Demaille <akim@epita.fr>
19112
19113 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19114 and rule_table.
19115 * src/reader.c (packsymbols): Fill this table.
19116 Drop sprec.
19117 * src/conflicts.c (resolve_sr_conflict): Adjust.
19118 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19119 single table.
19120 Use symbols[i]->tag instead of tags[i].
19121
213e640e
AD
191222001-12-29 Akim Demaille <akim@epita.fr>
19123
19124 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19125 In addition, put a comment in there, to replace...
19126 * tests/regression.at (%union and C comments): Remove.
19127
e7b8bef1
AD
191282001-12-29 Akim Demaille <akim@epita.fr>
19129
19130 * tests/regression.at (Web2c Actions): Blindly move the actual
19131 output as expected output. The contents *seem* right to me, but I
19132 can't pretend reading perfectly parser tables... Nonetheless, all
19133 the other tests pass correctly, the table look OK, even though the
19134 presence of `$axiom' is to be noted: AFAICS it is useless (but
19135 harmless).
19136
b68e7744
AD
191372001-12-29 Akim Demaille <akim@epita.fr>
19138
19139 * src/reader.c (readgram): Don't add the rule 0 if there were no
19140 rules read. In other words, add it _after_ having performed
19141 grammar sanity checks.
19142 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19143
78d5bae9
AD
191442001-12-29 Akim Demaille <akim@epita.fr>
19145
19146 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19147 visible, and some states have now a different number.
19148
ff442794
AD
191492001-12-29 Akim Demaille <akim@epita.fr>
19150
19151 * src/reader.c (readgram): Bind the initial rule's lineno to that
19152 of the first rule.
19153 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19154 (Solved SR Conflicts): Adjust rule 0's line number.
19155
610ab194
AD
191562001-12-29 Akim Demaille <akim@epita.fr>
19157
19158 Fix the `GAWK Grammar' failure.
19159
19160 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19161 the reductions of the first state which was mistakenly confused
19162 with the final state because precisely final_state was initialized
19163 to 0.
19164 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19165 now noticed by Bison.
19166 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19167 have a reduction on $default.
19168
29d29c8f
AD
191692001-12-29 Akim Demaille <akim@epita.fr>
19170
19171 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19172 rule line numbers.
19173 * src/closure.c (print_closure): Likewise.
19174 * src/derives.c (print_derives): Likewise.
19175 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19176 now.
19177
7c6b64d0
AD
191782001-12-29 Akim Demaille <akim@epita.fr>
19179
19180 * src/lalr.c (lookaheads_print): New.
19181 (lalr): Call it when --trace-flag.
19182 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19183 are dumped.
19184
3d4daee3
AD
191852001-12-29 Akim Demaille <akim@epita.fr>
19186
19187 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19188 when walking through ritem, even via rule->rhs.
19189 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19190 (useful_production, useless_nonterminals): Likewise.
19191 (reduce_grammar_tables): Likewise, plus update nritems.
19192 * src/nullable.c (set_nullable): Likewise.
19193 * src/lalr.c (build_relations): Likewise.
19194 * tests/sets.at (Nullable): Adjust.
19195 Fortunately, now, the $axiom is no longer nullable.
19196
9e7f6bbd
AD
191972001-12-29 Akim Demaille <akim@epita.fr>
19198
19199 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19200 the 0-sentinel.
19201 * src/gram.c (ritem_longest_rhs): Likewise.
19202 * src/reduce.c (nonterminals_reduce): Likewise.
19203 * src/print_graph.c (print_graph): Likewise.
19204 * src/output.c (output_rule_data): Likewise.
19205 * src/nullable.c (set_nullable): Likewise.
19206
255ef638
AD
192072001-12-29 Akim Demaille <akim@epita.fr>
19208
19209 * src/output.c: Comment changes.
19210
0d8a7363
AD
192112001-12-27 Paul Eggert <eggert@twinsun.com>
19212
19213 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19214 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19215 Sparc, as they were causing more porting problems than the
19216 (minor) performance improvement was worth.
19217
19218 Also, catch up with 1.31's YYSTD.
19219
3db472b9
AD
192202001-12-27 Akim Demaille <akim@epita.fr>
19221
19222 * src/output.c (output_gram): Rely on nritems, not the
19223 0-sentinel. See below.
19224 Use -1 as separator, not 0.
19225 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19226 Rely on -1 as separator in yyrhs, instead of 0.
19227 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19228 twice `Now at end of input', therefore there are two lines less to
19229 expect.
19230
b365aa05
AD
192312001-12-27 Akim Demaille <akim@epita.fr>
19232
19233 * tests/regression.at (Unresolved SR Conflicts):
19234 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19235 below.
19236
30171f79
AD
192372001-12-27 Akim Demaille <akim@epita.fr>
19238
19239 * src/LR0.c (new_state): Recognize the final state by the fact it
19240 is reached by eoftoken.
19241 (insert_start_shifting_state, insert_eof_shifting_state)
19242 (insert_accepting_state, augment_automaton): Remove, since now
19243 these states are automatically computed from the initial state.
19244 (generate_states): Adjust.
19245 * src/print.c: When reporting a rule number to the user, substract
19246 1, so that the axiom rule is rule 0, and the first user rule is 1.
19247 * src/reduce.c: Likewise.
19248 * src/print_graph.c (print_core): For the time being, just as for
19249 the report, depend upon --trace-flags to dump the full set of
19250 items.
19251 * src/reader.c (readgram): Once the grammar read, insert the rule
19252 0: `$axiom: START-SYMBOL $'.
19253 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19254 number of the states has changed (the final state is no longer
19255 necessarily the last), catch up.
19256
75142d45
AD
192572001-12-27 Akim Demaille <akim@epita.fr>
19258
19259 Try to make the use of the eoftoken valid. Given that its value
19260 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19261 is used instead of > 0 where appropriate, (ii), depend upon nritems
19262 instead of the 0-sentinel.
19263
19264 * src/gram.h, src/gram.c (nritems): New.
19265 Expected to be duplication of nitems, but for the time being...
19266 * src/reader.c (packgram): Assert nritems and nitems are equal.
19267 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19268 * src/closure.c (print_closure, print_fderives): Likewise.
19269 * src/gram.c (ritem_print): Likewise.
19270 * src/print.c (print_core, print_grammar): Likewise.
19271 * src/print_graph.c: Likewise.
19272
b7c49edf
AD
192732001-12-27 Akim Demaille <akim@epita.fr>
19274
19275 * src/main.c (main): If there are complains after grammar
19276 reductions, then output the report anyway if requested, then die.
19277 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19278 * src/reader.c (eoftoken): New.
19279 (parse_token_decl): If the token being defined has value `0', it
19280 is the eoftoken.
19281 (packsymbols): No longer hack `tags' to insert `$' by hand.
19282 Be sure to preserve the value of the eoftoken.
19283 (reader): Make sure eoftoken is defined.
19284 Initialize nsyms to 0: now eoftoken is created just like the others.
19285 * src/print.c (print_grammar): Don't special case the eof token.
19286 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19287 lie anyway, albeit pleasant.
19288 * tests/calc.at: Exercise error messages with eoftoken.
19289 Change the grammar so that empty input is invalid.
19290 Adjust expectations.
19291 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19292
ec2da99f
AD
192932001-12-27 Akim Demaille <akim@epita.fr>
19294
19295 * configure.in: Check the protos of strchr ans strspn.
19296 Replace strchr if needed.
19297 * src/system.h: Provide the protos of strchr, strspn and memchr if
19298 missing.
19299 * lib/strchr.c: New.
19300 * src/reader.c (symbols_save): Use strchr.
19301
8adfa272
AD
193022001-12-27 Akim Demaille <akim@epita.fr>
19303
19304 * src/print.c, src/print_graph.c (escape): New.
19305 Use it to quote the TAGS outputs.
19306 * src/print_graph.c (print_state): Now errors are in red, and
19307 reductions in green.
19308 Prefer high to wide: output the state number on a line of its own.
19309
80dac38c
AD
193102001-12-27 Akim Demaille <akim@epita.fr>
19311
19312 * src/state.h, src/state.c (reductions_new): New.
19313 * src/LR0.c (set_state_table): Let all the states have a
19314 `reductions', even if reduced to 0.
19315 (save_reductions): Adjust.
19316 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19317 * src/print.c (print_reductions, print_actions): Adjust.
19318 * src/output.c (action_row): Adjust.
19319
2cec70b9
AD
193202001-12-27 Akim Demaille <akim@epita.fr>
19321
19322 * src/state.h, src/state.c (errs_new, errs_dup): New.
19323 * src/LR0.c (set_state_table): Let all the states have an errs,
19324 even if reduced to 0.
19325 * src/print.c (print_errs, print_reductions): Adjust.
19326 * src/output.c (output_actions, action_row): Adjust.
19327 * src/conflicts.c (resolve_sr_conflict): Adjust.
19328
13ca549a
AD
193292001-12-27 Akim Demaille <akim@epita.fr>
19330
19331 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
19332
5092aba5
AD
193332001-12-27 Akim Demaille <akim@epita.fr>
19334
19335 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
19336 * src/print.c: here.
19337 (lookaheadset, shiftset): New, used as additional storage by
19338 print_reductions.
19339 (print_results): Adjust.
19340 (print_shifts, print_gotos, print_errs): New, extracted from...
19341 (print_actions): here.
19342 * src/print_graph.c (print_actions): Remove dead code.
19343
11e2beca
AD
193442001-12-27 Akim Demaille <akim@epita.fr>
19345
19346 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
19347 `$n' and `@n'.
19348
dac3c910
AD
193492001-12-27 Akim Demaille <akim@epita.fr>
19350
19351 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
19352 (build_relations): Adjust.
19353
d0b0fefa
AD
193542001-12-27 Akim Demaille <akim@epita.fr>
19355
19356 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
19357 duplication.
19358
adc8c848
AD
193592001-12-27 Akim Demaille <akim@epita.fr>
19360
19361 * src/reader.c (packgram): Catch nitems overflows.
19362
14d293ac
AD
193632001-12-27 Akim Demaille <akim@epita.fr>
19364
19365 * src/files.c, src/files.h (guard_obstack): Remove.
19366 * src/output.c (output): Adjust.
19367 * src/reader.c (parse_braces): New, factoring...
19368 (copy_action, copy_guard): these two which are renamed as...
19369 (parse_action, parse_guard): these.
19370 As a voluntary consequence, using braces around guards is now
19371 mandatory.
19372
f499b062
AD
193732001-12-27 Akim Demaille <akim@epita.fr>
19374
19375 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
19376 * src/reader.c (symbol_list): `guard' and `guard_line' are new
19377 members.
19378 (symbol_list_new): Adjust.
19379 (copy_action): action_line is the first line, not the last.
19380 (copy_guard): Just as for actions, store the `action' only, not
19381 the switch/case/break flesh.
19382 Don't parse the user action that might follow the guard, let...
19383 (readgram): do it, i.e., now, there can be an action after a
19384 guard.
19385 In other words the guard is just explicitly optional.
19386 (packgram): Adjust.
19387 * src/output.c (guards_output): New.
19388 (output_parser): Call it when needed.
19389 (output): Also free the guard and attrs obstacks.
19390 * src/files.c, src/files.h (obstack_save): Remove.
19391 (output_files): Remove.
19392 As a result, if one needs the former `.act' file, using an
19393 appropriate skeleton which requires actions and guards is now
19394 required.
19395 * src/main.c (main): Adjust.
19396 * tests/semantic.at: New.
19397 * tests/regression.at: Use `input.y' as input file name.
19398 Avoid 8+3 problems by requiring input.c when the test needs the
19399 parser.
19400
d945f5cd
AD
194012001-12-27 Akim Demaille <akim@epita.fr>
19402
19403 * src/reader.c (symbol_list_new): Be sure to initialize all the
19404 fields.
19405
d200e455
AD
194062001-12-27 Akim Demaille <akim@epita.fr>
19407
19408 All the hacks using a final pseudo state are now useless.
19409
19410 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19411 * src/lalr.c (nLA): New.
19412 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19413 instead of lookaheadsp from the pseudo state (nstate + 1).
19414
f9507c28
AD
194152001-12-27 Akim Demaille <akim@epita.fr>
19416
19417 * src/output.c (action_row, token_actions): Use a state_t instead
19418 of a integer, and nlookaheads instead of the following state's
19419 lookaheadsp.
19420
065fbd27
AD
194212001-12-27 Akim Demaille <akim@epita.fr>
19422
19423 * src/conflicts.c (log_resolution, flush_shift)
19424 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19425 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19426 (conflicts_print, print_reductions): Use a state_t instead of an
19427 integer when referring to a state.
19428 As much as possible, depend upon nlookaheads, instead of the
19429 `lookaheadsp' member of the following state (since lookaheads of
19430 successive states are successive, the difference between state n + 1
19431 and n served as the number of lookaheads for state n).
19432 * src/lalr.c (add_lookback_edge): Likewise.
19433 * src/print.c (print_core, print_actions, print_state)
19434 (print_results): Likewise.
19435 * src/print_graph.c (print_core, print_actions, print_state)
19436 (print_graph): Likewise.
19437 * src/conflicts.h: Adjust.
19438
1b177bd7
AD
194392001-12-27 Akim Demaille <akim@epita.fr>
19440
19441 * src/bison.hairy: Formatting/comment changes.
19442 ANSIfy.
19443 Remove `register' indications.
19444 Add plenty of `static'.
19445
7742ddeb
AD
194462001-12-27 Akim Demaille <akim@epita.fr>
19447
19448 * src/output.c (prepare): Drop the muscle `ntbase' which
19449 duplicates ntokens.
19450 * src/bison.simple: Formatting/comment changes.
19451 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19452 is an undocumented synonym.
19453
1fa14068
AD
194542001-12-22 Akim Demaille <akim@epita.fr>
19455
19456 * src/output.c (output_table_data): Change the prototype to use
19457 `int' for array ranges: some invocations do pass an int, not a
19458 short.
19459 Reported by Wayne Green.
19460
b9752825
AD
194612001-12-22 Akim Demaille <akim@epita.fr>
19462
19463 Some actions of web2c.y are improperly triggered.
19464 Reported by Mike Castle.
19465
19466 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19467 * tests/regression.at (Web2c): Rename as...
19468 (Web2c Report): this.
19469 (Web2c Actions): New.
19470
776209d6
AD
194712001-12-22 Akim Demaille <akim@epita.fr>
19472
19473 Reductions in web2c.y are improperly reported.
19474 Reported by Mike Castle.
19475
19476 * src/conflicts.c (print_reductions): Fix.
19477 * tests/regression.at (Web2c): New.
19478
275fc3ad
AD
194792001-12-18 Akim Demaille <akim@epita.fr>
19480
19481 Some host fail on `assert (!"foo")', which expands to
19482 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19483 Reported by Nelson Beebee.
19484
19485 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19486 `#define it_succeeded 0' and `assert (it_succeeded)'.
19487
897668ee
MA
194882001-12-17 Marc Autret <autret_m@epita.fr>
19489
19490 * src/bison.simple: Don't hard code the skeleton line and filename.
19491 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19492 New line counter 'skeleton_line' (skeleton-line muscle).
19493
ab3399e0
PE
194942001-12-17 Paul Eggert <eggert@twinsun.com>
19495
19496 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19497 YYDEBUG must be defined to a nonzero value.
19498
19499 * src/bison.simple (yytname): Do not assume that the user defines
19500 YYDEBUG to a properly parenthesized expression.
19501
3877f72b
AD
195022001-12-17 Akim Demaille <akim@epita.fr>
19503
19504 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19505 nlookaheads is a new member.
19506 Adjust all users.
19507 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19508 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19509 state.
776209d6 19510
331dbc1b
AD
195112001-12-17 Akim Demaille <akim@epita.fr>
19512
19513 * src/files.h, src/files.c (open_files, close_files): Remove.
19514 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19515 let...
19516 * src/reader.c (reader): Do it.
776209d6 19517
be750e4c
AD
195182001-12-17 Akim Demaille <akim@epita.fr>
19519
19520 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 19521
709ae8c6
AD
195222001-12-17 Akim Demaille <akim@epita.fr>
19523
19524 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19525 (flush_reduce): New.
19526 (resolve_sr_conflict): Adjust.
776209d6 19527
f87685c3
AD
195282001-12-17 Akim Demaille <akim@epita.fr>
19529
19530 * src/output.c (output_obstack): Be static and rename as...
19531 (format_obstack): this, to avoid any confusion with files.c's
19532 output_obstack.
19533 * src/reader.h (muscle_obstack): Move to...
19534 * src/output.h: here, since it's defined in output.c.
19535
837491d8
AD
195362001-12-17 Akim Demaille <akim@epita.fr>
19537
19538 * src/output.c (action_row, save_column, default_goto)
19539 (sort_actions, matching_state, pack_vector): Better variable
19540 locality.
19541
796d61fb
AD
195422001-12-17 Akim Demaille <akim@epita.fr>
19543
19544 * src/output.c: Various formatting changes.
776209d6 19545
64d15509
AD
195462001-12-17 Akim Demaille <akim@epita.fr>
19547
19548 * src/files.c (output_files): Free the output_obstack.
19549 * src/main.c (main): Call print and print_graph conditionally.
19550 * src/print.c (print): Work unconditionally.
19551 * src/print_graph.c (print_graph): Work unconditionally.
19552 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19553
fbc8ecb7
MA
195542001-12-16 Marc Autret <autret_m@epita.fr>
19555
19556 * src/output.c (actions_output): Fix. When we use %no-lines,
19557 there is one less line per action.
19558
f0440388
MA
195592001-12-16 Marc Autret <autret_m@epita.fr>
19560
19561 * src/bison.simple: Remove a useless #line directive.
19562 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19563 * src/output.c (get_lines_number): New.
776209d6 19564 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
19565 output muscles.
19566 Fix line numbering.
19567 (actions_output): Computes the number of lines taken by actions.
19568 (output_master_parser): Insert new skeleton which is the name of
19569 the output parser file name.
19570
a79986b8
MA
195712001-12-15 Marc Autret <autret_m@epita.fr>
19572
19573 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19574
4ec8e00f
MA
195752001-12-15 Marc Autret <autret_m@epita.fr>
19576
19577 * src/output.c (output_gram): Keep track of the hairy one.
19578
1a4648ff
AD
195792001-12-15 Akim Demaille <akim@epita.fr>
19580
19581 Make `make distcheck' work.
19582
19583 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19584 system.h which uses libgettext.h.
19585
9c2c67e6
AD
195862001-12-15 Akim Demaille <akim@epita.fr>
19587
19588 * src/nullable.c (set_nullable): Useless rules must be skipped,
19589 otherwise, since we range over their symbols, we might look at a
19590 nonterminal which no longer ``exists'', i.e., it is not counted in
19591 `nvars', hence we overflow our arrays.
19592
93ede233
AD
195932001-12-15 Akim Demaille <akim@epita.fr>
19594
19595 The header can also be produced directly, without any obstack!
19596 Yahoo!
19597
19598 * src/files.c, src/files.h (defines_obstack): Remove.
19599 (compute_header_macro): Global.
19600 (defines_obstack_save): Remove.
19601 * src/reader.c (parse_union_decl): No longer output to
19602 defines_obstack: its content can be found in the `stype' muscle
19603 anyway.
19604 (output_token_translations): Merge into...
19605 (symbols_output): this.
19606 Rename as...
19607 (symbols_save): this.
19608 (reader): Adjust.
19609 * src/output.c (header_output): New.
19610 (output): Call it.
19611
2666f928
AD
196122001-12-15 Akim Demaille <akim@epita.fr>
19613
19614 * src/reader.c (parse_union_decl): Instead of handling two obstack
19615 simultaneously, use one to define the `stype' muscle, and use the
19616 value of the latter to fill defines_obstack.
19617 (copy_comment): Remove.
19618 (copy_comment2): Work for a single obstack.
19619 Rename as...
19620 (copy_comment): this.
19621
428046f8
AD
196222001-12-15 Akim Demaille <akim@epita.fr>
19623
19624 * src/lex.c, src/lex.h (xgetc): No longer static.
19625 * src/reader.c (parse_union_decl): Revamp.
19626
ea52d706
AD
196272001-12-15 Akim Demaille <akim@epita.fr>
19628
19629 Still making progress in separating Bison into (i) input, (ii)
19630 process, (iii) output: now we can directly output the parser file
19631 without using table_obstack at all.
19632
19633 * src/files.c, src/files.h (table_obstack): Bye bye.
19634 (parser_file_name): New.
19635 * src/files.c (compute_output_file_names): Compute it.
19636 * src/output.c (actions_output, output_parser)
19637 (output_master_parser): To a file instead of an obstack.
19638
3f96f4dc
AD
196392001-12-15 Akim Demaille <akim@epita.fr>
19640
19641 Attach actions to rules, instead of pre-outputting them to
19642 actions_obstack.
19643
19644 * src/gram.h (rule_t): action and action_line are new members.
19645 * src/reader.c (symbol_list): Likewise.
19646 (copy_action): Save the actions within the rule.
19647 (packgram): Save them in rule_table.
19648 * src/output.c (actions_output): New.
19649 (output_parser): Use it on `%%actions'.
19650 (output_rule_data): Don't free rule_table.
19651 (output): Do it.
19652 (prepare): Don't save the `action' muscle.
19653 * src/bison.simple: s/%%action/%%actions/.
19654
51576fb3
AD
196552001-12-15 Akim Demaille <akim@epita.fr>
19656
19657 * src/reader.c (copy_action): When --yacc, don't append a `;'
19658 to the user action: let it fail if lacking.
dee049eb 19659 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 19660
2648a72d
AD
196612001-12-14 Akim Demaille <akim@epita.fr>
19662
19663 * src/lex.c (literalchar): Simply return the char you decoded, non
19664 longer mess around with obstacks and int pointers.
19665 Adjust all callers.
19666
92790e5b
AD
196672001-12-14 Akim Demaille <akim@epita.fr>
19668
19669 * src/lex.c (literalchar): Don't escape the special characters,
19670 just decode them, and keep them as char (before, eol was output as
19671 the 2 char string `\n' etc.).
19672 * src/output.c (output_rule_data): Use quotearg to output the
19673 token strings.
19674
927c1557
PE
196752001-12-13 Paul Eggert <eggert@twinsun.com>
19676
19677 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19678 Do not infringe on the global user namespace when using C++.
19679 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19680 All uses of `fprintf' and `stderr' changed.
19681
19682 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19683
ed8e1f68
AD
196842001-12-13 Akim Demaille <akim@epita.fr>
19685
19686 The computation of nullable is broken: it doesn't handle empty
19687 RHS's properly.
19688
19689 * tests/torture.at (GNU AWK Grammar): New.
19690 * tests/sets.at (Nullable): New.
19691 * src/nullable.c (set_nullable): Instead of blindly looping over
19692 `ritems', loop over the rules, and then over their rhs's.
19693
19694 Work around Autotest bugs.
19695
19696 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19697 frame, because Autotest understand lines starting with a `+' as
19698 traces from the shell. Then, they are not processed properly.
19699 Admittedly an Autotest bug, but we don't have time to wait for
19700 Autotest to catch up.
19701 * tests/regression.at (Broken Closure): Adjust to the new table
19702 frames.
19703 Move to...
19704 * tests/sets.at: here.
19705
cb581495
AD
197062001-12-13 Akim Demaille <akim@epita.fr>
19707
19708 * src/closure.c (closure): Use nrules instead of playing tricks
19709 with BITS_PER_WORD.
19710
2e729273
AD
197112001-12-13 Akim Demaille <akim@epita.fr>
19712
19713 * src/print.c (print_actions): Output the handling of `$' as the
19714 traces do: shifting the token EOF. Before EOF was treated as a
19715 nonterminal.
19716 * tests/regression.at: Adjust some tests.
19717 * src/print_graph.c (print_core): Complete the set of items via
19718 closure. The next-to-final and final states are still unsatisfying,
19719 but that's to be addressed elsewhere.
19720 No longer output the rule numbers, but do output the state number.
19721 A single loop for the shifts + gotos is enough, but picked a
19722 distinct color for each.
19723 (print_graph): Initialize and finalize closure.
19724
107f7dfb
AD
197252001-12-13 Akim Demaille <akim@epita.fr>
19726
19727 * src/reader.c (readgram): Remove dead code, an strip useless
19728 braces.
19729 (get_type): Remove, unused.
19730
9b53a24f
AD
197312001-12-12 Akim Demaille <akim@epita.fr>
19732
19733 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19734 on that of lib/error.c.
19735
dbfb6dcd
AD
197362001-12-12 Akim Demaille <akim@epita.fr>
19737
19738 Some hosts don't like `/' in includes.
19739
19740 * src/system.h: Include libgettext.h without qualifying the path.
19741 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19742 $(top_srcdir).
19743
c25fb648
MA
197442001-12-11 Marc Autret <autret_m@epita.fr>
19745
19746 * src/output.c (output_parser): Remove useless muscle.
19747
710ddc4f
MA
197482001-12-11 Marc Autret <autret_m@epita.fr>
19749
19750 * src/bison.simple: Remove #line just before %%epilogue. It
19751 is now handled in ...
19752 * src/reader.c (read_additionnal_code): Add the output of a
19753 #line for the epilogue.
19754
e83d80b8
MA
197552001-12-10 Marc Autret <autret_m@epita.fr>
19756
927c1557 19757 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
19758 replace precedent remove.
19759 * src/bison.simple: Remove #line before %%prologue because
19760 %%input-line is wrong at this time.
19761
971d5158
MA
197622001-12-10 Marc Autret <autret_m@epita.fr>
19763
19764 * src/reader.c (symbols_output): Clean up.
927c1557 19765 * src/output.c (output_gram, output): Clean up.
971d5158 19766
5edafffd
AD
197672001-12-10 Akim Demaille <akim@epita.fr>
19768
19769 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19770 * src/LR0.c (set_state_table): here.
19771 * src/lalr.c (lalr): Call it.
19772
0279f8e9
AD
197732001-12-10 Akim Demaille <akim@epita.fr>
19774
19775 * src/state.h (shifts): Remove the `number' member: shifts are
19776 attached to state, hence no longer need to be labelled with a
19777 state number.
19778
190c4f5f
AD
197792001-12-10 Akim Demaille <akim@epita.fr>
19780
19781 Now that states have a complete set of members, the linked list of
19782 shifts is useless: just fill directly the state's shifts member.
19783
19784 * src/state.h (shifts): Remove the `next' member.
19785 * src/LR0.c (first_state, last_state): Remove.
19786 Adjust the callers.
19787 (augment_automaton): Don't look for the shifts that must be added
19788 a shift on EOF: it is those of the state we looked for! But now,
19789 since shifts are attached, it is no longer needed to looking
19790 merely by its id: its number.
19791
2a73b93d
AD
197922001-12-10 Akim Demaille <akim@epita.fr>
19793
19794 * src/LR0.c (augment_automaton): Better variable locality.
19795 Remove an impossible branch: if there is a state corresponding to
19796 the start symbol being shifted, then there is shift for the start
19797 symbol from the initial state.
19798
74392f6a
AD
197992001-12-10 Akim Demaille <akim@epita.fr>
19800
19801 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19802 only when appropriate: when insert_start_shifting_state' is not
19803 invoked.
19804 * tests/regression.at (Rule Line Numbers): Adjust.
19805
37c82725
AD
198062001-12-10 Akim Demaille <akim@epita.fr>
19807
19808 * src/LR0.c (augment_automaton): Now that all states have shifts,
19809 merge the two cases addition shifts to the initial state.
19810
6a164e0c
AD
198112001-12-10 Akim Demaille <akim@epita.fr>
19812
19813 * src/lalr.c (set_state_table): Move to...
19814 * src/LR0.c: here.
19815 * src/lalr.c (lalr): Don't call it...
19816 * src/LR0.c (generate_states): do it.
19817 * src/LR0.h (first_state): Remove, only the table is used.
19818
7215de24
AD
198192001-12-10 Akim Demaille <akim@epita.fr>
19820
19821 * src/LR0.h (first_shift, first_reduction): Remove.
19822 * src/lalr.c: Don't use first_shift: find shifts through the
19823 states.
19824
80e25d4d
AD
198252001-12-10 Akim Demaille <akim@epita.fr>
19826
19827 * src/LR0.c: Attach shifts to states as soon as they are
19828 computed.
19829 * src/lalr.c (set_state_table): Instead of assigning shifts to
19830 state, just assert that the mapping was properly done.
19831
0ab3728b
AD
198322001-12-10 Akim Demaille <akim@epita.fr>
19833
19834 * src/LR0.c (insert_start_shift): Rename as...
19835 (insert_start_shifting_state): this.
19836 (insert_eof_shifting_state, insert_accepting_state): New.
19837 (augment_automaton): Adjust.
19838 Better locality of the variables.
19839 When looking if the start_symbol is shifted from the initial
19840 state, using `while (... symbol != start_symbol ...)' sounds
19841 better than `while (... symbol < start_symbol ...)': If fail
19842 to see how the order between symbols could be relevant!
19843
78af9bbc
AD
198442001-12-10 Akim Demaille <akim@epita.fr>
19845
19846 * src/getargs.h: Don't declare `spec_name_prefix' and
19847 `spec_file_prefix', declared by src/files.h.
19848 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19849 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19850 * src/output.c (prepare): Adjust.
19851 * src/reader.c (symbols_output): Likewise.
19852 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19853
bdef2a41
AD
198542001-12-10 Akim Demaille <akim@epita.fr>
19855
19856 * src/muscle_tab.c (muscle_init): NULL is a better default than
19857 `"0"'.
19858
3735969c
AD
198592001-12-10 Akim Demaille <akim@epita.fr>
19860
19861 * src/reader.c (reader): Calling symbols_output once is enough.
19862
49701457
AD
198632001-12-10 Akim Demaille <akim@epita.fr>
19864
19865 Now that states have a complete set of members, the linked list of
19866 reductions is useless: just fill directly the state's reductions
19867 member.
19868
19869 * src/state.h (struct reductions): Remove member `number' and
19870 `next'.
19871 * src/LR0.c (first_reduction, last_reduction): Remove.
19872 (save_reductions): Don't link the new reductions, store them in
19873 this_state.
19874 * src/lalr.c (set_state_table): No need to attach reductions to
19875 states, it's already done.
19876 * src/output.c (output_actions): No longer free the shifts, then
19877 the reductions, then the states: free all the states and their
19878 members.
19879
0edad749
AD
198802001-12-10 Akim Demaille <akim@epita.fr>
19881
19882 * src/options.c (OPTN, DRTV, BOTH): New.
19883 (option_table): Use them.
19884
0edad749
AD
19885 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19886 the job of system.h.
19887 * src/options.c: Don't include stdio.h and xalloc.h for the same
19888 reasons.
19889
5449dd0f
AD
198902001-12-10 Akim Demaille <akim@epita.fr>
19891
19892 * src/output.c (output, prepare): Make sure the values of the
19893 muscles `action' and `prologue' are 0-terminated.
19894
a870c567
AD
198952001-12-10 Akim Demaille <akim@epita.fr>
19896
19897 Clean up GCC warnings.
19898
19899 * src/reader.c (copy_action): `buf' is not used.
19900 (parse_skel_decl): Be static.
19901 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19902 * src/options.h (create_long_option_table): Have a real prototype.
19903 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19904 (hash_delete_at): Return const void *.
19905 Adjust casts to preserve the const.
19906
80df8768
AD
199072001-12-10 Akim Demaille <akim@epita.fr>
19908
19909 * configure.in: Require 2.52g.
19910 M4 is not needed, but AUTOM4TE is.
19911 * m4/m4.m4: Remove.
19912 * tests/Makefile.am: Adjust.
19913
f693ad14
AD
199142001-12-10 Akim Demaille <akim@epita.fr>
19915
19916 One structure for states is enough, even though theoretically
19917 there are LR(0) states and LALR(1) states.
19918
19919 * src/lalr.h (state_t): Remove.
19920 (state_table): Be state_t **, not state_t *.
19921 * src/state.h (core, CORE_ALLOC): Rename as...
19922 (state_t, STATE_ALLOC): this.
19923 Add the LALR(1) members: shifts, reductions, errs.
19924 * src/LR0.c (state_table): Rename as...
19925 (state_hash): this, to avoid name clashes with the global
19926 `state_table'.
19927 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19928 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19929
74ffbcb6
AD
199302001-12-10 Akim Demaille <akim@epita.fr>
19931
19932 Bison dumps core on bash.y.
19933 Reported by Pascal Bart.
19934
19935 * src/warshall.c (bitmatrix_print): New.
19936 (TC): Use it.
ba0fe3c7 19937 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
19938 j must be the outer loop.
19939 * tests/regression.at (Broken Closure): New.
19940
07708e19
AD
199412001-12-05 Akim Demaille <akim@epita.fr>
19942
19943 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19944 its argument.
ba1ecc07 19945 Reported by Peter Hamorsky.
07708e19 19946
92b16366
AD
199472001-12-05 Akim Demaille <akim@epita.fr>
19948
19949 * src/conflicts.c (err_table): Remove.
19950 (resolve_sr_conflict): Adjust.
19951 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19952 Rename as...
19953 (state_t.reductions, state_t.shifts): this.
19954
076ab033
AD
199552001-12-05 Akim Demaille <akim@epita.fr>
19956
19957 * src/reduce.c (reduce_grammar_tables): No longer disable the
19958 removal of useless rules via CPP but via `if (0)', so that the
19959 compiler still check the code is valid.
19960 For instance, it should have noticed `rline' no longer exists: use
19961 the `line' member of rule_t.
19962 * src/gram.c (dummy, rline): Remove, unused.
19963
3843c413
AD
199642001-12-05 Akim Demaille <akim@epita.fr>
19965
19966 * src/output.c (pack_vector): Use assert, not berror.
19967 * src/main.c (berror): Remove, unused.
19968
43168960
AD
199692001-12-05 Akim Demaille <akim@epita.fr>
19970
19971 New experimental feature: if --verbose --trace output all the
19972 items of a state, not only its kernel.
19973
19974 * src/print.c (print_core): If `trace_flag', then invoke closure
19975 before outputting the items of the state (print_core is no longer
19976 a correct name them).
19977 (print_results): Invoke new_closure/free_closure if needed.
19978
b2872512
AD
199792001-12-05 Akim Demaille <akim@epita.fr>
19980
19981 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19982 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19983 (nitemset): for consistency with the rest of the project.
19984
23cbcc6c
AD
199852001-12-05 Akim Demaille <akim@epita.fr>
19986
19987 * src/closure.c (print_closure): Improve.
19988 (closure): Use it for printing input and output.
19989
03ec521c
AD
199902001-12-05 Akim Demaille <akim@epita.fr>
19991
19992 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19993 indexed by nonterminals.
19994
3a7456dd
AD
199952001-12-05 Akim Demaille <akim@epita.fr>
19996
19997 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19998 what it was!).
19999 * src/warshall.h: Remove accidental duplication of the content.
20000
1cbcf2e7
AD
200012001-12-05 Akim Demaille <akim@epita.fr>
20002
20003 * src/closure.c (set_fderives): De-obfuscate.
20004
84182270
AD
200052001-12-05 Akim Demaille <akim@epita.fr>
20006
20007 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20008
3f6f053c
AD
200092001-12-05 Akim Demaille <akim@epita.fr>
20010
20011 * src/closure.c (set_firsts): De-obfuscate.
20012
7a5350ba
AD
200132001-12-05 Akim Demaille <akim@epita.fr>
20014
20015 * src/output.c (action_row): De-obfuscate
20016 using the good o' techniques: arrays not pointers, variable
20017 locality, BITISSET, RESETBIT etc.
20018
d954473d
AD
200192001-12-05 Akim Demaille <akim@epita.fr>
20020
20021 Pessimize the code to simplify it: from now on, all the states
20022 have a valid SHIFTS, which NSHIFTS is possibly 0.
20023
20024 * src/LR0.c (shifts_new): Be global and move to..
20025 * src/state.c, src/state.h: here.
20026 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20027 * src/print_graph: Adjust.
20028
9839bbe5
AD
200292001-12-05 Akim Demaille <akim@epita.fr>
20030
20031 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20032 * src/conflicts.c: Use it.
20033 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20034 incorrectly ``simplified''.
20035
9f136c07
AD
200362001-12-05 Akim Demaille <akim@epita.fr>
20037
20038 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20039 using the good o' techniques: arrays not pointers, variable
20040 locality, BITISSET, RESETBIT etc.
20041
b608206e
AD
200422001-12-05 Akim Demaille <akim@epita.fr>
20043
20044 * src/state.h (SHIFT_SYMBOL): New.
20045 * src/conflicts.c: Use it to deobfuscate.
20046
52afa962
AD
200472001-12-05 Akim Demaille <akim@epita.fr>
20048
20049 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20050 (print_reductions): De-obfuscate using the good o' techniques:
20051 arrays not pointers, variable locality, BITISSET.
20052
e74dc321
AD
200532001-12-05 Akim Demaille <akim@epita.fr>
20054
20055 * src/conflicts.c (print_reductions): Arrays, not pointers.
20056 Use BITISSET.
20057
768fca83
AD
200582001-12-05 Akim Demaille <akim@epita.fr>
20059
20060 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20061
a17e599f
AD
200622001-12-05 Akim Demaille <akim@epita.fr>
20063
20064 * src/conflicts.c (print_reductions): Improve variable locality.
20065
a04bc341
AD
200662001-12-05 Akim Demaille <akim@epita.fr>
20067
20068 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20069
c8ea038e
AD
200702001-12-05 Akim Demaille <akim@epita.fr>
20071
20072 * src/conflicts.c (print_reductions): Improve variable locality.
20073
aa2aab3c
AD
200742001-12-05 Akim Demaille <akim@epita.fr>
20075
20076 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20077 * src/lalr.c: Use them.
20078
b178c8cc
AD
200792001-12-05 Akim Demaille <akim@epita.fr>
20080
20081 * src/LR0.c (augment_automaton): Formatting changes.
20082 Better variable locality.
20083
f67d13aa
AD
200842001-12-05 Akim Demaille <akim@epita.fr>
20085
20086 * src/lalr.c (matrix_print): New.
20087 (transpose): Use it.
20088 Use arrays instead of pointers.
20089
c2713865
AD
200902001-12-05 Akim Demaille <akim@epita.fr>
20091
20092 * src/lalr.c (maxrhs): Move to...
20093 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20094 * src/lalr.c (build_relations): Adjust.
20095
9887c18a
AD
200962001-12-05 Akim Demaille <akim@epita.fr>
20097
20098 * src/lalr.c (transpose): Free the memory allocated to the
20099 argument, as it is replaced by the results by the unique caller.
20100 (build_relations): Merely invoke transpose: it handles the memory
20101 deallocation.
20102 Improve variable locality.
20103 Avoid variables used as mere abbreviations.
20104 (compute_lookaheads): Use arrays instead of pointers.
20105
4d4f699c
AD
201062001-12-05 Akim Demaille <akim@epita.fr>
20107
20108 * src/lalr.c (initialize_F): Improve variable locality.
20109 Avoid variables used as mere abbreviations.
20110
80a69750
AD
201112001-12-05 Akim Demaille <akim@epita.fr>
20112
20113 * src/derives.c (print_derives): Display the ruleno.
20114 * src/lalr.c (initialize_F, transpose): Better variable locality
20115 to improve readability.
20116 Avoid variables used as mere abbreviations.
20117
fe961097
AD
201182001-12-05 Akim Demaille <akim@epita.fr>
20119
20120 * src/lalr.c (traverse): Use arrays instead of pointers.
20121
e3e4e814
AD
201222001-12-05 Akim Demaille <akim@epita.fr>
20123
20124 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20125 the handling of squeue.
20126 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20127
630e182b
AD
201282001-12-05 Akim Demaille <akim@epita.fr>
20129
20130 Because useless nonterminals are now kept alive (instead of being
20131 `destroyed'), we now sometimes examine them, and store information
20132 related to them. Hence we need to know their number, and adjust
20133 memory allocations.
20134
20135 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20136 static.
20137 * src/LR0.c (allocate_itemsets): The memory allocated to
20138 `symbol_count' was used for two different purpose: once to count
20139 the number of occurrences of each symbol, and later reassigned to
20140 `shift_symbol', containing the symbol that can be shifted from a
20141 given state.
20142 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20143 only, and...
20144 (new_itemsets): Allocate `shift_symbol' here.
20145 (allocate_itemsets): symbol_count includes useless nonterminals.
20146 Make room for them.
20147 (free_storage): Use `free', not `XFREE', for pointers that cannot
20148 be null.
20149
81b51460
AD
201502001-12-05 Akim Demaille <akim@epita.fr>
20151
20152 * src/nullable.c (set_nullable): Deobfuscate the handling of
20153 ritem.
20154 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20155
3067fbef
AD
201562001-12-05 Akim Demaille <akim@epita.fr>
20157
20158 * src/gram.c, src/gram.h (ritem_print): New.
20159 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20160 (This useless function was defined only to work around VMS linkers
20161 that can't handle compilation units with variables only).
20162 * src/reduce.c (dump_grammar): Use it to trace the construction of
20163 ritem.
20164
c2bea5f9
PE
201652001-12-04 Paul Eggert <eggert@twinsun.com>
20166
7d27c823
PE
20167 * src/bison.simple (union yyalloc): Change member names
20168 to be the same as the stack names.
20169 (yyparse): yyptr is now union yyalloc *, not char *.
20170 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20171 and may generate better code on some machines.
c2bea5f9
PE
20172 (yystpcpy): Use prototype if __STDC__ is defined, not just
20173 if __cplusplus is defined.
35687a9d 20174
2c8a9dfa
AD
201752001-11-30 Akim Demaille <akim@epita.fr>
20176
20177 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20178 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20179 Gettext doesn't compile cleanly, and dies with -Werror.
20180 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20181 Include WARNING_CFLAGS here.
20182 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20183 before being defined.
20184
f4e421e6
AD
201852001-11-27 Paul Eggert <eggert@twinsun.com>
20186
20187 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20188 First arg is int, not unsigned.
20189 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20190 (SIZE_MAX, UINT_MAX): New macros.
20191 (quotearg_n_options): Abort if N is negative.
20192 Avoid overflow check on hosts where size_t is 64 bits and int
20193 is 32 bits, as overflow is impossible there.
20194 Fix off-by-one typo that caused unnecessary reallocation.
20195
7093d0f5
AD
201962001-11-29 Paul Eggert <eggert@twinsun.com>
20197
20198 Name space cleanup in generated parser.
20199
20200 * doc/bison.texinfo (Bison Parser): Discuss system headers
20201 and their effect on the user name space.
20202
20203 * src/bison.simple:
20204 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20205 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20206 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20207
20208 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20209 on user names when possible.
20210
20211 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20212 Simplify test for whather <alloca.h> exists.
20213
20214 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20215
20216 (<stdio.h>): Include if YYDEBUG.
20217
20218 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20219 ! defined (yyoverflow) && ! defined (yymemcpy).
20220
20221 (yymemcpy, yyparse): Rename local variables as needed so that
20222 they all begin with 'yy'.
20223
20224 (yystrlen, yystpcpy): New functions.
20225
20226 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20227 All uses changed.
20228
20229 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20230 instead of relying on string.h functions. Use YYSTACK_ALLOC
20231 and YYSTACK_FREE instead of malloc and free.
20232
fd51e5ff
AD
202332001-11-30 Akim Demaille <akim@epita.fr>
20234
20235 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20236 before their first uses.
20237 (YYBISON, YYPURE): Move to the top of the output.
20238
7d13ff5f
AD
202392001-11-30 Akim Demaille <akim@epita.fr>
20240
20241 * tests/reduce.at (Useless Nonterminals): Fix.
20242
892a3995
AD
202432001-11-30 Akim Demaille <akim@epita.fr>
20244
20245 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20246 if body instead of `;' to pacify GCC's warnings.
20247
68f1e3ed
AD
202482001-11-30 Akim Demaille <akim@epita.fr>
20249
20250 Instead of mapping the LHS of unused rules to -1, keep the LHS
20251 valid, but flag the rules as invalid.
20252
20253 * src/gram.h (rule_t): `useful' is a new member.
20254 * src/print.c (print_grammar): Adjust.
20255 * src/derives.c (set_derives): Likewise.
20256 * src/reader.c (packgram, reduce_output): Likewise.
20257 * src/reduce.c (reduce_grammar_tables): Likewise.
20258 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20259
d2d1b42b
AD
202602001-11-30 Akim Demaille <akim@epita.fr>
20261
20262 * src/reduce.c (reduce_output): Formatting changes.
20263 * src/print.c (print_results, print_grammar): Likewise.
20264 * tests/regression.at (Rule Line Numbers)
20265 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20266
760b53a8
AD
202672001-11-30 Akim Demaille <akim@epita.fr>
20268
20269 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20270 useless nonterminals, move them at the end of the symbol arrays.
20271 (reduce_output): Adjust.
20272 * tests/reduce.at (Useless Nonterminals): Adjust.
20273
00238958
AD
202742001-11-30 Akim Demaille <akim@epita.fr>
20275
20276 * src/reduce.c: Various comment/formatting changes.
20277 (nonterminals_reduce): New, extracted from...
20278 (reduce_grammar_tables): here.
20279 (reduce_grammar): Call nonterminals_reduce.
20280
396452de
PE
202812001-11-29 Paul Eggert <eggert@twinsun.com>
20282
20283 * src/bison.simple (YYSTACK_REALLOC): Remove.
20284 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20285 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20286 New macros.
20287 (union yyalloc): New type.
20288 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20289 an arbitrary restriction on hosts where size_t is wider than int.
20290
20291 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20292 a parser stack overflow. Allocate just one block of memory for all
20293 three stacks, instead of allocating three blocks; this typically is
20294 faster and reduces fragmentation.
20295
20296 Do not limit the number of items in the stack to a value that fits
20297 in 'int', as this is an arbitrary limit on hosts with 64-bit
20298 size_t and 32-bit int.
20299
147e184c
MA
203002001-11-29 Marc Autret <autret_m@epita.fr>
20301
20302 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20303 of defining YYERROR_VERBOSE.
20304 [AT_DATA]: $4 is now out of C declarations in the prologue.
20305
426cf563
MA
203062001-11-28 Marc Autret <autret_m@epita.fr>
20307
20308 * src/reader.c (parse_dquoted_param): New.
20309 (parse_skel_decl): Use it.
20310 * src/lex.h: Add its prototype.
20311 * src/lex.c (literalchar): Become not static.
20312
c7925b99
MA
203132001-11-28 Marc Autret <autret_m@epita.fr>
20314
20315 * src/output.h: And put its extern declaration here.
20316 * src/output.c (error_verbose): Define here.
20317 (prepare): Echo name modification.
20318 * src/getargs.h: Clean its extern declaration.
20319 * src/getargs.c (error_verbose_flag): Remove.
20320 (getargs): Remove case 'e'.
20321 * src/options.c (option_table): 'error-verbose' is now seen as simple
20322 percent option.
20323 Include output.h.
20324
20325 * src/reader.c (read_declarations): Remove case tok_include.
20326 (parse_include_decl): Remove.
20327 * src/lex.h (token_t): Remove tok_include.
20328 * src/options.c (option_table): 'include' is now a simple command line
20329 option.
20330
5b5d1929
MA
203312001-11-28 Marc Autret <autret_m@epita.fr>
20332
20333 * src/bison.simple: Adjust muscle names.
20334 * src/muscle_tab.c (muscle_init): Also rename the muscles.
20335 * src/output.c (prepare): s/_/-/ for the muscles names.
20336 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
20337
8850be4b
MA
203382001-11-28 Marc Autret <autret_m@epita.fr>
20339
20340 * src/bison.simple: Fix debug.
20341 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
20342
4a38e613
AD
203432001-11-28 Akim Demaille <akim@epita.fr>
20344
20345 * src/LR0.c (shifts_new): New.
20346 (save_shifts, insert_start_shift, augment_automaton): Use it.
20347
4b35e1c1
AD
203482001-11-28 Akim Demaille <akim@epita.fr>
20349
20350 * src/closure.c (closure): `b' and `ruleno' denote the same value:
20351 keep ruleno only.
20352
d2b04478
AD
203532001-11-28 Akim Demaille <akim@epita.fr>
20354
20355 * src/closure.c (closure): Instead of looping over word in array
20356 then bits in words, loop over bits in array.
20357
2c4c30aa
AD
203582001-11-28 Akim Demaille <akim@epita.fr>
20359
20360 * src/closure.c (closure): No longer optimize the special case
20361 where all the bits of `ruleset[r]' are set to 0, to make the code
20362 clearer.
20363
576890b7
AD
203642001-11-28 Akim Demaille <akim@epita.fr>
20365
20366 * src/closure.c (closure): `r' and `c' are new variables, used to
20367 de-obfuscate accesses to RULESET and CORE.
20368
cb487d7d
AD
203692001-11-28 Akim Demaille <akim@epita.fr>
20370
20371 * src/reduce.c (reduce_print): Use ngettext.
20372 (dump_grammar): Improve the trace accuracy.
20373
6013d43f
AD
203742001-11-28 Akim Demaille <akim@epita.fr>
20375
20376 * src/reduce.c (dump_grammar): Don't translate trace messages.
20377
cb4956ee
AD
203782001-11-28 Akim Demaille <akim@epita.fr>
20379
20380 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
20381 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
20382 as all tags are free'ed afterwards.
20383 From Enrico Scholz.
20384
648185ab
PE
203852001-11-27 Paul Eggert <eggert@twinsun.com>
20386
20387 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
20388 use alloca when we didn't want to, and vice versa.
20389
68254a03
MA
203902001-11-27 Marc Autret <autret_m@epita.fr>
20391
9113b58f
AD
20392 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
20393 initialization.
68254a03
MA
20394 * src/output.c (prepare): Remove its update.
20395
04d843a2
MA
203962001-11-27 Marc Autret <autret_m@epita.fr>
20397
20398 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
20399 Use %error-verbose.
20400
d2079671 204012001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
20402
20403 * src/bison.simple: Remove YYERROR_VERBOSE using.
20404 Use %%error_verbose.
20405 (yyparse): Likewise.
20406 * src/output.c (prepare): Give its final value.
20407 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20408 * src/getargs.h: Add its extern declaration.
20409 * src/getargs.c (error_verbose_flag): New int.
20410 (getargs): Update to catch new case.
20411 * src/options.c (option_table): 'error-verbose' is a new option.
20412 (shortopts): Update.
20413
e0327bc8
AD
204142001-11-27 Akim Demaille <akim@epita.fr>
20415
20416 * src/system.h: Use intl/libgettext.h.
20417 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20418
000f1a3c
AD
204192001-11-27 Akim Demaille <akim@epita.fr>
20420
20421 * tests/torture.at (Exploding the Stack Size with Malloc):
20422 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20423
26cfe0be
AD
204242001-11-27 Akim Demaille <akim@epita.fr>
20425
20426 * src/files.c: Include error.h.
20427 Reported by Hans Aberg.
20428
f6bd5427
MA
204292001-11-26 Marc Autret <autret_m@epita.fr>
20430
d2079671 20431 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
20432 (read_declarations): Add case tok_include.
20433 * src/getargs.h (include): Add its extern definition.
20434 * src/getargs.c (include): New const char *.
20435 (getargs): Add case '-I'.
20436 * src/options.c (option_table): Add include as command line and
20437 percent option.
20438 * src/lex.h (token_t): Add tok_include.
20439
2ca209c1
AD
204402001-11-26 Akim Demaille <akim@epita.fr>
20441
20442 * src/reader.c (readgram): Make sure rules for mid-rule actions
20443 have a lineno equal to that of their host rule.
20444 Reported by Hans Aberg.
20445 * tests/regression.at (Rule Line Numbers): New.
20446
0e41b407
AD
204472001-11-26 Akim Demaille <akim@epita.fr>
20448
20449 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20450 size_ts.
20451
204522001-11-26 Akim Demaille <akim@epita.fr>
20453
20454 * src/complain.c, src/complain.h (error): Remove, provided by
20455 lib/error.[ch].
20456
e0c40012
AD
204572001-11-26 Akim Demaille <akim@epita.fr>
20458
20459 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20460 issue an error message.
20461 * tests/regression.at (Invalid %directive): New.
20462 Reported by Hans Aberg.
20463
5e147124
AD
204642001-11-26 Akim Demaille <akim@epita.fr>
20465
20466 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20467 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20468
a034c8b8
AD
204692001-11-26 Akim Demaille <akim@epita.fr>
20470
20471 * src/conflicts.c (conflicts_print): Don't complain at all when
20472 there are no reduce/reduce conflicts, and as many shift/reduce
20473 conflicts as expected.
20474 * tests/regression.at (%expect right): Adjust.
20475
c64a20f3
AD
204762001-11-23 Akim Demaille <akim@epita.fr>
20477
20478 * lib/alloca.c: Update, from fileutils.
20479
5b0d29bb
AD
204802001-11-23 Akim Demaille <akim@epita.fr>
20481
20482 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20483
722c4bfe
AD
204842001-11-23 Akim Demaille <akim@epita.fr>
20485
20486 * src/system.h: Include alloca.h.
20487 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20488
6255b435
AD
204892001-11-23 Akim Demaille <akim@epita.fr>
20490
20491 * src/print_graph.c (print_actions): Remove `rule', unused.
20492 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20493 pacify GCC's signed < unsigned warnings.
20494 * src/closure.c (itemsetsize): Likewise.
20495 * src/reader.c (symbol_list_new): Static.
20496
b29b2ed5
AD
204972001-11-23 Akim Demaille <akim@epita.fr>
20498
20499 Attaching lineno to buckets is stupid, since only one copy of each
20500 symbol is kept, only the line of the first occurrence is kept too.
20501
20502 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20503 * src/reader.c (rline_allocated): Remove, unused.
20504 (symbol_list): Have a `line' member.
20505 (symbol_list_new): New.
20506 (readgram): Use it.
20507 * src/print.c (print_grammar): Output the rule line numbers.
20508 * tests/regression.at (Solved SR Conflicts)
20509 (Unresolved SR Conflicts): Adjust.
20510 Reported by Hans Aberg.
20511
a81b1d4a
MA
205122001-11-22 Marc Autret <autret_m@epita.fr>
20513
20514 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20515
c1ecb3c1
MA
205162001-11-22 Marc Autret <autret_m@epita.fr>
20517
20518 * src/muscle_tab.c (muscle_init): Remove initialization of
20519 skeleton muscle.
20520 * src/output.c (output_master_parser): Do it here.
20521
fbe01355
AD
205222001-11-20 Akim Demaille <akim@epita.fr>
20523
20524 * po/sv.po: New.
20525 * configure.in (ALL_LINGUAS): Adjust.
20526 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20527 longer contains strings to translate.
20528
81e895c0
AD
205292001-11-19 Akim Demaille <akim@epita.fr>
20530
20531 * src/conflicts.c (conflicts_print): Add a missing \n.
20532
6bb1878b
AD
205332001-11-19 Akim Demaille <akim@epita.fr>
20534
20535 * src/nullable.c (nullable_print): New.
20536 (set_nullable): Call it when tracing.
20537 Better locality of variables.
20538
d9ec2d07
AD
205392001-11-19 Akim Demaille <akim@epita.fr>
20540
20541 * src/print.c (print_actions): Better locality of variables.
20542
720e5c1b
AD
205432001-11-19 Akim Demaille <akim@epita.fr>
20544
20545 * src/derives.c (print_derives): Fix and enrich.
20546 * src/closure.c (print_fderives): Likewise.
20547
fb908786
AD
205482001-11-19 Akim Demaille <akim@epita.fr>
20549
20550 * src/closure.c (itemsetend): Remove, replaced with...
20551 (itemsetsize): new.
20552
125ecb56
AD
205532001-11-19 Akim Demaille <akim@epita.fr>
20554
20555 * src/LR0.c (kernel_end): Remove, replaced with...
20556 (kernel_size): new.
20557
d8cf039f
AD
205582001-11-19 Akim Demaille <akim@epita.fr>
20559
20560 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20561 to clarify.
20562
7bec0760
AD
205632001-11-19 Akim Demaille <akim@epita.fr>
20564
20565 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20566
c87d4863
AD
205672001-11-19 Akim Demaille <akim@epita.fr>
20568
20569 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20570 trace messages.
20571 * src/LR0.c: Likewise.
20572 (allocate_itemsets): Use arrays instead of pointers to clarify.
20573
9bfe901c
AD
205742001-11-19 Akim Demaille <akim@epita.fr>
20575
20576 * src/getargs.c (statistics_flag): Replace with...
20577 (trace_flag): New.
20578 (longopts): Accept --trace instead of --statistics.
20579 * src/getargs.h, src/options.c: Adjust.
20580 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20581 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20582
97db7bd4
AD
205832001-11-19 Akim Demaille <akim@epita.fr>
20584
cc72668c 20585 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
20586 pointers to clarify the code.
20587 (save_reductions, save_shifts): Factor common parts of alternatives.
20588
2c5f66ed
AD
205892001-11-19 Akim Demaille <akim@epita.fr>
20590
20591 * src/LR0.c (new_state, get_state): Complete TRACE code.
20592 * src/closure.c: Include `reader.h' to get `tags', needed by the
20593 trace code.
20594 Rename the conditional DEBUG as TRACE.
20595 Output consistently TRACEs to stderr, not stdout.
20596 * src/derives.c: Likewise.
20597 * src/reduce.c: (inaccessable_symbols): Using if is better style
20598 than goto.
20599 Use `#if TRACE' instead of `#if 0' for tracing code.
20600
300f275f
AD
206012001-11-19 Akim Demaille <akim@epita.fr>
20602
20603 * src/system.h (LIST_FREE, shortcpy): New.
20604 * src/LR0.c: Use them.
20605 * src/output.c (free_itemsets, free_reductions, free_shifts):
20606 Remove, replaced by LIST_FREE.
20607
f59c437a
AD
206082001-11-19 Akim Demaille <akim@epita.fr>
20609
20610 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20611 (REDUCTIONS_ALLOC): New.
20612 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20613 allocation.
20614
6986fd9e
AD
206152001-11-19 Akim Demaille <akim@epita.fr>
20616
20617 * src/LR0.c (new_state): Complete trace code.
20618 * src/nullable.c (set_nullable): Don't translate traces.
20619
4bc30f78
AD
206202001-11-19 Akim Demaille <akim@epita.fr>
20621
20622 * src/print_graph.c (print_core): Better locality of variables.
20623 * src/print.c (print_core): Likewise.
20624
08a946e0
AD
206252001-11-19 Akim Demaille <akim@epita.fr>
20626
20627 * src/vcg.c: You do the output, so you are responsible of the
20628 handling of VCG syntax, in particular: use quotearg.
20629 * src/print_graph.c: Don't.
20630 (print_actions): Don't output the actions as part of the nodes,
20631 since that's the job of the edges.
20632 (print_state): Don't output by hand: fill the node description,
9bfe901c 20633 and ask for its output.
08a946e0 20634
f0473484
AD
206352001-11-19 Akim Demaille <akim@epita.fr>
20636
cc72668c
AD
20637 * src/bison.simple (yyparse): When verbosely reporting an error,
20638 no longer put additional quotes around token names.
f0473484
AD
20639 * tests/calc.at: Adjust.
20640
e41dc700
AD
206412001-11-19 Akim Demaille <akim@epita.fr>
20642
20643 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20644 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20645 * src/output.c: Adjust.
20646
652a871c
AD
206472001-11-19 Akim Demaille <akim@epita.fr>
20648
20649 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20650 (rule_t): this.
20651 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20652
b2ed6e58
AD
206532001-11-19 Akim Demaille <akim@epita.fr>
20654
20655 * src/gram.h (rule_t): New.
20656 (rule_table): New.
20657 (rrhs, rlhs): Remove, part of state_t.
20658 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20659 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20660 * src/reader.c, src/reduce.c: Adjust.
20661
edad7067
AD
206622001-11-19 Akim Demaille <akim@epita.fr>
20663
20664 * src/reader.c (symbols_output): New, extracted from...
20665 (packsymbols): Here.
20666 (reader): Call it.
20667
3feec034
AD
206682001-11-19 Akim Demaille <akim@epita.fr>
20669
20670 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20671 (maxrhs): this new function.
20672
ddcd5fdf
AD
206732001-11-19 Akim Demaille <akim@epita.fr>
20674
cc72668c 20675 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
20676 Adjust.
20677
bb527fc2
AD
206782001-11-19 Akim Demaille <akim@epita.fr>
20679
cc72668c 20680 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
20681 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20682 * src/lalr.c: Adjust.
20683
a845a697
AD
206842001-11-19 Akim Demaille <akim@epita.fr>
20685
20686 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20687 (set_state_table): handle the `lookaheads' members.
20688
f004bf6a
AD
206892001-11-19 Akim Demaille <akim@epita.fr>
20690
cc72668c
AD
20691 * src/lalr.h (lookaheads): Removed array, whose contents is now
20692 a member of...
f004bf6a
AD
20693 (state_t): this structure.
20694 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20695 Adjust.
20696
de326cc0
AD
206972001-11-19 Akim Demaille <akim@epita.fr>
20698
cc72668c
AD
20699 * src/lalr.h (consistent): Removed array, whose contents is now
20700 a member of...
de326cc0
AD
20701 (state_t): this structure.
20702 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20703 Adjust.
20704
90b4416b
AD
207052001-11-19 Akim Demaille <akim@epita.fr>
20706
cc72668c
AD
20707 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20708 contents are now members of...
90b4416b
AD
20709 (state_t): this structure.
20710 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20711 Adjust.
20712
9703cc49
AD
207132001-11-19 Akim Demaille <akim@epita.fr>
20714
20715 * src/lalr.h (state_t): New.
20716 (state_table): Be a state_t * instead of a core **.
20717 (accessing_symbol): Remove, part of state_t.
20718 * src/lalr.c: Adjust.
20719 (set_accessing_symbol): Merge into...
20720 (set_state_table): this.
20721 * src/print_graph.c, src/conflicts.c: Adjust.
20722
d803322e
AD
207232001-11-14 Akim Demaille <akim@epita.fr>
20724
20725 * tests/calc.at, tests/output.at, tests/regression.at,
20726 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20727 now the tests are run in private dirs, therefore AC_CLEANUP and
20728 family can be simplified to 0-ary.
20729 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20730 use abs. path to find config.h.
20731 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20732 stderr, there can be way too much random noise.
20733 Instead pass -Werror to GCC and rely on the exit status.
20734 Reported by Wolfram Wagner.
20735
3d76b07d
AD
207362001-11-14 Akim Demaille <akim@epita.fr>
20737
20738 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20739 defined only if yyoverflow is defined, to avoid `warning: unused
20740 variable `yyvs1''.
20741 Reported by The Test Suite.
20742
09b503c8
AD
207432001-11-14 Akim Demaille <akim@epita.fr>
20744
20745 * src/print.c: Include reduce.h.
20746 Reported by Hans Aberg.
20747
207482001-11-14 Akim Demaille <akim@epita.fr>
20749
20750 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20751 Revert a previous patch: these are really const.
20752 * src/conflicts.c (conflict_report): Additional useless pair of
20753 braces to pacify GCC's warnings for `if () if () {} else {}'.
20754 * src/lex.c (parse_percent_token): Replace equal_offset with
20755 arg_offset.
20756 arg is const.
20757 Be sure to strdup `arg' when used, since there is no reason for
20758 token_buffer not to change.
20759
0f37a994
AD
207602001-11-14 Akim Demaille <akim@epita.fr>
20761
20762 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20763 definition.
20764 * src/main.c (main): Use them.
20765 Suggested by Hans Aberg.
20766
d39d93b8
AD
207672001-11-12 Akim Demaille <akim@epita.fr>
20768
20769 * src/system.h (ngettext): Now that we use ngettext, be sure to
20770 provide a default definition when NLS are not used.
20771
9edcd895
AD
207722001-11-12 Akim Demaille <akim@epita.fr>
20773
20774 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20775 Use @kbd to denote user input.
20776 (Language and Grammar): ANSIfy the example.
20777 Adjust its layout for info/notinfo.
20778 (Location Tracking Calc): Output error messages to stderr.
20779 Output locations in a more GNUtically correct way.
20780 Fix a couple of Englishos.
20781 Adjust @group/@end group pairs.
20782
7da99ede
AD
207832001-11-12 Akim Demaille <akim@epita.fr>
20784
e3aa65c5 20785 %expect was not functioning at all.
7da99ede
AD
20786
20787 * src/conflicts.c (expected_conflicts): Set to -1.
20788 (conflict_report): Use ngettext.
20789 (conflicts_print): Check %expect and make its violation an error.
20790 * doc/bison.texinfo (Expect Decl): Adjust.
20791 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20792 * tests/regression.at (%expect not enough, %expect right)
20793 (%expect too much): New.
20794
ba9dda1a
AD
207952001-11-12 Akim Demaille <akim@epita.fr>
20796
20797 * tests/regression.at (Conflicts): Rename as...
20798 (Unresolved SR Conflicts): this.
20799 (Solved SR Conflicts): New.
20800
337c5bd1
AD
208012001-11-12 Akim Demaille <akim@epita.fr>
20802
20803 * src/reduce.c (print_results): Rename as...
20804 (reduce_output): This.
20805 Output to OUT, passed as argument, instead of output_obstack.
20806 (dump_grammar): Likewise.
20807 (reduce_free): New.
20808 Also free V1.
20809 (reduce_grammar): No longer call reduce_output, since...
20810 * src/print.c (print_results): do it.
20811 * src/main.c (main): Call reduce_free;
20812
c73a41af
AD
208132001-11-12 Akim Demaille <akim@epita.fr>
20814
20815 * src/conflicts.c (print_reductions): Accept OUT as argument.
20816 Output to it, not to output_obstack.
20817 * src/print.c (print_actions): Adjust.
20818
0df87bb6
AD
208192001-11-12 Akim Demaille <akim@epita.fr>
20820
20821 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20822 the result instead of using...
20823 (src_total, rrc_total, src_count, rrc_count): Remove.
20824 (any_conflicts): Remove.
20825 (print_conflicts): Split into...
20826 (conflicts_print, conflicts_output): New.
20827 * src/conflicts.h: Adjust.
20828 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 20829 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
20830 * tests/regression.at (Conflicts): New.
20831 Reported by Tom Lane.
20832
e4d3d4de
AD
208332001-11-12 Akim Demaille <akim@epita.fr>
20834
20835 * tests/regression.at (Invalid input): Remove, duplicate with
20836 ``Invalid input: 1''.
20837
6d7d248e
AD
208382001-11-12 Akim Demaille <akim@epita.fr>
20839
20840 * tests/torture.at (AT_DATA_STACK_TORTURE)
20841 (Exploding the Stack Size with Alloca)
20842 (Exploding the Stack Size with Malloc): New.
20843
e9e4c321
AD
208442001-11-12 Akim Demaille <akim@epita.fr>
20845
20846 * src/bison.simple (YYSTACK_REALLOC): New.
20847 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 20848 Reported by Per Allansson.
e9e4c321 20849
5f7e0832
AD
208502001-11-12 Pascal Bart <pascal.bart@epita.fr>
20851
20852 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20853 define CPP macro, which substitute YYSTYPE by yystype.
20854 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20855 with yyltype/YYLTYPE. This allows inclusion of the generated
20856 header within the parser if the compiler, such as GGC, accepts
20857 multiple equivalent #defines.
20858 From Akim.
20859
e3f1699f
AD
208602001-11-05 Akim Demaille <akim@epita.fr>
20861
20862 * src/reader.c (symbols_output): New, extracted from...
20863 (packsymbols): here.
20864 (reader): Adjust.
20865
65be0866
AD
208662001-11-05 Akim Demaille <akim@epita.fr>
20867
20868 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20869
e4d910bf
AD
208702001-11-05 Akim Demaille <akim@epita.fr>
20871
20872 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20873 pattern.
20874
951366c1
AD
208752001-11-05 Akim Demaille <akim@epita.fr>
20876
20877 * src/options.h (struct option_table_struct): set_flags is void*.
20878 * src/options.c (longopts): Support `--output' and `%output'.
20879 (usage): Adjust.
20880 * src/lex.h (tok_setopt): Remove, replaced with...
20881 (tok_intopt, tok_stropt): these new guys.
20882 * src/lex.c (getopt.h): Not needed.
20883 (token_buffer, unlexed_token_buffer): Not const.
20884 (percent_table): Promote `-' over `_' in directive names.
20885 Active `%name-prefix', `file-prefix', and `output'.
20886 (parse_percent_token): Accept possible arguments to directives.
20887 Promote `-' over `_' in directive names.
20888
d8988b2f
AD
208892001-11-04 Akim Demaille <akim@epita.fr>
20890
20891 * doc/bison.texinfo (Decl Summary): Split the list into
20892 `directives for grammars' and `directives for bison'.
20893 Sort'em.
20894 Add description of `%name-prefix', `file-prefix', and `output'.
20895 Promote `-' over `_' in directive names.
20896 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20897 Simplify the description of `--name-prefix'.
20898 Promote `-' over `_' in directive names.
20899 Promote `--output' over `--output-file'.
20900 Fix the description of `--defines'.
20901 * tests/output.at: Exercise %file-prefix and %output.
20902
6468d18e
AD
209032001-11-02 Akim Demaille <akim@epita.fr>
20904
20905 * doc/refcard.tex: Update.
20906
6b7e85b9
AD
209072001-11-02 Akim Demaille <akim@epita.fr>
20908
20909 * src/symtab.h (SUNDEF): New.
20910 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20911 stand for `uninitialized', instead of 0.
20912 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20913 * src/lex.c (lex): Adjust.
20914
20915 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20916 Number it 0.
20917 Let yylex return it instead of a plain 0.
20918 Reported by Dick Streefland.
20919
cd5aafcf
AD
209202001-11-02 Akim Demaille <akim@epita.fr>
20921
20922 * tests/regression.at (Mixing %token styles): New test.
20923
037ca2f1
AD
209242001-11-02 Akim Demaille <akim@epita.fr>
20925
20926 * src/reader.c (parse_thong_decl): Formatting changes.
20927 (token_translations_init): New, extracted from...
20928 (packsymbols): Here.
20929 Adjust.
20930
270a173c
AD
209312001-11-01 Akim Demaille <akim@epita.fr>
20932
20933 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20934 Check that `9foo.y' produces correct cpp guards.
20935 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20936 guards.
20937 Reported by Wwp.
20938
561f9a30
AD
209392001-11-01 Akim Demaille <akim@epita.fr>
20940
20941 * tests/regression.at (Invalid input: 2): New.
20942 * src/lex.c (unlexed_token_buffer): New.
20943 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20944 too.
20945 Reported by Wwp.
20946
f987e9d2
AD
209472001-11-01 Akim Demaille <akim@epita.fr>
20948
20949 * tests/calc.at: Catch up with 1.30.
20950 * configure.in: Bump to 1.49a.
20951 Adjust to newer Autotest.
20952
0846f581
PB
209532001-10-19 Pascal Bart <pascal.bart@epita.fr>
20954
20955 * src/conflicts.c: Move global variables rrc_total and src_total ...
20956 (print_conflicts): here.
20957 * src/output.c (output): Free global variable user_toknums.
20958 * src/lex.c (token_obstack): Become static.
20959
3c1a79b3
AD
209602001-10-18 Akim Demaille <akim@epita.fr>
20961
20962 * tests/atlocal.in (GCC): Add.
20963 * tests/calc.at: s/m4_match/m4_bmatch/.
20964 s/m4_patsubst/m4_bpatsubst/.
20965 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20966 * configure.in: AC_SUBST(GCC).
20967
5d52e7d0
MA
209682001-10-14 Marc Autret <autret_m@epita.fr>
20969
20970 * src/options.c (create_long_option_table): Fix.
20971
631aa1d3
AD
209722001-10-10 Akim Demaille <akim@epita.fr>
20973
20974 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20975
f6ec6d13
AD
209762001-10-04 Akim Demaille <akim@epita.fr>
20977
20978 * src/reader.c (parse_union_decl): Push the caracters in
20979 union_obstack, not attrs_obstack.
20980
342b8b6e
AD
209812001-10-04 Akim Demaille <akim@epita.fr>
20982
20983 Merge in the branch 1.29.
20984
20985 * src/reader.c (packsymbols): Use a temporary obstack for
20986 `%%tokendef', since output_stack is already used elsewhere.
20987
20988 2001-10-02 Akim Demaille <akim@epita.fr>
20989
20990 Bump 1.29d.
20991
20992 2001-10-02 Akim Demaille <akim@epita.fr>
20993
20994 Version 1.29c.
20995
20996 2001-10-02 Akim Demaille <akim@epita.fr>
20997
20998 * tests/regression.at (Invalid CPP headers): New.
20999 From Alexander Belopolsky.
21000 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21001
21002 2001-10-02 Akim Demaille <akim@epita.fr>
21003
21004 * tests/regression.at (Invalid input): New.
21005 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21006 Reported by Shura.
21007
21008 2001-10-02 Akim Demaille <akim@epita.fr>
21009
21010 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21011
21012 2001-10-02 Akim Demaille <akim@epita.fr>
21013
21014 * src/output.c (output_parser): Assert `skeleton'.
21015 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21016 systems.
21017 From Shura.
21018
21019 2001-10-01 Marc Autret <autret_m@epita.fr>
21020
21021 * src/lex.h: Echo modifications.
21022 * src/lex.c (unlex): Parameter is now token_t.
21023 From Hans Aberg.
21024
21025 2001-10-01 Marc Autret <autret_m@epita.fr>
21026
21027 * src/main.c: Include lex.h.
21028 From Hans Aberg.
21029
21030 2001-09-29 Akim Demaille <akim@epita.fr>
21031
21032 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21033
21034 2001-09-28 Akim Demaille <akim@epita.fr>
21035
21036 * tests/testsuite.at: Update to newer Autotest.
21037 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21038
21039 2001-09-27 Akim Demaille <akim@epita.fr>
21040
21041 Position independent wrapper.
21042
21043 * tests/bison: Remove.
21044 * tests/bison.in: New.
21045 * configure.in: Adjust.
21046
21047 2001-09-27 Paul Eggert <eggert@twinsun.com>
21048
21049 Port quotearg fixes from tar 1.13.24.
21050
21051 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21052 tm to be declared.
21053 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21054 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21055
21056 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21057 * m4/mbrtowc.m4: New file.
21058 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21059 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21060
21061 2001-09-27 Akim Demaille <akim@epita.fr>
21062
21063 Bump to 1.29c.
21064
21065 2001-09-27 Akim Demaille <akim@epita.fr>
21066
21067 Version 1.29b.
21068
21069 2001-09-25 Akim Demaille <akim@epita.fr>
21070
21071 * src/system.h: Include `xalloc.h'.
21072 Remove it from the C files.
21073 * src/files.c (output_files): Free the obstacks.
21074 * src/lex.c (init_lex): Rename as...
21075 (lex_init): this.
21076 (lex_free): New.
21077 * src/main.c (main): Use it.
21078
21079 2001-09-24 Marc Autret <autret_m@epita.fr>
21080
21081 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21082 to output informations in fout (FILE*).
21083 (open_graph, close_graph): Likewise.
21084 (output_graph, output_edge, output_node): Likewise.
21085 * src/vcg.h: Update function prototypes.
21086 * src/print_graph.c (print_graph): Open output graph file.
21087 (print_actions): Adjust.
21088 * src/files.h: Remove extern declaration.
21089 * src/files.c: Remove graph_obstack declaration.
21090 (open_files): Remove graph_obstack initialization.
21091 (output_files): Remove graph_obstack saving.
21092
21093 2001-09-24 Marc Autret <autret_m@epita.fr>
21094
21095 * src/files.c (compute_output_file_names): Fix.
21096
21097 2001-09-24 Marc Autret <autret_m@epita.fr>,
21098 Akim Demaille <akim@epita.fr>
21099
21100 * src/reader.c (reader): Remove call to free_symtab ().
21101 * src/main.c (main): Call it here.
21102 Include symtab.h.
21103 * src/conflicts.c (initialize_conflicts): Rename as...
21104 (solve_conflicts): this.
21105 * src/print.c (print_core, print_actions, print_state)
21106 (print_grammar): Dump to a file instead a `output_obstack'.
21107 (print_results): Dump `output_obstack', and then proceed with the
21108 FILE *.
21109 * src/files.c (compute_output_file_names, close_files): New.
21110 (output_files): Adjust.
21111 * src/main.c (main): Adjust.
21112
21113 2001-09-23 Marc Autret <autret_m@epita.fr>
21114
21115 * src/files.c (compute_header_macro): Computes header macro name
21116 from spec_defines_file when given.
21117
21118 2001-09-23 Marc Autret <autret_m@epita.fr>
21119
21120 * src/files.c (output_files): Add default extensions.
21121
21122 2001-09-22 Akim Demaille <akim@epita.fr>
21123
21124 * src/conflicts.c (finalize_conflicts): Rename as...
21125 (free_conflicts): this.
21126
21127 2001-09-22 Akim Demaille <akim@epita.fr>
21128
21129 * src/gram.c (gram_free): Rename back as...
21130 (dummy): this.
21131 (output_token_translations): Free `token_translations'.
21132 * src/symtab.c (free_symtab): Free the tag field.
21133
21134 2001-09-22 Akim Demaille <akim@epita.fr>
21135
21136 Remove `translations' as it is always set to true.
21137
21138 * src/gram.h: Adjust.
21139 * src/reader.c (packsymbols, parse_token_decl): Adjust
21140 * src/print.c (print_grammar): Adjust.
21141 * src/output.c (output_token_translations): Adjust.
21142 * src/lex.c (lex): Adjust.
21143 * src/gram.c: Be sure the set pointers to NULL.
21144 (dummy): Rename as...
21145 (gram_free): this.
21146
21147 2001-09-22 Akim Demaille <akim@epita.fr>
21148
21149 * configure.in: Invoke AM_LIB_DMALLOC.
21150 * src/system.h: Use dmalloc.
21151 * src/LR0.c: Be sure to have pointers initialized to NULL.
21152 (allocate_itemsets): Allocate kernel_items only if needed.
21153
21154 2001-09-22 Akim Demaille <akim@epita.fr>
21155
21156 * configure.in: Bump to 1.29b.
21157 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21158 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21159 need xmalloc.c in calc.y.
21160 From Pascal Bart.
21161
21162 2001-09-21 Akim Demaille <akim@epita.fr>
21163
21164 Version 1.29a.
21165 * Makefile.maint, config/config.guess, config/config.sub,
21166 * config/missing: Update from masters.
21167 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21168 upon package.m4.
21169 * configure.in (ALL_LINGUAS): Add `tr'.
21170
21171 2001-09-21 Akim Demaille <akim@epita.fr>
21172
21173 * tests/Makefile.am (package.m4): Move to...
21174 ($(srcdir)/$(TESTSUITE)): here.
21175
21176 2001-09-20 Akim Demaille <akim@epita.fr>
21177
21178 * src/complain.c: No longer try to be standalone: use system.h.
21179 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21180 * src/complain.h: Likewise.
21181 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21182 Remove the unused variable `n'.
21183 From Albert Chin-A-Young.
21184
21185 2001-09-18 Marc Autret <autret_m@epita.fr>
21186
21187 * doc/bison.1: Update.
21188 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21189 descriptions.
21190 (Option Cross Key): Update.
21191 Add --graph.
21192
21193 2001-09-18 Marc Autret <autret_m@epita.fr>
21194
21195 * tests/regression.at: New test (comment in %union).
21196
21197 2001-09-18 Marc Autret <autret_m@epita.fr>
21198
21199 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21200 do that.
21201 Reported by Keith Browne.
21202
21203 2001-09-18 Marc Autret <autret_m@epita.fr>
21204
21205 * tests/output.at: Add tests for --defines and --graph.
21206
21207 2001-09-18 Marc Autret <autret_m@epita.fr>
21208
21209 * tests/output.at: Removes tests of %{header,src}_extension features.
21210
21211 2001-09-18 Akim Demaille <akim@epita.fr>
21212
21213 * tests/Makefile.am (package.m4): New.
21214 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21215 (_AT_CHECK_CALC_ERROR): Likewise.
21216 Factor the `, ' part of verbose error messages.
21217
21218 2001-09-18 Marc Autret <autret_m@epita.fr>
21219
21220 * src/getargs.c (longopts): Declare --defines and --graph as options
21221 with optional arguments.
21222 * src/files.h: Add extern declarations.
21223 * src/files.c (spec_graph_file, spec_defines_file): New.
21224 (output_files): Update.
21225 Remove CPP-outed code.
21226
21227 2001-09-18 Marc Autret <autret_m@epita.fr>
21228
21229 Turn off %{source,header}_extension feature.
21230
21231 * src/files.c (compute_exts_from_gf): Update.
21232 (compute_exts_from_src): Update.
21233 (output_files): CPP-out useless code.
21234 * src/files.h: Remove {header,source}_extension extern declarations.
21235 * src/reader.c (parse_dquoted_param): CPP-out.
21236 (parse_header_extension_decl): Remove.
21237 (parse_source_extension_decl): Remove.
21238 (read_declarations): Remove cases tok_{hdrext,srcext}.
21239 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21240 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21241
21242 2001-09-10 Akim Demaille <akim@epita.fr>
21243
21244 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21245 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21246 (AT_CHECK_OUTPUT): this.
21247 Merely check ls' exit status, its output is useless.
21248
21249 2001-09-10 Akim Demaille <akim@epita.fr>
21250
21251 * tests/calc.at: Use m4_match.
21252 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21253
21254 2001-09-10 Marc Autret <autret_m@epita.fr>,
21255 Akim Demaille <akim@epita.fr>
21256
21257 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21258 enum color_e.
21259 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21260 to `normal'.
21261 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21262 * src/lex.h: Adjust prototype.
21263 (token_t): Add `tok_undef'.
21264 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21265 (parse_percent_token): Now returns token_t.
21266 Add default statement in switch.
21267 (lex): Separate `c' as an input variable, from the token_t result
21268 part.
21269 (unlexed): Is a token_t.
21270
21271 2001-09-10 Akim Demaille <akim@epita.fr>
21272
21273 * configure.in: Bump to 1.29a.
21274
21275 2001-09-07 Akim Demaille <akim@epita.fr>
21276
21277 Version 1.29.
21278
21279 2001-08-30 Akim Demaille <akim@epita.fr>
21280
21281 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21282 * m4/atconfig.m4: Remove.
21283 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21284 * tests/bison: New.
21285 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21286 m4_if, m4_patsubst, and m4_regexp.
21287 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21288 `input' file instead of echo.
21289
21290 2001-08-29 Akim Demaille <akim@epita.fr>
21291
21292 Bump to 1.28e.
21293
21294 2001-08-29 Akim Demaille <akim@epita.fr>
21295
21296 Version 1.28d.
21297
21298 2001-08-29 Paul Eggert <eggert@twinsun.com>
21299
21300 * src/bison.simple (yyparse): Don't take the address of an
21301 item before the start of an array, as that doesn't conform to
21302 the C Standard.
21303
21304 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21305
21306 * doc/bison.texinfo (Location Tracking Calc): New node.
21307
21308 2001-08-29 Paul Eggert <eggert@twinsun.com>
21309
21310 * src/output.c (output): Do not define const, as this now
21311 causes more problems than it cures.
21312
21313 2001-08-29 Akim Demaille <akim@epita.fr>
21314
21315 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21316 the nodes.
21317 Be sure to tag the `detailmenu'.
21318
21319 2001-08-29 Akim Demaille <akim@epita.fr>
21320
21321 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
21322 download in a tmp dir.
21323
21324 2001-08-28 Marc Autret <autret_m@epita.fr>
21325
21326 * config/depcomp: New file.
21327
21328 2001-08-28 Marc Autret <autret_m@epita.fr>
21329
21330 * doc/bison.1 (mandoc): Adjust.
21331 From Juan Manuel Guerrero.
21332
21333 2001-08-28 Marc Autret <autret_m@epita.fr>
21334
21335 * src/print_graph.c (print_state): Fix.
21336
21337 2001-08-27 Marc Autret <autret_m@epita.fr>
21338
21339 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
21340 char * members.
21341 Echo modifications to the functions prototypes.
21342 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
21343
21344 2001-08-27 Marc Autret <autret_m@epita.fr>
21345
21346 * src/vcg.c: Include `xalloc.h'.
21347 (add_colorentry): New.
21348 (add_classname): New.
21349 (add_infoname): New.
21350 * src/vcg.h: Add new prototypes.
21351
21352 2001-08-27 Akim Demaille <akim@epita.fr>
21353
21354 * Makefile.maint: Sync. again with CVS Autoconf.
21355
21356 2001-08-27 Akim Demaille <akim@epita.fr>
21357
21358 * Makefile.maint: Formatting changes.
21359 (po-update, cvs-update, update): New targets.
21360 (AMTAR): Remove.
21361
21362 2001-08-27 Akim Demaille <akim@epita.fr>
21363
21364 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21365 * Makefile.maint: Sync. with CVS Autoconf.
21366
21367 2001-08-27 Marc Autret <autret_m@epita.fr>
21368
21369 * src/vcg.h (struct infoname_s): New.
21370 (struct colorentry_s): New.
21371 (graph_s): New fields {vertical,horizontal}_order in structure.
21372 Add `infoname' field.
21373 Add `colorentry' field;
21374 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
21375 (G_HORIZONTAL_ORDER): New.
21376 (G_INFONAME): New.
21377 (G_COLORENTRY): New.
21378 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
21379 Add output of `infoname'.
21380 Add output of `colorentry'.
21381
21382 2001-08-27 Marc Autret <autret_m@epita.fr>
21383
21384 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
21385 This one shadowed a global parameter.
21386
21387 2001-08-24 Marc Autret <autret_m@epita.fr>
21388
21389 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
21390 instead of `unsigned'.
21391 (print_state): Do not call obstack_object_size () in obstack_grow ()
21392 to avoid macro variables shadowing.
21393
21394 2001-08-23 Marc Autret <autret_m@epita.fr>
21395
21396 * src/lex.c (percent_table): Typo: s/naem/name/.
21397 Add graph option.
21398 Normalize new options declarations.
21399
21400 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21401
21402 * tests/suite.at: Exercise %header_extension and %source_extension.
21403
21404 2001-08-16 Marc Autret <autret_m@epita.fr>
21405
21406 * src/reader.c (parse_dquoted_param): New.
21407 (parse_header_extension_decl): Use it.
21408 (parse_source_extension_decl): Likewise.
21409
21410 2001-08-16 Marc Autret <autret_m@epita.fr>
21411
21412 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21413 (get_xxxx_str): Use assert () instead of complain ().
21414 Remove return invokations in default cases.
21415 (get_decision_str): Modify default behaviour. Remove second argument.
21416 Echo modifications on calls.
21417 (output_graph): Fix.
21418
21419 2001-08-16 Marc Autret <autret_m@epita.fr>
21420
21421 * src/getargs.c (usage): Update with ``-g, --graph''.
21422
21423 2001-08-16 Marc Autret <autret_m@epita.fr>
21424
21425 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21426 (Option Cross Key): Likewise.
21427 * doc/bison.1: Update.
21428
1c8c2190
PB
214292001-09-25 Pascal Bart <pascal.bart@epita.fr>
21430
21431 * src/output.c (output_master_parser): Don't finish action_obstack.
21432 (output_parser): Don't care about the muscle action, here.
21433 (prepare): Copy the action_obstack in the action muscle.
21434 (output): Free action_obstack.
21435
180d45ba
PB
214362001-09-23 Pascal Bart <pascal.bart@epita.fr>
21437
21438 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21439 will contain `%union' declaration.
21440 (parse_union_decl): Delete #line directive output.
21441 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21442 informations about %union.
21443 (parse_union_decl): Copy the union_obstack in the muscle stype.
21444 * src/bison.simple: Add new #line directive.
21445 Add typdef %%stype YYSTYPE.
21446
c51d1a19
PB
214472001-09-23 Pascal Bart <pascal.bart@epita.fr>
21448
21449 * src/bison.simple: Add new `#line' directive.
21450
6f9344da
PB
214512001-09-22 Pascal Bart <pascal.bart@epita.fr>
21452
21453 * src/bison.simple: New `#line' directive.
21454 * src/output.c (output_parser): Support new dynamic muscle input_line.
21455
652def80
MA
214562001-09-22 Marc Autret <autret_m@epita.fr>
21457
21458 * src/output.c (output_master_parser): New.
21459 (output_parser): Be more re-entrant.
21460
25b222fa
MA
214612001-09-21 Marc Autret <autret_m@epita.fr>
21462
21463 * src/reader.c (copy_definition, parse_union_decl): Update and use
21464 `linef' muscle.
21465 (copy_action): Likewise.
21466 Use obstack_1grow ().
21467 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21468
6bc35ae5
MA
214692001-09-21 Marc Autret <autret_m@epita.fr>
21470
21471 * src/options.c (option_table): Adjust.
21472 * src/lex.c (parse_percent_token): Fix.
21473
c0629aa1
PB
214742001-09-20 Pascal Bart <pascal.bart@epita.fr>
21475
21476 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 21477
82b6d266
PB
214782001-09-20 Pascal Bart <pascal.bart@epita.fr>
21479
21480 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21481 is now an option_table_struct*.
21482 (option_strcmp): New function option_strcmp.
21483 (parse_percent_token): Call option_strcmp.
21484 * src/getargs.c (xalloc.h, options.h): Include it.
21485 (getargs): Call create_long_option_table.
21486 (getargs): Free longopts at the end of the function.
21487 (shortopts): Move in options.c.
21488 * src/options.c (create_long_option_table): New function. Convert
21489 information from option_table to option structure.
21490 * src/reader.c (options.h): Include it.
21491
21492 * src/Makefile.am: Adjust.
21493 * src/options.c (option_table): Create from longopts and percent_table.
21494 * src/getargs.c (longopts): Delete.
21495 * src/lex.c (struct percent_table_struct): Delete.
21496 (percent_table): Delete.
21497 (options.h): Include it.
21498 * src/options.c: Create.
21499 * src/options.h: Create.
21500 Declare enum opt_access_e.
21501 Define struct option_table_struct.
21502
75f5aaea
MA
215032001-09-20 Marc Autret <autret_m@epita.fr>
21504
21505 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21506 sections of Bison.
21507
f508cb0a
PB
215082001-09-19 Pascal Bart <pascal.bart@epita.fr>
21509
21510 * src/bison.simple: s/%%filename/%%skeleton.
21511 * src/muscle_tab.c (getargs.h): Include it.
21512 (muscle_init): Insert new muscle skeleton.
21513
13105fc1
PB
215142001-09-18 Pascal Bart <pascal.bart@epita.fr>
21515
21516 * src/output.c (output_parser): Delete unused variable actions_dumped.
21517
b0c4483e
PB
215182001-09-07 Pascal Bart <pascal.bart@epita.fr>
21519
21520 * src/output.c (output): Delete call to reader_output_yylsp.
21521 * src/reader.c (reader): Likewise.
ba0fe3c7 21522 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 21523
11d82f03
MA
215242001-09-02 Marc Autret <autret_m@epita.fr>
21525
21526 * src/reader.c: Include muscle_tab.h.
21527 (parse_union_decl): Update.
21528 (parse_macro_decl): Rename parse_muscle_decl.
21529 Update to use renamed functions and variable.
21530 (read_declarations, copy_action, read_additionnal_code, : Updated
21531 with correct variables and functions names.
21532 (packsymbols, reader): Likewise.
342b8b6e 21533
11d82f03 21534 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 21535
11d82f03
MA
21536 * src/output.c: Include muscle_tab.h
21537 In all functions using macro_insert, change by using muscle_insert ().
21538 (macro_obstack): Rename muscle_obstack.
21539 Echo modifications in the whole file.
21540 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21541 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21542 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21543
21544 * src/muscle_tab.h: Update double inclusion macros.
21545 (macro_entry_s): Rename muscle_entry_s.
21546 Update prototypes.
342b8b6e 21547
11d82f03
MA
21548 * src/muscle_tab.c: Include muscle_tab.h.
21549 Rename macro_tabble to muscle_table.
21550 (mhash1, mhash2, mcmp): Use muscle_entry.
21551 (macro_init): Rename muscle_init. Update.
21552 (macro_insert): Rename muscle_insert. Update.
21553 (macro_find): Rename muscle_find. Update.
21554
21555 * src/main.c: Include muscle_tab.h.
21556 (main): Call muscle_init ().
21557 * src/Makefile.am (bison_SOURCES): Echo modifications.
21558
93a37297
MA
215592001-09-02 Marc Autret <autret_m@epita.fr>
21560
f753cd62 21561 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 21562
f753cd62
MA
21563 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21564
215652001-09-02 Marc Autret <autret_m@epita.fr>
21566
21567 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 21568
682d48cd
PB
215692001-09-01 Pascal Bart <pascal.bart@epita.fr>
21570
342b8b6e 21571 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
21572 filename.
21573
087c8fda
MA
215742001-09-01 Marc Autret <autret_m@epita.fr>
21575
21576 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21577 to an explicit value to activate the feature. We do it here.
21578
dda680cb
PB
215792001-08-31 Pascal Bart <pascal.bart@epita.fr>
21580
21581 * src/output.c (prepare): Delete the `filename' muscule insertion.
21582 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21583 (parse_union_decl): Likewise.
21584 * src/macrotab.c (macro_init): Initialize filename by infile.
21585
9e644e64
MA
215862001-08-31 Marc Autret <autret_m@epita.fr>
21587
21588 * src/bison.simple (YYLSP_NEEDED): New definition.
21589 * src/output.c (prepare): Add macro insertion of `locations_flag'
21590
17da6427
PB
215912001-08-31 Pascal Bart <pascal.bart@epita.fr>
21592
21593 * src/output.c (prepare): Delete insertion of previous muscles,
21594 and insert the `prefix' muscles.
21595 * src/macrotab.c (macro_init): Likewise.
21596 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 21597 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
21598 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21599 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 21600 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
21601 name_prefix.
21602
e8cb70b9
PB
216032001-08-31 Pascal Bart <pascal.bart@epita.fr>
21604
21605 * src/main.c (main): Standardize.
21606 * src/output.c (output_table_data, output_parser): Likewise.
21607 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21608
63c2d5de
MA
216092001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21610
342b8b6e 21611 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
21612 %%epilogue.
21613 * src/output.c (output): Rename %%declarations to %%prologue.
21614 * src/bison.simple: Echo modifications.
342b8b6e 21615
d8cb5183
MA
216162001-08-31 Marc Autret <autret_m@epita.fr>
21617
21618 * src/reader.c (readgram): CleanUp.
21619 (output_token_defines): Likewise.
21620 (packsymbols): Likewise.
21621 (reader): Likewise.
21622 * src/output.c (output): CPP-out useless code.
21623
6c686258
PB
216242001-08-31 Pascal Bart <pascal.bart@epita.fr>
21625
342b8b6e 21626 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
21627 output_trailers and output_headers.
21628 * src/output.h: Remove obsolete functions prototypes of output_headers
21629 and output_trailers.
21630
8f451ef7
PB
216312001-08-30 Pascal Bart <pascal.bart@epita.fr>
21632
21633 * src/main.c: Include macrotab.h.
342b8b6e 21634 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
21635 Adjust functions prototypes.
21636 * src/macrotab.c (macro_insert): Constify key and value.
21637 (macro_find): Constify key.
21638 (macro_insert): Include 'xalloc.h'
21639 (macro_insert): Use XMALLOC.
21640 (macro_find): Constify return value.
21641 * src/output.c (output_table_data): Rename table to table_data.
21642 (output_parser): Constify macro_key, macro_value.
21643
997b6fd0 216442001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
21645
21646 * src/reader.c (parse_skel_decl): New.
342b8b6e 21647 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
21648 * src/lex.h (token_t): New token `tok_skel'.
21649 * src/lex.c (percent_table): Add skeleton option entry.
21650 Standardize.
21651
ff48177d
MA
216522001-08-29 Marc Autret <autret_m@epita.fr>
21653
21654 * src/bison.simple: Add %%user_code directive at the end.
21655 * src/reader.c (read_additionnal_code): New.
21656 (reader): Use it.
21657 * src/output.c (output_program): Remove.
21658 (output): Update.
21659
b33160bf
MA
216602001-08-28 Marc Autret <autret_m@epita.fr>
21661
21662 * src/output.c (output_actions): Clean up.
4e5caae2 21663 (output_gram): CPP-out useless code.
b33160bf
MA
21664 * src/reader.c (reader): Clean up, CPP-out useless code.
21665
d1a2daf7
PB
216662001-08-28 Pascal Bart <pascal.bart@epita.fr>
21667
342b8b6e 21668 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 21669 directive.
d1a2daf7
PB
21670 * src/bison.simple: Add `%%definitions'.
21671
2b763dfe
MA
216722001-08-28 Marc Autret <autret_m@epita.fr>
21673
21674 * config/depcomp: New file.
21675
f1a87ef6
PE
216762001-08-27 Paul Eggert <eggert@twinsun.com>
21677
21678 * src/bison.simple (yyparse): Don't take the address of an
21679 item before the start of an array, as that doesn't conform to
21680 the C Standard.
21681
82e236e2
RA
216822001-08-27 Robert Anisko <robert.anisko@epita.fr>
21683
f1a87ef6 21684 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
21685 obstack. It was done too late here.
21686
21687 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21688 completely wrong.
21689 (reader): Initialize the macro obstack here, since we need it to grow
21690 '%define' directives.
21691
21692 * src/reader.h: Declare the macro obstack as extern.
21693
b0cfa28a
RA
216942001-08-27 Robert Anisko <robert.anisko@epita.fr>
21695
21696 * src/output.c (output_parser): Fix. Store single '%' characters in
21697 the output obstack instead of throwing them away.
21698
6fc74234
AD
216992001-08-27 Akim Demaille <akim@epita.fr>
21700
21701 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21702
9c76d118
RA
217032001-08-25 Robert Anisko <robert.anisko@epita.fr>
21704
21705 * lib/Makefile.am: Adjust.
21706
a8289c62
RA
217072001-08-25 Robert Anisko <robert.anisko@epita.fr>
21708
21709 * src/bison.simple: Update and add '%%' directives.
21710
b6610515
RA
217112001-08-25 Robert Anisko <robert.anisko@epita.fr>
21712
21713 * src/reader.c (reader): Remove calls to 'output_headers' and
21714 'output_trailers'. Remove some C output.
21715 (readgram): Disable a piece of code that was writing a default
21716 definition for 'YYSTYPE'.
21717 (reader_output_yylsp): Remove.
21718 (packsymbols): Output token defintions to a macro.
21719 (copy_definition): Disable C output.
6fc74234 21720
b6610515
RA
21721 * src/reader.c (parse_macro_decl): New function used to parse macro
21722 declarations.
21723 (copy_string2): Put the body of copy_string into this new function.
21724 Add a parameter to let the caller choose whether he wants to copy the
21725 string delimiters or not.
21726 (copy_string): Be a simple call to copy_string2 with the last argument
21727 bound to true.
21728 (read_declarations): Add case for macro definition.
21729 (copy_identifier): New.
6fc74234 21730 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
21731 rather than lex.
21732
26f609ff
RA
217332001-08-25 Robert Anisko <robert.anisko@epita.fr>
21734
21735 * src/output.c (prepare): Add prefixed names.
21736 (output_parser): Output semantic actions.
21737 (output_parser): Fix bug on '%%line' directives.
6fc74234 21738
26f609ff
RA
21739 * src/output.c (output_headers): Remove. The C code printed by this
21740 function should now be in the skeletons.
21741 (output_trailers): Remove.
21742 (output): Disable call to 'reader_output_yylsp'.
21743 (output_rule_data): Do not output tables to the table obstack.
21744
21745 * src/output.c: Remove some C dedicated output.
21746 Improve the use of macro and output obstacks.
21747 (output_defines): Remove.
6fc74234 21748
26f609ff
RA
21749 * src/output.c (output_token_translations): Associate 'translate'
21750 table with a macro. No output to the table obstack.
21751 (output_gram): Same for 'rhs' and 'prhs'.
21752 (output_stos): Same for 'stos'.
21753 (output_rule_data): Same for 'r1' and 'r2'.
21754 (token_actions): Same for 'defact'.
21755 (goto_actions): Same for 'defgoto'.
21756 (output_base): Same for 'pact' and 'pgoto'.
21757 (output_table): Same for 'table'.
21758 (output_check): Same for 'check'.
6fc74234 21759
26f609ff
RA
21760 * src/output.c (output_table_data): New function.
21761 (output_short_table): Remove.
21762 (output_short_or_char_table): Remove.
6fc74234 21763
26f609ff
RA
21764 * src/output.c (output_parser): Replace most of the skeleton copy code
21765 with something new. Skeletons are now processed character by character
21766 rather than line by line, and Bison looks for '%%' macros. This is the
21767 first step in making Bison's output process (a lot) more flexible.
21768 (output_parser): Use the macro table.
21769
6f43b113
RA
217702001-08-25 Robert Anisko <robert.anisko@epita.fr>
21771
21772 * src/main.c (main): Initialize the macro table.
21773
dd3127cf
RA
217742001-08-25 Robert Anisko <robert.anisko@epita.fr>
21775
21776 * src/lex.c (percent_table): Add tok_define.
21777 * src/lex.h: Add tok_define.
21778
aa321494
RA
217792001-08-25 Robert Anisko <robert.anisko@epita.fr>
21780
21781 * src/macrotab.c: New file.
21782 * src/macrotab.h: New file.
21783 * src/Makefile.am: Update.
21784
68bd3b6b
RA
217852001-08-25 Robert Anisko <robert.anisko@epita.fr>
21786
21787 * lib/hash.c: New file.
21788 * lib/hash.h: New file.
21789 * lib/Makefile.am: Update.
21790
45f8dd1e
AD
217912001-08-15 Akim Demaille <akim@epita.fr>
21792
21793 Version 1.28c.
21794
40a64a7a 217952001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
21796
21797 * src/reader.c (readgram): Indent output macro YYSTYPE.
21798 (packsymbols): Likewise.
21799 (output_token_defines): Likewise.
21800 * src/files.c: Standardize.
21801 (compute_header_macro): New.
21802 (defines_obstack_save): New. Use compute_header_macro.
21803 (output_files): Update. Use defines_obstack_save.
21804
f9a8293a
AD
218052001-08-15 Akim Demaille <akim@epita.fr>
21806
21807 * doc/bison.texinfo (Table of Symbols): Document
21808 YYSTACK_USE_ALLOCA.
21809
150ca7a7
AD
218102001-08-15 Akim Demaille <akim@epita.fr>
21811
21812 * missing: Update from CVS Automake.
21813 * config/config.guess, config/config.sub, config/texinfo.tex:
21814 Update from gnu.org.
21815
69b5cec4
AD
218162001-08-15 Akim Demaille <akim@epita.fr>
21817
21818 * Makefile.maint: Sync with CVS Autoconf.
21819
f2b5126e
PB
218202001-08-14 Pascal Bart <pascal.bart@epita.fr>
21821
69b5cec4 21822 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
21823 `fdl.texi'.
21824 * doc/fdl.texi: Add to package.
21825
4ecbf796
MA
218262001-08-14 Marc Autret <autret_m@epita.fr>
21827
21828 Turn on %{source,header}_extension features.
21829
69b5cec4 21830 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
21831 source_extension.
21832 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 21833 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
21834 between options.
21835
95fb5662
MA
218362001-08-14 Marc Autret <autret_m@epita.fr>
21837
21838 * src/files.c (compute_base_names): Add extensions computing when
21839 `--file-prefix' used.
21840 Standardize function calls.
21841
78d09da9
MA
218422001-08-13 Marc Autret <autret_m@epita.fr>
21843
69b5cec4 21844 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
21845 defining it (defined but null disables alloca).
21846
5a009f2c
MA
218472001-08-13 Marc Autret <autret_m@epita.fr>
21848
21849 * src/bison.simple (_yy_memcpy): CPP reformat.
21850
1e41465a
PB
218512001-08-13 Pascal Bart <pascal.bart@epita.fr>
21852
21853 * tests/atconfig.in (CPPFLAGS): Fix.
21854
c67a198d
PB
218552001-08-10 Pascal Bart <pascal.bart@epita.fr>
21856
79282c6c 21857 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
21858 `gpl.texi'.
21859 * doc/gpl.texi: Add to package.
21860
09a6de7e
MA
218612001-08-10 Marc Autret <autret_m@epita.fr>
21862
21863 * src/print_graph.h: Fix.
21864 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21865
b77b9ee0
AD
218662001-08-10 Akim Demaille <akim@epita.fr>
21867
21868 * src/system.h: Provide default declarations for stpcpy, strndup,
21869 and strnlen.
21870
3e259915
MA
218712001-08-10 Robert Anisko <anisko_r@epita.fr>
21872
21873 * doc/bison.texinfo (Locations): Update @$ stuff.
21874
ca96bc2d
MA
218752001-08-09 Robert Anisko <anisko_r@epita.fr>
21876
21877 * src/bison.simple (YYLLOC_DEFAULT): Update.
21878 (yyparse): Adjust.
21879
fdc6758b
MA
218802001-08-08 Marc Autret <autret_m@epita.fr>
21881
b77b9ee0 21882 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
21883 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21884 Reported by Fabrice Bauzac.
957d4dbf 21885
600cad3b
MA
218862001-08-08 Marc Autret <autret_m@epita.fr>
21887
21888 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21889 * src/vcg.c (output_node): Fix.
21890 * src/vcg.h: Cleanup.
21891 * src/print_graph.c: Add comments.
b77b9ee0 21892 (node_output_size): New global variable. Simplify the formatting of
600cad3b 21893 the VCG graph output.
b77b9ee0 21894 (print_actions): Unused code is now used. It notifies the final state
600cad3b 21895 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 21896 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
21897 blue.
21898 Get the current node name and node_obstack by argument.
21899 (node_obstack): New variable.
21900 (print_state): Manage node_obstack.
21901 (print_core): Use node_obstack given by argument.
21902 A node is not only computed here but in print_actions also.
21903 (print_graph): CPP out useless code instead of commenting it.
21904
976e528f
AD
219052001-08-07 Pascal Bart <pascal.bart@epita.fr>
21906
21907 * tests/atconfig.in (CPPFLAGS): Fix.
21908
20e8e5ca
AD
219092001-08-07 Akim Demaille <akim@epita.fr>
21910
21911 * src/print_graph.c (quote): New.
21912 (print_core): Use it.
21913
957d4dbf 219142001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 21915
3e3da797
AD
21916 * src/vcg.c (complain.h): Include it.
21917 Unepitaize `return' invocations.
c4b66126 21918 [NDEBUG] (main): Remove.
79282c6c 21919 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
21920 * src/files.c (open_files): Initialize graph_obstack.
21921 * src/print_graph.c (print_actions): CPP out useless code.
21922 (print_core): Don't output the last `\n' in labels.
21923 Use `quote'.
21924 * src/files.c (output_files): Output the VCG file.
21925 * src/main.c (main): Invoke print_graph ();
3e3da797 21926
957d4dbf 219272001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
21928
21929 Automaton VCG graph output.
21930 Using option ``-g'' or long option ``--graph'', you can generate
21931 a gram_filename.vcg file containing a VCG description of the LALR (1)
21932 automaton of your grammar.
21933
21934 * src/main.c: Call to print_graph() function.
21935 * src/getargs.h: Update.
21936 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21937 (graph_flag): New flag.
21938 (longopts): Update.
21939 (getargs): Add case `g'.
21940 * src/files.c (graph_obstack): New obstack struct.
21941 (open_files): Initialize new obstack.
21942 (output_files): Saves graph_obstack if required.
21943 * src/files.h (graph_obstack): New extern declaration.
21944 * src/Makefile.am: Add new source files.
21945
927c1557 219462001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
21947
21948 * src/print_graph.c, src/print_graph.h (graph): New.
21949 * src/vcg.h: New file.
21950 * src/vcg.c: New file, VCG graph handling.
21951
7333d403
AD
219522001-08-06 Marc Autret <autret_m@epita.fr>
21953
21954 Add of %source_extension and %header_extension which specify
21955 the source or/and the header output file extension.
21956
21957 * src/files.c (compute_base_names): Remove initialisation of
21958 src_extension and header_extension.
21959 (compute_exts_from_gf): Update.
21960 (compute_exts_from_src): Update.
21961 (output_files): Update.
21962 * src/reader.c (parse_header_extension_decl): New.
21963 (parse_source_extension_decl): New.
21964 (read_declarations): New case statements for the new tokens.
21965 * src/lex.c (percent_table): Add entries for %source_extension
21966 and %header_extension.
21967 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21968
84163231
AD
219692001-08-06 Marc Autret <autret_m@epita.fr>
21970
21971 * configure.in: Bump to 1.28c.
21972 * doc/bison.texinfo: Texinfo thingies.
21973
8303fc42
AD
219742001-08-04 Pascal Bart <pascal.bart@epita.fr>
21975
21976 * tests/atconfig.in (CPPFLAGS): Add.
21977 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21978
70a84437
AD
219792001-08-03 Akim Demaille <akim@epita.fr>
21980
21981 Version 1.28b.
21982
2ce10144
AD
219832001-08-03 Akim Demaille <akim@epita.fr>
21984
21985 * tests/Makefile.am (check-local): Ship testsuite.
21986 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21987 Include `string.h'.
21988
1e3e4bc1
AD
219892001-08-03 Akim Demaille <akim@epita.fr>
21990
21991 * configure.in: Try using -Wformat when compiling.
21992
42b45b7f
AD
219932001-08-03 Akim Demaille <akim@epita.fr>
21994
21995 * configure.in: Bump to 1.28b.
21996
8f13fe33
AD
219972001-08-03 Akim Demaille <akim@epita.fr>
21998
21999 * src/complain.c: Adjust strerror_r portability issues.
22000
b37ba92c
AD
220012001-08-03 Akim Demaille <akim@epita.fr>
22002
22003 Version 1.28a.
22004
b0ce6046
AD
220052001-08-03 Akim Demaille <akim@epita.fr>
22006
22007 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22008 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22009 * src/getargs.c: Include complain.h.
22010 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22011 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22012
d01c415b
AD
220132001-08-03 Akim Demaille <akim@epita.fr>
22014
22015 * src/reader.c (readgram): Display hidden chars in error messages.
22016
459dd1a6
AD
220172001-08-03 Akim Demaille <akim@epita.fr>
22018
22019 Update to gettext 0.10.39.
22020
53b74c0c
AD
220212001-08-03 Akim Demaille <akim@epita.fr>
22022
22023 * lib/strspn.c: New.
22024
234a3be3
AD
220252001-08-01 Marc Autret <autret_m@epita.fr>
22026
22027 * doc/bison.texinfo: Update.
22028 * doc/bison.1 (mandoc): Update.
22029 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22030 * src/files.c: Support output files extensions computing.
22031 (src_extension): New static variable.
22032 (header_extension): New static variable.
22033 (tr): New function.
22034 (get_extension_index): New function, gets the index of an extension
22035 filename in a string.
22036 (compute_exts_from_gf): New function, computes extensions from the
22037 grammar file extension.
22038 (compute_exts_from_src): New functions, computes extensions from the
22039 C source file extension, file given by ``-o'' option.
22040 (compute_base_names): Update.
22041 (output_files): Update.
22042
847bf1f5
AD
220432001-08-01 Robert Anisko <anisko_r@epita.fr>
22044
d995fee7 22045 * doc/bison.texi: Document @$.
847bf1f5
AD
22046 (Locations): New section.
22047
d074a105
AD
220482001-07-18 Akim Demaille <akim@epita.fr>
22049
22050 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22051 * config/prev-version.txt, config/move-if-change: New.
22052 * Makefile.am: Adjust.
22053
3419715d
AD
220542001-07-08 Pascal Bart <pascal.bart@epita.fr>
22055
22056 * src/bison.simple (yyparse): Suppress warning `comparaison
22057 between signed and unsigned'.
22058
62ab6972
AD
220592001-07-05 Pascal Bart <pascal.bart@epita.fr>
22060
22061 * src/getargs.h (raw_flag): Remove.
22062 * src/getargs.c: Die on `-r'/`--raw'.
22063 * src/lex.c (parse_percent_token): Die on `%raw'.
22064 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22065 * tests/calc.at: Suppress test with option `--raw'.
22066
1e24cc5b
AD
220672001-07-14 Akim Demaille <akim@epita.fr>
22068
22069 * config/: New.
22070 * configure.in: Require Autoconf 2.50.
22071 Update to gettext 0.10.38.
22072
32dfccf8
AD
220732001-03-16 Akim Demaille <akim@epita.fr>
22074
22075 * doc/bison.texinfo: ANSIfy the examples.
22076
cd5bd6ac
AD
220772001-03-16 Akim Demaille <akim@epita.fr>
22078
22079 * getargs.c (skeleton): New variable.
22080 (longopts): --skeleton is a new option.
22081 (shortopts, getargs): -S is a new option.
22082 * getargs.h: Declare skeleton.
22083 * output.c (output_parser): Use it.
22084
5141b016
AD
220852001-03-16 Akim Demaille <akim@epita.fr>
22086
22087 * m4/strerror_r.m4: New.
22088 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22089 * lib/error.h, lib/error.c: Update.
22090
447992b9
AD
220912001-03-16 Akim Demaille <akim@epita.fr>
22092
22093 * src/getargs.c (longopts): Clean up.
22094
274d42ce
AD
220952001-02-21 Akim Demaille <akim@epita.fr>
22096
22097 * src/reader.c (gensym): `gensym_count' is your own.
22098 Use a static buf to create the symbol name, as token_buffer is no
22099 longer a buffer.
22100
22c821f3
AD
221012001-02-08 Akim Demaille <akim@epita.fr>
22102
22103 * src/conflicts.c (conflict_report): Be sure not to append to res
22104 between two calls, which could happen if both first sprintf were
22105 skipped, but not the first cp += strlen.
22106
18569462
AD
221072001-02-08 Akim Demaille <akim@epita.fr>
22108
22109 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22110 New, from fileutils 4.0.37.
22111 * configure.in: Require Autoconf 2.49c. I took some time before
22112 making this decision. This is the only way out for portability
22113 issues in Bison, it would mean way too much duplicate effort to
22114 import in Bison features implemented in 2.49c since 2.13.
22115 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22116
0d8f3c8a
AD
221172001-02-02 Akim Demaille <akim@epita.fr>
22118
22119 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 22120 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 22121
f17bcd1f
AD
221222001-01-19 Akim Demaille <akim@epita.fr>
22123
22124 Get rid of the ad hoc handling of token_buffer in the scanner: use
22125 the obstacks.
22126
22127 * src/lex.c (token_obstack): New.
22128 (init_lex): Initialize it. No longer call...
22129 (grow_token_buffer): this. Remove it.
22130 Adjust all the places which used it to use the obstack.
22131
511e79b3
AD
221322001-01-19 Akim Demaille <akim@epita.fr>
22133
22134 * src/lex.h: Rename all the tokens:
22135 s/\bENDFILE\b/tok_eof/g;
22136 s/\bIDENTIFIER\b/tok_identifier/g;
22137 etc.
22138 Let them be enums, not #define, to ease debugging.
22139 Adjust all the code.
22140
0d6508ef
AD
221412001-01-18 Akim Demaille <akim@epita.fr>
22142
22143 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22144 * src/lex.c (maxtoken, grow_token_buffer): Static.
22145
6deb4447
AD
221462001-01-18 Akim Demaille <akim@epita.fr>
22147
22148 Since we now use obstacks, more % directives can be enabled.
22149
22150 * src/lex.c (percent_table): Also accept `%yacc',
22151 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22152 `%debug'.
22153 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22154 instead of returning a token.
22155 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22156 * src/reader.c (read_declarations): Adjust.
22157 * src/files.c (open_files): Don't call `compute_base_names', don't
22158 compute `attrsfile' since they depend upon data which might be
22159 *in* the input file now.
22160 (output_files): Do it here.
22161 * src/output.c (output_headers): Document the fact that this patch
22162 introduces a guaranteed SEGV for semantic parsers.
22163 * doc/bison.texinfo: Document them.
22164 * tests/suite.at: Exercise these %options.
22165
ff4423cc
AD
221662000-12-20 Akim Demaille <akim@epita.fr>
22167
22168 Also handle the output file (--verbose) with obstacks.
22169
22170 * files.c (foutput): Remove.
22171 (output_obstack): New.
22172 Adjust all dependencies.
22173 * src/conflicts.c: Return a string.
22174 * src/system.h (obstack_grow_string): Rename as...
22175 (obstack_sgrow): this. Be ready to work with non literals.
22176 (obstack_fgrow4): New.
22177
956dba3a
AD
221782000-12-20 Akim Demaille <akim@epita.fr>
22179
22180 * src/files.c (open_files): Fix the computation of short_base_name
22181 in the case of `-o foo.tab.c'.
22182
337bab46
AD
221832000-12-20 Akim Demaille <akim@epita.fr>
22184
22185 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22186 (copy_dollar): Now that everything uses obstacks, get rid of the
22187 FILE * parameters.
22188
5d3214b8
AD
221892000-12-20 Akim Demaille <akim@epita.fr>
22190
22191 * src/files.c (open_files): Actually the `.output' file is based
22192 on the short_base_name, not base_name.
22193 * tests/suite.at (Checking output file names): Adjust.
22194
29092a57
AD
221952000-12-20 Akim Demaille <akim@epita.fr>
22196
22197 * src/bison.s1: Remove, we now use directly...
22198 * src/bison.simple: this.
22199 * src/Makefile.am: Use pkgdata instead of data.
22200
ea5607fd
AD
222012000-12-20 Akim Demaille <akim@epita.fr>
22202
22203 * src/files.c (guard_obstack): New.
22204 (open_files): Initialize it.
22205 (output_files): Dump it...
22206 * src/files.h: Export it.
22207 * src/reader.c (copy_guard): Use it.
22208
27110317
AD
222092000-12-19 Akim Demaille <akim@epita.fr>
22210
22211 * src/files.c (outfile, defsfile, actfile): Removed as global
22212 vars.
22213 (open_files): Don't compute them.
22214 (output_files): Adjust.
22215 (base_name, short_base_name): Be global.
22216 Adjust dependencies.
22217
19c50364
AD
222182000-12-19 Akim Demaille <akim@epita.fr>
22219
22220 * src/files.c (strsuffix): New.
22221 (stringappend): Be just like strcat but allocate.
22222 (base_names): Eve out from open_files.
22223 Try to simplify the rather hairy computation of base_name and
22224 short_base_name.
22225 (open_files): Use it.
22226 * tests/suite.at (Checking output file names): New test.
22227
573c1d9f
AD
222282000-12-19 Akim Demaille <akim@epita.fr>
22229
22230 * src/system.h (obstack_grow_literal_string): Rename as...
22231 (obstack_grow_string): this.
22232 * src/output.c (output_parser): Recognize `%% actions' instead of
22233 `$'.
22234 * src/bison.s1: s/$/%% actions/.
22235 * src/bison.hairy: Likewise.
22236
ef7ddedd
AD
222372000-12-19 Akim Demaille <akim@epita.fr>
22238
22239 * src/output.c (output_parser): Compute the `#line' lines when
22240 there are.
22241 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22242 Suggested by Hans Aberg.
22243
ff61dabd
AD
222442000-12-19 Akim Demaille <akim@epita.fr>
22245
22246 Let the handling of the skeleton files be local to the procedures
22247 that use it.
22248
22249 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22250 longer static.
22251 (fparser, open_extra_files): Remove.
22252 (open_files, output_files): Don't take care of fparser.
22253 * src/files.h: Adjust.
22254 * src/output.c (output_parser): Open and close the file to the
22255 skeleton.
22256 * src/reader.c (read_declarations): When %semantic_parser, open
22257 fguard.
22258
55b96341
AD
222592000-12-19 Akim Demaille <akim@epita.fr>
22260
22261 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22262 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22263
358c15b7
AD
222642000-12-19 Akim Demaille <akim@epita.fr>
22265
22266 * src/files.c (open_files): Yipee! We no longer need all the code
22267 looking for `/tmp' since we have no tmp file.
22268
7de3329e
AD
222692000-12-19 Akim Demaille <akim@epita.fr>
22270
22271 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22272 New macros.
22273 * src/files.c (open_files): Less dependency on MSDOS etc.
22274
3abcd459
AD
222752000-12-14 Akim Demaille <akim@epita.fr>
22276
22277 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22278 Provide a default definition.
22279 Use it when executing the default @ action.
22280 * src/reader.c (reader_output_yylsp): No longer include
22281 `timestamp' and `text' in the default YYLTYPE.
22282
2a91a95e
AD
222832000-12-12 Akim Demaille <akim@epita.fr>
22284
22285 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22286 (copy_guard): Quote the file names.
22287 Reported by Laurent Mascherpa.
22288
14d3eb9b
AD
222892000-12-12 Akim Demaille <akim@epita.fr>
22290
22291 * src/output.c (output_headers, output_program, output): Be sure
22292 to escape special characters when outputting filenames.
22293 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22294 (output_headers): Don't depend on them, Use ACTSTR.
22295
d7045ec6
AD
222962000-11-17 Akim Demaille <akim@epita.fr>
22297
22298 * lib/obstack.h: Formatting changes.
22299 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22300 prevents type checking.
22301 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22302 cast the value to (void *): assigning a `foo *' to a `void *'
22303 variable is valid.
22304 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22305 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22306 append characters.
22307
6fd54b73
AD
223082000-11-17 Akim Demaille <akim@epita.fr>
22309
22310 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22311 as...
22312 (suite.m4, regression.m4, calc.m4): these.
22313 * tests/atgeneral.m4: Update from CVS Autoconf.
22314
4c50eae6
AD
223152000-11-17 Akim Demaille <akim@epita.fr>
22316
22317 * tests/regression.m4 (%union and --defines): New test,
22318 demonstrating a current bug in the obstack implementation.
22319
a35f64ea
AD
223202000-11-17 Akim Demaille <akim@epita.fr>
22321
22322 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
22323 macros.
22324 Use them to declare the variables which are global or local to
22325 `yyparse'.
22326
7de23534
AD
223272000-11-17 Akim Demaille <akim@epita.fr>
22328
22329 * acconfig.h: Remove, no longer used.
22330
aa7815f5
AD
223312000-11-07 Akim Demaille <akim@epita.fr>
22332
22333 * src: s/Copyright (C)/Copyright/g.
22334
5af1f549
AD
223352000-11-07 Akim Demaille <akim@epita.fr>
22336
22337 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
22338 defining.
22339 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
22340
553e2b22
AD
223412000-11-07 Akim Demaille <akim@epita.fr>
22342
22343 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
22344 Merge in a single CPP if/else.
22345
8a4f41d6
AD
223462000-11-07 Akim Demaille <akim@epita.fr>
22347
22348 * src/output.c (output): Remove useless variables.
22349 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
22350 argument `data' for consistency with the prototypes.
22351 Qualify it `const'.
22352 (obstack_copy, obstack_copy0): Rename the second argument as
22353 `address' for consistency. Qualify it `const'.
22354 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
22355 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
22356 `const' their input argument (`data' or `address').
22357 Adjust the corresponding macros to include `const' in casts.
22358
095a3fb5
AD
223592000-11-03 Akim Demaille <akim@epita.fr>
22360
22361 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
22362 s/PFILE1/BISON_HAIRY/.
22363 Adjust dependencies.
22364
d1cdce7c
AD
223652000-11-03 Akim Demaille <akim@epita.fr>
22366
090c5ebf 22367 For some reason, this was not applied.
d1cdce7c
AD
22368
22369 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22370 `unlink': it's no longer used.
22371
9311529b
AD
223722000-11-03 Akim Demaille <akim@epita.fr>
22373
22374 * src/files.c (skeleton_find): New function, eved out of...
22375 (open_files, open_extra_files): here.
22376
d8880f69
AD
223772000-11-03 Akim Demaille <akim@epita.fr>
22378
22379 Don't use `atexit'.
22380
22381 * src/files.c (obstack_save): New function.
22382 (done): Rename as...
22383 (output_files): this.
22384 Use `obstack_save'.
22385 * src/main.c (main): Don't use `atexit' to register `done', since
22386 it no longer has to remove tmp files, just call `output_files'
22387 when there are no errors.
22388
0dbb648e
AD
223892000-11-02 Akim Demaille <akim@epita.fr>
22390
22391 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22392 `unlink': it's no longer used.
22393 * src/files.h: Formatting changes.
22394
896fe5c1
AD
223952000-11-02 Akim Demaille <akim@epita.fr>
22396
22397 Remove the last uses of mktemp and unlink/delete.
22398
22399 * src/files.c (fdefines, ftable): Removed.
22400 (defines_ostack, table_obstack): New.
22401 Adjust dependencies of the former into uses of the latter.
22402 * src/output.c (output_short_or_char_table, output_short_table):
22403 Convert to using obstacks.
22404 * src/reader.c (copy_comment2): Accept one FILE * and two
22405 obstacks.
22406 (output_token_defines, reader_output_yylsp): Use obstacks.
22407 * src/system.h (obstack_fgrow3): New.
1f65350a 22408 * po/POTFILES.in: Adjust.
896fe5c1 22409
dd60faec
AD
224102000-11-01 Akim Demaille <akim@epita.fr>
22411
22412 Change each use of `fattrs' into a use of `attrs_obstack'.
22413
22414 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22415 * src/files.c (fattrs): Remove.
22416 (attrs_obstack): New.
22417 Adjust all dependencies.
22418 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22419
8c7ebe49
AD
224202000-11-01 Akim Demaille <akim@epita.fr>
22421
22422 Introduce obstacks.
22423 Change each use of `faction' into a use of `action_obstack'.
22424
22425 * lib/obstack.h, lib/obstack.c: New files.
22426 * src/files.c (faction): Remove.
22427 (action_obstack): New.
22428 Adjust all dependencies.
22429
77aee789
AD
224302000-10-20 Akim Demaille <akim@epita.fr>
22431
22432 * lib/quote.h (PARAMS): New macro. Use it.
22433
43591cec
AD
224342000-10-16 Akim Demaille <akim@epita.fr>
22435
22436 * src/output.c (output_short_or_char_table): New function.
22437 (output_short_table, output_token_translations): Use it.
22438 (goto_actions): Use output_short_table.
22439
1e9798d5
AD
224402000-10-16 Akim Demaille <akim@epita.fr>
22441
22442 * src/symtab.c (bucket_new): New function.
22443 (getsym): Use it.
22444
22445 * src/output.c (output_short_table): New argument to display the
22446 comment associated with the table.
22447 Adjust dependencies.
22448 (output_gram): Use it.
22449 (output_rule_data): Nicer output layout for YYTNAME.
22450
f282676b
AD
224512000-10-16 Akim Demaille <akim@epita.fr>
22452
22453 * src/lex.c (read_typename): New function.
22454 (lex): Use it.
22455 * src/reader.c (copy_dollar): Likewise.
22456
550a72a3
AD
224572000-10-16 Akim Demaille <akim@epita.fr>
22458
22459 * src/reader.c (copy_comment2): Expect the input stream to be on
22460 the `/' which is suspected to open a comment, instead of being
22461 called after `//' or `/*' was read.
22462 (copy_comment, copy_definition, parse_union_decl, copy_action)
22463 (copy_guard): Adjust.
22464
131e2fef
AD
224652000-10-16 Akim Demaille <akim@epita.fr>
22466
22467 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22468 `read_signed_integer'.
22469
79282c5a
AD
224702000-10-16 Akim Demaille <akim@epita.fr>
22471
22472 * src/reader.c (copy_dollar): New function.
22473 (copy_guard, copy_action): Use it.
22474
ff4a34be
AD
224752000-10-16 Akim Demaille <akim@epita.fr>
22476
22477 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22478 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22479 New files, from Fileutils 4.0.27.
22480 * src/main.c (printable_version): Remove.
22481 * src/lex.c, src/reader.c: Use `quote'.
22482
224832000-10-04 Akim Demaille <akim@epita.fr>
22484
22485 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22486
14ded682
AD
224872000-10-04 Akim Demaille <akim@epita.fr>
22488
22489 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22490
8e03724b
AD
224912000-10-04 Akim Demaille <akim@epita.fr>
22492
22493 When a literal string is used to define two different tokens,
22494 `bison -v' segfaults.
22495 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22496
22497 * tests/regression.m4: New file.
22498 Include the core of the sample provided by Piotr Gackiewicz.
22499 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22500 properly.
22501
a9e64249
AD
225022000-10-04 Akim Demaille <akim@epita.fr>
22503
22504 * src/reader.c (parse_expect_decl): Keep `count' within the size
22505 of `buffer'.
22506 From Neil Booth.
22507
da9abf43
AD
225082000-10-02 Paul Eggert <eggert@twinsun.com>
22509
22510 * bison.s1 (yyparse): Assign the default value
22511 unconditionally, to avoid a GCC warning and make the parser a
22512 tad smaller.
22513
c33638bb
AD
225142000-10-02 Akim Demaille <akim@epita.fr>
22515
22516 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22517 options.
22518
444c570a
AD
225192000-10-02 Akim Demaille <akim@epita.fr>
22520
22521 * src/derives.c, src/print.c, src/reduce.c: To ease the
22522 translation, move some `\n' out of the translated strings.
22523
89cab50d
AD
225242000-10-02 Akim Demaille <akim@epita.fr>
22525
22526 The location tracking mechanism is precious for parse error
22527 messages. Nevertheless, it is enabled only when `@n' is used in
22528 the grammar, which is a different issue (you can use it in error
22529 message, but not in the grammar per se). Therefore, there should
22530 be another means to enable it.
22531
22532 * src/getargs.c (getargs): Support `--locations'.
22533 (usage): Report it.
22534 * src/getargs.h (locationsflag): Export it.
22535 * src/lex.c (percent_table): Support `%locations'.
22536 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22537 with `locationsflag'.
22538 * doc/bison.texinfo: Document `--locations' and `%locations'.
22539 Sort the options.
22540 * tests/calc.m4: Test it.
22541
22542 For regularity of the names, replace each
22543 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22544 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22545 In addition replace each `flag' with `_flag'.
22546
d6c2cba0
AD
225472000-10-02 Akim Demaille <akim@epita.fr>
22548
22549 Also test parse error messages, including with YYERROR_VERBOSE.
22550
22551 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22552 associative).
22553 Use it to check the computations.
22554 Use it to check `nonassoc' is honored.
22555 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22556 `--yyerror-verbose'.
22557 (_AT_CHECK_CALC): Adjust to this option.
22558 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22559
5a35a6cb
AD
225602000-10-02 Akim Demaille <akim@epita.fr>
22561
22562 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22563 the latter demonstrates a flaw in the handling of non debugging
22564 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22565 was used in order to simplify:
22566
22567 #if YYDEBUG
22568 if (yydebug)
22569 {
22570 ...
22571 }
22572 #endif
22573
22574 into
22575
22576 if (yydebug)
22577 {
22578 ...
22579 }
22580
22581 unfortunately this leads to a CPP conflict when
22582 `--name-prefix=foo' is used since it produces `#define yydebug
22583 foodebug'.
22584
22585 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22586 (YYDPRINTF): New macro.
22587 Spread its use.
22588 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22589 the bison options.
22590 Also test `--verbose', `--defines' and `--name-prefix'.
22591
71da9eea
AD
225922000-10-02 Akim Demaille <akim@epita.fr>
22593
22594 Improve the readability of the produced parsers.
22595
22596 * src/bison.s1: Formatting changes.
22597 Improve the comment related to the `$' mark.
22598 (yydefault): Don't fall through to `yyresume': `goto' there.
22599 * src/output.c (output_parser): When the `$' is met, skip the end
22600 of its line.
22601 New variable, `number_of_dollar_signs', to check there's exactly
22602 one `$' in the parser skeleton.
22603
95e36146
AD
226042000-10-02 Akim Demaille <akim@epita.fr>
22605
22606 * lib/xstrdup.c: New file, from the fileutils.
22607 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22608 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22609 instead of strlen + xmalloc + strcpy.
22610 * src/symtab.c (copys): Remove, use xstrdup instead.
22611
d7020c20
AD
226122000-10-02 Akim Demaille <akim@epita.fr>
22613
22614 * src/gram.h (associativity): New enum type which replaces the
22615 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22616 `right_assoc', `left_assoc' and `non_assoc'.
22617 Adjust all dependencies.
22618 * src/reader.c: Formatting changes.
22619 (LTYPESTR): Don't define it, use it as a literal in
22620 `reader_output_yylsp'.
22621 * src/symtab.h (symbol_class): New enum type which replaces the
22622 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22623 `sunknown', `stoken and `snterm'.
22624
1916f98e
AD
226252000-10-02 Akim Demaille <akim@epita.fr>
22626
22627 * src/getargs.c (fixed_outfiles): Rename as...
22628 (yaccflag): for consistency and accuracy.
22629 Adjust dependencies.
22630
d7913476
AD
226312000-10-02 Akim Demaille <akim@epita.fr>
22632
22633 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22634 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22635 difficult and introduced a lot of core dump. It turns out that
22636 Bison used an implementation of `xmalloc' based on `calloc', and
22637 at various places it does depend upon the initialization to 0. I
22638 have not tried to isolate the pertinent places, and all the former
22639 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22640 someone should address this issue.
22641
22642 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22643 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22644 files.
22645 Adjust dependencies.
22646 * src/warshall.h: New file.
22647 Propagate.
22648
340ef489
AD
226492000-10-02 Akim Demaille <akim@epita.fr>
22650
22651 Various anti-`extern in *.c' changes.
22652
22653 * src/system.h: Include `assert.h'.
22654
b2ca4022
AD
226552000-10-02 Akim Demaille <akim@epita.fr>
22656
22657 * src/state.h (nstates, final_state, first_state, first_shift)
22658 (first_reduction): Move their exportation from here...
22659 * src/LR0.h: to here.
22660 Adjust dependencies.
22661 * src/getargs.c (statisticsflag): New variable.
22662 Add support for `--statistics'.
22663 Adjust dependencies.
22664
22665 Remove a lot of now useless `extern' statements in most files.
22666
403b315b
AD
226672000-10-02 Akim Demaille <akim@epita.fr>
22668
22669 * src/LR0.h: New file.
22670 Propagate its use.
22671
07a58c13
AD
226722000-10-02 Akim Demaille <akim@epita.fr>
22673
22674 * src/print.h: New file.
22675 Propagate its use.
22676 * src/print.c: Formatting and ordering changes.
22677 (verbose, terse): Replace with...
22678 (print_results): this new function.
22679 Adjust dependencies.
22680
0619caf0
AD
226812000-10-02 Akim Demaille <akim@epita.fr>
22682
22683 * src/conflicts.c (conflict_report): New function.
22684 (conflict_log, verbose_conflict_log): Replace with...
22685 (print_conflicts): this function.
22686 Adjust dependencies.
22687 * src/conflicts.h: New file.
22688 Propagate its inclusion.
22689
3519ec76
AD
226902000-10-02 Akim Demaille <akim@epita.fr>
22691
22692 * src/nullable.h: New file.
22693 Propagate its inclusion.
22694 * src/nullable.c: Formatting changes.
22695
015acc48
AD
226962000-10-02 Akim Demaille <akim@epita.fr>
22697
22698 * src/reduce.h: New file.
22699 Propagate its inclusion.
22700 * src/reduce.c: Topological sort and other formatting changes.
22701 (bool, TRUE, FALSE): Move their definition to...
22702 * src/system.h: here.
22703
8963a27b
AD
227042000-10-02 Akim Demaille <akim@epita.fr>
22705
22706 * src/files.c: Formatting changes.
22707 (tryopen, tryclose, openfiles): Rename as...
22708 (xfopen, xfclose, open_files): this.
22709 (stringappend): static.
22710 * src/files.h: Complete the list of exported symbols.
22711 Propagate its use.
22712
a70083a3
AD
227132000-10-02 Akim Demaille <akim@epita.fr>
22714
22715 * src/reader.h: New file.
22716 Propagate its use instead of tedious list of `extern' and
22717 prototypes.
22718 * src/reader.c: Formatting changes, topological sort,
22719 s/register//.
22720
abadc117
AD
227212000-10-02 Akim Demaille <akim@epita.fr>
22722
22723 * src/lex.h: Prototype `lex.c' exported functions.
22724 * src/reader.c: Adjust.
22725 * src/lex.c: Formatting changes.
22726 (safegetc): Rename as...
22727 (xgetc): this.
22728
720d742f
AD
227292000-10-02 Akim Demaille <akim@epita.fr>
22730
22731 * src/lalr.h: New file.
22732 Propagate its inclusion instead of prototypes and `extern'.
22733 * src/lalr.c: Formatting changes, topological sorting etc.
22734
f2acea59
AD
227352000-10-02 Akim Demaille <akim@epita.fr>
22736
22737 * src/output.c (token_actions): Introduce a temporary array,
22738 YYDEFACT, that makes it possible for this function to use
22739 output_short_table.
22740
d019d655
AD
227412000-10-02 Akim Demaille <akim@epita.fr>
22742
22743 `user_toknums' is output as a `short[]' in `output.c', while it is
22744 defined as a `int[]' in `reader.c'. For consistency with the
22745 other output tables, `user_toknums' is now defined as a table of
22746 shorts.
22747
22748 * src/reader.c (user_toknums): Be a short table instead of an int
22749 table.
22750 Adjust dependencies.
22751
22752 Factor the short table outputs.
22753
22754 * src/output.c (output_short_table): New function.
22755 * src/output.c (output_gram, output_stos, output_rule_data)
22756 (output_base, output_table, output_check): Use it.
22757
6c89f1c1
AD
227582000-10-02 Akim Demaille <akim@epita.fr>
22759
22760 * src/output.c (output): Topological sort of the functions, in
22761 order to get rid of the `static' prototypes.
22762 No longer use `register'.
22763 * src/output.h: New file.
22764 Propagate its inclusion in files explicitly prototyping functions
22765 from output.c.
22766
d9efd181
AD
227672000-09-21 Akim Demaille <akim@epita.fr>
22768
22769 * src/atgeneral.m4: Update from Autoconf.
22770
c29240e7 227712000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
22772
22773 * src/closure.h: New file.
22774 * src/closure.c: Formatting changes, topological sort over the
22775 functions, use of closure.h.
22776 (initialize_closure, finalize_closure): Rename as...
22777 (new_closure, free_closure): these. Adjust dependencies.
22778 * src/LR0.c: Formatting changes, topological sort, use of
22779 cloture.h.
22780 (initialize_states): Rename as...
22781 (new_states): this.
22782 * src/Makefile.am (noinst_HEADERS): Adjust.
22783
499daa50
AD
227842000-09-20 Akim Demaille <akim@epita.fr>
22785
22786 * src/acconfig.h: Don't protect config.h against multiple
22787 inclusion.
22788 Don't define PARAMS.
22789 * src/system.h: Define PARAMS.
22790 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22791 purpose of config.h. system.h must not try to fix wrong
22792 definitions in config.h.
22793
cc84fd5d
AD
227942000-09-20 Akim Demaille <akim@epita.fr>
22795
22796 * src/derives.h: New file.
22797 * src/main.c, src/derives.h: Use it.
22798 Formatting changes.
22799 * src/Makefile.am (noinst_HEADERS): Adjust.
22800
db5b3a89
AD
228012000-09-20 Akim Demaille <akim@epita.fr>
22802
22803 * tests/atgeneral.m4: Update from Autoconf.
22804 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22805 (AT_CHECK_CALC): New macros.
22806 Use these macros to test bison with options `', `--raw',
22807 `--debug', `--yacc', `--yacc --debug'.
22808
ceed8467
AD
228092000-09-19 Akim Demaille <akim@epita.fr>
22810
22811 * src/output.c: Formatting changes.
22812 * src/machine.h: Remove, leaving its contents in...
22813 * src/system.h: here.
22814 Include stdio.h.
22815 Adjust all dependencies on stdio.h and machine.h.
22816 * src/getargs.h: New file.
22817 Let all `extern' declarations about getargs.c be replaced with
22818 inclusion of `getargs.h'.
22819 * src/Makefile.am (noinst_HEADERS): Adjust.
22820
22821 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22822 scope.
22823 (yyerror): Returns void, not int.
22824 * doc/bison.texinfo: Formatting changes.
22825
05a1d24b
AD
228262000-09-19 Akim Demaille <akim@epita.fr>
22827
22828 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22829 portable.
22830
cbd25751
AD
228312000-09-18 Akim Demaille <akim@epita.fr>
22832
22833 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22834 * src/Makefile.am (INCLUDES): Don't.
22835 Be ready to fetch headers in lib/.
22836
13863333
AD
228372000-09-18 Akim Demaille <akim@epita.fr>
22838
22839 * doc/bison.texinfo: Update the copyright.
22840 ANSIfy and GNUify the examples.
22841 Remove the old menu.
22842
0d533154
AD
228432000-09-18 Akim Demaille <akim@epita.fr>
22844
22845 First set of tests: use the `calc' example from the documentation.
22846
22847 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22848 is defined only when YYDEBUG is.
22849 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22850 * src/files.c (tryopen, tryclose): Formatting changes.
22851 Move to the top and be static.
22852 * src/reader.c (read_signed_integer): Likewise.
22853 * tests/calc.m4: New file.
22854 * Makefile.am, suite.m4: Adjust.
22855 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22856
e79137ac
AD
228572000-09-18 Akim Demaille <akim@epita.fr>
22858
22859 Add support for an Autotest test suite for Bison.
22860
22861 * m4/m4.m4, m4/atconfig.m4: New files.
22862 * m4/Makefile.am (EXTRA_DIST): Adjust.
22863 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22864 files.
22865 * src/getargs.c: Display a more standard --version message.
22866 * src/reader.c (reader): Formatting changes.
22867 No longer depend upon VERSION_STRING.
22868 * configure.in: No longer use `dnl'.
22869 Set up the test suite and the new directory `tests/.
22870 (VERSION_STRING): Remove.
22871
27821bff
AD
228722000-04-14 Akim Demaille <akim@epita.fr>
22873
22874 * src/reader.c (copy_comment2): New function, same as former
22875 `copy_comment', but outputs into two FILE *.
22876 (copy_comment): Use it.
22877 (parse_union_decl): Use it.
22878 (get_type, parse_start_decl): Use the same `invalid' message.
22879 (parse_start_decl, parse_union_decl): Use the same `multiple'
22880 message.
22881 (parse_union_decl, copy_guard, copy_action): Use the same
22882 `unmatched' message.
22883 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22884
cfe5fbc0
AD
228852000-03-31 Akim Demaille <akim@epita.fr>
22886
22887 * src/files.c (tryopen, tryclose): Move to the top.
22888 Be static.
22889
cb7db13e
AD
228902000-03-31 Akim Demaille <akim@epita.fr>
22891
22892 * src/main.c (main): Don't call `done', exit does it.
22893
a0f6b076
AD
228942000-03-31 Akim Demaille <akim@epita.fr>
22895
36281465
AD
22896 * allocate.c: s/return (foo)/return foo/.
22897 * lalr.c: Likewise.
22898 * LR0.c: Likewise.
22899 * output.c: Likewise.
22900 * reader.c: Likewise.
22901 * symtab.c: Likewise.
22902 * vmsgetargs.c: Likewise.
22903
229042000-03-31 Akim Demaille <akim@epita.fr>
22905
22906 Clean up the error reporting functions.
a0f6b076
AD
22907
22908 * src/report.c: New file.
22909 * src/report.h: Likewise.
22910 * src/Makefile.am: Adjust.
22911 * m4/error.m4: New file.
22912 * m4/Makefile.am: Adjust.
22913 * configure.in (jm_PREREQ_ERROR): Call it.
22914 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22915 Remove.
22916 (fatal, fatals): Remove. All callers use complain.c::fatal.
22917 (warn, warni, warns, warnss, warnss): Remove. All callers use
22918 complain.c::complain.
22919 (toomany): Remove, use fatal instead.
22920 * src/files.c (done): No argument, use complain_message_count.
22921 * src/main.c (main): Register `done' to `atexit'.
22922
22923 * src/getargs.c (usage): More `fputs', less `fprintf'.
22924
18539825
AD
229252000-03-28 Akim Demaille <akim@epita.fr>
22926
22927 * lib/: New directory.
22928 * Makefile.am (SUBDIRS): Adjust.
22929 * configure.in: Adjust.
22930 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22931 useless.
22932 * src/alloca.c: Moved to lib/.
22933 * src/getopt.c: Likewise.
22934 * src/getopt1.c: Likewise.
22935 * src/getopt.h: Likewise.
22936 * src/ansi2knr.c: Likewise.
22937 * src/ansi2knr.1: Likewise.
22938 * src/Makefile.am: Adjust.
22939 * lib/Makefile.am: New file.
22940
9f306f2a
AD
229412000-03-28 Akim Demaille <akim@epita.fr>
22942
22943 * src/getargs.c (usage): Refresh the help message.
22944
0ba347b6
AD
229452000-03-17 Akim Demaille <akim@epita.fr>
22946
22947 * src/getopt1.c: Updated from textutils 2.0e
22948 * src/getopt.c: Likewise.
22949 * src/getopt.h: Likewise.
22950
dbe7f271
AD
229512000-03-17 Akim Demaille <akim@epita.fr>
22952
22953 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22954 the file name, not the whole `#line LINE FILE'.
22955
75bbe78d
AD
229562000-03-17 Akim Demaille <akim@epita.fr>
22957
22958 On syntax errors, report the token on which we choked.
22959
aa5fd0ee
AD
22960 * src/bison.s1 (yyparse): In the label yyerrlab, when
22961 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 22962
7b306f52
AD
229632000-03-17 Akim Demaille <akim@epita.fr>
22964
aa5fd0ee 22965 * src/reader.c (copy_at): New function.
7b306f52
AD
22966 (copy_guard): Use it.
22967 (copy_action): Use it.
22968
e87b5700
AD
229692000-03-17 Akim Demaille <akim@epita.fr>
22970
22971 Be kind to translators, save some useless translations.
22972
aa5fd0ee 22973 * src/main.c (banner): New function.
e87b5700
AD
22974 (fatal_banner): Use it.
22975 (warn_banner): Use it.
22976
ae3c3164
AD
229772000-03-17 Akim Demaille <akim@epita.fr>
22978
aa5fd0ee
AD
22979 * src/reader.c (copy_definition): Use copy_string and
22980 copy_comment. Removed now unused `match', `ended',
22981 `cplus_comment'.
ae3c3164
AD
22982 (copy_comment, copy_string): Moved, to be visible from
22983 copy_definition.
22984
4dc58e7c
AD
229852000-03-17 Akim Demaille <akim@epita.fr>
22986
aa5fd0ee
AD
22987 * src/reader.c (copy_string): Declare `static inline'. No
22988 problems with inline, since it is checked by configure.
4dc58e7c
AD
22989 (copy_comment): Likewise.
22990
0a6384c4
AD
229912000-03-17 Akim Demaille <akim@epita.fr>
22992
aa5fd0ee 22993 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 22994
3cef001a
AD
229952000-03-17 Akim Demaille <akim@epita.fr>
22996
aa5fd0ee 22997 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
22998 (copy_action): Use it. Removed now unused `match', `ended',
22999 `cplus_comment'.
23000 (copy_guard): Likewise.
23001
ca36d2ef
AD
230022000-03-17 Akim Demaille <akim@epita.fr>
23003
aa5fd0ee 23004 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
23005 (copy_action): Use it.
23006 (copy_guard): Likewise.
23007
6666f98f
AD
230082000-03-17 Akim Demaille <akim@epita.fr>
23009
23010 Change the handling of @s so that they behave exactly like $s.
23011 There is now a pseudo variable @$ (readble and writable), location
23012 of the lhs of the rule (by default ranging from the location of
23013 the first symbol of the rhs, to the location of the last symbol,
23014 or, if the rhs is empty, YYLLOC).
23015
23016 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23017 yyval.
23018 (yyparse): When providing a default semantic action, provide a
23019 default location action.
23020 (after the $): No longer change `*YYLSP', just stack YYLOC the
23021 same way you stack YYVAL.
23022 * src/reader.c (read_declarations): Use warns.
23023 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23024 (copy_action, case '@'): Likewise.
23025 Use a standard error message, to save useless work from
23026 translators.
23027
41aca2e0
AD
230282000-03-17 Akim Demaille <akim@epita.fr>
23029
aa5fd0ee
AD
23030 * src/bison.s1: Formatting and cosmetics changes.
23031 * src/reader.c: Likewise.
41aca2e0
AD
23032 Update the Copyright notice.
23033
dc08c1d5
AD
230342000-03-17 Akim Demaille <akim@epita.fr>
23035
aa5fd0ee
AD
23036 * src/bison.s1 (#line): All set to `#line' only, since the
23037 Makefile now handles them.
dc08c1d5 23038
9ee3c97b
AD
230392000-03-16 Akim Demaille <akim@epita.fr>
23040
23041 * src/output.c (output_rule_data): Output the documentation of
23042 some of the tables.
23043 (Copyright notice): Update.
23044 Formatting changes.
23045
0de741ca
AD
230462000-03-16 Akim Demaille <akim@epita.fr>
23047
23048 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23049 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23050 One `#if YYDEBUG' remains, since it uses variables which are
23051 defined only if `YYDEBUG != 0'.
23052
bb10be54
AD
230532000-03-16 Akim Demaille <akim@epita.fr>
23054
23055 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23056 and related variables so that the similarities are highlighted.
23057
b07b484a
AD
230582000-03-16 Akim Demaille <akim@epita.fr>
23059
23060 * src/bison.s1: Properly indent CPP directives.
23061
361f60b3
AD
230622000-03-16 Akim Demaille <akim@epita.fr>
23063
23064 * src/bison.s1: Properly indent the `alloca' CPP section.
23065
8c44d3ec
AD
230662000-03-16 Akim Demaille <akim@epita.fr>
23067
23068 Do not hard code values of directories in `configure.in'.
23069 Update the `configure' tool chain.
23070
23071 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23072 src/makefile.am.
23073 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23074 (AC_OUTPUT): Add m4/Makefile.
23075 Bump to bison 1.28a, 1.29 has never been released.
23076 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23077 handled via src/Makefile.am.
23078 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23079 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23080 autoheader.
23081 * Makefile.am (SUBDIRS): Add m4.
23082 (ACLOCAL_AM_FLAGS): New variable.
23083 (AUTOMAKE_OPTIONS): Add check-news.
23084 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23085 the proper line number and file name.
23086 (DEFS): Propagate the location of bison library files and of the
23087 locale files.
23088 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23089 builddir.
23090 * acinclude.m4: Remove, replaced by the directory m4.
23091 * m4/Makefile.am (EXTRA_DIST): New variable.
23092 * m4/gettext.m4: New file, from the fileutils.
23093 * m4/lcmessage.m4: Likewise
23094 * m4/progtest.m4: Likewise.
23095 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23096
f95997e7
AD
230972000-03-10 Akim Demaille <akim@epita.fr>
23098
23099 * src/closure.c:
23100 Formatting changes of various comments.
23101 Respect the GNU coding standards at various places.
23102 Don't use `_()' when no translation is needed.
23103
231041999-12-13 Jesse Thilo <jthilo@gnu.org>
23105
23106 * src/files.c:
23107 OS/2 honors TMPDIR environment variable.
23108
231091999-12-13 Jesse Thilo <jthilo@gnu.org>
23110
23111 * doc/bison.texinfo: Tweaked spelling and grammar.
23112 Updated ISBN.
23113 Removed reference to price of printed copy.
23114 Mention BISON_SIMPLE and BISON_HAIRY.
23115
231161999-12-13 Jesse Thilo <jthilo@gnu.org>
23117
23118 * configure.in, NEWS:
23119 Bison 1.29 released.
23120
231211999-10-27 Jesse Thilo <jthilo@gnu.org>
23122
23123 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23124 Added reference card.
23125
231261999-07-26 Jesse Thilo <jthilo@gnu.org>
23127
23128 * po/ru.po: Added Russian translation.
23129
231301999-07-26 Jesse Thilo <jthilo@gnu.org>
23131
23132 * configure.in: Added Russian translation.
23133
231341999-07-06 Jesse Thilo <jthilo@gnu.org>
23135
23136 * configure.in, NEWS, README:
23137 Released version 1.28.
23138
231391999-06-14 Jesse Thilo <jthilo@gnu.org>
23140
23141 * src/system.h:
23142 Squashed redefinition warning on some systems.
23143
23144 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23145 Have configure build version string instead of relying on ANSI string
23146 concatentation.
23147
231481999-06-14 Jesse Thilo <jthilo@gnu.org>
23149
23150 * po/POTFILES.in: Got rid of version.c.
23151
231521999-06-14 Jesse Thilo <jthilo@gnu.org>
23153
23154 * acconfig.h, configure.in:
23155 Have configure build version string instead of relying on ANSI string
23156 concatentation.
23157
231581999-06-08 Jesse Thilo <jthilo@gnu.org>
23159
23160 * doc/bison.1:
23161 Dropped mention of `+' for long-named options.
23162
231631999-05-30 Jesse Thilo <jthilo@gnu.org>
23164
23165 * src/files.c: Added <unistd.h> for unlink().
23166
23167 * src/Makefile.am, src/system.h:
23168 I18n fixes.
23169
231701999-05-30 Jesse Thilo <jthilo@gnu.org>
23171
23172 * README: Added a FAQ list.
23173
23174 * configure.in, acconfig.h:
23175 I18n fixes.
23176
231771999-05-30 Jesse Thilo <jthilo@gnu.org>
23178
23179 * doc/FAQ, doc/Makefile.am:
23180 Added a FAQ list.
23181
231821999-05-19 Jesse Thilo <jthilo@gnu.org>
23183
23184 * src/alloc.h, src/symtab.h, src/version.c:
23185 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23186
231871999-04-18 Jesse Thilo <jthilo@gnu.org>
23188
23189 * src/.cvsignore, src/Makefile.am:
23190 Reorganized: sources in `src', documentation in `doc'.
23191
23192 * src/lex.c (literalchar):
23193 fixed the code for escaping double quotes (thanks
23194 Jonathan Czisny.)
23195
231961999-04-18 Jesse Thilo <jthilo@gnu.org>
23197
23198 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23199 Adjusted paths to reflect directory reorganization.
23200
232011999-04-18 Jesse Thilo <jthilo@gnu.org>
23202
23203 * doc/.cvsignore, doc/Makefile.am:
23204 Reorganized: sources in `src', documentation in `doc'.
23205
232061999-04-18 Jesse Thilo <jthilo@gnu.org>
23207
23208 * configure.in:
23209 Updated AC_INIT file to reflect directory reorganization.
23210
23211 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23212 Reorganized: sources in `src', documentation in `doc'.
23213
232141999-04-13 Jesse Thilo <jthilo@gnu.org>
23215
23216 * src/allocate.c:
23217 Don't declare calloc() and realloc() if not necessary.
23218
232191999-04-13 Jesse Thilo <jthilo@gnu.org>
23220
23221 * configure.in, acconfig.h, acinclude.m4:
23222 Don't declare calloc() and realloc() if not necessary.
23223
232241999-03-23 Jesse Thilo <jthilo@gnu.org>
23225
23226 * po/.cvsignore: Added i18n support.
23227
232281999-03-23 Jesse Thilo <jthilo@gnu.org>
23229
23230 * acconfig.h, configure.in, Makefile.am:
23231 Added i18n support.
23232
232331999-03-22 Jesse Thilo <jthilo@gnu.org>
23234
23235 * src/bison.s1: Fixed #line numbers.
23236
232371999-03-15 Jesse Thilo <jthilo@gnu.org>
23238
23239 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23240 Added PO files from Translation Project.
23241
232421999-03-03 Jesse Thilo <jthilo@gnu.org>
23243
23244 * Makefile.am:
23245 Added support for non-ANSI compilers (ansi2knr).
23246
232471999-02-16 Jesse Thilo <jthilo@gnu.org>
23248
23249 * configure.in: Bumped version number to 1.27.
23250
23251 * Makefile.am:
23252 Added `bison.simple' to list of files removed by `make distclean'.
23253
232541999-02-12 Jesse Thilo <jthilo@gnu.org>
23255
23256 * src/files.c, src/files.h:
23257 Defined locations of parser files in config.h instead of Makefile.
23258
232591999-02-12 Jesse Thilo <jthilo@gnu.org>
23260
23261 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23262 Defined locations of parser files in config.h instead of Makefile.
23263
232641999-02-09 Jesse Thilo <jthilo@gnu.org>
23265
23266 * Makefile.am:
23267 Removed inappropriate use of $< macro.
23268
232691999-02-05 Jesse Thilo <jthilo@gnu.org>
23270
23271 * po/Makefile.in.in, po/POTFILES.in:
23272 Add `po' directory skeleton.
23273
232741999-01-27 Jesse Thilo <jthilo@gnu.org>
23275
23276 * README: Document help-bison list.
23277
23278 * configure.in: Add check for mkstemp().
23279
232801999-01-20 Jesse Thilo <jthilo@gnu.org>
23281
23282 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23283 Hush a few compiler warnings.
23284
23285 * src/files.c:
23286 Add tryclose(), which verifies that fclose was successful.
23287 Hush a couple of compiler warnings.
23288
232891999-01-20 Jesse Thilo <jthilo@gnu.org>
23290
23291 * Makefile.am, OChangeLog:
23292 ChangeLog is now automatically generated. Include the old version as
23293 OChangeLog.
23294
232951999-01-14 Jesse Thilo <jthilo@gnu.org>
23296
23297 * 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:
23298 Update FSF address.
23299
233001999-01-14 Jesse Thilo <jthilo@gnu.org>
23301
23302 * doc/bison.texinfo: Fix formatting glitch.
23303
23304 * doc/bison.texinfo: Update FSF address.
23305
233061999-01-14 Jesse Thilo <jthilo@gnu.org>
23307
23308 * acconfig.h: Update FSF address.
23309
233101999-01-08 Jesse Thilo <jthilo@gnu.org>
23311
23312 * src/system.h:
23313 Don't define PACKAGE here, since config.h defines it.
23314
233151998-12-30 Jesse Thilo <jthilo@gnu.org>
23316
23317 * src/reader.c: Update copyright date.
23318
23319 * src/main.c:
23320 Ditch sprintf to statically-sized buffers in fatal/warn functions in
23321 favor of output directly to stderr (avoids buffer overruns).
23322
23323 * src/reader.c: Some checks for premature EOF.
23324
23325 * 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:
23326 Use prototypes if the compiler understands them.
23327
23328 * src/files.c: Honor TMPDIR on Unix hosts.
23329 Use prototypes if the compiler understands them.
23330
23331 * src/reader.c:
23332 Fix a couple of buffer overrun bugs.
23333 Use prototypes if the compiler understands them.
23334
23335 * src/system.h: Include unistd.h and ctype.h.
23336 Use #ifdef instead of #if for NLS symbols.
23337
233381998-12-30 Jesse Thilo <jthilo@gnu.org>
23339
23340 * doc/bison.texinfo:
23341 Delete comment "consider using @set for edition number, etc..." since
23342 we now are doing so.
23343
233441998-12-30 Jesse Thilo <jthilo@gnu.org>
23345
23346 * configure.in:
23347 Use prototypes if the compiler understands them.
23348
23349 * NEWS: Document 1.26 highlights.
23350
23351 * Makefile.am: Require Automake 1.3 or later.
23352
23353 * acconfig.h:
23354 Use prototypes if the compiler understands them.
23355
233561998-12-29 Jesse Thilo <jthilo@gnu.org>
23357
23358 * src/version.c:
23359 Use VERSION symbol from automake for version number.
23360
233611998-12-29 Jesse Thilo <jthilo@gnu.org>
23362
23363 * acconfig.h, configure.in, version.cin:
23364 Use VERSION symbol from automake for version number.
23365
233661998-11-28 Jesse Thilo <jthilo@gnu.org>
23367
23368 * Makefile.am:
23369 Distribute original version of simple parser (bison.s1), not built
23370 version (bison.simple).
23371
233721998-11-28 Jesse Thilo <jthilo@gnu.org>
23373
23374 * doc/bison.texinfo: Add info dir entry.
23375
23376 * doc/bison.texinfo:
23377 Let automake put version number into documentation.
23378
233791998-11-26 Jesse Thilo <jthilo@gnu.org>
23380
23381 * src/bison.cld, src/build.com, src/vmshlp.mar:
23382 Add non-RCS files from /gd/gnu/bison.
23383
233841998-11-26 Jesse Thilo <jthilo@gnu.org>
23385
23386 * doc/bison.1:
23387 Document the BISON_HAIRY and BISON_SIMPLE variables.
23388
233891998-11-25 Jesse Thilo <jthilo@gnu.org>
23390
23391 * src/version.c: Build version.c automatically.
23392
23393 * src/reader.c:
23394 Fix token numbering (used to start at 258, not 257).
23395
23396 * src/system.h: Include config.h.
23397
23398 * src/getargs.c: Update bug report address.
23399
23400 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23401 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23402
234031998-11-25 Jesse Thilo <jthilo@gnu.org>
23404
23405 * Makefile.am:
23406 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23407
23408 * configure.in, version.cin:
23409 Build version.c automatically.
23410
23411 * AUTHORS: Add AUTHORS file.
23412
23413 * README: Update bug report address.
23414
23415 * bison.simple:
23416 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23417
23418 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23419 Add automake stuff.
23420
234211998-11-25 Jesse Thilo <jthilo@gnu.org>
23422
23423 * doc/bison.texinfo: Clean up some formatting.
23424
234251998-05-05 Richard Stallman <rms@gnu.org>
23426
23427 * doc/bison.texinfo:
23428 Explain better why to make a pure parser.
23429
234301998-01-05 Richard Stallman <rms@gnu.org>
23431
23432 * src/files.c (openfiles):
23433 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23434 find a temporary directory, if possible. Do not unlink files while
23435 they are open.
23436
234371997-08-25 Richard Stallman <rms@gnu.org>
23438
23439 * src/reader.c (stack_offset;):
23440 Change some warni to warns.
23441
23442 * src/lex.c (literalchar): Use warns, not warni.
23443
234441997-06-28 Richard Stallman <rms@gnu.org>
23445
23446 * src/bison.s1: Add a Bison version comment.
23447
23448 * src/main.c (fatal, warn, berror):
23449 Use program_name.
23450
234511997-06-28 Richard Stallman <rms@gnu.org>
23452
23453 * Makefile.in (bison_version): New variable.
23454 (dist): Use that variable.
23455 (bison.s1): Substitute the Bison version into bison.simple.
23456
23457 * bison.simple: Add a Bison version comment.
23458
234591997-06-18 Richard Stallman <rms@gnu.org>
23460
23461 * src/main.c (fatal, warn, berror):
23462 Make error messages standard.
23463 (toomany): Improve error message text.
23464
23465 * 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:
23466 new.h renamed to alloc.h.
23467
234681997-06-18 Richard Stallman <rms@gnu.org>
23469
23470 * Makefile.in: new.h renamed to alloc.h.
23471
234721997-05-24 Richard Stallman <rms@gnu.org>
23473
23474 * src/lex.c (literalchar):
23475 Fix the code for escaping \, " and '.
23476
23477 (lex): Avoid trouble when there are many chars
23478 to discard in a char literal with just several chars in it.
23479
234801997-05-17 Richard Stallman <rms@gnu.org>
23481
23482 * src/bison.s1:
23483 Use malloc, if using alloca is troublesome.
23484 (YYSTACK_USE_ALLOCA): New flag macro.
23485 Define it for some systems and compilers.
23486 (YYSTACK_ALLOC): New macro.
23487 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23488 If it was malloc'd, free it.
23489
234901997-05-17 Richard Stallman <rms@gnu.org>
23491
23492 * bison.simple:
23493 Use malloc, if using alloca is troublesome.
23494 (YYSTACK_USE_ALLOCA): New flag macro.
23495 Define it for some systems and compilers.
23496 (YYSTACK_ALLOC): New macro.
23497 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23498 If it was malloc'd, free it.
23499
235001997-04-23 Richard Stallman <rms@gnu.org>
23501
23502 * src/bison.s1:
23503 (alloca) [__hpux]: Always define as __builtin_alloca.
23504
235051997-04-23 Richard Stallman <rms@gnu.org>
23506
23507 * bison.simple:
23508 (alloca) [__hpux]: Always define as __builtin_alloca.
23509
235101997-04-22 Richard Stallman <rms@gnu.org>
23511
23512 * src/bison.s1:
23513 [__hpux]: Include alloca.h (right for HPUX 10)
23514 instead of declaring alloca (right for HPUX 9).
23515
23516 * src/bison.s1 (__yy_memcpy):
23517 Declare arg `count' as unsigned int.
23518 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23519
235201997-04-22 Richard Stallman <rms@gnu.org>
23521
23522 * bison.simple:
23523 [__hpux]: Include alloca.h (right for HPUX 10)
23524 instead of declaring alloca (right for HPUX 9).
23525
23526 * bison.simple (__yy_memcpy):
23527 Declare arg `count' as unsigned int.
23528 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23529
235301997-01-03 Richard Stallman <rms@gnu.org>
23531
23532 * src/allocate.c: [__STDC__ or _MSC_VER]:
23533 Declare calloc and realloc to return void *.
23534
235351997-01-02 Richard Stallman <rms@gnu.org>
23536
23537 * src/system.h:
23538 [_MSC_VER]: Include stdlib.h and process.h.
23539 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23540
23541 * src/main.c (main): Return FAILURE as a value.
23542 (printable_version): Declare arg as int, not char.
23543
235441997-01-02 Richard Stallman <rms@gnu.org>
23545
23546 * Makefile.in (dist):
23547 Explicitly check for symlinks, and copy them.
23548
235491996-12-19 Richard Stallman <rms@gnu.org>
23550
23551 * src/files.c:
23552 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23553
235541996-12-18 Paul Eggert <eggert@gnu.org>
23555
23556 * src/bison.s1 (yyparse):
23557 If __GNUC__ and YYPARSE_PARAM are both defined,
23558 declare yyparse to have a void * argument.
23559
235601996-12-18 Paul Eggert <eggert@gnu.org>
23561
23562 * bison.simple (yyparse):
23563 If __GNUC__ and YYPARSE_PARAM are both defined,
23564 declare yyparse to have a void * argument.
23565
235661996-12-17 Richard Stallman <rms@gnu.org>
23567
23568 * src/reduce.c (nbits): Add some casts.
23569
235701996-08-12 Richard Stallman <rms@gnu.org>
23571
23572 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23573
235741996-08-12 Richard Stallman <rms@gnu.org>
23575
23576 * bison.simple: Test _MSDOS as well as _MSDOS_.
23577
235781996-07-31 Richard Stallman <rms@gnu.org>
23579
23580 * src/bison.s1:
23581 [__sun && __i386]: Include alloca.h.
23582
235831996-07-31 Richard Stallman <rms@gnu.org>
23584
23585 * bison.simple:
23586 [__sun && __i386]: Include alloca.h.
23587
235881996-07-30 Richard Stallman <rms@gnu.org>
23589
23590 * src/bison.s1: Comment change.
23591
23592 * src/bison.s1: Test _MSDOS_, not MSDOS.
23593
235941996-07-30 Richard Stallman <rms@gnu.org>
23595
23596 * bison.simple: Comment change.
23597
23598 * bison.simple: Test _MSDOS_, not MSDOS.
23599
236001996-06-01 Richard Stallman <rms@gnu.org>
23601
23602 * 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:
23603 Insert `_' macro around many string constants.
23604
23605 * src/main.c:
23606 Insert `_' macro around many string constants.
23607
23608 (main): Call setlocale, bindtextdomain and textdomain.
23609
23610 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23611 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23612 [ENABLE_NLS]: Include libintl.h.
23613 [ENABLE_NLS] (gettext): Define.
23614 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23615 (N_, PACKAGE, LOCALEDIR): New macros.
23616
236171996-06-01 Richard Stallman <rms@gnu.org>
23618
23619 * POTFILES.in: New file.
23620
23621 * Makefile.in (allocate.o):
23622 Define target explicitly.
23623
23624 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23625 (LDFLAGS): Set to @LDFLAGS@.
23626 (configure): Run autoconf only if preceding `cd' succeeds.
23627 (bison.s1): Redirect output to temporary file then move the
23628 temporary to the target, rather than redirecting directly to bison.s1.
23629 (clean): Remove config.status and config.log.
23630 (distclean): Don't remove config.status here.
23631
236321996-05-12 Richard Stallman <rms@gnu.org>
23633
23634 * src/bison.s1:
23635 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23636
236371996-05-12 Richard Stallman <rms@gnu.org>
23638
23639 * bison.simple:
23640 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23641
236421996-05-11 Richard Stallman <rms@gnu.org>
23643
23644 * src/bison.s1 (__yy_memcpy):
23645 Really reorder the args, as was supposedly done on Feb 14 1995.
23646 (yyparse): Calls changed accordingly.
23647
236481996-05-11 Richard Stallman <rms@gnu.org>
23649
23650 * Makefile.in (dist): Don't use $(srcdir).
23651
23652 * bison.simple (__yy_memcpy):
23653 Really reorder the args, as was supposedly done on Feb 14 1995.
23654 (yyparse): Calls changed accordingly.
23655
236561996-01-27 Richard Stallman <rms@gnu.org>
23657
23658 * src/output.c (output_rule_data):
23659 Test YYERROR_VERBOSE in the conditional
23660 around the definition of ttyname.
23661
236621995-12-29 Richard Stallman <rms@gnu.org>
23663
23664 * src/bison.s1:
23665 Fix line numbers in #line commands.
23666
236671995-12-29 Richard Stallman <rms@gnu.org>
23668
23669 * bison.simple:
23670 Fix line numbers in #line commands.
23671
236721995-12-27 Richard Stallman <rms@gnu.org>
23673
23674 * src/bison.s1 (YYPARSE_PARAM_DECL):
23675 In C++, make it always null.
23676 (YYPARSE_PARAM_ARG): New macro.
23677 (yyparse): Use YYPARSE_PARAM_ARG.
23678
236791995-12-27 Richard Stallman <rms@gnu.org>
23680
23681 * bison.simple (YYPARSE_PARAM_DECL):
23682 In C++, make it always null.
23683 (YYPARSE_PARAM_ARG): New macro.
23684 (yyparse): Use YYPARSE_PARAM_ARG.
23685
236861995-11-29 Richard Stallman <rms@gnu.org>
23687
23688 * doc/bison.texinfo:
23689 Describe literal string tokens, %raw, %no_lines, %token_table.
23690
236911995-11-29 Daniel Hagerty <hag@gnu.org>
23692
23693 * doc/bison.texinfo: Fixed update date
23694
236951995-10-16 Richard Stallman <rms@gnu.org>
23696
23697 * src/version.c: Version 1.25.
23698
236991995-10-16 Richard Stallman <rms@gnu.org>
23700
23701 * NEWS: *** empty log message ***
23702
237031995-10-16 Richard Stallman <rms@gnu.org>
23704
23705 * doc/bison.1, doc/bison.rnh:
23706 Add new options.
23707
237081995-10-15 Richard Stallman <rms@gnu.org>
23709
23710 * src/vmsgetargs.c, src/getargs.c:
23711 Added -n, -k, and -raw switches.
23712 (noparserflag, toknumflag, rawtoknumflag): New variables.
23713
23714 * src/symtab.h (SALIAS):
23715 New #define for adding aliases to %token.
23716 (struct bucket): Added `alias' field.
23717
23718 * src/reduce.c (reduce_grammar):
23719 Revise error message.
23720 (print_notices): Remove final `.' from error message.
23721
23722 * src/reader.c (reader_output_yylsp):
23723 New function.
23724 (readgram): Use `#if 0' around code that accepted %command
23725 inside grammar rules: The documentation doesn't allow it,
23726 and it will fail since the %command processors scan for the next %.
23727 (parse_token_decl): Extended the %token
23728 declaration to allow a multi-character symbol as an alias.
23729 (parse_thong_decl): New function.
23730 (read_declarations): Added %thong declarations.
23731 (read_declarations): Handle NOOP to deal with allowing
23732 % declarations as another means to specify the flags.
23733 (readgram): Allow %prec prior to semantics embedded in a rule.
23734 (skip_to_char, read_declarations, copy_definition)
23735 (parse_token_decl, parse_start_decl, parse_type_decl)
23736 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23737 (get_type_name, copy_guard, copy_action, readgram)
23738 (get_type, packsymbols): Revised most error messages.
23739 Changed `fatal' to `warnxxx' to avoid aborting for error.
23740 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23741 (read_declarations): Improve the error message for
23742 an invalid character. Do not abort.
23743 (read_declarations, copy_guard, copy_action): Use
23744 printable_version to avoid unprintable characters in printed output.
23745 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23746 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23747 Allow the type of a non-terminal can be given
23748 more than once, as long as all specifications give the same type.
23749
23750 * src/output.c:
23751 (output_headers, output_trailers, output, output_gram)
23752 (output_rule_data): Implement noparserflag variable.
23753 Implement toknumflag variable.
23754 (output): Call reader_output_yylsp to output LTYPESTR.
23755
23756 * src/main.c (main):
23757 If reader sees an error, don't process the grammar.
23758 (fatals): Updated to not use VARARGS1.
23759 (printable_version, int_to_string, warn, warni, warns, warnss)
23760 (warnsss): New error reporting functions. Avoid abort for error.
23761
23762 * src/lex.h:
23763 Added THONG and NOOP for alias processing.
23764 Added SETOPT for the new code that allows setting options with %flags.
23765
23766 * src/lex.c:
23767 Include getopt.h. Add some extern decls.
23768 (safegetc): New function to deal with EOF gracefully.
23769 (literalchar); new function to deal with reading \ escapes.
23770 (lex): Use literalchar.
23771 (lex): Implemented "..." tokens.
23772 (literalchar, lex, parse_percent_token): Made tokenbuffer
23773 always contain the token. This includes growing the token
23774 buffer while reading an integer.
23775 (parse_percent_token): Replaced if-else statement with percent_table.
23776 (parse_percent_token): Added % declarations as another
23777 way to specify the flags -n, -l, and -r. Also added hooks for
23778 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23779 major changes to files.c.
23780 (lex) Retain in the incoming stream a character following
23781 an incorrect '/'.
23782 (skip_white_space, lex): Revised most error messages
23783 and changed fatal to warn to avoid aborting.
23784 (percent_table): Added %thong declarations.
23785
23786 * src/gram.h: Comment changes.
23787
23788 * src/files.c (openfiles, open_extra_files, done):
23789 Add faction flag
23790 and actfile file. Handle noparserflag. Both for -n switch.
23791
23792 * src/conflicts.c (resolve_sr_conflict):
23793 Remove use of alloca.
23794
237951995-06-01 Jim Meyering <meyering@gnu.org>
23796
23797 * doc/bison.texinfo: *** empty log message ***
23798
237991995-05-06 Richard Stallman <rms@gnu.org>
23800
23801 * src/bison.s1: Comment change.
23802
238031995-05-06 Richard Stallman <rms@gnu.org>
23804
23805 * bison.simple: Comment change.
23806
238071995-05-03 Richard Stallman <rms@gnu.org>
23808
23809 * src/version.c: Version now 1.24.
23810
23811 * src/bison.s1: Change distribution terms.
23812
23813 * src/version.c: Version now 1.23.
23814
238151995-05-03 Richard Stallman <rms@gnu.org>
23816
23817 * doc/bison.texinfo:
23818 Rewrite "Conditions for Using Bison".
23819 Update version to 1.24.
23820
238211995-05-03 Richard Stallman <rms@gnu.org>
23822
23823 * bison.simple: Change distribution terms.
23824
238251995-02-23 Richard Stallman <rms@gnu.org>
23826
23827 * src/files.c: Test __VMS_POSIX as well as VMS.
23828
238291995-02-14 Jim Meyering <meyering@gnu.org>
23830
23831 * src/bison.s1 (__yy_memcpy):
23832 Renamed from __yy_bcopy to avoid
23833 confusion. Reverse FROM and TO arguments to be consistent with
23834 those of memcpy.
23835
238361995-02-14 Jim Meyering <meyering@gnu.org>
23837
23838 * bison.simple (__yy_memcpy):
23839 Renamed from __yy_bcopy to avoid
23840 confusion. Reverse FROM and TO arguments to be consistent with
23841 those of memcpy.
23842
238431994-11-10 David J. MacKenzie <djm@gnu.org>
23844
23845 * NEWS: reformat
23846
23847 * NEWS: New file.
23848
23849 * Makefile.in (DISTFILES): Include NEWS.
23850
23851 * Makefile.in (DISTFILES):
23852 Include install-sh, not install.sh.
23853
23854 * configure.in: Update to Autoconf v2 macro names.
23855
238561994-10-05 David J. MacKenzie <djm@gnu.org>
23857
23858 * Makefile.in: fix typo
23859
23860 * Makefile.in (prefix, exec_prefix):
23861 Let configure set them.
23862
238631994-09-28 David J. MacKenzie <djm@gnu.org>
23864
23865 * Makefile.in: Set datadir to $(prefix)/share.
23866
238671994-09-15 Richard Stallman <rms@gnu.org>
23868
23869 * src/bison.s1:
23870 Update copyright notice and GPL version.
23871
238721994-09-15 Richard Stallman <rms@gnu.org>
23873
23874 * bison.simple:
23875 Update copyright notice and GPL version.
23876
238771994-07-12 Richard Stallman <rms@gnu.org>
23878
23879 * src/reduce.c, src/reader.c:
23880 entered into RCS
23881
238821994-05-05 David J. MacKenzie <djm@gnu.org>
23883
23884 * Makefile.in: entered into RCS
23885
238861994-03-26 Richard Stallman <rms@gnu.org>
23887
23888 * src/bison.s1: entered into RCS
23889
238901994-03-26 Richard Stallman <rms@gnu.org>
23891
23892 * bison.simple: entered into RCS
23893
238941994-03-25 Richard Stallman <rms@gnu.org>
23895
23896 * src/main.c: entered into RCS
23897
238981994-03-24 Richard Stallman <rms@gnu.org>
23899
23900 * src/conflicts.c: entered into RCS
23901
239021994-01-02 Richard Stallman <rms@gnu.org>
23903
23904 * Makefile.in: *** empty log message ***
23905
239061993-11-21 Richard Stallman <rms@gnu.org>
23907
23908 * src/bison.s1: *** empty log message ***
23909
239101993-11-21 Richard Stallman <rms@gnu.org>
23911
23912 * doc/bison.texinfo: entered into RCS
23913
23914 * doc/bison.texinfo: *** empty log message ***
23915
239161993-11-21 Richard Stallman <rms@gnu.org>
23917
23918 * bison.simple: *** empty log message ***
23919
239201993-10-25 David J. MacKenzie <djm@gnu.org>
23921
23922 * doc/bison.texinfo: *** empty log message ***
23923
239241993-10-19 Richard Stallman <rms@gnu.org>
23925
23926 * src/bison.s1: *** empty log message ***
23927
239281993-10-19 Richard Stallman <rms@gnu.org>
23929
23930 * bison.simple: *** empty log message ***
23931
239321993-10-14 Richard Stallman <rms@gnu.org>
23933
23934 * src/bison.s1: *** empty log message ***
23935
239361993-10-14 Richard Stallman <rms@gnu.org>
23937
23938 * bison.simple: *** empty log message ***
23939
239401993-09-14 David J. MacKenzie <djm@gnu.org>
23941
23942 * doc/bison.texinfo: *** empty log message ***
23943
239441993-09-13 Noah Friedman <friedman@gnu.org>
23945
23946 * Makefile.in: *** empty log message ***
23947
239481993-09-10 Richard Stallman <rms@gnu.org>
23949
23950 * src/conflicts.c: *** empty log message ***
23951
23952 * src/system.h: entered into RCS
23953
239541993-09-10 Richard Stallman <rms@gnu.org>
23955
23956 * doc/bison.1: entered into RCS
23957
239581993-09-06 Noah Friedman <friedman@gnu.org>
23959
23960 * src/version.c: entered into RCS
23961
239621993-09-06 Noah Friedman <friedman@gnu.org>
23963
23964 * Makefile.in: *** empty log message ***
23965
239661993-07-30 David J. MacKenzie <djm@gnu.org>
23967
23968 * Makefile.in: *** empty log message ***
23969
239701993-07-24 Richard Stallman <rms@gnu.org>
23971
23972 * src/bison.s1: *** empty log message ***
23973
239741993-07-24 Richard Stallman <rms@gnu.org>
23975
23976 * bison.simple: *** empty log message ***
23977
239781993-07-08 David J. MacKenzie <djm@gnu.org>
23979
23980 * Makefile.in: *** empty log message ***
23981
239821993-07-04 Richard Stallman <rms@gnu.org>
23983
23984 * src/bison.s1: *** empty log message ***
23985
239861993-07-04 Richard Stallman <rms@gnu.org>
23987
23988 * bison.simple: *** empty log message ***
23989
239901993-06-26 David J. MacKenzie <djm@gnu.org>
23991
23992 * src/getargs.c: entered into RCS
23993
239941993-06-26 David J. MacKenzie <djm@gnu.org>
23995
23996 * doc/bison.texinfo: *** empty log message ***
23997
23998 * doc/bison.1: New file.
23999
240001993-06-25 Richard Stallman <rms@gnu.org>
24001
24002 * src/getargs.c: New file.
24003
240041993-06-16 Richard Stallman <rms@gnu.org>
24005
24006 * src/bison.s1: *** empty log message ***
24007
240081993-06-16 Richard Stallman <rms@gnu.org>
24009
24010 * bison.simple: *** empty log message ***
24011
240121993-06-03 Richard Stallman <rms@gnu.org>
24013
24014 * src/bison.s1: New file.
24015
240161993-06-03 Richard Stallman <rms@gnu.org>
24017
24018 * doc/bison.texinfo: *** empty log message ***
24019
240201993-06-03 Richard Stallman <rms@gnu.org>
24021
24022 * bison.simple: New file.
24023
240241993-05-19 Richard Stallman <rms@gnu.org>
24025
24026 * doc/bison.texinfo: New file.
24027
240281993-05-07 Noah Friedman <friedman@gnu.org>
24029
24030 * Makefile.in: *** empty log message ***
24031
240321993-04-28 Noah Friedman <friedman@gnu.org>
24033
24034 * src/reader.c: *** empty log message ***
24035
240361993-04-23 Noah Friedman <friedman@gnu.org>
24037
24038 * src/alloc.h: entered into RCS
24039
240401993-04-20 David J. MacKenzie <djm@gnu.org>
24041
24042 * src/version.c: *** empty log message ***
24043
24044 * src/files.c, src/allocate.c:
24045 entered into RCS
24046
24047 * src/reader.c: *** empty log message ***
24048
24049 * src/lex.c: entered into RCS
24050
24051 * src/conflicts.c: New file.
24052
24053 * src/symtab.c: entered into RCS
24054
24055 * src/alloc.h: New file.
24056
24057 * src/LR0.c: entered into RCS
24058
240591993-04-18 Noah Friedman <friedman@gnu.org>
24060
24061 * src/reader.c: New file.
24062
24063 * src/version.c: *** empty log message ***
24064
240651993-04-18 Noah Friedman <friedman@gnu.org>
24066
24067 * Makefile.in: *** empty log message ***
24068
240691993-04-17 Noah Friedman <friedman@gnu.org>
24070
24071 * Makefile.in: *** empty log message ***
24072
240731993-04-15 Richard Stallman <rms@gnu.org>
24074
24075 * src/main.c, src/files.c:
24076 New file.
24077
240781993-04-15 Noah Friedman <friedman@gnu.org>
24079
24080 * configure.in: entered into RCS
24081
24082 * configure.in: *** empty log message ***
24083
24084 * configure.in: New file.
24085
240861993-04-14 Richard Stallman <rms@gnu.org>
24087
24088 * Makefile.in: New file.
24089
240901993-04-13 Richard Stallman <rms@gnu.org>
24091
24092 * src/version.c: New file.
24093
240941993-03-25 Richard Stallman <rms@gnu.org>
24095
24096 * src/output.c: entered into RCS
24097
240981992-09-25 Richard Stallman <rms@gnu.org>
24099
24100 * configure.bat: entered into RCS
24101
241021992-06-22 Richard Stallman <rms@gnu.org>
24103
24104 * src/vmsgetargs.c: entered into RCS
24105
241061992-06-22 Richard Stallman <rms@gnu.org>
24107
24108 * doc/bison.rnh: entered into RCS
24109
241101992-04-20 David J. MacKenzie <djm@gnu.org>
24111
24112 * README: entered into RCS
24113
241141992-01-22 Richard Stallman <rms@gnu.org>
24115
24116 * src/machine.h: entered into RCS
24117
241181991-12-21 Richard Stallman <rms@gnu.org>
24119
24120 * src/lalr.c, src/closure.c:
24121 entered into RCS
24122
241231991-12-20 Richard Stallman <rms@gnu.org>
24124
24125 * src/state.h: entered into RCS
24126
241271991-12-18 Richard Stallman <rms@gnu.org>
24128
24129 * src/print.c, src/nullable.c, src/derives.c:
24130 entered into RCS
24131
241321991-11-03 David J. MacKenzie <djm@gnu.org>
24133
24134 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24135 entered into RCS
24136
241371988-09-09 Richard Stallman <rms@gnu.org>
24138
24139 * src/bison.hairy: entered into RCS
24140
241411987-12-16 Richard Stallman <rms@gnu.org>
24142
24143 * REFERENCES: entered into RCS
dc546b0f 24144
f294a2c2 24145
04098407 24146 -----
f294a2c2 24147
04098407 24148 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e021191b
JD
24149 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
24150 2008, 2009 Free Software Foundation, Inc.
f294a2c2 24151
04098407
PE
24152 Copying and distribution of this file, with or without
24153 modification, are permitted provided the copyright notice and this
24154 notice are preserved.