]> git.saurik.com Git - bison.git/blame - ChangeLog
Minor code cleanup.
[bison.git] / ChangeLog
CommitLineData
10659d0e
JD
12009-10-07 Joel E. Denny <jdenny@clemson.edu>
2
3 Minor code cleanup.
4 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
5 replace all uses with UNIQSTR_CONCAT.
6 * src/uniqstr.c (uniqstr_vsprintf): New function.
7 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
8 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
9 macros.
10
3c5362b8
JD
112009-10-06 Joel E. Denny <jdenny@clemson.edu>
12
13 * TODO (Complaint submessage indentation): New.
14
b143f404
JD
152009-10-04 Joel E. Denny <jdenny@clemson.edu>
16
17 Minor code cleanup.
18 * src/parse-gram.y: Clean up sorting of declarations.
19 Use types to simplify %printer declarations where possible.
20 Provide %printer for BRACKETED_ID and symbol.prec.
21 * src/symtab.c: Whitespace change.
22
7439c5c0
JD
232009-10-04 Joel E. Denny <jdenny@clemson.edu>
24
25 tests: skip tests of file names that platform does not support.
26 Reported by Michael Raskin at
27 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
28 * THANKS (Michael Raskin): Add.
29 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
30 to fail at least for file names containing ":" or "\".
31
45319f13
JD
322009-09-23 Joel E. Denny <jdenny@clemson.edu>
33
34 yysyntax_error: avoid duplicate lookahead collection.
35 Except when memory reallocation is required, this change
36 eliminates the need to invoke yysyntax_error twice and thus to
37 repeat the collection of lookaheads. It also prepares for
38 future extensions that will make those repetitions more
39 expensive and that will require additional memory management in
40 yysyntax_error. Finally, it fixes an obscure bug already
41 exercised in the test suite.
42 * data/yacc.c (yysyntax_error): Add arguments for message
43 buffer variables stored in the parser. Instead of size, return
44 status similar to yyparse status but indicating success of
45 message creation. Other than the actual reallocation of the
46 message buffer, import and clean up memory management code
47 from...
48 (yyparse, yypush_parse): ... here.
49 * tests/regression.at (parse.error=verbose overflow): No longer
50 an expected failure.
51
52cea04a
JD
522009-09-23 Joel E. Denny <jdenny@clemson.edu>
53
54 yysyntax_error: test memory management more.
55 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
56 * tests/regression.at (parse.error=verbose and
57 YYSTACK_USE_ALLOCA): New test group.
58 (parse.error=verbose overflow): New test group that reveals an
59 obscure bug. Expected fail for now.
60
37318e2f
JD
612009-10-04 Joel E. Denny <jdenny@clemson.edu>
62
63 benchmarks: use %debug consistently among grammars.
64 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
65 %debug by default. It can affect the timings even if yydebug=0.
66 (generate_grammar_calc): For consistency with other grammars,
67 use YYDEBUG environment variable to set yydebug.
68
f74d6d25
JD
692009-10-03 Joel E. Denny <jdenny@clemson.edu>
70
71 Remove dead code.
72 * src/symtab.c (symbol_pack): Here because every symbol's number
73 is always defined by this time.
74
5b1ff423
AR
752009-10-03 Alex Rozenman <rozenman@gmail.com>
76
77 Add additional space after periods in NEWS.
78 * NEWS (2.5): here.
79
47eced30
JD
802009-09-29 Joel E. Denny <jdenny@clemson.edu>
81
82 Use the correct conversion specifier for size_t.
83 Reported by Jim Meyering.
84 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
85 because Sbitset__Index is size_t.
86 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
87
d8f68fc2
JD
882009-09-27 Joel E. Denny <jdenny@clemson.edu>
89
90 tests: don't abuse AT_BISON_CHECK.
91 * tests/regression.at (parse-gram.y: LALR = IELR): Move
92 additional shell commands outside of AT_BISON_CHECK.
93
43aabb70
JD
942009-09-26 Joel E. Denny <jdenny@clemson.edu>
95
96 tests: check that parse-gram.y's IELR and LALR are identical.
97 * tests/atlocal.in (abs_top_srcdir): New shell variable.
98 * tests/regression.at (parse-gram.y: LALR = IELR): New test
99 group.
100
66381412
AR
1012009-09-19 Alex Rozenman <rozenman@gmail.com>
102
103 Keep sub-messages aligned. Fix strings for translation.
5b1ff423
AR
104 * src/location.h (location_print): Add return value.
105 * src/location.c (location_print): Return number of printed
66381412 106 characters.
5b1ff423
AR
107 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
108 new functions.
109 * src/complain.cpp (indent_ptr): New static variable.
110 (error_message, complain_at_indent, warn_at_indent): Implement
111 the alignment mechanism.
112 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
113 for translations. Use new alignment mechanism.
114 * tests/named-ref.at: Adjust test-cases.
66381412
AR
115 * NEWS (2.5): Add an announcement about named references.
116
a6ca4ce2
AD
1172009-09-17 Akim Demaille <demaille@gostai.com>
118
119 doc: fixes.
120 * doc/bison.texinfo: here.
121 Reported by Alex Rozenman.
122
3cdc21cf
AD
1232009-09-16 Akim Demaille <demaille@gostai.com>
124
125 doc: lalr1.cc and variants.
126 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
127 "variant" %define variables.
128 (C++ Semantic Values): Split into...
129 (C++ Unions, C++ Variants): these.
130 The latter is new.
131 (C++ Parser Interface): Fix type names.
132 Document parser::syntax_error.
133 Document the fact that locations are not mandatory.
134 (C++ Scanner Interface): Split into...
135 (Split Symbols, Complete Symbols): these.
136 The later is new.
137 (Calc++ Parsing Driver): Use variants.
138 Add more comments.
139 Adjust style.
140 (Calc++ Parser): Declare all the tokens, no
141 longer accept raw characters.
142 Remove %union.
143 Adjust types and printers.
144 Remove destructors.
145 (Calc++ Scanner): Use make_<SYMBOL> functions.
146 Use strerror in error message.
147
f50bfcd6
AD
1482009-09-16 Akim Demaille <demaille@gostai.com>
149
150 doc: spell checking.
151 * doc/bison.texinfo: here.
152
6b5a0de9
AD
1532009-09-16 Akim Demaille <demaille@gostai.com>
154
155 doc: comment changes.
156 * doc/bison.texinfo: Comment changes.
157
2b08bceb
AD
1582009-09-16 Akim Demaille <demaille@gostai.com>
159
160 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
161 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
162 constructor to take a token_type instead of the (internal) symbol
163 number.
164 Call yytranslate_.
165 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
166 don't call yytranslate_ here.
167
c981ce9b
AD
1682009-09-16 Akim Demaille <demaille@gostai.com>
169
170 TODO: statistics.
171 * TODO (Figures): New.
172
00d80a9c
JD
1732009-09-13 Joel E. Denny <jdenny@clemson.edu>
174
175 tests: clean up push.at test group titles.
176 * tests/push.at: Remove "Push Parsing: " from test group titles
177 because these are already under the banner "Push Parsing Tests".
178
f64e406b
AR
1792009-09-12 Alex Rozenman <rozenman@gmail.com>
180
181 Provide an additional sub-message for clarity.
182 Add "symbol not found in production" error message when
183 an "invalid reference" is detected in named references
184 resolution.
185 * src/scan-code.l: Update "invalid reference" case.
186 * tests/named-ref.at: Adjust test-cases.
187
bb31eb56
JD
1882009-09-10 Joel E. Denny <jdenny@clemson.edu>
189
190 Clean up yacc.c a little.
191 * data/yacc.c: Clean up M4 for readability, and make output
192 whitespace more consistent. For the main parse function
193 comment, instead of saying "yyparse or yypush_parse", say either
194 "yyparse" or "yypush_parse" depending on which it actually is.
195
2d399888
JD
1962009-09-10 Joel E. Denny <jdenny@clemson.edu>
197
198 Fix --enable-gcc-warnings.
199 * src/parse-gram.y (%printer <param>): Handle param_none.
200
ff601366
AD
2012009-09-09 Akim Demaille <demaille@gostai.com>
202
203 lalr1.cc: syntax_error as exceptions.
204 It is common to use sort of factories in the user actions. These
205 factories may check some "syntactic" constraints that are not
206 enforced by the grammar itself. This is possible using YYERROR
207 within the action itself. Provide the user with a means to throw
208 a syntax_error exception.
209
210 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
211 Declare and define yy::parser::syntax_error.
212 * data/lalr1.cc: Include stdexcept.
213 (yy::parser::parse): Wrap the user action within a try/catch.
214 * data/glr.cc: Include stdexcept.
215
29660062
AD
2162009-09-09 Akim Demaille <demaille@gostai.com>
217
218 lalr1.cc: add missing "inline".
219 * data/c++.m4 (b4_public_types_define): Add missing inline to
220 implementations provided in headers.
221
2055a44e
AD
2222009-09-09 Akim Demaille <demaille@gostai.com>
223
224 %param: documentation.
225 * NEWS (2.6): Document %param, %lex-param, and %parse-param
226 changes.
227 * doc/bison.texinfo: Document that %lex-param and %parse-param
228 are n-ary.
229 Changes some examples to demonstrate it.
230 (Calc++ Parser): Use %param.
231
dd875058
AD
2322009-09-09 Akim Demaille <demaille@gostai.com>
233
234 Regen.
235
f71db70b
AD
2362009-09-09 Akim Demaille <demaille@gostai.com>
237
238 style changes.
239 * src/parse-gram.y (add_param): Scope changes.
240
eaca4c11
AD
2412009-09-09 Akim Demaille <demaille@gostai.com>
242
243 %parse: support several arguments.
244 * src/parse-gram.y (current_param): New.
245 (param_type): Add param_none.
246 (params): New nonterminal.
247 Use it.
248
b18cdd91
AD
2492009-09-09 Akim Demaille <demaille@gostai.com>
250
251 Regen.
252
a7706735
AD
2532009-09-09 Akim Demaille <demaille@gostai.com>
254
255 %param.
256 Provide a means to factor lex-param and parse-param common
257 declarations.
258
259 * src/parse-gram.y (param_type): New.
260 Define a %printer for it.
261 (add_param): Use it.
262 (%parse-param, %lex-param): Merge into...
263 (%parse): this new token.
264 Adjust the grammar to use it.
265 * src/scan-gram.l (RETURN_VALUE): New.
266 (RETURN_PERCENT_FLAG): Use it.
267 (RETURN_PERCENT_PARAM): New.
268 Use it to support %parse-param, %lex-param and %param.
269
9789acf0
JD
2702009-09-03 Joel E. Denny <jdenny@clemson.edu>
271
272 Use aver not assert.
273 * src/output.c: Don't include assert.h.
274 (output_skeleton): Use aver not assert.
275 * src/system.h (aver): In documentation of why, add links to
276 Paul Eggert's explanations in the mailing lists.
277
61bc57e5
AR
2782009-09-05 Alex Rozenman <rozenman@gmail.com>
279
280 Use "Unresolved reference" error message when no symbols were found
281 in a symbolic reference resolution. Remove .expr and -expr from
282 the shown reference when the reference is unresolved.
283 * src/scan-code.l: Change the error message, adjust location columns,
284 rename variable "exact_mode" to "explicit_bracketing".
285 * tests/named-ref.at: Adjust existing tests and add a new one.
286
f4c75eaf
AD
2872009-09-04 Akim Demaille <demaille@gostai.com>
288
289 Adjust synclines in src/parse-gram.[ch].
290 * tests/bison.in: Do some magic (including working around issues
291 with ylwrap) when this wrapper is used to compile
292 src/parse-gram.y.
293
c6abeab1
JD
2942009-09-03 Joel E. Denny <jdenny@clemson.edu>
295
296 Complain about unused %define variables and %code qualifiers.
297 * NEWS (2.5): Document.
298 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
299 * doc/bison.texinfo (Decl Summary): Document complaint, and
300 improve %define documentation a little otherwise.
301 * tests/input.at (Reject unused %code qualifiers): Update.
302 (%define errors): Update.
303 (%define, --define, --force-define): Update.
304 (%define backward compatibility): Update.
305 (Unused %define api.pure): Update.
306 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
307
82db7cdb
JD
3082009-09-03 Joel E. Denny <jdenny@clemson.edu>
309
310 Don't suppress warnings about unused parse.error.
311 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
312 %define variable parse.error unless b4_error_verbose_flag is
313 actually expanded in a skeleton.
314
2755de8f
AD
3152009-09-03 Akim Demaille <demaille@gostai.com>
316
317 * NEWS (2.4.2): Add "Internationalization" item.
318
1deef26d
AD
3192009-09-03 Akim Demaille <demaille@gostai.com>
320
321 bootstrap: fix/improve find_tool.
322 * bootstrap (find_tool): Improve error messages.
323 Fix typo about find_tool_names.
324
2646cd54
JD
3252009-08-29 Joel E. Denny <jdenny@clemson.edu>
326
327 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
328 See
329 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
330 * src/scan-code.h (code_props_rule_action_init): Rename
331 named_ref arg to name so it doesn't shadow named_ref type. This
332 makes it consistent with the function definition in scan-code.l
333 anyway.
334
cf499cff
JD
3352009-08-28 Joel E. Denny <jdenny@clemson.edu>
336
337 %define: accept unquoted values.
338 * NEWS (2.5): Group all %define changes together, and document
339 this one. Remove quotes in IELR and canonical LR entry.
340 * doc/bison.texinfo: Remove quotes in most examples throughout.
341 (Decl Summary): Update %define documentation.
342 (Table of Symbols): Likewise.
343 * src/ielr.c (LrType): Update documentation.
344 * src/parse-gram.y (content.opt): Add production for ID.
345 * tests/actions.at: Remove quotes in most tests.
346 * tests/calc.at: Likewise.
347 * tests/existing.at: Likewise.
348 * tests/input.at: Likewise.
349 * tests/local.at: Likewise.
350 * tests/push.at: Likewise.
351 * tests/reduce.at: Likewise.
352 * tests/torture.at: Likewise.
353
6ba96404
JD
3542009-08-28 Joel E. Denny <jdenny@clemson.edu>
355
356 %define lr.type: make values lowercase IDs.
357 That is, "LALR" => "lalr", "IELR" => "ielr", and
358 "canonical LR" => "canonical-lr".
359 * NEWS (2.5): Update documentation.
360 * doc/bison.texinfo (Decl Summary): Likewise.
361 * src/ielr.c (ielr): Use new values.
362 * src/ielr.h (ielr): Update documentation.
363 * src/reader.c (prepare_percent_define_front_end_variables): Use
364 and validate new values.
365 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
366 grammars.
367 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
368
4413bbd3
EB
3692009-08-27 Eric Blake <ebb9@byu.net>
370
371 scan-gram: avoid portability trap with ctype usage.
372 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
373 Avoid compiler warning.
374
b70c7fb4
JD
3752009-08-27 Joel E. Denny <jdenny@clemson.edu>
376
377 tests: use perl for printing special sequences to files.
378 And skip tests if perl is not available. This is better than
379 playing tricks with shell portability. Suggested by Akim
380 Demaille.
381 * tests/input.at (Bad character literals): Use it here for
382 omitting final newlines.
383 (Bad escapes in literals): Use it here for special characters.
384
d1cc31c5
JD
3852009-08-26 Joel E. Denny <jdenny@clemson.edu>
386
387 tests: show a use of %define lr.default-reductions "consistent"
388 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
389 prevents the omission of expected tokens for %error-verbose.
390
3bed3a75
AD
3912009-08-26 Akim Demaille <demaille@gostai.com>
392
393 tests: portability fix.
394 * tests/input.at (Bad escapes in literals): Don't expect "echo
395 '\0'" to output \ then 0.
396
aa0cb40d
JD
3972009-08-26 Joel E. Denny <jdenny@clemson.edu>
398
399 Actually handle the yytable zero value correctly this time.
400 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
401 zero values in the YYTABLE comments.
402 * data/glr.c (yytable_value_is_error): Don't check for zero
403 value.
404 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
405 * data/yacc.c (yytable_value_is_error): Likewise.
406 * data/lalr1.java (yy_table_value_is_error_): Likewise.
407 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
408 * src/tables.h: In header comments, explain why it's useless to
409 check for a zero value in yytable.
410
f2b30bdf
JD
4112009-08-25 Joel E. Denny <jdenny@clemson.edu>
412
413 More fixes related to last two patches.
414 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
415 comments: zero indicates syntax error not default action.
416 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
417 defined.
418 * data/glr.c (yyis_pact_ninf): Rename to...
419 (yypact_value_is_default): ... this.
420 (yyisDefaultedState): Update for rename.
421 (yyis_table_ninf): Rename to...
422 (yytable_value_is_error): ... this, and check for value zero
423 besides just YYTABLE_NINF.
424 (yygetLRActions): Check for default value from yypact. It
425 appears that this check is always performed before this function
426 is invoked, and so adding the check here is probably redundant.
427 However, the code may evolve after this subtlety is forgotten.
428 Also, update for rename to yytable_value_is_error. Because that
429 macro now checks for zero, a different but equivalent branch of
430 the if-then-else here is evaluated.
431 (yyreportSyntaxError): Update for rename to
432 yytable_value_is_error. The zero condition was mishandled
433 before.
434 (yyrecoverSyntaxError): Update for renames. No behavioral
435 changes.
436 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
437 New function.
438 (yy_table_value_is_error_): New function.
439 (parse): Use new functions where possible. No behavioral
440 changes.
441 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
442 The zero condition was mishandled before.
443 * data/yacc.c (yyis_pact_ninf): Rename to...
444 (yypact_value_is_default): ... this.
445 (yyis_table_ninf): Rename to...
446 (yytable_value_is_error): ... this, and check for value zero
447 besides just YYTABLE_NINF.
448 (yysyntax_error): Update for rename to yytable_value_is_error.
449 The zero condition was mishandled before.
450 (yyparse): Update for renames. No behavioral changes.
451 * src/tables.h: Improve comments about yypact, yytable, etc.
452 more. Most importantly, say yytable value of zero means syntax
453 error not default action.
454
53f036ce
JD
4552009-08-25 Joel E. Denny <jdenny@clemson.edu>
456
457 Fix %error-verbose for conflicts resolved by %nonassoc.
458 * NEWS (2.5): Document.
459 * data/glr.c (yyreportSyntaxError): Fix this by checking
460 yyis_table_ninf.
461 * data/yacc.c (yysyntax_error): Likewise.
462 * data/lalr1.cc (yysyntax_error_): Fix this by checking
463 yytable_ninf_.
464 * data/lalr1.java (yysyntax_error): Likewise.
465 * tests/conflicts.at (%nonassoc and eof): Update expected output
466 and remove FIXME.
467
87412882
JD
4682009-08-25 Joel E. Denny <jdenny@clemson.edu>
469
470 Some code and documentation improvements.
471 * data/c.m4 (b4_table_value_equals): New macro to capture
472 some repeated code.
473 * data/glr.c (yyis_pact_ninf): Use it here.
474 (yyis_table_ninf): Likewise.
475 (yyreportSyntaxError): Improve internal comments.
476 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
477 Use it everywhere possible.
478 (yyis_table_ninf): Likewise.
479 (yysyntax_error): Improve internal comments.
480 * data/lalr1.cc (yysyntax_error_): Likewise.
481 * data/lalr1.java (yysyntax_error): Likewise.
482 * src/tables.h: Improve comments about yypact, yytable, etc.
483
e6c849d8
JD
4842009-08-21 Joel E. Denny <jdenny@clemson.edu>
485
486 Use locale when quoting.
487 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
488 quote rather than implementing quoting here.
489
d8911864
EB
4902009-08-20 Eric Blake <ebb9@byu.net>
491
b0778bdd
EB
492 Make previous patch more robust.
493 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
494 argmatch.h.
495 (output_skeleton): Use it.
496 Suggested by Akim Demaille.
497
d8911864
EB
498 Import latest m4/m4.m4.
499 * submodules/autoconf: Update to autoconf 2.64.
500 * configure.ac (M4_GNU_OPTION): New define.
501 * src/output.c (output_skeleton): Use it to resolve FIXME.
502 * NEWS: Mention this.
503
c2724603
JD
5042009-08-19 Joel E. Denny <jdenny@clemson.edu>
505
506 Fix complaints about escape sequences.
507 Discussed starting at
508 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
509 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
510 For a \0 and similar escape sequences meaning the null
511 character, report an invalid escape sequence instead of an
512 invalid null character because the latter does not actually
513 appear in the user's input.
514 In all escape sequence complaints, don't escape the initial
515 backslash, and don't quote when the sequence appears at the end
516 of the complaint line unless there's whitespace that quotearg
517 won't escape.
518 Consistently say "invalid" not "unrecognized".
519 Consistently prefer "empty character literal" over "extra
520 characters in character literal" warning for invalid escape
521 sequences; that is, consistently discard those sequences.
522 * tests/input.at (Bad escapes in literals): New.
523
17aed602
AD
5242009-08-19 Akim Demaille <demaille@gostai.com>
525
526 doc: fixes.
527 * doc/bison.texinfo: Fix minor Texinfo errors.
528
9142239a
AD
5292009-08-19 Akim Demaille <demaille@gostai.com>
530
531 tests: distcc compliance.
532 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
533 error messages from the output.
534
171ad99d
AD
5352009-08-19 Akim Demaille <demaille@gostai.com>
536
537 variables: simplify the upgrade of namespace into api.namespace.
538
539 This patch simplifies "variables: rename namespace as
540 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
541 Suggested by Joel E. Denny in
542 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
543
544 * src/muscle-tab.c (muscle_percent_variable_update): New.
545 (muscle_percent_define_insert): Use it in replacement of the
546 previous tr invocation.
547 Remove variable_tr, no longer needed.
548 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
549 Remove.
550 * data/c++.m4: No longer handle namespace -> api.namespace.
551 * tests/input.at (%define backward compatibility): Check that
552 namespace is treated as api.namespace.
553
d59e456d
AD
5542009-08-19 Akim Demaille <demaille@gostai.com>
555
556 doc: %initial-action to initialize yylloc.
557 Reported by Bill Allombert.
558 * doc/bison.texinfo: Set fill-column to 76.
559 (Location Type): Document the use of %initial-action to initialize
560 yylloc.
561
ceb8b8e6
AD
5622009-08-19 Akim Demaille <demaille@gostai.com>
563
564 lalr1.cc: use state_type.
565 * data/lalr1.cc (yysyntax_error_): Use state_type.
566 Move argument names into yy*.
567
7580c379
AD
5682009-08-19 Akim Demaille <demaille@gostai.com>
569
570 lalr1.cc: get rid of yyparse's yystate.
571 yystate and yystack_[0].state are equal, keep only the latter.
572 The former was also used as a temporary variable to compute the
573 post-reduction state. Move this computation into an auxiliary
574 function.
575
576 * data/glr.c (yyLRgotoState): Fuse variable definition and first
577 assignment.
578 * data/lalr1.cc (yy_lr_goto_state_): New.
579 (yyparse): Use it.
580 Replace remaining uses of yystate by yystate_[0].state.
581 Remove the former.
582
c4dc4c46
AD
5832009-08-19 Akim Demaille <demaille@gostai.com>
584
585 lalr1.cc: destroy $$ when YYERROR is called.
586 * data/lalr1.cc (yyreduce): Compute the resulting state before
587 running the user action so that yylhs is a valid symbol.
588 (yyerrorlab): Since yylhs is complete (it knows its type), we can
589 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
590 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
591
c67e466f
JD
5922009-08-18 Joel E. Denny <jdenny@clemson.edu>
593
594 maint: update for gnulib's recent update-copyright changes
595 * gnulib: Update.
596 * .x-update-copyright (COPYING): Add as it's no longer implied
597 when .x-update-copyright is present.
598 * cfg.mk (update-copyright-local): Remove, now ignored.
599 (update-copyright): Declare update-b4-copyright as a dependency.
600
af6d2358
AD
6012009-08-17 Akim Demaille <demaille@gostai.com>
602
603 build: require gettext 0.17.
604
605 Suggested by Bruno Haible.
606 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
607 * configure.ac: require gettext 0.17 to ensure compatibility with
608 gnulib.
609
91a2b9b1
AD
6102009-08-17 Akim Demaille <demaille@gostai.com>
611
612 build: lower gettext requirements.
613
614 Bison was uselessly requiring the formatstring macros from
615 gettext, which resulted in mo files not being installed on systems
616 that perfectly supported Bison mo files. Lower the requirement.
617 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
618
b0778bdd
EB
619 * configure.ac: Require need-ngettext instead of
620 need-formatstring-macros.
621 Reported by Martin Jabocs.
622 Suggested by Bruno Haible.
623 * INSTALL: Restructure.
624 (Internationalization): New.
91a2b9b1 625
585935e8
JD
6262009-08-14 Joel E. Denny <jdenny@clemson.edu>
627
628 maint: fix use of copyright year intervals.
629 * gnulib: Update.
630 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
631 as now recommended in gnulib/NEWS.
632 * build-aux/update-b4-copyright: Fix.
633 * cfg.mk (update-copyright-env): Configure update-copyright.
634
83b60c97
JD
6352009-08-13 Joel E. Denny <jdenny@clemson.edu>
636
637 Make it easier to write deterministic tests.
638 Continues Akim's work from his 2009-06-10 commits.
639 * src/reader.c (check_and_convert_grammar): Don't add any
640 symbols after the first symbols_do invocation.
641 * src/symtab.c (symbols_sorted): New static global.
642 (user_token_number_redeclaration): Update comments.
643 (symbol_from_uniqstr): If a new symbol is being created, assert
644 that symbols_sorted hasn't been allocated yet.
645 (symbols_free): Free symbols_sorted.
646 (symbols_cmp, symbols_cmp_qsort): New functions.
647 (symbols_do): Sort symbol_table into symbols_sorted on first
648 invocation.
649 * tests/input.at (Numbered tokens): Recombine tests now that the
650 output should be deterministic across multiple numbers.
651
28169bab
AD
6522009-08-12 Akim Demaille <demaille@gostai.com>
653
654 tests: GCC 4.5 compliance.
655 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
656 messages about #error.
657
9f14e187
AD
6582009-08-12 Akim Demaille <demaille@gostai.com>
659
660 build: fix the generation of the documentation.
661 Some of our targets use "bison --help", but they can't depend on
662 "bison" itself (to avoid additional requirements on the user), so
663 they used to call "make src/bison" in the commands. Then
664 concurrent builds may fail: one make might be aiming one of its
665 jobs at compiling src/bison, and another job at generating the man
666 page. If the latter is faster than the former, then we have two
667 makes that concurrently try to compile src/bison.
668
669 This might also be a more convincing explanation for the failure
670 described in the patch "build: fix paths".
671
672 * Makefile.am (SUFFIXES): Initialize.
673 * build-aux/move-if-change: New, symlink to gnulib's.
674 * build-aux/local.mk: Ship it.
675 * doc/common.x: Remove, merged into...
676 * doc/bison.x: here.
677 * doc/local.mk (doc/bison.help): New.
678 ($(CROSS_OPTIONS_TEXI)): Depend on it.
679 Use src/bison.
680 (.x.1): Replace with...
681 (doc/bison.1): this explicit, simpler, target.
682 (common_dep): Remove, inlined where appropriate.
683 (SUFFIXES, PREPATH): Remove, unused.
684
d1b55e81
AD
6852009-08-12 Akim Demaille <demaille@gostai.com>
686
687 gnulib: improve prefixing.
688 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
689 change the value of...
690 (gl_LIBOBJS): this.
691 Adjust more variables.
692 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
693 gl_LIBOBJS.
694 (prefix): Also transform rules whose targets have slashes.
695 Use $prefix liberally.
696 Map @MKDIR_P@ to $(MKDIR_P).
697 Prefix directories that are mkdir'd.
698
838205d5
AD
6992009-08-12 Akim Demaille <demaille@gostai.com>
700
701 build: fix paths.
702 When using $(top_builddir) inconsistently, Make (including GNU
703 Make) is sometimes confused. As a result it may want to build
704 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
705 file, different names) concurrently, which, amusingly enough,
706 might end with:
707
708 ranlib lib/libbison.a
709 ranlib lib/libbison.a
710 make[2]: *** [lib/libbison.a] Segmentation fault
711
712 on OS X.
713
714 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
715 needed.
716
67af7198
AD
7172009-08-12 Akim Demaille <demaille@gostai.com>
718
719 distcheck: fix.
720
b0778bdd 721 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67af7198 722
c467dc42
JD
7232009-08-10 Joel E. Denny <jdenny@clemson.edu>
724
725 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
726
dfaa4860
JD
7272009-08-10 Joel E. Denny <jdenny@clemson.edu>
728
729 Miscellaneous code readability improvements.
730
731 * src/reader.c (reader): Move %define front-end variable
732 defaults and checking into...
733 (prepare_percent_define_front_end_variables): ... this new
734 function.
735
736 * src/scan-gram.l (INITIAL): For consistency with string
737 literals, don't store open quote on character literal. It's
738 discarded before returning anyway.
739 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
740 Make length test more readable, and make the character stored
741 for an empty literal more obvious while consistent with the
742 previous behavior.
743
744 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
745 USER_NUMBER_HAS_STRING_ALIAS throughout.
746 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
747 that is repeated in symtab.h. Improve argument names to make it
748 clear which side of the symbol-string alias pair is which.
749 (symbol_check_alias_consistency): Improve local variable names
750 for the same purpose.
751 * src/symtab.h (struct symbol): Make comments about aliases
752 clearer.
753 (symbol_make_alias): Improve comments and argument name.
754 * src/output.c (token_definitions_output): Update for rename to
755 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
756
ce268795
AR
7572009-08-08 Alex Rozenman <rozenman@gmail.com>
758
759 Convert "misleading reference" messages to warnings.
760 * src/scan-code.l: New function 'show_sub_messages', more
761 factoring.
762 * tests/named-ref.at: Adjust tests.
763
401b73af
JD
7642009-08-06 Joel E. Denny <jdenny@clemson.edu>
765
766 maint: run "make update-copyright"
767
a1a9422d
JD
7682009-08-06 Joel E. Denny <jdenny@clemson.edu>
769
770 maint: make update-b4-copyright easier to use
771 * build-aux/update-b4-copyright: In warnings, report line
772 numbers rather than character positions.
773 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
774 that update-copyright runs it.
775 * gnulib: Update.
776
0b61a8ec
JD
7772009-08-05 Joel E. Denny <jdenny@clemson.edu>
778
779 maint: clean up update-b4-copyright code
780 * build-aux/update-b4-copyright: Do not accept 2-digit
781 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
782 Don't accept a `[' in a b4_copyright argument.
783 Format code more consistently.
784 Don't assume b4*copyright never occurs.
785
269e222e
JD
7862009-08-04 Joel E. Denny <jdenny@clemson.edu>
787
788 maint: automate b4_copyright updates.
789 * Makefile.am (update-b4-copyright): New target rule.
790 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
791 * build-aux/update-b4-copyright: New.
792 * data/yacc.c: Remove stray characters around b4_copyright
793 invocations.
794
35905f2b
JD
7952009-08-04 Joel E. Denny <jdenny@clemson.edu>
796
797 maint: automate annual package-wide copyright-year update.
798 * .x-update-copyright: New.
799 * Makefile.am (EXTRA_DIST): Remove maint.mk.
800 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
801 update-copyright. Remove gnumakefile, which is implied by
802 maintainer-makefile.
803 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
804 * gnulib: Update.
805 * maint.mk: Remove, now copied from gnulib.
806 * examples/extexi: Add missing "(C)" in copyright statement so
807 update-copyright can recognize it.
808 * src/LR0.h: Likewise.
809 * src/print.h: Likewise.
810 * src/print_graph.h: Likewise.
811 * src/gram.c: Add missing comma in copyright statement.
812 * src/gram.h: Likewise.
813
b30e18dc
JD
8142009-08-04 Joel E. Denny <jdenny@clemson.edu>
815
816 Fix "make distcheck".
817 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
818 of just calc.stamp.
819
8d90395d
JD
8202009-08-01 Joel E. Denny <jdenny@clemson.edu>
821
822 Pacify "gcc -Wunused" for the input function from Flex.
823 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
824 and later.
825 * src/scan-code.l: Add "%option noinput", which I cannot find in
826 the Flex manual, but which Flex has supported since at least as
827 far back as 2.5.4. However, if any of our developers still use
828 Flex 2.5.4, they'll need to stop configuring with
829 --enable-gcc-warnings because "%option noinput" didn't work
830 correctly until Flex 2.5.6.
831 * src/scan-gram.l: Likewise.
832 * src/scan-skel.l: Likewise.
833
ba4184ec
AR
8342009-07-31 Alex Rozenman <rozenman@gmail.com>
835
836 Fix --enable-gcc-warnings problems.
837 * src/reader.c: Adjust variable names.
838 * src/scan-code.l: Fix prototypes and adjust names.
839 * src/named-ref.c: Remove redundant "if".
840
91a2af97
JD
8412009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
842
843 Fix a --enable-gcc-warnings problem.
844 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
845 variable.
846
3208e3f4
JD
8472009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
848
849 Warn about character literals not of length one.
850 * NEWS (2.5): Document.
851 * src/scan-gram.l (INITIAL): Remove comment that we don't check
852 the length.
853 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
854 * tests/input.at (Bad character literals): New test group.
855
5add20ab 8562009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
857
858 Fix some memory leaks.
859 * src/named-ref.c: Add a pointer check (named_ref_free).
860 * src/scan-code.l: New function (variant_table_free). Called in
861 code_scanner_free.
862 * src/symlist.c: Call to named_ref_free (symbol_list_free).
863
e459fb0e
JD
8642009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
865
866 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
867
c4be5517
JD
8682009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
869
870 Some M4 cleanup in the testsuite.
871 Suggested by Eric Blake at
872 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
873 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
874 complicate the code by distinguishing between a missing value
875 and an empty string value for an optional argument. This fix is
876 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
877 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
878 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
879 arguments are not needed because of the following changes.
880 Fix stale comments.
881 Bison developers should use GNU M4 and should not use
882 POSIXLY_CORRECT when building the test suite, so do not
883 complicate the code by avoiding $10 and above.
884 Do not quote an empty string value for an optional argument, and
885 do not distinguish between a missing value and an empty string
886 value.
887
feeb56cd
JD
8882009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
889
890 Revert unnecessary column realignment in --help output.
891 Reported by Akim Demaille at
892 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
893 * src/getargs.c (usage): Here.
894
5add20ab 8952009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
896
897 Alphabetical order in src/local.mk.
898 * src/local.mk: Adjust.
899
5add20ab 9002009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
901
902 Style changes and factoring.
903 * src/named-ref.h: Add comments.
904 * src/parse-gram.y: Readability and style changes.
905 * src/reader.c: Factoring: assign_named_ref function.
906 * src/scan-code.l: Factoring and style changes. Rename
907 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
908 Use "unsigned" type for variant index. Improve readablity.
909 * src/scan-gram.l: Change error messages and add comments.
910 * src/symlist.h: symbol_list_null: New function decl.
911 * src/symlist.c: symbol_list_null: Implement here.
912 * tests/named-refs.at: Adjust for new error messages.
913
83ea2423
EB
9142009-06-29 Eric Blake <ebb9@byu.net>
915
916 scan-code: avoid compiler warnings
917 * src/scan-code.l (parse_named_ref): Use correct specifiers.
918
5ece73ea
AD
9192009-06-29 Akim Demaille <demaille@gostai.com>
920
921 build: avoid concurrent extraction of calc++.
922 * examples/calc++/Makefile.am (calc.stamp): New.
923 Depend on it to create the sources of calc++ so that concurrent
924 builds don't launch several "extexi" in parallel.
925 Not only this is inefficient, this also builds incorrect sources
926 with several extractions mixed together.
927
ad597a78
AD
9282009-06-29 Akim Demaille <demaille@gostai.com>
929
930 parse.error: fix.
931 * data/bison.m4: Move code related to specific variables after the
932 definition of the variable-maintaining macros so that we don't
933 "invoke" b4_percent_define_check_values before it is defined.
934
31b850d2
AD
9352009-06-29 Akim Demaille <demaille@gostai.com>
936
937 variables: parse.error
938
939 Implement, document, and test the replacement of %error-verbose
940 by %define parse.error "verbose".
941 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
942 values of the parse.error variable.
943 Make "simple" its default value.
944 Check the valid values.
945 * src/parse-gram.y: Use %define parse.error.
946 (PERCENT_ERROR_VERBOSE): New token.
947 Support it.
948 * src/scan-gram.l: Support %error-verbose.
949
950 * doc/bison.texinfo (Decl Summary): Replace the documentation of
951 %define error-verbose by that of %define parse.error.
952 * NEWS: Document it.
953
954 * tests/actions.at, tests/calc.at: Use parse.error instead of
955 %error-verbose.
956
b9f1d9a4
AR
9572009-06-27 Alex Rozenman <rozenman@gmail.com>
958
959 Implement support for named symbol references.
960 * src/parse-gram.y: Add new syntax (named_ref.opt).
961 * src/reader.c: Store named refs in symbol lists.
962 * src/reader.h: New argument for symbol_append and
963 action_append functions.
964 * src/scan-code.h: Add new field (named_ref) into
965 code_props data structure. Keeps named ref of midrule
966 actions.
967 * src/scan-code.l: Support for named refs in semantic
968 action code. New function 'parse_named_ref'.
969 * src/scan-gram.l: Support bracketed id.
970 * src/symlist.c: Store named refs in symbol lists.
971 * src/symlist.h: New field in symbol list: named_ref.
972 * src/named-ref.h: New file, a struct for named_ref.
973 * src/named-ref.cp: New file, named_ref_new function.
974 * src/local.mk: Add two new files.
975 * tests/testsuite.at: Include new test group:
976 * tests/named-refs.at: this new file.
977
b5c212b6
AD
9782009-06-25 Akim Demaille <demaille@gostai.com>
979
980 hash: check insertion for memory exhaustion.
981 * src/uniqstr.c (uniqstr_new): New.
982
67501061
AD
9832009-06-24 Akim Demaille <demaille@gostai.com>
984
985 variables: rename namespace as api.namespace.
986 Discussed in
987 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
988
989 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
990 New.
991 (b4_percent_define_use): New.
992 Use it where applicable.
993 * data/c++.m4: Replace uses of the variable "namespace" by
994 "api.namespace".
995 Default the latter to the former.
996 * doc/bison.texinfo (Decl Summary): Document "namespace" as
997 obsolete.
998 Document api.namespace.
999 Use @samp to document %define uses, keep @code for identifiers.
1000 * NEWS: Likewise.
1001 * tests/c++.at, tests/input.at: Test api.namespace instead of
1002 namespace. (The tests passed with namespace.)
1003
41976786
AD
10042009-06-11 Akim Demaille <demaille@gostai.com>
1005
1006 style changes.
1007 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1008 * src/print-xml.c: Style changes.
1009 * tests/conflicts.at: Comment changes.
1010
44bb9084
AD
10112009-06-11 Akim Demaille <demaille@gostai.com>
1012
1013 xml: beware of user strings used to give a %prec to rules.
1014 * tests/conflicts.at (%prec with user strings): New.
1015 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1016 XML output.
1017
04d1e39d
AD
10182009-06-11 Akim Demaille <demaille@gostai.com>
1019
1020 hash: check insertion for memory exhaustion.
1021 * src/muscle-tab.c (muscle_insert, muscle_grow)
1022 * src/state.c (state_hash_insert): Check the return value of
1023 hash_insert.
1024
a8873669
AD
10252009-06-11 Akim Demaille <demaille@gostai.com>
1026
1027 tests: honor TESTSUITEFLAGS in every check target.
1028 * tests/local.mk (RUN_TESTSUITE): New.
1029 (check-local, installcheck-local, maintainer-check-g++)
1030 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1031
8893145a
AD
10322009-06-10 Akim Demaille <demaille@gostai.com>
1033
1034 deterministic test suite.
1035 Some consistency checks on symbols are performed after all the
1036 symbols were read, by an iteration over the symbol table. This
1037 traversal is nondeterministic, which can be a problem for test
1038 cases.
1039 Avoid this.
1040 Addresses another form of nondeterminism reported by Joel E. Denny.
1041 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1042
1043 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1044 test in two.
1045 Use different file names for the three tests to make the
1046 maintenance easier.
1047
92d7a23a
AD
10482009-06-10 Akim Demaille <demaille@gostai.com>
1049
1050 gnulib: update.
b0778bdd
EB
1051 * gnulib: Update to latest.
1052 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1053 * m4/.gitignore: Regen.
1054 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1055 Call xalloc_die on hash_insert failures.
1056 Requested by the new __warn_unused_result__ attribute of
1057 hash_insert.
92d7a23a 1058
12cf133f
AD
10592009-06-10 Akim Demaille <demaille@gostai.com>
1060
1061 deterministic user-token-number redeclaration errors.
1062 Address nondeterminism reported by Joel E. Denny.
1063 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1064
1065 * src/uniqstr.h: Comment changes.
1066 * src/location.h (boundary_cmp, location_cmp): New.
1067 * src/symtab.c (user_token_number_redeclaration): New.
1068 (symbol_translation): Use it.
1069 * tests/input.at (Numbered tokens): Adjust the expected output.
1070
796a2b0a
AD
10712009-05-25 Akim Demaille <demaille@gostai.com>
1072
1073 build: avoid ignored errors.
1074 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1075 errors, they pollute the output.
1076
0b6d43c5
JD
10772009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1078
1079 Convert multiple variable definition warnings to complaints.
1080 * NEWS (2.5): Add a new entry for that change.
1081 * doc/bison.texinfo (Decl Summary): Update %define entry.
1082 (Bison Options): Update -D/--define/-F/--force-define entry.
1083 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1084 * src/muscle-tab.h (muscle_percent_define_insert): Update
1085 comments.
1086 * tests/input.at (`%define errors'): Update.
1087 (`%define, --define, --force-define'): Update.
1088
de5ab940
JD
10892009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1090
1091 -F/--force-define and relative %define/-D/--define priorities.
1092 * NEWS (2.5): Add documentation to -D/--define entry.
1093 * build-aux/cross-options.pl: Hard-code association of
1094 --force-define with %define.
1095 * doc/bison.texinfo (Decl Summary): In %define entry,
1096 cross-reference command-line options.
1097 (Bison Options): Add documentation to -D/--define entry.
1098 (Option Cross Key): Widen column for --force-define row.
1099 * src/getargs.c (usage): Document -F/--force-define. Realign
1100 options in output.
1101 (short_options, long_options, getargs): Parse -F/--force-define,
1102 and update muscle_percent_define_insert invocations.
1103 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1104 (muscle_percent_define_insert): Add argument with that type.
1105 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1106 -F/--force-define behavior and priorities.
1107 (muscle_percent_define_ensure): Update
1108 muscle_percent_define_insert invocation.
1109 * src/parse-gram.y (prologue_declaration): Update
1110 muscle_percent_define_insert invocations.
1111 * tests/input.at (`%define, --define'): Rename to...
1112 (`%define, --define, --force-define'): ... this and extend.
1113
f8e7258f
JD
11142009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1115
1116 Update some comments to make sense for -D.
1117 * data/bison.m4 (b4_check_user_names): In header comments, say
1118 "user occurrence" instead of "grammar occurrence".
1119 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1120 (muscle_percent_code_grow): Likewise just for consistency.
1121
b987342b
JD
11222009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1123
1124 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1125
4977e0a7
JD
11262009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1127
1128 Handle a trailing `:' in a user-supplied C++ namespace better.
1129 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1130 among the closing braces here. This fix might make the
1131 generated code easier to debug, but otherwise it should be
1132 insignificant because a trailing `:' is a C++ error already.
1133
9b04dad7
AD
11342009-05-19 Akim Demaille <demaille@gostai.com>
1135
1136 remove useless variable.
1137 * src/getargs.c (skeleton_arg): Remove now useless variable.
1138 Should help the compiler see that this printf-like call is sane.
1139
4c6622c2
AD
11402009-05-15 Akim Demaille <demaille@gostai.com>
1141
1142 Rename token.prefix as api.tokens.prefix.
1143 Discussed here.
1144 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1145
1146 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1147 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1148 (token.prefix): Rename as...
1149 (api.tokens.prefix): this.
1150
3c248d70
AD
11512009-05-11 Akim Demaille <demaille@gostai.com>
1152
1153 doc: use C++ headers.
1154 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1155 headers.
1156
99c08fb6
AD
11572009-05-11 Akim Demaille <demaille@gostai.com>
1158
1159 doc: token.prefix
1160 * doc/bison.simple (Decl Summary): Document token.prefix.
1161 (Calc++ Parser): Various fixes.
1162 Formatting changes.
1163 Use token.prefix.
1164 Introduce a macro TOKEN to shorten the code and make it more
1165 readable.
1166 (Calc++ Scanner): Adjust.
1167 * NEWS (Variable token.prefix): New.
1168
84a1cb5a
AD
11692009-05-04 Akim Demaille <demaille@gostai.com>
1170
1171 bison: catch bad symbol names.
1172 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1173 * tests/input.at: Adjust.
1174
cdf3f113
AD
11752009-05-04 Akim Demaille <demaille@gostai.com>
1176
1177 identifiers: dashes are letters.
1178 Dashes can now start identifiers (symbols and directives).
84a1cb5a 1179
cdf3f113
AD
1180 * src/scan-gram.l ({letter}): Add dash.
1181 ({id}): Remove it.
1182 * tests/input.at (Symbols): Adjust.
1183 Remove stray comment.
1184 * tests/regression.at (Invalid inputs): Adjust error message.
1185 * doc/bison.texinfo (Symbols): Update.
1186
98a345a2
JD
11872009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1188
1189 Declare %code to be a permanent feature.
1190 * NEWS (2.4.2): Here.
1191 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1192 experimental.
1193 (Decl Summary): Likewise.
1194
67212941
JD
11952009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1196
1197 Convert underscores to dashes in some %define variable names.
1198 For now, just api.push-pull and lr.keep-unreachable-states.
1199 Maintain old names for backward compatibility.
1200 * NEWS (2.5): Document.
1201 * data/c.m4 (b4_identification): Update comment.
1202 * data/yacc.c: Update access.
1203 * doc/bison.texinfo: Update.
1204 * etc/bench.pl.in (bench_push_parser): Update use.
1205 * src/files.c (tr): Move to...
1206 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1207 think of a better place to expose it. My logic is that, for all
1208 uses of tr so far, command-line arguments can be involved, and
1209 getargs.h is already included.
1210 * src/main.c (main): Update access.
1211 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1212 variable names to new variable names before assigning value.
1213 * src/reader.c (reader): Update setting default.
1214 * tests/calc.at: Update uses.
1215 * tests/conflicts.at (Unreachable States After Conflict
1216 Resolution): Update use.
1217 * tests/input.at (%define enum variables): Update use.
1218 (%define backward compatibility): New test group.
1219 * tests/push.at: Update uses.
1220 * tests/reduce.at: Update uses.
1221 * tests/torture.at: Update uses.
1222
ba5c6d94
JD
12232009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1224
1225 Set all front-end %define defaults in one place.
1226 * src/main.c (main): Move lr.keep_unreachable_states default...
1227 * src/reader.c (reader): ... to here.
1228
5bab9d08
JD
12292009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1230
1231 Rename lr.default_reductions to lr.default-reductions.
1232 * NEWS (2.5): Here.
1233 * doc/bison.texinfo: Here.
1234 * src/lalr.c (initialize_LA): Here.
1235 * src/print.c (print_reductions): Here.
1236 * src/reader.c (reader): Here.
1237 * src/tables.c (action_row): Here.
1238 * tests/input.at (%define enum variables): Here.
1239 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1240
d521ee19
JD
12412009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1242
1243 Pacify ./configure --enable-gcc-warnings.
1244 * tests/input.at (Symbols): Prototype yyerror and yylex.
1245
12462009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
1247
1248 Document how `%define "var" "value"' is not M4-friendly.
1249 * src/parse-gram.y (variable): In comments here.
1250
8f0d265e
JD
12512009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1252
1253 Clean up recent patches a little.
1254 Reported by Akim Demaille.
1255 * doc/bison.texinfo (Understanding): Fix typos.
1256 * src/print.c (print_reductions): Don't use negated variable.
1257
f4909773
JD
12582009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1259
1260 List accepted values for a %define enum variable with an invalid value.
1261 Suggested by Akim Demaille at
1262 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1263 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1264 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1265 * tests/input.at (%define lr.default_reductions invalid values): Merge
1266 into...
1267 (%define enum variables): ... here, and update output.
1268
110ef36a
JD
12692009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1270
1271 Rename "default rule" to "default reduction".
1272 This includes changing variable names in code, changing
1273 comments, and renaming %define lr.default_rules to %define
1274 lr.default_reductions.
1275 * NEWS (2.5): Update IELR documentation.
1276 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1277 documentation.
1278 * data/glr.c, data/lalr1.java: Sync copyright dates.
1279 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1280 and lr.type documentation. Make some other wording
1281 improvements.
1282 (Glossary): Adjust cross-references and Default Reduction
1283 definition.
1284 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1285 Remove a confusing comment pointed out by Akim Demaille.
1286 (initialize_LA): Adjust code.
1287 * src/print-xml.c (print_reductions): Adjust code.
1288 * src/print.c (print_reductions): Adjust code.
1289 * src/reader.c (reader): Adjust code.
1290 * src/tables.c (action_row): Adjust code.
1291 (token_actions): Adjust code.
1292 * src/tables.h: Adjust YYDEFACT documentation.
1293 * tests/input.at (%define lr.default_rules invalid values):
1294 Rename test group to...
1295 (%define lr.default_reductions invalid values): ... this, and
1296 update grammar file and expected output.
1297 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1298 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1299
746ee38c
AD
13002009-04-21 Akim Demaille <demaille@gostai.com>
1301
1302 tests: check the use of dashes and periods in symbols.
1303 * tests/input.at (Symbol): New test group.
1304
eb45ef3b
JD
13052009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1306
1307 Document %define lr.type and lr.default_rules.
1308 * NEWS (2.5): Add an entry.
1309 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1310 besides just LALR(1) and GLR(1).
1311 * doc/bison.texinfo (Introduction): Likewise.
1312 (Language and Grammar): Bison is no longer limited to LALR(1)
1313 restrictions.
1314 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1315 when trying to distinguish from GLR. Talk about LR(1) grammars
1316 rather than LALR(1) grammars.
1317 (Decl Summary): In %define api.push_pull entry, say it applies
1318 to deterministic parsers in C rather than LALR(1) parsers in C.
1319 Add lr.default_rules entry.
1320 Add lr.type entry.
1321 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1322 restrictions.
1323 (Generalized LR Parsing): Same changes as for the previous GLR
1324 section.
1325 (Memory Management): Say deterministic rather than LALR(1).
1326 (Understanding): Correct some bison output.
1327 Index discussion of "accepting state".
1328 Say deterministic rather than LALR(1).
1329 (Bison Options): In --yacc entry, say deterministic rather than
1330 LALR(1).
1331 In --report, --graph, and --xml entries, just don't mention
1332 LALR(1).
1333 (C++ Parsers): Say deterministic rather than LALR(1).
1334 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1335 (Glossary): Add Accepting State, Consistent State, Default Rule,
1336 and IELR(1) definitions.
1337 In Generalized LR (GLR) definition, make same changes as in
1338 previous GLR sections.
1339 In LALR(1) definition, say Bison uses LALR(1) by default rather
1340 than implying Bison is limited to LALR(1).
1341 (LocalWords): Add IELR.
1342
db34f798
JD
13432009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1344
1345 Finish implementing %define lr.type.
1346 Its value can be "LALR", "IELR", or "canonical LR".
1347 * lib/timevar.def (TV_IELR_PHASE1): New var.
1348 (TV_IELR_PHASE2): New var.
1349 (TV_IELR_PHASE3): New var.
1350 (TV_IELR_PHASE4): New var.
1351 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1352 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1353 Sbitset.h, ielr.h, and ielr.c.
1354 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1355 trace_types): Add trace_ielr.
1356 * src/lalr.h, src/lalr.c (ngotos): Export it.
1357 (F): Rename to...
1358 (goto_follows): ... this, update all uses, and export it.
1359 (set_goto_map): Export it.
1360 (map_goto): Export it.
1361 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1362 handled in ielr.
1363 (initialize_LA): Export it. Move lookback allocation to...
1364 (lalr): ... here because, for canonical LR, initialize_LA must
1365 be invoked but lookback and much of the rest of LALR isn't
1366 needed.
1367 * main.c (main): Instead of lalr, invoke ielr, which invokes
1368 lalr.
1369 * src/reader.c (reader): Default lr.type to "LALR".
1370 Default lr.default_rules to "accepting" if lr.type is "canonical
1371 LR". Leave the default as "all" otherwise.
1372 Check for a valid lr.type value.
1373 * src/state.h, src/state.c (struct state_list): Add state_list
1374 member.
1375 (state_new): Initialize state_list member to NULL.
1376 (state_new_isocore): New function, exported.
1377 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1378 exercises all values of lr.type.
1379 (GNU AWK Grammar): Rename test group to...
1380 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1381 AT_TEST_EXISTING_GRAMMAR.
1382 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1383 (GNU pic Grammar): Rename test group to...
1384 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1385 AT_TEST_EXISTING_GRAMMAR.
1386 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1387 all values of lr.type.
1388 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1389 (Lane Split): Likewise.
1390 (Complex Lane Split): Likewise.
1391 (Split During Added Lookahead Propagation): Likewise.
1392
7fe11bb5
JD
13932009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1394
1395 Add new files for IELR and canonical LR implementation.
1396 * src/AnnotationList.c: New.
1397 * src/AnnotationList.h: New.
1398 * src/InadequacyList.c: New.
1399 * src/InadequacyList.h: New.
1400 * src/Sbitset.c: New.
1401 * src/Sbitset.h: New.
1402 * src/ielr.c: New.
1403 * src/ielr.h: New.
1404
7254f6a8
JD
14052009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1406
1407 Implement %define lr.default_rules.
1408 Its value describes the states that are permitted to contain
1409 default rules: "all", "consistent", or "accepting".
1410 * src/reader.c (reader): Default lr.default_rules to "all".
1411 Check for a valid lr.default_rules value.
1412 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1413 is "accepting", then only mark the accepting state as
1414 consistent.
1415 (initialize_LA): Tell state_lookahead_tokens_count whether
1416 lr.default_rules is "accepting".
1417 * src/tables.c (action_row): If lr.default_rules is not "all",
1418 then disable default rules in inconsistent states.
1419 * src/print.c (print_reductions): Use this opportunity to
1420 perform some assertions about whether lr.default_rules was
1421 obeyed correctly.
1422 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1423 helps with checking the parser tables for a grammar.
1424 * tests/input.at (%define lr.default_rules invalid values): New
1425 test group.
1426 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1427 AT_TEST_TABLES_AND_PARSE.
1428 (`no %define lr.default_rules'): New test group generated by
1429 AT_TEST_LR_DEFAULT_RULES.
1430 (`%define lr.default_rules "all"'): Likewise.
1431 (`%define lr.default_rules "consistent"'): Likewise.
1432 (`%define lr.default_rules "accepting"'): Likewise.
1433
72e727f2
AD
14342009-04-20 Akim Demaille <demaille@gostai.com>
1435
1436 Formatting change.
1437
90462b8d
AD
14382009-04-20 Akim Demaille <demaille@gostai.com>
1439
1440 bison: factoring.
1441 * src/output.c (token_definitions_output): Use symbol_id_get
1442 instead of duplicating its logic.
1443 * TODO (YYERRCODE): Extend.
1444
4f646c37
AD
14452009-04-20 Akim Demaille <demaille@gostai.com>
1446
71b00ed8
AD
1447 variables: prefer error-verbose to error_verbose.
1448 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1449 instead of error_verbose.
1450 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1451 variable.
1452 * doc/bison.texinfo: Promote %define error-verbose instead of
1453 %error-verbose.
1454 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1455
14562009-04-15 Akim Demaille <demaille@gostai.com>
1457
4f646c37
AD
1458 variables: accept dashes.
1459 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1460 underscores.
1461 * src/scan-gram.l ({id}): Also accept dashes after the initial
1462 letter.
1463 ({directive}): Use {id}.
1464 * src/parse-gram.y: Comment and formatting changes.
1465 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1466 symbols.
1467 * src/complain.h, src/complain.c (yacc_at): New.
1468 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1469 symbol names.
1470 * src/output.c (token_definitions_output): Do not #define token
1471 names with dashes.
1472
184e3179
AD
14732009-04-20 Akim Demaille <demaille@gostai.com>
1474
1475 Consistently refer to Yacc, not YACC.
1476 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1477
41253c3a
JD
14782009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1479
1480 Pacify make maintainer-check-posix.
1481 * tests/input.at (%define, --define): Move bison command-line
1482 options before grammar file name.
1483
197b82ba
JD
14842009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1485
1486 Document semicolon warnings.
1487 * NEWS (2.5): Here.
1488
0c90a1f5
AD
14892009-04-14 Akim Demaille <demaille@gostai.com>
1490
1491 variables: use `parse.assert' instead of `assert'.
1492 * TODO (assert): Remove.
1493 * data/bison.m4 (b4_assert_if): Replace with...
1494 (b4_parse_assert_if): this.
1495 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1496 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1497
fa819509
AD
14982009-04-14 Akim Demaille <demaille@gostai.com>
1499
16dc0d90 1500 variables: use `parse.trace' instead of `debug'.
fa819509
AD
1501 * src/getargs.c (getargs): Map -t to %define trace.parse.
1502 * src/scan-gram.l (%debug): Map to %define trace.parse.
1503 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1504 names to `_' in macro names.
1505 (b4_debug_if): Replace with...
1506 (b4_parse_trace_if): this.
1507 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1508 * data/yacc.c: Adjust.
1509 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1510 Use @code to label the variable list.
1511 Document the variable parse.trace.
1512 (Tracing): Promote the parse.trace variable.
1513 * TODO: %printer is not documented.
1514
f7dae1ea
AD
15152009-04-14 Akim Demaille <demaille@gostai.com>
1516
1517 doc: minor fixes.
1518 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1519 (Table of Symbols): Remove duplicate entry for %debug.
1520
3535c071
EB
15212009-04-10 Eric Blake <ebb9@byu.net>
1522
1523 submodules: update to latest
1524 * submodules/autoconf: Use latest upstream Autoconf.
1525
cf48f675
EB
15262009-04-06 Eric Blake <ebb9@byu.net>
1527
1528 Work around autoconf 2.63b bug in testsuite.
1529 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1530 autoconf bug related to # in test.
1531
50cca368
JD
15322009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1533
1534 * NEWS (2.5): New section. Describe new -D/--define feature.
1535
3583d96b
AD
15362009-04-06 Akim Demaille <demaille@gostai.com>
1537
1538 Regen.
1539 * src/parse-gram.h, src/parse-gram.c: Regen.
1540
00f5d575
AD
15412009-04-06 Akim Demaille <demaille@gostai.com>
1542
1543 rename muscle_tab.* as muscle-tab.* for consistency.
1544 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1545 * src/muscle-tab.h, src/muscle-tab.c: these.
1546 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1547 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1548
76bf5102
AD
15492009-04-06 Akim Demaille <demaille@gostai.com>
1550
1551 Makefile: introduce $(BISON).
1552 * src/local.mk (BISON): New.
1553 (YACC): Use it.
1554
bc0f5737
AD
15552009-04-06 Akim Demaille <demaille@gostai.com>
1556
1557 parser: handle %locations as %define locations.
1558 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1559 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1560 to set "locations" to true.
1561 * src/output.c (prepare): Don't output "locations".
1562 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1563 * src/parse-gram.y: It's no longer a token.
1564 Don't handle it.
1565 * data/bison.m4 (b4_locations_if): Define it with
1566 b4_percent_define_if_define.
1567 * data/c.m4, data/glr.cc: Adjust.
1568
697c912f
AD
15692009-04-06 Akim Demaille <demaille@gostai.com>
1570
1571 Regen.
1572 * src/parse-gram.c: Regen.
1573
4920ae8b
AD
15742009-04-06 Akim Demaille <demaille@gostai.com>
1575
1576 muscle: factor the handling of obsolete of obsolete directives.
1577 Suggested by Joel E. Denny.
50cca368 1578
4920ae8b
AD
1579 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1580 New, extracted from...
1581 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1582 Remove it.
1583 (prologue_declaration: "%<flag>"): Use
1584 muscle_percent_define_ensure.
1585 (%error-verbose, %pure-parser): No longer tokens.
1586 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1587
1d5b3c08
JD
15882009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1589
1590 Fix options documentation.
1591 * build-aux/cross-options.pl: As in --help output, write optional
1592 arguments as [=ARG] not =[ARG].
1593 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1594
62c99cf4
JD
15952009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1596
1597 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1598 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1599 requirements for a correct m4 are stricter.
1600 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1601 * configure.ac: Update to use AC_PROG_GNU_M4.
1602 Reported by Eric Blake.
1603
1c93f35b
JD
16042009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1605
1606 Help with updating web manual.
1607 * HACKING: Incorporate instructions from gnulib/doc/README.
1608 * bootstrap.conf (gnulib_modules): Add gendocs.
1609
86cfae0a
AD
16102009-04-03 Akim Demaille <demaille@gostai.com>
1611
1612 Regen.
1613 * src/parse-gram.h, src/parse-gram.c: Regen.
1614
ba061fa6
AD
16152009-04-03 Akim Demaille <demaille@gostai.com>
1616
1617 Factor %FLAG at scan level.
1618 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
1619 definitions and associated rules, replaced by....
1620 (PERCENT_FLAG): this new token type, and rule.
1621 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
1622 Use it for %debug and %error-verbose.
1623
b19ebeb3
AD
16242009-04-03 Akim Demaille <demaille@gostai.com>
1625
1626 Regen.
1627 * src/parse-gram.h, src/parse-gram.c: Regen.
1628
001a16a9
AD
16292009-04-03 Akim Demaille <demaille@gostai.com>
1630
1631 Treat %debug as %define debug.
1632 * data/bison.m4 (b4_debug_if): New.
1633 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
1634 * data/lalr1.java: Use it instead of b4_debug_flag.
1635 * src/getargs.h, src/getargs.c (debug_flag): Remove.
1636 * src/output.c (prepare): Don't output it.
1637 * src/parse-gram.y: Treat %debug as %define debug.
1638
16392009-04-03 Akim Demaille <demaille@gostai.com>
1640
1641 Treat %error-verbose as %define error_verbose.
1642 This allows to pass -Derror_verbose on the command line. Better
1643 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
1644 ERROR_VERBOSE being defined as false or true.
1645 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
1646 on b4_percent_define_ifdef, for does not check the defined value,
1647 but only whether the symbol is defined, rely on
1648 b4_percent_define_flag_if, so that a value of "false" is processed
1649 as a false.
1650 If not defined, define the flag to "false".
1651 (b4_error_verbose_if): New.
1652 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
1653 b4_error_verbose_flag.
1654 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
1655 * src/output.c (prepare): Don't output it.
1656 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
1657
92822aff
JD
16582009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1659
1660 Fix strange %define locations for default values.
1661 Reported by Akim Demaille at
1662 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1663 and discussed again starting at
1664 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1665 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1666 because location information is bogus.
1667 Use angle brackets to delimit fake file name because square brackets
1668 look like underexpanded m4. Choose a better fake file name.
1669 Use negative line numbers.
1670 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1671 * src/location.c (location_print): If line for a boundary is negative,
1672 only print that boundary's file name.
1673 * src/location.h: Document that.
1674 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1675 defaults): Update output.
1676
e021191b
JD
16772009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1678
1679 Pacify ./configure --enable-gcc-warnings.
1680 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
1681 in lib won't compile with it.
1682 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
1683
78f65418
AD
16842009-03-31 Akim Demaille <demaille@gostai.com>
1685
1686 bootstrap: --help to stdout.
1687 * bootstrap (usage): Don't send --help to stderr.
1688 Use a here doc instead of a long string.
1689
f7e241f4
AD
16902009-03-31 Akim Demaille <demaille@gostai.com>
1691
1692 bootstrap: README-hacking no longer exists
1693 * bootstrap (checkout_only_file): Set to HACKING.
1694
31d3e510
AD
16952009-03-26 Akim Demaille <demaille@gostai.com>
1696
1697 doc: merge HACKING and README-hacking.
1698 Two files is confusing.
1699 Reported by Alexandre Duret-Lutz.
1f9d8248 1700
31d3e510
AD
1701 * README-hacking: Merge into...
1702 * HACKING (Working from the repository): here.
1703
81535bfa
AD
17042009-03-26 Akim Demaille <demaille@gostai.com>
1705
1706 doc: update README-hacking.
1707 * README-hacking: We now use git and git submodules.
1708 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1709
56f772e9
AD
17102009-03-26 Akim Demaille <demaille@gostai.com>
1711
1712 lalr1.cc: avoid GCC 4.3 warnings.
1713 GCC 4.3 now warns about "a || b && c" and asks for explicit
1714 parentheses.
1715 Reported by Alexandre Duret-Lutz.
1716 * data/location.cc: Update copyright years.
1717 (Position::operator==): Use parens to make precedence explicit.
1718 Compare lines and columns first, as they are more likely to be
1719 different, and they are faster to compare.
1720
11c073b7
AD
17212009-03-26 Akim Demaille <demaille@gostai.com>
1722
1723 gnulib: update.
1724 * gnulib: Update to latest.
1725 * src/local.mk (AM_CFLAGS): Move to...
1726 * Makefile.am: here.
1727 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
1728 AM_CFLAGS.
1729
91be6b28
AD
17302009-03-02 Akim Demaille <demaille@gostai.com>
1731
1732 Comment changes.
1733
cbf25ce7
AD
17342009-03-02 Akim Demaille <demaille@gostai.com>
1735
1736 Share b4_yytranslate_define.
1737 * data/lalr1.cc (b4_yytranslate_define): Move to...
1738 * data/c++.m4: here.
1739
882f02ed
AD
17402009-03-02 Akim Demaille <demaille@gostai.com>
1741
1742 Use locations in the variant example.
1f9d8248
AD
1743 Yes, this obfuscates the point of this example, variants only.
1744 But glr.cc cannot work (yet?) without locations. This change
1745 makes it easier to use this example with glr.cc.
11c073b7 1746
882f02ed
AD
1747 * examples/variant.yy (assert): %define it.
1748 (locations): Request them.
1749 (yylex): Bind the location to the stage.
1750
0623bacc
AD
17512009-03-02 Akim Demaille <demaille@gostai.com>
1752
1753 Dub make_TOKEN as a public type interface.
1754 * data/c++.m4 (b4_symbol_constructor_declare)
1755 (b4_symbol_constructor_define): New empty stubs.
1756 (b4_public_types_declare, b4_public_types_define): Use them.
1757 * data/lalr1.cc (b4_symbol_constructor_declare)
1758 (b4_symbol_constructor_declare_)
1759 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1760 Move to...
1761 * data/variant.hh: here.
1762 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1763 needed.
1764 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1765 b4_symbol_constructor_declare, as it is now done by
1766 b4_public_types_define and b4_public_types_declare.
1767
5f5a90df
AD
17682009-03-02 Akim Demaille <demaille@gostai.com>
1769
1770 Coding style changes.
1771 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1772 (b4_symbol_constructor_declarations)
1773 (b4_symbol_constructor_definition_)
1774 (b4_symbol_constructor_definitions)
1775 (b4_yytranslate_definition): Rename as...
1776 (b4_symbol_constructor_declare_)
1777 (b4_symbol_constructor_declare)
1778 (b4_symbol_constructor_define_)
1779 (b4_symbol_constructor_define)
1780 (b4_yytranslate_define): these.
1781 * data/variant.hh (b4_variant_definition): Rename as...
1782 (b4_variant_define): this.
1783
b47b6ff7
AD
17842009-03-02 Akim Demaille <demaille@gostai.com>
1785
1786 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1787 * data/bison.m4 (b4_percent_define_if_define): New.
1788 * data/c++.m4 (b4_variant_if): Move to...
1789 * data/bison.m4: Here, using b4_percent_define_if_define.
1790 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1791 * data/bison.m4: Here, using b4_percent_define_if_define.
1792
1d6b689b
AD
17932009-03-02 Akim Demaille <demaille@gostai.com>
1794
1795 Dub symbol_type_base as a public type.
1796 * data/c++.m4 (b4_public_types_declare): Now define
1797 symbol_type_base and symbol_type.
1798 (b4_public_types_define): New.
1799 In both cases, the definitions are taken verbatim from lalr1.cc.
1800 * data/lalr1.cc: Adjust.
1801
4f84717d
AD
18022009-03-02 Akim Demaille <demaille@gostai.com>
1803
1804 b4_public_types_declare.
1805 * data/c++.m4 (b4_public_types_declare): New.
1806 * data/glr.cc, data/lalr1.cc: Use it.
1807
b9e4eb5b
AD
18082009-03-02 Akim Demaille <demaille@gostai.com>
1809
1810 b4_semantic_type_declare.
1811 * data/c++.m4 (b4_semantic_type_declare): New.
1812 Factors and generalizes what was in glr.cc and lalr1.cc.
1813 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1814 variants.
1815 * data/lalr1.cc, data/glr.cc: Use it.
1816
6a6e7f0c
AD
18172009-02-26 Akim Demaille <demaille@gostai.com>
1818
1819 Upgrade gnulib.
1820 * gnulib: Upgrade from master.
1821 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1822 Regen.
1823
e9e61b00
AD
18242009-02-25 Akim Demaille <demaille@gostai.com>
1825
1826 Remove useless arguments.
1827 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1828 relevant.
1829
3eead995
AD
18302009-02-25 Akim Demaille <demaille@gostai.com>
1831
1832 Comment changes.
1833 * data/lalr1.cc: here.
1834
87f28efe
AD
18352009-02-25 Akim Demaille <demaille@gostai.com>
1836
1837 Fix glr.cc's debug level handling.
1838 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1839 glr.c which is used.
1840 (debug_level, set_debug_level): Adjust.
1841
9be2a009
AD
18422009-02-25 Akim Demaille <demaille@gostai.com>
1843
1844 Copyright years.
1845 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1846
07a6e87d
AD
18472009-02-25 Akim Demaille <demaille@gostai.com>
1848
1849 Style changes.
1850 * etc/bench.pl.in (generate_grammar_list): Consitently use
1851 location_type, not yy::location.
1852
33c78bd2
AD
18532009-02-25 Akim Demaille <demaille@gostai.com>
1854
1855 Comment change.
1856 * data/lalr1.cc: here.
1857
49572920
AD
18582009-02-19 Akim Demaille <demaille@gostai.com>
1859
1860 Make yyparser::error public.
1861 * data/lalr1.cc: here.
1862 There is no good reason to keep it private (and it is convenient
1863 to use it from the scanner for instance). It is already public in
1864 glr.cc.
1865
88654b47
AD
18662009-02-19 Akim Demaille <demaille@gostai.com>
1867
1868 Comment changes.
1869 * data/glr.cc: here.
1870
4524c55b
AD
18712009-02-19 Akim Demaille <demaille@gostai.com>
1872
1873 Remove trailing blanks.
6a6e7f0c
AD
1874 The epilogue has its own ending \n, no need to add another.
1875
4524c55b
AD
1876 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
1877 epilogue.
1878 * data/glr.cc: dnl when extending the epilogue.
1879 Remove stray "private:".
1880
6ceccee8
AD
18812009-02-19 Akim Demaille <demaille@gostai.com>
1882
1883 Use b4_c_modern.
1884 * data/c.m4 (b4_c_function_decl): Here.
1885
9c6a8966
AD
18862009-02-19 Akim Demaille <demaille@gostai.com>
1887
1888 Comment changes.
1889 * data/lalr1.cc: here.
1890
507aa0e2
AD
18912009-02-19 Akim Demaille <demaille@gostai.com>
1892
1893 Extract variant.hh
1894 * data/variant.hh: New, extracted from...
1895 * data/lalr1.cc: here.
1896 Adjust.
1897 * data/local.mk: Adjust.
1898
51bacae6
AD
18992009-02-19 Akim Demaille <demaille@gostai.com>
1900
1901 Extract stack.hh from lalr1.cc.
1902 * data/stack.hh: New.
1903 * data/lalr1.cc: Extract from here.
1904 * data/local.mk: Adjust.
1905
06c3084f
JD
19062009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1907
1908 Add reminder about uploading public key to keys.gnupg.net.
1909 * HACKING (Release Procedure): Here.
1910
0ea583d2
AD
19112009-01-28 Akim Demaille <demaille@gostai.com>
1912
1913 * NEWS: Update information about 2.4.1 and 2.4.2.
1914
402b123d
AD
19152008-11-04 Akim Demaille <demaille@gostai.com>
1916
1917 Reformat NEWS.
1918 * NEWS: Use more outline-mode markup.
1919 Suggested by Jim Meyering.
1920
74553c98
AD
19212009-01-08 Akim Demaille <demaille@gostai.com>
1922
1923 Fix grep portability issues.
1924 Grep on Solaris does not support -q.
1925 Reported by Summum Bonum.
1926
1927 * NEWS: Add a stub for 2.4.2.
1928 * THANKS: Add Summum Bonum.
1929 * tests/atlocal.in (EGREP): New.
1930 (CC, CXX, XSLTPROC): Make it possible to override them via
1931 envvars.
1932 * tests/java.at: Use $EGREP instead of egrep.
1933 Use AT_CHECK's ignore instead of grep's -q.
1934
84eedf86
AD
19352008-12-11 Akim Demaille <demaille@gostai.com>
1936
1937 Pass the token type to yysyntax_error.
1938 * data/yacc.c (yysyntax_error): Take the transated token instead
1939 of the raw number.
1940 Adjust callers.
1941 * TODO: Update.
1942
5860cc8c
AD
19432008-12-11 Akim Demaille <demaille@gostai.com>
1944
1945 Formatting changes.
1946 * data/glr.c: Formatting changes.
1947
2b008529
AD
19482008-12-11 Akim Demaille <demaille@gostai.com>
1949
1950 Propagate i18n changes into glr.c.
1951 * TODO: Update.
1952 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1953 building the error message format dynamically.
1954 * data/lalr1.java: Formatting changes.
1955
2cd1af95
AD
19562008-12-11 Akim Demaille <demaille@gostai.com>
1957
1958 Use testsuite -C.
1959 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
1960 Solves problems when top_srcdir is an absolute path.
1961 Suggested by Eric Blake.
1962 * configure.ac: Require Autoconf 2.62.
1963
eeb29422
AD
19642008-12-11 Akim Demaille <demaille@gostai.com>
1965
1966 Simplify the i18n of the error messages.
1967 * data/lalr1.cc: Comment changes.
1968 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
1969 lalr1.cc instead of building dynamically the format string.
1970
6617622c
AD
19712008-12-08 Akim Demaille <demaille@gostai.com>
1972
1973 Fix portability issue in the test suite.
1974 * tests/local.at (AT_MATCHES_CHECK): New.
1975 Based on Perl instead of Sed. Sed has too many portability
1976 pitfalls, not ever Sed is GNU Sed.
1977 * tests/actions.at (Fix user actions without a trailing semicolon):
1978 Use it.
1979
2ca1136c
AD
19802008-12-08 Akim Demaille <demaille@gostai.com>
1981
1982 Update data/README.
1983 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1984
6c63b895
AD
19852008-12-08 Akim Demaille <demaille@gostai.com>
1986
1987 Install autoconf as a submodule to get m4sugar.
1988 * .gitmodules: Add submodules/autoconf.
1989 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1990 submodules/autoconf.
1991
417e31d2
AD
19922008-12-08 Akim Demaille <demaille@gostai.com>
1993
1994 Test token.prefix in all the skeletons.
1995 * data/java.m4 (b4_token_enum): Use the token.prefix.
1996 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
1997 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
1998 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
1999 * tests/java.at: Comment changes.
2000 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2001 (Java parser class and package names): Add token.prefix check.
2002
97abf544
AD
20032008-12-08 Akim Demaille <demaille@gostai.com>
2004
2005 Fix regeneration of atconfig.
2006 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2007 remove it: now that there is no tests/Makefile.am, the top-level
2008 Makefile properly updates atconfig when needed.
2009
e8cd1ad6
DJ
20102008-12-07 Di-an Jan <dianj@freeshell.org>
2011
2012 Implement the FIXME that ends an user action with a semicolon
2013 if it seems necessary.
2014 * src/scan-code.l (flex rules section): Flag cpp directive from
2015 any `#' to the first unescaped end-of-line. Semicolon is not
2016 needed after `;', `{', '}', or cpp directives and is needed after
2017 any other token (whitespaces and comments have no effect).
2018 * tests/actions.at (Fix user actions without a trailing semicolon):
2019 New test.
2020 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2021 to make user actions complete statements.
2022 Adjust column numbers in error messages.
2023 * tests/regression.at (Fix user actions without a trailing semicolon):
2024 Remove. Covered by new test.
2025
ce9447fc
AD
20262008-12-07 Akim Demaille <demaille@gostai.com>
2027
2028 Update gnulib.
2029 * gnulib: Update from master.
2030
d333175f
EB
20312008-12-05 Eric Blake <ebb9@byu.net>
2032
2033 Avoid compiler warning.
2034 * src/output.c (muscle_insert_item_number_table): Delete unused
2035 function.
2036
215b40ac
EB
20372008-12-02 Eric Blake <ebb9@byu.net>
2038
2039 Build testsuite with newer autoconf.
2040 * tests/output.at (m4_expand): Don't override in newer autoconf,
2041 where the underlying implementation changed.
2042 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2043 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2044 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2045 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2046 since some of them contain unbalanced ')'.
2047
3bb21113
AD
20482008-12-01 Akim Demaille <demaille@gostai.com>
2049
2050 Use b4_symbol for printers and destructors everywhere.
2051 * data/bison.m4 (b4_symbol_action_location): New.
2052 * data/c.m4 (b4_symbol_actions): Remove.
2053 Adjust all callers to use by b4_symbol_foreach and the corresponding
2054 b4_symbol_printer/destructor macro.
2055 * data/glr.cc: Adjust.
2056 * data/lalr1.java: Adjust the %destructor sanity check.
2057 * src/output.c (symbol_code_props_output): Remove, we no longer
2058 need the b4_symbol_printers/destructors tables.
2059
fb7c5b1f
AD
20602008-12-01 Akim Demaille <demaille@gostai.com>
2061
2062 Use b4_symbol_case_.
2063 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2064 b4_symbol_case_.
2065
cf6fb222
AD
20662008-12-01 Akim Demaille <demaille@gostai.com>
2067
2068 Move b4_symbol based macro to bison.m4.
2069 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2070 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2071 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2072 (b4_type_foreach): Move to...
2073 * data/bison.m4: Here.
2074 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2075 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 2076
e3c52a63
AD
20772008-12-01 Akim Demaille <demaille@gostai.com>
2078
2079 b4_symbol/type_foreach.
2080 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2081 Use them.
2082
2bde9113
AD
20832008-12-01 Akim Demaille <demaille@gostai.com>
2084
2085 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
2086 Instead of defining complex list of tuples to define various
2087 properties of the symbols, we now prefer to define symbols as
2088 "structs" in m4: using the symbol key (its number), and the
2089 property name, b4_symbol gives it value. Use this to handle
2090 destructors and printers.
2091
2bde9113
AD
2092 * src/output.c (CODE_PROP): New.
2093 (prepare_symbol_definitions): Use it to define the printer and
2094 destructor related attributes of the symbols.
2095 * data/lalr1.cc (b4_symbol_actions): Rename as...
2096 (b4_symbol_action): this.
2097 Use b4_symbol instead of 6 arguments.
2098 (b4_symbol_printer, b4_symbol_destructor): New.
2099 Use them instead of b4_symbol_actions.
2100
44494bf6
AD
21012008-12-01 Akim Demaille <demaille@gostai.com>
2102
2103 Avoid capturing variables too easily.
2104 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2105 v__ and p__ instead of v and p.
2106
fad814bd
AD
21072008-12-01 Akim Demaille <demaille@gostai.com>
2108
2109 Remove spurious empty line before syncline.
2110 * data/bison.m4 (b4_syncline): Don't output an empty line before
2111 the output.
2112
feda5527
AD
21132008-11-26 Akim Demaille <demaille@gostai.com>
2114
2115 Convert lib/Makefile.am into lib/local.mk.
2116 The real problem is rather gnulib.mk, which itself is extracted
2117 from a Makefile.am that gnulib expects to the "recursive". The
2118 tool prefix-gnulib-mk converts such a gnulib.mk to be
2119 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2120
2121 * etc/prefix-gnulib-mk: New.
2122 * bootstrap (slurp): Use it to convert further gnulib.mk.
2123 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2124 are deeper.
2125 * lib/Makefile.am: Rename as...
2126 * lib/local.mk: this.
2127 Adjust to be prefixed.
2128 * Makefile.am, configure.ac: Adjust.
2129 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2130
56ddee7f
AD
21312008-11-26 Akim Demaille <demaille@gostai.com>
2132
2133 s/_FLAGS/FLAGS/.
2134 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2135 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2136 Reported by Eric Blake.
2137
728e89a0
AD
21382008-11-26 Akim Demaille <demaille@gostai.com>
2139
2140 Use b4_parser_tables_define in glr.cc.
2141 * data/glr.c: Use b4_parser_tables_define instead of defining the
2142 (deterministic integral) tables by hand.
2143
2c1bf9bd
AD
21442008-11-26 Akim Demaille <demaille@gostai.com>
2145
2146 Use b4_parser_tables_define in Java.
2147 * data/java.m4 (b4_typed_parser_table): Rename as...
2148 (b4_typed_parser_table_define): this, for consistency.
2149 Accept a comment as $4.
2150 Move $2 into yy*_.
2151 (b4_integral_parser_table): Rename as...
2152 (b4_integral_parser_table_define): this.
2153 * data/lalr1.java: Adjust all uses.
2154 Use b4_parser_tables_define instead of generation by hand.
2155
ba206cf4
AD
21562008-11-26 Akim Demaille <demaille@gostai.com>
2157
2158 Prepare the convergence bw C style and Java table generation.
2159 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2160 (b4_tables_define): Rename as...
2161 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2162 (b4_parser_tables_define): these.
2163 * data/c.m4 (b4_table_define): Rename as...
2164 (b4_integral_parser_table_define): this.
2165 * data/lalr1.cc: Adjust.
2166 (b4_table_define, b4_table_declare): Rename as...
2167 (b4_integral_parser_table_define)
2168 (b4_integral_parser_table_declare): these.
2169 (yyrline_): Move the comment where it is actually used.
2170 * data/yacc.c: Adjust.
2171 (yyrline): Use b4_integral_parser_table_define.
2172
d12f8e49
AD
21732008-11-26 Akim Demaille <demaille@gostai.com>
2174
2175 Regen.
2176 * src/parse-gram.h, src/parse-gram.c: Regen.
2177
0991e29b
AD
21782008-11-26 Akim Demaille <demaille@gostai.com>
2179
2180 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2181 * data/lalr1.cc (b4_tables_map): Move to...
2182 * data/bison.m4: here.
2183 Update the comment for yytable during the flight.
2184 (b4_tables_declare, b4_tables_define): New.
2185 * data/lalr1.cc: Use them.
2186 * data/c.m4 (b4_table_define): New.
2187 * data/yacc.c: Use b4_tables_define instead of output the tables
2188 by hand.
2189 * tests/regression.at (Web2c Actions): Adjust the expected output,
2190 the order of the tables changed.
2191
3d3bc1fe
AD
21922008-11-26 Akim Demaille <demaille@gostai.com>
2193
2194 Get rid of (yy)rhs and (yy)prhs.
2195 These tables are no longer needed in the parsers, and they don't seem to
2196 be useful. They are not documented either.
feda5527 2197
3d3bc1fe
AD
2198 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2199 Adjust the computation of (yy)r2.
2200
08c81469
AD
22012008-11-26 Akim Demaille <demaille@gostai.com>
2202
2203 Rule length is unsigned.
2204 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2205
932b0c96
AD
22062008-11-26 Akim Demaille <demaille@gostai.com>
2207
2208 Get rid of lalr1-split.cc.
2209 It was no longer maintainer.
feda5527 2210
932b0c96
AD
2211 * data/lalr1-split.cc: Remove.
2212 * etc/bench.pl.in (bench_fusion_parser): Remove.
2213 Adjust.
2214
8452c667
AD
22152008-11-26 Akim Demaille <demaille@gostai.com>
2216
2217 Use yy* consistently.
2218 * data/glr.c: Now that yyrhs no longer exists as a global
2219 variable, rename local "rhs" variables into "yyrhs" for
2220 consistency.
2221
783aa653
AD
22222008-11-25 Akim Demaille <demaille@gostai.com>
2223
2224 Get rid of yyrhs and yyprhs in glr.c.
2225 * data/glr.c (yyrhs, yyprhs): Remove.
2226 Instead, use the state stack and yystos.
2227
6130b755
AD
22282008-11-25 Akim Demaille <demaille@gostai.com>
2229
2230 Flag glr tests.
2231 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2232 as an Autotest keyword.
2233
95a7b1c9
AD
22342008-11-25 Akim Demaille <demaille@gostai.com>
2235
2236 Prefer TESTSUITE_FLAGS.
2237 TESTSUITEFLAGS is barely readable.
feda5527 2238
95a7b1c9
AD
2239 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2240 for backward compatibility.
2241 Use the former instead of the latter.
2242
b4f18401
AD
22432008-11-25 Akim Demaille <demaille@gostai.com>
2244
2245 Get rid of yyrhs and yyprhs in larl1.java.
2246 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2247 (yy_reduce_print): Rather, use yystos_ and the state stack.
2248
c265fd6b
AD
22492008-11-25 Akim Demaille <demaille@gostai.com>
2250
2251 Formatting changes.
2252
68dbdee8
AD
22532008-11-25 Akim Demaille <demaille@gostai.com>
2254
2255 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
2256 They were used to get the symbol types, given a rule number, when
2257 displaying the top of the stack before a reduction. But the
2258 symbol type is available from the state stack. This has two be
2259 benefits: two tables less in the parser (making it smaller), and a
2260 more consistent use of the three stacks which will help to fuse
2261 them.
feda5527 2262
68dbdee8
AD
2263 * data/yacc.c (yyprhs, yyrhs): Remove.
2264 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2265 (yy_reduce_print): Take yyssp as argument.
2266 Use it, together with yystos, to get the symbol type.
2267 * tests/regression.at (Web2c Report): Remove these tables from the
2268 expected output.
2269
6ab1adbe
AD
22702008-11-25 Akim Demaille <demaille@gostai.com>
2271
2272 b4_tables_map.
2273 The point is to factor the generation of the tables across skeletons.
2274 This is language dependant.
feda5527 2275
6ab1adbe
AD
2276 * data/c.m4 (b4_comment_): New.
2277 Should be usable to define how to generate tables independently of
2278 the language.
2279 (b4_c_comment): New.
2280 (b4_comment): Bounce to b4_c_comment.
2281 Now support $2 = [PREFIX] for indentation.
2282 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2283 there is no comment.
2284 Indent it properly when there is one.
2285 Output the ending semicolon.
2286 (b4_table_define): Space changes.
2287 Output the ending semicolon.
2288 (b4_tables_map): New.
2289 Use it twice instead of declaring and defining the (integral)
2290 tables by hand.
2291
0fddb3d5
AD
22922008-11-25 Akim Demaille <demaille@gostai.com>
2293
2294 b4_table_declare.
2295 * data/lalr1.cc (b4_table_declare): New.
2296 Use it to declare the tables defined with b4_table_define.
2297 (b4_table_define): Declare a third arg to match b4_table_declare
2298 signature.
2299 Move all the comments around invocations of b4_table_define into
2300 the invocations itselves.
2301 Move things around to have the order for declarations and
2302 definitions.
2303
c4ddc0fb
AD
23042008-11-25 Akim Demaille <demaille@gostai.com>
2305
2306 Formatting changes.
2307 * data/lalr1.java: here.
2308
e0c653e7
AD
23092008-11-25 Akim Demaille <demaille@gostai.com>
2310
2311 b4_args is more general than only C++.
2312 * data/lalr1.cc (b4_args, _b4_args): Move to...
2313 * data/bison.m4: here.
2314
4182a0a1
DJ
23152008-11-21 Di-an Jan <dianj@freeshell.org>
2316
2317 Implement no-XXX arguments for --warnings, --report, --trace.
2318 * src/getargs.c (flags_argmatch): Handles no-XXX.
2319 Fix typo in doxygen comment.
2320
01466c3e
AD
23212008-11-21 Akim Demaille <demaille@gostai.com>
2322
2323 Display the changes in cross-options.texi.
2324 * build-aux/cross-options.pl ($sep): New, to separate items.
2325 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2326 changes.
2327
a7c09cba
DJ
23282008-11-20 Di-an Jan <dianj@freeshell.org>
2329
2330 Improves options in the manual.
2331 * doc/bison.texinfo (-g, -x): Add space before argument.
2332 (Option Cross Key): Implement FIXME: listing directives also.
2333 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2334 (Short Option): Special case -d. Put arguments inside @option.
feda5527 2335 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
2336 src/scan-gram.l (actual name passed as the first argument)
2337 with special case for %define.
2338 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2339 to build-aux/cross-options.pl.
2340 * src/getargs.c (usage): Document limitations of cross-options.pl.
2341 * src/scan-gram.l: Likewise.
2342
6c88b51e
JD
23432008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2344
2345 Fix unexpanded macros in GLR defines file.
2346 Reported by Csaba Raduly at
2347 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2348 * THANKS (Csaba Raduly): Add.
2349 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2350 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2351 lexer in a separate module that includes the defines file.
2352 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2353 source.
2354 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2355 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2356 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2357 (AT_DATA_SOURCE_PROLOGUE): New.
2358 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2359 (AT_DATA_SOURCE): New.
2360 (AT_FULL_COMPILE): Extend to support an additional source file.
2361
1e034807
AD
23622008-11-18 Akim Demaille <demaille@gostai.com>
2363
2364 More TODO.
2365 * TODO: More short term issues.
2366
e3dda35c
AD
23672008-11-18 Akim Demaille <demaille@gostai.com>
2368
2369 Regen.
2370 * src/parse-gram.h, src/parse-gram.c: Regen.
2371
bd187d7b
AD
23722008-11-18 Akim Demaille <demaille@gostai.com>
2373
2374 Use b4_subtract where possible.
2375 * data/lalr1.cc (b4_subtract): Move to...
2376 * data/bison.m4: here.
2377 * data/glr.c (b4_rhs_data): Use it.
2378 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2379
6085ab0d
AD
23802008-11-18 Akim Demaille <demaille@gostai.com>
2381
2382 Remove incorrect mode specification.
2383 * data/glr.cc: Don't pretend it's C code.
2384
9ce405ce
JD
23852008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2386
2387 Simplify last patch slightly.
2388 * src/getargs.c (getargs): Here.
2389
a8beef7e
JD
23902008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2391
2392 Fix last warning from --enable-gcc-warnings.
2393 * src/getargs.c (getargs): Don't assign const address to non-const
2394 pointer.
2395
d50eea6d
JD
23962008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2397
2398 Don't let maintainer-*-check targets force a version update.
2399 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2400 handled.
2401
f5f419de
DJ
24022008-11-17 Di-an Jan <dianj@freeshell.org>
2403
2404 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2405 Align menus. Adjust word wrapping. Use node names for menu names.
2406 (Examples): Don't abbreviate node names.
2407 (LocalWords): Remove abbreviations.
2408 (Copying): Make description a sentence.
d50eea6d 2409 (Java Action Features): Remove period to match the rest of menu.
f5f419de 2410
d73e55e0
DJ
24112008-11-17 Di-an Jan <dianj@freeshell.org>
2412
2413 Handles several --enable-gcc-warnings.
2414 * src/getargs.c (command_line_location): Set parameters to void.
2415 * src/output.c (symbol_type_name_cmp): Make static.
2416 (symbols_by_type_name): Set parameters to void.
2417 (symbol_definitions_output): Remove unused parameter. Rename as...
2418 (prepare_symbol_definitions): this.
2419 (muscles_output): Move symbol_definitions_output to...
2420 (output): here as prepare_symbol_definitions.
2421 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 2422 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 2423
68c989de
DJ
24242008-11-17 Di-an Jan <dianj@freeshell.org>
2425
2426 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2427 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2428
23ce6f4c
AD
24292008-11-16 Akim Demaille <demaille@gostai.com>
2430
2431 Add missing $(EXEEXT).
2432 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2433 "src/bison$(EXEEXT)".
2434 Reported by Di-an Jan.
2435
dd704c35
AD
24362008-11-15 Akim Demaille <demaille@gostai.com>
2437
2438 * TODO: Update.
2439
dab244d5
AD
24402008-11-15 Akim Demaille <demaille@gostai.com>
2441
2442 Formatting changes.
2443 * tests/input.at: here.
2444
4b4da9fb
AD
24452008-11-15 Akim Demaille <demaille@gostai.com>
2446
2447 Remove duplicate header inclusion.
2448 * src/LR0.c: here.
2449
4ea3f53d
AD
24502008-11-15 Akim Demaille <demaille@gostai.com>
2451
2452 * src/parse-gram.h, src/parse-gram.c: Regen.
2453
cb823b6f
AD
24542008-11-15 Akim Demaille <demaille@gostai.com>
2455
2456 Support parametric types.
b06df3c2
AD
2457
2458 There are two issues to handle: first scanning nested angle
2459 bracket pairs to support types such as std::pair< std::string,
2460 std::list<std::string> > >.
2461
2462 Another issue is to address idiosyncracies of C++: do not glue two
2463 closing angle brackets together (otherwise it's operator>>), and
2464 avoid sticking blindly a TYPE to the opening <, as it can result
2465 in '<:' which is a digraph for '['.
2466
cb823b6f
AD
2467 * src/scan-gram.l (brace_level): Rename as...
2468 (nesting): this.
2469 (SC_TAG): New.
2470 Implement support for complex tags.
b06df3c2 2471 (tag): Accept
cb823b6f
AD
2472 , but not <.
2473 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2474 (b4_symbol_variant): Leave space around types as parameters.
2475 * examples/variant.yy: Use nested template types and leading ::.
2476 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2477 Rename as...
2478 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2479 * tests/c++.at: Test parametric types.
2480
7b6e6753
AD
24812008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2482
2483 Test token.prefix.
2484 This is not sufficient, but we test at least that the make_SYMBOL
2485 interface is not affected by token.prefix. A more general test
2486 will be implemented when the support of token.prefix is generalized
2487 to more skeletons.
b06df3c2 2488
7b6e6753
AD
2489 * tests/c++.at: One more variant test, using token.prefix.
2490
dddec537
AD
24912008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2492
2493 Test the make_TOKEN interface.
2494 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2495 Factor the common code in yylex.
2496 Use it to test "%define lex_symbol".
2497
7d3e21ba
AD
24982008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2499
2500 Formatting change.
2501
4fc55348
AD
25022008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2503
2504 Simplify code for variants bench marks.
2505 * etc/bench.pl.in (&generate_grammar_list): Define and use
2506 location_type.
2507 Factor the common code in yylex.
2508
070e6509
AD
25092008-11-15 Akim Demaille <demaille@gostai.com>
2510
2511 Better error message.
2512 * bootstrap (find_tool): Fix the error message.
2513
0078681b
AD
25142008-11-15 Akim Demaille <demaille@gostai.com>
2515
2516 Update variant.yy to newest interface.
2517 * examples/variant.yy: Define lex_symbol.
2518 Adjust.
2519
ff084799
AD
25202008-11-15 Akim Demaille <demaille@gostai.com>
2521
2522 Don't use locations in variant.yy.
2523 * examples/variant.yy: Adjust to not using locations.
2524
b0d79ec6
AD
25252008-11-15 Akim Demaille <demaille@gostai.com>
2526
2527 Comment changes.
2528 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2529 comments for the license.
2530
d4977ce3
AD
25312008-11-15 Akim Demaille <demaille@gostai.com>
2532
2533 Remove tests/Makefile.am.
2534 * tests/Makefile.am: Rename as...
2535 * tests/local.mk: this.
2536 * Makefile.am, configure.ac: Adjust.
2537 * Makefile.am (DISTCLEANFILES): Define.
2538 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2539 Remove, we no longer need to bounce to the real targets.
2540
87f1149a
AD
25412008-11-15 Akim Demaille <demaille@gostai.com>
2542
2543 Comment changes.
2544
36415906
AD
25452008-11-15 Akim Demaille <demaille@gostai.com>
2546
2547 djgpp/local.mk.
2548 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2549 * djgpp/local.mk: this new file.
2550
e2c2f696
AD
25512008-11-15 Akim Demaille <demaille@gostai.com>
2552
2553 Remove doc/Makefile.am.
2554 * doc/Makefile.am: Rename as...
2555 * doc/local.mk: this.
2556 Adjust paths
2557 * Makefile.am, configure.ac: Adjust.
2558 * Makefile.am (MOSTLYCLEANFILES): New.
2559 * src/local.mk: Adjust.
2560
2ead32e6
AD
25612008-11-15 Akim Demaille <demaille@gostai.com>
2562
2563 Move sc_tight_scope into maint.mk.
b06df3c2
AD
2564 It does not work, and I don't know how it was supposed to work: it
2565 seems to be looking for sources in the build tree. I just moved
2566 it at a better place, fixing it is still required.
2567
2ead32e6
AD
2568 * src/local.mk (echo): Remove.
2569 (sc_tight_scope): Move to...
2570 * maint.mk: here.
2571
2df9ec37
AD
25722008-11-15 Akim Demaille <demaille@gostai.com>
2573
2574 Regen.
2575 * src/parse-gram.h, src/parse-gram.h: Regen.
2576
0305d25e
AD
25772008-11-15 Akim Demaille <demaille@gostai.com>
2578
2579 Remove src/Makefile.am.
2580 * src/Makefile.am: Rename as...
2581 * src/local.mk: this.
2582 Prefix all the paths with src/.
2583 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2584 (AM_CPPFLAGS): Find find in builddir/src.
2585 (YACC): Move the flags into...
2586 (AM_YFLAGS): here.
2587 * maint.mk (sc_tight_scope): Disable.
2588 It used to bounce to the version in src/Makefile.am which is now
2589 part of this very Makefile.
2590 * Makefile.am, configure.ac: Adjust.
2591 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2592 include "..." to find files "here": we are no longer in src/, so
2593 qualify the includes with src/.
2594 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2595 prefix.
2596 (.x.1): Adjust to be able to create src/foo from the top level
2597 Makefile, instead of going bounce to src/Makefile the creation of
2598 foo.
2599
5277c0a3
AD
26002008-11-15 Akim Demaille <demaille@gostai.com>
2601
2602 Remove useless variable.
2603 * doc/Makefile.am (srcsrcdir): Remove.
2604
6a5aa0cd
AD
26052008-11-15 Akim Demaille <demaille@gostai.com>
2606
2607 Remove data/Makefile.am.
2608 * data/Makefile.am: Rename as...
2609 * data/local.mk: this.
2610 Adjust paths.
2611 * Makefile.am, configure.ac: Adjust.
2612
7cb794dc
AD
26132008-11-15 Akim Demaille <demaille@gostai.com>
2614
2615 Remove etc/Makefile.am.
2616 * etc/Makefile.am: Rename as...
2617 * etc/local.mk: this.
2618 Adjust.
2619 * Makefile.am, configure.ac: Adjust.
2620
cd409e3b
AD
26212008-11-15 Akim Demaille <demaille@gostai.com>
2622
2623 Remove examples/local.mk.
2624 examples/calc++/Makefile.am might be interesting to keep as is, since
2625 it is an example in itself.
2df9ec37 2626
cd409e3b
AD
2627 * examples/Makefile.am: Rename as...
2628 * examples/local.mk: this.
2629 Adjust.
2630 * Makefile.am, configure.ac: Adjust.
2631
9a1e4214
AD
26322008-11-15 Akim Demaille <demaille@gostai.com>
2633
2634 Remove build-aux/Makefile.am.
2635 Recursive Makefiles are really way too slow, let's get rid of some of
2636 them.
2df9ec37 2637
9a1e4214
AD
2638 * build-aux/Makefile.am: Rename as...
2639 * build-aux/local.mk: this.
2640 Adjust paths.
2641 * Makefile.am, configure.ac: Adjust.
2642
0634493c
AD
26432008-11-15 Akim Demaille <demaille@gostai.com>
2644
2645 Provide convenience constructors for locations and positions.
2646 * data/location.cc (position::position): Accept file, line and
2647 column as arguments with default values.
2648 Always qualify initial line and column literals as unsigned.
2649 (location::location): Provide convenience constructors.
2650
fe1b448a
AD
26512008-11-15 Akim Demaille <demaille@gostai.com>
2652
b06df3c2
AD
2653 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
2654 token type.
fe1b448a
AD
2655 Using template buys us nothing, and makes it uselessly complex to
2656 construct a symbol. Besides, it could not be generalized to other
2657 languages, while make_FOO would work in C/Java etc.
2df9ec37 2658
fe1b448a
AD
2659 * data/lalr1.cc (b4_symbol_): New.
2660 (b4_symbol): Use it.
2661 (b4_symbol_constructor_declaration_)
2662 (b4_symbol_constructor_definition_): Instead of generating
2663 specializations of an overloaded template function, just generate
2664 several functions whose names are forged from the token names
2665 without the token.prefix.
2666 (b4_symbol_constructor_declarations): Generate them for all the
2667 symbols, not just by class of symbol type, now that instead of
2668 specializing a function template by the token, we generate a
2669 function named after the token.
2670 (b4_symbol_constructor_specialization_)
2671 (b4_symbol_constructor_specializations): Remove.
2672 * etc/bench.pl.in: Adjust to this new API.
2673
5679f311
AD
26742008-11-13 Akim Demaille <demaille@gostai.com>
2675
2676 %define token.prefix.
b06df3c2
AD
2677 Provide a means to add a prefix to the name of the tokens as
2678 output in the generated files. Because of name clashes, it is
2679 good to have such a prefix such as TOK_ that protects from names
2680 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 2681
5679f311
AD
2682 * data/bison.m4 (token.prefix): Empty by default.
2683 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
2684 * data/lalr1.cc (b4_symbol): Ditto.
2685
3204049e
AD
26862008-11-13 Akim Demaille <demaille@gostai.com>
2687
2688 Compute at M4 time some of the subtractions.
90290ce5 2689 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
2690 (b4_rhs_data): Use it.
2691
202598d3
AD
26922008-11-13 Akim Demaille <demaille@gostai.com>
2693
2694 symbol::token.
b06df3c2 2695 This allows the user to get the type of a token returned by yylex.
2df9ec37 2696
202598d3
AD
2697 * data/lalr1.cc (symbol::token): New.
2698 (yytoknum_): Define when %define lex_symbol, independently of
2699 %debug.
2700 (yytoken_number_): Move into...
2701 (symbol::token): here, since that's the only use.
2702 The other one is YYPRINT which was not officially supported
2703 by lalr1.cc, and anyway it did not work since YYPRINT uses this
2704 array under a different name (yytoknum).
2705
fc2476c7
AD
27062008-11-13 Akim Demaille <demaille@gostai.com>
2707
2708 YYERRCODE.
2709 * TODO (YYERRCODE): Mention the case of $undef.
2710
865f1e9f
AD
27112008-11-13 Akim Demaille <demaille@gostai.com>
2712
2713 TODO: YYPRINT.
2714 * TODO (YYPRINT): New.
2715
cb0b136a
AD
27162008-11-13 Akim Demaille <demaille@gostai.com>
2717
2718 Comment changes.
2719 * data/lalr1.cc, data/yacc.c: Fix the description of the
2720 yytranslate and yytoknum tables.
2721
2c086d29
AD
27222008-11-13 Akim Demaille <demaille@gostai.com>
2723
2724 Define make_symbol in the header.
b06df3c2
AD
2725 To reach good performances these functions should be inlined (yet
2726 this is to measure precisely). To this end they must be available
2727 to the caller.
2df9ec37 2728
2c086d29
AD
2729 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
2730 location_type with the class name.
2731 Since will now be output in the header, declare "inline".
2732 No longer use b4_symbol_constructor_specializations, but
2733 b4_symbol_constructor_definitions in the header.
2734 Don't call it in the *.cc file.
2735
1c4af381
AD
27362008-11-13 Akim Demaille <demaille@gostai.com>
2737
2738 Define yytranslate in the header for lex_symbol.
2739 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
2740 into the header file when using %define lex_symbol.
2741 (yytranslate_): Declare inline.
2742
e51b0a82
AD
27432008-11-13 Akim Demaille <demaille@gostai.com>
2744
b06df3c2
AD
2745 Define the constructors of symbol_type in
2746 b4_symbol_constructor_definitions.
e51b0a82 2747 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
2748 forthcoming patch will move elsewhere. Hence the interest of
2749 putting them together.
2df9ec37 2750
b06df3c2
AD
2751 The stack_symbol_type does not need to be moved, it is used only
2752 by the parser.
2df9ec37 2753
e51b0a82
AD
2754 * data/lalr1.cc: Move symbol_type and symbol_base_type
2755 constructors into...
2756 (b4_symbol_constructor_definitions): here.
2757 Adjust.
2758
78835571
AD
27592008-11-13 Akim Demaille <demaille@gostai.com>
2760
2761 Make it easier to move the definition of yytranslate_.
2762 Forthcoming changes will make it possible to use yytranslate_
2763 from outside the parser implementation file.
2df9ec37 2764
78835571
AD
2765 * data/lalr1.cc (b4_yytranslate_definition): New.
2766 Use it.
2767
c1e6c88c
AD
27682008-11-13 Akim Demaille <demaille@gostai.com>
2769
2770 Remove useless class specification.
2771 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2772 to refer to the class name to use a type defined by the class for
2773 arguments of member functions.
2774
4654b0c0
AD
27752008-11-13 Akim Demaille <demaille@gostai.com>
2776
2777 Finer input type for yytranslate.
2778 This patch is debatable: the tradition expects yylex to return an int
2779 which happens to correspond to token_number (which is an enum). This
2780 allows for instance to return characters (such as '*' etc.). But this
2781 goes against the stronger typing I am trying to have with the new
2782 lex interface which return a symbol_type. So in this case, feed
2783 yytranslate_ with a token_type.
2df9ec37 2784
4654b0c0
AD
2785 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2786 expect a token_type.
2787
dd735e4e
AD
27882008-11-13 Akim Demaille <demaille@gostai.com>
2789
2790 Honor lex-params in %define lex_symbol mode.
2791 * data/lalr1.cc: Use b4_lex_param.
2792
6659366c
AD
27932008-11-13 Akim Demaille <demaille@gostai.com>
2794
2795 Simplify names.
2796 * src/output.c (symbol_definitions_output): Rename symbol
2797 attributes type_name and has_type_name as type and has_type.
2798 * data/lalr1.cc: Adjust uses.
2799
e9805e57
AD
28002008-11-13 Akim Demaille <demaille@gostai.com>
2801
2802 Use b4_type_names for the union type.
b06df3c2
AD
2803 The union used to compute the size of the variant used to iterate
2804 over the type of all the symbols, with a lot of redundancy. Now
2805 iterate over the lists of symbols having the same type-name.
2df9ec37 2806
e9805e57
AD
2807 * data/lalr1.cc (b4_char_sizeof_): New.
2808 (b4_char_sizeof): Use it.
2809 Adjust to be called with a list of numbers instead of a single
2810 number.
2811 Adjust its caller for new-line issues.
2812
aea10ef4
AD
28132008-11-13 Akim Demaille <demaille@gostai.com>
2814
2815 Define the "identifier" of a symbol.
b06df3c2
AD
2816 Symbols may have several string representations, for instance if
2817 they have an alias. What I call its "id" is a string that can be
2818 used as an identifier. May not exist.
2df9ec37 2819
b06df3c2
AD
2820 Currently the symbols which have the "tag_is_id" flag set are
2821 those that don't have an alias. Look harder for the id.
2df9ec37 2822
aea10ef4
AD
2823 * src/output.c (is_identifier): Move to...
2824 * src/symtab.c (is_identifier): here.
2825 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2826 * src/output.c (symbol_definitions_output): Use it to define "id"
2827 and "has_id".
2828 Remove the definition of "tag_is_id".
2829 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2830 "tag_is_id" were used to produce code.
2831 We still use "tag" for documentation.
2832
2ea7730c
AD
28332008-11-11 Akim Demaille <demaille@gostai.com>
2834
2835 Locations are no longer required by lalr1.cc.
2836 * data/lalr1.cc (_b4_args, b4_args): New.
2837 Adjust all uses of locations to make them optional.
2838 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2839 (AT_CHECK_NAMESPACE): Check the use of locations.
2840 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2841 without locations with lalr1.cc.
2842 Test these cases.
2843 * tests/output.at: Check lalr1.cc with and without location
2844 support.
2845 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2846 Don't use locations.
2847
7ca2266a
AD
28482008-11-11 Akim Demaille <demaille@gostai.com>
2849
2850 AT_FULL_COMPILE.
2851 * tests/local.at (AT_FULL_COMPILE): New.
2852 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2853
1a7a65f9
AD
28542008-11-11 Akim Demaille <demaille@gostai.com>
2855
2856 Support parens in calc++.
2857 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2858 * examples/calc++/test (run): Check the expected output.
2859 Adjust callers.
2860 Check parens too.
2861
c944f7f2
AD
28622008-11-11 Akim Demaille <demaille@gostai.com>
2863
2864 Simplify lalr1.cc since %defines is mandatory.
2865 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2866
dada3cd1
AD
28672008-11-11 Akim Demaille <demaille@gostai.com>
2868
2869 TODO: yyfmt.
2870 * TODO (yysyntax_error): New item.
2871
422c18f4
AD
28722008-11-11 Akim Demaille <demaille@gostai.com>
2873
2874 Prefer M4 to CPP.
2875 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
2876 YYERROR_VERBOSE.
2877
a0ffc175
AD
28782008-11-11 Akim Demaille <demaille@gostai.com>
2879
2880 Support i18n of the parse error messages.
2881 * TODO (lalr1.cc/I18n): Remove.
2882 * data/lalr1.cc (yysyntax_error_): Support the translation of the
2883 error messages, as done in yacc.c.
2884 Stay within the yy* pseudo namespace.
2885
00a8a083
AD
28862008-11-11 Akim Demaille <demaille@gostai.com>
2887
2888 More TODO.
2889 * TODO (single stack, yysyntax_error): New.
2890
09277875
AD
28912008-11-11 Akim Demaille <demaille@gostai.com>
2892
2893 Make it possible to return a symbol_type from yylex.
2894 * data/lalr1.cc (b4_lex_symbol_if): New.
2895 (parse): When lex_symbol is defined, expected yylex to return the
2896 complete lookahead.
2897 * etc/bench.pl.in (generate_grammar_list): Extend to support this
2898 yylex interface.
2899 (bench_variant_parser): Exercise it.
2900
64c1b92a
AD
29012008-11-11 Akim Demaille <demaille@gostai.com>
2902
2903 Remove useless bench case.
2904 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
2905 no longer used.
2906
2722aa42
AD
29072008-11-11 Akim Demaille <demaille@gostai.com>
2908
2909 Improve display of directives.
2910 * etc/bench.pl.in (parse_term): Don't add useless eol.
2911
918eb7c5
AD
29122008-11-11 Akim Demaille <demaille@gostai.com>
2913
2914 Use string_cast in the bench.
2915 * etc/bench.pl.in (generate_grammar_list): Define and use
2916 string_cast.
2917
39be9022
AD
29182008-11-11 Akim Demaille <demaille@gostai.com>
2919
2920 Replace yychar with a Boolean.
2921 * data/lalr1.cc (parse::yychar): Replace by...
2922 (parse::yyempty): this.
2923
a2e3fa77
AD
29242008-11-11 Akim Demaille <demaille@gostai.com>
2925
2926 Factor the tables.
2927 * TODO: New item.
2928
aba12ad1
AD
29292008-11-11 Akim Demaille <demaille@gostai.com>
2930
2931 Let yytranslate handle the eof case.
2932 * data/lalr1.cc (yytranslate_): Handle the EOF case.
2933 Adjust callers.
2934 No longer expect yychar to be equal to yyeof_, rather, test the
2935 lookahead's (translated) kind.
2936
27cb5b59
AD
29372008-11-11 Akim Demaille <demaille@gostai.com>
2938
2939 yychar cannot be empty in yyerrlab.
2940 * TODO (yychar == yyempty_): New.
2941 * data/lalr1.cc: Remove the handling of this case.
2942 This eases forthcoming changes related to yychar and yytranslate.
2943
fce629c0
AD
29442008-11-11 Akim Demaille <demaille@gostai.com>
2945
2946 Bench: syntactic sugar for %define/#define.
2947 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
2948 (&bench_push_parser, bench_variant_parser): Use this feature.
2949 (&eat): New.
2950 Use it.
2951
ce671960
AD
29522008-11-11 Akim Demaille <demaille@gostai.com>
2953
2954 Less memory pressure on the "list" bench.
2955 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
2956 the values, to limit memory pressure.
2957
2873fdf8
AD
29582008-11-11 Akim Demaille <demaille@gostai.com>
2959
2960 Introduce make_symbol.
b06df3c2
AD
2961 make_symbol provides a means to construct a full symbol (kind,
2962 value, location) in a single shot. It is meant to be a Symbol
2963 constructor, parameterized by the symbol kind so that overloading
2964 would prevent incorrect kind/value pairs. Unfortunately
2965 parameterized constructors do not work well in C++ (unless the
2966 parameter also appears as an argument, which is not acceptable),
2967 hence the use of a function instead of a constructor.
2df9ec37 2968
2873fdf8
AD
2969 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2970 (b4_symbol_constructor_declarations)
2971 (b4_symbol_constructor_specialization_)
2972 (b4_symbol_constructor_specializations)
2973 (b4_symbol_constructor_definition_)
2974 (b4_symbol_constructor_definitions): New.
2975 Use them where appropriate to generate declaration, declaration of
2976 the specializations, and implementations of the templated
2977 overloaded function "make_symbol".
2978 (variant::variant): Always define a default ctor.
2979 Also provide a copy ctor.
2980 (symbol_base_type, symbol_type): New ctor overloads for value-less
2981 symbols.
2982 (symbol_type): Now public, so that functions such as yylex can use
2983 it.
2984
8be046d7
AD
29852008-11-11 Akim Demaille <demaille@gostai.com>
2986
2987 Inform m4 whether a tag is a valid id.
2988 * src/output.c (is_identifier): New.
2989 (symbol_definitions_output): Use it to define tag_is_id.
2990 But maybe this should be done at m4 level?
2991
de62edee
AD
29922008-11-11 Akim Demaille <demaille@gostai.com>
2993
2994 Test 214 was failing: it greps with a pattern containing [ ]*
2995 which obviously meant to catch spaces and tabs, but contained only
2996 spaces. Tabulations in sources are a nuisance, so to simplify the
2997 matter, get rid of all the tabulations in the Java sources. The
2998 other skeletons will be treated equally later.
2999
3000 * data/java.m4, data/lalr1.java: Untabify.
3001 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3002 tabulations are no longer generated.
3003
905f0697
PB
30042008-11-11 Paolo Bonzini <bonzini@gnu.org>
3005
3006 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3007 * configure.ac: Adjust usage.
3008 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3009 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3010 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3011
09ccae9b
DJ
30122008-11-10 Di-an Jan <dianj@freeshell.org>
3013
3014 Workaround Java's ``code too large'' problem for parser tables
3015 in most cases, by using one function per initialization.
3016 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3017 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3018 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3019 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3020 (yytname_): Use b4_typed_parser_table.
3021 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3022 ``code too large'' error.
3023
1979121c
DJ
30242008-11-10 Di-an Jan <dianj@freeshell.org>
3025
3026 * NEWS: Document them.
de62edee 3027
1979121c
DJ
3028 General Java skeleton improvements.
3029 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3030 using gcj < 4.3 in the testsuite, according to comments in
3031 gnulib/m4/javacomp.m4.
3032 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3033 location_type, position_type): Remove extraneous brackets from
3034 b4_percent_define_default.
3035 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3036 m4_define and m4_define_default.
3037 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3038 which marks the end of user code with appropriate syncline, like all
3039 the other skeletons.
3040 (b4_user_post_prologue): Add. Don't silently drop.
3041 (yylex): Remove.
3042 (parse): Inline yylex.
3043 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3044 (%{...%}): Fix typo of %code imports.
3045 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3046
3047 Support annotations on parser class with %define annotations.
3048 * data/lalr1.java (annotations): Add to parser class modifier.
3049 * doc/bison.texinfo (Java Parser Interface): Document
3050 %define annotations.
3051 (Java Declarations Summary): Document %define annotations.
3052 * tests/java.at (Java parser class modifiers): Test annotations.
3053
3054 Do not generate code for %error-verbose unless requested.
3055 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3056 Make private. Make conditional on %error-verbose.
3057 (getErrorVerbose, setErrorVerbose): New.
3058 (yytnamerr_): Make conditional on %error-verbose.
3059 (yysyntax_error): Make some code conditional on %error-verbose.
3060 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3061 about %error-verbose having no effect.
3062 (getErrorVerbose, setErrorVerbose): Document.
3063
3064 Move constants for token names to Lexer interface.
3065 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3066 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3067 (parse): Qualify EOF to Lexer.EOF.
3068 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3069 EOF and token names to Java Lexer Interface.
3070 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3071
3072 Make yyerror public.
3073 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3074 (yyerror): Change to public. Add Javadoc comments. Use longer
3075 parameter names. Make the body rather than the declarator
3076 conditional on %locations.
3077 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3078
3079 Allow user to add code to the constructor with %code init.
3080 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3081 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3082 Add %code init to the front of the constructor body.
3083 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3084 and %define init_throws.
3085 (Java Declarations Summary): Document %code init and
3086 %define init_throws.
3087 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3088 (Java constructor init and init_throws): Add tests.
de62edee 3089
42f832d6
AD
30902008-11-10 Akim Demaille <demaille@gostai.com>
3091
3092 Update TODO.
3093 * TODO (-D): is implemented.
3094 (associativity): Same precedence must have the same associativity.
3095 For instance, how can a * b / c be parsed if * is %left and / is
3096 %right?
3097 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3098
247efe34
AD
30992008-11-10 Akim Demaille <demaille@gostai.com>
3100
3101 Formatting changes.
3102
5d731440
AD
31032008-11-10 Akim Demaille <demaille@gostai.com>
3104
3105 More information about the symbols.
3106 * src/output.c (type_names_output): Document all the symbols,
3107 including those that don't have a type-name.
3108 (symbol_definitions_output): Define "is_token" and
3109 "has_type_name".
3110 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3111 type-name, now that they are defined too in b4_type_names.
3112
21db118b
AD
31132008-11-10 Akim Demaille <demaille@gostai.com>
3114
3115 Regen.
3116
6ed15cde
AD
31172008-11-10 Akim Demaille <demaille@gostai.com>
3118
3119 Make parser::yytranslate static.
b06df3c2
AD
3120 Small speedup (1%) on the list grammar. And makes yytranslate_
3121 available in non member functions.
de62edee 3122
6ed15cde
AD
3123 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3124 function.
3125
30bb2edc
AD
31262008-11-10 Akim Demaille <demaille@gostai.com>
3127
3128 Avoid trailing spaces.
3129 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3130 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3131 they can be empty, and anyway this incorrectly indents the first
3132 action.
3133
b3a28fd4
AD
31342008-11-10 Akim Demaille <demaille@gostai.com>
3135
3136 Comment changes.
3137
914202bd
AD
31382008-11-10 Akim Demaille <demaille@gostai.com>
3139
3140 Use "enum" for integral constants.
3141 This is just nicer to read, I observed no speedup.
de62edee 3142
914202bd
AD
3143 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3144 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3145 (yyuser_token_number_max_, yyundef_token_): Move into...
3146 (yytranslate_): here.
3147
c17f9a4a
AD
31482008-11-10 Akim Demaille <demaille@gostai.com>
3149
3150 Shortcuts in bench directives.
3151 * etc/bench.pl.in (parse_dirs): New.
3152 Use it.
3153 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3154 Create the benches in "benches/".
3155
b9855ea5
AD
31562008-11-10 Akim Demaille <demaille@gostai.com>
3157
3158 Formatting changes.
3159 * data/lalr1.cc: here.
3160
6e097787
AD
31612008-11-10 Akim Demaille <demaille@gostai.com>
3162
3163 Adjust verbose message to using emacs.
3164 * etc/bench.pl.in: Inform compilation-mode when we change the
3165 directory.
3166 (generate_grammar_list): Recognize %define "variant" in addition
3167 to %define variant.
3168
4c3cc7da
AD
31692008-11-10 Akim Demaille <demaille@gostai.com>
3170
3171 Classify symbols by type-name.
3172 * src/uniqstr.h (UNIQSTR_CMP): New.
3173 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3174 (type_names_output): New.
3175 (muscles_output): Use it.
3176 * data/lalr1.cc (b4_symbol_action_): Remove.
3177 (b4_symbol_case_, b4_type_action_): New.
3178 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3179
d69c9694
AD
31802008-11-10 Akim Demaille <demaille@gostai.com>
3181
3182 Change the handling of the symbols in the skeletons.
3183 Before we were using tables which lines were the symbols and which
3184 columns were things like number, tag, type-name etc. It is was
3185 difficult to extend: each time a column was added, all the numbers had
3186 to be updated (you asked for colon $2, not for "tag"). Also, it was
3187 hard to filter these tables when only a subset of the symbols (say the
3188 tokens, or the nterms, or the tokens that have and external number
3189 *and* a type-name) was of interest.
de62edee 3190
d69c9694
AD
3191 Now instead of monolithic tables, we define one macro per cell. For
3192 instance "b4_symbol(0, tag)" is a macro name which contents is
3193 self-decriptive. The macro "b4_symbol" provides easier access to
3194 these cells.
de62edee 3195
d69c9694
AD
3196 * src/output.c (type_names_output): Remove.
3197 (symbol_numbers_output, symbol_definitions_output): New.
3198 (muscles_output): Call them.
3199 (prepare_symbols): Define b4_symbols_number.
3200
5263bea9
AD
32012008-11-10 Akim Demaille <demaille@gostai.com>
3202
3203 --trace=muscles
3204 * src/getargs.h, src/getargs.c (trace_muscle): New.
3205 (trace_types, trace_args): Support it.
3206 * src/output.c (output_skeleton): Use it.
3207
4175f6bb
AD
32082008-11-10 Akim Demaille <demaille@gostai.com>
3209
3210 muscles_output.
3211 * src/output.c (muscles_output): New, extracted from...
3212 (output_skeleton): here.
3213 Adjust.
3214
1de69d6a
AD
32152008-11-10 Akim Demaille <demaille@gostai.com>
3216
3217 Formatting changes.
3218
36db78a7
AD
32192008-11-10 Akim Demaille <demaille@gostai.com>
3220
3221 Update the variant example.
3222 * examples/variant.yy: Formatting changes.
3223 One stage build.
3224
e5eb92e7
AD
32252008-11-10 Akim Demaille <demaille@gostai.com>
3226
3227 Support constructor with an argument.
3228 This improves the "list" bench by 2%.
de62edee 3229
e5eb92e7
AD
3230 * data/lalr1.cc (variant::build): Add an overloaded version with
3231 an argument.
3232 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3233
76307410
AD
32342008-11-10 Akim Demaille <demaille@gostai.com>
3235
3236 Test variants.
3237 * tests/c++.at (AT_CHECK_VARIANTS): New.
3238 Use it with and without %define assert.
3239
d78f0ac9
AD
32402008-11-10 Akim Demaille <demaille@gostai.com>
3241
3242 Add %precedence support.
3243 Unfortunately it is not possible to reuse the %prec directive. This
3244 is because to please POSIX, we do not require to end the rules with a
3245 semicolon. As a result,
de62edee 3246
d78f0ac9 3247 foo: bar %prec baz
de62edee 3248
d78f0ac9
AD
3249 is ambiguous: either a rule which precedence is that of baz, or a rule,
3250 and then a declaration of the precedence of the token baz.
de62edee 3251
d78f0ac9
AD
3252 * doc/bison.texinfo: Document %precedence.
3253 (Precedence Only): New.
3254 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3255 * src/conflicts.c (resolve_sr_conflict): Support it.
3256 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3257 Parse it.
3258 * tests/calc.at: Use %precedence for NEG.
3259 * tests/conflicts.at (%precedence does not suffice)
3260 (%precedence suffices): New tests.
3261
c85be41a
AD
32622008-11-09 Akim Demaille <demaille@gostai.com>
3263
3264 Make benches in a sub dirs.
3265 * etc/bench.pl.in ($dir): New.
3266 Use it.
3267 Check the use of constructors with an argument.
3268 (bench_variant_parser): Fix.
3269
db65ca1f
AD
32702008-11-09 Akim Demaille <demaille@gostai.com>
3271
3272 fix eof condition
3273
9b0efa5b
AD
32742008-11-09 Akim Demaille <demaille@gostai.com>
3275
3276 Fix --help.
3277
432ac57a
AD
32782008-11-09 Akim Demaille <demaille@gostai.com>
3279
3280 Require the generation of parse-gram.output.
3281 * src/Makefile.am (YACC): Pass --report=all.
3282
deef2a0a
AD
32832008-11-09 Akim Demaille <demaille@gostai.com>
3284
3285 Formatting changes.
3286
df72984a
AD
32872008-11-09 Akim Demaille <demaille@gostai.com>
3288
3289 Update TODO.
3290 * TODO: Remove obsolete items.
3291 Update others.
3292
f10e19fd
AD
32932008-11-09 Akim Demaille <demaille@gostai.com>
3294
3295 Enhance bench.pl.
3296 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3297 (@token, $grammar, $bench): New.
3298 (generate_grammar_variant): Rename as...
3299 (generate_grammar_list): this.
3300 (generate_grammar): Adjust.
3301 (bench_grammar): Rename as...
3302 (bench): this.
3303 Use it in the various bench-marking routines.
3304 (-b, -g): New options.
3305
5de9c593
AD
33062008-11-09 Akim Demaille <demaille@gostai.com>
3307
3308 Use a static hierarchy for symbols in the C++ parser.
3309 * data/lalr1.cc (symbol_base_type, symbol_type)
3310 (stack_symbol_type): Make it a static hierarchy.
3311 Adjust dependencies.
3312
757f8f98
AD
33132008-11-09 Akim Demaille <demaille@gostai.com>
3314
3315 bench.pl -d, --directive.
3316 * etc/bench.pl.in (@directive): New.
3317 (&bench_grammar): Use it.
3318 (&bench_list_grammar): New, to provide access to the "variant"
3319 grammar.
3320 Use it.
3321 (getopts): Support -d, --directive.
3322
d3be4f6d
AD
33232008-11-09 Akim Demaille <demaille@gostai.com>
3324
3325 Use inline for small operations.
3326 * data/lalr1.cc (symbol_base_type, symbol_type)
3327 (stack_symbol_type): Declare constructor and other operations as
3328 inline.
3329 (yy_destroy_): Inline.
3330
1f7d007b
AD
33312008-11-09 Akim Demaille <demaille@gostai.com>
3332
3333 Introduce a hierarchy for symbols.
3334 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3335 (data_type): Rename as...
3336 (stack_symbol_type): this.
3337 Derive from symbol_base_type.
3338 (yy_symbol_value_print_): Merge into...
3339 (yy_symbol_print_): this.
3340 Rename as...
3341 (yy_print_): this.
3342 (yydestruct_): Rename as...
3343 (yy_destroy_): this.
3344 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3345 (parser::parse): yyla is now of symbol_type.
3346 Use its type member instead of yytoken.
3347
bc0b0477
AD
33482008-11-09 Akim Demaille <demaille@gostai.com>
3349
3350 Rename data_type and stack_symbol_type.
3351 * data/lalr1.cc (data_type): Rename as...
3352 (stack_symbol_type): this.
3353
57295d14
AD
33542008-11-09 Akim Demaille <demaille@gostai.com>
3355
3356 Handle semantic value and location together.
3357 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3358 yydata.value and yydata.location.
3359 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3360 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3361 single arg.
3362 Adjust all callers.
3363 (yydestruct_): New overload for a stack symbol.
3364
e9b0834e
AD
33652008-11-09 Akim Demaille <demaille@gostai.com>
3366
3367 Push a complete symbol, not connected parts.
3368 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3369 state, value and location.
3370 Adjust callers.
3371
6082531a
AD
33722008-11-09 Akim Demaille <demaille@gostai.com>
3373
3374 Agregate yylval and yylloc.
3375 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3376 (parser::yyla): this.
3377
33c195cc
AD
33782008-11-09 Akim Demaille <demaille@gostai.com>
3379
3380 Rely on the state stack to display reduction traces.
b06df3c2
AD
3381 To display rhs symbols before a reduction, we used information
3382 about the rule reduced, which required the tables yyrhs and
3383 yyprhs. Now use rely only on the state stack to get the same
3384 information.
de62edee 3385
33c195cc
AD
3386 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3387 Use them.
3388 (parser::yyrhs_, parser::yyprhs_): Remove.
3389 (parser::yy_reduce_print_): Use the state stack.
3390
e1f93869
AD
33912008-11-09 Akim Demaille <demaille@gostai.com>
3392
3393 Fuse yyval and yyloc into yylhs.
3394 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3395 yylhs.
3396 (parse): Replace yyval and yyloc with yylhs.value and
3397 yylhs.location.
3398 After a user action, compute yylhs.state earlier.
3399 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3400 fresh error_token.
3401
2935744b
DJ
34022008-11-09 Di-an Jan <dianj@freeshell.org>
3403
3404 Remove unused variable.
3405 * src/output.c (type_names_output): Remove unused variable sep.
3406
bbf9ca37
PB
34072008-11-09 Paolo Bonzini <bonzini@gnu.org>
3408
3409 Change tests/output.at quoting.
3410 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3411 expanding arguments.
3412
d9a9b96b
JD
34132008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3414
3415 Don't add a semicolon to actions for %skeleton or %language.
3416 It breaks Java test cases as reported by Akim Demaille.
3417 * src/scan-code.l: Implement.
3418
51365192
JD
34192008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3420
3421 Clean up %skeleton and %language priority implementation.
3422 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3423 remove static qualifier because others will soon need to see it.
3424 (language_prio): Likewise.
3425 (getargs): Use command_line_prio rather than 0.
3426 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3427 enum fields.
3428 (skeleton_prio): Extern it.
3429 (language_prio): Extern it.
3430 * src/parse-gram.y: Use grammar_prio rather than 1.
3431
9380cfd0
AD
34322008-11-07 Akim Demaille <demaille@gostai.com>
3433
3434 Moving push traces into yypush_.
3435 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3436 Adjust all uses.
3437
8901f32e
AD
34382008-11-07 Akim Demaille <demaille@gostai.com>
3439
3440 The single-stack C++ parser is now the standard one.
3441 * data/lalr1.cc: Rename as...
3442 * data/lalr1-split.cc: this.
3443 * data/lalr1-fusion.cc: Rename as...
3444 * data/lalr1.cc: this.
3445 * etc/bench.pl.in: Adjust.
3446
8cdabf02
AD
34472008-11-07 Akim Demaille <demaille@gostai.com>
3448
3449 Avoid empty-if warnings.
3450 Reported by Quentin Hocquet.
de62edee 3451
8cdabf02
AD
3452 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3453 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3454
5a893c2b
AD
34552008-11-07 Akim Demaille <demaille@gostai.com>
3456
3457 Pass command line location to skeleton_arg and language_argmatch.
3458 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3459 The location argument is now mandatory.
3460 Adjust all dependencies.
3461 (getargs): Use command_line_location.
3462
58697c6d
AD
34632008-11-07 Akim Demaille <demaille@gostai.com>
3464
3465 -D, --define.
3466 * src/getargs.c (usage): Document -D.
3467 Fix help string for --locations.
3468 (command_line_location): New.
3469 (short_options, long_options, getargs): Support -D, --define.
3470 (getargs): Move -d support at the right place.
3471 * doc/bison.texinfo (Bison Options): Update.
3472 * tests/input.at (%define, --define): New.
3473
9fe5a457
AD
34742008-11-07 Akim Demaille <demaille@gostai.com>
3475
3476 Initialize the muscle table before parsing the command line.
3477 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3478 (getargs): Define file_name.
3479 * src/main.c (main): Initialize muscle_tab before calling
3480 getargs.
3481 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3482 its value is not available yet.
3483
56c5eca9
AD
34842008-11-07 Akim Demaille <demaille@gostai.com>
3485
3486 Locations without columns for command line arguments.
3487 * src/location.c (location_print): Don't display negative columns.
3488 * src/location.h: Document this.
3489
9b9e0a7d
AD
34902008-11-07 Akim Demaille <demaille@gostai.com>
3491
3492 Fix --help.
3493 * src/getargs.c (usage): Fix help string for -W.
3494
74eae918
AD
34952008-11-07 Akim Demaille <demaille@gostai.com>
3496
3497 Handle more general types of option arguments.
3498 * build-aux/cross-options.pl: The argument ends at the first
3499 space, not the first non-symbol character.
3500 Use @var for each word appearing the argument description.
3501
a3d4c6fb
AD
35022008-11-07 Akim Demaille <demaille@gostai.com>
3503
3504 Destroy the variants that remain on the stack in case of error.
3505 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3506 destructor.
3507 Display the value only if yymsg is nonnull.
3508 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3509
2d32fc9f
AD
35102008-11-07 Akim Demaille <demaille@gostai.com>
3511
3512 Add "%define assert" to variants.
3513 This is used to help the user catch cases where some value gets
3514 ovewritten by a new one. This should not happen, as this will
3515 probably leak.
de62edee 3516
2d32fc9f
AD
3517 Unfortunately this uncovered a bug in the C++ parser itself: the
3518 lookahead value was not destroyed between two calls to yylex. For
3519 instance if the previous lookahead was a std::string, and then an int,
3520 then the value of the std::string was correctly taken (i.e., the
3521 lookahead was now an empty string), but std::string structure itself
3522 was not reclaimed.
de62edee 3523
2d32fc9f
AD
3524 This is now done in variant::build(other&) (which is used to take the
3525 value of the lookahead): other is not only stolen from its value, it
3526 is also destroyed. This incurs a new performance penalty of a few
3527 percent, and union becomes faster again.
de62edee 3528
2d32fc9f
AD
3529 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3530 (b4_variant_if): New.
3531 (variant::built): New.
3532 Use it whereever the status of the variant changes.
3533 * etc/bench.pl.in: Check the penalty of %define assert.
3534
f6038cb8
AD
35352008-11-07 Akim Demaille <demaille@gostai.com>
3536
3537 Use "%define variant" in bench.pl.
3538 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3539 just use %define variants.
3540
ccde1f98
AD
35412008-11-07 Akim Demaille <demaille@gostai.com>
3542
3543 Regen.
3544 * src/parse-gram.h, src/parse-gram.c: Regen.
3545
58bd33b7
JD
35462008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3547
3548 Fix user actions without a trailing semicolon.
3549 Reported by Sergei Steshenko at
3550 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3551 * THANKS (Sergei Steshenko): Add.
3552 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3553 * tests/regression.at (Fix user actions without a trailing semicolon):
3554 New test case.
3555
639867b5
AD
35562008-11-04 Akim Demaille <demaille@gostai.com>
3557
3558 Use b4_copyright_years.
3559 * data/yacc.c (b4_copyright_years): New.
3560 Fix its value according to the comments in the file.
3561 Use it and undefine it.
3562
3c262606
AD
35632008-11-04 Akim Demaille <demaille@gostai.com>
3564
3565 Formatting changes.
3566 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3567
a2b93d52
AD
35682008-11-04 Akim Demaille <demaille@gostai.com>
3569
3570 Formatting changes.
3571 * data/lalr1-fusion.cc: here.
3572
3a2803df
AD
35732008-11-04 Akim Demaille <demaille@gostai.com>
3574
3575 Use strict on bench.pl.
3576 * etc/bench.pl.in (&run, &generate_grammar): New.
3577 Rename the grammar generating functions for consistency.
3578 Change the interface so that the list of benches to run is passed
3579 as (optionless) arguments.
3580 (&compile): Use &run.
3581
a0d4650a
AD
35822008-11-04 Akim Demaille <demaille@gostai.com>
3583
3584 Remove spurious initial empty lines.
3585 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3586 * data/yacc.c: End the @output lines with an @.
3587
cac9e09b
AD
35882008-11-04 Akim Demaille <demaille@gostai.com>
3589
3590 Improve the display of sizes.
3591 * etc/bench.p.in: Higher precision.
3592 Sort by decreasing size.
3593
4af4348a
AD
35942008-11-04 Akim Demaille <demaille@gostai.com>
3595
3596 Don't memcpy C++ structures.
3597 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3598 arguments.
3599 (variant::build): New overload for
3600 copy-construction-that-destroys.
3601 (variant::swap): New.
3602 (parser::yypush_): Use it in variant mode.
3603
ef05c4d6
AD
36042008-11-04 Akim Demaille <demaille@gostai.com>
3605
3606 Better defaults for bench.pl.
3607 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
3608 default values.
3609 Adjust &verbose uses.
3610 (-q, --quiet): New.
3611
9718cfa9
AD
36122008-11-04 Akim Demaille <demaille@gostai.com>
3613
3614 Make variant.yy more complex.
3615 std::list cannot be copied via memcpy, they are more demanding than
3616 std::string. Use one std::list to strengthen the test.
de62edee 3617
9718cfa9
AD
3618 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
3619 Adjust.
3620 Create a list of strings, instead of a single large string.
3621
a6df593d
AD
36222008-11-04 Akim Demaille <demaille@gostai.com>
3623
3624 bench.pl --bench.
3625 * etc/bench.pl.in (--bench, $bench): New.
3626
006a0303
AD
36272008-11-04 Akim Demaille <demaille@gostai.com>
3628
3629 Sort methods.
3630 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
3631 Define it after as().
3632
faef3466
AD
36332008-11-04 Akim Demaille <demaille@gostai.com>
3634
3635 Useless parens.
3636 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
3637
2141aded
AD
36382008-11-04 Akim Demaille <demaille@gostai.com>
3639
3640 Issue missing synclines after user actions.
3641 * data/c.m4 (b4_case): Issue synclines on the output file.
3642
e426d17b
AD
36432008-11-04 Akim Demaille <demaille@gostai.com>
3644
3645 Remove trailing empty line.
3646 * data/lalr1-fusion.cc: Don't add an empty line after the user's
3647 epilogue.
3648
a9ce3f54
AD
36492008-11-04 Akim Demaille <demaille@gostai.com>
3650
3651 Fix output of copyright years.
3652 * data/bison.m4 (b4_copyright): Fix the indentation of the
3653 copyright year paragraph.
3654 Use b4_copyright_years when no years are given.
3655 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
3656 (b4_copyright_years): New.
3657 Use it.
3658
59c544c2
AD
36592008-11-04 Akim Demaille <demaille@gostai.com>
3660
3661 Avoid the spurious initial empty line.
3662 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
3663 the end of @output request to suppress the empty line that
3664 results.
3665
96b15448
AD
36662008-11-04 Akim Demaille <demaille@gostai.com>
3667
3668 Remove parser::rhs_number_type.
3669 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
3670 (yyrhs_): Use b4_table_define.
3671
f0633174
AD
36722008-11-04 Akim Demaille <demaille@gostai.com>
3673
3674 Fix iteration type.
3675 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
3676
417b8004
AD
36772008-11-04 Akim Demaille <demaille@gostai.com>
3678
3679 Factor the declaration of the integer tables.
3680 * data/lalr1-fusion.cc (b4_table_define): New.
3681 Use it.
3682
1a5246c6
AD
36832008-11-03 Akim Demaille <demaille@gostai.com>
3684
3685 Fix indentation of tables in lalr1.cc
3686 * data/lalr1-fusion.cc: Fix the indentation.
3687
f8a95c9c
AD
36882008-11-03 Akim Demaille <demaille@gostai.com>
3689
3690 Destroy the lhs symbols after reduction.
3691 * data/lalr1-fusion.cc (parse): After the user action, when in
3692 variant mode, destroy the lhs symbols.
3693
d7f4d823
AD
36942008-11-03 Akim Demaille <demaille@gostai.com>
3695
3696 Simplify yysyntax_error_ use.
3697 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
3698 type, but make it unnamed in the declaration when it is not used.
3699
8b9c89fb
AD
37002008-11-03 Akim Demaille <demaille@gostai.com>
3701
3702 Let yy::variant::build return an lvalue.
3703 * data/lalr1-fusion.cc (variant::build): Return a reference to the
3704 object.
3705
83243c24
AD
37062008-11-03 Akim Demaille <demaille@gostai.com>
3707
3708 Define yy::variant only when needed.
3709 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
3710 used.
3711
429b4848
AD
37122008-11-03 Akim Demaille <demaille@gostai.com>
3713
3714 Bench the three-stack lalr1.cc.
3715 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
3716 one-stack one.
3717
414c76a4
AD
37182008-11-03 Akim Demaille <demaille@gostai.com>
3719
3720 Fail on parse error in calc++.
3721 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
3722 status.
3723 * examples/calc++/test ($me, $number, $exit, run): New.
3724 Use them to propagate errors to the exit status.
3725
8a5783fd
AD
37262008-11-03 Akim Demaille <demaille@gostai.com>
3727
3728 Don't specify the skeleton twice in the example.
3729 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
3730 file does what is needed.
3731
0cc5bead
AD
37322008-11-03 Akim Demaille <demaille@gostai.com>
3733
3734 bench: Improve output.
3735 * etc/bench.pl.in (bench_grammar): Tune the printf format.
3736
5b421a4e
AD
37372008-11-03 Akim Demaille <demaille@gostai.com>
3738
3739 bench: check impact of %debug on variants.
3740 * etc/bench.pl.in (variant_grammar): Fix the computation of
3741 $variant.
3742 Generate a grammar file that can work with or without %debug.
3743 Do use the @directive.
3744 (bench_variant_parser): Check impact of %debug.
3745 (@directives): Rename all the occurrences to...
3746 (@directive): this, for consistency.
3747
d11ee647
AD
37482008-11-03 Akim Demaille <demaille@gostai.com>
3749
3750 bench: report the size too.
3751 * etc/bench.pl.in ($iterations): Defaults to -3.
3752 (&bench_grammar): Require hireswallclock.
3753 Compute and display the size of the result.
3754 More comments.
3755
e1b74b92
AD
37562008-11-03 Akim Demaille <demaille@gostai.com>
3757
3758 bench: More use of the verbosity level.
3759 * etc/bench.pl.in ($verbose, &verbose): New.
3760 Use them.
3761 More POD documentation.
3762
7e5f9c54
AD
37632008-11-03 Akim Demaille <demaille@gostai.com>
3764
3765 bench.pl: a command line interface
3766 * etc/bench.pl.in: More doc.
3767 Some fixes in the documentation.
3768 ($cflags, $iterations, &help, &getopt): New.
3769 Use them.
3770 (&variant_grammar): Let the number of stages be 10 times what is
3771 specified.
3772
7109a18d
AD
37732008-11-03 Akim Demaille <demaille@gostai.com>
3774
3775 Bench the use of Boost.Variants.
3776 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3777 New.
3778 (&compile): Be ready to compile C++ parsers.
3779 (&bench_push_parser): Move debug information to the outermost
3780 level.
3781 * THANKS: Add Michiel De Wilde.
3782
922730fe
AD
37832008-11-03 Akim Demaille <demaille@gostai.com>
3784
3785 bench.pl: Pass directives as a list instead of as a string.
3786 * etc/bench.pl.in (&directives): New.
3787 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3788 directives.
3789 (&triangular_grammar): Do use the directives (were ignored).
3790 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3791 directives.
3792
7484f1d4
AD
37932008-11-03 Akim Demaille <demaille@gostai.com>
3794
3795 Improve genericity of bench.pl.
3796 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3797 argument.
3798 (&bench_push_parser): New.
3799 Call it.
3800
15129f25
AD
38012008-11-03 Akim Demaille <demaille@gostai.com>
3802
3803 Add documentation to bench.pl.
3804 * etc/bench.pl.in: Comment changes.
3805
0e0ed236
AD
38062008-11-03 Akim Demaille <demaille@gostai.com>
3807
3808 Fuse the three stacks into a single one.
de62edee 3809
b06df3c2
AD
3810 In order to make it easy to perform benchmarks to ensure that
3811 there are no performance loss, lalr1.cc is forked into
3812 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3813 lalr1.cc.
3814
3815 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3816 exercized by the test suite, the user must install a symbolic link
3817 from lalr1.cc to it.
de62edee 3818
b06df3c2
AD
3819 Instead of having three stacks (state, value, location), use a
3820 stack of triples. This considerably simplifies the code (and it
3821 will be easier not to require locations as currently does the C++
3822 parser), and also gives a 10% speedup according to
3823 etc/bench (probably mainly since memory allocation is done once
3824 instead of three times).
de62edee 3825
0e0ed236
AD
3826 Another motivation is to make it easier to destruct properly
3827 semantic values: now that they are bound to their state (hence
3828 symbol type) it will be easier to call the appropriate destructor.
de62edee 3829
0e0ed236 3830 These changes should probably benefit the C parser too.
de62edee 3831
b06df3c2
AD
3832 * data/lalr1.cc: Copy as...
3833 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
3834 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3835 from c++.m4.
3836 (state_stack_type, semantic_stack_type, location_stack_type)
3837 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3838 (data_type, stack_type, yystack_): New.
3839 (YYLLOC_DEFAULT, yypush_): Adjust.
3840 (yyerror_range): Now based on data_type, not location_type.
3841
7dedf26e
AD
38422008-11-03 Akim Demaille <demaille@gostai.com>
3843
3844 Push the state, value, and location at the same time.
3845 This is needed to prepare a forthcoming patch that fuses the three
3846 stacks into one.
de62edee 3847
7dedf26e
AD
3848 * data/lalr1.cc (parser::yypush_): New.
3849 (parser::yynewstate): Change the semantics: instead of arriving to
3850 this label when value and location have been pushed, but yystate
3851 is to be pushed on the state stack, now the three of them must
3852 have been pushed before. yystate still must be the new state.
3853 This allows to use yypush_ everywhere instead of individual
3854 handling of the stacks.
3855
c4585f1e
AD
38562008-11-03 Akim Demaille <demaille@gostai.com>
3857
3858 Prefer references to pointers.
3859 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3860 definition to use references instead of pointers.
3861 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3862 Take the value and location as references.
3863 Adjust callers.
3864
56017c17
AD
38652008-11-03 Akim Demaille <demaille@gostai.com>
3866
3867 stack::size instead of stack::height.
3868 * data/lalr1.cc (stack::height): Rename as...
3869 (stack::size): this.
3870 Fix the output type.
3871 Comment changes.
3872
5ab8c47b
AD
38732008-11-03 Akim Demaille <demaille@gostai.com>
3874
3875 Use variants to support objects as semantic values.
b06df3c2
AD
3876 This patch was inspired by work by Michiel De Wilde. But he used
3877 Boost variants which (i) requires Boost on the user side, (ii) is
3878 slow, and (iii) has useless overhead (the parser knows the type of
3879 the semantic value there is no reason to duplicate this
3880 information as Boost.Variants do).
3881
3882 This implementation reserves a buffer large enough to store the
3883 largest objects. yy::variant implements this buffer. It was
3884 implemented with Quentin Hocquet.
de62edee 3885
5ab8c47b
AD
3886 * src/output.c (type_names_output): New.
3887 (output_skeleton): Invoke it.
3888 * data/c++.m4 (b4_variant_if): New.
3889 (b4_symbol_value): If needed, provide a definition for variants.
3890 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
3891 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
3892 (b4_char_sizeof, yy::variant): New.
3893 (parser::parse): If variants are requested, define
3894 parser::union_type, parser::variant, change the definition of
3895 semantic_type, construct $$ before running the user action instead
3896 of performing a default $$ = $1.
3897 * examples/variant.yy: New.
3898 Based on an example by Michiel De Wilde.
3899
1fa5d8bb
AD
39002008-11-03 Akim Demaille <demaille@gostai.com>
3901
3902 Parameterize the extraction of semantic values.
3903 To make future changes easier, no longer rely on ".TYPE" being the
3904 way to get a semantic value.
de62edee 3905
1fa5d8bb
AD
3906 * data/c.m4 (b4_symbol_value): New.
3907 Use it.
3908 * data/c++.m4, data/yacc.c: Use it.
3909 * data/glr.c: Use b4_symbol_value.
3910 (b4_rhs_data): New.
3911 Use it.
3912
91ba8a55
AD
39132008-11-03 Akim Demaille <demaille@gostai.com>
3914
3915 Prepare easier M4 changes.
3916 * data/lalr1.cc: Use escaped [] instead of literals to prepare
3917 future changes.
3918
c9ba9e59
JD
39192008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3920
3921 Initiate further development.
3922 * NEWS: Create an empty section for new entries.
3923 * gnulib: Update submodule to HEAD.
3924
bfb40910
JD
39252008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3926
3927 * NEWS: Version 2.4.
3928
241fda7a
JD
39292008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3930
3931 Prepare for next release.
3932 * NEWS: Briefly mention changes since 2.3b.
3933 * README: Say GNU m4 1.4.6, which we've been requiring in release
3934 announcements already, not 1.4.3, which breaks the build.
3935
ed4d67dc
JD
39362008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3937
3938 Say %language is experimental.
3939 We're thinking of extending it's effect on output file naming. See the
3940 thread at
3941 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3942 * NEWS: Say it's experimental.
3943 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3944 recommend it over %skeleton for now.
3945 (Bison Options): Likewise.
3946 (C++ Bison Interface): Use %skeleton not %language.
3947 (Calc++ Parser): Use %skeleton not %language.
3948 * src/getargs.c (usage): Say it's experimental.
3949
e254a580
DJ
39502008-11-01 Di-an Jan <dianj@freeshell.org>
3951 Paolo Bonzini <bonzini@gnu.org>
3952
3953 Support all Java parser class modifiers.
3954 * data/java.m4 (b4_percent_define_get3): New.
3955 (b4_final_if, b4_strictfp_if): New.
3956 * data/lalr1.java (final, strictfp, extends, implements): Support.
3957 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3958 documentation.
3959 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3960 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3961 (AT_CHECK_JAVA_GREP): New.
3962 (Java parser class modifiers): New test.
3963 (Java parser class extends and implements): New test.
3964
3965 Model exception propagation better with throws and lex_throws.
3966 * data/java.m4 (b4_list2): New.
3967 (throws): Change default.
3968 * data/lalr1.java (yyaction): Add throws.
3969 (parse): Add lex_throws in addition to throws.
3970 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3971 * tests/java.at (Java throws specifications): New test.
3972
3973 Improve documentation for Java parsers.
3974 * doc/bison.texinfo (Java Parsers): Add subsections.
3975 Don't quote first argument of %define.
3976 (Java Bison Interface): Document output files. Move documentation
3977 of parser class and merge into Java Parser Interface. Document
3978 features that error out. Document directives with no effect.
3979 Move note about Javadoc higher.
3980 (Java Semantic Values): Explicitly mention stype.
3981 Document that generic types cannot be used.
3982 (Java Location Values): Use @deftypeivar. Document constructors.
3983 Correct return value for toString.
3984 (Java Parser Interface): List undocumented constants/fields.
3985 Move documentation of fields added by %parse-param closer to list
3986 of members. Document that token names are added as fields.
3987 Document constructors accurately. Remove error method.
3988 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3989 Interface. Describe %code lexer and yylex accutately.
3990 Remove documentation that does not match the code.
3991 (Java Action Features): New.
3992 (Java Differences): Add reference. Add item on semantic values.
3993 Add note about @{ ... @}. Clarify %% epilogue placement.
3994 (Java Declarations Summary): New.
3995
3996 Fix Java skeleton.
3997 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3998 (b4_remove_comma): Quote test argument.
3999 (b4_identification): Remove "bison" field.
4000 * tests/java.at (Java parser class and package names): New test.
4001 (Java %parse-param and %lex-param): New test.
4002 (Java stype, position_class and location_class): New test.
4003
f259e4e6
PB
40042008-10-31 Di-an Jan <dianj@freeshell.org>
4005
4006 * data/lalr1.jave: Update copyright years.
4007 (YYParser): Correct name of "generated from" file in Javadoc:
4008 use b4_file_name instead of @ofile@.
4009 (Location constructor): Correct Javadoc parameter name.
4010 (yylloc): Add missing opening m4 quote after b4_location_if.
4011 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4012 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4013 (YYParser constructor): Correct Javadoc parameter name.
4014
cae5057f
JD
40152008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4016
4017 Always put auxiliary code files in the same dir as other output files.
4018 * src/files.c (compute_file_name_parts): When the user specifies
4019 --output but not --file-prefix, extract the directory prefix from the
4020 file prefix not from the grammar file name. This affects the location
4021 of files like location.hh generated by the C++ skeleton. The includes
4022 in the other output files require this fix.
4023 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4024 for expected output files.
4025 (Output files): Add a test for the above.
4026
4af432ba
JD
40272008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4028
4029 * gnulib: Update submodule to HEAD.
4030
e26d4e43
JD
40312008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4032
4033 Update copyright year.
4034 * src/files.c: Here.
4035
c0ee9e21
DJ
40362008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4037
4038 Don't overwrite the input file.
4039 * src/files.c (output_file_name_check): Fatal error if using input file
4040 for output.
4041 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4042 argument.
4043 (Conflicting output files): Add test.
4044
482dc52f
AD
40452008-10-28 Akim Demaille <demaille@gostai.com>
4046
4047 Space changes.
4048 * data/lalr1.cc: Formatting changes.
4049
52cbbe84
AD
40502008-10-28 Akim Demaille <demaille@gostai.com>
4051
4052 Don't define debugging functions when !YYDEBUG.
4053 * data/lalr1.cc (debug_stream, set_debug_stream)
4054 (debug_level_type, debug_level, set_debug_level): Don't
4055 declare them when YYDEBUG is not defined.
4056 The implementation are already YYDEBUG-aware.
4057
0925d5bf
AD
40582008-10-28 Akim Demaille <demaille@gostai.com>
4059
4060 Prefer "continue" for empty loop bodies.
4061 * etc/bench.pl.in: Use "continue" instead of {}.
4062
cf98343c
AD
40632008-10-28 Akim Demaille <demaille@gostai.com>
4064
4065 Space and comments changes.
4066 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4067 * data/c.m4, data/lalr1.cc: Space changes.
4068
9f467b7d
AD
40692008-10-28 Akim Demaille <demaille@gostai.com>
4070
4071 Make gnulib a submodule.
4072 * gnulib: New.
4073 * .gitmodules (gnulib): New.
4074
0f0e1ace
JD
40752008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4076
4077 Fix yyerror_range for user-defined location type in C++. Reported by
4078 Georg Sauthoff at
4079 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4080 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4081 * THANKS (Georg Sauthoff): Add.
4082
548e2104
JD
40832008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4084
4085 Update several administrative files mainly to facilitate releasing.
4086 * HACKING (Administrivia): Make the git-merge-changelog notes more
4087 helpful.
4088 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4089 (Release Procedure): Update for git and add numerous details that were
4090 previously missing.
4091 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4092 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4093 that announcements don't claim we bootstrapped with whatever bison
4094 happened to be in PATH. Add flex as a bootstrap tool.
4095 * Makefile.maint: Remove, previously replaced by maint.mk.
4096 * Makefile.cfg: Remove, and migrate settings to...
4097 * cfg.mk: ... here for the sake of `make announcement'.
4098 * bootstrap.conf (gnulib_modules): Add announce-gen.
4099 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4100 Berry.
4101
ddf17a6e
PB
41022008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4103
4104 Small but important bugfixes for the Java skeleton.
4105 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4106 (yy_symbol_print): Call toString on yyvaluep.
4107
e1145ad8
AD
41082008-08-29 Akim Demaille <demaille@gostai.com>
4109
4110 Clarify UPDATED use.
215b40ac 4111 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 4112 not to the release date of Bison.
215b40ac 4113 Reported by Joel E. Denny.
e1145ad8 4114
0df72d78
AD
41152008-08-29 Akim Demaille <demaille@gostai.com>
4116
4117 * README: Update FAQ pointer.
4118 Reported by Joel E. Denny.
4119
9a90b6bb
EB
41202008-08-27 Eric Blake <ebb9@byu.net>
4121
4122 Resync m4sugar from autoconf.
4123 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4124 (m4_init): Adjust to latest m4.git changes.
4125 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4126 effects.
4127 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4128 (_m4_list_cmp): Reduce side effects.
4129
65015668
AD
41302008-08-27 Akim Demaille <demaille@gostai.com>
4131
4132 Check yyerrok in calc.at.
215b40ac
EB
4133 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4134 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4135 expected.
65015668 4136
98e26a92
AD
41372008-08-27 Akim Demaille <demaille@gostai.com>
4138
4139 Support yyerrok in lalr1.cc.
4140 YYBACKUP is still to import back into lalr1.cc.
215b40ac 4141 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 4142
86c0e784
JD
41432008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4144
4145 For maintainer-check*, don't recompile for a $(VERSION) update.
4146 * cfg.mk: New file.
4147 (_is-dist-target): Override the one in GNUmakefile.
4148 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4149
88511166
JD
41502008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4151
4152 Update for recent change to gnulib.
4153 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4154 string.h now.
4155
6bbb2ed5
EB
41562008-08-15 Eric Blake <ebb9@byu.net>
4157
d67c52e8
EB
4158 Remaining m4sugar merge from autoconf.
4159 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4160 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4161 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4162 * src/output.c (output_skeleton): Tell m4 how to find it.
4163
6bbb2ed5
EB
4164 Partial m4sugar merge from autoconf: m4_map.
4165 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4166 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4167 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4168 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4169 for empty list.
4170 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4171 Likewise.
4172 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4173 declares it.
4174
8dce3875
JD
41752008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4176
4177 Keep .version and PACKAGE_VERSION in sync.
4178 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4179 dependency, and add comments justifying this in more detail. Discussed
4180 starting at
4181 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4182
882a1fbf
EB
41832008-08-06 Eric Blake <ebb9@byu.net>
4184
a3764451
EB
4185 Partial m4sugar merge from autoconf: m4_shiftn.
4186 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4187 (m4_shift2, m4_shift3): New macros.
4188 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4189 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4190 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4191 * data/java.m4 (b4_remove_comma): Likewise.
4192
882a1fbf
EB
4193 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4194 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4195 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4196 (m4_init): Consolidate wrapped text into single m4_wrap.
4197 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4198 in wrapped text.
4199
a30e920d
EB
42002008-08-05 Eric Blake <ebb9@byu.net>
4201
dfcc5959
EB
4202 Partial m4sugar merge from autoconf: builtins, version.m4.
4203 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4204 (m4_prepend): Remove, as it is unused and inherently quadratic,
4205 whereas m4_append is linear in newer m4.
4206 (m4_mkstemp): New builtin.
4207 (m4_symbols): Make rename conditional.
4208 (m4_version_prereq): Ensure fatal error if used in bison, which
4209 intentionally lacks version.m4.
4210
a30e920d
EB
4211 Fix comments in m4sugar.
4212 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4213
445b7470
JD
42142008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4215
4216 Update for recent .gitignore fix in Gnulib.
4217 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4218 anchored .gitignore entries.
4219
a1e50014
JD
42202008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4221
4222 Set gnu or gnits strictness.
4223 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4224 development and gnits strictness for releases. Based on Eric Blake's
4225 suggestion at
4226 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4227
d43f77e7
PB
42282008-07-31 Paolo Bonzini <bonzini@gnu.org>
4229
4230 * NEWS: Clarify documentation of %language.
4231
fee2ed87
PB
42322008-07-31 Paolo Bonzini <bonzini@gnu.org>
4233
4234 Support usage of git-merge-changelog.
4235 * .gitattributes: New.
4236 * HACKING: Document usage of git-merge-changelog.
4237 * bootstrap: Install git-merge-changelog entries in .git/config
4238 if appropriate.
4239
78029cd5
JD
42402008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4241
4242 Remove remaining dependence on CVS Id keyword.
4243 * ChangeLog: For the sake of people still using CVS, don't use dollars
4244 when mentioning Id.
4245 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4246 unusual anyway.
4247 * data/xslt/xml2dot.xsl: Likewise.
4248 * data/xslt/xml2text.xsl: Likewise.
4249 * data/xslt/xml2xhtml.xsl: Likewise.
4250 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4251 * doc/Makefile.am (neutralize): Remove, no longer needed.
4252 (.x.1): Don't use neutralize.
4253 (edit): Don't substitute for ID.
4254 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4255
c53d18b1
JD
42562008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4257
4258 Fix dependence on computed configure variables.
4259 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4260 $(top_srcdir)/configure.ac so that changes to computed variables, such
4261 as PACKAGE_VERSION, are seen.
4262 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4263
5523ac79
JD
42642008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4265
4266 Update copyright dates for recent changes.
4267 * Makefile.am: Here.
4268 * src/Makefile.am: Here.
4269 * src/reduce.c: Here.
4270 * tests/reduce.at: Here.
4271
8fa36911
JD
42722008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4273
4274 Use git-version-gen for version names between releases.
4275 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4276 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4277 * .prev-version: New.
4278 * .version.in: Remove.
78029cd5 4279 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
4280 revision.
4281 * GNUmakefile: Remove, now copied from Gnulib.
4282 * Makefile.am: Add code suggested by comments in
4283 build-aux/git-version-gen.
4284 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4285 .prev-version, and .version.
4286 * NEWS (2.3b+): Rename to...
4287 (?.?): ... this because we're dropping the "+" version naming scheme,
4288 but, in general, we still can't be sure of our next release name.
4289 * bootstrap: Add a quick hack to remove from .gitignore the
4290 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4291 entry. This should really be fixed in gnulib instead.
4292 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4293 * configure.ac (AC_INIT): Set version name by invoking
4294 build-aux/git-version-gen.
4295 (AC_CONFIG_FILES): Remove .version, now generated by
4296 build-aux/git-version-gen.
4297 * maint.mk: New, copied from coreutils.
4298 * doc/.cvsignore (bison.1): Add.
4299 * doc/.gitignore (/bison.1): Add.
4300 * doc/bison.1: Remove, generated.
4301 * src/.cvsignore (revision.c): Remove.
4302 * src/.gitignore (/revision.c): Remove.
4303 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4304 (BUILT_SOURCES): Remove revision.c.
4305 (revision.c): Remove.
4306 * src/getargs.c (version): Don't print revision after the VERSION.
4307 * src/revision.h: Remove.
4308
bcf07cb7
JD
43092008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4310
4311 Fix untranslatable composition of sentences. Reported by Goran
4312 Uddeborg at
4313 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4314 * THANKS (Goran Uddeborg): Add.
4315 * src/reduce.c (reduce_print): Report the number of nonterminals and
4316 rules useless in the grammar in separate sentences.
4317 * tests/reduce.at (Useless Rules): Update output.
4318 (Reduced Automaton): Likewise.
4319 (Underivable Rules): Likewise.
4320 (Empty Language): Likewise.
4321
9aacab9a
JD
43222008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4323
4324 Fix some .gitignore and .cvsignore problems.
4325 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4326 (insert_vc_ignore): ... this new function, which prepends `/' to all
4327 .gitignore entries before passing them to insert_sorted_if_absent.
4328 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4329 .cvsignore files are maintained even though Bison developers run
4330 bootstrap while using Git.
4331 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4332 unneeded by Bison.
4333 (gnulib): Add.
4334 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4335 unneeded. Reported by Eric Blake.
4336 * lib/.gitignore (/*~): Add.
4337 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4338 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4339 Blake.
4340 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4341
a9fc7990
JD
43422008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4343
4344 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4345 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4346 * bootstrap.conf (gnulib_modules): Add unsetenv.
4347 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4348 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4349 (/setenv.m4): Add.
4350 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4351 the first argument because it may become position-dependent, and unset
4352 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4353 Add comments explaining these issues in more detail.
4354
0f1d6f10
JD
43552008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4356
4357 Add .gitignore everywhere based on .cvsignore.
4358 * .gitignore: New.
4359 * build-aux/.gitignore: New.
4360 * data/.gitignore: New.
4361 * doc/.gitignore: New.
4362 * etc/.gitignore: New.
4363 * examples/.gitignore: New.
4364 * examples/calc++/.gitignore: New.
4365 * lib/.gitignore: New.
4366 * m4/.gitignore: New.
4367 * po/.gitignore: New.
4368 * runtime-po/.gitignore: New.
4369 * src/.gitignore: New.
4370 * tests/.gitignore: New.
4371
7bd1665a
JD
43722008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4373
4374 * NEWS (2.3b+): New section, empty for now.
4375 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4376
72c5b982
JD
43772008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4378
4379 * NEWS (2.3b): Update release date since there has been a delay in
4380 getting the announcements and tarballs out.
4381
bd02cd5d
JD
43822008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4383
4384 * NEWS: Version 2.3b.
4385 * configure.ac (AC_INIT): Likewise.
4386 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4387
9126263e
JD
43882008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4389
4390 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4391 been doing it for years.
4392 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4393 (Release Procedure): Add FIXME about make alpha being unmaintained.
4394
fa6aa7b3
JD
43952008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4396
4397 * data/yacc.c: Reformat m4 a little for readability.
4398 * src/lalr.c (build_relations): Correct comment.
4399
d30b312d
JMG
44002008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4401
4402 DJGPP specific issue.
4403 * djgpp/config.sed: Fixes required to run configure scripts generated
4404 by autoconf 2.62.
4405
138d4cd9
JD
44062008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4407
4408 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4409 coordinator@translationproject.org.
4410
8f7e2e1f
JD
44112008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4412
4413 * THANKS: Add Eric Blake.
4414
f55efa38
JD
44152008-04-23 Eric Blake <ebb9@byu.net>
4416
4417 Revert prior patch, by working around autoconf regression.
4418 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4419 ("Output file name: ("): Uncomment test.
4420 ("Output file name: )"): Likewise.
4421 Based on an idea from Noah Misch.
4422
096c9f9d
JD
44232008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4424
4425 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4426 2.61. Reported by Juan Manuel Guerrero at
4427 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4428 * tests/output.at ("Output file name: ("): Comment out test case for
4429 now.
4430 ("Output file name: )"): Likewise.
4431
0f664b89
JD
44322008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4433
4434 * GNUmakefile: Update git-version-gen invocation so make dist
4435 succeeds.
4436
1cfe6375
JD
44372008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4438
4439 Update to the current gnulib CVS repository, and fix trigraph handling
4440 in Bison.
4441 * bootstrap: Update gnulib CVS repository URL.
4442 (symlink_to_dir): Encapsulate the code that guarantees the destination
4443 directory exists into...
4444 (check_dst_dir): ... this new function, and...
4445 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4446 fail when copying files into lib/uniwidth/.
4447 * src/output.c (prepare_symbols): When writing yytname muscles, where
4448 symbol names will be encoded in C-string literals, tell quotearg to
4449 escape trigraphs. This used to be the default in gnulib.
4450 * tests/regression.at (Token definitions): Because of the change in
4451 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4452 escapes trigraphs in symbol names. Thus, yytname no longer has
4453 trigraphs unnecessarily doubly escaped. Update test case output.
4454 Extend test case to be sure Bison's own error messages will no longer
4455 have trigraphs in symbol names unnecessarily escaped once.
4456
74c52fc8
JD
44572008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4458
4459 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4460 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4461 * .cvsignore: Add .version.
4462 * .version.in: New.
4463 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4464 * configure.ac (AC_CONFIG_FILES): Add .version.
4465 * build-aux/.cvsignore: Add git-version-gen.
4466
8e55b3aa
JD
44672008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4468
4469 * NEWS (2.3a+): Mention that -g now takes an argument.
4470 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4471 consistency. Update the -g and -x entries now that they take
4472 arguments. Use brackets to indicate optional arguments.
4473 * src/getargs.c (usage): Explain the relationship between arguments of
4474 long and short options more completely. Document --defines and -d
4475 separately since the former takes an argument but, for POSIX Yacc, the
4476 latter does not.
4477 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 4478 (getargs): Sort cases.
8e55b3aa 4479
59c5ac72
AD
44802008-02-28 Akim Demaille <demaille@gostai.com>
4481
4482 * doc/bison.texinfo: Fix a few typos.
4483
118d4978
AD
44842008-02-28 Akim Demaille <akim@epita.fr>
4485
4486 * doc/bison.texinfo (Bison Options): Document -W.
4487 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4488
7020f1e9
AD
44892008-02-28 Akim Demaille <akim@epita.fr>
4490
4491 * src/getargs.c (short_options): Split and sort for readability.
4492 -g and -x take optional arguments, just like their long options.
4493 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4494 understand.
4495 Fix the handling of $opt which resulted in all the argument to be
4496 considered as optional.
4497
59da312b
JD
44982008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4499
4500 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4501 say its interface is experimental.
4502 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4503 Java.
4504 (Bison Options): In the -L and --language entry, mention Java.
4505 (Java Bison Interface): Say the interface is experimental.
4506 * src/getargs.c (usage): Mention -L and --language.
4507
4508 * NEWS (2.3a+): Say the push parsing interface is experimental.
4509 * doc/bison.texinfo (Push Decl): Likewise.
4510 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4511 (Push Parser Function): Likewise.
4512 (Pull Parser Function): Likewise.
4513 (Parser Create Function): Likewise.
4514 (Parser Delete Function): Likewise.
4515 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4516 yypull_parse, and yypush_parse entries.
4517
4518 * NEWS (2.3a+): Mention XML support, and say the schema is
4519 experimental.
4520 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4521 * src/getargs.c (usage): Say the XML schema is experimental.
4522
4523 * NEWS (2.3a+): Say option instead of flag.
4524
2bb3ebec
WP
45252008-02-21 Wojciech Polak <polak@gnu.org>
4526
4527 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4528 text.
4529
333e670c
JD
45302008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4531
4532 Fix impure push parser compile error reported by Bob Rossi at
4533 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4534 * data/yacc.c: Clean up whitespace in the output a little.
4535 (yypstate_allocated): Define for impure push parsers regardless of
4536 whether the pull interface is also requested.
4537 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4538 check impure push parsers without the pull interface.
4539
4540 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4541 yyerror takes arguments specified by %parse-param while yypstate_new
4542 does not.
4543 * doc/bison.texinfo (Parser Create Function): Document that
4544 yypstate_new returns 0 for multiple impure parser instances.
4545 * tests/push.at (Push Parsing: Multiple impure instances): Update
4546 expected stderr output.
4547
798096e1
JD
45482008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4549
4550 * runtime-po/POTFILES.in (push.c): Remove.
4551
9ca7f077
JD
45522008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4553
4554 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4555 * data/push.c: Rename to...
4556 * data/yacc.c: ... this, overwriting it.
4557 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4558 `%push-pull-parser' -> `%define api.push_pull "both"'.
4559 Remove old yacc.c tests, and update push.c tests to yacc.c.
4560
42ee26bb
JD
45612008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4562
4563 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4564 `"%code top" blocks' instead of `%code "top" blocks'.
4565 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4566 Clean up whitespace in the output a little.
4567
b1cc23c4
JD
45682008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4569
4570 Fix documentation problems reported by Tim Josling at
4571 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4572 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4573 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4574 integers. Explain the effect of literal string aliases on error
4575 messages. Copy token 0 documentation from the C++ skeleton
4576 documentation.
4577
ab7f29f8
JD
45782008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4579
4580 Accept a token number in a %left, %right, or %nonassoc for POSIX
4581 conformance. Reported by Tim Josling at
4582 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4583 * NEWS (2.3a+): Mention.
4584 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4585 and code numbers are treated by precedence declarations.
4586 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4587 of symbols.1.
4588 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4589 of symbol.
4590 (symbol.prec): New, just like symbol but allows INT.
4591 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4592 longer holds.
4593 * tests/regression.at (Token number in precedence declaration): New
4594 test case.
4595
a924ef36
JMG
45962008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4597
4598 DJGPP specific issues.
4599 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4600 be changed. Copyright timestamp adjusted.
4601 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4602 be changed. Copyright timestamp adjusted.
4603 * djgpp/config.site: Copyright timestamp adjusted.
4604 * djgpp/config_h.sed: Copyright timestamp adjusted.
4605 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4606 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4607 filename translation list.
4608 * djgpp/subpipe.c (init_subpipe): Check the environment variables
4609 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
4610 files shall be created. Before trying to use the temp dir where the
4611 environment variable points to check that the dir really exists. If
4612 not default to the cwd as temp dir. Copyright timestamp adjusted.
4613 * djgpp/subpipe.h: Copyright timestamp adjusted.
4614 * djgpp/testsuite.sed: Copyright timestamp adjusted.
4615
389c8cfd
PE
46162008-01-30 Paul Eggert <eggert@cs.ucla.edu>
4617
4618 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
4619
5d1cfef4
PE
46202008-01-09 Paul Eggert <eggert@cs.ucla.edu>
4621
4622 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
4623 Problem reported by Claudio Saavedra in
4624 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
4625
e2dcf996
WP
46262008-01-05 Wojciech Polak <polak@gnu.org>
4627
4628 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
4629 document's title with the input grammar file name.
4630
da730230
JD
46312007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 Automate regression testing of the XML/XSLT implementation. Discussed
4634 starting at
4635 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
4636 * configure.ac (XSLTPROC): New substitution.
4637 * Makefile.am (maintainer-xml-check): New phony target invoking...
4638 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
4639 invoking make maintainer-check with BISON_TEST_XML=1.
4640 * tests/atlocal.in (XSLTPROC): New.
4641 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
4642 not to report reachable memory when Bison is expected to have a
4643 non-zero exit status and (2) to compare XML/XSLT output with --graph
4644 and --report=all output for every working grammar when
4645 BISON_TEST_XML=1.
4646 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
4647 (AT_BISON_CHECK_XML): New.
4648 (AT_QUELL_VALGRIND): New.
4649 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
4650 (AT_CHECK): ... don't redefine this since this was the old way to
4651 quell Valgrind.
4652 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
4653 AT_BISON_CHECK invocations.
4654 * tests/c++.at: Likewise.
4655 * tests/calc.at: Likewise.
4656 * tests/conflicts.at: Likewise.
4657 * tests/cxx-type.at: Likewise.
4658 * tests/existing.at: Likewise.
4659 * tests/glr-regression.at: Likewise.
4660 * tests/headers.at: Likewise.
4661 * tests/input.at: Likewise.
4662 * tests/java.at: Likewise.
4663 * tests/output.at: Likewise.
4664 * tests/push.at: Likewise.
4665 * tests/reduce.at: Likewise.
4666 * tests/regression.at: Likewise.
4667 * tests/sets.at: Likewise.
4668 * tests/skeletons.at: Likewise.
4669 * tests/synclines.at: Likewise.
4670 * tests/torture.at: Likewise.
4671 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
4672 tends to hang xsltproc.
4673 (Big horizontal): Likewise.
4674
408476bc
JD
46752007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4676
4677 In XML output, remove redundant class attribute on symbol element.
4678 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
4679 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
4680 look up a symbol to determine whether it's a nonterminal or terminal.
4681 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
4682 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
4683
4684 Add prec/assoc information to XML output.
4685 * src/gram.c (grammar_rules_print_xml): For each rule that has a
4686 %prec, add a percent_prec attribute.
4687 * src/print-xml.c (print_grammar): For each terminal that has a
4688 precedence or associativity, add a prec or assoc attribute.
4689 (xml_indent): New.
4690 (xml_puts): Use xml_indent.
4691 (xml_printf): Use xml_indent.
4692 * src/print-xml.h (xml_indent): Prototype.
4693
4694 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
4695 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
4696
d4a26c48
JD
46972007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4698
4699 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
4700 (bison:ruleByNumber): ... this for clarity.
4701 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
4702 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
4703 (xsl:template match="reduction"): Update.
4704 (xsl:template match="item"): Update.
4705 (xsl:template match="reduction"): Update.
4706
4707 In the XML output, don't print the list of rules where symbols appear.
4708 Compute it in XSLT instead. Discussed at
4709 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
4710 * data/xslt/bison.xsl (bison:ruleByLhs): New.
4711 (bison:ruleByRhs): New.
4712 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
4713 bison:ruleByRhs.
4714 (xsl:template match="terminal/rule"): Remove.
4715 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4716 bison:ruleByRhs.
4717 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4718 Remove.
4719 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
4720 bison:ruleByRhs and mode="number-link" for rule template.
4721 (xsl:template match="terminal/rule"): Remove.
4722 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4723 bison:ruleByRhs and mode="number-link" for rule template.
4724 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4725 Rewrite as...
4726 (xsl:template match="rule" mode="number-link"): ... this.
4727 * src/print-xml.c (print_grammar): Don't print the list of rules.
4728
ef1b4273
JD
47292007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4730
4731 Don't let --report affect XML output; always print all information.
4732 Discussed at
4733 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
4734 * src/conflicts.c (log_resolution): Implement.
4735 * src/print-xml.c (print_core): Implement.
4736 (print_state): Implement.
4737 (print_xml): Implement.
4738
4739 * NEWS (2.3a+): Fix quotes.
4740 * src/parse-gram.y (prologue_declaration): For consistency with -v,
4741 don't let %verbose clear the list specified by --report.
4742
0f6cd9e3
AD
47432007-11-26 Akim Demaille <akim@epita.fr>
4744
4745 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
4746
d80fb37a
JD
47472007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
4748
4749 In the XML output, list useless and unused symbols and rules with the
4750 useful ones and add a "usefulness" attribute. Discussed starting at
4751 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
4752 * src/gram.c (grammar_rules_partial_print_xml): Remove.
4753 (grammar_rules_print_xml): Print all rules instead of just those
4754 useful in the grammar, and add a "usefulness" attribute.
4755 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4756 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4757 (print_grammar): Print all nonterminals instead of just useful ones,
4758 and add a "usefulness" attribute to nonterminals and terminals.
4759 (print_xml): Don't print a separate "reductions" or
4760 "rules-useless-in-parser" element.
4761 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4762 (reduce_xml): Remove.
4763 (reduce_token_unused_in_grammar): New.
4764 (reduce_nonterminal_useless_in_grammar): New.
4765 * src/reduce.h (reduce_xml): Remove prototype.
4766 (reduce_token_unused_in_grammar): Add prototype.
4767 (reduce_nonterminal_useless_in_grammar): Add prototype.
4768 * data/xslt/xml2text.xsl: Update for XML changes.
4769 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4770 * tests/reduce.at (Useless Terminals): Update output.
4771 (Useless Rules): Update output.
4772 (Reduced Automaton): Update output.
4773
4774 Say "Terminals unused in grammar" instead of "Unused terminals".
4775 * NEWS (2.3a+): Update.
4776 * doc/bison.texinfo (Understanding): Update example output.
4777 * src/reduce.c (reduce_output): Implement.
4778 * data/xslt/xml2text.xsl: Implement.
4779 * data/xslt/xml2xhtml.xsl: Implement.
4780
1bb2bd75
JD
47812007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4782
4783 Accept --report-file=FILE to override the default `.output' filename.
4784 * NEWS (2.3a+): Mention.
4785 * doc/bison.texinfo (Bison Options): Add an entry.
4786 * src/files.c (compute_output_file_names): Don't override
4787 spec_verbose_file if already set.
4788 * src/getargs.c (usage): Document --report-file.
4789 (REPORT_FILE_OPTION): New anonymous enum member.
4790 (long_options): Add entry for it.
4791 (getargs): Add case for it setting spec_verbose_file.
4792
4793 * build-aux/cross-options.pl: Don't record a short option just because
4794 there's an arg.
4795 * doc/.cvsignore: Add yacc.1.
4796
a005a9c4
AD
47972007-11-14 Akim Demaille <akim@epita.fr>
4798
4799 * doc/yacc.1.in: New.
4800 * configure.ac, doc/Makefile.am: Adjust.
4801 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4802 config.h symbol.
4803 Use AC_SUBST for assignments too.
4804 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4805
cff03fb2
JD
48062007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4807
4808 * src/gram.c: Remove comments that duplicate comments in gram.h.
4809
4810 When reporting useless rules and nonterminals, say "useless in grammar"
4811 instead of "useless", and say "useless in parser" instead of "never
4812 reduced". Discussed starting at
4813 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4814 * NEWS (2.3a+): Mention this change.
4815 * data/xslt/xml2text.xsl: Update output text and expected input XML
4816 element names to match changes below.
4817 * data/xslt/xml2xhtml.xsl: Likewise.
4818 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4819 Contents: "Rules useless in parser due to conflicts".
4820 * doc/bison.texinfo (Decl Summary): Reword a little.
4821 (Understanding): Update example output for changes below.
4822 * src/gram.c: (rule_useful_p): Rename to...
4823 (rule_useful_in_grammar_p): ... this.
4824 (rule_useless_p): Rename to...
4825 (rule_useless_in_grammar_p): ... this.
4826 (rule_never_reduced_p): Rename to...
4827 (rule_useless_in_parser_p): ... this.
4828 (grammar_rules_print): Update for renames.
4829 (grammar_rules_print_xml): Update for renames.
4830 (grammar_rules_never_reduced_report): Rename to...
4831 (grammar_rules_useless_report): ... this since it is used for either
4832 kind of useless rule.
4833 * src/gram.h: Reword comments and update function names in prototypes.
4834 * src/main.c (main): Say "rule useless in parser due to conflicts".
4835 * src/print-xml.c (print_rules_never_reduced): Rename to...
4836 (print_rules_useless_in_parser): ... this, and rename output XML
4837 element "rules-never-reduced" to "rules-useless-in-parser".
4838 (print_xml): Update for rename.
4839 * src/print.c (print_results): Say "Rules useless in parser due to
4840 conflicts".
4841 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4842 (nonterminals_reduce): Say "nonterminal useless in grammar".
4843 (reduce_output): Say "Nonterminals useless in grammar".
4844 Say "Rules useless in grammar".
4845 (reduce_xml): Rename output XML element "useless" to
4846 "useless-in-grammar".
4847 (reduce_print): Don't report the count of grammatically useless rules
4848 as "rules never reduced" just because %yacc is specified.
4849 In the correct report of this count, say nonterminal(s) and rule(s)
4850 "useless in grammar".
4851 * tests/conflicts.at (S/R in initial): Update expected output.
4852 (Defaulted Conflicted Reduction): Likewise.
4853 (Unreachable States After Conflict Resolution): Likewise.
4854 * tests/existing.at (GNU pic Grammar): Likewise.
4855 * tests/reduce.at (Useless Nonterminals): Likewise.
4856 (Useless Rules): Likewise.
4857 (Reduced Automaton): Likewise.
4858 (Underivable Rules): Likewise.
4859 (Empty Language): Likewise.
4860
66f0441d
JD
48612007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4862
4863 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4864 here document and before the EOF so that BSD's implementation of Bourne
4865 shell doesn't parse the delimiter as part of the here document.
4866 * doc/.cvsignore: Add cross-options.texi.
4867 * src/getargs.c (usage): Add a blank line after the warning categories.
4868
d0ee4105
PB
48692007-11-08 Paolo Bonzini <bonzini@gnu.org>
4870
4871 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4872
e8b1fb9b
AD
48732007-11-05 Akim Demaille <akim@epita.fr>
4874
4875 Remove Id: from bison.1.
4876 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4877 (perl -0777 -pi -e 's/\.PP\nId): New.
4878 (.x.1): Use it to ignore the version control revision.
4879
2f7a96b5
AD
48802007-11-05 Akim Demaille <demaille@gostai.com>
4881
4882 * build-aux/Makefile.am: Ship cross-options.pl.
4883 * doc/Makefile.am: Always refer to cross-options.texi with
4884 $(srcdir).
4885 (MAINTAINERCLEANFILES): Add it.
4886
f4101aa6
AD
48872007-11-04 Akim Demaille <demaille@gostai.com>
4888
4889 Generate the long/short option cross-table.
4890 * build-aux/cross-options.pl: New.
4891 * doc/Makefile.am (cross-options.texi): New.
4892 * doc/bison.texinfo: Use it.
4893
727a1401
AD
48942007-11-04 Akim Demaille <demaille@gostai.com>
4895
4896 Generate bison.1 using help2man.
4897 * doc/common.x, doc/bison.x: New.
4898 * doc/Makefile.am (bison.1, .x.1): New.
4899 The code is taken from autoconf-2.61/man/Makefile.am.
4900 * configure.ac: Look for help2man.
4901
6aeb9c57
AD
49022007-11-04 Akim Demaille <demaille@gostai.com>
4903
4904 Complete --help.
4905 * src/getargs.c (usage): Document -W, make it clear that -d,
4906 -g and -x have optional arguments.
4907
d7be4085
AD
49082007-11-04 Akim Demaille <demaille@gostai.com>
4909
4910 Find sha1sum when named gsha1sum.
4911 * bootstrap (find_tool): New.
4912 ($SHA1SUM): New.
4913
d9df47b6
JD
49142007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4915
4916 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4917 at
4918 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4919 * NEWS (2.3a+): Mention.
4920 * data/bison.m4 (b4_pure_if): Don't define it here.
4921 * data/c.m4 (b4_identification): Depend on individual skeletons to
4922 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4923 values of the %define variables api.pure or api.push_pull. Define
4924 YYPURE, YYPUSH, and YYPULL accordingly.
4925 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4926 glr.cc has already defined b4_pure_flag.
4927 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4928 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 4929 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
4930 * doc/bison.texinfo (Pure Decl): Update.
4931 (Push Decl): Update.
4932 (Decl Summary): Add api.pure to %define entry.
4933 In %pure-parser entry, say it's deprecated and reference %define.
4934 (Pure Calling): Update.
4935 (Error Reporting): Update.
4936 (C++ Scanner Interface): Update.
4937 (How Can I Reset the Parser): Update.
4938 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4939 reference %define.
4940 * src/getargs.c (pure_parser): Remove global variable.
4941 * src/getargs.h (pure_parser): Remove extern.
4942 * src/output.c (prepare): Don't define pure_flag muscle.
4943 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4944 wrapper around `%define api.pure'.
4945 * tests/calc.at (Simple LALR Calculator): Update.
4946 (Simple GLR Calculator): Update.
4947 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4948 Update.
4949 (GLR: Resolve ambiguity, pure, locations): Update.
4950 (GLR: Merge conflicting parses, pure, no locations): Update.
4951 (GLR: Merge conflicting parses, pure, locations): Update.
4952 * tests/glr-regression.at (Uninitialized location when reporting
4953 ambiguity): Update
4954 * tests/input.at (Unused %define api.pure): New test case.
4955 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4956 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4957 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4958
c373bf8b
JD
49592007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4960
4961 %define push_pull -> %define api.push_pull. Discussed starting at
4962 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4963 * data/push.c: Expect the new name.
4964 * data/yacc.c: Likewise.
4965 * doc/bison.texinfo (Push Decl): Update.
4966 (Decl Summary): Update %define entry.
4967 (Push Parser Function): Update.
4968 (Pull Parser Function): Update.
4969 (Parser Create Function): Update.
4970 (Parser Delete Function): Update.
4971 * tests/calc.at (Simple LALR Calculator): Update.
4972 * tests/input.at (%define enum variables): Update.
4973 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4974 (Push Parsing: Multiple impure instances): Update.
4975 (Push Parsing: Unsupported Skeletons): Update.
4976 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4977 (Exploding the Stack Size with Malloc): Update.
4978
4979 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4980 other entries some.
4981
32f19b6b
JD
49822007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4983
4984 For the XML output's terminal element, rename @number to @token-number,
4985 and add @symbol-number. In the nonterminal element, rename @number to
4986 @symbol-number. Discussed starting at
4987 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4988 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4989 renames.
4990 (xsl:template match="nonterminal"): Likewise.
4991 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4992 (xsl:template match="nonterminal"): Likewise.
4993 * src/print-xml.c (print_grammar): Implement.
4994
255a6b90
JD
49952007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4996
4997 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4998 2007-10-11 change, the child elements here are items not rules.
408476bc 4999 (xsl:template match="item"): New.
255a6b90
JD
5000 (xsl:template match="rule"): Update for new reduced itemset.
5001 (xsl:template match="point"): Remove.
5002 (xsl:template match="empty"): For consistency with --graph, don't
5003 output "/* empty */".
5004 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5005 line-wrap, don't pass a negative value as first-line-length since this
5006 won't work with the following changes.
5007 (xsl:template name="line-wrap"): Simplify slightly.
5008 (xsl:template name="ws-search"): Eliminate recursion.
5009 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5010 set next to an item whose dot is not at the end of the RHS even if it
5011 happens to be associated with the same rule.
5012
88c78747
JD
50132007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5014
31984206
JD
5015 Add %define lr.keep_unreachable_states.
5016 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5017 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5018 * src/main.c (main): Implement it.
5019 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5020 Extend to test it, and fix a typo.
5021
50222007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5023
5024 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
5025 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5026 the example .output text.
5027 * tests/regression.at (Extra lookahead sets in report): Improve wording
5028 of comments.
5029
b7a70162
WP
50302007-10-17 Wojciech Polak <polak@gnu.org>
5031
5032 * src/print-xml.c (print_grammar): Renamed
5033 <terminal> and <nonterminal> attributes:
5034 "type" to "number" and "symbol" to "name".
5035 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5036 Use new attribute names.
5037 (xsl:template match="nonterminal"): Likewise.
5038 * data/xslt/xml2xhtml.xsl: Likewise.
5039
a0de5091
JD
50402007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5041
5042 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5043 (Option Cross Key): Likewise.
5044
5045 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5046 next to an item whose dot is not at the end of the RHS even if it
5047 happens to be associated with the same rule.
5048 * src/print.c (print_core): Likewise.
5049 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5050 (Resolved SR Conflicts): Update output.
5051 * tests/regression.at (Extra lookahead sets in report): New test case.
5052
4c20d18d
WP
50532007-10-11 Wojciech Polak <polak@gnu.org>
5054
5055 * src/print-xml.c (print_core): Remove item set
5056 redundancy.
5057 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5058 Improve processing time. Suggested by Joel E. Denny.
5059 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5060 Write xsl:param "required" attribute as comment.
5061 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5062 (xsl:template match="rule"): Support new reduced itemset.
5063 (xsl:template match="point"): Remove.
5064 * data/xslt/xml2xhtml.xsl: Likewise.
5065
f506ad1c
JD
50662007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5067
5068 * src/getargs.c (version): Update copyright year.
5069
21f1b063
JD
50702007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5071
5072 Make xml2dot.xsl and --graph produce the same output.
5073 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5074 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5075 escaped later.
5076 (xsl:template name="output-node"): Use the new escape template instead
5077 of the string-replace template directly.
5078 (xsl:template name="output-edge"): Likewise.
5079 (xsl:template name="escape"): New, escapes backslashes and newlines in
5080 addition to quotation marks.
5081 * src/graphviz.c (start_graph, output_node, output_edge): Add
5082 whitespace to output for legibility.
5083
5084 Make xml2text.xsl and --report produce the same output, and remove the
5085 XML "conflicts" element since a conflict summary is easily extracted
5086 from the automaton.
5087 * data/xslt/bison.xsl: New.
5088 (xsl:template match="state" mode="bison:count-conflicts): New.
5089 * data/xslt/xml2text.xsl: Import bison.xsl.
5090 (xsl:template match="bison-xml-report"): Instead of styling the
5091 "conflicts" element, style the "automaton" element with mode
5092 "conflicts". Unlike the former, the latter lists S/R and R/R
5093 conflicts for a state on the same line.
5094 (xsl:template match="conflicts"): Remove.
5095 (xsl:template match="conflict"): Remove.
5096 (xsl:template match="terminal"): Line-wrap the list of rules in which
5097 the terminal is used.
5098 (xsl:template match="nonterminal"): Likewise for nonterminals.
5099 (xsl:template match="automaton" mode="conflicts"): New.
5100 (xsl:template match="state" mode="conflicts"): New.
5101 (xsl:template name="line-wrap"): New.
5102 (xsl:template name="ws-search"): New.
5103 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5104 (xsl:template match="bison-xml-report"): Instead of styling the
5105 "conflicts" element, style the "automaton" element with mode
5106 "conflicts."
5107 (xsl:template match="conflicts"): Remove.
5108 (xsl:template match="conflict"): Remove.
5109 (xsl:template match="automaton" mode="conflicts"): New.
5110 (xsl:template match="state" mode="conflicts): New.
5111 * src/conflicts.c (conflicts_output_xml): Remove.
5112 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5113 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5114 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5115 the corresponding XSLT is easier. Also, never wrap between a word and
5116 the comma that follows it.
5117
793fbca5
JD
51182007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5119
5120 Improve C++ namespace support. Discussed starting at
5121 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5122 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5123 b4_namespace_close): New macros that interpret the %define variable
5124 "namespace" so its value can contain "::" to indicate nested
5125 namespaces.
5126 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5127 the above macros.
5128 * data/lalr1.cc (b4_namespace): Likewise.
5129 * data/location.cc (b4_namespace): Likewise.
5130 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5131 inside a new table in the general %define entry. Document `%define
5132 namespace' there as well. Point the %name-prefix entry to it since it
5133 explains it more completely in the case of C++.
5134 (C++ Bison Interface): Mention `%define namespace' instead of
5135 %name-prefix.
5136 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5137 entry suffices.
5138 * tests/c++.at (Relative namespace references): New test case.
5139 (Absolute namespace references): New test case.
5140 (Syntactically invalid namespace references): New test case.
5141 * tests/input.at (C++ namespace reference errors): New test case.
5142
35b8730d
JD
51432007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5144
5145 Add syncline support and location accessor to internal %define
5146 interfaces.
5147 * data/bison.m4 (b4_percent_define_get_loc): New.
5148 (b4_percent_define_get_syncline): New.
5149 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5150 (b4_percent_define_default): Record defining location as line 1 rather
5151 than 0 for the sake of synchronizing #line's, and define
5152 b4_percent_define_syncline(VARIABLE).
5153 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5154 * src/muscle_tab.c (muscle_syncline_grow): New.
5155 (muscle_code_grow): Use muscle_syncline_grow.
5156 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5157 define b4_percent_define_syncline(VARIABLE).
5158 (muscle_percent_define_get_loc): New.
5159 (muscle_percent_define_get_syncline): New.
5160 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5161 remove some unused variables.
5162 (muscle_percent_define_default): Record defining location as line 1
5163 rather than 0 for the sake of synchronizing #line's, and define
5164 b4_percent_define_syncline(VARIABLE).
5165 (muscle_percent_define_check_values): Use
5166 muscle_percent_define_get_loc.
5167 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5168 (muscle_percent_define_get_syncline): Prototype.
5169 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5170 defaults): Update output for location change.
5171 (Complaining during macro argument expansion): Extend to test
5172 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5173
7dc4a694
JD
51742007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5175
5176 Fix some error-reporting macro bugs.
5177 * data/bison.m4 (b4_cat): New.
5178 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5179 to stdout so they don't become arguments to other macros. Update
5180 comments and add examples.
5181 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5182 add examples.
5183 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5184 after printing the error directive so that M4 doesn't report subsequent
5185 problems that are induced by this problem.
5186 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5187 instead of just in them. Recognize @\n in both places. Both expand to
5188 the empty string. Needed by b4_cat.
5189 * tests/skeletons.at (Complaining during macro argument expansion):
5190 New test case.
5191 (Fatal errors make M4 exit immediately): New test case.
5192
d4bd2295
JD
51932007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5194
5195 Implement --print-datadir.
5196 * src/getargs.c (usage): Mention.
5197 (PRINT_DATADIR_OPTION): New anonymous enum member.
5198 (long_options): Add entry for it.
5199 (getargs): Add case for it calling compute_pkgdatadir.
5200 * src/output.c (output_skeleton): Encapsulate data directory
5201 computation from here...
5202 (prepare): ... and from here...
5203 (compute_pkgdatadir): ... into this new function.
5204 * src/output.h (compute_pkgdatadir): Prototype.
5205
34cdeddf
JD
52062007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5207
5208 * src/print-xml.c (escape_bufs): New static global variable
5209 replacing...
5210 (xml_escape_n): ... the static local variable buf here.
5211 (print_xml): Free memory for escape_bufs.
5212 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5213
d782395d
JD
52142007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5215
5216 Replace `%push-parser' and `%push-pull-parser' with
5217 `%define push_pull "push"' and `%define push_pull "both"'.
5218 `%define push_pull "pull"' is the default.
5219 * doc/bison.texinfo (Push Decl, Push Parser Function,
5220 Pull Parser Function, Parser Create Function, Parser Delete Function):
5221 Update declarations.
5222 (Decl Summary, Table of Symbols): Replace %push-parser and
5223 %push-pull-parser entries with a %define push_pull entry.
5224 * data/bison.m4 (b4_percent_define_check_values): New macro.
5225 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5226 definitions...
5227 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5228 definitions...
5229 * data/push.c: ... to here and compute them from the value of the
5230 %define variable push_pull.
5231 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5232 parsing requests here...
5233 * data/yacc.c: ... hack this to switch to push.c any time
5234 b4_use_push_pull_flag or the %define variable push_pull is set. This
5235 will go away when we mv push.c yacc.c.
5236 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5237 push parsing is not supported since unused %define variables are
5238 reported anyway.
5239 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5240 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5241 comments for consistency with b4_percent_define_check_values.
5242 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5243 muscles.
5244 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5245 Remove.
5246 (prologue_declaration): Remove %push-parser and %push-pull-parser
5247 rules.
5248 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5249 * tests/calc.at: Update declarations.
5250 * tests/input.at (%define enum variables): New test case.
5251 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5252 declaration.
5253 (Push Parsing: Multiple impure instances): Update declaration.
5254 (Push Parsing: Unsupported Skeletons): New test case.
5255 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5256 declaration.
5257 (Exploding the Stack Size with Malloc): Update declaration.
5258
3f999f78
WP
52592007-09-24 Wojciech Polak <polak@gnu.org>
5260
5261 Add XSLT transformations.
5262
5263 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5264 * data/xslt/xml2text.xsl: Transform XML into plain text.
5265 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5266 * data/Makefile.am (xsltdir): New variable.
5267 (dist_xslt_DATA): Add xslt/*.xsl files.
5268
a4f75309
PE
52692007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5270
5271 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5272 Problem reported by Wojciech Polak.
5273 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5274 (xml_printf): Undo change I made on 21 September; that is,
5275 indent 2 spaces, not 1.
5276
ad5feac4
JD
52772007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5278
5279 Pacify ./configure --enable-gcc-warnings.
5280 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5281 `char const *' instead of `char *'.
5282 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5283 local variable `sep'.
5284
41d7a5f2
PE
52852007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5286
5287 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5288 elsewhere.
5289 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5290 (xml_printf): Indent just 1 space for level.
5291 (e_char, xlate_char): Remove.
5292 (xml_escape_string): Rewrite to avoid undefined behavior (used
5293 storage that was freed from the stack).
5294 (xml_escape_n): Don't bother checking for subscript error.
5295
3f999f78
WP
52962007-09-21 Wojciech Polak <polak@gnu.org>
5297
5298 Add Bison XML Automaton Report.
41d7a5f2
PE
5299
5300 Add support for an -x option to generate an XML report.
5301 It is not documented yet.
5302 * src/print-xml.c: New file.
5303 * src/print-xml.h: Likewise.
5304 * lib/timevar.def (TV_XML): New var.
5305 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5306 * src/conflicts.c: Include print-xml.h.
5307 (solved_conflicts_xml_obstack): New var.
5308 (log_resolution, conflicts_solve, conflicts_free):
5309 Add support for XML report.
5310 (conflicts_output_val): New function.
5311 * src/conflicts.h (conflicts_output_val): New decl.
5312 * src/files.c (spec_xml_file): New var.
5313 (compute_output_file_names, output_file_names_free): Add XML support.
5314 * src/files.h (spec_xml_file): New decl.
5315 * src/getargs.c (xml_flag): New var.
5316 (usage, short_options, long_options, getargs): Add XML support.
5317 * src/getargs.h (xml_flag): New decl.
5318 * src/gram.c: Include print-xml.h.
5319 (rule_lhs_print_xml, rule_rhs_print_xml):
5320 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5321 New functions.
5322 * src/gram.h: Declare external ones.
5323 * src/main.c: Include print-xml.h.
5324 (main): Add XML support.
5325 * src/reduce.c: Include print-xml.h.
5326 (reduce_xml): New function.
5327 * src/reduce.h: Declare it.
5328 * src/state.c: Include print-xml.h.
5329 (state_new): Add XML support.
5330 (state_rule_lookahead_tokens_print_xml): New function.
5331 * src/state.h: Declare it.
5332 (struct state): New member solved_conflicts_xml.
5333 * src/symtab.c (symbol_class_get_string): New function.
5334 * src/symtab.h: Declare it.
5335
6d8e724d
PE
53362007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5337
5338 * GNUmakefile: Switch to coreutils's version.
5339 * bootstrap: Likewise.
5340 * Makefile.cfg: Adjust to new GNUmakefile.
5341 * README-hacking: Likewise.
5342
5343 Import from gnulib:
5344
5345 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5346 Bruno Haible <bruno@clisp.org>
5347
5348 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5349 and is a script that invokes bison. Tighten the code. Add comments.
5350
922bdd7f
JD
53512007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5352
5353 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5354 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5355 * doc/bison.texinfo (Decl Summary): Fix.
5356 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5357 * tests/input.at (Boolean %define variables): Update output.
5358 * tests/skeletons.at (%define boolean variables: invalid skeleton
5359 defaults): Rename to...
5360 (%define Boolean variables: invalid skeleton defaults): ... this and
5361 update output.
5362
1b17b01d
JD
53632007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5364
5365 In impure push mode, don't allow more than one yypstate to be allocated
5366 since multiple impure parsers would corrupt yynerrs.
5367 * data/push.c (yypstate_allocated): New static global variable
5368 initialized to 0.
5369 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5370 exhaustion if yypstate_allocated is 1, but still return 2.
5371 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5372 already 1. Otherwise, set it to 1.
5373 (yypstate_delete): Set it to 0.
5374 * tests/push.at (Push Parsing: Multiple impure instances): New test
5375 case.
5376
9987d1b3
JD
53772007-08-17 Bob Rossi <bob@brasko.net>
5378
5379 * doc/bison.texinfo (Push Decl): Document the push parser.
5380 (Table of Symbols): Ditto.
5381 (Pure Decl): Ditto.
5382 (Decl Summary): Ditto.
5383 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5384 Parser Create Function, Parser Delete Function):
5385 Add new push parser symbols.
5386 (Table of Symbols): Document push-parser, push-pull-parser,
5387 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5388
f16b0819
PE
53892007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5390
5391 Update to GPLv3.
5392 * doc/gpl-3.0.texi: New file.
5393 * doc/gpl.texi: Remove.
5394 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5395 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5396 * README-hacking, TODO, bootstrap, bootstrap.conf:
5397 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5398 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5399 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5400 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5401 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5402 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5403 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5404 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5405 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5406 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5407 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5408 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5409 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5410 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5411 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5412 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5413 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5414 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5415 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5416 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5417 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5418 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5419 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5420 * src/complain.c, src/complain.h, src/conflicts.c:
5421 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5422 * src/files.h, src/flex-scanner.h, src/getargs.c:
5423 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5424 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5425 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5426 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5427 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5428 * src/print.c, src/print.h, src/print_graph.c:
5429 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5430 * src/reduce.h, src/relation.c, src/relation.h:
5431 * src/revision.h, src/scan-code.h, src/scan-code.l:
5432 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5433 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5434 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5435 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5436 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5437 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5438 * tests/existing.at, tests/glr-regression.at:
5439 * tests/headers.at, tests/input.at, tests/java.at:
5440 * tests/local.at, tests/output.at, tests/push.at:
5441 * tests/reduce.at, tests/regression.at, tests/sets.at:
5442 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5443 * tests/torture.at:
5444 Update to GPLv3.
5445
728c4be2
JD
54462007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5447
5448 Get rid of broken %no-parser, -n, and --no-parser implementation and
5449 documentation.
5450 * TODO: Don't mention them.
5451 * doc/bison.1: Likewise.
5452 * doc/bison.texinfo (Decl Summary): Likewise.
5453 (Bison Options): Likewise.
5454 (Option Cross Key): Likewise.
5455 * src/getargs.c (no_parser_flag): Remove global variable.
5456 (usage): Don't print description of -n and --no-parser.
5457 (long_options): Remove --no-parser entry here.
5458 (getargs): Remove -n case in the switch here.
5459 * src/getargs.h (no_parser_flag): Remove extern.
5460 * tests/regression.at (Web2c Actions): Remove comment that mentions
5461 --no-parser.
5462
5d31a216
JD
54632007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5464
5465 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5466 name user variables starting with `yy'. Just pass NULL instead of a
5467 dummy local &yylval to yypush_parse.
5468 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5469 starting with `yy'.
5470
a2ea208d
JD
54712007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5472
5473 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5474 true since it's then always used regardless of whether yyoverflow is
5475 defined. Reported by Christian Burger at
5476 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5477 * THANKS: Add Christian Burger.
5478
91661ebb
JD
5479 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5480 node names: say "Decl Summary" not "Bison Declaration Summary".
5481
cbd50549
JD
54822007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5483
5484 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5485 determine whether this function has already complained about an invalid
5486 value for a %define boolean variable, don't check whether Bison has
5487 ever examined the value. As written, the check was a tautology.
5488 Instead, record and check for this complaint using a separate muscle.
5489
eb1b0740
JD
54902007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5491
5492 Fix push parsing memory leak reported by Brandon Lucia at
5493 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5494 * THANKS: Add Brandon Lucia.
5495 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5496 but the parse never completed and thus freed it.
5497 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5498 * tests/testsuite.at: Include push.at.
5499 * test/push.at: New.
5500 (Push Parsing: Memory Leak for Early Deletion): New test case.
5501
9d774aff
JD
55022007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5503
5504 Improve handling of multiple S/R conflicts in the same state and of S/R
5505 conflicts involving multiple reductions.
5506 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5507 set for a state here or Bison will abort if it is reassigned on a
5508 later conflicted reduction in the same state.
5509 Similarly, don't finalize and assign the solved conflicts report here
5510 or it will be lost if it is reassigned on a later conflicted reduction
5511 in the same state.
5512 (set_conflicts): Instead, assign them both here after all S/R conflicts
5513 in the state have been fully examined.
5514 * src/print.c (shift_set): Rename to...
5515 (no_reduce_set): ... this.
5516 (print_reductions): Update for rename, and add %nonassoc error action
5517 tokens to no_reduce_set so that, when printing the first remaining
5518 reduction on an error action token, the reduction is enclosed in
5519 brackets.
5520 (print_results): Update for rename.
5521 * tests/conflicts.at (Solved conflicts report for multiple reductions
5522 in a state): New test case.
5523 (%nonassoc error actions for multiple reductions in a state): New test
5524 case.
5525
5526 * src/main.c (main): Don't depend on C99 features.
5527
10159d2a
JD
55282007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5529
5530 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
5531 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5532 uniwidth.
10159d2a 5533
953b3935
JD
55342007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5535
5536 * bootstrap (slurp): Create target directories that don't exist.
5537 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5538
6ce2d93a
JD
55392007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5540
5541 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5542 than item number.
5543 * closure.c (closure): Likewise.
5544 * state.h (reductions): Comment sorting of rules.
5545 (state): Comment sorting of items.
5546
ce3448d5
JD
55472007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5548
5549 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5550 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5551 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5552 definition in order to avoid Gnulib headers since we don't use config.h
5553 here.
5554 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5555 rather than AT_DATA so that config.h is included.
5556
8a86eef0
JD
55572007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5558
5559 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5560 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5561 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5562 and so that YYFPRINTF is guaranteed to be defined here.
5563
b1a81613
JD
55642007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5565
5566 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5567 with...
5568 (muscle_percent_define_check_values): ... this more helpful function.
5569 Again, it's not used yet, but it will be.
5570 * src/muscle_tab.h: Likewise.
5571
71b61d4d
JD
5572 Improve some comments in parser table construction.
5573 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5574 (generate_states): Don't mention ruleset, which is internal to closure.
5575 * src/closure.c (closure): Explain sorting of core and itemset, which
5576 is required for this function to behave correctly.
5577 * src/closure.h (closure): Mention sorting.
5578
2a6b783d
JD
55792007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5580
5581 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5582 move the check for disabled transitions to an aver since conflict
5583 resolution hasn't happened yet.
5584
5585 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5586 labels a state as inconsistent just because it has error transitions.
5587 The original form of this check appeared in revision 1.1 of lalr.c,
5588 which was committed on 1991-12-21. Now (at least), changing the
5589 consistency label on such a state appears to have no useful effect in
5590 any of the places it is examined, which I enumerate below. The key
5591 point to understanding each item in this enumeration is that a state
5592 with an error transition is labelled consistent in the first place only
5593 if it has no rules, so the check cannot matter for states that have
5594 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5595 to try to identify its conflicts, and a state must have *rules* to have
5596 conflicts. (2) Labelling a state as inconsistent will affect how
5597 action_row sets the default *rule* for the state. (3) Labelling a
5598 state as inconsistent will cause build_relations to add lookback edges
5599 to *rules* in that state.
5600 * src/state.h (struct state): Word the comment for member consistent
5601 more carefully.
5602
14462c2b
JD
56032007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5604
5605 Don't depend on C99 features.
5606 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5607 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5608 * src/reader.c (check_and_convert_grammar): Fix for-loop.
5609 * src/state.c (state_mark_reachable_states): Fix for-loop.
5610 (state_remove_unreachable_states): Fix for-loop.
5611
5612 Don't widen struct state with member reachable just to temporarily
5613 record reachability. Instead, use a local bitset.
5614 * src/state.h (struct state): Remove member.
5615 * src/state.c (state_new): Don't initialize it.
5616 (state_mark_reachable_states): Rename to...
5617 (state_record_reachable_states): ... this, and use bitset.
5618 (state_remove_unreachable_states): Use bitset.
5619
5a43d418
JD
56202007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
5621
5622 * src/Makefile.am (yacc): Quote target action commands properly so
5623 that the yacc script isn't corrupt. Reported by Hans Aberg at
5624 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
5625
0c650a20
JD
5626 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
5627 the case of pure parsers. Reported by Frans Englich at
5628 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
5629 * THANKS: Add Frans Englich.
5630
61fee93e
JD
5631 * NEWS (2.3a+): In the %code entry, reference section `Bison
5632 Declaration Summary' from the manual now since the %code summary has
5633 moved there.
5634 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
5635 in the rules section must be terminated by semicolons.
5636
f124d423
JD
56372007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
5638
5639 Extend the front-end API for %define variables to more completely
5640 mirror the back-end. This will be useful in the future.
5641 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
5642 Update comments to mention the new front-end counterparts of these
5643 macros.
5644 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
5645 for muscle_string_decode and muscle_location_decode.
5646 (muscle_string_decode): New static function.
5647 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
5648 (muscle_percent_define_get, muscle_percent_define_ifdef): New
5649 functions.
5650 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
5651 muscle_percent_define_get to mimic the b4_percent_define_flag_if
5652 implementation more closely.
5653 (muscle_percent_define_invalid_value): New function.
5654 * src/muscle_tab.h (muscle_percent_define_get,
5655 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
5656 Prototype.
5657
75ad86ee
JD
56582007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5659
5660 * NEWS (2.3a+): Mention yesterday's state-removal change.
5661 (2.3a): Remove the %language entry, which was added after 2.3a.
5662 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
5663 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
5664 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
5665 tests/existing.at: Update copyright date.
5666
5967f0cf
JD
56672007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5668
5669 If conflict resolution makes states unreachable, remove those states,
5670 report rules that are then unused, and don't report conflicts in those
5671 states.
5672 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
5673 New global function.
5674 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
5675 function.
5676 * src/main.c (main): After conflict resolution, remove the unreachable
5677 states and update all data structures that reference states by number.
5678 * src/state.c (state_new): Initialize each state's reachable member to
5679 false.
5680 (state_mark_reachable_states): New static function.
5681 (state_remove_unreachable_states): New global function.
5682 * src/state.h (struct state): Add member bool reachable.
5683 (state_remove_unreachable_states): Prototype.
5684 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5685 New test case.
5686 * tests/existing.at (GNU pic Grammar): Update test case output now that
5687 an unused rule is discovered.
5688
b09f4f48
JD
56892007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5690
5691 Minor code cleanup in parser table construction.
5692 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
5693 (new_itemsets, save_reductions): Update for rename to nitemset.
5694 * src/closure.c (nritemset): Rename to...
5695 (nitemset): ... this since the "r" appears to meaningless and isn't
5696 used in the comments.
5697 (closure): Update for rename.
5698 * src/closure.h (nritemset): Update extern to...
5699 (nitemset): ... this.
5700 * src/lalr.c (LA): Fix a typo in comments.
5701 * src/print.c (print_core): Update for rename to nitemset.
5702 * src/print_graph.c (print_graph): Likewise.
5703 * src/state.h: Fix some typos in header comments.
5704
bbb44d83
PE
57052007-04-04 Paul Eggert <eggert@cs.ucla.edu>
5706
9b33de72
PE
5707 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
5708 still sticks to ASCII. Sorry!
5709
bbb44d83
PE
5710 * README-hacking: New file, taken mostly from coreutils, with changes
5711 for Bison. Contains much of the contents of:
5712 * README-cvs: Remove.
5713 * bootstrap: Sync from gnulib.
5714 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
5715 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
5716
29553547
JD
57172007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
5718
5719 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
5720 Setzer.
5721 (Java Differences): Fix some typos.
5722 * THANKS: Add Sebastian Setzer.
5723
01b477c6
PB
57242007-03-07 Paolo Bonzini <bonzini@gnu.org>
5725
730739e4
AD
5726 * data/java.m4 (b4_single_class_if): Remove.
5727 (b4_abstract_if): Look at "%define abstract".
5728 (b4_lexer_if): New.
5729 (b4_union_name): Rename...
5730 (b4_yystype): ... to this. Map to "%define stype".
5731 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
5732 b4_maybe_throws): Fix quoting.
5733 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
5734 * data/lalr1.java (Lexer interface): Always define.
5735 (Lexer interface within parser class): Remove.
5736 (YYLexer class): New, used when "%code lexer" is present.
5737 (constructor): When "%code lexer" is used, pass %lex-param
5738 to the lexer constructor.
5739 (yylex, yyparse): Remove %lex-param from method invocations
5740 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
5741
5742 * doc/bison.texinfo (Java Bison Interface): Mention "%define
5743 abstract". Rename "%define union_name" to "%define stype".
5744 Rename method names according to previous patch.
5745 (Java Scanner Interface): Describe "%code lexer" instead of
5746 "%pure-parser" and "%define single_class".
5747 (Java Differences): Mention "%code lexer".
5748
5749 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
5750 Include scanner here, using macros from tests/local.at.
5751 (AT_DATA_CALC_Y): Remove final argument.
5752 (_AT_CHECK_JAVA_CALC): Likewise.
5753 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
5754 of %locations and %error-verbose.
5755 (main): Test with and without %lex-param.
5756 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5757 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 5758
122bea3a
JMG
57592007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5760
5761 DJGPP spefic issue. Inhibit the use of disallowed characters for
5762 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5763 and concern testsuite case 46.
5764 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5765 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5766 * djgpp/config.bat: Inhibit the use of disallowed characters.
5767
9611cfa2
JD
57682007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5769
5770 Miscellaneous %define and %code cleanup.
5771 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5772 values are interpreted.
5773 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5774 documentation a little more.
5775 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5776 muscle_percent_define_insert, muscle_percent_code_grow): New
5777 functions/macros.
5778 * src/muscle_tab.h (muscle_percent_define_insert,
5779 muscle_percent_code_grow): Prototype.
5780 * src/parse-gram.y (prologue_declaration): Use
5781 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5782 %define and %code directives.
5783
5784 Make it easy to share %define boolean variables between the front-end
5785 and back-end. Though not used yet, this will be useful in the future.
5786 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5787 Bison uses of names rather than just skeleton uses of names.
5788 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5789 b4_percent_define_skeleton_variables(VARIABLE) to
5790 b4_percent_define_bison_variables(VARIABLE).
5791 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5792 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5793 b4_percent_code_bison_qualifiers(QUALIFIER).
5794 (b4_check_user_names_wrap): Update for renames.
5795 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5796 muscle_percent_define_default): New functions mimicking
5797 b4_percent_define_flag_if and b4_percent_define_default.
5798
5799 For %define variables, report locations for invalid values and
bbb44d83 5800 redefinitions.
9611cfa2
JD
5801 * data/bison.m4 (b4_percent_define_flag_if): Read
5802 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5803 value for VARIABLE.
5804 (b4_percent_define_default): Save a special location in
5805 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5806 must later be reported as invalid.
5807 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5808 functions.
5809 (muscle_percent_define_insert): Record the location of VARIABLE in
5810 muscle percent_define_loc(VARIABLE), and use it to report the previous
5811 location for a redefinition.
5812 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5813 (muscle_percent_define_default): Update like b4_percent_define_default.
5814 (muscle_grow_user_name_list): Rename to...
5815 (muscle_user_name_list_grow): ... this for consistency and use
5816 muscle_location_grow.
5817 * src/muscle_tab.h (muscle_location_grow): Prototype.
5818 * tests/input.at (%define errors): Update expected output.
5819 * tests/skeletons.at (%define boolean variables: invalid skeleton
5820 defaults): New test case.
5821
0bf92491
JD
58222007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5823
5824 * src/print.c (lookahead_set, state_default_rule): Remove.
5825 (print_reductions): Replace state_default_rule invocation with
5826 equivalent use of yydefact, which was computed in token_actions in
5827 tables.c.
5828 (print_results): Don't allocate lookahead_set.
5829
d3b12988
PB
58302007-02-27 Paolo Bonzini <bonzini@gnu.org>
5831
5832 * data/lalr1.java: Prefix all private members with yy.
5833
f57a7536
JD
58342007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5835
5836 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 5837 Sebastien Fricker at
f57a7536 5838 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 5839 * THANKS: Add Sebastien Fricker.
f57a7536
JD
5840 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5841 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5842 accept a variable number of arguments.
5843
6404a5bf
JD
58442007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5845
5846 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5847
e4e09639
JMG
58482007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5849
5850 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5851 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5852 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5853
d7e0a1a7
PE
58542007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5855
5856 Undo my 2007-02-07 change, switching back to the c-strcase module
5857 introduced in the 2007-02-03 change. Bruno Haible reported that
5858 the 2007-02-07 change would be dangerous in Turkish if we add a
5859 language whose name contains "i", since "i" is not lowercase "I"
5860 in Turkish.
5861 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5862 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5863 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5864 * m4/.cvsignore: Remove strcase.m4.
5865 * src/getargs.c: Revert 2007-02-07 change, as follows.
5866 Include c-strcase.h.
5867 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5868
deee93a1
JD
58692007-02-11 Bruno Haible <bruno@clisp.org>
5870
5871 Enable the Java related testsuite tests when the only Java compiler
5872 found is a gcj < 4.3. Discussed at
5873 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5874 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5875
574add85
JD
58762007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5877
5878 * data/Makefile.am: Update copyright date.
5879 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5880 yypstate_new returns NULL.
5881 (yypstate_new): Return NULL if malloc does.
5882 * src/reader.c (packgram): Move translation of rule actions from the
5883 beginning of packgram to...
5884 (check_and_convert_grammar): ... here right before packgram is invoked
5885 so it's easier to write more complete comments, and remove redundant
5886 code.
5887
e785ccf7
JD
58882007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5889
5890 As in semantic actions, make @$ in %initial-action, %destructor, and
5891 %printer imply %locations.
5892 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5893 scanning @$.
5894 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5895 (@$ in %initial-action implies %locations,
5896 @$ in %destructor implies %locations,
5897 @$ in %printer implies %locations): ... these new test cases.
5898
1cfe1ed7
PE
58992007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5900
5901 Undo most of the 2007-02-03 change, switching to the strcase module
5902 now that gnulib strcase has been fixed.
5903 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5904 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5905 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5906 * m4/.cvsignore: Add strcase.m4.
5907 * src/getargs.c: Revert 2007-02-03 change, as follows.
5908 Don't include c-strcase.h.
5909 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5910 strcasecmp has "unspecified behavior" outside the POSIX locale,
5911 but it works fine in practice if at least one argument is ASCII,
5912 as is the case in Bison.
5913
0049ec86
PB
59142007-02-07 Paolo Bonzini <bonzini@gnu.org>
5915
5916 * tests/java.at: Skip tests if only one of javac/java is present.
5917 Reported by Joel E. Denny.
5918 * tests/atlocal.in: Adjust copyright years.
5919
59202007-02-05 Paolo Bonzini <bonzini@gnu.org>
5921
5922 * data/lalr1.java (Stack): Work around old verifiers that disallow
5923 access to the private fields of an inner class, from the outer class.
5924 We can make Stack's fields public because user code doesn't have access
5925 to the instance of Stack used by parse(). Reported by Paul Eggert.
5926
2c2b7220
PE
59272007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5928
5929 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5930 the right spot for these files?
5931 * bootstrap.conf (gnulib_modules): Add c-strcase.
5932 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5933 c-strncasecmp.c.
5934 * src/getargs.c: Include c-strcase.h.
5935 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5936 to avoid unspecified behavior.
5937
b2b81dae
JD
59382007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5939
5940 * doc/bison.texinfo (Decl Summary): Correct typo.
5941
c1d19e10
PB
59422007-01-30 Paolo Bonzini <bonzini@gnu.org>
5943
5944 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5945 Complain if the value does not match empty, "true" or "false".
5946 * data/c++.m4: Adjust default definitions of %define variables.
5947 * data/java.m4: Adjust default definitions of %define variables.
5948 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5949 to above behavior.
5950 * tests/input.at (Boolean %define variables): Test new behavior.
5951
8405b70c
PB
59522007-01-29 Paolo Bonzini <bonzini@gnu.org>
5953
5954 * NEWS: Mention java.
5955 * TODO: Remove things that are done.
5956 * bootstrap.conf: Add javacomp-script and javaexec-script.
5957 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5958
5959 * data/Makefile.am: Add new files.
5960 * data/java-skel.m4: New.
5961 * data/java.m4: New.
5962 * data/lalr1.java: New.
5963
5964 * doc/bison.texinfo: Put "A Complete C++ Example" under
5965 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5966 under Other Languages.
5967
5968 * src/getargs.c (valid_languages): Add Java.
5969 * src/getargs.h (struct bison_language): Update size of string fields.
5970
5971 * tests/Makefile.am: Add java.at.
5972 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5973 * tests/java.at: New.
5974 * tests/testsuite.at: Include it.
5975
3eb82471
JD
59762007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5977
5978 Clean up.
5979 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5980 at_directive_argv arguments so these no longer have to be global
5981 variables. Also, update the implementation for the following changes.
5982 (fail_for_at_directive_too_many_args,
5983 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5984 (at_directive_name): Remove as at_directive_argv[0] will be used for
5985 this now.
5986 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5987 for the directive name.
5988 (at_directive_argc, at_directive_argv): Make these local within
5989 skel_lex instead of global.
5990 (INITIAL): Update directive start action for above changes.
5991 (SC_AT_DIRECTIVE_ARG): Rename to...
5992 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5993 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5994 (scan_skel): Move yylex_destroy to...
5995 (skel_scanner_free): ... here.
5996 * tests/skeletons.at (installed skeleton file name): Rename to...
5997 (installed skeleton file names): ... this.
5998
148d66d8
JD
59992007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6000
6001 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6002 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6003 Summary" not "Directives".
6004 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6005 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6006 since the former is now the more complete one.
6007 (Prologue Alternatives): Likewise and do the same for %defines.
6008 (Table of Symbols): Add summary of %code, add summary of %define, and
6009 move full %code documentation to...
6010 (Decl Summary): ... here for consistency with other entries in these
6011 sections.
6012 Move %define entry in order to keep this list alphabetized.
6013 Reword %define entry a little to put less emphasis on the skeleton
6014 concept, which most users shouldn't have to think about.
6015
665f0c24
PE
60162007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6017
6018 Adjust to recent gnulib changes.
6019 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6020 Add string.h, string_.h, unistd_.h, wchar_.h.
6021 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6022 * src/system.h: Don't include <stpcpy.h>; this is now done by
6023 <string.h>.
6024
592d0b1e
PB
60252007-01-23 Paolo Bonzini <bonzini@gnu.org>
6026
6027 Simplify implementation of unqualified %code, implement macros for
6028 uniform treatment of boolean %define flags. Document %define.
6029 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6030 b4_percent_code_ifdef): New.
6031 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6032 * data/c++.m4: Define default value for global_tokens_and_yystype.
6033 * data/glr.cc: Likewise.
6034 * data/location.cc: Use b4_percent_define_flag_if.
6035
148d66d8 6036 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
6037
6038 * src/parse-gram.y (Unqualified %code): Change muscle name to
6039 b4_percent_code().
6040 (content.opt): Default to empty.
6041
a7867f53
JD
60422007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6043
6044 Implement support for relative and absolute skeleton file names.
6045 Discussed starting at
6046 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6047 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6048 (Bison Options): Document in --skeleton entry.
6049 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6050 full_skeleton can't necessarily hold all of pkgdatadir.
6051 If the specified skeleton file name contains a `/', don't prepend
6052 pkgdatadir.
6053 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6054 file name contains a `/', prepend the grammar file directory.
6055 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6056 * skeletons.at: New file.
6057 (relative skeleton file names): New test case.
6058 (installed skeleton file names): New test case.
6059 * tests/testsuite.at: Include skeletons.at.
6060
6061 * bootstrap: Update copyright to 2007.
6062
830c9b18
PB
60632007-01-17 Paolo Bonzini <bonzini@gnu.org>
6064
6065 * bootstrap: Remove occurrences of .#bootmp from the files.
6066
a8c2e813
AD
60672007-01-17 Akim Demaille <akim@epita.fr>
6068
6069 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6070 nonterminals.
6071 Use per-type %printer.
6072
279cabb6
JD
60732007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6074
6075 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6076 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6077 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6078 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6079 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6080 tests/glr-regression.at, tests/input.at, tests/local.at,
6081 tests/output.at, tests/torture.at: Update copyright to 2007.
6082
bb32f4f2
AD
60832007-01-16 Akim Demaille <akim@epita.fr>
6084
6085 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6086 error code.
6087 (Calc++ Scanner): Exit with failure if we can't open the input
6088 file.
6089 Accept "-" standing for stdin.
6090 (Calc++ Top Level): Print the result only if the parsing was
6091 successful.
6092
7cff04b5
AD
60932007-01-16 Akim Demaille <akim@epita.fr>
6094
6095 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6096
a4e25e1d
JD
60972007-01-15 Paolo Bonzini <bonzini@gnu.org>
6098 and Joel E. Denny <jdenny@ces.clemson.edu>
6099
6100 Clean up %define and %code implementation in M4 some. Most
6101 importantly, rename all related macros to be in the b4_percent_define
6102 and b4_percent_code namespaces. Also, complete support for `.' in
6103 %define variable names and %code qualifiers.
6104 * data/bison.m4 (b4_check_user_names): Check for special
6105 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6106 m4_foreach loops.
6107 (b4_get_percent_define, b4_get_percent_code): Rename to...
6108 (b4_percent_define_get, b4_percent_code_get): ... these.
6109 Extend documentation with examples.
6110 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6111 b4_percent_define_skeleton_variables and
6112 b4_percent_code_skeleton_qualifiers.
6113 Expect any value for the %define variable `foo' to be stored in the
6114 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6115 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6116 expect any unqualified %code blocks to be stored in a macro named
6117 `b4_percent_code_unqualified'.
6118 Use m4_indir so that %define variable names and %code qualifiers can
6119 contain `.', which is allowed by the grammar parser.
6120 (b4_percent_define_default): New macro to set a default value for a
6121 %define variable.
6122 (m4_wrap): Update wrapped code, and fix some underquoting.
6123 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6124 Expect grammar uses of %define variables and %code qualifiers to be
6125 defined in b4_percent_define_user_variables and
6126 b4_percent_code_user_qualifiers.
6127 * data/c++.m4: Use b4_percent_define_default rather than
6128 m4_define_default. Fix some underquoting. Skeleton usage of %define
6129 variable define_location_comparison now implies skeleton usage of
6130 %define variable filename_type.
6131 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6132 data/push.c, data/yacc.c: Update macro names.
6133 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6134 muscle names.
6135
e37c665c
JMG
61362007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6137
6138 DJGPP specific issues.
6139
6140 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6141 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6142
7d2d521f
JD
61432007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6144
6145 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6146 run parsers in all tests so that Valgrind is invoked during
6147 maintainer-check-valgrind.
6148 (Duplicate representation of merged trees): Free all semantic values.
6149 (Duplicated user destructor for lookahead): Likewise.
6150
e0ac9b4b
JD
61512007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6152
6153 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6154 command-line prefix.
6155 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6156 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6157 miss Valgrind messages.
6158 (Exploding the Stack Size with Malloc): Likewise.
6159
78143faa
JD
61602007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6161
6162 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6163 locals. Reported by Juan Manuel Guerrero at
6164 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6165 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6166 Fix some indentation also.
6167 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6168 explaining this issue.
6169
7ecec4dd
JD
61702007-01-09 Paolo Bonzini <bonzini@gnu.org>
6171 and Joel E. Denny <jdenny@ces.clemson.edu>
6172
6173 Simplify union and prologue handling, and escape union and lex/parse
6174 params with digraphs.
6175 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6176 values to the empty string since these are no longer guaranteed
6177 initialized by the front-end.
6178 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6179 braces around b4_user_stype since this is no longer done by the
6180 front-end.
6181 * src/files.c, src/files.h (pre_prologue_obstack,
6182 post_prologue_obstack): Remove.
6183 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6184 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6185 with digraphs. This fixes lex params and parse params.
6186 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6187 * src/output.c (prepare): Remove muscle insertion of the prologues.
6188 (output): Remove freeing of pre_prologue_obstack and
6189 post_prologue_obstack.
6190 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6191 than prologue_augment for prologue parsing so you don't need prologue
6192 obstacks.
5c80250c
JD
6193 (grammar_declaration): For %union RHS, use `braceless' instead of
6194 "{...}" so that braces are already stripped and code is escaped with
6195 digraphs.
7ecec4dd
JD
6196 * src/reader.c (prologue_augment): Remove.
6197 (reader): Remove initialization of pre_prologue_obstack and
6198 post_prologue_obstack.
6199 * src/reader.h (prologue_augment): Remove.
6200
6201 * data/c.m4: Remove stray parenthesis.
6202
16dc6a9e
JD
62032007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6204
6205 Remove quotes from variables names in %define directives and from
6206 qualifiers in %code directives, and restrict the characters that are
6207 allowed in them to M4-friendly ones. For %define, continue to support
6208 the quoted form as a deprecated feature. Discussed starting at
6209 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6210 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6211 %code.
6212 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
6213 (Decl Summary): In %defines entry, update mention of `%code requires'
6214 and `%code provides'.
16dc6a9e
JD
6215 (C++ Location Values): Update %define uses.
6216 (Calc++ Parser Interface): Likewise.
6217 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 6218 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
6219 * src/parse-gram.y (prologue_declaration): For %define variables, use
6220 `variable' instead of `STRING'.
6221 (grammar_declaration): For %code qualifiers, use `ID' instead of
6222 `STRING'.
6223 (variable): New nonterminal that takes an `ID' or a `STRING'.
6224 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6225 and %define uses.
6226 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6227 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6228 (%define errors): Update %define uses.
6229
e9813cd4
JD
62302007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6231
6232 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6233 instead of muscle_insert for %define values so that M4-special
6234 characters are replaced with digraphs.
6235 * tests/input.at (%define errors): Extend to check weird values.
6236
6afc30cc
JD
62372007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6238
6239 Instead of having skeletons declare all valid %define variables and
6240 %code qualifiers, provide macros that retrieve the associated values
6241 and build these lists automatically. Thus Bison will now warn when a
6242 variable or qualifier is not used by the skeleton in the current
6243 invocation regardless of whether it might sometimes be used by that
6244 skeleton in other invocations. Also, move all %define value macros to
6245 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6246 form, which is replaced by %code.
6247 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6248 (b4_check_user_names): ... this, and change the series of valid name
6249 arguments to a single list argument for names used in the skeleton
6250 similar to the existing list argument for names used in the grammar.
6251 Warn instead of complaining.
6252 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6253 values and %code code, to format %code code properly, and to build
6254 lists of all %define variables and %code qualifiers used in the
6255 skeleton: b4_skeleton_percent_define_variables and
6256 b4_skeleton_percent_code_qualifiers.
6257 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6258 Remove, and...
6259 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6260 the skeleton names lists can finish building first. In place of
6261 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6262 expect the lists b4_user_percent_define_variables and
6263 b4_user_percent_code_qualifiers.
6264 * data/c++.m4: Where setting default values for b4_parser_class_name,
6265 b4_location_type, b4_filename_type, b4_namespace, and
6266 b4_define_location_comparison, update their names to the
6267 b4_percent_define_ namespace.
6268 * data/glr.c: Don't use b4_check_percent_define_variables and
6269 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6270 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6271 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 6272 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
6273 * data/location.cc: Use b4_get_percent_define.
6274 * data/push.c: Don't use b4_check_percent_define_variables and
6275 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6276 * data/yacc.c: Likewise, and don't call m4_exit in
6277 b4_use_push_for_pull_if or m4_wrap code will never execute.
6278 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6279 Rename to...
6280 (muscle_grow_user_name_list): ... this for consistency with the
6281 terminology used in bison.m4.
6282 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6283 %define variable names, and rename muscle used_percent_define_variables
6284 to user_percent_define_variables.
6285 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6286 user_percent_code_qualifiers.
6287 (content): Remove.
6288 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6289 {CODE} form is no longer accepted.
6290 * tests/input.at (Reject bad %code qualifiers): Rename to...
6291 (Reject unused %code qualifiers): ... this, and update test output.
6292 (%define error): Update test output.
6293
7eb8a0bc
JD
62942007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6295
6296 Check for unrecognized %define variables similar to checking for
6297 unrecognized %code qualifiers. Check for redefined %define variables.
6298 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6299 generalizes...
6300 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6301 (b4_check_percent_define_variables): New, also wraps it.
6302 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6303 variables using b4_check_percent_define_variables.
6304 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6305 all those exercised in the test suite and all those listed in the
6306 `Default values' section of c++.m4. Are there others?
6307 * data/push.c, data/yacc.c: Declare no valid %define variables.
6308 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6309 similar to muscle_find, but it works even when the muscle stores a
6310 const value.
6311 (muscle_grow_used_name_list): New function for constructing the used
6312 name list muscles that b4_check_for_unrecognized_names requires.
6313 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6314 %define'd more than once. Define the b4_used_percent_define_variables
6315 muscle with muscle_grow_used_name_list.
6316 (grammar_declaration): Abbreviate %code code with
6317 muscle_grow_used_name_list.
6318 * tests/input.at (%define errors): New.
6319
3fc65ead
JD
63202007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6321
6322 Provide warn_at, complain_at, and fatal_at function callbacks to the
6323 skeletons, and use this for %code qualifier complaints.
6324 * data/bison.m4 (b4_error_at): New, invoked by...
6325 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6326 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6327 @fatal_at(...@) directives.
6328 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6329 qualifiers in b4_used_percent_code_qualifiers and to use
6330 b4_complain_at.
6331 * src/location.c, src/location.h (boundary_set_from_string): New global
6332 function.
6333 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6334 function.
6335 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6336 to b4_used_percent_code_qualifiers.
6337 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6338 function.
6339 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6340 (lineno): Rename to...
6341 (out_lineno): ... this so I don't misunderstand it again.
6342 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6343 here; these newlines are in the input but not the output file.
6344 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6345 (at_directive_perform): ... this new static function, and add handling
6346 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6347 directives.
6348 * tests/input.at (Reject bad %code qualifiers): Update test output with
6349 locations and extend.
6350
6351 * tests/output.at (Output file name: [, Output file name: ]): Remove
6352 bogus comment about these tests failing.
6353
1c7b7e1d
JD
63542007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6355
6356 Clean up b4_check_percent_code_qualifiers a little.
6357 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6358 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6359 documentation and add examples.
6360 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6361 qualifiers here.
6362
08af01c2
JD
63632007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6364
6365 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6366 unreliable -- especially when they're hidden inside another macro.
6367 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6368 data/c.m4: Remove m4_divert(-1).
6369 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6370 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6371 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 6372 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
6373 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6374 pushed and popped by m4sugar, should be first on the stack.
6375
6376 Provide warn, complain, and fatal function callbacks to the skeletons.
6377 This provides more flexibility than m4_fatal, improves the error
6378 message format, and captures messages for translation. Discussed
6379 starting at
6380 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6381 * data/bison.m4 (b4_error): New, invoked by...
6382 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6383 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6384 directives. Because these M4 macros might be called when the current
6385 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6386 the previous removal of uses of m4_divert, which caused trouble.
6387 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6388 m4_fatal to report unrecognized %code qualifiers.
6389 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6390 push parser requests.
6391 * data/glr.c: Use b4_complain instead of m4_fatal to report
6392 non-deterministic push parser requests.
6393 Update @output usage to @output(...@) form.
6394 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6395 report missing %defines. Update @output usage to @output(...@) form.
6396 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6397 @output(...@) form.
6398 * src/main.c (main): Invoke skel_scanner_free.
6399 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6400 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6401 obstack_for_string from flex-scanner.h.
6402 (YY_DECL): Use to declare skel_lex static.
6403 (decode_at_digraphs): Remove; now handled in the new
6404 SC_AT_DIRECTIVE_ARG start condition.
6405 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6406 functions.
6407 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6408 at_directive_argv): New static globals.
6409 (INITIAL): Use fail_for_invalid_at.
6410 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6411 recognize the start of a generalized `@directive(...@)' form and
6412 start...
6413 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6414 directive args (using the new obstack_for_string), to decode the
6415 contained @ diagraphs, and to perform the directive. It recognizes
6416 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6417 @output(...@).
6418 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6419 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6420 `@,'.
6421 (scan_skel): Initialize obstack_for_string on the first call.
6422 (skel_scanner_free): New function to free obstack_for_string.
6423 * tests/input.at (Reject bad %code qualifiers): Update test output.
6424
8e0a5e9e
JD
64252007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6426
6427 Consolidate the 4 prologue alternative directives (%code, %requires,
6428 %provides, and %code-top) into a single %code directive with an
6429 optional qualifier field. Discussed at
6430 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6431 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6432 alternatives.
6433 * doc/bison.texinfo (Prologue Alternatives): Update.
6434 (Decl Summary): Update to %code "requires" and %code "provides".
6435 (Calc++ Parser): Update to %code "requires".
148d66d8 6436 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
6437 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6438 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6439 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6440 which are skeleton-specific.
6441 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6442 declare what %code qualifiers it supports and to complain if any other
6443 qualifiers were used in the grammar.
6444 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6445 and b4_user_code([b4_percent_code_provides]) in place of
6446 b4_user_requires and b4_user_provides.
6447 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6448 Add b4_user_code([b4_percent_code_top]) and
6449 b4_user_code([b4_percent_code]).
6450 Invoke b4_check_percent_code_qualifiers.
6451 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6452 PERCENT_REQUIRES): Remove.
6453 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6454 %requires. Rewrite the %code RHS as the unqualified form defining the
6455 muscle b4_percent_code. Add another RHS for the qualified %code form,
6456 which defines muscles of the form b4_percent_code_QUALIFIER and the
6457 b4_used_percent_code_qualifiers muscle.
6458 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6459 PERCENT_REQUIRES): Remove.
6460 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6461 %code "requires" and %code "provides".
6462 * tests/input.at (Reject bad %code qualifiers): New.
6463
95021767
JD
64642007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6465
6466 Use the new code_props interface for destructors and printers.
6467 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6468 printer_location members, and change the type of the destructor and
6469 printer members to code_props.
6470 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6471 symbol_printer_get, semantic_type_destructor_set,
6472 semantic_type_printer_set, default_tagged_destructor_set,
6473 default_tagless_destructor_set, default_tagged_printer_set,
6474 default_tagless_printer_set): Use code_props in arguments and return
6475 types in place of char const * and location.
6476 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6477 since the locations are now contained in the return of
6478 symbol_destructor_get and symbol_printer_get.
6479 * src/output.c (symbol_destructors_output, symbol_printers_output):
6480 Replace with...
6481 (symbol_code_props_output): ... this to eliminate duplicate code.
6482 (output_skeleton): Update to use symbol_code_props_output.
6483 * src/reader.c (symbol_should_be_used): Update use of
6484 symbol_destructor_get.
6485 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6486 Update uses of the various _destructor_set and _printer_set functions.
6487 * src/symtab.c: (default_tagged_destructor_location,
6488 default_tagless_destructor_location, default_tagged_printer_location,
6489 default_tagless_printer_location): Remove since we...
6490 (default_tagged_destructor, default_tagless_destructor,
6491 default_tagged_printer, default_tagless_printer): ... change the type
6492 of these to code_props.
6493 (symbol_new, semantic_type_new, symbol_destructor_set,
6494 semantic_type_destructor_set, symbol_destructor_get,
6495 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6496 symbol_check_alias_consistency, default_tagged_destructor_set,
6497 default_tagless_destructor_set, default_tagged_printer_set,
6498 default_tagless_printer_set): Update.
6499 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6500 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6501 code_props members.
6502 (symbol_print): Use SYMBOL_CODE_PRINT.
6503
f6857bbf
JD
65042007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6505
6506 Use the new code_props interface for rule actions.
6507 * src/symlist.h (symbol_list): Replace action, action_location, and
6508 used members with a code_props action_props member.
6509 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6510 grammar_midrule_action, grammar_current_rule_merge_set,
6511 grammar_current_rule_symbol_append, packgram): Update.
6512 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6513 * src/scan-code.l (handle_action_dollar): Update.
6514 (translate_rule_action): Remove, no longer used.
6515 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6516
7c0c6181
JD
65172007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6518
6519 Use the new code_props interface in parse-gram.y.
6520 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6521 Update all uses of translate_* functions to use the new code_props
6522 interface and to use gram_scanner_last_string_free and
6523 code_scanner_last_string_free where possible.
6524 (grammar_declaration): symbol_list_destructor_set and
6525 symbol_list_printer_set now perform the translation, so don't do it
6526 here. Use gram_scanner_last_string_free where possible.
6527 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6528 translate_code): Remove, no longer used.
6529 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6530 symbol_list_printer_set): Perform code translation here rather than
6531 depending on the caller to do so.
6532
6533 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6534 * src/scan-gram.h (gram_last_string): Remove declaration.
6535 * src/scan-gram.l (last_string): Declare it static.
6536
28e52c0d
JD
65372007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6538
6539 Encapsulate code properties and related functionality for the various
6540 destructors, printers, and actions into a code_props structure and
6541 interface. This patch merely implements code_props in scan-code.h and
6542 scan-code.l. Future patches will rewrite other modules to use it.
6543 Discussed starting at
6544 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6545 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6546 consistently initialize const structs that have an empty location
6547 field.
6548 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6549 to ensure consistency.
6550 * src/scan-code.h (code_props): New structure.
6551 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6552 function, macro, and const global variable for initializing a
6553 code_props with no code.
6554 (code_props_plain_init, code_props_symbol_action_init,
6555 code_props_rule_action_init, code_props_translate_code): The rest of
6556 the new code_props functional interface. Among other things, the init
6557 functions set the code_props kind field so that
6558 code_props_translate_code will know whether to behave like
6559 translate_symbol_action, translate_rule_action, or translate_code.
6560 These old translate functions must remain until all other modules are
6561 updated to use the new code_props interface.
6562 (code_scanner_last_string_free): New function similar to
6563 gram_scanner_last_string_free.
6564 (code_scanner_free): Add documentation.
6565 * src/scan-code.l: Implement the new interface.
6566 (code_lex): Make it static, add a code_props* argument, and remove the
6567 rule argument.
6568 (last_string): New static global similar to the one in scan-gram.l.
6569 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6570 instead of rule.
6571 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6572 code_props since Bison may one day use this information for destructors
6573 and printers.
6574 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6575 (handle_action_dollar): Use symbol_list_n_get and set used flag
6576 directly since symbol_list_n_used_set is removed.
6577 (translate_action): Add a code_props* argument and remove the rule,
6578 action, and location arguments. Pass the code_props* on to code_lex.
6579 (translate_rule_action, translate_symbol_action, translate_code):
6580 Rewrite as wrappers around the new code_props interface.
6581 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6582 it would eventually need to break the encapsulation of code_props.
6583
96034983
JD
65842007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6585
6586 * etc/.cvsignore: New.
6587
945e396c
JD
65882007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6589
6590 Add maintainer-push-check to run maintainer-check using push parsing in
6591 place of pull parsing where available.
6592 * Makefile.am (maintainer-push-check): New.
6593 * data/bison.m4 (b4_use_push_for_pull_if): New.
6594 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6595 appropriately based on their existing values.
6596 (yypush_parse): Don't print push-parser-specific diagnostics if push
6597 parsing is being used in place of pull parsing.
6598 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6599 push.c.
6600 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6601 variable, and insert b4_use_push_for_pull_flag into muscles.
6602 * tests/Makefile.am (maintainer-push-check): New.
6603
7d596384
JD
66042006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6605
6606 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6607 (whether successful or failed) so that yypush_parse can be invoked
6608 again to start a new parse using the same yypstate.
6609 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
6610 check multiple yypull_parse invocations on the same yypstate. For pull
6611 mode, extend to check multiple yyparse invocations.
6612 (Exploding the Stack Size with Alloca): Extend to try with
6613 %push-pull-parser.
6614 (Exploding the Stack Size with Malloc): Likewise.
6615
6616 * tests/calc.at (Simple LALR Calculator): Don't specify
6617 %skeleton "push.c" since %push-pull-parser implies that now.
6618 * tests/headers.at (export YYLTYPE): Don't check for the push
6619 declarations. Otherwise, this test case can't be used to see if push
6620 mode can truly emulate pull mode.
6621 * tests/input.at (Torturing the Scanner): Likewise.
6622 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
6623 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
6624 AT_YACC_IF, which now includes the case of push mode since %skeleton
6625 need not be used for push mode. This will be more intuitive once
6626 push.c is renamed to yacc.c.
6627
7172e23e
JD
66282006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6629
6630 For push mode, convert yyparse from a macro to a function, invoke yylex
6631 instead of passing a yylexp argument to yypull_parse, and don't
6632 generate yypull_parse or yyparse unless %push-pull-parser is declared.
6633 Discussed starting at
6634 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
6635 * data/bison.m4 (b4_pull_if): New.
6636 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
6637 * data/push.c: Improve M4 quoting a little.
6638 (b4_generate_macro_args, b4_parenthesize): Remove.
6639 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
6640 any time a pull parser is requested.
6641 Don't #define this as a wrapper around yypull_parse. Instead, when
6642 both push and pull are requested, make it a function that does that
6643 same thing.
6644 (yypull_parse): If there's a b4_prefix, #define this to
6645 b4_prefix[pull_parse] when both push and pull are requested.
6646 Don't define this as a function unless both push and pull are
6647 requested.
6648 Remove the yylexp argument and hard-code yylex invocation instead.
6649 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
6650 %push-parser.
6651 * src/getargs.c (pull_parser): New global initialized to true.
6652 * getargs.h (pull_parser): extern it.
6653 * src/output.c (prepare): Insert pull_flag muscle.
6654 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
6655 (prologue_declaration): Set both push_parser and pull_parser = true for
6656 %push-pull-parser. Set push_parser = true and pull_parser = false for
6657 %push-parser.
6658 * src/scan-gram.l: Don't accept %push_parser as an alternative to
6659 %push-parser since there's no backward-compatibility concern here.
6660 Scan %push-pull-parser.
6661 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
6662 instead of %push-parser.
6663 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
6664 prototype it in the module that calls yyparse.
6665 * tests/input.at (Torturing the Scanner): Likewise.
6666 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
6667
2e7944cb
JD
66682006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
6669
6670 Update etc/bench.pl. Optimize push mode a little (the yyn change
6671 deserves most of the credit).
6672 * Makefile.am (SUBDIRS): Add etc subdirectory.
6673 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
6674 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
6675 yytoken, yyval, and yyloc declarations to...
6676 (yyparse or yypush_parse): ... here to improve performance. For
6677 yypush_parse invocations after the first, be sure to assign yyn its old
6678 value again.
6679 (yypstate_new): Don't bother initializing the yyresult field since the
6680 initial value isn't used.
6681 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
6682 remove the #define that, in push mode, set it to yyps->NAME.
6683 * etc/Makefile.am: New.
6684 * etc/bench.pl: Remove and build it instead from...
6685 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
6686 "tests/bison" from the build directory by default rather than just
6687 invoking "bison" from $PATH.
6688 (calc_grammar): Update push parser code: don't declare yylval globally,
6689 don't define yyparse_wrapper, and don't #define yyparse.
6690 (bench_grammar): Update to check all working combinations of yacc.c,
6691 push.c, impure, pure, pull, and push.
6692
c3d50342
JD
66932006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6694
6695 For push mode, add pull wrappers around yypush_parse.
6696 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
6697 (yypull_parse): New function wrapping yypush_parse.
6698 (yyparse): New #define wrapping yypull_parse.
6699 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
6700 is declared.
6701 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
6702 prototype yylex in the module that calls yyparse, and don't prototype
6703 yyparse there. Otherwise, the yyparse expansion won't compile.
6704 * tests/input.at (Torturing the Scanner): Likewise.
6705
94ebeba5
JD
67062006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6707
6708 Enable push parsers to operate in impure mode. Thus, %push-parser no
6709 longer implies %pure-parser. The point of this change is to move
6710 towards being able to test the push parser code by running the entire
6711 test suite as if %push-parser had been declared.
6712 * data/push.c (yypush_parse): For impure mode, remove the
6713 yypushed_char, yypushed_val, and yypushed_loc arguments.
6714 Instead, declare these as local variables initialized to the global
6715 yychar, yylval, and yylloc.
6716 For the first yypush_parse invocation only, restore the initial values
6717 of these global variables when it's time to read a token since they
6718 have been overwritten.
6719 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
6720 %push-parser.
6721 * tests/calc.at (Simple LALR(1) Calculator): Always declare
6722 %pure-parser along with %push-parser since this test case was designed
6723 for pure push parsers.
6724 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
6725 (AT_YACC_OR_PUSH_IF): New.
6726 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
6727 add a note that it's still wrong for some cases (as it has been for a
6728 while).
6729 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
6730 %push-parser no longer implies %pure-parser.
6731
a0633178
JD
67322006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6733
6734 Remove some unnecessary differences between the pull parser code and
6735 the push parser code. This patch enables yynerrs in push mode.
6736 * data/push.c: Reformat M4 a little.
6737 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
6738 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
6739 because push mode is on. Instead, if pure mode is on, move yynerrs
6740 to...
6741 (b4_declare_parser_state_variables): ... here.
6742 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
6743 to yyps->NAME so it can be used in yypush_parse.
6744 (yypush_parse): Don't omit uses of yynerrs in push mode.
6745
8646b6a3
JD
67462006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6747
6748 Fix bug such that the first pushed token's value and location are
6749 sometimes overwritten (sometimes by %initial-action) before being used.
6750 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
6751 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
6752 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
6753 more closely mimic the pull parser logic.
6754 Don't copy the pushed token to yychar, yylval, and yylloc until it's
6755 time to read a token, which is after any initialization of yylval and
6756 yylloc.
6757 (gottoken): Rename label to...
6758 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6759 user namespace.
6760
9baf4d74
JD
67612006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6762
6763 Rearrange initialization of the parser state variables so that the
6764 skeleton doesn't have to have a copy for pull mode and another for push
6765 mode. This patch also fixes at least a bug such that yylloc was not
6766 initialized (with b4_location_initial_line and
6767 b4_location_initial_column) upon calling yypush_parse. However, that
6768 initialization now overwrites the first token's location;
6769 %initial-action assigning @$ already did the same thing, and both bugs
6770 will be fixed in a later patch.
6771 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6772 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6773 yyss, yyvs, yyls, and yystacksize.
6774 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6775 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6776 yylsp.
6777 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6778 yyps->NAME so it can be used in yypush_parse.
6779 (yyparse or yypush_parse): For yypush_parse, don't print the
6780 "Starting parse" diagnostic for invocations after the first.
6781 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6782 yypush_parse, only do it for the first invocation.
6783 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6784 initialization to occur in yypush_parse but only on the first
6785 invocation.
6786
23522164
JD
67872006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6788
6789 * data/push.c: Add CPP guards around push parser declarations in both
6790 the header and the code file.
6791 In the code file, move the push parser declarations to the same place
6792 they appear in the header file.
6793 Clean up the M4 some, especially the inconsistent underquoting in
6794 some b4_c_function_def and b4_c_function_decl uses.
6795
bb010fe5
JD
67962006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6797
6798 Encapsulate the push parser state variables into an M4 macro so the
6799 push skeleton doesn't have to list them again for pull mode's yyparse.
6800 For push mode, remove yypush_parse's local equivalents of these
6801 variables to eliminate unnecessary copying between the two sets at
6802 run-time. This patch also fixes at least a bug related to multiple
6803 %initial-action invocations in push mode.
6804 * data/push.c (b4_declare_parser_variables): Rename to...
6805 (b4_declare_scanner_communication_variables): ... this for clarity and
6806 update both uses.
6807 (b4_declare_yyparse_variables): Remove and move its contents to the one
6808 spot where it was invoked.
6809 (b4_declare_parser_state_variables): New macro containing the parser
6810 state variables required by push mode.
6811 (struct yypstate): Replace all fields but yynew with
6812 b4_declare_parser_state_variables.
6813 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6814 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6815 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6816 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6817 parser state variable declarations with
6818 b4_declare_parser_state_variables.
6819 Don't initialize parser state variables when calling yypush_parse since
6820 yypstate_new already does that.
6821 Invoke the user's initial action only upon the first yypush_parse
6822 invocation.
6823 Remove all code that copies between the local parser state variables
6824 and the yypstate.
6825
2d212f8c
JD
68262006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6827
6828 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6829 prevent a name collision in a future patch where these names will
6830 sometimes be #define'd.
6831 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6832 since it no longer has the same name as the existing argument.
6833 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6834
e6e704dc
JD
68352006-12-19 Paolo Bonzini <bonzini@gnu.org>
6836 and Joel E. Denny <jdenny@ces.clemson.edu>
6837
6838 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6839 that the argument is case-insensitive, and there's no `=' here.
6840 For the %skeleton entry, mention that %language is better.
6841 (Bison Options): Likewise for --language and --skeleton. Move the
6842 --skeleton entry so that the `Tuning the parser' section is sorted
6843 alphabetically on long options.
6844 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6845 %language directive in detail here; cross-reference the %language
6846 documentation instead.
6847 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6848 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 6849 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
6850 * examples/extexi (normalize): Instead of replacing every %require
6851 argument with the current Bison version, just substitute for
6852 `@value{VERSION}'. This guarantees that we're testing what actually
6853 appears in the documentation.
6854 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6855 rather than `@VERSION@'.
6856
0e021770
PE
68572006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6858
fd575f05
PE
6859 * NEWS: Reword the %language news a bit, and put it earlier.
6860
0e021770
PE
6861 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6862 Rewrite to simplify the logic.
6863 (language_argmatch): Likewise.
fd575f05
PE
6864 (program_name): We now own this var.
6865 * src/getargs.h (struct bison_language): Use char[] rather than
6866 const char *.
0e021770
PE
6867
6868 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6869 Java is supported.
6870 * src/complain.c (program_name): Remove decl; no longer needed.
6871 * src/main.c (program_name): Remove; now belongs to getargs.
6872
68732006-12-18 Paolo Bonzini <bonzini@gnu.org>
6874
6875 * NEWS: Document %language.
6876
6877 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6878
6879 * data/c-skel.m4, data/c++-skel.m4: New files.
6880 * data/glr.c: Complain on push parsers.
6881
6882 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6883 over %skeleton.
148d66d8 6884 (Decl Summary): Document %language and %skeleton.
0e021770
PE
6885 (Command line): Document -L.
6886
6887 * examples/extexi: Rewrite %require directive.
6888 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6889
6890 * src/files.c (compute_exts_from_gc): Look in language structure
6891 for .y extension.
6892 (compute_file_name_parts): Check whether .tab should be added.
6893 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6894 (language, skeleton_arg, language_argmatch): New.
6895 (long_options): Add --language.
6896 (getargs): Use skeleton_arg, add -L/--language.
6897 * src/getargs.h: Include location.h.
6898 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6899 * src/output.c (prepare): Pick default skeleton from struct language.
6900 Don't dispatch C skeletons here.
6901 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6902 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6903 * src/scan-gram.l ("%language"): New rule.
6904
6905 * tests/calc.at: Test %skeleton and %language.
6906 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6907 (AT_GLR_IF): Look for %skeleton "glr.cc".
6908 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6909 (AT_YACC_IF): Reject %language.
6910
5691bf57
PE
69112006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6912
db06f0ce
PE
6913 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6914 since it wasn't used; only the typedef name 'semantic_type' is needed.
6915 Also, omit trailing white space.
6916
5691bf57
PE
6917 * bootstrap: Sync from coreutils.
6918 (gnulib_extra_files): Add build-aux/announce.gen.
6919 (slurp): Adjust .gitignore files like .cvsignore files.
6920 * build-aux/announce-gen: Remove from CVS, since bootstrap
6921 now creates this.
6922
791934e4
JD
69232006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6924
6925 Make %push-parser imply %pure-parser. This fixes several bugs; see
6926 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6927 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6928 pure_parser = true.
6929 * data/push.c: Don't bother testing b4_push_if when deciding whether
6930 to expand b4_declare_parser_variables globally.
6931 (yypush_parse): Likewise in here.
6932
6933 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6934 (yy_reduce_print): Reformat M4 for readability.
6935
ee5abb37
JD
69362006-12-15 Bob Rossi <bob@brasko.net>
6937 and Joel Denny <jdenny@ces.clemson.edu>
6938
6939 * data/push.c (yypstate): Add typedef, and update all uses of
6940 struct yypstate to just yypstate.
6941 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6942
16ca01f9
JD
69432006-12-14 Bob Rossi <bob@brasko.net>
6944
6945 * data/push.c (yypush_parse): Declare prototype regardless of
6946 %locations option.
6947
ab8e7e1a
JD
69482006-12-14 Bob Rossi <bob@brasko.net>
6949
6950 * data/push.c (yyparse): Remove the prototype and the #define when in
6951 push-parser mode.
6952
9bf32be3
JD
69532006-12-13 Bob Rossi <bob@brasko.net>
6954
6955 * data/push.c (yypstate_init): Rename to...
6956 (yypstate_new): ... this and use b4_c_function_def.
6957 (yypstate_delete): New.
6958 (yypush_parse): Change parameters yynval and yynlloc to be const.
6959 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6960 yypstate_delete functions.
6961
f02e2948
JD
69622006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6963
6964 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6965 strange test case titles. Reported by Bob Rossi.
6966
38eb7751
PE
69672006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6968
6969 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6970 of potential ambiguities in GLR grammers.
6971
bd9d212b
JD
69722006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6973
6974 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6975 `bison ', use m4_index instead of m4_substr since chopping up a string
6976 containing M4-special characters causes problems here.
6977
6978 Fix a couple of bugs related to special characters in user-specified
6979 file names, and make it easier for skeletons to compute output file
6980 names with the same file name prefix as Bison-computed output file
6981 names.
6982 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6983 b4_parser_file_name and b4_spec_defines_file instead of
6984 @output_parser_name@ and @output_header_name@, which are now redundant.
6985 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6986 b4_parser_file_name, b4_spec_defines_file, and the new
6987 @basename(FILENAME@) instead of @output_parser_name@ and
6988 @output_header_name@, which inappropriately escaped the file names as
6989 C string literals.
6990 * src/files.c (all_but_ext): Remove static qualifier.
6991 (compute_output_file_names): Move `free (all_but_ext)' to...
6992 (output_file_names_free): ... here since all_but_ext is needed later.
6993 * src/files.h (all_but_ext): Extern.
6994 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6995 exactly what MUSCLE_INSERT_STRING used to do.
6996 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6997 characters are escaped properly.
6998 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6999 all_but_ext.
7000 For pkgdatadir muscle, maintain previous functionality by using
7001 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7002 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7003 digraphs would never be expanded. Hopefully no one has M4-special
7004 characters in his Bison installation path.
7005 * src/scan-skel.l: Don't parse @output_header_name@ and
7006 @output_parser_name@ anymore since they're now redundant.
7007 In @output, use decode_at_digraphs.
7008 Parse a new @basename command that invokes last_component.
7009 (decode_at_digraphs): New.
7010 (BASE_QPUTS): Remove unused.
7011 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7012 (Output file name): New tests.
7013
3f7ca628
JD
70142006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7015
7016 Warn about output files that are generated by the skeletons and that
7017 conflict with other output files.
7018 * data/glr.c: Don't generate the header file here when glr.cc does.
7019 * src/files.c (file_names, file_names_count): New static globals.
7020 (compute_output_file_names): Invoke output_file_name_check for files
7021 not generated by the skeletons and remove existing checks.
7022 (output_file_name_check): New function that warns about conflicting
7023 output file names.
7024 (output_file_names_free): Free file_names.
7025 * src/files.h (output_file_name_check): Declare.
7026 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7027 the skeletons.
7028 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7029 (Conflicting output files): New tests.
7030
178e123e
PE
70312006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7032
7033 * doc/bison.texinfo: Fix a couple of typos.
7034
70352006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
7036
7037 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7038 Rename to...
7039 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7040 update all uses.
7041 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7042 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7043 local pv.
7044 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7045 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7046
ea17f233
JD
70472006-12-07 Bob Rossi <bob@brasko.net>
7048 and Joel Denny <jdenny@ces.clemson.edu>
7049
7050 * data/push.c (yypvarsinit): Change return type from void* to struct
7051 yypvars*. No longer cast to void* on return.
7052 (struct yypvars): Remove yylen since it need not be remembered between
7053 yypushparse invocations.
7054 (yypushparse): Don't copy between yylen and pv->yylen.
7055
55a30bda
JD
70562006-12-05 Bob Rossi <bob@brasko.net>
7057
7058 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7059 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7060 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7061 (struct yypvars): Remove b4_declare_parser_variables.
7062 (yypvarsinit): Remove init code for removed variables.
7063 (global scope): Do not declare b4_declare_parser_variables if
7064 push or pure mode.
7065 (yypushparse): Add b4_declare_parser_variables.
7066 Init new local variables, and remove init code for removed
7067 yypvars variables.
7068 (yyparse): Delete.
7069 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7070 and yyparse for other modes.
7071 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7072 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7073 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7074 (AT_PURE_LEX_IF): True if pure or push parser.
7075
85894313
JD
70762006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7077
7078 Document Yacc prologue alternatives and default %destructor's and
7079 %printer's as experimental. Don't mention Java yet. Discussed at
7080 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7081 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7082 (2.3a): Annotate this entry to say the old forms of these features were
7083 also experimental.
7084 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 7085 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
7086 of Java (we'll want this back eventually).
7087
02975b9a
JD
70882006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7089
7090 Support a file name argument to %defines. Deprecate `=' in
7091 %file-prefix, %name-prefix, and %output. Discussed at
7092 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7093 * NEWS (2.3a+): Mention.
148d66d8 7094 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
7095 form of %defines, and remove `=' from entries for %file-prefix,
7096 %name-prefix, and %output.
7097 * src/parse-gram.y (prologue_declaration): Implement.
7098 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7099 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7100 all but one occurrence of %name-prefix.
7101 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7102 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7103 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7104 occurrence of each of %file-prefix and %output. Add check for %defines
7105 with argument.
7106 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7107 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7108 Remove the `=' from %output.
7109
287b314e
JD
71102006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7111
7112 Don't escape $ in test case titles since Autoconf 2.61 now does that
7113 correctly.
7114 * tests/actions.at (Default %printer and %destructor are not for error
7115 or $undefined): Here.
7116 (Default %printer and %destructor are not for $accept): Here.
7117 * tests/input.at (Invalid $n and @n): Here.
7118
3ebecc24
JD
71192006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7120
7121 Rename <!> to <>. Discussed starting at
7122 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7123 * NEWS (2.3a+): Update.
148d66d8 7124 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
7125 Update.
7126 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7127 * src/scan-gram.l (INITIAL): Implement.
7128 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7129 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7130 comment.
7131 * tests/actions.at (Default tagless %printer and %destructor,
7132 Default tagged and per-type %printer and %destructor,
7133 Default %printer and %destructor are not for error or $undefined,
7134 Default %printer and %destructor are not for $accept,
7135 Default %printer and %destructor for mid-rule values): Update.
7136 * tests/input.at (Default %printer and %destructor redeclared,
7137 Unused values with default %destructor): Update.
7138
26b8a438
JD
71392006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7140
7141 Don't let %prec take a nonterminal.
7142 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7143 token.
7144 * tests/input.at (%prec takes a token): New test checking that %prec
7145 won't take a nonterminal.
7146
07c39ae9
JD
71472006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7148
405d53b7
JD
7149 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7150 it was double-quoted.
07c39ae9
JD
7151 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7152 grammar is maintained with Bison's highest standards.
7153 * src/getargs.c: Fix some typos in Doxygen comments.
7154
580b8926
JD
71552006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7156
7157 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7158 later. Reported by Paul Eggert in
7159 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7160 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7161 * src/scan-code.l (translate_action): Don't bother invoking
7162 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7163 (code_scanner_free): Instead of invoking
7164 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7165 which frees more.
7166 * src/scan-gram.l (gram_scanner_free): Likewise.
7167 * src/scan-skel.l (scan_skel): Likewise.
7168
4502eadc
JD
71692006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7170
7171 * src/files.c (tr): Change return type to void.
7172 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7173 has been called previously for the same key.
7174 (muscle_find): Return storage instead of value so that
7175 --enable-gcc-warnings doesn't produce warnings that the return discards
7176 const. aver that the value and storage are the same since storage
7177 could potentially be NULL when value is not.
7178 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7179 same as 0.
7180
7746c8f6
PE
71812006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7182
7183 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7184 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7185 us a slightly cleaner distribution, and also works.
7186 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7187 gnulib changes.
7188
eb095650
PE
71892006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7190 and Paul Eggert <eggert@cs.ucla.edu>
7191
7192 Don't let Bison leak memory except when it complains.
7193 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7194 (spec_defines_file, dir_prefix): Now char *, not const char *,
7195 since they are freed.
7196 * src/files.c: Likewise.
7197 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7198 Likewise.
7199 (tr): Now operates in-place. All uses changed.
7200 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7201 values.
7202 (compute_file_name_parts, compute_output_file_names): Don't store
7203 read-only data in variables that will be freed.
7204 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7205 src_extension, and header_extension.
7206 (output_file_names_free): New public function to free
7207 spec_verbose_file, spec_graph_file, spec_defines_file,
7208 parser_file_name, and dir_prefix.
7209 * src/getargs.c (getargs): Don't store read-only data in variables that
7210 will be freed.
7211 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7212 (which previously existed but was unused), and quotearg_free.
7213 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7214 * src/muscle_tab.c: Likewise.
7215 (muscle_entry): Make the value char const *,
7216 and add a new storage member that is char * and can be freed.
7217 (muscle_entry_free): New private function.
7218 (muscle_init): Use it instead of free.
7219 (muscle_insert, muscle_grow): Update and use new storage member.
7220 (muscle_code_grow): Free the string passed to muscle_grow
7221 since it's not needed anymore.
7222 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7223 add a new `char *code' member.
7224 ("{...}"): Declare semantic type as code.
7225 * src/scan-code.h (translate_rule_action):
7226 (translate_symbol_action, translate_code, translate_action): Return
7227 `char const *' rather than `char *' since external code should not free
7228 these strings.
7229 * src/scan-code.l: Likewise.
7230 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7231 which is "{...}" in the parser.
7232 * tests/Makefile.am (maintainer-check-valgrind): Set
7233 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7234 Valgrind.
7235 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7236 complain.
7237 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7238 expecting a non-zero exit status sets --leak-check=summary and
7239 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7240 this case, and we don't want to hear about it.
7241
ac564be4
PE
72422006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7243
7244 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7245 instead of from the template, to simplify configuration a bit.
7246 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7247 and m4/wint_t.m4, as they are needed with the latest gnulib.
7248
17bd8a73
JD
72492006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7250
7251 Disable unset/unused mid-rule value warnings by default, and recognize
7252 --warnings=midrule-values to enable them. Discussed starting at
7253 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7254 * NEWS (2.3a+): Mention.
7255 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7256 warnings): Add entry for midrule-values subargument.
7257 * src/reader.c (symbol_should_be_used): Don't return true just because
7258 the value is a set/used mid-rule value unless
7259 --warnings=midrule-values was specified.
7260 * tests/input.at (Unused values, Unused values before symbol
7261 declarations): Run tests with and without --warnings=midrule-values.
7262
7263 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7264 than LIST_FREE directly.
7265
89eb3c76
JD
72662006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7267
7268 Finish implementing --warnings=error, which should not be implied by
7269 --warnings=all (or by its synonyms -W and --warnings without
7270 subarguments).
7271 * src/complain.c (set_warning_issued): New function to report that
7272 warnings are being treated as errors and to record an error if so.
7273 Invoke...
7274 (warn_at, warn): ... here.
7275 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7276 "error - warnings are errors" does not appear above "all - all of the
7277 above".
7278 (getargs): For -W and --warnings without subarguments, don't let
7279 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7280 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7281
ba7560e2
JD
72822006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7283
7284 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7285 empty subargument list. For example: `bison --warnings= parser.y'.
7286
31283fc3
JD
72872006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7288
7289 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7290 the parser header file so that gcc doesn't warn.
7291
12e35840
JD
72922006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7293
7294 Split the default %destructor/%printer into two kinds: <*> and <!>.
7295 Discussed starting at
7296 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7297 * NEWS (2.3a+): Mention.
7298 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7299 previous change today related to mid-rules.
148d66d8 7300 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 7301 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
7302 (TYPE_TAG_ANY): Add as <*>.
7303 (TYPE_TAG_NONE): Add as <!>.
7304 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7305 for <*> and <!>.
7306 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7307 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7308 * src/symlist.c (symbol_list_default_new): Split into tagged and
7309 tagless versions.
7310 (symbol_list_destructor_set, symbol_list_printer_set): Split
7311 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7312 SYMLIST_DEFAULT_TAGLESS.
7313 * src/symlist.h: Update symbol_list_default*_new prototypes.
7314 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7315 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7316 * src/symtab.c (default_destructor, default_destructor_location,
7317 default_printer, default_printer_location): Split each into tagged and
7318 tagless versions.
7319 (symbol_destructor_get, symbol_destructor_location_get,
7320 symbol_printer_get, symbol_printer_location_get): Implement tagged
7321 default and tagless default cases.
7322 (default_destructor_set, default_printer_set): Split each into tagged
7323 and tagless versions.
7324 * src/symtab.h: Update prototypes.
7325 * tests/actions.at (Default %printer and %destructor): Rename to...
7326 (Default tagless %printer and %destructor): ... this, and extend.
7327 (Per-type %printer and %destructor): Rename to...
7328 (Default tagged and per-type %printer and %destructor): ... this, and
7329 extend.
7330 (Default %printer and %destructor for user-defined end token): Extend.
7331 (Default %printer and %destructor are not for error or $undefined):
7332 Update.
7333 (Default %printer and %destructor are not for $accept): Update.
7334 (Default %printer and %destructor for mid-rule values): Extend.
7335 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7336 (Unused values with default %destructor): Extend.
7337
f91b1629
JD
73382006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7339
7340 Don't apply the default %destructor/%printer to an unreferenced midrule
7341 value. Mentioned at
7342 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7343 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7344 like $@n instead of just @n so that the default %destructor/%printer
7345 logic doesn't see them as user-defined symbols.
7346 (symbol_is_dummy): Check for both forms of the name.
7347 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7348 name for which the midrule value is referenced in any action.
7349 * tests/actions.at (Default %printer and %destructor for mid-rule
7350 values): New test.
7351 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7352 for change to dummy symbol names.
7353
519d0004
JD
73542006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7355
7356 Warn about unset midrule $$ if the corresponding $n is used.
7357 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7358 $n usage.
7359 (packgram): Before invoking grammar_rule_check on any rule, make sure
7360 all actions have already been scanned in order to set `used' flags.
7361 Otherwise, checking that a midrule's $$ is set will not always work
7362 properly because the midrule check must forward-reference the midrule's
7363 parent rule.
7364 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7365 warning.
7366
a501eca9
JD
73672006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7368
7369 More improvements to the documentation of the prologue alternatives:
7370 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7371 Bison manual.
7372 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7373 some text to clarify the relative importance of the new directives and
7374 to show how these directives may be viewed as code labels.
7375
2cbe6b7f
JD
73762006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7377
7378 Similar to the recently removed %before-header, add %code-top as the
7379 alternative to the pre-prologue. Mentioned at
7380 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7381 Also, let the prologue alternatives appear in the grammar section.
7382 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7383 (prologue_declaration): Move the existing prologue alternatives to...
7384 (grammar_declaration): ... here and add %code-top.
7385 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7386
7387 Clean up and extend documentation for the prologue alternatives.
7388 * NEWS (2.3a+): Describe prologue alternatives.
7389 * doc/bison.texinfo (Prologue): Move discussion of prologue
7390 alternatives to...
7391 (Prologue Alternatives): ... this new section, and extend it to discuss
7392 all 4 directives in detail.
148d66d8
JD
7393 (Table of Symbols): Clean up discussion of prologue alternatives and
7394 add %code-top.
2cbe6b7f 7395
e557d3ea
JMG
73962006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7397
7398 DJGPP specific issues.
7399
7400 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7401 config.bat accordingly.
7402 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7403 * djgpp/config.site: Likewise.
7404
136a0f76
PB
74052006-10-16 Paolo Bonzini <bonzini@gnu.org>
7406
27bd5d67
PB
7407 Replace %*-header with %provides, %requires, %code. See discussion at
7408 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7409
136a0f76
PB
7410 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7411 (b4_user_start_header): Remove.
7412 * data/glr.c: Use new macros instead of b4_*start_header
7413 and b4_*end_header.
7414 * data/glr.cc: Likewise.
7415 * data/lalr1.cc: Likewise.
7416 * data/push.c: Likewise.
7417 * data/yacc.c: Likewise.
7418
7419 * doc/bison.texinfo: Remove %before-header, rename
7420 %{start,end,after}-header to %requires, %provides, %code.
7421
7422 * src/parse-gram.y: Likewise (also rename token names accordingly).
7423 * src/scan-gram.l: Likewise.
7424 * tests/actions.at: Likewise.
7425
10f429ef
PE
74262006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7427
7428 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7429 Problem reported by Joel E. Denny.
7430
74312006-10-14 Jim Meyering <jim@meyering.net>
7432
7433 (Sync from coreutils.)
7434 Work also when the working directory (with e.g. coreutils sources)
7435 is version controlled with git, rather than CVS.
7436 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7437 rather than CVS.
7438 In messages and comments, say e.g., "checked-out sources",
7439 rather than "CVS sources".
7440 (version_controlled_file): New function. Work for git as well as
7441 for CVS. Don't use grep's -q option.
7442 (slurp): Call it here, in place of CVS-specific code.
7443
c4bd5bf7
JD
74442006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7445
7446 Fix testsuite for ./configure --enable-gcc-warnings:
7447 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7448 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7449 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7450 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7451 * test/regression.at (Diagnostic that expects two alternatives):
7452 Likewise.
7453
46356ea4
PE
74542006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7455
231ed89a
PE
7456 * bootstrap.conf (gnulib_modules): Add config-h.
7457 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7458 worry about HAVE_CONFIG_H.
7459 * lib/abitset.c: Likewise.
7460 * lib/bitset.c: Likewise.
7461 * lib/bitset_stats.c: Likewise.
7462 * lib/bitsetv-print.c: Likewise.
7463 * lib/bitsetv.c: Likewise.
7464 * lib/ebitset.c: Likewise.
7465 * lib/get-errno.c: Likewise.
7466 * lib/lbitset.c: Likewise.
7467 * lib/subpipe.c: Likewise.
7468 * lib/timevar.c: Likewise.
7469 * lib/vbitset.c: Likewise.
7470 * lib/bitset.c: Include "bitset.h" first, to test interface.
7471 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7472 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7473 * lib/bitsetv.c: Include "bitsetv.h" first.
7474 * lib/get-errno.c: Include "get-errno.h" first.
7475 * m4/.cvsignore: Add config-h.m4.
7476 * tests/actions.at (Default %printer and %destructor for ...):
7477 Adjust expected line numbers in output to reflect removal of #if
7478 HAVE_CONFIG_H lines.
7479 * tests/glr-regression.at (Missed %merge type warnings when ...):
7480 Likewise.
7481 * tests/regression.at (Braced code in declaration in rules section):
7482 Likewise.
7483 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7484 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7485 Include <config.h> unconditionally.
7486
46356ea4
PE
7487 * bootstrap: Sync from coreutils, as follows:
7488
7489 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7490
7491 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7492 variable was sometimes used without being initialized. This
7493 messed up the installation of the INSTALL file in some cases.
7494
7495 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7496
7497 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7498 --copy. Inspired by a suggestion from Bruno Haible.
7499
7500 2006-10-03 Jim Meyering <jim@meyering.net>
7501
7502 * bootstrap: Undo last change to this file, since now gnulib-tool
7503 sticks with the automake default in generating dependencies.
7504
dd4bf078
PE
75052006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7506
cf2a5f7c
PE
7507 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7508 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7509
7510 * doc/bison.1: Add copyright notice.
7511
7512 * data/glr.c: Don't include <stdarg.h>; not used.
7513
35fe0834
PE
7514 * NEWS: The -g and --graph options now output graphs in Graphviz
7515 DOT format, not VCG format.
7516 * doc/bison.1: Likewise.
7517 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
7518 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7519 of this change in
7520 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
7521 * TODO: Remove Graphviz entry.
7522 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7523 remove vcg.c, vcg.h, vcg_defaults.h.
7524 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7525 * src/graphviz.c, src/graphviz.h: New files.
7526 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7527 * src/files.h: Make comment more generic.
7528 * src/main.c (main): Likewise.
7529 * src/print_graph.h: Likewise.
7530 * src/getargs.c (usage): Make usage description more generic.
7531 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7532 (static_graph, fgraph): Remove. All uses changed to pass
7533 arguments instead of sharing a static var.
7534 (print_core, print_actions, print_state, print_graph):
7535 Output graphviz format rather than VCG format.
7536 * tests/.cvsignore: Remove *.vcg; add *.dot.
7537 * tests/output.at: Expect *.dot files, not *.vcg files.
7538
dd4bf078
PE
7539 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7540 accommodates the 2006-10-08 change.
7541
efdd7421
PE
75422006-10-11 Bob Rossi <bob@brasko.net>
7543
7544 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7545 (b4_yyssa, b4_yyerror_range): New macros.
7546 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7547 (yypvarsinit): Remove init of removed fields.
7548 (yypushparse): Remove use of removed fields; use new macros instead.
7549
96a1981a
PE
75502006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7551
7552 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7553 in a push parser. Reindent slightly to match yacc.c better.
7554
75552006-10-11 Bob Rossi <bob@brasko.net>
7556
46356ea4
PE
7557 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7558 yymsg_alloc fields.
7559 (yypvarsinit, yypushparse): Remove init of removed fields.
7560 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 7561
c1630a8b
PE
75622006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7563
7564 * THANKS: Add Paolo Bonzini and Bob Rossi.
7565
90b9908d
PB
75662006-10-08 Paolo Bonzini <bonzini@gnu.org>
7567
7568 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7569 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7570 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7571 b4_define_user_cde and uses): Remove.
7572 (b4_comment, b4_prefix, b4_sync_start): New.
7573 * data/bison.m4: New file, with most of the content removed from c.m4.
7574 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7575 * src/output.c (output_skeleton): Pass bison.m4.
7576 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7577 only if specified.
7578
cf806753
PE
75792006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7580
7581 Fix test failure reported by Tom Lane in
7582 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7583 and try to make such failures easier to catch in the future.
7584 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7585 that's now the caller's responsibility.
7586 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7587 Set yychar = YYEOF if it's negative.
7588 * tests/actions.at (yylex): Abort if asked to read past EOF.
7589 * tests/conflicts.at (yylex): Likewise.
7590 * tests/cxx-type.at (yylex): Likewise.
7591 * tests/glr-regression.at (yylex): Likewise.
7592 * tests/input.at (yylex): Likewise.
7593 * tests/regression.at (yylex): Likewise.
7594 * tests/torture.at (yylex): Likewise.
7595
0e2f006a
PE
75962006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7597
7598 Fix problems with translating English-language diagnostics.
7599 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7600 respect to bison-runtime pot generation. The YY_ stuff
7601 wasn't being captured.
7602 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7603 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7604 * runtime-po/POTFILES.in: Add data/push.c.
7605
e3ddc1e3
PE
76062006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7607
7608 Merge bootstrap changes from coreutils.
7609
7610 2006-09-28 Jim Meyering <jim@meyering.net>
7611
7612 Automatically generated dependencies are important even
7613 when all of the sources in a directory come from gnulib.
7614 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
7615 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
7616
7617 2006-09-23 Jim Meyering <jim@meyering.net>
7618
7619 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
7620
7621 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7622
7623 * bootstrap: Add support for --force.
7624 (usage): New function. Describe usage less tersely.
7625 (CVS_only_file): New var.
7626
01e972b3
PE
76272006-09-21 Paul Eggert <eggert@cs.ucla.edu>
7628
7629 * data/push.c (YYPUSH_MORE): Make it an enum instead.
7630 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
7631 Adjust white space and comments to match GNU style better.
7632
c63d3e90
PE
76332006-09-20 Bob Rossi <bob@brasko.net>
7634
7635 * data/push.c (yyresult_get): Remove function.
7636 (YYPUSH_MORE): Add #define.
7637 (yypushparse): Modify return value.
7638
e70f46d1
PE
76392006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7640
7641 * stamp-h.in: Remove; no longer needed.
7642 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
7643 Remove config.h, config.hin, intl (no longer created).
7644 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
7645 stamp-h1.
7646
7647 Sync bootstrap from coreutils, as follows:
7648
7649 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
7650
7651 * bootstrap (symlink_to_gnulib): New function.
7652 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
7653 to copies-of-gnulib.
7654 (cp_mark_as_generated, slurp, gnulib_files):
7655 Avoid making a copy if it's the same as the old version.
7656 (gnulib_files): Add support for this variable (used by Bison).
7657
a92be413
PE
76582006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7659
7660 * src/getargs.c (usage): Rework to use conventions similar to
7661 coreutils, to make translation a bit easier and the code a bit
7662 smaller. Problem reported by Tim Van Holder.
7663
4f82b42a
PE
76642006-09-15 Paul Eggert <eggert@cs.ucla.edu>
7665
3b2942e6
PE
7666 Use some of gnulib's new modules, taken from coreutils.
7667
7668 * bootstrap: Sync from coreutils, except add support for gnulib_files.
7669 * bootstrap.conf: New file.
7670 (gnulib_modules): Add configmake, inttypes, unistd.
7671 (XGETTEXT_OPTIONS): Add complain, complain_at,
7672 fatal, fatal_at, warn, warn_at, unexpected_end.
7673 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
7674 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
7675 (gl_EARLY): Add.
7676 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
7677 (gl_INIT): Add
7678 (GNULIB_AUTOCONF_SNIPPET): Remove.
7679 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
7680 the pickiest.
7681 * lib/.cvsignore: Add inttypes_.h.
7682 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
7683 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
7684 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
7685 no-longer-necessary initializations.
7686 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
7687 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
7688 use the unistd module.
7689 * src/system.h: Likewise.
7690 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
7691 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
7692 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
7693 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
7694 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
7695 * src/system.h: Include inttypes.h unconditionally, now that we
7696 use the inttypes module. Don't bother to include stdint.h, since
7697 inttypes.h now does that for us.
7698 (LOCALEDIR): Remove, now that we use the configmake module.
7699 * src/getargs.c: Include configmake.h.
7700 * src/main.c: Likewise.
7701 * src/output.c: Likewise.
7702 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
7703 not from $abs_top_builddir, since config.h moved.
7704
7705
4f82b42a
PE
7706 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
7707 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
7708
7709 * src/parse-gram.y (symbol_declaration): Don't put statements
7710 before declarations; it's not portable to C89.
7711 * src/scan-code.l (handle_action_at): Likewise.
7712
7713 * src/scan-code.l: Always initialize braces_level; the old code
7714 left it uninitialized and therefore had undefined behavior.
7715
7716 Don't attempt to redefine 'assert', since it runs afoul of
7717 systems where standard headers (mistakenly) include <assert.h>.
7718 Instead, define and use our own alternative, called 'aver'.
7719 * src/reader.c: Don't include assert.h, since we no longer
7720 use assert.
7721 * src/scan-code.l: Likewise.
7722 * src/system.h (assert): Remove, replacing with....
7723 (aver): New function, taking a bool arg. All uses changed.
7724 * src/tables.c (pack_vector): Ensure that aver arg is bool,
7725 not merely an integer.
7726
31c10e38
PE
77272006-09-15 Bob Rossi <bob@brasko.net>
7728
7729 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
7730 * data/c.m4 (YYPUSH): New.
7731 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
7732 * src/getargs.c (push_parser): New var.
7733 * src/getargs.h (push_parser): New declaration.
7734 * src/output.c (prepare): Add macro insertion of `push_flag'.
7735 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
7736 (prologue_declaration): Parse %push-parser.
7737 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
7738 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
7739 list of removed lines from the traces observed.
7740 (AT_CHECK_CALC_LALR): Added push parser tests.
7741
fa7b79c0
PE
77422006-09-13 Paul Eggert <eggert@cs.ucla.edu>
7743
21fe08ca
PE
7744 * NEWS: Version 2.3a.
7745 * configure.ac (AC_INIT): Likewise.
7746
e8ec4d9b
PE
7747 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
7748 "#define YYSTYPE int" that caused "make maintainer-check" to fail
7749 due to header ordering dependencies. I don't know why the #define
7750 was there.
7751
fa7b79c0
PE
7752 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
7753 runtime cost when YYDEBUG is not defined, and so that some tests
7754 that used to fail now work. Problem and initial suggestion by
7755 Paolo Bonzini.
7756 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7757 * data/glr.cc (b4_parser_class_name):
7758 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7759 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7760 (yydebug_) [YYDEBUG]: New member.
7761 (yycdebug_): Now defined only if YYDEBUG.
7762 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7763 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7764 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7765 if YYYDEBUG.
7766 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7767 Define only if YYDEBUG.
7768 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7769 set_debug_level.
7770 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7771 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7772 AT_CHECK_CALC_GLR_CC that are working now.
7773
4ec13d60
PE
77742006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7775
7776 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7777 We don't need them in glr.cc, and glr.c defines them.
7778 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7779 assumes that defining it to anything is the same as defining
7780 it to 1. Problem reported by Paolo Bonzini.
7781
8e1687ae
PE
77822006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7783
7784 * data/c.m4 (b4_null, b4_case): Define.
7785 * src/output.c (prepare_symbols): Use b4_null.
7786 (user_actions_output): Use b4_case.
7787
3dc5e96b
PE
77882006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7789
aef3da86
PE
7790 * data/glr.c (b4_shared_declarations): Put start-header first,
7791 before any #includes that we generate, so that feature-test
7792 macros work. Problem reported by Michael Deutschmann in
7793 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7794 * data/lalr1.cc: Likewise.
7795 * doc/bison.texinfo (Prologue): Document that feature-test macros
7796 should be defined before any Bison declarations.
7797 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7798 that depend on location.hh after, not before, Bison decls, since
7799 we now include location.hh after the first user prologue.
7800
3dc5e96b
PE
7801 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7802 Sander Brandenburg in
7803 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7804 Also, fix minor white space and comment issues.
aef3da86
PE
7805 (Prologue): Mention that it's better to define feature-test macros
7806 before Bison declarations. Problem reported by Michael Deutschmann.
7807
7808 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7809 by Jim Meyering.
7810 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7811 This adjusts to recent gnulib changes.
3dc5e96b 7812
b2a0b7ca
JD
78132006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7814
7815 Finish implementation of per-type %destructor/%printer. Discussed
7816 starting at
7817 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7818 and
7819 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7820 * NEWS (2.3+): Add a description of this feature to the default
7821 %destructor/%printer description.
7822 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7823 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7824 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7825 list node contains a semantic type.
7826 * src/symtab.c, src/symtab.h: Extend with a table that associates
7827 semantic types with their %destructor's and %printer's.
7828 (semantic_type_from_uniqstr, semantic_type_get,
7829 semantic_type_destructor_set, semantic_type_printer_set): New functions
7830 composing the public interface of that table.
7831 (symbol_destructor_get, symbol_destructor_location_get,
7832 symbol_printer_get, symbol_printer_location_get): If there's no
7833 per-symbol %destructor/%printer, look up the per-type before trying
7834 the default.
7835 * tests/actions.at (Per-type %printer and %destructor): New test case.
7836 * tests/input.at (Default %printer and %destructor redeclared):
7837 Extend to check that multiple occurrences of %symbol-default in a
7838 single %destructor/%printer declaration is an error.
7839 (Per-type %printer and %destructor redeclared, Unused values with
7840 per-type %destructor): New test cases.
7841
3be03b13
JD
78422006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7843
7844 Require default %destructor/%printer to be declared using
7845 %symbol-default instead of an empty symbol list, and start working on
7846 new per-type %destructor/%printer. Discussed at
7847 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7848 * NEWS (2.3+): Add %symbol-default to example.
7849 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 7850 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
7851 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7852 (generic_symlist, generic_symlist_item): New nonterminals for creating
7853 a list in which each item is a symbol, semantic type, or
7854 %symbol-default.
7855 (grammar_declaration): Use generic_symlist in %destructor and %printer
7856 declarations instead of symbols.1 or an empty list.
7857 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7858 for changes to symbol_list.
7859 * src/reader.c: Update for changes to symbol_list.
7860 * src/scan-code.l: Likewise.
7861 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7862 * src/symlist.c, src/symlist.h: Extend such that a list node may
7863 represent a semantic type or a %symbol-default in addition to just an
7864 ordinary symbol. Add switched functions for setting %destructor's and
7865 %printer's.
7866 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7867 %destructor/%printer declarations.
7868
3508ce36
JD
78692006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7870
7871 Whether the default %destructor/%printer applies to a particular symbol
7872 isn't a question of whether the user *declares* that symbol (in %token,
7873 for example). It's a question of whether the user by any means
7874 *defines* the symbol at all (by simply using a char token, for
7875 example). $end is defined by Bison whereas any other token with token
7876 number 0 is defined by the user. The error token is always defined by
7877 Bison regardless of whether the user declares it with %token, but we
7878 may one day let the user define error as a nonterminal instead.
7879 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7880 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7881 the meaning of "user-defined".
7882 * tests/actions.at (Default %printer and %destructor for user-declared
7883 end token): Rename to...
7884 (Default %printer and %destructor for user-defined end token): ...
7885 this.
7886
7887 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7888 computation of whether to apply the default, don't maintain a list of
7889 every Bison-defined symbol. Instead, just check for a first character
7890 of '$', which a user symbol cannot have, and check for the error token.
7891
9350499c
JD
78922006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7893
7894 Don't apply the default %destructor or %printer to the error token,
7895 $undefined, or $accept. This change fits the general rule that the
7896 default %destructor and %printer are only for user-declared symbols,
7897 and it solves several difficulties that are described in the new test
7898 cases listed below.
7899 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7900 * tests/actions.at (Default %printer and %destructor are not for error
7901 or $undefined, Default %printer and %destructor are not for $accept):
7902 New test cases.
7903
4d7370cb
JD
79042006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7905
7906 Allow %start after the first rule.
7907 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7908 when parsing the first rule.
7909 (check_and_convert_grammar): Search for it here after all grammar
7910 declarations have been parsed. Skip midrules, which have dummy LHS
7911 nonterminals.
7912 * src/symtab.c (symbol_is_dummy): New function.
7913 * src/symtab.h (symbol_is_dummy): Declare it.
7914 * tests/input.at (%start after first rule): New test.
7915
6d0ef4ec
JD
79162006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7917
7918 Redo some of the previous commit: add back the ability to use
7919 non-aliased/undeclared string literals since it might be useful to
7920 those declaring %token-table.
7921 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7922 commit: don't worry about complaints from symbols_pack.
7923 * src/symtab.c (symbol_new, symbol_class_set,
7924 symbol_check_alias_consistency): Undo changes in previous commit: count
7925 each string literal as a new symbol and token, assign it a symbol
7926 number, and don't complain about non-aliased string literals.
7927 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7928 and token counts but does still set aliased tokens to the same number,
7929 symbol_pack_processor now leaves empty slots in the symbols array.
7930 Remove those slots.
7931 * tests/regression.at (Undeclared string literal): Remove test case
7932 added in previous commit since non-aliased string literals are allowed
7933 again.
7934 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7935 remove unnecessary string literal declarations.
7936 * tests/sets.at (Firsts): Likewise.
7937
965537bc
JD
79382006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7939
7940 Don't allow an undeclared string literal, but allow a string literal to
7941 be used before its declaration.
7942 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7943 symbols_pack complained.
7944 * src/symtab.c (symbol_new): Don't count a string literal as a new
7945 symbol.
7946 (symbol_class_set): Don't count a string literal as a new token, and
7947 don't assign it a symbol number since symbol_make_alias does that.
7948 (symbol_make_alias): It's not necessary to decrement the symbol and
7949 token counts anymore. Don't assume that an alias declaration occurs
7950 before any uses of the identifier or string, and thus don't assert that
7951 one of them has the highest symbol number so far.
7952 (symbol_check_alias_consistency): Complain if there's a string literal
7953 that wasn't declared as an alias.
7954 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7955 symbol_pack asserts that every token has been assigned a symbol number
7956 although undeclared string literals have not.
7957 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 7958 string literal): New test cases.
965537bc
JD
7959 (Characters Escapes, Web2c Actions): Declare string literals as
7960 aliases.
7961 * tests/sets.at (Firsts): Likewise.
7962
47aee066
JD
79632006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7964
7965 In the grammar scanner, STRING_FINISH unclosed constructs and return
7966 them to the parser in order to improve error messages.
7967 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7968 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7969 * tests/input.at (Unclosed constructs): New test case.
7970 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7971 seen.
7972
7973 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7974 unused global.
7975
1f6b3679
JD
79762006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7977
7978 Handle string aliases for character tokens correctly.
7979 * src/symtab.c (symbol_user_token_number_set): If the token has an
7980 alias, check and set its alias's user token number instead of its own,
7981 which is set to indicate the alias. Previously, every occurrence of
7982 the character token in the grammar overwrote that alias indicator with
7983 the character code.
7984 * tests/input.at (String aliases for character tokens): New test.
7985
219741d8
JD
79862006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7987
7988 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7989
11daa4e7
PE
79902006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7991
7992 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7993 to prevent failures when building on older platforms.
7994 Check for autopoint failure.
7995 Set XGETTEXT_OPTIONS to values that check for C format strings,
7996 so that translators are warned about them (this also helps
7997 prevent core dumps).
7998
7999 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8000 function, since it simplifies our code a bit.
8001
8002 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8003 rather than -W, so we don't get bogus warnings about sign comparisons.
8004 Add -Wpointer-arith, since that warning is useful (it reports code
8005 that does not conform to C89 and that some compilers reject).
8006 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8007 since it's no longer needed.
8008
f9bfc42a
JD
80092006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8010
8011 Clean up scanners a bit.
8012 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8013 definitions so gcc won't warn when obstack_for_string is unused.
8014 * src/scan-code.l: config.h and system.h are already #include'd by
8015 scan-code-c.c, so get rid of them here.
8016 * src/scan-gram.l: Likewise.
8017 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8018 definitions rather than duplicating the rest of it.
8019 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8020
06e8700a
JD
80212006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8022
8023 Suppress signed/unsigned comparison warnings for yycheck.
8024 * data/c.m4 (b4_safest_int_type): New macro.
8025 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8026 a signed int type, cast it to b4_safest_int_type first.
8027 * data/yacc.c: Likewise.
8028 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8029 also overwritten.
8030
9c437126
PE
80312006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8032
8033 * doc/bison.texinfo: Fix some typos.
8034
284d8a13
PE
80352006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8036
8037 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8038 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8039
8040 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8041 the latest gnulib does this a different way.
8042 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8043 translation was patched, so stop omitting it.
8044
ec5479ce
JD
80452006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8046
8047 Enable declaration of default %printer/%destructor. Make the parser
8048 use these for all user-declared grammar symbols for which the user does
8049 not declare a specific %printer/%destructor. Thus, the parser uses it
8050 for token 0 if the user declares it but not if Bison generates it as
8051 $end. Discussed starting at
8052 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8053 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8054 and
8055 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8056 * NEWS (2.3+): Mention.
8057 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8058 declare a %destructor for a mid-rule's semantic value. It's just
8059 impossible to declare one specific to it.
8060 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8061 code. Describe default %destructor form.
8062 * src/parse-gram.y (grammar_declaration): Parse default
8063 %printer/%destructor declarations.
8064 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8065 and symbol_destructor_location_get rather than accessing the destructor
8066 and destructor_location members of struct symbol.
8067 (symbol_printers_output): Likewise but for %printer's.
8068 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8069 again.
8070 * src/symtab.c (default_destructor, default_destructor_location,
8071 default_printer, default_printer_location): New static global
8072 variables to record the default %destructor and %printer.
8073 (symbol_destructor_get, symbol_destructor_location_get,
8074 symbol_printer_get, symbol_printer_location_get): New functions to
8075 compute the appropriate %destructor and %printer for a symbol.
8076 (default_destructor_set, default_printer_set): New functions to set the
8077 default %destructor and %printer.
8078 * src/symtab.h: Prototype all those new functions.
8079 * tests/actions.at (Default %printer and %destructor): New test to
8080 check that the right %printer and %destructor are called, that they're
8081 not called for $end, and that $$ and @$ work correctly.
8082 (Default %printer and %destructor for user-declared end token): New
8083 test to check that the default %printer and %destructor are called for
8084 a user-declared end token.
8085 * tests/input.at (Default %printer and %destructor redeclared, Unused
8086 values with default %destructor): New tests to check related grammar
8087 warnings and errors.
8088
868d2d96
JD
80892006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8090
8091 Clean up handling of %destructor for the end token (token 0).
8092 Discussed starting at
8093 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8094 and
8095 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8096
8097 Make the skeletons consistent in how they pop the end token and invoke
8098 its %destructor.
8099 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8100 state, which has token number 0, since this would invoke the
8101 %destructor for the end token.
8102 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8103 until after shifting the end token, or else it won't be popped.
8104 * data/yacc.c (yyparse): Likewise.
8105
8106 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8107 it's the end token. Upon termination, destroy an unshifted lookahead
8108 even when it's the end token.
8109 * data/lalr1.cc (yy::parser::parse): Likewise.
8110 * data/yacc.c (yyparse): Likewise.
8111
8112 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8113 value warnings for the end token when the user gives the end token a
8114 %destructor.
8115
8116 * tests/actions.at (Printers and Destructors): Test all the above.
8117
62a9592d
PE
81182006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8119
8120 Update to latest gnulib and gettext versions.
8121 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8122 Add fopen-safer.
8123 (gnulib_files): Add m4/warning.m4. Don't worry about files
8124 overwritten by autopoint.
8125 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8126 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8127 rejects them.
8128 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8129 so that we can remove the intl files at a better time.
8130 (intl_files_to_remove): Remove aclocal.m4, since it gets
8131 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8132 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8133 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8134 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8135 Remove datarootdir hack; no longer needed.
8136 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8137 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8138 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8139 strdup.h.
8140 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8141 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8142
10d6970f
PE
81432006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8144
8145 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8146 it with --assume-autoconf='latest-stable'.
8147
50a33993
JD
81482006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8149
8150 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8151 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8152 YYSTYPE' and `{'.
8153 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8154 those from muscle_tab.c since the old ones are misleading.
8155
2ce4ed68
AD
81562006-07-13 Akim Demaille <akim@epita.fr>
8157
8158 Support %define "KEY" {VALUE}.
8159 * src/scan-code.h, src/scan-code.l (translate_action)
8160 (translate_rule_action, translate_symbol_action, translate_code):
8161 Return char *, not const char *.
8162 * src/parse-gram.y (declaration): Rename as...
8163 (prologue_declaration): this.
8164 (string_content): Remove this nonterminal, use STRING.
8165 (braceless, content, content.opt): New nonterminal.
8166 Use them.
8167 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8168 as value.
8169 * src/scan-gram.l (getargs.h): Don't include it.
8170
db7e5eb5
PE
81712006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8172
8173 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8174 rather than a for-loop that declares a local bool variable. This
8175 should work around a compatibility problem with a Cray x1e C++
8176 compiler reported by Hung Nguyen in
8177 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8178 The for-loop was introduced in the 2004-11-17 change but I don't
8179 know why it was needed.
8180
a5d80ba5
AD
81812006-07-12 Akim Demaille <akim@epita.fr>
8182
8183 * data/c.m4: Comment changes.
8184
23eb2a69
AD
81852006-07-10 Akim Demaille <akim@lrde.epita.fr>
8186
8187 * src/complain.c (error_message, ERROR_MESSAGE): New.
8188 To factor...
8189 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8190 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8191
ddc8ede1
PE
81922006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8193
8194 * NEWS: Instead of %union, you can define and use your own union type
8195 YYSTYPE if your grammar contains at least one <type> tag.
8196 Your YYSTYPE need not be a macro; it can be a typedef.
8197 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8198 (Union Decl, Decl Summary): Document this.
8199 * data/glr.c (YYSTYPE): Implement this.
8200 * data/glr.cc (YYSTYPE): Likewise.
8201 * data/lalr1.cc (YYSTYPE): Likewise.
8202 * data/yacc.c (YYSTYPE): Likewise.
8203 * src/output.c (prepare): Output tag_seen_flag.
8204 * src/parse-gram.y (declaration, grammar_declaration):
8205 Use 'union_seen' rather than 'typed' to determine whether
8206 %union has been seen, since grammars can now be typed without
8207 %union.
8208 (symbol_declaration, type.opt, symbol_def):
8209 Keep track of whether a tag has been seen.
8210 * src/reader.c (union_seen, tag_seen): New vars.
8211 (typed): remove.
8212 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8213 * src/scan-code.l (untyped_var_seen): New variable.
8214 (handle_action_dollar): Adjust to above changes.
8215 (handle_action_dollar, handle_action_at):
8216 Improve overflow checking for outlandish numbers.
8217 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8218 avoid new diagnostics generated by above changes.
8219 * tests/regression.at (YYSTYPE typedef): Add test to check
8220 for type tags without %union.
8221
8222 * src/symlist.c (symbol_list_length): Return int, not unsigned
8223 int, since callers expect int. This may need to get revisited
8224 once we have proper integer overflow checking.
8225
8226 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8227 object is now static.
8228
8229 * src/getargs.c (flags_argmatch): Return void, not int,
8230 to pacify ./configure --enable-gcc-warnings.
8231
8232 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8233 since last_string is already defined to FLEX_PREFIX (last_string).
8234
7b42569e
AD
82352006-07-09 Akim Demaille <akim@lrde.epita.fr>
8236
8237 Implement --warnings/-W.
8238 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8239 replaced by...
8240 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8241 Adjust callers.
8242 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8243 (warnings_args, warnings_types): New.
8244 (getargs, short_options, long_options): Accept -W/--warnings.
8245 Sort the options by alphabetical order, upper case letter right
8246 before its lower case.
8247
3b452f4e
JD
82482006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8249
8250 Change %merge result type clash warnings to errors. Discussed at
8251 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8252 * src/reader.c (record_merge_function_type): Use complain_at.
8253 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8254 declared later): Update test case results.
8255
b8a41559
AD
82562006-07-09 Akim Demaille <akim@lrde.epita.fr>
8257
8258 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8259 to be in alphabetical order.
8260 (trace_args): Spelling fixes.
8261
cd9e1ba2
PE
82622006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8263
8264 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8265 so they don't collide with user-defined macros.
8266 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8267 this was never guaranteed, and now that we're using gnulib stdint,
8268 which defines int_fast16_t to long int, the problem is exposed.
8269
cb48f191
PE
82702006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8271
b8445a15
PE
8272 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8273 need the full POSIX semantics (and weren't implementing them
8274 anyway).
8275
cb48f191
PE
8276 Adjust to Autoconf 2.60 and today's gnulib.
8277 * bootstrap (gnulib_modules): Add stdint.
8278 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8279 no longer copies it.
8280 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8281 since stdint needs the former and wcwidth (which is now required
8282 by mbswidth) needs the latter.
8283 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8284 work around a compatibility glitch between gettext 0.14.6 and
8285 Autoconf 2.60.
8286 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8287 Do not check for uintptr_t, since new stdint module does the right
8288 thing.
8289 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8290 Add stdint.h, stdint_.h, wcwidth.h.
8291 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8292 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8293 stdint.m4, wchar_t.m4, wcwidth.m4.
8294 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8295 usual order for ../lib/*.h files.
8296 (file_name_split): Use last_component, not base_name, to adjust
8297 to gnulib changes.
8298 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8299 for ../lib/*.h files.
8300 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8301 Define unconditionally, since we now assume the stdint module.
8302 * src/scan-skel.l: Include <dirname.h>.
8303 (BASE_QPUTS): Use last_component, not base_name.
8304 * src/system.h: Include <unlocked-io.h> in the usual order
8305 for ../lib/*.h files. Include <stdint.h> unconditionally,
8306 since we now use the stdint module.
8307 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8308 HAVE_UINTPTR_T, since we now use the stdint module.
8309 (base_name): Remove decl, since files now include <dirname.h>
8310 to get the decl.
8311
cd48d21d
AD
83122006-07-08 Akim Demaille <akim@lrde.epita.fr>
8313
8314 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8315 New, default to 1.
8316 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8317 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8318 default.
8319 * tests/calc.at: Adjust.
8320
8ec0a172
AD
83212006-07-08 Akim Demaille <akim@lrde.epita.fr>
8322
b8445a15 8323 * data/c.m4 (b4_basename): New.
8ec0a172
AD
8324 (b4_syncline): Also output the location of its invocation (from
8325 the skeleton).
8326 (b4_user_action, b4_define_user_action, b4_user_actions)
8327 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8328 (b4_user_stype): New.
8329 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8330
4a678af8
JD
83312006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8332
8333 In the grammar file, the first column is 1 not 0 on the first line as
8334 on every other line.
8335 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8336 * tests/input.at (Torturing the Scanner): Update output.
8337
8338 * src/scan-gram.l (scanner_cursor): Declare it static.
8339
dd60572a
JD
83402006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8341
8342 In warnings, say "previous declaration" rather than "first
8343 declaration".
8344 * src/symtab.c (redeclaration): Do that here.
8345 * src/reader.c (record_merge_function_type): In the case of a result
8346 type clash, report the previous declaration rather than the very first
8347 one in the grammar file.
8348 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8349 declared later): Add a third declaration to check this behavior.
8350 * tests/input.at (Incompatible Aliases): Update output.
8351
2073e1b6
AD
83522006-06-27 Akim Demaille <akim@epita.fr>
8353
8354 * doc/Doxyfile.in: New.
8355 * doc/Makefile.am: Use it.
8356 * src/lalr.h, src/symtab.h: Initial doxygenation.
8357
8ee5b538
JD
83582006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8359
8360 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
8361 declared after the %merge. This continues the effort of the previous
8362 patch.
8ee5b538
JD
8363 * src/reader.c (get_merge_function): Don't set the merger type yet.
8364 (record_merge_function_type): New function for setting the merger type
8365 and checking for clashes.
8366 (grammar_current_rule_merge_set): Set the location of the %merge for
8367 the current rule.
8368 (packgram): Invoke record_merge_function_type for each rule now that
8369 all symbol type declarations have been parsed.
8370 * src/reader.h (merger_list.type_declaration_location): New member
8371 storing the location of the first %merge from which the type for this
8372 merging function was derived.
8373 * src/symlist.h (symbol_list.merger_declaration_location): New member
8374 storing the location of a rule's %merge, if any.
8375 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8376 declared later): New test to catch the error fixed by the above patch.
8377
ffa4ba3a
JD
83782006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8379
8380 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
8381 declarations appear after the rules. Discussed at
8382 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8383 and
8384 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8385 Don't mistake the type of $$ in a midrule to be that of its parent
8386 rule's $$.
ffa4ba3a
JD
8387 * src/reader.c (grammar_current_rule_end): Don't invoke
8388 grammar_rule_check yet since not all symbol declarations may have been
8389 parsed yet.
8390 (grammar_midrule_action): Likewise.
8391 Don't record whether the midrule's $$ has been used yet since actions
8392 haven't been translated yet.
8393 Record the midrule's parent rule and its RHS index within the parent
8394 rule.
8395 (grammar_current_rule_action_append): Don't translate the action yet
8396 since not all symbol declarations may have been parsed yet and, thus,
8397 warnings about types for $$, $n, @$, and @n can't be reported yet.
8398 (packgram): Translate the action and invoke grammar_rule_check now that
8399 all symbol declarations have been parsed.
8400 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8401 after parsing the entire grammar file, the symbol list here in the case
8402 of a midrule is actually the midrule's empty RHS, so reference its
8403 parent rule's RHS where necessary.
8404 On the other hand, now that you can already know it's a midrule, you
8405 aren't forced to think $$ has the same type as its parent rule's $$.
8406 (handle_action_at): In the case of a midrule, reference the parent rule
8407 where necessary.
8408 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8409 members.
8410 (symbol_list_length): Now that this is invoked after all rules have
8411 been parsed, a NULL symbol (rather than a NULL symbol list node)
8412 terminates a rule. symbol_list_print already does this correctly.
8413 * src/symlist.h (symbol_list.midrule_parent_rule,
8414 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8415 remember their relationships with their parents.
8416 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8417 fixed by the above patch.
8418 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8419 implementing...
8420 (Unused values): ... this old test case and...
8421 (Unused values before symbol declarations): ... this new test case.
8422 This one is the same as `Unused values' except that all symbol
8423 declarations appear after the rules in order to catch the rest of the
8424 errors fixed by the above patch.
8425
e256e17f
JD
84262006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8427
300a1930
JD
8428 More cleanup.
8429 * src/reader.c (current_rule): Declare it static since it's no longer
8430 used outside this file.
8431 (grammar_current_rule_action_append): Remove redundant arguments from
8432 translate_rule_action invocation.
8433 * src/reader.h (current_rule): Remove this unused extern.
8434 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8435 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 8436
381ecb06
JD
84372006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8438
8439 Clean up yesterday's patch.
8440 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8441 to...
8442 * src/reader.c (grammar_current_rule_action_append): ... here for
8443 consistency with grammar_current_rule_symbol_append.
8444 * tests/regression.at (Braced code in declaration in rules section):
8445 Make yyerror and yylex static as usual.
8446
4210cd0b
JD
84472006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8448
8449 Fix bug that mistakes braced code in a declaration in the rules section
8450 to be a rule action. Mentioned at
8451 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8452 * src/scan-gram.l: Move midrule action detection from the start of the
8453 scanning of any braced code to...
8454 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8455 action. For readability, use $2 and @2 rather than the equivalent
8456 global variables.
8457 * tests/regression.at (Braced code in declaration in rules section):
8458 New test to catch the error fixed by the above patch.
8459
8460 Work on code readability some.
8461 * src/scan-code.l (current_rule): Get rid of this misleading and
8462 redundant declaration: it's actually extern'ed in reader.h.
8463 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8464 translate_action): Add a rule argument and use it instead of the global
8465 current_rule.
8466 (translate_rule_action): This already receives current_rule through an
8467 argument, so pass it on to translate_action instead of assigning
8468 current_rule to current_rule.
8469 (translate_symbol_action, translate_code): Pass rule = NULL to
8470 translate_action.
8471
34f98f46
JD
84722006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8473
8474 Rename %before-definitions to %start-header and %after-definitions to
8475 %end-header. Don't use these declarations to separate pre-prologue
8476 blocks from post-prologue blocks. Add new order-independent
8477 declarations %before-header and %after-header as alternatives to the
8478 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8479 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8480 * NEWS (2.3+): Update for these changes.
8481 * data/glr.c (b4_before_definitions): Update to...
8482 (b4_start_header): ... this.
8483 (b4_after_definitions): Update to...
8484 (b4_end_header): ... this.
8485 * data/glr.cc: Likewise.
8486 * data/lalr1.cc: Likewise.
8487 * data/yacc.c: Likewise.
8488 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8489 prologue blocks with %*-header declarations.
8490 (Calc++ Parser): Likewise.
91661ebb 8491 (Decl Summary): Update names.
148d66d8 8492 (Table of Symbols): Update description.
34f98f46
JD
8493 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8494 (PERCENT_END_HEADER): ... this.
8495 (PERCENT_BEFORE_DEFINITIONS): Update to...
8496 (PERCENT_START_HEADER): ... this.
8497 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8498 (declaration): Update token names and m4 macro names.
8499 When parsing %end-header and %start-header, invoke translate_code
8500 before muscle_code_grow, and no longer set global booleans to remember
8501 whether these declarations have been seen.
8502 Parse new %after-header and %before-header.
8503 * src/reader.c (before_definitions, after_definitions): Remove.
8504 (prologue_augment): Accept a new bool argument to specify whether to
8505 augment the pre-prologue or post-prologue.
8506 * src/reader.h (before_definitions, after_definitions): Remove these
8507 extern's.
8508 (prologue_augment): Add new bool argument.
8509 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8510 (PERCENT_END_HEADER): ... this.
8511 (PERCENT_BEFORE_DEFINITIONS): Update to...
8512 (PERCENT_START_HEADER): ... this.
8513 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8514 * tests/actions.at (Printers and Destructors): Update names.
8515
31b2b07e
JD
85162006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8517
8518 Add comparison operators for C++ location classes. Discussed at
8519 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8520 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8521 declaration indicating whether filename_type has an operator==. If
8522 filename_type is `std::string', it defaults to `1', `0' otherwise.
8523 * data/location.cc: Iff b4_define_location_comparison is `1', add
8524 operator== and operator!= for class position and for class location.
8525
8526 Some minor fixes.
8527 * src/scan-action.l: Remove unused file.
8528 * src/symtab.c (symbol_printer_set): Use printer_location not
8529 destructor_location.
8530 * src/symtab.h (struct symbol): Replace incorrect source comment for
8531 printer members.
8532 * tests/input.at (Incompatible Aliases): Update output with correct
8533 printer location.
8534
9bc0dd67
JD
85352006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8536
8537 Don't put the pre-prologue in the header file. For the yacc.c code
8538 file and the glr.c header and code files, move the pre-prologue before
8539 the token definitions. Add new %before-definitions and
8540 %after-definitions to declare code that will go in both the header file
8541 and code file. Discussed at
8542 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8543 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8544 and
8545 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8546 * NEWS (2.3+): Describe these changes.
8547 * data/glr.c (b4_pre_prologue): Move from within to before...
8548 (b4_shared_declarations): ... this.
8549 Add new b4_before_definitions before b4_token_enums.
8550 Add new b4_after_definitions at the end.
8551 * data/glr.cc (b4_pre_prologue): Replace with...
8552 (b4_before_definitions): ... this in the header file.
8553 (b4_after_definitions): New near the end of the header file.
8554 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8555 code file right before including the header file.
8556 (b4_before_definitions): New in the previous position of
8557 b4_pre_prologue in the header file.
8558 (b4_after_definitions): New near the end of the header file.
8559 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8560 (b4_token_enums_defines): In the code file, move to right before
8561 YYSTYPE for consistency with the header file.
8562 (b4_before_definitions): New right before b4_token_enums_defines in
8563 both the header and code file.
8564 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8565 header and code file.
8566 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8567 of prologues for %union dependencies.
91661ebb
JD
8568 (Decl Summary): In %defines description, mention the effect of
8569 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
8570 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8571 than in the pre-prologue so that make check succeeds.
148d66d8 8572 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
8573 %after-definitions.
8574 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8575 %before-definitions.
8576 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8577 (declaration): Parse those declarations and append to
8578 b4_before_definitions and b4_after_definitions, respectively.
8579 * src/reader.c (before_definitions, after_definitions): New bools to
8580 track whether those declarations have been seen.
8581 (prologue_augment): Add to the post-prologue if %union,
8582 %before-definitions, or %after-definitions has been seen.
8583 * src/reader.h (before_definitions, after_definitions): New extern's.
8584 * src/scan-gram.l: Scan the new declarations.
8585 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8586 prologue block in a %before-definitions or a %after-definitions based
8587 on whether the %union is declared.
8588 * tests/regression.at (Early token definitions with --yacc, Early token
8589 definitions without --yacc): Move tests for token definitions into the
8590 post-prologue since token names are no longer defined in the
8591 pre-prologue.
8592
203b9274
AD
85932006-06-20 Akim Demaille <akim@epita.fr>
8594
8595 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8596 (symbol_get): Use it.
8597 * src/parse-gram.y: Use it.
8598
a7ee59cf
JD
85992006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8600
8601 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8602 build succeeds when configured with --enable-gcc-warnings.
8603
5a2baae7
PE
86042006-06-19 Paul Eggert <eggert@cs.ucla.edu>
8605
33ad1a9c
PE
8606 * src/parse-gram.y (char_name): New function.
8607 (CHAR, STRING, string_content): For %printer, properly escape.
8608 (ID): Prefer fputs to fprintf.
8609 (id): Reindent to be consistent with other rules.
8610 Properly quote char.
8611
5a2baae7
PE
8612 The Translation Project changed its way of publishing translations
8613 to maintainers. I haven't received any responses to my request
8614 for supporting the old way, or for documenting the new way. I
8615 have modified 'bootstrap' to use screen scraping
8616 (in this case, HTML scraping). This is unreliable and inelegant,
8617 but I don't see any better way. Yuck.
8618 * bootstrap (TP_URL, WGET_COMMAND): New vars.
8619 (get_translations): New function, which uses HTML scraping to
8620 deduce locations of latest translations.
8621 Use this function to grab both bison and bison-runtime .po files.
8622 Don't bother priming the pump for the runtime-po domain any more,
8623 as it's now translated better than bison is.
8624
58d7a1a1
AD
86252006-06-19 Akim Demaille <akim@epita.fr>
8626
8627 * src/scan-gram.l: No longer "parse" things after `%union' until
8628 `{'. Rather, return a single "%union" token.
8629 No longer make symbols: return strings, and leave the conversion
8630 to symbols to the parser.
8631 (SC_PRE_CODE, token_type): Remove.
8632 * src/parse-gram.y (%union): New field `character'.
8633 Sort tokens.
8634 (CHAR): New token.
8635 (ID, ID_COLON): Now that the scanner no longer makes them
8636 identifiers, adjust all uses to invoke symbol_get.
8637 (id_colon): New, wraps the conversion from string to symbol.
8638 (%union): Accept a possible union_name.
8639 (symbol): Now can be a char.
8640 * data/c.m4 (b4_union_name): Leave a default value.
8641 * data/glr.c, data/yacc.c: Use it.
8642
b931235e
JD
86432006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
8644
8645 For associating token numbers with token names for "yacc.c", don't use
8646 #define statements unless `--yacc' is specified; always use enum
8647 yytokentype. Most important discussions start at:
8648 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
8649 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
8650 and
8651 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
8652 * NEWS (2.3+): Mention.
8653 * data/c.m4 (b4_yacc_if): New.
8654 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
8655 token #define's.
8656 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
8657 on token name definitions.
8658 * src/getargs.c (usage): Capitalize `Yacc' in English.
8659 * src/output.c (prepare): Define b4_yacc_flag.
8660 * tests/regression.at (Early token definitions): Test that tokens names
8661 are defined before the pre-prologue not just before the post-prologue.
8662 Remove this test case and copy to...
8663 (Early token definitions with --yacc): ... this to test #define's.
8664 (Early token definitions without --yacc): ... and this to test enums.
8665
9e6e7ed2
PE
86662006-06-11 Paul Eggert <eggert@cs.ucla.edu>
8667
8668 * NEWS: Reword the post-2.3 change to not be so optimistic about
8669 removing the old "look-ahead" spelling.
8670 Update previous look-ahead/lookahead change reports.
8671 * REFERENCES: look-ahead -> lookahead (since that's
8672 what he actually wrote).
8673 * doc/refcard.tex: look ahead -> lookahead,
8674 look-ahead -> lookahead
8675
742e4900
JD
86762006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
8677
8678 For consistency, use `lookahead' instead of `look-ahead' or
8679 `look_ahead'. Discussed starting at
8680 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
8681 and then at
8682 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
8683 * NEWS: For the next release, note the change to `--report'.
8684 * TODO, doc/bison.1: Update English.
8685 * doc/bison.texinfo: Update English.
8686 (Understanding Your Parser, Bison Options): Document as
8687 `--report=lookahead' rather than `--report=look-ahead'.
8688 * src/conflicts.c: Update English in comments.
8689 (lookahead_set): Rename from look_ahead_set.
8690 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
8691 (resolve_sr_conflict): Rename local look_ahead_tokens to
8692 lookahead_tokens, and update other uses.
8693 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
8694 count_rr_conflicts, conflicts_free): Update uses.
8695 * src/getargs.c (report_args): Move "lookahead" before alternate
8696 spellings.
8697 (report_types): Update uses.
8698 (usage): For `--report' usage description, state `lookahead' spelling
8699 rather than `look-ahead'.
8700 * src/getargs.h (report.report_lookahead_tokens): Rename from
8701 report_look_ahead_tokens.
8702 * src/lalr.c: Update English in comments.
8703 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
8704 (state_lookahead_tokens_count): Rename from
8705 state_look_ahead_tokens_count.
8706 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8707 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
8708 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8709 Update other uses.
8710 Update English in output.
8711 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
8712 * src/print.c: Update English in comments.
8713 (lookahead_set): Rename from look_ahead_set.
8714 (print_reduction): Rename argument lookahead_token from
8715 look_ahead_token.
8716 (print_core, state_default_rule, print_reductions, print_results):
8717 Update uses.
8718 * src/print_graph.c: Update English in comments.
8719 (print_core): Update uses.
8720 * src/state.c: Update English in comments.
8721 (reductions_new): Update uses.
8722 (state_rule_lookahead_tokens_print): Rename from
8723 state_rule_look_ahead_tokens_print, and update other uses.
8724 * src/state.h: Update English in comments.
8725 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
8726 (state_rule_lookahead_tokens_print): Rename from
8727 state_rule_look_ahead_tokens_print.
8728 * src/tables.c: Update English in comments.
8729 (conflict_row, action_row): Update uses.
8730 * tests/glr-regression.at
8731 (Incorrect lookahead during deterministic GLR,
8732 Incorrect lookahead during nondeterministic GLR): Rename
8733 print_look_ahead to print_lookahead.
8734 * tests/torture.at: Update English in comments.
8735 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
8736 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
8737 (Many lookahead tokens): Update uses.
8738 * data/glr.c: Update English in comments.
8739 * lalr1.cc: Likewise.
8740 * yacc.c: Likewise.
8741 * src/conflicts.h: Likewise.
8742 * src/lalr.h: Likewise.
8743 * src/main.c: Likewise.
8744 * src/output.c: Likewise.
8745 * src/parse-gram.c: Likewise.
8746 * src/tables.h: Likewise.
8747 * tests/calc.at: Likewise.
8748
3c40d0b5
JD
87492006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
8750
8751 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
8752
5d278082
PE
87532006-06-07 Paul Eggert <eggert@cs.ucla.edu>
8754
8755 * TODO: Add request from Nelson H. F. Beebe to be able to install
8756 Bison without installing the yacc script.
8757
9e668899
JD
87582006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8759
8760 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8761 and yytext if they're already #define'd.
8762 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8763 * src/scan-code-c.c: ... here.
8764 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8765 <config.h>.
8766
0c8e079f
JD
87672006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8768
8769 Get Bison to build again when configured with --enable-gcc-warnings.
8770 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8771 missing #include's.
8772 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8773 loc argument as it shadows a global.
8774 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8775 invocation.
8776
8777 * src/.cvsignore: Add scan-code.c.
8778
2346344a
AD
87792006-06-07 Akim Demaille <akim@epita.fr>
8780
8781 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8782 to...
8783 * src/scan-code.l: here.
8784 * tests/input.at (Torturing the Scanner): Fix another location
8785 error.
8786
4862bdfd
AD
87872006-06-07 Akim Demaille <akim@epita.fr>
8788
8789 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8790
e9071366
AD
87912006-06-06 Akim Demaille <akim@epita.fr>
8792
8793 Extract the parsing of user actions from the grammar scanner.
8794 As a consequence, the relation between the grammar scanner and
8795 parser is much simpler. We can also split "composite tokens" back
8796 into simple tokens.
8797 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8798 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8799 rename as...
8800 * src/location.h, src/location.c (add_column_width)
8801 (location_compute): these.
8802 Fix the column count: the initial column is 0.
8803 (location_print): Be robust to ending column being 0.
8804 * src/location.h (boundary_set): New.
8805 * src/main.c: Adjust to scanner_free being renamed as
8806 gram_scanner_free.
8807 * src/output.c: Include scan-code.h.
8808 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8809 Use boundary_set.
8810 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8811 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8812 which is now, again, a separate token.
8813 Adjust all dependencies.
8814 Whereever actions with $ and @ are used, use translate_code.
8815 (action): Remove this nonterminal which is now useless.
8816 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8817 (grammar_current_rule_action_append): Use translate_code.
8818 (packgram): Bound check ruleno, itemno, and rule_length.
8819 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8820 (last_string, last_braced_code_loc, max_left_semantic_context)
8821 (scanner_initialize, scanner_free, scanner_last_string_free)
8822 (gram_out, gram_lineno, YY_DECL_): Move to...
8823 * src/scan-gram.h: this new file.
8824 (YY_DECL): Rename as...
8825 (GRAM_DECL): this.
8826 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8827 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8828 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8829 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8830 Move these declarations, and...
8831 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8832 these to...
8833 * src/flex-scanner.h: this new file.
8834 * src/scan-gram.l (rule_length, rule_length_overflow)
8835 (increment_rule_length): Remove.
8836 (last_braced_code_loc): Rename as...
8837 (gram_last_braced_code_loc): this.
8838 Adjust to the changes of the parser.
8839 Move all the handling of $ and @ into...
8840 * src/scan-code.l: here.
8841 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8842 (handle_action_dollar, handle_action_at): Move to...
8843 * src/scan-code.l: here.
8844 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8845 scan-code.h, scan-code-c.c, scan-gram.h.
8846 (EXTRA_bison_SOURCES): Add scan-code.l.
8847 (BUILT_SOURCES): Add scan-code.c.
8848 (yacc): Be robust to white spaces.
8849
8850 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8851 * tests/regression.at: Adjust the column numbers.
8852 * tests/regression.at: Adjust the error message.
7891a7c4 8853
184e42f0
JD
88542006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8855
8856 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8857 Use Akim's wording from
8858 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8859
7891a7c4
JD
88602006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8861
8862 Between Bison releases, manually append `+' to the previous Bison
8863 release number, and use that as a signal to automatically print the
8864 ChangeLog's CVS Id keyword from --version. Discussed starting at
8865 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8866 * ChangeLog: Add Id header.
8867 * configure.ac (AC_INIT): Append `+' to `2.3'.
8868 * src/.cvsignore: Add revision.c.
8869 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8870 (BUILT_SOURCES): Add revision.c.
8871 (revision.c): New target rule. This file defines a new global variable
8872 named revision. It initializes it with either the Id from ChangeLog
8873 or, if VERSION doesn't contain `+', with the empty string.
8874 * src/getargs.c (version): Print the value of revision.
8875 * src/revision.h: Extern revision.
8876
4ad3ed84
PE
88772006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8878
8879 * NEWS: Version 2.3.
8880 * configure.ac (AC_INIT): Likewise.
8881
02103984
PE
88822006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8883
8884 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8885 with no arguments, not as an object-like macro. This is for
8886 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8887 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8888 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8889 Document this.
8890
2c08afa5
JD
88912006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8892
8893 * src/getargs.c (usage): Back out yesterday's modification of the
8894 --help output so that we don't have to wait for translation before
8895 releasing 2.3.
8896
6077da58
PE
88972006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8898
8899 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8900 Problem reported by Akim Demaille.
8901
2a26b6c2
JD
89022006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8903
8904 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8905
aefef0d6
PE
89062006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8907
8908 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8909 generated source code. Problem reported by Frans Englich in
8910 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8911
fcd8e201
PE
89122006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8913
8914 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8915 shell, not within 'make', so that 'make' by an ordinary builder
8916 (using GNU make) does not worry about configuring gzip. This also
8917 works around a bug reported independently by Keith Thompson and by
8918 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8919 stderr rather than stdout, messing up the build logs.
8920
7b5cdcbd
JD
89212006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8922
8923 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8924 to make sure that YYID will never be unused. This fixes a 'make
8925 maintainer-check' failure caused by the recent changes to the 'Trivial
8926 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8927 not used.
8928 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8929
5ad0a449
JD
89302006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8931
8932 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8933 state before an empty RHS is always resolved here. Only the location
8934 of that state is guaranteed to be resolved, and that's enough. This
8935 fixes the remaining bug reported by Derek M. Jones in
8936 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8937 * tests/glr-regression.at (Uninitialized location when reporting
8938 ambiguity): Test the above case.
8939 Also, the embedded comments in this test case claim it checks the case
8940 of an empty RHS that has inherited the initial location. However, the
8941 corresponding LHS was already resolved, so yyresolveLocations didn't
8942 actually have reason to modify it. Fix this by forcing
8943 nondeterministic operation at the beginning of the parse.
8944
50cce58e
PE
89452006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8946
8947 * data/c.m4 (b4_yy_symbol_print_generate):
8948 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8949 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8950 of the bugs reported today by Derek M Jones in
8951 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8952 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8953 defined to be a type name without parens or brackets.
8954 (Location Type): Similarly for YYLTYPE.
8955 * tests/regression.at (Trivial grammars): Put in a test for this
8956 bug that will be caught by 'make maintainer-check' (though not,
8957 alas, by 'make check' unless your compiler is picky).
8958
ab8d9dc5
PE
89592006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8960
0d2c8934 8961 * NEWS: Version 2.2.
ab8d9dc5
PE
8962 * configure.ac (AC_INIT): Likewise.
8963
9138c575
JD
89642006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8965
8966 * data/glr.c (yyreportTree): Make room in yystates for the state
8967 preceding the RHS. This fixes the segmentation fault reported by Derek
8968 M. Jones in
8969 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8970 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8971 to the user. Reported for yyreportTree by Derek M. Jones later in the
8972 same thread.
8973 * THANKS: Add Derek M. Jones.
8974 Update my email address.
8975 Fix typo in Steve Murphy's name.
8976
276f48df
PE
89772006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8978
d6645148
PE
8979 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8980 checking against YYLAST that caused the parser to miss a potential
8981 alternative in its diagnostic.
8982 Problem reported by Maria Jose Moron Fernandez in
8983 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8984 * data/lalr1.cc (yysyntax_error_): Likewise.
8985 * data/yacc.c (yysyntax_error): Likewise.
8986 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8987 tokens, in case we run into an older C compiler.
8988 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8989 Use them to check for the off-by-one error fixed above.
8990
276f48df
PE
8991 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8992 YYSIZE_T, not size_t.
8993 * tests/regression.at (Trivial grammars): New test, to catch
8994 the error fixed by the above patch.
8995
cd8b5791
AD
89962006-05-14 Akim Demaille <akim@lrde.epita.fr>
8997
8998 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8999 scheme.
9000 Reported by Steve Murphy.
9001
34376418
AD
90022006-05-14 Akim Demaille <akim@lrde.epita.fr>
9003
9004 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9005 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9006
327afc7c
AD
90072006-05-14 Akim Demaille <akim@lrde.epita.fr>
9008
9009 Implement --trace=m4.
9010 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9011 * src/output.c (output_skeleton): When set, pass -dV to m4.
9012
9013 Factor the handling of flags in m4.
9014 * src/output.c (prepare): Rename the muscle names debug, defines,
9015 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9016 * data/c.m4: Adjust.
9017 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9018 Use b4_define_flag_if to define other b4_FLAG_if macros.
9019 (b4_location_if): As a consequence, rename as...
9020 (b4_locations_if): this, for consistency.
9021 Adjust all the skeletons.
9022
ba9ecd19
AD
90232006-05-14 Akim Demaille <akim@lrde.epita.fr>
9024
9025 * etc/bench.pm: Shorten bench names.
9026
4e83ea15
AD
90272006-05-14 Akim Demaille <akim@lrde.epita.fr>
9028
9029 * src/output.h, src/output.c (error_verbose): Move to...
9030 * src/getargs.h, src/getargs.c: here.
9031 Sort the flags.
9032 Adjust dependencies.
9033
6e93d810
PE
90342006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9035
9036 * data/c.m4 (b4_copyright): Put the special exception for Bison
9037 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
9038 uses changed. Suggested by Akim Demaille. Also, wrap the
9039 copyright notice, in case it is longer than 80 columns. Replace
9040 comma by newline after title.
6e93d810 9041
eaea13f5
PE
90422006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9043
9044 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9045 incompatibility, not a bug. Mention that it wasn't fixed as of
9046 flex 2.5.33.
9047
3cf084ec
AD
90482006-05-11 Akim Demaille <akim@lrde.epita.fr>
9049
9050 * examples/extexi: Enforce the precedence of concatenation over
9051 >>.
0a9f1c7d 9052 Reported by Tommy Nordgren.
3cf084ec 9053
32c96bd7
AD
90542006-05-11 Akim Demaille <akim@lrde.epita.fr>
9055
9056 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9057 with the member "token".
f94705b2 9058 Reported by Martin Nylin.
32c96bd7 9059
eaea13f5
PE
90602006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9061
9062 * data/glr.c: Switch to Bison 2.2 special-exception language in
9063 the copyright notice. Use more-regular format for titles and
9064 copyright notices.
9065 * data/glr.cc: Likewise.
9066 * data/location.cc: Likewise.
9067 * data/yacc.cc: Likewise.
9068 * doc/bison.texinfo (Conditions): Document this.
9069 * NEWS: likewise. Upgrade version to 2.2.
9070
6e2d1146
AD
90712006-04-27 Akim Demaille <akim@lrde.epita.fr>
9072
9073 * data/glr.cc: Remove dead code.
9074
47671055
PE
90752006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9076
9077 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9078 that variable and the line breaks the bootstrap. Problem reported
9079 by Juan M. Guerrero.
9080
ed2e6384
AD
90812006-04-24 Akim Demaille <akim@lrde.epita.fr>
9082
9083 * doc/bison.texinfo (Multiple start-symbols): New.
9084
3cedc2dc
AD
90852006-04-24 Akim Demaille <akim@lrde.epita.fr>
9086
9087 * etc/README, etc/bench.pl: New.
9088
b2ddc3f3
AD
90892006-04-03 Akim Demaille <akim@lrde.epita.fr>
9090
9091 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9092 rule.
9093 Reported by Mickael Labau.
9094 * tests/input.at (Torturing the Scanner): Test it.
9095
91e3ac9a
PE
90962006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9097
9098 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9099 Problem reported by Bob Rossi.
9100
91012006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9102
9103 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9104 and didn't really work.
9105 For the index, use @ifnotinfo, not @iftex.
9106 Minor cleanups of spacing and terminology.
9107
5cf61e93
AD
91082006-03-12 Akim Demaille <akim@lrde.epita.fr>
9109
9110 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9111 of AT_NAME_PREFIX when %name-prefix is not used.
9112
aa08666d
AD
91132006-03-12 Akim Demaille <akim@lrde.epita.fr>
9114
9115 Apply --prefix to C++ skeletons too: they change the namespace.
9116 The test suite already exercize these cases.
9117 * data/c++.m4 (b4_namespace): New.
9118 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9119 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9120 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9121 * doc/bison.texinfo: Document it.
9122 (Option Cross Key): Use @multitable in all formats. It looks
9123 nicer, even in TeX outputs.
9124 (Rules): Use the same code whatever the output type is.
9125 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9126 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9127 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 9128
45567173
AD
91292006-03-10 Akim Demaille <akim@lrde.epita.fr>
9130
9131 * TODO: Remove dead items.
9132
e9d8f881 91332006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
9134
9135 * doc/FAQ: Remove, merged into...
9136 * doc/bison.texinfo (FAQ): this.
9137 * doc/Makefile.am (EXTRA_DIST): Adjust.
9138
c095d689
AD
91392006-03-10 Akim Demaille <akim@lrde.epita.fr>
9140
9141 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9142 even if empty.
9143 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9144 * doc/bison.texinfo (Calc++ Scanner): Use it.
9145
6e0f8287
PE
91462006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9147
9148 Fix two nits reported by twlevo, plus one more that I discovered.
9149
9150 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9151 this is the usual Bison style.
9152 * src/location.h (location_print): Likewise.
9153
9154 * src/reader.h (token_name): Likewise.
9155
d6b771c3
PE
91562006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9157
9158 Fix some nits reported by twlevo.
9159 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9160 and "POSIX". Use more-modern syntax for URLs. Mention C++
9161 and ask for Java. Don't hardwire OS version numbers. Add
9162 copyright notice.
9163 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9164 * src/conflicts.c (solved_conflicts_obstack): Now static.
9165
1e137b71
JD
91662006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9167
9168 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9169 page. Say "you can use it" not "you may use it" as on the web page;
9170 we're describing capabilities not granting permission.
9171
73f2e47e
PE
91722006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9173
6d05403d
PE
9174 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9175 shadowing warnings. Use usual patter for iterating through RHS.
9176 * tests/glr-regression.at
9177 (Uninitialized location when reporting ambiguity):
9178 Modify yylex so that it uses its argument, rather than trying
9179 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9180 const char -> char const.
9181
73f2e47e
PE
9182 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9183 Don't use tabs inside commands; it messes up 'ps'.
9184 Problem reported by twlevo.
9185
8710fc41
JD
91862006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9187
9188 * tests/glr-regression.at (Uninitialized location when reporting
9189 ambiguity): New test case.
9190 * data/glr.c (yyresolveLocations): New function, which uses
9191 YYLLOC_DEFAULT.
9192 (yyresolveValue): Invoke yyresolveLocations before reporting an
9193 ambiguity.
9194 * doc/bison.texinfo (Default Action for Locations): Note
9195 YYLLOC_DEFAULT's usage for ambiguity locations.
9196 (GLR Semantic Actions): Cross-reference those notes.
9197
ae952af2
JD
91982006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9199
9200 * tests/glr-regression.at (Leaked semantic values when reporting
9201 ambiguity): Remove unnecessary union and type declarations.
9202 (Leaked lookahead after nondeterministic parse syntax error): New test
9203 case.
9204 * data/glr.c (yyparse): Check for zero stacks remaining before
9205 attempting to shift the lookahead so that you don't lose it.
9206
35ee866a
JD
92072006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9208
9209 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9210 * tests/glr-regression.at (Leaked semantic values when reporting
9211 ambiguity): New test case.
9212 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9213 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9214 now unnecessary yystackp parameter.
9215 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9216 destructors can be called.
9217
9218 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9219 in existing testcases.
9220
520181ab
JD
92212006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9222
9223 Don't leak semantic values for parent RHS when a user action cuts the
9224 parser, and clean up related code a bit.
9225 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
9226 cuts parse): Rename to...
9227 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
9228 for leaked parent RHS values.
9229 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9230 between an unresolved state (non-empty chain of semantic options) and
9231 an incomplete one (signaled by an empty chain).
ae952af2 9232 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
9233 successfully or unsuccessfully resolved yyGLRState to...
9234 (yyresolveValue): ... here so that yyresolveValue always leaves a
9235 yyGLRState with consistent data and thus is easier to understand.
9236 Remove the yyvalp and yylocp parameters since they are always just
9237 taken from the yys parameter. When reporting a discarded merged value
9238 in debugging output, note that it is incompletely merged. Document the
9239 interface.
9240 (yyresolveAction): If resolving any of the RHS states fails, destroy
9241 them all rather than leaking them. Thus, as long as user actions are
9242 written to clean up the RHS correctly, yyresolveAction always cleans up
9243 the RHS of a semantic option. Document the interface.
9244
18d9185c
PE
92452006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9246
9247 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9248 led to a segmentation fault in GNU Pascal. Problem reported
9249 by Waldek Hebisch.
9250
841a7737
JD
92512006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9252
9253 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9254 mid-rule action inside a nonterminal symbol in order to declare a
9255 destructor for its semantic value.
9256
fc3f467f
PE
92572006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9258
9259 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9260 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9261 __cplusplus && ! defined _STDLIB_H && !
9262 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9263 defined free))]: Include <stdlib.h> rather than rolling our own
9264 declarations of malloc and free, to avoid problems with
9265 incompatible declarations (using 'throw') C++'s stdlib.h. This
9266 should fix Debian bug 340012
9267 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9268 reported by Guillaume Melquiond.
9269
a3af26dd
PE
92702006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9271
4d7bc38c
PE
9272 * NEWS: Clarify symbols versus types in unused-value warnings.
9273
a3af26dd
PE
9274 * configure.ac (AC_INIT): Bump version number.
9275
4e26c69e
PE
92762006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9277
9278 * NEWS: Version 2.1a.
9279 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9280 since C99 requires this.
9281
498e897c
PE
92822006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9283
9284 * m4/c-working.m4: New file.
9285 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9286
57bb17ca
PE
92872006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9288
9289 * Makefile.maint: Merge from coreutils.
9290
0be105dc
PE
92912006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9292
9293 More portability fixes for problems summarized by Nelson H. F. Beebe.
9294
9295 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9296 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9297 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9298 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9299 messes up because C++ code is compiled in 32-bit mode but linked
9300 in 64-bit mode.
9301
6fc0c024
PE
93022006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9303
9304 More portability fixes for problems summarized by Nelson H. F. Beebe.
9305
7870f699
PE
9306 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9307 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9308
6fc0c024
PE
9309 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9310 nodist_PROGRAMS, since we don't need to actually compile the
9311 example if we're just doing a plain 'make'. This avoids bothering
9312 the installer unnecessarily about problems due to weird C++
9313 compilers.
9314
fe6c2fde
PE
93152006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 More portability fixes for problems summarized by Nelson H. F. Beebe.
9318
9319 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9320 than #include "...", and compile with -I'.'. The old method was
9321 not portable, according to Posix and the C standard, and it does
9322 not work with Sun C 5.7, where previous #line directives affect
9323 the working directory used in later #include "..." directives.
9324
927b425b
JMG
93252006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9326
9327 Various DJGGP specific issues in /djgpp
9328
d9735e9e
PE
93292006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9330
9331 More portability fixes for problems summarized by Nelson H. F. Beebe.
9332
9333 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9334 '#include <map>' works and that you can apply ++ to iterators.
9335
5a6755af
PE
93362006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9337
67a0dc4f
PE
9338 Work around portability problems summarized by Nelson H. F. Beebe in
9339 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9340
8c86f0ef
PE
9341 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9342 that '#include <string>' works.
9343
de35dd59
PE
9344 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9345 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9346 "warning: sorry: semantics of inline function static data `const
9347 unsigned char translate_table[262]' are wrong (you'll wind up with
9348 multiple copies)".
9349
67a0dc4f
PE
9350 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9351 or, xor to not_, and_, or_, and xor_, respectively. This works
9352 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9353 random system header somewhere that includes the equivalent of
9354 <iso646.h>.
9355
5a6755af
PE
9356 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9357 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 9358 Suite Version 2.0.
5a6755af 9359
3f001415
JD
93602006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9361
9362 During deterministic GLR operation, user actions should be able to
9363 influence the parse by changing yychar. To make this easier to fix and
9364 to make glr.c easier to evolve in general, don't maintain yytoken in
9365 parallel with yychar; just compute yytoken when needed.
9366 * tests/glr-regression.at (Incorrect lookahead during deterministic
9367 GLR): Check that setting yychar in a user action has the intended
9368 effect.
9369 * data/glr.c (yyGLRStack): Remove yytokenp member.
9370 (yyclearin): Don't set *yytokenp.
9371 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9372 yychar rather than *yytokenp to determine the current lookahead.
9373 Compute yytoken locally when needed.
9374 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9375 point to.
9376
9377 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9378 after `--report' documentation.
9379
e2a8c0f5
PE
93802006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9381
9382 * src/parse-gram.y (grammar_declaration): Location of printer
9383 symbol is @1, not list->location. Bug reported by twlevo.
9384 * tests/input.at (Incompatible Aliases): Adjust to above change.
9385
6b702268
PE
93862006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9387
27622431
PE
9388 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9389 all the test at once. This makes the output easier to read in the
9390 normal case.
9391
6b702268
PE
9392 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9393 got from <http://bro-ids.org/download.html>. The bug is that
9394 when two actions appeared in succession, the second one was
9395 scanned before the first one was added to the grammar rule
9396 as a midrule action. Bison then output the incorrect warning
9397 "parse.y:905.17-906.36: warning: unused value: $3".
9398 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9399 associated with a value.
9400 (rhs): Don't invoke grammar_current_rule_action_append.
9401 (action): Invoke it here instead.
9402 * src/reader.c (grammar_midrule_action): Now extern.
9403 (grammar_current_rule_action_append): Don't invoke
9404 grammar_midrule_action; that is now the scanner's job.
9405 * src/reader.h (last_string, last_braced_code_loc):
9406 (grammar_midrule_action): New decls.
9407 * src/scan-gram.l (last_string): Now extern, sigh.
9408 (last_braced_code_loc): New extern variable.
9409 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9410 rule already has an action.
9411 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9412 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9413 Add some tests to check that the above changes fixed the bug.
9414
d40ba6c2
PE
94152006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9416
9417 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9418 All used changed. Check whether the symbol has a destructor,
9419 not whether it is typed.
9420 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9421 that the values are still reported as unused. All line numbers
9422 adjusted.
9423
401aace6
PE
94242006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9425
9426 Work around a bug in bro 0.8, which underparenthesizes its
9427 definition of YYLLOC_DEFAULT.
9428 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9429 their arguments.
9430 * data/lalr1.cc: Likewise.
9431 * data/yacc.cc: Likewise.
9432
06f01bc4
PE
94332006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9434
401aace6
PE
9435 Work around a bug in Pike 7.0, and give the Pike folks a
9436 better way to override the usual int widths.
9437 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9438 user can override the types.
9439 (short): #undef, to work around a bug in Pike 7.0.
9440 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9441 (union yyalloc.yyss): Use yytype_int16 rather than short.
9442 All uses changed.
9443 (yysigned_char): Remove.
9444 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9445 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9446 * tests/regression.at (Web2c Actions): Adjust to above changes.
9447
9448 * src/reader.c (check_and_convert_grammar): New function.
9449 (reader): Close the input file even if something went wrong during
9450 parsing. Minor file descriptor leak reported by twlevo.
9451
06f01bc4
PE
9452 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9453 to pacify gcc -Wswitch-default.
9454 * src/scan-gram.l (adjust_location): Use a default: break; case
9455 to pacify gcc -Wswitch-default.
9456 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9457 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9458 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9459 Move these decls to scan-skel.l, since they don't need to be
9460 visible elsewhere.
9461 * src/scan-skel.l: Accept the above decls.
9462 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9463 is used.
9464
02650b7f
PE
94652006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9466
9467 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9468 since we don't want to insist on a version number at the start
9469 of the changelog every time.
9470 * Makefile.maint: Sync from coreutils a bit better.
9471 (sc_trailing_blank): Renamed from sc_trailing_space.
9472 All uses changed.
9473 (sc_no_if_have_config_h, sc_require_config_h):
9474 (sc_prohibit_assert_without_use): New rules.
9475 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9476 (sc_dd_max_sym_length): Fix leading spaces in rule.
9477 (sc_system_h_headers): Prefix with @.
9478 (sc_useless_cpp_parens, m4-check): Output line numbers.
9479 (changelog-check): Allow version only in head.
9480 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9481 satisfy new Makefile.maint rule.
9482 * data/glr.c: Likewise.
9483 * data/glr.cc: Likewise.
9484 * data/lalr1.cc: Likewise.
9485 * data/yacc.c: Likewise.
9486 * lib/ebitsetv.c: Likewise.
9487 * lib/lbitset.c: Likewise.
9488 * lib/subpipe.c: Likewise.
9489 * lib/timevar.c: Likewise.
9490 * src/system.h: Likewise.
9491 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9492 * djgpp/Makefile.maint: Add copyright notice.
9493 * djgpp/README.in: Likewise.
9494 * djgpp/config.bat: Likewise.
9495 * djgpp/config.site: Likewise.
9496 * djgpp/config_h.sed: Likewise.
9497 * djgpp/djunpack.bat: Likewise.
9498 * djgpp/config.sed: Fix copyright notice to match standard format.
9499 * djgpp/subpipe.h: Likewise.
9500 * lib/bitsetv-print.c: Likewise.
9501 * lib/bitsetv.c: Likewise.
9502 * lib/subpipe.h: Likewise.
9503 * lib/timevar.c: Likewise.
9504 * lib/timevar.h: Likewise.
9505 * djgpp/subpipe.c: Use standard recipe for config.h.
9506 * lib/abitset.c: Likewise.
9507 * lib/bitset.c: Likewise.
9508 * lib/bitset_stats.c: Likewise.
9509 * lib/bitsetv-print.c: Likewise.
9510 * lib/bitsetv.c: Likewise.
9511 * lib/ebitsetv.c: Likewise.
9512 * lib/get-errno.c: Likewise.
9513 * lib/lbitset.c: Likewise.
9514 * lib/subpipe.c: Likewise.
9515 * lib/timevar.c: Likewise.
9516 * lib/vbitset.c: Likewise.
9517 * tests/local.at: Likewise.
9518 * src/scan-gram.l: Don't include verify.h, since system.h does
9519 that for us.
9520 * .x-sc_require_config_h: New file.
9521 * .x-sc_unmarked_diagnostics: New file.
9522
287c78f6
PE
95232006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9524
287c78f6
PE
9525 Be a bit more systematic about using 'abort'.
9526 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9527 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9528 Put 'default: abort ();' before some other case, to satisfy older
9529 pedantic compilers.
9530 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9531 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9532 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9533 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
9534 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9535 (get_decision_str, get_orientation_str, get_node_alignment_str):
9536 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9537 (get_linestyle_str, get_arrowstyle_str): Likewise.
9538 * src/conflicts.c (resolve_sr_conflict):
9539 Use a default case rather than one for the one remaining enum
9540 value, to catch invalid enum values as well.
9541 * src/lalr.c (set_goto_map, map_goto):
9542 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9543 * src/nullable.c (nullable_compute, token_definitions_output):
9544 Likewise.
9545 * src/reader.c (packgram, reader): Likewise.
9546 * src/state.c (transitions_to, state_new, state_reduction_find):
9547 Likewise.
9548 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9549 (symbol_pack): Likewise.
9550 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
9551 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9552 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
9553 * src/system.h: Don't include <assert.h>.
9554 (assert): New macro.
9555
9556 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9557 (Destructor Decl, Parser Function, Pure Calling):
9558 Describe rules for braces inside C code more carefully.
287c78f6 9559
c66dfadd
PE
95602006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9561
c21493b8
PE
9562 Fix some porting glitches found by Nelson H. F. Beebe.
9563 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9564 compilers that don't understand that abort () does not return.
9565 * src/state.c (transitions_to): Likewise.
9566 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9567 that '#include <cstdlib>' works.
9568 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9569 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9570 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9571 for the benefit of some pre-C99 compilers.
9572
b6e3facf
PE
9573 * bootstrap: Undo changes to gnulib files that autoreconf made.
9574
c66dfadd
PE
9575 Minor fixups to get 'make maintainer-check' to work.
9576 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9577 with the new verify.h implementation.
9578 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9579 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9580 * data/yacc.c (YYUSE): Likewise.
9581 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9582 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9583 * src/parse-gram.y (declaration): Don't pass a string constant
9584 to a function that expects char *, since GCC might complain
9585 about the constant value.
9586 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9587 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9588 before #defining them.
9589 * tests/glr-regression.at
9590 (Incorrectly initialized location for empty right-hand side in GLR):
9591 In yyerror, use the msg arg.
9592 (Corrupted semantic options if user action cuts parse):
9593 (Incorrect lookahead during deterministic GLR):
9594 (Incorrect lookahead during nondeterministic GLR):
9595 Don't name a local var 'index'; it shadows string.h's 'index'.
9596
ed94ef2a
AD
95972006-01-19 Akim Demaille <akim@epita.fr>
9598
9599 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9600 location, not just parts of it.
9601
e9ad4aec
PE
96022006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9603
d6ca7905
PE
9604 * NEWS: Document the fact that multiple %unions are now allowed.
9605 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
9606 * TODO: This feature is now implemented, so remove it from
9607 the wishlist.
d6ca7905 9608
ef1b70e0
PE
9609 * Makefile.maint: Merge with coreutils Makefile.maint.
9610 (CVS_LIST): Use build-aux version if available.
9611 (VERSION_REGEXP): New macro.
9612 (syntax-check-rules): Add sc_no_if_have_config_h,
9613 sc_prohibit_assert_without_use, sc_require_config_h,
9614 sc_useless_cpp_parens.
9615 (sc_obsolete_symbols): Check for O_NDELAY.
9616 (sc_dd_max_sym_length): Track coreutils.
9617 (sc_unmarked_diagnostics): Look in all files, not just *.c.
9618 (sc_useless_cpp_parens): New rule.
9619 (news-date-check): Look for version or today's date.
9620 (changelog-check): Don't require version number near head.
9621 (copyright-check): Use current year instead of hardwiring 2005.
9622 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
9623 (announcement): Add --gpg-key-ID.
9624
9625 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
9626 with "file system".
9627
2073ce56 9628 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
9629 array. Problem reported by twlevo.
9630 * src/reader.c (packgram): Prepend a new sentinel before ritem.
9631 * src/lalr.c (build_relations): Rely on new sentinel.
9632 * src/gram.c (gram_free): Adjust to new sentinel.
9633
b7691f15
JD
96342006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
9635
9636 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
9637 yylookaheadNeeds. All uses updated.
9638 (yysplitStack): Rename local yynewLookaheadStatuses to
9639 yynewLookaheadNeeds.
9640 * data/glr-regression.at (Incorrect lookahead during nondeterministic
9641 GLR): In comments, change `lookahead status' to `lookahead need'.
9642
ddee1b06
PH
96432006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9644
9645 * data/glr.c (yysplitStack): A little stylistic rewrite.
9646
12f4614d
PH
96472006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9648
9649 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
9650
32c29292
JD
96512006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
9652
9653 * doc/bison.texinfo: Fix some typos.
9654 (GLR Semantic Actions): New subsection discussing special
9655 considerations because GLR semantic actions might be deferred.
9656 (Actions): Mention look-ahead usage of yylval.
9657 (Actions and Locations): Mention look-ahead usage of yylloc.
9658 (Special Features for Use in Actions): Add YYEOF entry and mention it
9659 in the yychar entry.
9660 In the yychar entry, remove mention of the local yychar case (pure
9661 parser) since this is irrelevant information when writing semantic
148d66d8 9662 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
9663 yychar is otherwise described as an external variable.
9664 In the yychar entry, don't call it the `current' look-ahead since it
9665 isn't when semantic actions are deferred.
9666 In the yychar and yyclearin entries, add note about deferred semantic
9667 actions.
9668 Add yylloc and yylval entries discussing look-ahead usage.
9669 (Look-Ahead Tokens): When discussing yychar, don't call it the
9670 `current' look-ahead, and do mention yylval and yylloc.
9671 (Error Recovery): Cross-reference `Action Features' when mentioning
9672 yyclearin.
148d66d8 9673 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
9674 look-ahead.
9675 In the yylloc and yylval entries, mention look-ahead usage.
9676
de366a2f 96772006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
9678
9679 * tests/glr-regression.at: Update copyright year to 2006.
9680
bf70fa87
JD
96812006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9682
9683 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
9684 use during nondeterministic operation to track which stacks have
9685 actually needed the current lookahead.
9686 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
9687 Allocate, deallocate, resize, and otherwise shuffle space for
9688 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
9689 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
9690 appropriately during nondeterministic operation.
9691 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
9692 members to store the current lookahead to be used by the deferred
9693 user action.
9694 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
9695 from which the RHS is taken. Set the lookahead members of the new
9696 yySemanticOption according to the lookahead status for stack yyk.
9697 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
9698 yyaddDeferredAction.
9699 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
9700 members of yySemanticOption before invoking yyuserAction, and then set
9701 them back to their current values afterward.
9702 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
9703 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
9704 * tests/glr-regression.at: Remove `.' from the ends of recent test case
9705 titles for consistency.
9706 (Leaked merged semantic value if user action cuts parse): In order to
9707 suppress lint warnings, use arguments in merge function, and assign
9708 char value < 128 in main.
9709 (Incorrect lookahead during deterministic GLR): New test case.
9710 (Incorrect lookahead during nondeterministic GLR): New test case.
9711
05449a2c
JD
97122006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9713
de366a2f 9714 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
9715 !yyvaluep as signal that no semantic value is available to print.
9716 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
9717 to print a semantic value.
9718
4158e0a1 97192006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 9720
4158e0a1
JD
9721 * tests/glr-regression.at: For consistency with my newer test cases,
9722 don't thank myself.
9723
d659304d
JD
97242006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
9725
9726 * data/glr.c (yyresolveValue): When merging semantic options, if at
9727 least one user action succeeds but a later one cuts the parse, then
9728 destroy the semantic value before returning rather than leaking it.
9729 (yyresolveStates): If a user action cuts the parse and thus
9730 yyresolveValue fails, ignore the (unset) semantic value rather than
9731 corrupting the yyGLRState, and empty the semantic options list since
9732 the user actions should have called all necessary destructors.
9733 Simplify code with YYCHK.
9734 * tests/glr-regression.at (Corrupted semantic options if user action
9735 cuts parse): New test case.
9736 (Undesirable destructors if user action cuts parse): New test case.
9737 Before applying any of this patch, this test case never actually failed
9738 for me... but only because the corrupted semantic options usually
9739 masked this bug.
9740 (Leaked merged semantic value if user action cuts parse): New test
9741 case.
9742
6ec2c0f2
AD
97432006-01-05 Akim Demaille <akim@epita.fr>
9744
9745 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
9746
1b9c21fb
PE
97472006-01-04 Paul Eggert <eggert@cs.ucla.edu>
9748
9749 * data/c.m4 (b4_c_modern): New macro, with a new provision for
9750 _MSC_VER. Problem reported by Cenzato Marco.
9751 (b4_c_function_def): Use it.
9752 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
9753 b4_c_modern.
9754 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
9755 than rolling our own.
9756
84866159
AD
97572006-01-04 Akim Demaille <akim@epita.fr>
9758
9759 Also warn about non-used mid-rule values.
9760 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9761 member.
9762 (symbol_list_new): Adjust.
9763 * src/reader.c (symbol_typed_p): New.
9764 (grammar_rule_check): Use it.
9765 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9766 Check its rule.
9767 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9768 Use it.
9769 * tests/actions.at (Exotic Dollars): Adjust.
9770
378f4bd8
AD
97712006-01-04 Akim Demaille <akim@epita.fr>
9772
9773 * src/reader.c (grammar_midrule_action): If $$ is set in a
9774 mid-rule, move the `used' bit to its lhs.
9775 * tests/input.at (Unused values): New.
9776 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9777
e2a21b6f
PE
97782006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9779
54662697
PE
9780 * doc/bison.texinfo (Bison Options): Say more accurately what
9781 --yacc does.
9782 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9783 about declarations in the grammar when in Yacc mode, as POSIX does
9784 not require a diagnostic when the grammar uses extensions.
9785
9786 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9787
073f9288
PE
9788 Warn about dubious constructions like "%token T T".
9789 Reported by twlevo.
9790 * src/symtab.h (struct symbol.declared): New member.
9791 * src/symtab.c (symbol_new): Initialize it to false.
9792 (symbol_class_set): New arg DECLARING, specifying whether
9793 this is a declaration that we want to warn about, if there
9794 is more than one of them. All uses changed.
9795
1221b78a
PE
9796 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9797 Allow multiple %union directives, whose contents concatenate.
9798 * src/parse-gram.y (grammar_declaration): Likewise.
9799 Use muscle_code_grow, so that we don't need stype_line any more.
9800 All uses changed.
9801
9802 * src/muscle_tab.c (muscle_grow): Fix comment.
9803
e2a21b6f
PE
9804 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9805 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9806 Update copyright year to 2006.
9807
8f7e3cf9
AD
98082006-01-03 Akim Demaille <akim@epita.fr>
9809
9810 Have glr.cc pass (some of) the calc.at tests.
9811 * data/glr.cc (b4_parse_param_orig): New.
9812 (b4_parse_param): Improve its definition, and bound it more
9813 clearly in the skeleton.
9814 (b4_epilogue): Append, instead of prepending, in order to keep
9815 #line consistency.
9816 Simplify the generation of auxiliary functions: locations and
9817 purity are mandated.
9818 (b4_global_tokens_and_yystype): Honor it.
9819 * data/location.cc (c++.m4): Don't include it.
9820 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9821 and AT_SKEL_CC_IF.
9822 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9823 AT_LALR1_CC_IF.
9824 Be sure to initialize the first position's filename.
9825 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9826 mandated anyway.
9827 (AT_CHECK_CALC_GLR_CC): New.
9828 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9829
3953ed88
AD
98302006-01-02 Akim Demaille <akim@epita.fr>
9831
9832 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9833 c.m4.
0a96ba81 9834 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
9835 * data/glr.cc: Do not include stack.hh.
9836
9ecafbbf
AD
98372006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9838
9839 * data/glr.c: Reformat whitespace with tabs.
9840 (b4_lpure_formals): Remove this unused m4 macro.
9841 * tests/cxx-type.at: Reformat whitespace with tabs.
9842 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9843 since it's a member. Rename type to isNterm for clarity.
9844
c4d497a0
AD
98452005-12-29 Akim <akim@sulaco.local>
9846
9847 Let glr.cc catch up with symbol_value_print.
9848 * data/glr.cc (b4_yysymprint_generate): Replace by...
9849 (b4_yy_symbol_print_generate): this.
9850 (yy_symbol_print, yy_symbol_value_print): Declare them.
9851
4517da37
PE
98522005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9853
9854 * src/location.h (boundary): Note that a line or column equal
9855 to INT_MAX indicates an overflow.
9856 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9857 (rule_length_overflow, increment_rule_length, add_column_width):
9858 New functions.
9859 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9860 (<SC_BRACED_CODE>"}"):
9861 Use increment_rule_length rather than incrementing it by hand.
9862 (adjust_location, handle_syncline): Diagnose overflow.
9863 (handle_action_dollar, handle_action_at):
9864 Fix bug with monstrosities like $-2147483648.
9865 Remove now-unnecessary checks.
9866 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9867 (convert_ucn_to_byte): Verify assumptions.
9868 (handle_syncline): New arg LOC. All callers changed.
9869 Don't store through a value derived from char const * pointer.
9870
9871 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9872 GCC warnings.
9873
e3233bf6
PE
98742005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9875
9876 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9877 Remove unnecessary forward static decls.
9878
8f3596a6
AD
98792005-12-27 Akim Demaille <akim@epita.fr>
9880
9881 * src/reader.c (grammar_current_rule_check): Also check that $$
9882 is used.
9883 Take the rule to check as argument, hence rename as...
9884 (grammar_rule_check): this.
9885 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9886 Rename as...
9887 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9888 (grammar_midrule_action, grammar_symbol_append): Now static.
9889 * tests/torture.at (input): Don't rely on the default action
9890 being always performed.
9891 * tests/calc.at: "Set" $$ even when the action is "cut" with
9892 YYERROR or other.
9893 * tests/actions.at (Exotic Dollars): Instead of using unused
9894 values, check that the warning is issued.
9895
721be13c
PE
98962005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9897
9898 * NEWS: Improve wording for unused-value warnings.
9899
a0af42fc
AD
99002005-12-22 Akim Demaille <akim@epita.fr>
9901
9902 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9903 (b4_yysymprint_generate): Rename as...
9904 (b4_yy_symbol_print_generate): this.
9905 Generate yy_symbol_print instead of yysymprint.
9906 Generate also yy_symbol_value_print, and use it.
9907
affac613
AD
99082005-12-22 Akim Demaille <akim@epita.fr>
9909
721be13c 9910 * NEWS: Warn about unused values.
affac613
AD
9911 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9912 a `used' member.
9913 (symbol_list_n_get, symbol_list_n_used_set): New.
9914 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9915 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9916 * src/reader.c (grammar_current_rule_check): Check that values are
9917 used.
9918 * src/symtab.c (symbol_print): Accept 0.
9919 * tests/existing.at: Remove the type information.
9920 Empty the actions.
9921 Remove useless actions (beware of mid-rule actions: perl -000
9922 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9923 * tests/actions.at (Exotic Dollars): Use unused values.
9924 * tests/calc.at: Likewise.
9925 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9926 Likewise.
9927
9928 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9929 rule_useful_p.
9930
9d9b8b70
PE
99312005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9932
8bb4c753
PE
9933 Undo 2005-12-01 tentative license wording change. The wording is
9934 still being reviewed by the lawyers, and we don't want to wait for
9935 them before publishing a test release. For now, revert to the
9936 previous wording.
9937 * NEWS: Undo 2005-12-01 change.
9938 * data/glr.c: Revert to previous license wording.
9939 * data/glr.cc: Likewise.
9940 * data/lalr1.cc: Likewise.
9941 * data/location.cc: Likewise.
9942 * data/yacc.c: Likewise.
9943
9d9b8b70
PE
9944 * NEWS: Reword %destructor vs YYABORT etc.
9945 * data/glr.c: Use American spacing, for consistency.
9946 * data/glr.cc: Likewise.
9947 * data/lalr1.cc: Likewise.
9948 * data/yacc.c: Likewise.
9949 * data/yacc.c: Reformat comments slightly.
9950 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9951 for consistency. Fix some spelling errors and reword recently-included
9952 text slightly.
9953 * tests/cxx-type.at: Cast results of malloc, for C++.
9954
2c3b392a
AD
99552005-12-21 Joel E. Denny <address@hidden>
9956
9957 * tests/cxx-type.at: Construct a tree, count the parents of shared
9958 nodes, and free each node once and only once. Previously, the memory
9959 for semantic values was leaked instead.
9960
d6cff4dc
AD
99612005-12-21 Joel E. Denny <address@hidden>
9962
9963 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9964 (yylval, yylloc): If pure, #define to yystackp->yyval and
9965 yystackp->yyloc similar to yychar and yynerrs.
9966 (yyparse): If pure, remove local yylval and yylloc. Add local
9967 yystackp to accommodate pure definitions of yylval and yylloc.
9968 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9969 yylvalp and yyllocp to &yylval and &yylloc.
9970 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9971 namespace. Previously, nerrs and char were missing, but lval and lloc
9972 weren't necessary.
9973 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9974 yylvalp and yyllocp parameters since, if pure, these are now always
9975 accessible through yystackp. If not pure, they are still accessible
9976 globally.
9977 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9978 `if (YYID (N))' to pacify lint.
9979
a85284cf
AD
99802005-12-21 Akim Demaille <akim@epita.fr>
9981
9982 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9983 destroy the RHS symbols of a rule.
9984 * data/yacc.c (yylen): Initialize to 0.
9985 Keep its value to the number of items to possibly shift.
9986 In particular, a regular successful parse that ends on YYFINAL by
9987 a (internal) YYACCEPT must not have yylen != 0.
9988 (yyerrorlab, yyreturn): Pop the RHS.
9989 Reorder a bit to emphasize the `shifting' bits of code.
9990 (YYPOPSTACK): Now accept a number of items to pop.
9991 * data/lalr1.cc: Likewise.
9992 * data/glr.c: Formatting changes.
9993 Use goto instead of fall through.
9994 * doc/bison.texinfo (Destructor Decl): Complete.
9995
d508c281
JMG
99962005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9997
9998 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9999 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10000 * djgpp/config.bat: Replace every occurence of the file name
10001 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10002 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10003 * djgpp/config.sed: Replace every occurence of the file name
10004 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10005 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10006 * djgpp/djunpack.bat: DJGPP specific file.
10007 * djgpp/fnchange.lst: DJGPP specific file.
10008 * djgpp/README.in: Add new information about how to unpack the bison
10009 source on MSDOS and other systems which have 8.3 file name restrictions
10010 using djunpack.bat and fnchange.lst.
10011
3e7a2cd9
PE
100122005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10013
10014 * bootstrap (build_cvs_prefix): Remove; unused.
10015 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10016 when getting gnulib.
10017
100182005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10019
10020 * data/glr.c: Reorder typedef declarations for structs to match order
10021 of struct declarations.
10022 Rename yystack everywhere to yystackp except in yyparse where it's not
10023 a pointer.
10024 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10025 consistency.
10026 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10027 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10028 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10029 lint.
10030
877519f8
PE
100312005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10032
0eca5a39
PE
10033 * tests/sets.at (Accept): Fix typos in regular expression used to
10034 sed out the final state number.
10035
2cec9080
PE
10036 Work around portability problem on Solaris 10: flex-generated
10037 files include <stdio.h> before <config.h>, which messes up
10038 because the latter defines __EXTENSIONS__. Address the problem
10039 by creating two new little files that include <config.h> first,
10040 then include the flex-generated files. Rewrite everyone else
10041 to include <config.h> first, as well.
10042 * lib/timevar.c: Always include "config.h".
10043 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10044 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10045 (EXTRA_bison_SOURCES): New macro.
10046 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10047 * src/system.h: Don't include config.h.
10048 * src/LR0.c: Include <config.h> first.
10049 * src/assoc.c: Likewise.
10050 * src/closure.c: Likewise.
10051 * src/complain.c: Likewise.
10052 * src/conflicts.c: Likewise.
10053 * src/derives.c: Likewise.
10054 * src/files.c: Likewise.
10055 * src/getargs.c: Likewise.
10056 * src/gram.c: Likewise.
10057 * src/lalr.c: Likewise.
10058 * src/location.c: Likewise.
10059 * src/main.c: Likewise.
10060 * src/muscle_tab.c: Likewise.
10061 * src/nullable.c: Likewise.
10062 * src/output.c: Likewise.
10063 * src/parse-gram.y: Likewise.
10064 * src/print.c: Likewise.
10065 * src/print_graph.c: Likewise.
10066 * src/reader.c: Likewise.
10067 * src/reduce.c: Likewise.
10068 * src/relation.c: Likewise.
10069 * src/state.c: Likewise.
10070 * src/symlist.c: Likewise.
10071 * src/symtab.c: Likewise.
10072 * src/tables.c: Likewise.
10073 * src/uniqstr.c: Likewise.
10074 * src/vcg.c: Likewise.
10075
877519f8
PE
10076 * src/parse-gram.y: Fix minor problems uncovered by lint.
10077 (current_lhs, current_lhs_location): Now static.
10078 (current_assoc): Remove unused variable.
10079
10080 Cleanups so that Bison-generated parsers have less lint.
10081 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10082 Prepend /*ARGSUSED*/, for lint's sake.
10083 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10084 definition if 'lint' is defined.
10085 (YYID): New macro (or function, if lint).
10086 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10087 * data/yacc.c: Likewise.
10088 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10089 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10090 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10091 is C++ only.
10092 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10093 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10094 Use YYID(0) rather than 0, for lint.
10095 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10096 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10097
f5228370
PE
100982005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10099
10100 * tests/glr-regression.at
10101 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10102 Close memory leak reported by twlevo.
10103
69ce078b
PE
101042005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10105
6ff99711
PE
10106 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10107 all stacks.
10108 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
10109 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10110 New test case.
10111 (Duplicated user destructor for lookahead): This test now is expected
10112 to succeed.
10113
af3412cd
PE
101142005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10115
32b5b719 10116 * NEWS: Document the following change.
af3412cd
PE
10117 * data/yacc.c: Say "parser skeleton" rather than "file", since
10118 it's no longer just a file.
10119 * data/glr.c: Grant a special exception for C GLR parsers, that
10120 reads like the already-existing exception for C LALR(1) parsers.
10121 * data/glr.cc: Likewise.
10122 * data/lalr1.cc: Likewise.
10123 * data/location.cc: Likewise.
10124 * data/yacc.c: Reword the "written by" statement to clarify that
10125 it was the parser skeleton, not the entire output file.
10126 * data/glr.c: Written by Paul Hilfinger.
10127 * data/glr.cc: Written by Akim Demaille.
10128 * data/lalr1.cc: Likewise.
10129
035aa4a0
PE
101302005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10131
d9963c85
PE
10132 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10133 Fix typos in previous change that broke 'make check'.
10134 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10135 supported in C.
10136 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10137 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10138 We can revert this once things settle down.
10139
035aa4a0
PE
10140 * src/conflicts.c (conflicts_print): Don't print file name twice
10141 when %expect fails because there were no conflicts.
10142 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10143 change.
10144 * tests/conflicts.at (%expect not enough, %expect too much):
10145 (%expect with reduce conflicts): Adjust to new behavior.
10146
101472005-11-18 Akim Demaille <akim@epita.fr>
10148
10149 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10150 errors.
10151 * NEWS: Document this.
10152 * doc/bison.texinfo (Expect Decl): Likewise.
10153
d1ff7a7c
AD
101542005-11-16 Akim Demaille <akim@epita.fr>
10155
10156 Generalize the display of semantic values and locations in traces.
10157 * data/glr.c (yy_reduce_print): Fix indices (again).
10158 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10159 literal integers.
10160 * data/lalr1.cc (yyreduce_print): Rename as...
10161 (yy_reduce_print): this.
10162 Display values and locations.
10163 * data/yacc.c (yy_reduce_print): Likewise.
10164 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10165 (yysymprint): Move higher to be visible from yy_reduce_print).
10166 (yyparse): Adjust.
10167 * tests/calc.at: Adjust the expected length of the traces.
10168
6de5398d
AD
101692005-11-14 Akim Demaille <akim@epita.fr>
10170
10171 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10172 from 1 to N, while values and location start at 0.
10173 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10174
a1373f55
AD
101752005-11-14 Akim Demaille <akim@epita.fr>
10176
10177 * data/glr.c (yy_reduce_print): Fix the $ number.
10178
613d8952
AD
101792005-11-14 Akim Demaille <akim@epita.fr>
10180
10181 "Use" parse parameters.
10182 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10183 * data/glr.c, data/glr.cc: Use them.
10184 * data/glr.c (YYUSE): Have a C++ definition that supports
10185 non-pointer types.
10186
b2741627
AD
101872005-11-14 Akim Demaille <akim@epita.fr>
10188
10189 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10190
5059b5c8
AD
101912005-11-14 Akim Demaille <akim@epita.fr>
10192
42249483
AD
10193 * data/glr.cc: New.
10194 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 10195
4626a15d
AD
101962005-11-12 Akim Demaille <akim@epita.fr>
10197
10198 Let position and location be PODs.
10199 * data/location.cc (position::initialize, location::initialize): New.
10200 (position::position, location::location): Define only if
10201 b4_location_constructors is defined.
10202 * data/lalr1.cc (b4_location_constructors): Define it for backward
10203 compatibility.
10204 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10205
102062005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
10207
10208 * data/lalr1.cc: Move the body of the ctor and dtor into the
10209 parser file (instead of the header).
10210 Wrap the implementations in a "namespace yy".
10211
102122005-11-12 Akim Demaille <akim@epita.fr>
10213
10214 Have glr.c include its header file when created.
10215 * data/glr.c (b4_shared_declarations): New.
10216 Output them verbatim in the parser if !%defines, otherwise
10217 output then in the header file, and include it instead.
10218
1989d947
AD
102192005-11-11 Akim Demaille <akim@epita.fr>
10220
10221 * data/glr.c: Comment changes.
10222
102232005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
10224
10225 When yydebug, report semantic and location values for reductions.
10226 * data/glr.c (yy_reduce_print): Report the semantic values and the
10227 locations.
10228 (YY_REDUCE_PRINT): Adjust.
10229 (yyglrReduce): Use them.
10230 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10231 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10232 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10233 traces.
10234
02998094
AD
102352005-11-10 Akim Demaille <akim@epita.fr>
10236
10237 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10238 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10239 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10240
5210672f
PE
102412005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10242
10243 * m4/cxx.m4, examples/Makefile.am: Don't build
10244 examples/calc++ if no C++ compiler is available. (trivial change)
10245
a8991a1d
AD
102462005-11-09 Akim Demaille <akim@epita.fr>
10247
10248 * src/scan-skel.l: Use a couple of asserts.
10249
36b5e963
AD
102502005-11-03 Akim Demaille <akim@epita.fr>
10251
10252 In some (weird) cases, the final state number is incorrect.
10253 Reported by Alexandre Duret-Lutz.
10254 * src/LR0.c (state_list_append): Remove the computation of
10255 final_state.
10256 (save_reductions): Do it here.
10257 (get_state): Alpha conversion.
10258 (generate_states): Use a for loop.
10259 * src/gram.h (item_number_is_rule_number)
10260 (item_number_is_symbol_number): New.
10261 * src/state.c: Use assert.
10262 * src/system.h: Include assert.h.
10263 * tests/sets.at (Accept): New.
10264
44e7ead1
PH
102652005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10266
10267 * data/glr.c (yyfill): Adjust comment.
36b5e963 10268 (yyresolveAction): Initialize default location properly
44e7ead1
PH
10269 for empty right-hand sides.
10270 (yydoAction): Ditto.
10271 Add comment explaining apparently dead code.
36b5e963
AD
10272 * tests/glr-regression.at
10273 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 10274 New test.
36b5e963 10275
e10a80ee
PE
102762005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10277
10278 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10279 gnulib when interrupted. This fixes some race conditions and
10280 works around some portability problems (one noted by Paul
10281 Hilfinger).
10282
067b32ee
AD
102832005-10-22 Akim <akim@epita.fr>
10284
10285 * Makefile.cfg: Adjust to config -> build-aux.
10286 Reported by twledo.
10287
4b367315
AD
102882005-10-21 Akim Demaille <akim@epita.fr>
10289
10290 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10291 the %parse-params.
10292 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10293 * data/yacc.c (b4_Pure_if): Rename as...
10294 (b4_yacc_pure_if): this.
10295 (YY_SYMBOL_PRINT, yyparse): Adjust.
10296 * doc/bison.texinfo: Formatting changes.
10297
24cc23d9
AD
102982005-10-21 Akim Demaille <akim@epita.fr>
10299
10300 Finish the transition config -> build-aux.
10301 * configure.ac, Makefile.am: Use build-aux.
10302 * config/prev-version, config/announce-gen, config/Makefile.am:
10303 Move to...
10304 * build-aux/prev-version, build-aux/announce-gen,
10305 * build-aux/Makefile.am: here.
10306
d4476375
AD
103072005-10-14 Akim Demaille <akim@epita.fr>
10308
10309 * examples/calc++/test: Use set -x only when VERBOSE.
10310
302c0aee
PE
103112005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10312
10313 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10314 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10315
7625ec2c
AD
103162005-10-13 Akim Demaille <akim@epita.fr>
10317
10318 * src/scan-skel.l: Output the base name parts of the parser and
10319 header file names.
302c0aee 10320 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
10321 additional checks.
10322 Use this to exercise C++ outputs in subdirs.
10323 Reported by Oleg Smolsky.
10324
ba0fe3c7
PE
103252005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10326
10327 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10328 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10329 Problem reported by John P. Hartmann.
10330 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10331 already defined it.
10332
9b8a5ce0
AD
103332005-10-12 Akim Demaille <akim@epita.fr>
10334
10335 * src/parse-gram.y (version_check): Exit 63 to please missing
10336 (stands for "version mismatch).
10337 * tests/input.at, doc/bison.texinfo: Adjust.
10338
4f6e011e
PE
103392005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10340
10341 Work around portability problems with Visual Age C compiler
10342 (xlc and xlC_r) reported by John P. Hartmann.
10343 * data/location.cc (initial_column, initial_line): Remove.
10344 All uses replaced by 0 and 1.
10345 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10346 that xlc complains about.
10347 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 10348 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 10349 as __STDC__.
4d7aa45e
PE
10350 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10351 __STDC_VERSION__. Use it everywhere instead of looking at
10352 __STDC__ and __cplusplus.
4f6e011e 10353
a1b3bf8c
AD
103542005-10-10 Akim Demaille <akim@epita.fr>
10355
10356 * examples/calc++/test: Be quiet unless VERBOSE.
10357
412e44aa
PE
103582005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10359
2a4647a3
PE
10360 * data/c.m4 (yydestruct, yysymprint):
10361 Use YYUSE instead of casting to void.
10362 * data/glr.c (YYUSE): New macro.
10363 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10364 Use it instead of rolling our own.
10365 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10366 (YYCHK1):
10367 Use /*CONSTCOND*/ to suppress lint warnings.
10368 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10369 (YY_STACK_PRINT): Use 'false' not '0'.
10370 (YYUSE): New macro.
10371 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10372 * data/yacc.c (YYUSE): New macro.
10373 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10374 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10375 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10376
10377
412e44aa
PE
10378 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10379 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10380
88c6637f
PE
103812005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10382
2f4f028d
PE
10383 Undo the parts of the unlocked-I/O change that substituted
10384 putc or puts for printf. This might hurt performance a bit,
10385 but some people prefer the printf style.
10386 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10387 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10388 All uses replaced by YYFPRINTF and YYDPRINTF.
10389 * data/yacc.c: Likewise.
10390 * lib/bitset.c (bitset_print): Likewise.
10391 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10392 putc and puts.
10393 * lib/lbitset.c (debug_lbitset): Likewise.
10394 * src/closure.c (print_firsts, print_fderives): Likewise.
10395 * src/gram.c (grammar_dump): Likewise.
10396 * src/lalr.c (look_ahead_tokens_print): Likewise.
10397 * src/output.c (escaped_output): Likewise.
10398 (user_actions_output): Break apart two printfs.
10399 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10400 * src/reduce.c (reduce_print): Likewise.
10401 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10402 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10403
88c6637f
PE
10404 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10405 Use assignments rather than casts-to-void to suppress
10406 unused-variable warnings. This pacifies 'lint'.
10407 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10408 unused-variable warnings.
10409
fb32e373
JMG
104102005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10411
10412 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10413
edb8f44f
PE
104142005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10415
fb9c0b33
PE
10416 Use unlocked I/O for a minor performance improvement on hosts like
10417 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10418 is to use the gnlib unlocked-io module, and to prefer putc and
10419 puts to printf when either will work (since the latter doesn't
10420 come in an unlocked flavor).
10421 * bootstrap (gnulib_modules): Add unlocked-io.
10422 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10423 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10424 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10425 and similarly for puts and putc and printf.
10426 * data/yacc.c: Likewise.
10427 * lib/bitset.c (bitset_print): Likewise.
10428 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10429 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10430 to printf.
10431 * lib/lbitset.c (debug_lbitset): Likewise.
10432 * src/closure.c (print_firsts, print_fderives): Likewise.
10433 * src/gram.c (grammar_dump): Likewise.
10434 * src/lalr.c (look_ahead_tokens_print): Likewise.
10435 * src/output.c (escaped_output): Likewise.
10436 (user_actions_output): Coalesce two printfs.
2f4f028d 10437 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
10438 * src/reduce.c (reduce_print): Likewise.
10439 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 10440 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 10441
edb8f44f
PE
10442 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10443 this confuses xgettext.
10444
b50d2359
AD
104452005-10-02 Akim Demaille <akim@epita.fr>
10446
10447 * bootstrap (gnulib_modules): Add strverscmp.
10448 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10449 * m4/.cvsignore: Add strverscmp.m4.
10450 * src/parse-gram.y (%require): New token, new rule.
10451 (version_check): New.
10452 * src/scan-gram.l (%require): Adjust.
10453 * tests/input.at (AT_REQUIRE): New.
10454 Use it.
10455 * doc/bison.texinfo (Require Decl): New.
10456 (Calc++ Parser): Use %require.
10457
21667f64
AD
104582005-10-02 Akim Demaille <akim@epita.fr>
10459
10460 * data/location.cc: New.
10461
2b81e969
AD
104622005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10463 Akim Demaille <akim@epita.fr>
10464
10465 Make sure -odir/foo.cc creates dir/location.hh etc.
10466 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10467 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10468 (spec_defines_file): Now const.
10469 (dir_prefix): New.
10470 (short_base_name): Remove.
10471 * src/files.c: Adjust.
10472 (dirname.h): Include.
10473 (base_name): Don't prototype it.
10474 (finput): Remove, duplicates gram_in.
10475 (full_base_name, short_base_name): Replace by...
10476 (all_but_ext, all_but_tab_ext): these.
10477 (compute_base_names): Rename as...
10478 (compute_file_name_parts): this.
10479 Update to compute the new variables, including dir_prefix.
10480 Adjust dependencies.
10481 * src/output.c (prepare): Output them.
10482 * src/reader.c: Adjust to use gram_in, not finput.
10483 * src/scan-skel.l (@dir_prefix@): New.
10484
ad6a9b97
JMG
104852005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10486
10487 * lib/subpipe.c: New function end_of_output_subpipe() added
10488 to allow support for non-posix systems. This is a no-op function
10489 for posix systems.
10490
10491 * lib/subpipe.h: New function end_of_output_subpipe() added
10492 to allow support for non-posix systems. This is a no-op function
10493 for posix systems.
10494
10495 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10496 handle the lack of pipe/fork functionality on non-posix systems.
10497
10498 * djgpp/Makefile.maint: DJGPP specific file.
10499
10500 * djgpp/README.in: DJGPP specific file.
10501
10502 * djgpp/config.bat: DJGPP specific configuration file.
10503
10504 * djgpp/config.sed: DJGPP specific configuration file.
10505
10506 * djgpp/config.site: DJGPP specific configuration file.
10507
10508 * djgpp/config_h.sed: DJGPP specific configuration file.
10509
10510 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10511
10512 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10513
fc695704
AD
105142005-10-02 Akim Demaille <akim@epita.fr>
10515
10516 * data/location.cc: New, extract from...
10517 * data/lalr1.cc: here.
10518 (location.hh): Include it after the user prologue, in case the
10519 filename type is defined by the user.
10520 Forward declation location and position before the pre-prologue.
10521 (yyresult_): Rename as...
10522 (yyresult): this, it's a local variable, not an attribute.
10523 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10524
105252005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
10526
10527 * examples/extexi: Restore the #line generation.
10528
fb9712a9
AD
105292005-09-30 Akim Demaille <akim@epita.fr>,
10530 Alexandre Duret-Lutz <adl@gnu.org>
10531
10532 Move the token type and YYSTYPE in the parser class.
10533 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10534 (parser::token): New, from the moved free definition of tokens.
10535 (parser::semantic_value): Now a full definition instead of an
10536 indirection to YYSTYPE.
10537 (b4_post_prologue): No longer included in the header file, but
10538 in the implementation file.
10539 * doc/bison.texi (C+ Language Interface): Update.
10540 * src/parse-gram.y: Support unary %define.
10541 * tests/actions.at: Define global_tokens_and_yystype for backward
10542 compatibility until we update the tests.
10543 * tests/calc.at: Idem.
10544 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10545 to simplify the code.
10546
55f0c7b1
PE
105472005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10548
10549 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10550 Ah, the good old days! Problem reported by Peter Klein.
10551 * bootstrap (gnulib_modules): Add strerror, strtoul.
10552 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10553 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10554
fb9712a9 105552005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
10556
10557 * data/c.m4 (b4_error_verbose_if): New.
10558 * data/lalr1.cc: Use it.
10559 (YYERROR_VERBOSE_IF): Remove.
10560 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10561 parser members, replaced by...
10562 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10563 local variables.
10564 (yysyntax_error_): Takes the state number as argument.
10565 (yyreduce_print_): Use the argument yyrule, not the former
10566 attribute yyn_.
10567
8a6f72f3
PE
105682005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10569
10570 * bootstrap (gnulib_modules): Add verify.
10571 * lib/.cvsignore: Add verify.h.
10572 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10573 * src/system.h (verify): Remove.
10574 Include verify.h instead.
10575 * src/tables.c (tables_generate): Use new API for 'verify'.
10576
0d50976f
PE
105772005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10578
ebc3737e
PE
10579 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10580 local variables whose names begin with 'yy'.
10581 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10582 Trivial changes from Joel E. Denny.
10583
0d50976f
PE
10584 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10585 it itself.
10586 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10587 don't use alloca any more.
10588
10589 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10590 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 10591 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
10592 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10593 to match yacc.c, to test more hosts.
10594
a05b79df
PE
105952005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10596
55289366
PE
10597 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10598 doesn't affect behavior.
10599 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10600 Solaris, AIX, MSC.
10601 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10602 This works a bit better with glibc, if user code has already included
10603 stdlib.h.
10604 * doc/bison.texinfo (Bison Parser): Document that users can't
10605 arbitrarily use malloc and free for other purposes. Document
10606 that <alloca.h> and <malloc.h> might be included.
10607 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
10608 user must declare alloca.
10609
a05b79df
PE
10610 * HACKING (release): Forwarn the Translation Project about
10611 stable releses.
10612
3ab2ca22
AD
106132005-09-20 Akim Demaille <akim@epita.fr>
10614
10615 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
10616
a9739e7c
PE
106172005-09-19 Paul Eggert <eggert@cs.ucla.edu>
10618
a702593e
PE
10619 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
10620 (YYSTACK_ALLOC_MAXIMUM): Use it.
10621 (yysyntax_error): New function.
10622 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
10623 multiple syntax errors are reported, and alloca is being used.
10624 Instead, reallocate buffers twice as big each time, so that
10625 we waste at most half the allocated memory. Start with a small
10626 (128-byte) buffer that will suffice in most cases anyway.
10627 Use yysyntax_error to do most of the work.
10628
10629 * doc/bison.texinfo (Error Reporting, Table of Symbols):
10630 yynerrs is the number of errors reported, not the number of
10631 errors encountered.
10632
a9739e7c
PE
10633 * tests/glr-regression.at (Duplicated user destructor for lookahead):
10634 Mark it as expected to fail.
10635 Cast result of malloc; problem reported by twlevo@xs4all.nl.
10636 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
10637 Don't start user-code symbols with "yy", to avoid name space problems.
10638
f479c6c6
AD
106392005-09-19 Akim Demaille <akim@epita.fr>
10640
10641 Remove the traits, failed experiment.
10642 It never proved useful, and anyway because of the current
10643 definition, it was not possible to have several specialization of
10644 this traits, making it useless.
10645 * data/lalr1.cc (yy:traits): Remove.
10646 Inline its definitions in the parser class.
10647
e2586f82
AD
106482005-09-19 Akim Demaille <akim@epita.fr>
10649
10650 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
10651 least Mac OSX with a /usr/local install of gettext.
10652
2e8cf949
AD
106532005-09-19 Akim Demaille <akim@epita.fr>
10654
10655 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
10656 and yytoken for similarity with the other skeletons.
10657
c7fb0b90
AD
106582005-09-19 Akim Demaille <akim@epita.fr>
10659
4e26c69e 10660 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 10661
1bd0deda
PE
106622005-09-16 Paul Eggert <eggert@cs.ucla.edu>
10663
10664 * NEWS: Version 2.1.
10665
10666 * NEWS: Remove notice of yytname change, since it was never in an
10667 official release.
10668 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
10669 diagnostic.
10670 * src/output.c (prepare): Likewise.
10671 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
10672 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
10673 is not defined. This is an awful hack, but it's enough for now.
10674 All callers changed.
10675 * tests/glr-regression-at (make_value): Args are const pointers now,
10676 to avoid GCC warning.
10677 (Duplicated user destructor for lookahead): New test. Currently
10678 skipped. It fails on my host but I'm not sure it'll always fail.
10679
106802005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
10681
10682 * src/symtab.h (struct symbol): Declare the printer and destructor
10683 as const, to avoid accidental calls to free.
10684 (symbol_destructor_set, symbol_printer_set): Adjust.
10685 * src/symtab.c: Adjust.
10686
1bd0deda 106872005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
10688
10689 * data/c.m4 (b4_token_enums): New.
10690 (b4_token_defines): Rename as...
10691 (b4_token_enums_defines): this.
10692 (b4_token_defines): New, output only the #defines.
10693 * data/yacc.c, data/glr.c: Adjust.
10694 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
10695 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
10696 as default values.
10697
dbcdae2d
AD
106982005-09-16 Akim Demaille <akim@epita.fr>
10699
10700 * data/lalr1.cc (yylex_): Remove, inline its code.
10701 (yyreport_syntax_error_): Remove, replaced by...
10702 (yysyntax_error_): this which returns a string and leaves to the
10703 caller the call to the users' error function.
10704 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
10705 Move from members of the parser object...
10706 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
10707 to local variables of the parse function.
10708
70d8f291
AD
107092005-09-16 Akim Demaille <akim@epita.fr>
10710
10711 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
10712 since it's in Bison's name space.
10713
b47dbebe
PE
107142005-09-15 Paul Eggert <eggert@cs.ucla.edu>
10715
ae199bf1
PE
10716 * data/glr.c (yyresolveValue): Add default case to pacify
10717 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
10718
b47dbebe
PE
10719 * NEWS: Document when yyparse started to return 2.
10720 * doc/bison.texinfo (Parser Function): Document when yyparse
10721 returns 2.
10722
10723 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
10724 (b4_filename_type): Renamed back from b4_file_name_type. All uses
10725 changed.
10726 (class position): file_name -> filename (reverting). All uses changed.
10727
107282005-09-14 Paul Eggert <eggert@cs.ucla.edu>
10729
10730 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
10731 do anything if $@ exists. This reverts part of the 2005-07-07
10732 patch.
10733
00292f66
PE
107342005-09-11 Paul Eggert <eggert@cs.ucla.edu>
10735
10736 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
10737 contains obsolete information and isn't worth distributing as a
10738 separate file anyway.
10739 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
10740 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
10741 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
10742 (yyparse): Abort if user code uses longjmp to throw an unexpected
10743 value.
10744
a420f962
PE
107452005-09-09 Paul Eggert <eggert@cs.ucla.edu>
10746
00292f66
PE
10747 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
10748 Suggested by twlevo@xs4all.nl.
10749
127287e9
PE
10750 * data/glr.c (YYCHK1): Do not assume YYE is in range.
10751 This avoids a diagnostic from gcc -Wswitch-enum.
10752 Problem reported by twlevo@xs4all.nl.
10753
a420f962
PE
10754 * doc/bison.texinfo: Don't use "filename", as per GNU coding
10755 standards. Use "file name" or "file" or "name", depending on
10756 the context.
10757 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10758 not to hack/foo.tab.c.
10759 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
10760 * data/glr.c: b4_filename -> b4_file_name.
10761 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10762 All uses changed.
10763 (class position): filename -> file_name. All uses changed.
10764 * data/yacc.c: b4_filename -> b4_file_name.
10765 * lib/bitset.h: filename -> file_name in local vars.
10766 * lib/bitset_stats.c: Likewise.
10767 * src/files.c: Likewise.
10768 * src/scan-skel.l ("@output ".*\n): Likewise.
10769 * src/files.c (file_name_split): Renamed from filename_split.
10770 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
10771
107722005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10773
10774 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10775 to accommodate latest gnulib.
10776
10777 * tests/glr-regression.at (Duplicate representation of merged trees):
10778 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10779
10780 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10781 needed.
10782
42a6501d
PE
107832005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10784
10785 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10786 All uses changed. Invoke user destructor after an error during a
10787 split parse (trivial change from Joel E. Denny).
10788
10789 * tests/glr-regression.at
10790 (User destructor after an error during a split parse): New test case.
10791 Problem reported by Joel E. Denny in:
10792 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10793
ef9a1faf
PE
107942005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10795
5b4aaf78
PE
10796 * README-cvs: Give URLs for recommended tools.
10797 Mention Gzip version problem, and bootstrapping issues.
10798 Remove troubleshooting section, as it's somewhat obsolete.
10799
b5240ba5
PE
10800 * bootstrap (no_cache): New var, to accommodate different wget
10801 variants. Use it instead of '-C off'. Problem reported by
10802 twlevo@xs4all.nl.
10803
ef9a1faf
PE
10804 * data/glr.c (yydestroyStackItem): New function.
10805 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10806 debugging information. Problem reported by Joel E. Denny.
10807
e6efa9da
AD
108082005-08-25 Akim Demaille <akim@epita.fr>
10809
10810 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10811
adc90f13
PE
108122005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10813
10814 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10815 Don't invoke destructor on unresolved entries.
10816 * tests/glr-regression.at
10817 (User destructor for unresolved GLR semantic value): New test case.
10818 Problem reported by Joel E. Denny in:
10819 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10820
f9315de5
PE
108212005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10822
15d29c1f
PE
10823 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10824 Add strnlen.c.
10825 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10826 lib-prefix.m4, po.m4.
10827
dd5f2af2
PE
10828 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10829 in yydestruct diagnostic, since it might not be an error.
10830 Problem reported by Joel Denny near end of
10831 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 10832 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
10833 * data/yacc.c (yyreturn): Likewise.
10834 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10835
10836 * src/files.c: Remove obsolete FIXME comment.
10837
10838 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10839 with the other templates, and to fix bogus run-on messages such
10840 as the one reported at the end of
10841 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10842 All callers changed to avoid the newline.
10843 (yyprocessOneStack): Output two lines rather than one, to accommodate
10844 the above change. This changes the debug output format slightly.
10845
f9315de5
PE
10846 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10847 reported by Joel E. Denny in
10848 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10849 (trivial change).
10850 * tests/glr-regression.at (Duplicate representation of merged trees):
10851 New test, from Joel E. Denny in:
10852 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10853 * THANKS: Add Joel E. Denny.
10854
10855 * configure.ac (AC_INIT): Bump to 2.0c.
10856
04098407
PE
108572005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10858
10859 * NEWS: Version 2.0b.
10860
ca5d2013
PE
10861 * Makefile.am (SUBDIRS): Put examples before tests, so that
10862 "make check" doesn't finish with "All 1 tests passed".
10863
3d54b576
PE
10864 * tests/regression.at (Token definitions): Don't rely on
10865 AT_PARSER_CHECK for data that contains backslashes. It currently
10866 uses 'echo', and 'echo' isn't portable if its argument contains
10867 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10868 that the byte '\0xff' is not printable in the C locale; it is,
10869 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10870 not printable, so use '\0x81' to test.
10871
d53ae497
PE
10872 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10873 version of GCC, since the macro is used with non-GCC compilers.
10874
fc01665e
PE
10875 Fix core dump reported by Pablo De Napoli in
10876 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10877 * tests/regression.at (Invalid inputs with {}): New test.
10878 * src/parse-gram.y (token_name): Translate type before using
10879 it as an index.
10880
04098407
PE
10881 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10882 the user's name space. All uses changed to __attribute__
10883 ((__unused__)).
10884 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10885 Add __attribute__ ((__noreturn__)).
10886
10887 * etc/clcommit: Remove. We weren't using it, and it failed
10888 "make maintainer-distcheck".
10889 * Makefile.maint: Merge from coreutils.
10890 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10891 (syntax-check-rules): Change list of rules as described below.
10892 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10893 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10894 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10895 (sc_trailing_space): New rules.
10896 (sc_xalloc_h_in_src): Remove.
10897 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10898 (sc_space_tab, sc_error_exit_success, sc_changelog):
10899 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10900 (makefile-check, po-check, author_mark_check):
10901 (makefile_path_separator_check, copyright-check):
10902 Use grep -n, to make it easier to find violations.
10903 Use CVS_LIST and CVS_LIST_EXCEPT.
10904 (header_regexp, h_re): Remove.
10905 (dd_c): New macro.
10906 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10907 (my-distcheck): Use more-modern GCC flags.
10908 (signatures, %.asc): Remove.
10909 (rel-files, announcement): Remove signatures.
10910 Restore old updating code, even though we don't use it, so
10911 that we're the same as coreutils.
10912 (alpha, beta, major): Depend on news-date-check.
10913 Make the upload commands.
10914
10915 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10916 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10917 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10918 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10919 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10920 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10921 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10922 * tests/sets.at: Likewise.
10923
10924 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10925 we comment out the Autoconf version number.
10926 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10927 it's error-prone and "make maintainer-distcheck" rejects it.
10928
10929 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10930 Indent calls to "error" to pacify "make maintainer-distcheck",
10931 when the calls are not intended to be translated.
10932 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10933
10934 * src/Makefile.am (DEFS): Use +=, to pacify
10935 "make maintainer-distcheck".
10936 (bison_SOURCES): Add scan-skel.h.
10937 (sc_tight_scope): New rule, from coreutils.
10938
10939 * src/files.c (src_extension, header_extension):
10940 Now static, not extern.
10941 * src/getargs.c (short_options): Likewise.
10942 * src/muscle_tab.c (muscle_table): Likewise.
10943 * src/parse-gram.y (current_class, current_type, current_prec):
10944 Likewise.
10945 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10946 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10947 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10948 void, to avoid warning when NLS is disabled.
10949 * src/output.c: Include scan-skel.h.
10950 (scan_skel): Remove decl, since scan-skel.h does this.
10951 (output_skeleton):
10952 Indent calls to "error" to pacify "make maintainer-distcheck".
10953 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10954 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10955 "make maintainer-distcheck".
10956 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10957 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10958 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10959 (skel_lex_destroy, scan_skel): Move these decls to...
10960 * src/scan-skel.h: New file.
10961 * src/uniqstr.c (uniqstr_assert):
10962 Indent calls to "error" to pacify "make maintainer-distcheck".
10963
10964 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10965 not @VAR@.
10966
10967 * tests/torture.at: Revamp to avoid misuse of atoi that
10968 "make maintainer-distcheck" complained about.
10969
10970 * examples/extexi (message): Don't print a message more than once,
10971 and omit line-number decoration that makes Emacs compile think
10972 that informative messages are worth worrying about.
10973
109742005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10975
10976 * configure.ac: Update version number.
10977
10978 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10979 accidentally.
10980 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10981 autogenerated by the maintainer.
10982 * examples/calc++/.cvsignore: Add *.yy.
10983
10984 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10985 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10986 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10987
10988 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10989
10990 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10991 from maintainer-distcheck about casting the argument of 'free'.
10992
10993 * NEWS: Mention recent yytname changes.
10994 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10995
10996 * bootstrap: For translations that have not yet been upgraded to
10997 the new runtime-po domain, prime the pump by extracting the
10998 relevant strings from the obsolete translations. This code can be
10999 removed once the bison-runtime domain has been translated by each
11000 team.
11001
11002 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11003 now that token names are already quoted.
11004
11005 Fix problem reported by Anthony Heading.
11006 * data/glr.c (YYTOKEN_TABLE): New macro.
11007 (yytname): Define if YYTOKEN_TABLE.
11008 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11009 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11010 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11011 * src/output.c (prepare_symbols): Output token_table_flag.
11012
0ffda363
PE
110132005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11014
11015 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11016 again if the first call fails.
11017
11018 * data/glr.c (yytnamerr): New function.
11019 (yyreportSyntaxError): Use it to dequote most string literals.
11020 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11021 with other skeletons. All uses changed.
11022 (yytnameerr_): New function.
11023 (yyreport_syntax_error): Use it to dequote most string literals.
11024 * data/yacc.c (yytnamerr): New function.
11025 (yyerrlab): Use it to decode most string literals.
11026 * doc/bison.texinfo (Decl Summary, Calling Convention):
11027 Clarify quoting convention of yytname.
11028 * src/output.c (prepare_symbols): Quote all names. This undoes
11029 the 2005-04-17 change, which is now accomplished (mostly) via
11030 changes in the parsers as described above.
11031 * tests/regression.at (Token definitions, Web2c Actions):
11032 Undo most 2005-04-17 change here, too.
11033
110342005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11035
11036 Fix more problems reported by twlevo@xs4all.nl.
11037 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11038 remove trailing spaces. This loses the exit status of ./types,
11039 and isn't needed since ./types shouldn't be emitting trailing
11040 spaces.
11041 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11042 as the stack isn't valid in that case.
11043
11044 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11045 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11046 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11047 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11048 is used.
11049 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11050 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11051 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11052 Likewise.
11053
11054 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11055 overly-picky compilers that reject 'char *foo = "bar";'.
11056
11057 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11058 to FILE * parameter, not to stderr. This fixes a typo introduced
11059 in the 2005-07-12 change.
11060
11061 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11062 warnings from GCC 4.
11063
11064 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11065 (yyglrShiftDefer, yysplitStack):
11066 Remove unused parameters b4_pure_formals. All uses changed.
11067 (yyglrShift): Remove unused parameters b4_user_formals.
11068 All uses changed.
11069 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11070
6100a9aa
PE
110712005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11072
258b75ca
PE
11073 Destructor cleanups and regularization among the three skeletons.
11074 * NEWS: Document the behavior changes.
11075 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11076 stack before failing, as the cleanup code will do it for us now.
11077 * data/lalr1.cc (yyerrlab): Likewise.
11078 * data/glr.c (yyparse): Pop everything off the stack before
11079 freeing it, so that destructors get called properly.
11080 * data/lalr1.cc (yyreturn): Likewise.
11081 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11082 This is more consistent.
11083 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11084 why destructors might be called. 1.875 -> 2.1.
11085 (Destructor Decl, Decl Summary, Table of Symbols):
11086 Some English-language cleanups for %destructor.
11087 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11088 Add output line for destructor of start symbol.
11089 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11090 because of that same extra output line.
11091
1a059451
PE
11092 * NEWS: Document minor wording changes in diagnostics of
11093 Bison-generated parsers.
11094 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11095 Remove unused formals. All uses changed.
11096 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11097 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11098 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11099 Rename yyoverflowab to yyexhaustedlab.
11100 When memory exhaustion occurs during syntax-error reporting,
11101 report it separately rather than in a single diagnostic; this
11102 eases translation.
11103 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11104 (Memory Exhausted): Renamed from Parser Stack Overflow.
11105 Revamp wording slightly to prefer "memory exhaustion".
11106 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11107
97460c78
PE
11108 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11109
30757c8c
PE
11110 Add i18n support to the GLR skeleton. Partially fix the C++
11111 skeleton; a C++ expert needs to finish this. Remove debugging
11112 msgids; there's little point to having them translated, since they
11113 can be understood only by someone who can read the
11114 (English-language) source code.
11115
11116 Generate runtime-po/bison-runtime.pot automatically, so that we
11117 don't have to worry about garbage getting in that file. We'll
11118 make sure after the next official release that old msgids don't
11119 get lost. See
11120 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11121
11122 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11123 Now auto-generated.
11124 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11125 Fix typos in explanations of the runtime file.
11126 * bootstrap: Change gettext keyword from YYI18N to YY_.
11127 Use standard Makefile.in.in in runtime-po, since we'll arrange
11128 for backward-compatible bison-runtime.po files in a different way.
11129 * data/glr.c (YY_): New macro, from yacc.c.
11130 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11131 Translate messages intended for users.
11132 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11133 the wording in the other skeletons. We don't know that the memory
11134 is virtual.
11135 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11136 Use same method that yacc.c uses.
11137 Don't translate debugging messages.
11138 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11139 it doesn't work (yet), and requires C++ expertise to fix.
11140 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11141 Move defn to a more logical place, to be consistent with other
11142 skeletons.
11143 Don't translate debugging messages.
11144 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11145 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11146 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11147 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11148
ac8c5689
PE
11149 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11150 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11151 void, not int.
11152 * tests/glr-regression.at (Badly Collapsed GLR States):
11153 Likewise.
11154 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11155 yylex should return 0 at EOF rather than aborting.
11156
6100a9aa
PE
11157 Improve tests for stack overflow in GLR parser.
11158 Problem reported by twlevo@xs4all.nl.
11159 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11160 All uses removed.
11161 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11162 can handle the problem.
11163 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11164 (yyparse): New local variable yyresult to record the result.
11165 Use result of setjmp to set it, rather than storing itinto
11166 struct.
11167 (yyDone): Remove label.
11168 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11169 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11170 if YYABORT is used).
11171 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11172 yyparse status; put status > 1 into diagnostic.
11173 Check that status==2 works.
11174 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11175 Use exit status 3 for failure to open (which shouldn't happen).
11176
15f40952
PE
111772005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11178
67fd79c4
PE
11179 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11180 1 on syntax error; just let yyparse do its thing.
11181 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11182 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11183 (Exploding the Stack Size with Alloca):
11184 (Exploding the Stack Size with Malloc):
11185 Expect exit status 2, not 1, since the parser is supposed to blow
11186 its stack. Problem reported by twlevo@xs4all.nl.
11187
15f40952
PE
11188 * data/glr.c (yyparse): Don't assume that the initial calls
11189 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11190 Print a stack-overflow message and fail instead.
11191 Initialize the line-number information before creating the stack,
11192 so that the stack-overflow message can report line zero safely.
11193
f32c66b5
PE
111942005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11195
a22ff96f 11196 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
11197 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11198 (yyuserMerge): Provide a default case if b4_mergers is empty.
11199 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11200 * tests/glr-regression.at
11201 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 11202 Add casts to pacify C++ compilers.
1beb0b24
PE
11203 * tests/glr-regression.at (Improper merging of GLR delayed action
11204 sets): Declare yylex before using it.
f32c66b5 11205 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
11206 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11207 test for valgrind; valgrind is independent of g++.
11208 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11209 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11210 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11211 Use a destructor, so that we can expand the stack. Change
11212 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 11213
d741bd1b
PE
112142005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11215
11216 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11217 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11218
0410a6e0
PE
112192005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11220
11221 * PACKAGING: New file, suggested by Bruno Haible and taken from
11222 similar wording in gettext's PACKAGING file.
11223 * NEWS: Mention PACKAGING.
11224 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11225
f7ab6a50
PE
112262005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11227
baf785db 11228 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
11229 * bootstrap: Get runtime translations into runtime-po.
11230 Create runtime-po files automatically, if possible.
11231 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11232 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11233 does not infringe on the user's name space.
11234 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11235 * doc/bison.texinfo (Internationalization): Revamp the English
11236 and Texinfo syntax a bit, to try to make it clearer.
11237 (Bison Options, Option Cross Key): Mention --print-localedir.
11238 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11239 YYENABLE_NLS. Quote a bit more.
11240 * runtime-po/.cvsignore: New file.
11241 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11242 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11243 * runtime-po/quot.sed: Likewise.
11244 * runtime-po/boldquot.sed: Likewise.
11245 * runtime-po/en@quot.header: Likewise.
11246 * runtime-po/en@boldquot.header: Likewise.
11247 * runtime-po/insert-header.sin: Likewise.
11248 * runtime-po/remove-potcdate.sin: Likewise.
11249 * runtime-po/Makevars: Likewise.
11250 * runtime-po/LINGUAS: Likewise.
11251 * runtime-po/de.po: Likewise; we will rely on the translation project
11252 to maintain this, so "bootstrap" should get it.
0410a6e0 11253 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
11254 its value.
11255 * src/main.c (main): Bind the bison-runtime domain, too.
11256
112572005-07-12 Bruno Haible <bruno@clisp.org>
11258
11259 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11260 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11261 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11262 * runtime-po: New directory.
11263 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11264 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11265 * runtime-po/Rules-quot: New file, copied from po/.
11266 * runtime-po/quot.sed: Likewise.
11267 * runtime-po/boldquot.sed: Likewise.
11268 * runtime-po/en@quot.header: Likewise.
11269 * runtime-po/en@boldquot.header: Likewise.
11270 * runtime-po/insert-header.sin: Likewise.
11271 * runtime-po/remove-potcdate.sin: Likewise.
11272 * runtime-po/Makevars: New file.
11273 * runtime-po/POTFILES.in: New file.
11274 * runtime-po/LINGUAS: New file.
11275 * runtime-po/bison-runtime.pot: New file.
11276 * runtime-po/de.po: New file.
11277 * m4/bison.m4: New file.
11278 * Makefile.am (SUBDIRS): Add runtime-po.
11279 (aclocaldir, aclocal_DATA): New variables.
11280 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11281 Define aclocaldir.
11282 * src/getargs.c (usage): Document --print-localedir option.
11283 (PRINT_LOCALEDIR_OPTION): New enum item.
11284 (long_options): Add --print-localedir option.
11285 (getargs): Handle --print-localedir option.
11286 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11287 (Internationalization): New section.
11288
22dda0f0
AD
112892005-07-12 Akim Demaille <akim@epita.fr>
11290
11291 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11292 for consistency with the rest of the code.
11293 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11294 Add separators.
11295
82b248ad
AD
112962005-07-12 Akim Demaille <akim@epita.fr>
11297
11298 * src/parse-gram.y: Use %printer instead of YYPRINT.
11299
fa0e9314
AD
113002005-07-12 Akim Demaille <akim@epita.fr>
11301
867a3e00
AD
11302 * src/symtab.h, src/symtab.c (symbol_print): New.
11303 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11304 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11305
113062005-07-12 Akim Demaille <akim@epita.fr>
11307
11308 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
11309 b4_at_dollar and b4_dollar_dollar.
11310
e054b190
PE
113112005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11312
11313 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11314 and Pennello's paper.
11315
34160ec4
PE
113162005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11317
407d4a75
PE
11318 * data/yacc.c (yyparse): Undo previous patch. Instead,
11319 set yylsp[0] and yyvsp[0] only if the initial action
11320 sets yylloc and yylval, respectively.
11321
34160ec4
PE
11322 * data/yacc.c (yyparse): In the initial action, set
11323 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11324 This avoids the use of undefined variables if the initial
11325 action does not set yylloc and/or yylval.
11326
c3d5a4a7
PE
113272005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11328
b34d96c1
PE
11329 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11330 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11331 Remove from CVS. These files are automatically generated.
11332 * examples/extexi: Clarify that this file is now part of Bison,
11333 not GNU M4, and that it works with any POSIX-compatible Awk.
11334 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11335 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11336 so that we also get calc++-parser.yy. Geneate it.
11337 Use $(AWK), not gawk, since any conforming Awk will do.
11338 Put comment before action, since older 'make' can't handle comment
11339 in action.
11340 $(BUILT_SOURCES): List all built sources, not just some of them.
11341 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11342 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11343 $($(calc_sources_generated)): Remove unnecessary test for existence
11344 of target. (This had a shell syntax error anyway; a stray "x".)
11345 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11346 calc++-parser.yy.
11347 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11348
c3d5a4a7
PE
11349 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11350 implied by the other modules.
11351
828c373b
AD
113522005-07-06 Akim Demaille <akim@epita.fr>
11353
11354 Bind examples/calc++ to the package.
11355 * examples/calc++/Makefile: Remove, replaced by...
11356 * examples/calc++/Makefile.am: ... this new file.
11357 * examples/calc++/test: Remove input.
11358 * examples/calc++/compile: Remove.
11359 * examples/Makefile.am: New.
11360 * configure.ac, Makefile.am: Adjust.
11361 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11362
63cb01d6
PE
113632005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11364
fd2df2ed
PE
11365 * data/glr.c (yyFail): Drastically simplify; since the format argument
11366 never had any % directives, we can simply pass it to yyerror.
11367 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11368 be modified later, as that is the usual style in glr.c.
11369 Problems reported by Paul Hilfinger.
11370
63cb01d6
PE
11371 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11372 and size overflow errors.
11373 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11374 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11375 (YYSIZEMAX): New macro.
11376 (yystpcpy): New function, taken from yacc.c.
11377 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11378 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11379 so that we don't have to maintain their signatures.
11380 (yyFail): Check for buffer overflow, by using vsnprintf rather
11381 than vsprintf. Allocate a bigger buffer if possible.
11382 Report an error if buffer allocation fails.
11383 (yyStackOverflow): New function.
11384 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11385 the initialization was successful. It might fail if storage was
11386 exhausted.
11387 (yyexpandGLRStack): Add more checks for storage allocation failure.
11388 Use yyStackOverflow to report failures.
11389 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11390 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11391 Don't assume stack number fits in int.
11392 (yysplitStack): Check for storage allocation failure.
11393 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11394 can print diagnostics on storage allocation failure. All callers
11395 changed.
11396 (yyresolveValue): Use yybool for boolean.
11397 (yyreportSyntaxError): Check for size-calculation overflow.
11398 This code is taken from yacc.c.
11399 (yyparse): Check for storage allocation errors when allocating
11400 the initial stack.
11401
1c59e0a1
AD
114022005-07-05 Akim Demaille <akim@epita.fr>
11403
11404 Extract calc++ from the documentation.
11405 * doc/bison.texinfo (Calc++): Add the extraction marks.
11406 * examples/extexi: New, from the aborted GNU Programming 2E.
11407 Separate the different paragraph of a file with empty lines.
11408 * examples/Makefile: Use it to extract the whole calc++ example.
11409
8a0adb01
AD
114102005-06-24 Akim Demaille <akim@epita.fr>
11411
11412 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11413 class typedefs.
11414
12545799
AD
114152005-06-22 Akim Demaille <akim@epita.fr>
11416
11417 * doc/bison.texinfo (C++ Language Interface): First stab.
11418 (C++ Parsers): Remove.
11419
99be0235
AD
114202005-06-22 Akim Demaille <akim@epita.fr>
11421
11422 * data/lalr1.cc (yylex_): Honor %lex-param.
11423
0ffd4fd1
AD
114242005-06-22 Akim Demaille <akim@epita.fr>
11425
11426 Start a set of simple examples.
11427 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11428 * examples/calc++/calc++-driver.hh,
11429 * examples/calc++/calc++-parser.yy,
11430 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11431 * examples/calc++/compile, examples/calc++/test: New.
11432
0925ebb4
PE
114332005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11434
11435 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11436 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11437 which stems from the 2005-05-27 patch.
11438
43d3b664
PH
114392005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11440
11441 * data/glr.c: Modify treatment of unused parameters to permit use
11442 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11443
3062864d
PE
114442005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11445
11446 Fix infringement on user name space reported by Janos Zoltan Szabo.
11447 * data/yacc.c (yyparse): strlen -> yystrlen.
11448
989b5b8e
AD
114492005-05-30 Akim Demaille <akim@epita.fr>
11450
11451 * data/lalr1.cc (_): New.
11452 Translate the various messages.
11453
bedf57f5
PE
114542005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11455
11456 Fix infringement on user name space reported by Bruno Haible.
11457 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11458 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11459 the user's name space.
11460 (alloca): Include <stdlib.h> to get it, if it's not built in.
11461 (YYMALLOC, YYFREE): Define only if needed.
11462 (malloc, free): Declare, but only if needed, as this infringes on
11463 the user name space.
11464
4d1801f1
PE
114652005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11466
11467 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11468 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11469 with %d format.
11470 * lib/ebitset.c (min, max): Undef before defining.
11471 * lib/vbitset.c (min, max): Likewise.
11472 * lib/subpipe.c (create_subpipe): Save local variables in case
11473 vfork clobbers them.
11474
114752005-05-24 Bruno Haible <bruno@clisp.org>
11476
11477 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11478 error message syntax used by gcc-4.0.
11479
b94a9e1e
PE
114802005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11481
85ac3861
PE
11482 * README: Mention m4 1.4.3. Remove obsolete advice about
11483 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11484
b94a9e1e
PE
11485 * bootstrap: Remove workaround for problem I encountered with
11486 gettext 0.14.1; it seems to be fixed now.
11487
51c30d21
PE
114882005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11489
009ce67d
PE
11490 * NEWS: Version 2.0a.
11491
f2a97c62
PE
11492 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11493 the previous change.
11494
c8775f93
PE
11495 Various maintainer cleanups.
11496 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11497 conftest*, for benefit of CVS commands run at the same time as
11498 "configure". Add build-aux, since "bootstrap" now creates it and
11499 its subfiles.
11500 * Makefile.cfg (move_if_change): Remove.
11501 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11502 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11503 (po_repo, do-po-update, po-update, wget_files, get-targets):
11504 (config.guess-url_prefix, config.sub-url_prefix):
11505 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11506 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11507 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11508 Remove.
11509 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11510 this is now the recommended name.
11511 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11512 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11513 ylwrap. These files now go into build-aux.
11514 * config/move-if-change: Remove.
11515 * config/prev-version.txt: Bump from 1.75 to 2.0.
11516
3ea5f0ec
PE
11517 * bootstrap: Add stdio-safer, unistd-safer modules.
11518 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11519 we don't need it).
11520 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11521 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11522 * lib/subpipe.c: Include "unistd-safer.h".
11523 (create_subpipe): Make sure all the newly-created
11524 file descriptors are > 2, so that diagnostics don't
11525 get sent down them (which might cause Bison to hang, in theory).
11526 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11527 * src/files.c (xfopen): Use fopen_safer, not fopen.
11528
51c30d21
PE
11529 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11530 yesterday's yacc.c fix.
11531
cea1469d
PE
115322005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11533
3ea5f0ec
PE
11534 * data/glr.c, data/lalr1.cc: Update copyright date.
11535
cea1469d
PE
11536 Fix a destructor bug reported by Wolfgang Spraul in
11537 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11538 * data/yacc.c (yyabortlab): Don't call destructor, and
11539 don't set yychar to EMPTY.
11540 (yyoverflowlab): Don't call destructor.
11541 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11542 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11543 since we no longer output the message "discarding lookahead token
11544 end of input ()".
11545
5e6f62f2
PH
115462005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11547
11548 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11549 fix a small glitch in debugging output.
11550 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11551 after YY_SYMBOL_PRINT where needed.
11552
11553 (struct yyGLRState): Add some comments.
11554 (struct yySemanticOption): Add some comments.
11555 (union yyGLRStackItem): Add comment.
11556
11557 (yymergeOptionSets): Correct this to properly perform the union,
11558 avoiding infinite reported by Michael Rosien.
11559 Update comment.
11560
11561 * tests/glr-regression.at: Add test for GLR merging error reported
11562 by M. Rosien.
cea1469d 11563
0fb669f9
PE
115642005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11565
11566 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11567 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11568 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11569 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11570 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11571 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11572 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11573 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11574 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11575 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11576 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11577 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11578 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11579 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11580 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11581 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11582 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11583 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11584 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11585 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11586 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11587 src/output.h, src/parse-gram.c, src/parse-gram.h,
11588 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11589 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11590 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11591 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11592 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11593 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11594 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11595 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11596 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11597 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11598 tests/reduce.at, tests/regression.at, tests/sets.at,
11599 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11600 Update FSF postal mail address.
11601
51f4735e
PE
116022005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11603
11604 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11605 Problem reported by Ralf Menzel.
11606
80ce3401
PE
116072005-05-01 Paul Eggert <eggert@cs.ucla.edu>
11608
11609 * tests/actions.at: Test that stack overflow invokes destructors.
11610 From Marcus Holland-Moritz.
11611 * data/yacc.c (yyerrlab): Move the code that destroys the stack
11612 from here....
11613 (yyreturn): to here. That way, destructors are called properly
11614 even if the stack overflows, or the user calls YYACCEPT or
11615 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
11616 (yyoverflowlab): Destroy the lookahead.
11617
116182005-04-24 Paul Eggert <eggert@cs.ucla.edu>
11619
11620 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
11621
72f000b0
PE
116222005-04-17 Paul Eggert <eggert@cs.ucla.edu>
11623
11624 * NEWS: Bison-generated C parsers no longer quote literal strings
11625 associated with tokens.
11626 * src/output.c (prepare_symbols): Don't escape strings,
11627 since users don't want to see C escapes.
11628 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
11629 in diagnostics.
c19683bb 11630 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
11631 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
11632
1094323f
PE
116332005-04-16 Paul Eggert <eggert@cs.ucla.edu>
11634
11635 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
11636 the data size is known to be too small and we can't increase it.
11637 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
11638
ca407bdf
PE
116392005-04-15 Paul Eggert <eggert@cs.ucla.edu>
11640
11641 * src/parse-gram.y: Include quotearg.h.
11642 (string_as_id): Quote $1 before using it as a key, since the
11643 lexer no longer quotes it for us.
11644 (string_content): Don't strip quotes, since lexer no longer
11645 quotes it for us.
11646 * src/scan-gram.l: Include quotearg.h.
11647 ("\""): Omit quote.
11648 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
11649 a key, since the rest of the lexer doesn't quote it.
11650 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
11651 * tests/regression.at (Token definitions): Check for backslashes
11652 in token strings.
11653
11654 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
11655 (YYSIZE_T): Define to unsigned long int when using an older compiler.
11656 (yyparse): Revamp code to generate long syntax error message, to
11657 make it easier to translate, and to avoid problems with arithmetic
11658 overflow. Change "virtual memory" to "memory" in diagnostic, since
11659 we don't know whether the memory is virtual.
11660
1ce59070
PE
116612005-04-13 Paul Eggert <eggert@cs.ucla.edu>
11662
11663 * NEWS: Bison-generated C parsers now use the _ macro to
11664 translate strings.
11665 * data/yacc.c (_) [!defined _]: New macro.
11666 All English strings wrapped inside this macro.
11667 * doc/bison.texinfo (Bison Parser): Document _.
11668 * po/POTFILES.in: Include src/parse-gram.c, since it now
11669 includes translateable strings that parse-gram.y doesn't.
11670
a749a695
PE
116712005-04-12 Paul Eggert <eggert@cs.ucla.edu>
11672
11673 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
11674 reverting the 2004-10-11 change to this function.
11675 (symbol_check_alias_consistency): Don't call symbol_type_set
11676 if the type name is already correct.
11677 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
11678
8fb1053b
PE
116792005-03-25 Paul Eggert <eggert@cs.ucla.edu>
11680
11681 * tests/regression.at (Token definitions): Don't use a token named
11682 c, as that generates a "#define c ..." that runs afoul of buggy
11683 stdlib.h that uses the identifier c as a member of struct
11684 drand48_data. Problem reported by Horst Wente.
11685
ff498c4a
PE
116862005-03-21 Paul Eggert <eggert@cs.ucla.edu>
11687
11688 * bootstrap: Change translation URL from
11689 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
11690 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
11691 redirection glitches. Problem reported by twlevo@xs4all.nl.
11692
65211d70
PE
116932005-03-20 Paul Eggert <eggert@cs.ucla.edu>
11694
11695 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
11696 after operands; POSIX says this isn't portable for the c99 command.
11697
9577fb1f
PE
116982005-03-18 Paul Eggert <eggert@cs.ucla.edu>
11699
11700 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
11701 immediately if a data overrun has occurred; this may help us track
11702 down what may be a spurious failure on MacOS.
11703
78b178f7
PE
117042005-03-17 Paul Eggert <eggert@cs.ucla.edu>
11705
a2599d0f
PE
11706 Respond to problems reported by twlevo@xs4all.nl.
11707
11708 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
11709
78b178f7
PE
11710 * src/vcg.h: Comment fix.
11711 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
11712 (G_CMAX): Change to -1 instead of INT_MAX.
11713
11714 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 11715
7296e729
PE
117162005-03-15 Paul Eggert <eggert@cs.ucla.edu>
11717
11718 * src/tables.c (state_number_to_vector_number): Put it inside an
11719 "#if 0", since it's not currently used. Problem reported by
11720 Roland McGrath.
11721
05ac60f3
PE
117222005-03-06 Paul Eggert <eggert@cs.ucla.edu>
11723
11724 * src/output.c (escaped_output): Renamed from
11725 escaped_file_name_output, since we now use it for symbol tags as
11726 well. All uses changed.
11727 (symbol_destructors_output, symbol_printers_output):
11728 Escape symbol tags too.
11729 Problem reported by Matyas Forstner in
11730 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
11731
11732 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
11733 not needed.
11734 * src/output.c (user_actions_output, token_definitions_output,
11735 symbol_destructors_output, symbol_printers_output): Likewise.
11736 * src/reader.c (prologue_augment): Likewise.
11737 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
11738
11739 * src/vcg.c (output_edge): Don't quote linestyle arg.
11740 Problem reported by twlevo@xs4all.nl.
11741
7eb453ac
PE
117422005-02-28 Paul Eggert <eggert@cs.ucla.edu>
11743
11744 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
11745 example, reported by Derek M Jones. Also, make the example even
11746 more outrageous, to better illustrate how bad the problem is.
11747
4c04c52a
PE
117482005-02-24 Paul Eggert <eggert@cs.ucla.edu>
11749
11750 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
11751 putsym. Typo reported by Sebastian Piping.
11752
a61e1620
PE
117532005-02-23 Paul Eggert <eggert@cs.ucla.edu>
11754
11755 * doc/bison.texinfo (Language and Grammar): some -> same
11756 (Epilogue): int he -> in the
11757 Typos reported by Sebastian Piping via Justin Pence.
11758
9ec93868
PE
117592005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11760
11761 * tests/glr-regression.at (Improper handling of embedded actions
11762 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11763 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11764 with dollar signs in test names.
11765 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11766 for a similar reason.
11767
73ce7e7e
PE
117682005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11769
11770 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11771 wants to redefine G_VIEW.
11772
2e72b98e
PE
117732005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11774
11775 * src/vcg.c (get_view_str): Remove case for normal_view.
11776 Problem reported by twlevo@xs4all.nl.
11777
e0d634e5
PE
117782005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11779
ccf830a4
PE
11780 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11781 Problem reported by twlevo@xs4all.nl.
11782
e0d634e5
PE
11783 * doc/bison.texinfo: Change @dircategory from "GNU programming
11784 tools" to "Software development". Requested by Richard Stallman
11785 via Karl Berry.
11786
7bbc8cb0
PE
117872005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11788
11789 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11790 Problem reported by twlevo@xs4all.nl.
11791
08b770bc
PE
117922005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11793
11794 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11795 keyword; it's not needed with modern compilers, and it doesn't
11796 affect correctness with older compilers. Suggested by
11797 twlevo@xs4all.nl.
11798
95f22ad2
PE
117992005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11800
11801 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11802 gcc -Wswitch-default.
11803 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11804 * data/yacc.c (yyparse): Likewise.
11805
d229d15c
PE
118062005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11807
11808 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11809 already. Let config.h define any nonstandard values.
11810
ecadd90f
PE
118112005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11812
11813 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11814 for the benefit of slower hosts. Problem reported by
11815 Nelson H. F. Beebe.
11816
213744b5
PE
118172005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11818
11819 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11820 being defined and not used.
11821 * data/lalr1.cc (yyparse): Likewise.
11822 Use "if (false)" rather than "if (0)".
11823
249d3236
PE
118242005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11825
11826 * TODO: Mention that we should allow NUL bytes in tokens.
11827
987cc1fb
PE
118282005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11829
11830 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11831 Problem reported by Hans Aberg.
11832
08fe02d9
PE
118332005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11834
11835 * src/getargs.c (version): Happy new year; update overall
11836 program copyright date from 2004 to 2005.
11837
11838 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11839 Problem reported by Hans Aberg.
11840 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11841 (Output file names.): Add a test for the case when standard output
11842 is closed.
11843
010c0266
PE
118442004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11845
11846 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11847 to fix an oversight in the Bison 2.0 manual.
11848
da12206a
PE
118492004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11850
11851 * NEWS: Version 2.0. Reformat the existing news items since
11852 1.875, so that related items are grouped together.
3a4734aa 11853 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
11854 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11855
c935d934
PE
11856 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11857 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11858 otherwise, we're not testing alloca. Unfortunately there's no
11859 simple way to consult HAVE_ALLOCA here.
11860
da12206a
PE
11861 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11862 for yymsg, too.
11863
11864 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11865 hand. This avoids a warning about comparing int to size_t when
11866 GCC warnings are enabled.
11867
0a2c5137
PE
118682004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11869
d7e14fc0
PE
11870 * NEWS: Bison-generated parsers no longer default to using the
11871 alloca function (when available) to extend the parser stack, due
11872 to widespread problems in unchecked stack-overflow detection.
11873 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11874 responsibility to set it to a positive value. This lets the user
11875 specify a value that is not a preprocessor constant.
11876 * data/yacc.c (YYMAXDEPTH): Likewise.
11877 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11878 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11879 to be a compile-time constant. However, explain the constraints on it.
11880 Also, explain the constraints on YYINITDEPTH.
11881 (Table of Symbols): Explain that alloca is no longer the default.
11882 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11883 to 1.
11884
0a2c5137
PE
11885 * doc/bison.texinfo (Location Default Action): Mention that n must
11886 be zero when k is zero. Suggested by Frank Heckenbach.
11887
e019c247
AD
118882004-12-22 Akim Demaille <akim@epita.fr>
11889
11890 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11891 (parser::state_type, parser::semantic_type, parser::location_type):
11892 Private, not public.
11893 (parser::parse): Return ints, not bool.
11894 Returning a bool introduces a problem: 0 corresponds to false, and
11895 it seems weird to return false on success. Returning true changes
11896 the conventions for yyparse.
11897 Alternatively we could return void and send an exception.
11898 There is no clear consensus (yet?).
11899 (state_stack, semantic_stack, location_stack): Rename as...
11900 (state_stack_type, semantic_stack_type, location_stack_type): these.
11901 Private, not public.
11902 * tests/c++.at: New.
11903 * tests/testsuite.at, tests/Makefile.am: Adjust.
11904
72731bb7
AD
119052004-12-21 Akim Demaille <akim@epita.fr>
11906
11907 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11908
9a0d8bec
AD
119092004-12-21 Akim Demaille <akim@epita.fr>
11910
11911 Don't impose std::string for filenames.
11912
11913 * data/lalr1.cc (b4_filename_type): New.
11914 (position::filename): Use it.
11915 (parser.hh): Move the inclusion of stack.hh and location.hh below
11916 the user code, so that needed headers for the filename type can be
11917 included first.
72731bb7
AD
11918 Forward declare them before the user code.
11919 * tests/Makefile.am (check-local, installcheck-local): Pass
11920 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 11921
99880de5
AD
119222004-12-20 Akim Demaille <akim@epita.fr>
11923
11924 Use more STL like names: my_class instead of MyClass.
11925
11926 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11927 (SemanticStack, SemanticType, StateStack, StateType)
11928 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11929 (Parser::value): Rename as...
11930 (location_stack, location_type, rhs_number_type, semantic_stack)
11931 (semantic_type, state_stack, state_type, token_number_type, stack)
11932 (slice, traits, parser::yylloc, parser::yylval): these.
11933
11934 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11935
9bec482e
PE
119362004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11937
11938 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11939 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11940
f6fbd3da
PE
119412004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11942
11943 Remove uses of 'short int' and 'unsigned short int'. This raises
11944 some arbitrary limits. It uses more memory but nowadays that's
11945 not much of an issue.
11946
11947 This change does not affect the generated parsers; that's a different
11948 task, as some users will want to conserve memory there.
11949
11950 Ideally we should use size_t to represent all object counts, and
11951 something like ptrdiff_t to represent signed differences of object
11952 counts; but that will require more code-cleanup than I have the
11953 time to do right now.
11954
11955 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11956 Use size_t, not int or short int, to count objects.
11957 * src/closure.c (nritemset, closure): Likewise.
11958 * src/closure.h (nritemset, closure): Likewise.
11959 * src/nullable.c (nullable_compute): Likewise.
11960 * src/print.c (print_core): Likewise.
11961 * src/print_graph.c (print_core): Likewise.
11962 * src/state.c (state_compare, state_hash): Likewise.
11963 * src/state.h (struct state): Likewise.
11964 * src/tables.c (default_goto, goto_actions): Likewise.
11965
11966 * src/gram.h (rule_number, rule): Use int, not short int.
11967 * src/output.c (prepare_rules): Likewise.
11968 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11969 errs, reductions): Likewise.
11970 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11971 Likewise.
11972 * src/tables.c (vector_number, tally, action_number,
11973 ACTION_NUMBER_MINIMUM): Likewise.
11974 * src/output.c (muscle_insert_short_int_table): Remove.
11975
efeed023
AD
119762004-12-17 Akim Demaille <akim@epita.fr>
11977
11978 * data/lalr1.cc: Extensive Doxygenation.
11979 (error_): Rename as...
11980 (error): this, since it is visible to the user.
11981 Adjust callers.
11982 (Parser::message): Now an automatic variable from...
11983 (Parser::yyreport_syntax_error_): here.
11984 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11985 Parser::error.
11986 * tests/input.at: Escape $.
11987
bc82c5a5
PE
119882004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11989
11990 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11991 Parenthesize rhs to avoid obscure problems with mistakes like
11992 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11993 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11994 b4_rhs_location): Likewise.
11995 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11996 b4_rhs_location): Likewise.
11997
fd19f271
AD
119982004-12-16 Akim Demaille <akim@epita.fr>
11999
12000 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12001 yacc.c: be sure to stay within yycheck_.
12002 * tests/actions.at: Re-enable C++ tests.
12003
10454ea4
AD
120042004-12-16 Akim Demaille <akim@epita.fr>
12005
12006 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12007 real.
12008
c5b95ccf
AD
120092004-12-16 Akim Demaille <akim@epita.fr>
12010
12011 Use #define to handle the %name-prefix.
12012
12013 * data/glr.c, data/yacc.c: Comment changes.
12014 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12015 so that one can refer to yylex in the parser file, and have it
12016 renamed, as is the case with other skeletons.
12017
617a8f12
AD
120182004-12-16 Akim Demaille <akim@epita.fr>
12019
12020 Move lalr1.cc internals into yy*.
12021
12022 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12023 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12024 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12025 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12026 (empty_, final_, terror_, errcode_, ntokens_)
12027 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12028 (looka_, ilooka_, error_range_, nerrs_):
12029 Rename as...
12030 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12031 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12032 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12033 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12034 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12035 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12036 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12037 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12038 these.
12039
1e547e6e
PE
120402004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12041
12042 Fix some problems reported by twlevo at xs4all.
12043 * src/symtab.c (symbol_new): Report an error if the input grammar
12044 contains too many symbols. This is better than calling abort() later.
12045 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12046 (struct node, struct graph):
12047 Rename member expand to stretch. All uses changed.
12048 (struct graph): Remove member layoutalgorithm. All uses removed.
12049 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12050 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12051 All uses changed.
12052 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12053
735d6bd4
AD
120542004-12-15 Akim Demaille <akim@epita.fr>
12055
12056 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12057 Add more Doxygen comments.
12058 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12059 (report_syntax_error_, translate_): Rename as...
12060 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12061 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12062
2e1f5829
AD
120632004-12-15 Akim Demaille <akim@epita.fr>
12064
12065 * data/lalr1.cc (lex_): Rename as...
12066 (yylex_): this.
12067 Move the trace here.
12068 Take the %name-prefix into account.
12069 Reported by Alexandre Duret-Lutz.
12070
a3cb6248
AD
120712004-12-15 Akim Demaille <akim@epita.fr>
12072
12073 Simplify the C++ parser constructor.
12074
12075 * data/lalr1.cc (debug_): Rename as...
12076 (yydebug_): so that the parser's internals are always in the yy*
12077 pseudo namespace.
12078 Adjust uses.
12079 (b4_parse_param_decl): Remove the leading comma as it is now only
12080 called as unique argument list.
12081 (Parser::Parser): Remove the constructor accepting a location and
12082 an initial debugging level.
12083 Remove from the other ctor the argument for the debugging level.
12084 (debug_level_type, debug_level, set_debug_level): New.
12085
12086 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12087 constructor calls.
12088
07fed891
AD
120892004-12-15 Akim Demaille <akim@epita.fr>
12090
12091 Remove b4_root related material: failure experiment
a3cb6248 12092 (which goal was to allow to derive from a class).
07fed891
AD
12093
12094 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12095 definitions and uses.
12096
e603eaa5
PE
120972004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12098
12099 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12100 not 2, since it's not portable to subtract 1 from the start of an
12101 array. The new item 0 is never set or used. All uses changed.
12102
12103 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12104 the default definition of YYLLOC_DEFAULT. Problem reported
12105 by Frank Heckenbach.
12106
fafb007d
PE
121072004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12108
12109 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12110 the normal case and one for the error case. Just use the
12111 first one uniformly. Problem reported by Frank Heckenbach.
12112 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12113 use exactly the same macro in both places.
12114 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12115 so that the normal-case YYRHSLOC works for the error case too.
12116 All uses changed.
12117 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12118 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12119 * doc/bison.texinfo (Location Default Action): Don't claim that
12120 we have an array of locations. Use the same macro for both glr
12121 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12122 the index is 0.
12123
48814dcd
PE
121242004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12125
a4e1a53b
PE
12126 * HACKING: Update email addresses to send announcements to.
12127
48814dcd
PE
12128 * configure.ac (AC_INIT): Bump version to 1.875f.
12129
337116ba
PE
121302004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12131
12132 * NEWS: Version 1.875e.
12133 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12134
12135 * src/scan-skel.l: Include "complain.h", for "fatal".
12136
12137 * src/relation.h (relation_print, relation_digraph):
12138 Relation sizes are of type relation_node, not size_t (this is
12139 merely a doc fix, since the two types are equivalent).
12140 (relation_transpose): Relation sizes are of type relation_node,
12141 not int.
12142 * src/relation.c: Likewise.
12143 (top, infinity): Now of type relation_node, not int.
12144 (traverse, relation_transpose): Use relation_node, not int.
12145
12146 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12147 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12148 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12149
12150 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 12151 specifying whether the test should be skipped. Use it tp
337116ba 12152 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 12153 fail on some hosts, and should be skipped.
337116ba 12154
da2a7671
PE
121552004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12156
12157 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12158 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12159 unless otherwise specified below.
12160
12161 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12162 to allocate kernel_base, kernel_items, kernel_size, since
12163 they needn't be initialized to 0.
12164 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12165 * src/closure.c (new_closure): Likewise, for itemset.
12166 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12167 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12168 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12169 (build_relations): Likewise for edge, states1, includes.
12170 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12171 * src/reader.c (packgram): Likewise, for ritem, rules.
12172 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12173 * src/relation.c (relation_digraph): Likewise for VERTICES.
12174 (relation_transpose): Likewise for new_R, end_R.
12175 * src/symtab.c (symbols_token_translations_init): Likewise for
12176 token_translations.
12177 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12178 (token_actions): Likewise for yydefact, actrow, conflrow,
12179 conflict_list.
12180 (save_column): Likewise for froms[symno], tos[symno].
12181 (goto_actions): Likewise for state_count.
12182 (pack_table): Likewise for base, pos, check.
12183 (tables_generate): Likewise for width.
12184
12185 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12186 for initial core. Just have a separate core, so we needn't worry
12187 about whether kernel_size and kernel_base are initialized.
12188
12189 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12190 kernel_size, kernel_items): Remove unnecessary initialization.
12191 * src/conflicts.c (conflicts): Likewise.
12192 * src/derives.c (derives): Likewise.
12193 * src/muscle_tablc (muscle_insert): Likewise.
12194 * src/relation.c (relation_digraph): Likewise.
12195 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12196 conflrow, conflict_table, conflict_list, table, check):
12197 Likewise.
12198
12199 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12200 This is because all callers pass unsigned int.
12201 * src/closure.h (new_closure): Likewise.
12202
12203 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12204 (build_relations): Initialize includes[i] in all cases.
12205 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12206 and rules[ruleno].precsym. Initialize members in order.
12207 * src/relation.c (relation_transpose): Always initialize new_R[i]
12208 and end_R[i].
12209 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12210
12211 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12212 conflict_list[0] was always 0, but now it isn't initialized.
12213
12214 * src/table.c (table_grow): When conflict_table grew, the grown
12215 area wasn't cleared. Fix this.
12216
12217 * lib/.cvsignore: Add strdup.c, strdup.h.
12218 * m4/.cvsignore: Add strdup.m4.
12219
00baeeac
PE
122202004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12221
12222 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12223 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12224 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12225 ngotos + 1 without checking for overflow.
12226 (build_relations): Use END_NODE, not -1, to denote end of edges.
12227 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12228 build_relations): Use goto_number, not int, for goto numbers.
12229 * src/tables.c (save_column, default_goto): Likewise.
12230
be3d9d42
AD
122312004-11-23 Akim Demaille <akim@epita.fr>
12232
12233 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12234 of #defining from yystype.
12235 Don't typedef yystype, C++ does not need it.
12236 This lets it possible to forward declare it as union.
12237
78e526d5
PE
122382004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12239
12240 * bootstrap (gnulib_modules): Add extensions.
12241 Problem reported by Jim Meyering.
12242
afbb696d
PE
122432004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12244
12245 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12246 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12247 src/system.h, src/tables.c: XFREE -> free, to accommodate
12248 recent change to gnulib xalloc.h.
78e526d5 12249 Problem reported by Jim Meyering.
afbb696d 12250
c1f8f16a
AD
122512004-11-17 Akim Demaille <akim@epita.fr>
12252
12253 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12254
db7e5eb5 122552004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
12256 Alexandre Duret-Lutz <adl@gnu.org>
12257
12258 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12259 changes.
12260 (YYCDEBUG): Adjust.
12261 Use it instead of cdebug_.
12262 (Parser::debug_stream, Parser::set_debug_stream): New.
12263 (Parser::symprint_): Define cdebug_ for temporary backward
12264 compatibility.
12265 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12266 debug_stream ().
12267
68e11668
AD
122682004-11-17 Akim Demaille <akim@epita.fr>
12269
12270 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12271 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12272 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12273 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12274
97cbc73e
PE
122752004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12276
12277 * data/glr.c (yyloc_default): Remove; not used.
12278 Problem reported by Frank Heckenbach.
12279
e342c3be
AD
122802004-10-25 Akim Demaille <akim@epita.fr>
12281
12282 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12283 Introduce another definition to address simple location arrays.
12284 (yyGLRStack): New member: yyerror_range.
12285 (yyrecoverSyntaxError, yyparse): Update it.
12286 (yyrecoverSyntaxError): Use it when shifting the error token to
12287 have an accurate range, equivalent to the one computed by both
12288 yacc.c and lalr1.cc.
12289 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12290 that column numbers start at column 0, as per GNU Coding
12291 Standards, the others tests, and the doc.
12292 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12293 Adjust to the above change (first column is 0).
12294 And adjust the location of the "<error>", now covering the whole
12295 line.
12296
93602feb 122972004-10-22 Akim Demaille <akim@epita.fr>
04098407 12298 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
12299
12300 Remove some arbitrary limits on goto numbers and relations.
12301 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12302 initial values, since they're never used.
12303 (set_goto_map): ngotos is now unsigned, so test for overflow
12304 by seeing whether it wraps around to zero.
12305 * src/lalr.h (goto_number): Now size_t, not short int.
12306 (GOTO_NUMBER_MAXIMUM): Remove.
12307 * src/relation.c (relation_print, traverse, relation_transpose):
12308 Check for END_NODE rather than looking at sign.
12309 * src/relation.h (END_NODE): New macro.
12310 (relation_node): Now size_t, not short int.
12311
dba08b04
PE
123122004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12313
12314 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12315 keyword, not an identifier. Problem reported by Baron Schwartz in
12316 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12317
df09ef2e
AD
123182004-10-11 Akim Demaille <akim@epita.fr>
12319
12320 * src/symtab.c (symbol_check_alias_consistency): Also check
12321 type names, destructors, and printers.
12322 Reported by Alexandre Duret-Lutz.
12323 Recode the handling of associativity and precedence in terms
12324 of symbol_precedence_set.
12325 Accept no redeclaration at all, not even equal to the previous
12326 value.
12327 (redeclaration): New.
12328 Use it to factor redeclaration complaints.
12329 (symbol_make_alias): Don't set the type of the alias, let
12330 symbol_check_alias_consistency do it as for other features.
12331 * src/symtab.h (symbol): Add new member prec_location, and
12332 type_location.
12333 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12334 * tests/input.at (Incompatible Aliases): New.
12335
146bc99d
PE
123362004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12337
12338 .cvsignore fixes to accommodate gnulib changes,
12339 and the practice of naming build directories "_build".
12340 * .cvsignore: Add "_*". Sort.
12341 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12342 * m4/.cvsignore: Add "*_gl.m4".
12343
e503aa60
AD
123442004-10-06 Akim Demaille <akim@epita.fr>
12345
12346 * src/parse-gram.y (add_param): Fix the truncation of trailing
12347 spaces.
12348
b4a20338
AD
123492004-10-05 Akim Demaille <akim@epita.fr>
12350
12351 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12352 whether the reducion was empty or not. This leaves room to
12353 improve the use of YYLLOC_DEFAULT in such a case.
12354 lalr1.cc is still experimental, so changing this is acceptable.
12355 And finally, there are probably not many users who changed the
12356 handling of locations in GLR, so changing is admissible too.
12357
12358 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12359 empty reduction, set @$ to an empty location ending the previously
12360 stacked symbol.
12361 Adjust uses to make sure the code is triggered on empty
12362 reductions.
12363 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12364 expected output: empty reductions have empty locations.
12365
f85a5e6f
AD
123662004-09-29 Akim Demaille <akim@epita.fr>
12367
12368 * data/lalr1.cc: Move towards a more standard C++ coding style
12369 for templates: Class < T > -> Class<T>.
12370
b203fc2c
AD
123712004-09-29 Akim Demaille <akim@epita.fr>
12372
12373 * data/lalr1.cc: Reinstall the former ctor, for sake of
12374 compatibility, but warn it will be removed.
12375 Move towards a more standard C++ coding style (i.e., type *var ->
12376 type* var).
12377
5b7e1e73
PE
123782004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12379
3fee967f
PE
12380 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12381 since it's less likely to work if NULs are involved in the future.
5b7e1e73 12382
0dcca5c2
AD
123832004-09-27 Akim Demaille <akim@epita.fr>
12384
12385 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12386
6dde1c82
AD
123872004-09-27 Akim Demaille <akim@epita.fr>
12388
12389 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 12390 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
12391 and argument names.
12392 (b4_cc_constructor_call): Likewise.
12393
b233d555
AD
123942004-09-24 Akim Demaille <akim@epita.fr>
12395
12396 * src/parse-gram.y (add_param): Strip the leading and trailing
12397 blanks from a formal argument declaration.
12398 (YY_LOCATION_PRINT): New.
12399
619404e3
AD
124002004-09-24 Akim Demaille <akim@epita.fr>
12401
12402 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12403 after the location.
12404
dd8d9022
AD
124052004-09-24 Akim Demaille <akim@epita.fr>
12406
12407 * doc/bison.texinfo (Table of Symbols): Sort.
12408
0092f063
AD
124092004-09-21 Akim Demaille <akim@epita.fr>
12410
12411 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12412 the useless parentheses.
12413 Suggested by Paul Eggert.
12414
451364ed
AD
124152004-09-20 Akim Demaille <akim@epita.fr>
12416
12417 Let the initial-action act on the look-ahead, and use it for the
12418 "initial push" (corresponding to an hypothetical beginning-of-file).
12419 And let lalr1.cc honor %initial-action.
12420
12421 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12422 example.
12423 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12424 (Parser::Parser): Remove the ctor that used to initialize it.
12425 (Parser::parse): Like in the other skeletons, issue the "starting
12426 parse" message before any action.
12427 Honor %initial-action.
12428 Initialize the stacks with the lookahead.
12429 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12430 look-ahead.
12431 Push them in the stacks.
12432 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12433
18d192f0
AD
124342004-09-20 Akim Demaille <akim@epita.fr>
12435
12436 * doc/bison.texinfo (Initial Action Decl): New.
12437
b8458aa5
AD
124382004-09-20 Akim Demaille <akim@epita.fr>
12439
12440 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12441 clearer criterion to define it.
12442 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12443 When reducing on an empty RHS, use the latest stacked location as
12444 location.
12445 yylloc is not always available.
12446 * data/glr.c: Likewise.
12447 Also, honor initial-actions.
12448
3fc16193
AD
124492004-09-20 Akim Demaille <akim@epita.fr>
12450
12451 * data/yacc.c (YY_LOCATION_PRINT): New.
12452 Define when we know YYLTYPE's structure, i.e., when the default
12453 YYLLOC_DEFAULT is used.
12454 * data/c.m4 (b4_yysymprint_generate): Use it.
12455 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12456 value of the result.
12457 (error_start_): Replace with...
12458 (error_range_): this location array.
12459 This allows to replace code relying on the implementation of
12460 locations by portable code.
12461 * data/yacc.c (yylerrsp): Replace with...
12462 (yyerror_range): this.
12463 Every time a token is popped, update yyerror_range[0], to have an
12464 accurate location for the error token.
12465 * data/glr.c (YY_LOCATION_PRINT): New.
12466 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12467 deference a pointer.
12468 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12469 report the location in %printers.
12470
12471 * src/scan-skel.l: Instead of abort, report error messages to ease
12472 understanding skeleton scanning failures.
12473
ecfe33e7
AD
124742004-09-16 Akim Demaille <akim@epita.fr>
12475
12476 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12477 (iterator, const_iterator): these, to be more in the C++ spirit.
12478 Also, return reverse iterators so that when displaying the stack
12479 we display its bottom first.
12480 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12481 from yacc.c.
12482 We should probably use vector here though.
12483
1576d44d
AD
124842004-09-16 Akim Demaille <akim@epita.fr>
12485
12486 Have more complete shift traces.
12487
12488 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12489 to report Shifts instead of ad hoc YYDPRINTF invocations,
12490 including for the error token.
12491 * data/lalr1.cc (symprint_): Output the location.
12492 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12493 output the location within the %printer.
12494 Activate GLR tests, at least to make sure they compile properly.
12495 They still don't pass though.
12496 * tests/calc.at: Adjust expect verbose output, since now "Entering
12497 state..." is on a different line than the "Shifting" message.
12498
9c66f418
AD
124992004-09-08 Akim Demaille <akim@epita.fr>
12500
12501 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12502 Bison directive from the Bison file to the invocation of this
12503 macro, so that these directives are passed to
12504 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12505 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12506 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12507 the extra Bison directives instead of the whole series.
12508 Change the grammar so that there are recoverable errors, and
12509 unrecoverable errors. Now we can have the parser give up before
12510 consuming the whole input. As a result we now can observe that
12511 the lookahead is freed when needed.
12512 Change the parser source to parse argv[1] instead of a hard coded
12513 string.
12514 Simplify yylex, and give a value and location to EOF.
12515 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12516 passed directives already coded in the file.
12517 Add some tests to check the location of "error".
12518 For some tests, the C++ parser is correct, and not yacc.c.
12519 For other tests, they provide different, but unsatisfying, values,
12520 so keep the C++ value so that at least one parser is "correct"
12521 according to the test suite.
12522 (Actions after errors): Remove, this is subsumed by the
12523 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12524
52d5733f
AD
125252004-09-06 Akim Demaille <akim@epita.fr>
12526
12527 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 12528 (Parser::pop): New.
52d5733f
AD
12529 Use it.
12530
a0e68930
AD
125312004-09-06 Akim Demaille <akim@epita.fr>
12532
12533 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12534 argument, an informative message.
12535 Call YY_SYMBOL_PRINT.
12536 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12537 * data/lalr1.cc (destruct_): Likewise.
12538 In addition, no longer depend on b4_yysymprint_generate and
12539 b4_yydestruct_generate to generate these functions, do it "by
12540 hand".
12541
e757bb10
AD
125422004-09-03 Akim Demaille <akim@epita.fr>
12543
12544 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12545 invoked, yydestruct the lookahead.
12546 * tests/calc.at (Calculator $1): Update the expected lengths of
12547 traces: there is an added line for the discarded lookahead.
12548 * doc/bison.texinfo (Destructor Decl): Some rewording.
12549 Define "discarded" symbols.
12550
0fe1f06d
AD
125512004-09-02 Akim Demaille <akim@epita.fr>
12552
12553 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12554
284acc8b
AD
125552004-09-02 Akim Demaille <akim@epita.fr>
12556
12557 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12558 (YYDSYMPRINTF): Rename as...
12559 (YY_SYMBOL_PRINT): this.
12560 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12561 two.
12562 Use it instead of direct symprint_ calls.
12563 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12564 one.
12565
a5eb1ed2
AD
125662004-09-02 Akim Demaille <akim@epita.fr>
12567
b7c72fe1
AD
12568 * data/lalr1.cc (b4_yysymprint_generate): New.
12569 (symprint_): New member function, defined when YYDEBUG.
12570 Use it consistently instead of token/nterm debugging output by
12571 hand.
a5eb1ed2
AD
12572 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12573 %printer calls to use cdebug_ when using lalr1.cc.
12574
417141dd
AD
125752004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12576
12577 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12578 with #ifdef YYDEBUG.
12579
2fa09258
AD
125802004-08-26 Akim Demaille <akim@epita.fr>
12581
12582 * doc/bison.texinfo (Implementing Loops): Rename as...
12583 (Implementing Gotos/Loops): this.
12584
9378b508
PE
125852004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12586
12587 Adjust to latest gnulib.
12588 * bootstrap (gnulib_modules): Add xalloc-die.
12589 Set LC_ALL=C so that file names sort consistently.
12590 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12591 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12592 uintmax_t.m4, ulonglong.m4.
12593 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12594 po.m4 since we are now using _gl.m4 instead.
12595
87a8ad5c
PE
125962004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12597
12598 * src/scan-action.l: Remove. Scanning of semantic actions is
12599 handled in scan-gram.l.
12600
dca81a78
PE
126012004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12602
12603 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12604
12605 * src/location.h (struct): The file member is a uniqstr.
12606 (equal_boundaries): Use UNIQSTR_EQ for comparison.
12607
c9cbf7c5
PE
126082004-07-22 Paul Eggert <eggert@cs.ucla.edu>
12609
12610 Fix bug with non-%union parsers that have printers or destructors,
12611 which led to a Bison core dump. Reported by Peter Fales in
12612 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 12613
c9cbf7c5
PE
12614 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
12615 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
12616 not to our own type.
12617 * src/output.c (symbol_destructors_output, symbol_printers_output):
12618 Don't assume %union.
12619 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
12620 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
12621 UNION-FLAG. All callers changed.
12622 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
12623 Use type char, not unsigned int, when declaring an array of char;
12624 this lets us remove a cast.
12625 (Printers and Destructors): Add non-%union test cases.
12626
fa7e68c3
PE
126272004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12628
12629 * doc/bison.texinfo: Minor editorial changes, mostly to the new
12630 GLR writeups. E.g., avoid frenchspacing and the future tense,
12631 change "lookahead" to "look-ahead", and change "wrt" to "with
12632 respect to".
2fa09258 12633
fa7e68c3
PE
126342004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12635
12636 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
12637 New sections, split off from the GLR Parsers section. Put the new
12638 Simple GLR Parser near the start of the GLR section, for clarity.
12639 Rewrite connective text.
12640
99a9344e
PE
126412004-06-21 Frank Heckenbach <frank@g-n-u.de>
12642
12643 * doc/bison.texinfo (Simple GLR Parsers): New section.
12644
8dd162d3
PE
126452004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12646
12647 * NEWS, TODO, doc/bison.texinfo:
12648 Use "look-ahead" instead of "lookahead", to be consistent.
12649 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
12650 while we're fixing "look-ahead".
12651 * src/conflicts.c (shift_set): Renamed from shiftset.
12652 (look_ahead_set): Renamed from lookaheadset.
12653 * src/print.c: Likewise.
12654 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
12655 name for "lookahead".
12656 (report_types, usage): Likewise.
12657 * src/getargs.h (report_look_ahead_tokens): Renamed from
12658 report_lookaheads.
12659 * src/lalr.c (compute_look_ahead_tokens): Renamed from
12660 compute_lookaheads.
12661 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
12662 (look_ahead_tokens_print): Renamed from lookaheads_print.
12663 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
12664 state_rule_lookaheads_print.
12665 * src/state.h: Likewise.
12666 (reductions.look_ahead_tokens): Renamed from lookaheads.
12667 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
12668 AT_DATA_LOOKAHEADS_GRAMMAR.
12669
57a90331
PE
126702004-06-03 Paul Eggert <eggert@cs.ucla.edu>
12671
12672 * README: Update location of patched M4 distribution.
12673
8ed3234a
PE
126742004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
12675
12676 Don't assume the C++ compiler takes the same arguments as the C compiler
12677 (trivial change).
12678 * configure.ac (O0CXXFLAGS): New var.
12679 * tests/atlocal.in (CXXFLAGS): Use it.
12680
07971983
PE
126812004-05-29 Paul Eggert <eggert@cs.ucla.edu>
12682
12683 Fix some "make check" problems with C++ reported by
12684 Albert Chin-A-Young for Tru64 C++ in this thread:
12685 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
12686
12687 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
12688 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12689 Output to a .cc file for C++, not to a .c file.
12690 * tests/calc.at (AT_CHECK_CALC): Likewise.
12691 * tests/regression.at (AT_CHECK_DANCER): Likewise.
12692 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
12693
29058652
PE
126942004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
12695
12696 * tests/calc.at, tests/actions.at: Workaround for SGI
12697 C++ compiler. (trivial change)
12698
62cb8a99
PE
126992004-05-27 Paul Eggert <eggert@cs.ucla.edu>
12700
fd418816
PE
12701 Spent a few hours checking out which prerequisite versions the
12702 current sources actually require. I went all the way back to
12703 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
12704 a seemingly endless set of combinations of versions more recent
12705 than that. The bottom line is that the current sources require
12706 fairly recent versions of the build tools, and it'll be some work
12707 to change this.
12708 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
12709 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
12710 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
12711 Add comments explaining why those particular versions are
12712 currently needed.
2fa09258 12713
62cb8a99
PE
12714 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
12715 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 12716 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
12717
12718 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
12719 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
12720
caa52c10
PE
127212004-05-26 Paul Eggert <eggert@cs.ucla.edu>
12722
12723 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
12724 0.11.5. Suggested by Bruno Haible.
12725 * bootstrap: Remove gettext version checking.
12726
12727 * doc/bison.texinfo (Decl Summary): Also mention that %union
12728 can depend on prerequisite types. Problem reported by Tim
12729 Van Holder.
12730
4bfd5e4e
PE
127312004-05-25 Paul Eggert <eggert@cs.ucla.edu>
12732
2cef3017
PE
12733 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
12734 * README-alpha: Don't tell people not to package this.
12735
b9c85d5c
PE
12736 * bootstrap: Don't assume $(...) works; use `...` instead.
12737 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
12738 gettext better.
12739
4bfd5e4e
PE
12740 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
12741 put into the -d output file, and mention what to do if YYSTYPE is
12742 defined as a macro.
12743
6a36ff94
PE
127442004-05-24 Paul Eggert <eggert@cs.ucla.edu>
12745
6712933e
PE
12746 Undo change made earlier today: it caused autopoint to not bring
12747 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
12748 autopoint's.
12749
12750 * bootstrap: Check that gettext version matches what's in
12751 configure.ac. Warn users to ignore robots.txt ERROR 404.
12752 * bootstrap: Undo today's earlier change (logged below).
12753 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 12754
6a36ff94
PE
12755 The gettext version checking is causing more trouble than it's
12756 curing; remove it. Problem reported by Paul Hilfinger.
12757
12758 * bootstrap: Issue a warning that one can expect a message
12759 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12760 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12761
209ea708
PE
127622004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12763
12764 Ensure that the C++ compiler used for testing actually works on a
12765 simple test program; if not, skip the C++-related tests. Problem
12766 reported by Vin Shelton in:
161a71f3 12767 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
12768
12769 * m4/cxx.m4: New file.
12770 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12771 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12772 * tests/local.at (AT_COMPILE_CXX): Use it.
12773
41ca2549
PE
127742004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12775
383e69dc
PE
12776 * data/glr.c (yylloc): Output this macro even if locations are not
12777 being generated, as the GLR parser needs it even in that case.
12778 Problem reported by Troy A. Johnson
12779 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12780
41ca2549
PE
12781 * configure.ac (AC_INIT): Update to 1.875e.
12782
e476c87d
PE
127832004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12784
12785 * NEWS: Version 1.875d.
12786 * configure.ac (AC_INIT): Likewise.
12787 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12788
12789 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12790 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12791 lalr1.cc runs afoul of the first, and the last two are no longer
12792 supported by GCC 3.4.0.
12793 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12794 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12795
233a88ad
PE
127962004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12797
12798 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12799 unsigned int, for compatibility with latest gnulib hash module.
12800 * src/state.c (state_hash, state_hasher): Likewise.
12801 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12802 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 12803
12ffdd28
PE
128042004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12805
12806 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12807
12808 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12809 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12810 character and string literals.
12811 (unexpected_end): New function.
12812 (unexpected_eof): Use it.
12813 (unexpected_newline): New function.
12814 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12815 actions.
e476c87d 12816
12ffdd28
PE
12817 * NEWS: Document %expect-rr.
12818
12819 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12820 Fix typo by replacing $1 with $option.
12821 Remove more 'intl'-related files.
9668e2be 12822 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
12823
12824 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12825 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12826 strtoul.c.
12827 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12828 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12829 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12830 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12831 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12832 * src/.cvsignore: Add *.output.
12833
12834 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12835 gets copied to the output file.
e476c87d 12836
1f65350a
PE
128372004-04-28 Paul Eggert <eggert@twinsun.com>
12838
12839 Get files from the gnulib and po repositories, instead of relying
12840 on them being in our CVS. Upgrade to latest versions of gnulib
12841 and Automake.
12842
12843 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12844 * bootstrap: Bootstrap from gnulib and po repositories.
12845 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12846 * README-cvs: Document these changes. Remove version numbers from
12847 mentions of build tools, since they change so often. Mention Flex.
12848
12849 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12850 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
12851 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12852 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 12853 does this for us.
12ffdd28
PE
12854 (AC_ISC_POSIX): Remove; we no longer support this
12855 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
12856 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12857 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12858 Do not check for C89 headers, except for locale.h which is used
12859 by the Yacc library and must port to K&R hosts.
12860 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12861 Do not check for C89 functions, except for setlocale which is
12862 used by the Yacc library.
12863 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12864 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12865 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12866 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12867 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12868 AM_GNU_GETTEXT): Remove; now done by:
12869 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12870 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12871 for us.
12872
12873 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12874 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12875 Define to empty, as gnulib.mk will do the rest for us.
12876 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12877 for us.
12878 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12879 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12880
12881 * src/files.c: Include gnulib's xstrndup.h.
12882
12883 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12884 (REALLOC): Use xnrealloc, for likewise.
12885 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12886 (strnlen, memrchr): Remove decls; functions no longer used.
12887 Include <stpcpy.h>.
12888
12889 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12890 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12891 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12892 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12893 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12894 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12895 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12896 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12897 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12898 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12899 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12900 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12901 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12902 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12903 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12904 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12905 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12906 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12907 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12908 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12909 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12910 Remove, as these files are now generated automatically
12911 by bootstrap or automake.
12912
12913 * po/ChangeLog: Remove: all but one entry was a duplicate
12914 of this file, and I moved that 2000-11-02 entry here.
12915
12916 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12917 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12918 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12919 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12920 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12921 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12922 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12923 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12924 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12925 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12926 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12927 xstrndup.h.
12928 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12929 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12930 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12931 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12932 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12933 * src/.cvsignore: Remove *_.c.
12934
12935
12936 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12937 support it. (The latest stable gzip doesn't.)
12938
129392004-04-27 Paul Eggert <eggert@twinsun.com>
12940
12941 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12942 case, as stos_ is now used by destructors due to the 2004-02-09
12943 change.
12944
12945 Remove more K&R C support.
12946 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12947 * lib/subpipe.c (errno): Remove decl.
12948 Include <stdlib.h> unconditionally.
12949 (EXIT_FAILURE): Remove macro.
12950 * src/complain.c (vfprintf, strerror): Remove.
12951 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12952 unconditionally.
12953 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12954 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12955 (strchr, strspn, memchr): Remove decls.
12956 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12957 unconditionally. Do not declare perror.
12958 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12959 unconditionally.
12960
12961 * src/complain.c (_): Remove useless defn, as system.h defines this.
12962
12963 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12964 with latest obstack.h.
12965 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12966 to procedure types, as obstack.h now does that for us.
12967 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12968
12969 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12970 so that this include file can stand alone.
12971 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12972 does this now. Include subpipe.h first after config.h, to
12973 test whether it can stand alone.
12974
12975 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12976 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12977 unused declaration.
12978
12979 * tests/synclines.at (%union synch line): Put a dummy member in
12980 the union, because empty unions aren't allowed in C. Caught
12981 by GCC 3.4.0.
12982
4f16766c
PE
129832004-04-13 Jim Meyering <jim@meyering.net>
12984
12985 * src/conflicts.c (conflicts_print): Correct format string typo:
12986 use `%%' to produce literal `%'. (trivial change)
12987
779e7ceb
PE
129882004-03-30 Paul Eggert <eggert@twinsun.com>
12989
12990 * src/getargs.c (version): Update copyright year to 2004.
12991
12992 * data/c.m4 (b4_int_type): Use 'short int' rather than
12993 'short', and similarly for 'long', 'unsigned', etc.
12994 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12995 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12996 yy_yypstack, yydumpstack): Likewise.
12997 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12998 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12999 Likewise.
13000 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13001 yy_stack_print, yyparse): Likewise.
13002 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13003 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13004 * lib/bitset.c (bitset_print): Likewise.
13005 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13006 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13007 * lib/bitsetv.c (bitsetv_dump): Likewise.
13008 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13009 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13010 Likewise.
13011 * src/LR0.c (allocate_itemsets): Likewise.
13012 * src/gram.h (rule_number, rule): Likewise.
13013 * src/lalr.h (goto_number): Likewise.
13014 * src/nullable.c (nullable_compute): Likewise.
13015 * src/output.c (prepare_rules): Likewise.
13016 * src/relation.c (relation_print, relation_digraph): Likewise.
13017 * src/relation.h (relation_node): Likewise.
13018 * src/state.h (state_number, transitions, errs, reductions,
13019 struct state): Likewise.
13020 * src/symtab.h (symbol_number, struct symbol): Likewise.
13021 * src/tables.c (vector_number, tally, action_number,
13022 default_goto, goto_actions): Likewise.
13023 * tests/existing.at (GNU Cim Grammar): Likewise.
13024 * tests/regression.at (Web2c Actions): Likewise.
13025
13026 * src/output.c (muscle_insert_short_int_table): Renamed from
13027 muscle_insert_short_table. All uses changed.
13028
d6328241
PH
130292004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13030
13031 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13032 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13033 Add %expect-rr rule.
4f16766c 13034
d6328241
PH
13035 * src/scan-gram.l: Recognize %expect-rr.
13036
4f16766c 13037 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 13038 expected_conflicts.
4f16766c 13039 (expected_rr_conflicts): Declare.
d6328241
PH
13040
13041 * src/conflicts.c (expected_sr_conflicts): Rename from
13042 expected_conflicts.
13043 (expected_rr_conflicts): Define.
13044 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13045 for GLR parsers.
13046 Use expected_sr_conflicts in place of expected_conflicts.
13047 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 13048
d6328241 13049 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 13050
1452af69
PE
130512004-03-08 Paul Eggert <eggert@gnu.org>
13052
13053 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 13054 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
13055
13056 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13057 in lalr1.cc.
13058 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13059 * src/scan-gram.l (scan_integer): New function.
13060 ({int}): Use it.
13061 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13062 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13063 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13064 Say "long int", not "long", for uniformity with GNU style.
13065
006d217d
PE
130662004-02-25 Paul Eggert <eggert@twinsun.com>
13067
13068 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13069 compilers. This fixes a problem with Intel's C++ compiler being
13070 chatty, reported by Guido Trentalancia in
161a71f3 13071 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 13072
c2729758
ADL
130732004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13074
13075 Support %destructor and merge error locations in lalr1.cc.
13076
13077 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13078 (Parser::stos_): Define unconditionally.
13079 (Parser::destruct_): New method. Generate its body with
13080 b4_yydestruct_generate.
13081 (Parser::error_start_): New attribute.
13082 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13083 token which are discarded.
13084 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13085 error_start_ when erroneous token are discarded.
13086 (Parser::parse) <yyerrlab1>: Compute the location of the error
13087 token so that it covers all the discarded tokens.
13088 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13089 it can be called with `%skeleton "lalr1.cc"', and do that.
13090
dd0e0635
PE
130912004-02-02 Paul Eggert <eggert@twinsun.com>
13092
13093 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13094 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13095 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13096 There's no need to mention top_builddir since Automake does that
13097 for us.
13098 (INCLUDES): Remove, as Automake says it's obsolescent.
13099 Contents migrated into AM_CPPFLAGS as described above.
13100 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13101
131022004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13103
13104 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13105 (yyreportSyntaxError): Handle case where lookahead token is
13106 YYEMPTY.
13107
be16239b
PH
131082004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13109
13110 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13111 resulting parsers are compilable with C++.
13112
5fa90832
PE
131132003-12-23 Paul Eggert <eggert@twinsun.com>
13114
13115 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13116 * src/output.c (output_skeleton): Rename local var.
13117 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13118 Bison tokens, as this runs afoul of the 2003-10-07 change that
13119 disallowed NUL bytes in character constants or string literals.
13120
13121 * tests/local.at: Require Autoconf 2.59's Autotest.
13122 * tests/testsuite.at: Don't include local.at, since we now assume
13123 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13124 including it.
13125 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13126 multiple inclusion warnings.
dd0e0635 13127
b165c324
AD
131282003-12-02 Akim Demaille <akim@epita.fr>
13129
13130 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13131 conditions.
13132 From Bruno Haible.
13133
26e06a21
ADL
131342003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13135
13136 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13137
92ac3705
PE
131382003-10-07 Paul Eggert <eggert@twinsun.com>
13139
6a5ecb38
PE
13140 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13141 if testsuite doesn't exist.
13142
92ac3705
PE
13143 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13144 literals, unfortunately.
13145 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13146 Complain about NUL bytes in character constants or string literals.
13147
91d2c560
PE
131482003-10-05 Paul Eggert <eggert@twinsun.com>
13149
13150 * NEWS: Don't document %no-default-prec, as it's still
13151 too experimental.
13152 * doc/bison.texinfo: Document %no-default-prec only if
13153 the defaultprec flag is set. Normally it's not.
13154
0cc3da3a
PE
131552003-10-04 Paul Eggert <eggert@twinsun.com>
13156
13157 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13158 non-modifiable lvalue, instead of a modifiable one.
13159 * doc/bison.texinfo (Actions): Document that $$ can
13160 be assigned to. Do not claim that $$ and $N are
13161 array element references: user code should not rely on this.
13162
22fccf95
PE
131632003-10-01 Paul Eggert <eggert@twinsun.com>
13164
13165 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13166 (grammar_declaration): Use it.
13167 * src/scan-gram.l: New token %no-default-prec.
13168 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13169 * NEWS, doc/bison.texinfo: Document the above.
13170
fc8f2965
AD
131712003-10-01 Akim Demaille <akim@epita.fr>
13172
13173 VCG no longer supports long_straight_phase.
13174
13175 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13176 * src/print_graph.c (print_graph): Adjust.
13177
39a06c25
PE
131782003-09-30 Frank Heckenbach <frank@g-n-u.de>
13179 and Paul Eggert <eggert@twinsun.com>
13180
13181 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13182 Table of Symbols): Document %default-prec.
13183 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13184 (grammar_declaration): Set default_prec on %default-prec.
13185 * src/scan-gram.l (%default-prec): New token.
13186 * src/reader.h (default_prec): New flag.
13187 * src/reader.c: Likewise.
13188 (packgram): Handle it.
13189 * tests/conflicts.at (%default-prec without %prec,
13190 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 13191
39a06c25
PE
131922003-09-30 Paul Eggert <eggert@twinsun.com>
13193
13194 * tests/testsuite.at: Include local.at, not input.at, fixing
13195 a typo in the 2003-08-25 patch.
13196
62b6aef9
AD
131972003-08-27 Akim Demaille <akim@epita.fr>
13198
13199 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13200 GCC warnings.
13201
89e1cc61
AD
132022003-08-26 Akim Demaille <akim@epita.fr>
13203
13204 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13205 "<\#" to avoid magic from Gnus when posting parts of this script.
13206
a08460b0
AD
132072003-08-26 Akim Demaille <akim@epita.fr>
13208
13209 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13210 (Parser::parse): here.
13211 Adjust: nerrs and errstatus is now replaced by...
13212 (Parser::nerrs_, Parser::errstatus_): New.
13213
603f1cfd
AD
132142003-08-25 Akim Demaille <akim@epita.fr>
13215
13216 * config/announce-gen, Makefile.cfg: New.
13217 * Makefile.am: Adjust.
13218 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13219 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13220
cd3684cf
AD
132212003-08-25 Akim Demaille <akim@epita.fr>
13222
13223 When reducing initial empty rules, Bison parser read an initial
13224 location that is not defined. This results in garbage, and that
13225 affects Bison's own parser. Therefore we need (i) to extend Bison
13226 to support a means to initialize this location, and (ii) to use
13227 this CVS Bison to fix CVS Bison's parser.
13228
13229 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13230 with...
13231 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13232 * src/parse-gram.y: Adjust.
13233 (%initial-action): New.
13234 (%error-verbose): Since we require CVS Bison, there is no reason
13235 not to use it.
13236 * src/scan-gram.l: Adjust.
13237 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13238 * data/yacc.c (yyparse): Use b4_initial_action.
13239
4e03e201
AD
132402003-08-25 Akim Demaille <akim@epita.fr>
13241
13242 * doc/bison.texinfo: Don't promote stdout for error messages.
13243
8c182d05
AD
132442003-08-25 Akim Demaille <akim@epita.fr>
13245
13246 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13247 From Alexandre Duret-Lutz.
13248
6a60c4cf
PE
132492003-08-25 Akim Demaille <akim@epita.fr>
13250
13251 Version 1.875c.
13252
25f66e1a
AD
132532003-08-25 Akim Demaille <akim@epita.fr>
13254
13255 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13256 Use them.
13257
5348bfbe
AD
132582003-08-25 Akim Demaille <akim@epita.fr>
13259
13260 * data/lalr1.cc (Parser::reduce_print_): New.
13261 Use it.
13262
47301314
AD
132632003-08-25 Akim Demaille <akim@epita.fr>
13264
13265 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13266 error recovery loops. This patch is based on
161a71f3 13267 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
13268 Also, augment the similarity between lalr1.cc and yacc.c.
13269 Note: the locations of error recovery rules are not correct yet.
13270
13271 * data/lalr1.cc: Comment changes to augment the similarity between
13272 lalr1.cc and yacc.c.
13273 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13274 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13275 yyerrlab), when hitting EOF, pop the whole stack here instead of
13276 merely falling thru the default error handling mechanism.
13277 (yyerrorlab): New label, with the old contents of YYERROR,
13278 plus the following change: pop the stack of rhs corresponding
13279 to the production that invoked YYERROR. That is how Yacc
13280 behaves (required by POSIX).
13281 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13282 fail.
13283
1f7a61ff
AD
132842003-08-25 Akim Demaille <akim@epita.fr>
13285
13286 Tune local.at so that people can "autom4te -l autotest calc.at -o
13287 calc" for instance, to extract a sub test suite.
13288
13289 * tests/testsuite.at: Move the initialization, Autotest version
13290 requirement, and AT_TESTED invocation into...
13291 * tests/local.at: here.
13292 * tests/testsuite.at: Include it for compatibility with Autoconf
13293 2.57.
13294 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13295 be ignore.
13296
327b5b56
PE
132972003-08-04 Paul Eggert <eggert@twinsun.com>
13298
13299 Rework code slightly to avoid gcc -Wtraditional warnings.
13300 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13301 The returned value is now stored in *YY0. All callers changed.
13302 * src/output.c (merge_output): Adjust to the above change.
13303
0051e3ed
PE
133042003-07-26 Paul Eggert <eggert@twinsun.com>
13305
13306 * data/glr.c (YYASSERT): New macro.
13307 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13308 yyresolveStates, yyprocessOneStack):
13309 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13310 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 13311
137437c6
PE
133122003-07-25 Paul Eggert <eggert@twinsun.com>
13313
5b620e06
PE
13314 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13315 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 13316 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
13317 by Frank Heckenbach, though I have omitted the structure-initialization
13318 part of his glr-knr.diff patch since I recall that the Portable
13319 C Compiler didn't require that change.
13320
137437c6
PE
13321 Let the user specify how to allocate and free memory.
13322 Derived from a suggestion by Frank Heckenbach in
161a71f3 13323 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
13324 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13325 All uses of free, malloc, realloc changed to use these macros,
13326 and unnecessary casts removed.
13327 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13328
ddb85ca5
PE
133292003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13330
13331 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13332 use s.empty() rather than s == "" to test for empty string; see
161a71f3 13333 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
13334 (trivial change)
13335
39910e09
AD
133362003-06-25 Akim Demaille <akim@epita.fr>
13337
13338 * config/depcomp, config/install-sh: Update from masters.
13339
0ae99356
PE
133402003-06-20 Paul Eggert <eggert@twinsun.com>
13341
13342 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13343 and return properly parenthesized result.
13344 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13345 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13346 Remove unnecessary parentheses from uses.
13347 * doc/bison.texinfo (Location Default Action): Describe the
13348 conventions for parentheses.
13349
cd05d13c
PE
133502003-06-19 Paul Eggert <eggert@twinsun.com>
13351
81fd08ca
PE
13352 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13353 yyreportTree): Do not assume that size_t is the same width as int,
13354 when printing sizes. Print sizes using an unsigned format.
13355 Problem reported by Frank Heckenbach in
161a71f3 13356 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 13357
cd05d13c
PE
13358 Port to Forte Developer 7 C compiler.
13359 * data/glr.c (struct YYLTYPE): If locations are not being used,
13360 declare a single dummy member, as empty structs do not conform
13361 to the C standard.
13362 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13363 the Forte Developer 7 C compiler complains that end-of-loop
13364 code is not reached.
13365
4dcf140b
PE
133662003-06-17 Paul Eggert <eggert@twinsun.com>
13367
13368 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13369 avoid warnings from picky compilers about redefinition of PARAMS.
13370
8dd76bee
PE
133712003-06-17 Paul Eggert <eggert@twinsun.com>
13372
13373 Version 1.875b.
13374
13375 * NEWS: Document 1.875b.
13376
13377 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13378 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13379 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13380 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13381 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13382 per recent gettext manual's suggestion.
13383 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13384 Use prototypes, not old-style definitions.
13385 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13386 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13387 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13388 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13389 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13390 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13391 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13392 vbitset_or_and_cmp, vbitset_copy): Likewise.
13393
13394 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13395 Do not include <stdlib.h>.
13396 (PARAMS): Define unconditionally for C89.
13397 (ATTRIBUTE_NORETURN): Remove.
13398 (ATTRIBUTE_UNUSED): Define unconditionally.
13399
13400 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 13401 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
13402 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13403 * lib/vbitset.c, lib/vbitset.h: New files.
13404 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13405 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13406 from libbitset.
13407
13408 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13409 `How Can I Reset @code{yyparse}', since texinfo does not allow
13410 arbitrary @ in node names.
13411
13412 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13413 shouldn't be needed according to the gettext 0.12.1 documentation
13414 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 13415 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 13416 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 13417 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 13418
8dd76bee
PE
13419 * lib/.cvsignore: Add stdbool.h.
13420 * m4/.cvsignore: Add nls.m4, po.m4.
13421
13422 Upgrade to CVS gnulib.
13423 * stdbool_.h: File renamed from stdbool.h.in.
13424 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13425 AC_HEADER_STDBOOL.
13426 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13427 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13428 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13429 (MOSTLYCLEANFILES): New var.
13430 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13431 (stdbool.h): New rule.
13432 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13433 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13434 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13435 m4/quote.m4: Upgrade to today's gnulib.
13436
13437 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13438 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13439 the tests right now.
13440 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13441 yyerror are declared before use; C99 requires this.
13442
25005f6a
PH
134432003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13444
13445 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13446 first.
13447 (yyrecoverSyntaxError): Correct the logic for setting and testing
13448 yyerrState.
13449 Correct comment on handling EOF.
13450 Allow states with only a default reduction, rather than failing
8dd76bee 13451 (I can't quite reconstruct why these were not allowed before).
25005f6a 13452
137437c6 13453 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 13454 buffer overruns, corrupting state.
8dd76bee
PE
13455
13456 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
13457 definition.
13458 * src/reader.h (max_left_semantic_context): New variable declaration.
13459 * src/scan-gram.l (max_left_semantic_context): Define.
13460 (handle_action_dollar): Update max_left_semantic_context.
13461 * data/glr.c (YYMAXLEFT): New definition.
13462 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13463 (yyresolveAction): Ditto.
13464
13465 Fixes to problems with location handling in GLR parsers reported by
13466 Frank Heckenbach (2003/06/05).
13467
13468 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13469 (YYRHSLOC): Add parentheses, and define only if locations used.
13470 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13471 locations not used.
13472 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13473 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 13474
25005f6a
PH
13475 * tests/cxx-type.at: Exercise location information; update tests
13476 to differentiate output with and without locations.
8dd76bee 13477 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
13478 because default YYLTYPE not yet defined.
13479 Change semantic actions to compute strings, rather than printing
13480 them directly (to test proper passing of semantics values). Change
13481 output to prefix notation and update test data and expected results.
13482 (yylex): Track locations.
13483 (stmtMerge): Return value rather than printing, and include arguments
13484 in value.
8dd76bee 13485
711f40b7
PE
134862003-06-03 Paul Eggert <eggert@twinsun.com>
13487
13488 Avoid warnings generated by GCC 2.95.4 when Bison is
13489 configured with --enable-gcc-warnings.
13490 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13491 yy::]b4_parser_class_name[::translate_,
13492 yy::Stack::operator[] (unsigned),
13493 yy::Stack::operator[] (unsigned) const,
13494 yy::Slice::operator[] (unsigned),
13495 yy::Slice::operator[] (unsigned) const):
13496 Rename local vars to avoid warnings.
13497 * tests/glr-regression.at (Improper handling of embedded actions
13498 and $-N in GLR parsers): Remove unused local variable from yylex.
13499 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13500 (void) as arg when not pure, since we now assume C89 when building
13501 Bison. Pacify GCC by using parameter.
13502
ac695f7d
PE
135032003-06-02 Paul Eggert <eggert@twinsun.com>
13504
13505 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13506 yy::Location::lines, yy::Location::columns): Rename arguments
13507 to avoid shadowing; this removes a warning generated by GCC 3.3.
13508
26ec81e0
PE
135092003-06-01 Paul Eggert <eggert@twinsun.com>
13510
13511 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13512 to g++, as GCC 3.3 complains if you do it.
13513 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13514 everything that WARNING_CFLAGS has, except omit warnings
13515 not suitable for C++.
13516 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13517 * tests/atlocal.in (CXXFLAGS): New var.
13518 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13519
13520 Fix a GLR parser bug I reported in February; see
161a71f3 13521 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
13522 The problem was that GLR parsers did not conform to the C standard,
13523 because actions like { $1 = $2 + $3; } expanded to expressions
13524 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13525 to a local variable. The C standard says that expressions
13526 like (var = f ()) + (var = f ()) have undefined behavior.
13527 Another problem was that GCC sometimes issues warnings that
13528 yyfill and its parameters are unused.
13529
13530 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13531 as possibly unused.
13532 (yyfill): New function.
13533 (YYFILL): Use it.
13534 (yyuserAction): Change type of yynormal to bool, so that it matches
13535 the new yyfill signature. Mark it as possibly unused.
13536
13537
13538 Follow up on a bug I reported in February, where a Bison-generated
13539 parser can loop. Provide a test case and a fix for yacc.c. I
13540 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13541 The original bug report is in:
161a71f3 13542 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
13543
13544 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13545 macro's size was becoming unwieldy.
13546 (yyerrlab): Do not discard an empty lookahead symbol, as this
13547 might destroy garbage.
13548 (yyerrorlab): New label, with the old contents of YYERROR,
13549 plus the following change: pop the stack of rhs corresponding
13550 to the production that invoked YYERROR. That is how Yacc
13551 behaves, and POSIX requires this behavior.
13552 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13553 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13554 Define 'alarm' to do nothing if unistd.h is not available.
13555 Add a new rule "exp: '-' error;" to test the above change to
13556 data/yacc.c. Use 'alarm' to abort any test taking longer than
13557 10 seconds, as it's probably looping.
13558 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13559 Also, the new yacc.c generates two fewer diagnostics for an
13560 existing test.
13561
d0829076
PE
135622003-05-24 Paul Eggert <eggert@twinsun.com>
13563
c6ae27df
PE
13564 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13565 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13566 This fixes a problem reported by John Bowman when the Compaq/HP
13567 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13568 -ansi -Wall -gall).
13569 * data/yacc.c (union yyalloc): Likewise.
13570 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 13571
d0829076
PE
13572 Switch from 'int' to 'bool' where that makes sense.
13573
13574 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13575 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13576 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13577 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13578 Return or accept bool, not int. All callers changed.
13579 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13580 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13581 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13582 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13583 bitset_or_and_cmp_): Likewise.
13584 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13585 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13586 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13587 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13588 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13589 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13590 bitset_stats_or_and_cmp): Likewise.
13591 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13592 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13593 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13594 ebitset_xor_cmp): Likewise.
13595 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13596 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13597 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13598 lbitset_xor_cmp): Likewise.
13599 * lib/bbitset.h: Include <stdbool.h>.
13600 (struct bitset_vtable): The following members now return bool, not
13601 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13602 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13603 or_and_cmp).
13604 * src/conflicts.c (count_rr_conflicts): Likewise.
13605 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
13606 All uses changed.
13607 * lib/ebitset.c (ebitset_obstack_init): Likewise.
13608 * lib/lbitset.c (lbitset_obstack_init): Likewise.
13609 * src/getargs.c (debug_flag, defines_flag, locations_flag,
13610 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13611 graph_flag): Likewise.
13612 * src/getargs.h (debug_flag, defines_flag, locations_flag,
13613 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13614 graph_flag): Likewise.
13615 * src/output.c (error_verbose): Likewise.
13616 * src/output.h (error_verbose): Likewise.
13617 * src/reader.c (start_flag, typed): Likewise.
13618 * src/reader.h (typed): Likewise.
13619 * src/getargs.c (LOCATIONS_OPTION): New constant.
13620 (long_options, getargs): Use it.
13621 * src/lalr.c (build_relations): Use bool, not int.
13622 * src/nullable.c (nullable_compute): Likewise.
13623 * src/print.c (print_reductions): Likewise.
13624 * src/tables.c (action_row, pack_vector): Likewise.
13625 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
13626 * src/output.c (prepare): Use it.
13627 * src/output.c (token_definitions_output,
13628 symbol_destructors_output, symbol_destructors_output): Use string,
13629 not boolean integer, to keep track of whether to output separator.
13630 * src/print_graph.c (print_core): Likewise.
13631 * src/state.c (state_rule_lookaheads_print): Likewise.
13632
13633 * config/install-sh: Sync from automake 1.7.5.
13634
6b2584b7
PE
136352003-05-14 Paul Eggert <eggert@twinsun.com>
13636
13637 * src/parse-gram.y (rules_or_grammar_declaration): Require a
13638 semicolon after a grammar declaration, in the interest of possible
13639 future changes to the Bison input language.
13640 Do not allow a stray semicolon at the start of the grammar.
13641 (rhses.1): Allow one or more semicolons after any rule, including
13642 just before "|" as required by POSIX.
13643 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
13644 grammar.
13645
caf37a36
ADL
136462003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
13647
13648 %parse-param support for lalr1.cc.
13649
13650 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
13651 b4_cc_constructor_calls, b4_cc_constructor_call,
13652 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
13653 definitions.
13654 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
13655 parse-param arguments.
13656 (yy::b4_parser_class_name): Declare instance variables to
13657 hold parse-param arguments.
13658 * tests/calc.at: s/value/semantic_value/ because value clashes
13659 with a member of yy::b4_parser_class_name. Adjust C++ code
13660 to handle %parse-param. Enable %parse-param test in C++.
13661
3ab37077
PE
136622003-05-12 Paul Eggert <eggert@twinsun.com>
13663
13664 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
13665 English a bit. Fix fclose typo. Change "const char" to "char
13666 const", and use ANSI C rather than K&R for "main". Suggest
13667 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
13668 and suggest yy_switch_to_buffer.
13669
136702003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
13671
13672 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
13673 C89. This avoids a diagnostic on compilers that define __STDC__
13674 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 13675 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 13676
e743727f
PE
136772003-05-03 Paul Eggert <eggert@twinsun.com>
13678
13679 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
13680 Do not overrun array bounds.
13681 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 13682 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 13683
916708d5
AD
136842003-04-29 Akim Demaille <akim@epita.fr>
13685
13686 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
13687 * src/getargs.c, src/getargs.h: here, as bool, not int.
13688 (nondeterministic_parser): New.
13689 * src/parse-gram.y, src/scan-gram.l: Support
13690 %nondeterministic-parser.
13691 * src/output.c (prepare): Use nondeterministic_parser instead
13692 of glr_parser where appropriate.
13693 * src/tables.c (conflict_row, action_row, save_row)
13694 (token_actions, token_actions, pack_vector): Ditto.
13695
a06ea4aa
AD
136962003-04-29 Akim Demaille <akim@epita.fr>
13697
13698 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
13699
211074ca
AD
137002003-04-29 Akim Demaille <akim@epita.fr>
13701
13702 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
13703 with %pure-parser and %locations to exercise the patch from Yakov
13704 Markovitch below.
13705
6175ffe3
PE
137062003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
13707
13708 * data/yacc.c: (b4_lex_param): Corrected for the case where
13709 %lex-param is provided and %pure-parser isn't.
13710
b1e95857
PE
137112003-04-27 Paul Eggert <eggert@twinsun.com>
13712
13713 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 13714 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
13715 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
13716 if it is not defined.
13717 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
13718
acda9df6
PE
137192003-04-26 Paul Eggert <eggert@twinsun.com>
13720
3470c57b
PE
13721 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
13722 Declare to be of type suitable for the ninf value itself, not of
13723 type suitable for the corresponding table, since the latter might
13724 be unsigned but the ninf value might be negative. This fixes a
13725 bug reported by Alexandre Duret-Lutz in
161a71f3 13726 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 13727
acda9df6
PE
13728 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
13729 invokes it. We shouldn't invoke it twice because it will attempt
13730 to put error.o in the archive twice. This fixes a glitch reported
13731 by Martin Mokrejs in
161a71f3 13732 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 13733
b5250f26
PE
137342003-04-21 Paul Eggert <eggert@twinsun.com>
13735
13736 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
13737 to gnulib.
13738
089ac0f1
PE
137392003-04-21 Yakov Markovitch <Markovitch@iso.ru>
13740
13741 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
13742 Fix obvious typo that results in uncompilable GLR parsers
13743 when both %pure-parser and %locations are used. (trivial change)
13744
5ededac6
PE
137452003-04-17 Paul Eggert <eggert@twinsun.com>
13746
1b8f2fff
PE
13747 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
13748 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
13749 Do not insert the expected token via unput, as this runs afoul
13750 of a POSIX-compatibility bug in flex 2.5.31.
13751 All uses changed to BEGIN the parent state,
13752 since we no longer insert the expected token via unput.
13753 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
13754 that is no longer emitted after the above change.
13755
5ededac6
PE
13756 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13757 the first one. This change is from Paul Hilfinger, and it fixes
13758 regression reported by Werner Lemberg in
161a71f3 13759 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
13760
13761 (resolve_sr_conflict): Don't invoke state_errs_set
13762 unless one or more tokens have been explicitly made errors.
13763 Otherwise, the above change causes Bison to abort.
13764
13765 * tests/existing.at (GNU pic Grammar): New test case, taken from
13766 Lemberg's email.
13767
b8be9132
AD
137682003-03-31 Akim Demaille <akim@epita.fr>
13769
13770 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13771
d423d460
AD
137722003-03-31 Akim Demaille <akim@epita.fr>
13773
13774 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13775 output.
13776
c7e441b4
AD
137772003-03-31 Akim Demaille <akim@epita.fr>
13778
13779 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13780 From Paul Hilfinger.
13781
231897ad
AD
137822003-03-29 Akim Demaille <akim@epita.fr>
13783
13784 * m4/error.m4: Do not put under dynamic conditions some code which
13785 expansion is under static control.
13786
5b066063
AD
137872003-03-29 Akim Demaille <akim@epita.fr>
13788
13789 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13790
22a74fec
AD
137912003-03-29 Akim Demaille <akim@epita.fr>
13792
13793 * doc/bison.texinfo (Strings are Destroyed): New.
13794
0eee27e7
PE
137952003-03-13 Paul Eggert <eggert@twinsun.com>
13796
13797 * .cvsignore: Add configure.lineno.
13798 * src/.cvsignore: Add yacc.
13799 * tests/.cvsignore: Add testsuite.log.
13800 * doc/fdl.texi: Sync with latest FSF version.
13801
f61aad93
PE
138022003-03-12 Paul Eggert <eggert@twinsun.com>
13803
537636c7
PE
13804 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13805 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13806 cursor, instead of leaving it undefined. This fixes a bug
13807 reported by Tim Van Holder in
161a71f3 13808 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
13809 * tests/input.at (Torturing the Scanner): Test the scanner on
13810 an empty input file, which was Tim Van Holder's test case.
13811
13812 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13813 <sys/resource.h> can be included, include sys/time.h and
13814 sys/times.h first, if available. This works around the SunOS
13815 4.1.4 porting bug reported by Bruce Becker in
161a71f3 13816 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
13817
13818 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13819 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13820 AC_HEADER_SYS_WAIT.
13821
f61aad93
PE
13822 Merge changes from gnulib. This was prompted because the CVS
13823 snapshot didn't build on Solaris 7 due to strnlen problems.
13824
13825 These changes need to be merged back into gnulib:
13826 * lib/hash.c: Include <stdbool.h> unconditionally.
13827 * m4/onceonly.m4 (m4_quote): New macro.
13828 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13829 Quote AC_FOREACH variable-expansions properly.
13830 The 2003-01-03 obstack.h change also needs merging.
13831 {end of changes requiring merging}
5b066063 13832
f61aad93
PE
13833 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13834 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13835 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13836 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13837 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13838 New files, imported from gnulib.
13839 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13840 above.
13841
13842 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13843 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13844 gnulib sources.
13845
13846 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13847 Add.
13848 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13849 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13850 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13851 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13852 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13853 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13854 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13855 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13856 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13857 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13858 (jm_PREREQ_ARGMATCH): Remove.
13859 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13860 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13861
13862 * src/system.h: Include <stdbool.h> unconditionally.
13863
13864 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13865 assuming at least C89 in the bitset code for some time now.
13866
d2ffe116
AD
138672003-03-03 Akim Demaille <akim@epita.fr>
13868
13869 * ro.po: New.
13870
052826fd
AD
138712003-03-02 Akim Demaille <akim@epita.fr>
13872
13873 * doc/bison.texinfo (Table of Symbols): Reactivate the
13874 documentation for %lex-param, and %parse-param.
13875
c4749565
AD
138762003-03-02 Akim Demaille <akim@epita.fr>
13877
13878 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13879 generate verbose error messages.
13880 Use the number of tokens as an upper bound in yytname, as it
13881 cannot be a non terminal.
13882
d5286af1
AD
138832003-03-02 Akim Demaille <akim@epita.fr>
13884
13885 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13886 message.
13887
22e304a6
AD
138882003-03-02 Akim Demaille <akim@epita.fr>
13889
22e304a6
AD
13890 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13891 Use them to exercise yycheck overrun.
13892 Based on Andrew Suffield's grammar.
13893
67a25fed
AD
138942003-03-02 Akim Demaille <akim@epita.fr>
13895
13896 Create tests/local.at for Bison generic testing macros.
13897
13898 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13899 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13900 This new file.
13901 * tests/calc.at (AT_CHECK_CALC): Adjust.
13902 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13903 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13904 * tests/local.at: here.
13905 (AT_COMPILE_CXX): Tags the tests using it as c++.
13906 Ignore the test if CXX is not functional.
13907
9c2b381f
PE
139082003-03-01 Paul Eggert <eggert@twinsun.com>
13909
13910 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13911 not loc->end, since loc->end might contain garbage and this leads
13912 to undefined behavior on some platforms.
13913 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13914 depend on *loc, so that the reader doesn't give the the false
13915 impression that *loc is initialized.
13916 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13917 does not survive the return.
13918
0433ba88
AD
139192003-03-01 Akim Demaille <akim@epita.fr>
13920
13921 * src/scan-gram.l (code_start): Always initialize it when entering
13922 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13923 yylex invocation. An alternative would be making it static, but
13924 then it starts with the second %%'s beginning, instead of its end.
13925
b305ea69
PE
139262003-02-28 Paul Eggert <eggert@twinsun.com>
13927
13928 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13929 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 13930 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 13931
c3d25e01
PE
139322003-02-26 Paul Eggert <eggert@twinsun.com>
13933
13934 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13935 Remove Sequent/Pyramid discussion (nobody uses them any more).
13936 Merge VMS and MS-DOS discussion; these ports may well be dead
13937 but let's keep mentioning them for now. Put <> around email
13938 addresses. Add copyright notice.
13939
c267ffbc
PE
139402003-02-24 Paul Eggert <eggert@twinsun.com>
13941
13942 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13943 to avoid collision with flex use of yylineno.
13944 Problem reported by Bruce Lilly in
161a71f3 13945 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
13946 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13947 * data/yacc.c (yy_reduce_print): Likewise.
13948
13949 * config/depcomp: Sync with Automake 1.7.3.
13950
f939fc12
AD
139512003-02-21 Akim Demaille <akim@epita.fr>
13952
13953 * data/lalr1.cc: Use temporary variables instead of casts to
13954 change integer types.
13955 Suggested by Paul Eggert.
13956
95923bd6
AD
139572003-02-21 Akim Demaille <akim@epita.fr>
13958
13959 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13960 to avoid confusions with lalr1.cc's notion of Position.
13961 Suggested by Paul Eggert.
13962
2cdc240e
AD
139632003-02-20 Akim Demaille <akim@epita.fr>
13964
13965 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13966 before initial_columns.
13967 (location.hh): Use consistent variable names when defining the
13968 operator<<.
13969 Use "last" so that we subtract from Positions, not from unsigned.
13970
5d003116
AD
139712003-02-20 Akim Demaille <akim@epita.fr>
13972
13973 * data/lalr1.cc (position.hh): New subfile, including the extended
13974 and Doxygen'ed documentation of class Position.
13975 (location.hh): Use it.
13976 Document a` la Doxygen.
ba1ecc07 13977 With the help of Benoit Perrot.
5d003116 13978
d02b25f9
AD
139792003-02-20 Akim Demaille <akim@epita.fr>
13980
13981 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13982 AT_YACC_IF.
13983 Redefine AT_YYERROR_SEES_LOC_IF using it.
13984 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13985 not defined.
13986 Don't use the location in yy::Parser::error_ and
13987 yy::Parser::print_ when not %locations.
13988 Activate more lalr1.cc tests.
13989
0d1c3a04
AD
139902003-02-19 Akim Demaille <akim@epita.fr>
13991
13992 * data/lalr1.cc: When displaying a line number, be sure to make it
13993 an int.
13994
60a777aa
AD
139952003-02-19 Akim Demaille <akim@epita.fr>
13996
13997 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13998 Remove, useless.
13999 (YYABORT, YYACCEPT, YYERROR): New.
14000 * tests/calc.at: Renable the lalr1.cc test.
14001
0b86fc41
AD
140022003-02-19 Akim Demaille <akim@epita.fr>
14003
14004 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14005 error recovery, mixing with/without pops and discarding of the
14006 lookahead.
14007 Exercise YYERROR.
14008 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14009
da99a5dc
PE
140102003-02-17 Paul Eggert <eggert@twinsun.com>
14011
14012 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14013 * tests/testsuite.at (AT_COMPILE): Use them.
14014 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 14015 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 14016
93b8c255
PE
140172003-02-12 Paul Eggert <eggert@twinsun.com>
14018
14019 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14020 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 14021 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
14022 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14023 Check for malloc failure, for consistency with yacc.c.
14024 (yytname_size): Remove, for consistency with yacc.c.
14025
14026 The bug still remains in data/lalr1.cc, as I didn't have time
14027 to fix it there.
14028
7548fed2
AD
140292003-02-06 Akim Demaille <akim@epita.fr>
14030
14031 * configure.ac (GXX): Rename as...
14032 (CXX): this, to keep the original Autoconf semantics.
14033 Require 2.57.
14034 * data/lalr1.cc: Fix b4_copyright invocations.
14035 If YYDEBUG is not defined, don't depend upon name_ being defined.
14036 (location.hh): Include string and iostream.
14037 (Position::filename): New member.
14038 (Position::Position ()): New.
14039 (operator<< (Position)): New.
14040 (operator- (Position, int)): New.
14041 (Location::first, Location::last): Rename as...
14042 (Location::begin, Location::end): these, to mock the conventional
14043 iterator names.
14044 (operator<< (Location)): New.
14045 * tests/atlocal.in (CXX): New.
14046 * tests/testsuite.at (AT_COMPILE_CXX): New.
14047 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14048 locations in a more synthetic way.
14049 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14050 lalr1.cc is used.
14051 Adjust the C locations to match those from Emacs: first column is
14052 column 0.
14053 Change all the expected results.
14054 Conform to the GCS: simplify the locations when applicable.
14055 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14056 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14057 these CPP macros with the m4 macros new defined by...
14058 (AT_CHECK_PUSHDEFS): this, i.e.:
14059 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 14060 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
14061 New macros.
14062 (AT_CHECK_POPDEFS): Undefine them.
14063 (AT_CHECK_CALC_LALR1_CC): New.
14064 Use it for the first lalr1.cc test.
14065
43a176ef
AD
140662003-02-04 Akim Demaille <akim@epita.fr>
14067
14068 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14069 Location as is defined.
14070
fc049e9c
AD
140712003-02-04 Akim Demaille <akim@epita.fr>
14072
14073 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14074 name_ being defined.
14075
a737b216
PE
140762003-02-03 Paul Eggert <eggert@twinsun.com>
14077
14078 * src/gram.h (start_symbol): Remove unused decl.
14079
14080 Use more-consistent naming conventions for local vars.
14081
14082 * src/derives.c (derives_compute): Change type of local var from
14083 int to rule_number.
14084 * src/gram.c (grammar_rules_partial_print): Likewise.
14085 * src/print.c (print_core): Likewise.
14086 * src/reduce.c (reduce_grammar_tables): Likewise.
14087
14088 * src/gram.c (grammar_dump): Change name of item_number *
14089 local var from r to rp.
14090 * src/nullable.c (nullable_compute): Likewise.
14091
14092 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14093
14094 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14095 for symbol or symbol_number var.
14096 * src/reader.c (grammar_start_symbol_set): Likewise.
14097 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14098 Likewise.
14099 * src/state.c (transitions_to): Likewise.
14100 * src/state.h: Likewise.
14101 * src/tables.c (symbol_number_to_vector_number): Likewise.
14102
14103 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14104 char * var.
14105
14106 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14107 var.
14108
14109 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14110 var.
14111
14112 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14113 Use str, not s, for char * var. Use ch, not c, for character var.
14114 Use size for size var.
14115
14116 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14117 char * var.
14118 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14119 uniqstr var.
14120 * src/uniqstr.h: Likewise.
14121
14122 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14123 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14124 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14125 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14126 param to have same name as that of enum, so that we don't use
14127 "s" to stand for a non-state.
14128
68e93ad5
AD
141292003-02-02 Akim Demaille <akim@epita.fr>
14130
14131 * src/scan-skel.l: Scan more than one inert character per yylex
14132 invocation.
14133
92898986
PE
141342003-02-01 Paul Eggert <eggert@twinsun.com>
14135
14136 Version 1.875a.
14137
1d9d5d71
PE
14138 * po/LINGUAS: Add ms.
14139
0435d061
AD
141402003-01-30 Akim Demaille <akim@epita.fr>
14141
14142 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14143
6029a57f
PH
141442003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14145
14146 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14147 of $1.
0435d061
AD
14148
14149 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 14150 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 14151 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 14152
6029a57f
PH
14153 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14154 (b4_rhs_location): Ditto.
0435d061 14155 (yyfill): New function to copy from stack tree into array
6029a57f 14156 incrementally.
0435d061
AD
14157 (yyuserAction): Modify to allow incremental move of semantic values
14158 to rhs array when in GLR mode.
14159 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
14160 as needed.
14161 Remove dummy use of yystack, as there is now a guaranteed use.
14162 (yydoAction): Modify to allow incremental move of semantic values
14163 to rhs array when in GLR mode.
14164 (yyresolveAction): Ditto.
14165 (yyglrShiftDefer): Update comment.
0435d061 14166 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
14167 (yyglrReduce): Ditto.
14168 (yydoAction): Ditto
0435d061 14169
6029a57f
PH
14170 * tests/glr-regr1.at: Rename to ...
14171 * tests/glr-regression.at: Add new regression test for the problems
14172 described above (adapted from S. Eken).
14173 Update copyright notice.
14174 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14175 * tests/Makefile.am: Ditto.
14176
6cee6297
PE
141772003-01-28 Paul Eggert <eggert@twinsun.com>
14178
14179 * data/lalr1.cc: Do not use @output_header_name@ unless
14180 b4_defines_flag is set. This fixes two bugs reported by
14181 Tim Van Holder in
161a71f3
PE
14182 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14183 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 14184
b2a836b5
PE
141852003-01-21 Paul Eggert <eggert@twinsun.com>
14186
14187 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14188 we don't need to worry about yyerrlab1 being reported as an
14189 "unused label" by non-GCC C compilers. The downside is that if
14190 locations are used then a couple of statements are duplicated each
14191 time YYERROR is invoked, but the upside is that the warnings
14192 should vanish.
14193 (yyerrlab1): Move code to YERROR.
14194 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14195 This reverts some of the 2002-12-27 change.
14196
4196b931
PE
141972003-01-17 Paul Eggert <eggert@twinsun.com>
14198
14199 * src/output.c (symbol_printers_output): Fix typo that led
14200 to core dump. Problem reported by Antonio Rus in
161a71f3 14201 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 14202
3ae831b4
AD
142032003-01-13 Akim Demaille <akim@epita.fr>,
14204 Quoc Peyrot <chojin@lrde.epita.fr>,
14205 Robert Anisko <anisko_r@lrde.epita.fr>
14206
14207 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14208 when the stacks contain one element, as the loop would otherwise
14209 free the last state, and then use the top state (the one we just
14210 popped). This means that the initial elements will not be freed
14211 explicitly, as is the case in yacc.c; it is not a problem, as
14212 these elements have fake values.
14213
e3aa65c5
PE
142142003-01-11 Paul Eggert <eggert@twinsun.com>
14215
14216 * NEWS: %expect-violations are now just warnings, reverting
14217 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14218 bootstrapping problem reported by Matthias Klose; see
161a71f3 14219 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
14220 * src/conflicts.c (conflicts_print): Likewise.
14221 * tests/conflicts.at (%expect not enough, %expect too much,
14222 %expect with reduce conflicts): Likewise.
14223 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14224 that the warning is enabled if the number of conflicts changes
14225 (not necessarily increases).
14226
14227 * src/getargs.c (version): Update copyright year.
14228
f0057011
AD
142292003-01-09 Akim Demaille <akim@epita.fr>
14230
14231 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14232
1ee6d2a0
PE
142332003-01-08 Paul Eggert <eggert@twinsun.com>
14234
14235 * Makefile.maint (WGETFLAGS):
14236 New macro, containing "-C off" to disable proxy caches.
14237 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14238 (rel-check): Use $(WGET) instead of wget.
14239
d4fd77c4
PE
142402003-01-06 Paul Eggert <eggert@twinsun.com>
14241
14242 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14243 the GLR paper of Scott, Johnstone and Hussain.
14244
464c6927
PE
142452003-01-04 Paul Eggert <eggert@twinsun.com>
14246
d600ee67
PE
14247 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14248 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14249 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14250 (EXTRA_LIBRARIES): New var, for liby.a.
14251 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14252 (EXTRA_SCRIPTS): New var, for yacc.
14253
464c6927
PE
14254 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14255 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14256 Problem reported by Nelson H. F. Beebe.
14257
142582003-01-03 Paul Eggert <eggert@twinsun.com>
14259
14260 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14261 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14262 when compiling Bison 1.875's `bitset bset = obstack_alloc
14263 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14264
14265 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14266 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14267 grow to a huge size with typical invocation.
d600ee67 14268
464c6927
PE
14269 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14270 Use the pattern recommended by Autoconf 2.57, except also protect
14271 against double-definition.
14272 * src/system.h: Likewise.
14273 Portability issues reported by Nelson H. F. Beebe.
d600ee67 14274
464c6927
PE
14275 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14276 All uses changed. Provide a definition in both C and C++.
14277 (yytrue, yyfalse): Define even if defined (__cplusplus).
14278
14279 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14280 Reported by Nelson H. F. Beebe.
d600ee67 14281
464c6927
PE
14282 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14283
0f42c7d5
PE
142842003-01-02 Paul Eggert <eggert@twinsun.com>
14285
14286 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14287 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14288 Bug reported by Nelson H. F. Beebe.
14289
dc546b0f
PE
142902003-01-01 Paul Eggert <eggert@twinsun.com>
14291
14292 * Version 1.875.
14293
2c09b6a7
PE
142942002-12-30 Paul Eggert <eggert@twinsun.com>
14295
14296 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14297 Moved here from...
14298 (<INITIAL>","): Here. This causes stray "," to be treated
14299 more uniformly.
14300
dc546b0f 14301 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
14302 last brace in braced code when not in Yacc mode, for compatibility
14303 with Bison 1.35. This resurrects the 2001-12-15 patch to
14304 src/reader.c.
14305
14306 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14307 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14308
535c0f63
PE
143092002-12-28 Paul Eggert <eggert@twinsun.com>
14310
14311 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14312 that of SYM's type. This fixes Debian bug 168069, reported by
14313 Thomas Olsson.
d600ee67 14314
963fcc17
PE
143152002-12-28 Paul Eggert <eggert@twinsun.com>
14316
14317 Version 1.75f.
14318
14319 Switch back to the Yacc style of conflict reports, undoing some
14320 of the 2002-07-30 change.
14321 * doc/bison.texinfo (Understanding): Use Yacc style for
14322 conflict reports. Also, use new way of locating rules.
14323 * src/conflicts.c (conflict_report):
14324 Renamed from conflict_report_yacc, removing the old
14325 'conflict_report'. Translate the entire conflict report at once,
14326 so that we don't assume that "," has the same interpretation in
14327 all languages.
14328 (conflicts_output): Use Yacc-style conflict report for each state,
14329 instead of our more-complicated style.
14330 (conflicts_print): Use Yacc-style conflict report, except print
14331 the input file name when not emulating Yacc.
14332 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14333 Conflicted Reduction, %expect not enough, %expect too much,
14334 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14335 * tests/existing.at (GNU Cim Grammar): Likewise.
14336 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14337
14338 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14339 fatal): Don't invoke fflush; it's not needed and it might even be
14340 harmful for stdout, as stdout might not be open.
14341 * src/reduce.c (reduce_print): Likewise.
14342
b1efe548
PE
143432002-12-27 Paul Eggert <eggert@twinsun.com>
14344
14345 Fix a bug where error locations were not being recorded correctly.
14346 This problem was originally reported by Paul Hilfinger in
161a71f3 14347 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
14348
14349 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14350 top of the location stack's error locations.
14351 (yyerrlab): Set it. When discarding a token, push its location
14352 onto yylerrsp so that we don't lose track of the error's end.
14353 (yyerrlab1): Now is only the target of YYERROR, so that we can
14354 properly record the location of the action that failed. For GCC
14355 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14356 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14357 (yyerrlab2): New label, which yyerrlab now falls through to.
14358 Compute the error's location by applying YYLLOC_DEFAULT to
14359 the locations of all the symbols that went into the error.
14360 * doc/bison.texinfo (Location Default Action): Mention that
14361 YYLLOC_DEFAULT is also invoked for syntax errors.
14362 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14363 Error locations include the locations of all the tokens that were
14364 discarded, not just the last token.
d600ee67 14365
983c5c2c
PE
143662002-12-26 Paul Eggert <eggert@twinsun.com>
14367
b1efe548
PE
14368 * src/files.c: Include quote.h.
14369 (compute_output_file_names): Warn if we detect conflicting
14370 outputs to the same file. This should catch the misunderstanding
14371 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14372
14373 * src/conflicts.c (conflicts_print): If the user specifies
14374 "%expect N", report an error if there are any reduce/reduce
14375 conflicts. This is what the manual says should happen.
14376 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14377 * tests/conflicts.at (%expect with reduce conflicts): New test.
14378
983c5c2c
PE
14379 Don't use m4_include on relative file names, as it doesn't work as
14380 desired if there happens to be a file with that name under ".".
d600ee67 14381
983c5c2c
PE
14382 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14383 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14384 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14385 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14386 * src/output.c (output_skeleton): Use full path names when
14387 specifying a file to include; don't rely on include path, as
14388 it's unreliable when the working file contains a file with
14389 that name.
d600ee67 14390
983c5c2c
PE
143912002-12-25 Paul Eggert <eggert@twinsun.com>
14392
14393 Remove obsolete references to bison.simple and bison.hairy.
14394 Problem mentioned by Aubin Mahe in
161a71f3 14395 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
14396 * data/glr.c: Comment fix.
14397 * doc/bison.1: Remove references. Also, mention "yacc".
14398
14399 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14400 with -g option.
14401
14402 * src/parse-gram.y (declaration): Use enum "report_states" rather
14403 than its numeric value 1.
14404
14405 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14406 opening a new one. This fixes Debian bug 165349, reported by
14407 Bruce Stephens.
14408
23f2d9dc
PE
144092002-12-24 Paul Eggert <eggert@twinsun.com>
14410
14411 Version 1.75e.
14412
14413 * Makefile.maint (cvs-update): Don't assume that the shell
14414 supports $(...), as Solaris sh doesn't.
14415
14416 * src/parse-gram.y (lloc_default): Remove test for empty
14417 nonterminals at the end, since it didn't change the result.
14418
144192002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
14420
14421 If the user does not define YYSTYPE as a macro, Bison now declares it
14422 using typedef instead of defining it as a macro. POSIX requires this.
14423 For consistency, YYLTYPE is also declared instead of defined.
14424
14425 %union directives can now have a tag before the `{', e.g., the
14426 directive `%union foo {...}' now generates the C code
14427 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14428 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14429 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14430 instead of `yyltype'.
14431
14432 `yystype' and `yyltype' are now obsolescent macros instead of being
14433 typedefs or tags; they are no longer documented and will be
14434 withdrawn in a future release.
14435
14436 * data/glr.c (b4_location_type): Remove.
14437 (YYSTYPE): Renamed from yystype.
14438 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14439 (struct YYLTYPE): Renamed from struct yyltype.
14440 (YYLTYPE): Renamed from yyltype.
14441 (yyltype, yystype): New (and obsolescent) macros,
14442 for backward compatibility.
14443 * data/yacc.c: Likewise.
14444
14445 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14446 does not specify a union tag. This is for compatibility with
14447 Solaris 9 yacc.
14448
14449 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14450 const *, since it is now modified by stripping surrounding { }.
14451 (current_braced_code): Remove.
14452 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14453 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14454 trailing " {...}". Now of type <chars>.
14455 (grammar_declaration): Adjust to bundled tokens.
14456 (code_content): Remove; stripping is now done by add_param.
14457 (print_token_value): Print contents of bundled tokens.
14458 (token_name): New function.
14459
14460 * src/reader.h (braced_code, current_braced_code): Remove.
14461 (token_name): New decl.
14462
14463 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14464 token_type, not braced_code code_kind. All uses changed.
14465 (SC_PRE_CODE): New state, for scanning after a keyword that
14466 has (or usually has) an immediately-following braced code.
14467 (token_type): New local var, to keep track of which token type
14468 to return when scanning braced code.
14469 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 14470 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
14471 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14472 instead of returning a token type immediately.
14473 (<INITIAL>"{"): Set token type.
14474 (<SC_BRACED_CODE>"}"): Use it.
14475 (handle_action_dollar, handle_action_at): Now returns bool
14476 indicating success. Fail if ! current_rule; this prevents a core dump.
14477 (handle_symbol_code_dollar, handle_symbol_code_at):
14478 Remove; merge body into caller.
14479 (handle_dollar, handle_at): Complain in invalid contexts.
14480
14481 * NEWS, doc/bison.texinfo: Document the above.
14482 * NEWS: Fix years and program names in copyright notice.
14483
879ca4f8
PE
144842002-12-17 Paul Eggert <eggert@twinsun.com>
14485
14486 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14487 Reporting, Table of Symbols): Omit mentions of %lex-param and
14488 %parse-param from the documentation for now.
14489
1c5fe69d
PE
144902002-12-15 Paul Eggert <eggert@twinsun.com>
14491
14492 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14493 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14494 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
14495 disagreed with the Bison documentation. Bug
14496 reported by Andrew Walrond.
d600ee67 14497
1c5fe69d
PE
14498 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14499 as the caller now does that.
14500 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14501 (YYEMPTY): Parenthesize right hand side, since others use it.
14502 (yyparse): Don't assume that our generated code is the only code
14503 that sets yychar.
14504
d1de5372
PE
145052002-12-13 Paul Eggert <eggert@twinsun.com>
14506
14507 Version 1.75d.
14508
14509 POSIX requires a "yacc" command.
14510 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14511 (MOSTLYCLEANFILES): Add yacc.
14512 (yacc): New rule.
1c5fe69d 14513 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
14514 as an alias for bison y.
14515
14516 * po/LINGUAS: Add da.
d600ee67 14517
d1de5372
PE
14518 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14519 problem with latest <getopt.h>.
14520 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14521
14522 * doc/fdl.texi: Upgrade to 1.2.
14523 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14524 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14525 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14526 gnulib.
14527 * config/install-sh: Sync with autotools.
14528
14529 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 14530 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
14531 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14532 locations are requested.
14533 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14534 locations are requested.
14535
d0f3fe23
PE
145362002-12-12 Paul Eggert <eggert@twinsun.com>
14537
14538 Remove unportable casts and storage allocation tricks.
14539 While we're at it, remove almost all casts, since they
14540 usually aren't needed and are a sign of trouble.
14541
14542 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14543
14544 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14545 the pointer DSET returned by malloc; this isn't portable.
14546 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14547 Similarly for DERIVES.
14548 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14549 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14550 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14551
14552 * src/derives.c (derives_compute): Do not bother invoking
14553 int_of_rule_number, since rule numbers are integers.
14554
14555 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14556 rather than XMALLOC (char, N).
14557
14558 * src/files.c (filename_split): Rewrite to avoid cast.
14559
14560 * src/gram.h (symbol_number_as_item_number,
14561 item_number_as_symbol_number, rule_number_as_item_number,
14562 item_number_as_rule_number):
14563 Now inline functions rather than macros, to avoid casts.
14564 * src/state.h (state_number_as_int): Likewise.
14565 * src/tables.c (state_number_to_vector_number,
14566 symbol_number_to_vector_number): Likewise.
14567
14568 * src/gram.h (int_of_rule_number): Remove; no longer used.
14569
14570 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14571 since the resulting storage is always stored into.
14572
14573 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14574 where it's needed.
14575
14576 * src/muscle_tab.c (muscle_m4_output):
14577 Now inline. Return bool, not int.
14578 * src/state.c (state_compare): Likewise.
14579 * src/symtab.c (symbol_check_defined,
14580 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14581 hash_compare_symbol, hash_symbol):
14582 Likewise.
14583 * src/uniqstr.c (uniqstr_print): Likewise.
14584 * src/muscle_tab.c (muscle_m4_output_processor):
14585 New function, to avoid casts.
14586 * src/state.c (state_comparator, stage_hasher): Likewise.
14587 * src/symtab.c (symbol_check_defined_processor,
14588 symbol_check_alias_consistency_processor, symbol_pack_processor,
14589 symbol_translation_processor, hash_symbol_comparator,
14590 hash_symbol_hasher): Likewise.
14591 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14592 * src/muscle_tab.c (muscles_m4_output):
14593 Use new functions instead of casting old functions unportably.
14594 * src/state.c (state_hash_new): Likewise.
14595 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14596 symbols_token_translations_init):
14597 Likewise.
14598 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14599
14600 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14601 var instead of casting to long, to avoid casts.
14602 (prepare_states): Use MALLOC rather than alloca, so that we don't
14603 have to worry about alloca.
14604 * src/state.c (state_hash_lookup): Likewise.
14605
14606 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
14607 local var instead of casting to unsigned char, to avoid casts.
14608
14609 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
14610 STATE_ALLOC): Remove.
14611 (transitions_new, errs_new, reductions_new, state_new): Use malloc
14612 rather than calloc, and use offsetof to avoid allocating slightly
14613 too much storage.
14614 (state_new): Initialize all members.
14615
14616 * src/state.c (state_hash): Use unsigned accumulator, not signed.
14617
14618 * src/symtab.c (symbol_free): Remove; unused.
14619 (symbol_get): Remove cast in lhs of assignment.
14620 (symbols_do): Now static. Accept generic arguments, not
14621 hashing-related ones.
14622
14623 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
14624 (symbol_processor): Remove.
14625 (symbols_do): Remove decl; now static.
14626
14627 * src/system.h (alloca): Remove; decl no longer needed.
14628 (<stddef.h>): Include, for offsetof.
14629 (<inttypes.>, <stdint.h>): Include if available.
14630 (uintptr_t): New type, if system lacks it.
14631 (CALLOC, MALLOC, REALLOC): New macros.
14632 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
14633 new macros.
14634
14635 * src/tables.c (table_size): Now int, to pacify GCC.
14636 (table_grow, table_ninf_remap): Use signed table size.
14637 (save_row): Don't bother initializing locals when not needed.
14638 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
14639 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
14640
14641 * src/vcg.h: Correct misspellings.
14642
14643 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
14644
14645
14646 * src/getargs.c (getargs): Don't assume EOF == -1.
14647
26b4a969
PE
146482002-12-09 Paul Eggert <eggert@twinsun.com>
14649
14650 Change identifier spellings to avoid collisions with names
14651 that are reserved by POSIX.
14652
14653 Don't use names ending in _t, since POSIX reserves them.
14654 For consistency, remove _e and _s endings -- they're weren't
14655 needed to remove ambiguity. All uses changed.
14656 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
14657 turn was just renamed from struniq_t.
14658 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
14659 which in turn was just renamed from struniq_processor_t.
14660 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
14661 in turn was renamed from hash_compare_struniq_t.
14662 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
14663 (state_list): Renamed from state_list_t.
14664 * src/assoc.h (assoc): Renamed from assoc_t.
14665 * src/conflicts.c (enum conflict_resolution): Renamed from
14666 enum conflict_resolution_e.
14667 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
14668 (rule_list): Renamed from rule_list_t.
14669 * src/getargs.h (enum trace): Renamed from enum trace_e.
14670 (enum report): Renamed from enum report_e.
14671 * src/gram.h (item_number): Renamed from item_number_t.
14672 (rule_number): Renamed from rule_number_t.
14673 (struct rule_s): Remove the "rule_s" part; not used.
14674 (rule): Renamed from rule_t.
14675 (rule_filter): Renamed from rule_filter_t.
14676 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
14677 (goto_list): Renamed from goto_list_t.
14678 * src/lalr.h (goto_number): Renamed from goto_number_t.
14679 * src/location.h (location): Renamed from location_t.
14680 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
14681 and moved here from:
14682 * src/muscle_tab.h (muscle_entry_t): here.
14683 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
14684 (rule_list): Renamed from rule_list_t.
14685 * src/print_graph.c (static_graph): Renamed from graph.
14686 * src/reader.h (braced_code): Renamed from braced_code_t.
14687 Remove brace_code_e tag.
14688 * src/relation.h (relation_node): Renamed from relation_node_t.
14689 (relation_nodes): Renamed from relation_nodes_t.
14690 (relation): Renamed from relation_t.
14691 * src/state.h (state_number): Renamed from state_number_t.
14692 (struct state): Renamed from struct state_s.
14693 (state): Renamed from state_t.
14694 (transitions): Renamed from transitions_t. Unused (and
14695 misspelled) transtion_s tag removed.
14696 (errs): Renamed from errs_t. Unused errs_s tag removed.
14697 (reductions): Renamed from reductions_t. Unused tag
14698 reductions_s removed.
14699 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
14700 (struct symbol_list): Renamed from struct symbol_list_s.
14701 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
14702 (struct symbol): Renamed from struct symbol_s.
14703 (symbol): Renamed from symbol_t.
14704 * src/tables.c (vector_number): Renamed from vector_number_t.
14705 (action_number): Renamed from action_t.
14706 * src/tables.h (base_number): Renamed from base_t.
14707 * src/vcg.h (enum color): Renamed from enum color_e.
14708 (enum textmode): Renamed from enum textmode_e.
14709 (enum shape): Renamed from enum shape_e.
14710 (struct colorentry): Renamed from struct colorentry_s.
14711 (struct classname): Renamed from struct classname_s.
14712 (struct infoname): Renamed from struct infoname_s.
14713 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
14714 (enum decision): Renamed from enum decision_e.
14715 (enum orientation): Renamed from enum orientation_e.
14716 (enum alignment): Renamed from enum alignment_e.
14717 (enum arrow_mode): Renamed from enum arrow_mode_e.
14718 (enum crossing_type): Renamed from enum crossing_type_e.
14719 (enum view): Renamed from enum view_e.
14720 (struct node): Renamed from struct node_s.
14721 (node): Renamed from node_t.
14722 (enum linestyle): Renamed from enum linestyle_e.
14723 (enum arrowstyle): Renamed from enum arrowstyle_e.
14724 (struct edge): Renamed from struct edge.
14725 (edge): Renamed from edge_t.
14726 (struct graph): Renamed from struct graph_s.
14727 (graph): Renamed from graph_t.
14728 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
14729 Rename value_t -> value.
14730 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
14731 value_t_as_yystype -> value_as_yystype.
14732
14733 Don't include <errno.h> in the mainstream code, since it
14734 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
14735 * lib/get-errno.c, lib/get-errno.h: New files.
14736 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
14737 get-errno.c.
14738 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
14739 * src/output.c (output_skeleton): Likewise.
14740 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
14741 instead of errno.
14742 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
14743 Likewise.
14744 (handle_action_dollar, handle_action_at): Likewise.
14745 * src/system.h: Do not include <errno.h>.
14746 (TAB_EXT): Renamed from EXT_TAB.
14747 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
14748
14749 Avoid str[a-z]*, since <string.h> reserves that name space.
14750 Change all instances of "struniq" in names to "uniqstr", and
14751 likewise for "STRUNIQ" and "UNIQSTR".
14752 * src/uniqstr.c: Renamed from src/struniq.c.
14753 * src/uniqstr.h: Renamed from src/struniq.h.
14754 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
14755 * src/files.c (strsuffix): Remove; unused.
14756 (concat2): Renamed from stringappend. Now static.
14757 * src/files.h (strsuffix, stringappend): Remove; unused.
14758 * src/parse-gram.y (<chars>): Renamed from <string>.
14759 (<uniqstr>): Renamed from <struniq>.
14760 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14761 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14762 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14763 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14764 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14765 (N_EXPAND): Renamed from N_STRETCH.
14766
14767 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14768 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14769 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14770 Remove; unused.
14771 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14772 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14773 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14774 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14775 (BASE_MAXIMUM): Renamed from BASE_MAX.
14776 (BASE_MINIMUM): Renamed from BASE_MIN.
14777 (ACTION_MAX): Remove; unused.
14778 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14779 Unnecessary casts removed from above defines.
14780
14781
14782 Fix misspelling in names.
14783 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14784 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14785 G_NODE_ALIGNEMENT.
14786
14787
14788 * lib/timevar.c (timevar_report): Renamed from time_report,
14789 for consistency with other names.
14790 * lib/timevar.h (timevar_report): New decl.
14791 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14792
14793
14794 Sort include-file uses.
14795
14796 Reorder all include files under src to be in the order "system.h".
14797 then the ../lib include files in angle brackets (alphabetized),
14798 then the . include files in double-quotes (alphabetized). Fix
14799 dependency breakages encountered in this process, as follows:
14800 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14801 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14802 * src/state.h: Include "symtab.h".
14803
996b1c7e
PE
148042002-12-08 Paul Eggert <eggert@twinsun.com>
14805
14806 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14807 since this causes problems when __file__ contains character
14808 sequences like "@" that are treated specially by src/scan-skel.l.
14809 Instead, just use the file's basename. This fixes the bug
14810 reported by Martin Mokrejs in
161a71f3 14811 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 14812
e19c4e5d
PE
148132002-12-06 Paul Eggert <eggert@twinsun.com>
14814
14815 Add support for rules that do not have trailing semicolons, as
14816 POSIX requires. Improve the quality of locations in Bison
14817 diagnostics.
26b4a969 14818
e19c4e5d
PE
14819 * src/location.c: Include <quotearg.h>.
14820 (empty_location): Now const.
14821 (location_print): New function. Follow the recommendation of the
14822 GNU Coding Standards for locations that span file boundaries.
14823 * src/location.h: Do not include <quotearg.h>; no longer needed.
14824 (boundary): New type.
14825 (location_t): Use it. This allows locations to span file boundaries.
14826 All member uses changed: file -> start.file or end.file (as needed),
14827 first_line -> start.line, first_column -> start.column,
14828 last_line -> end.line, last_column -> end.column.
14829 (equal_boundaries): New function.
14830 (LOCATION_RESET, LOCATION_STEP): Remove.
14831 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14832 (empty_location): Now const.
14833 (location_print): New decl.
14834 * src/parse-gram.y (lloc_default): New function, which handles
14835 empty locations more accurately.
14836 (YYLLOC_DEFAULT): Use it.
14837 (%token COLON): Remove.
14838 (%token ID_COLON): New token.
26b4a969 14839 (rules): Use it.
e19c4e5d
PE
14840 (declarations, rules): Remove trailing semicolon.
14841 (declaration, rules_or_grammar_declaration):
14842 Allow empty (";") declaration.
14843 (symbol_def): Remove empty actions; no longer needed.
14844 (rules_or_grammar_declaration): Remove trailing semicolon.
14845 (semi_colon.opt): Remove.
14846 * src/reader.h: Include location.h.
14847 (scanner_cursor): New decl.
14848 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14849 rolling our own.
14850 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14851 of *loc.
14852 (STEP): Remove. No longer needed, now that adjust_location does
14853 the work. All uses removed.
14854 (scanner_cursor): New var.
14855 (adjust_location): Renamed from extend_location. It now sets
14856 *loc and adjusts the scanner cursor. All uses changed.
14857 Don't bother testing for CR.
14858 (handle_syncline): Remove location arg; now updates scanner cursor.
14859 All callers changed.
14860 (unexpected_end_of_file): Now accepts start boundary of token or
14861 comment, not location. All callers changed. Update scanner cursor,
14862 not the location.
14863 (SC_AFTER_IDENTIFIER): New state.
14864 (context_state): Renamed from c_context. All uses changed.
14865 (id_loc, code_start, token_start): New local vars.
14866 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14867 processing of Yacc white space and equivalents here.
14868 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14869 instead of returning ID immediately, since we need to search for
14870 a subsequent colon.
14871 (<INITIAL>"'", "\""): Save token_start.
14872 (<INITIAL>"%{", "{", "%%"): Save code_start.
14873 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14874 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14875 BEGIN context_state at end, not INITIAL.
14876 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14877 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14878 Return correct token start.
14879 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14880 the start of a character, string or multiline comment is found.
14881 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14882 Reduction): Adjust reported locations to match the more-precise
14883 results now expected.
14884 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14885 * tests/reduce.at (Useless Rules, Reduced Automaton,
14886 Underivable Rules): Likewise.
14887 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14888 or "|"' now that so many other tokens are allowed by the new grammar.
14889
14890 * src/complain.h (current_file): Remove duplicate decl;
14891 current_file is now owned by files.h.
14892 * src/complain.c, src/scan-gram.l: Include files.h.
14893
148942002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 14895
e19c4e5d
PE
14896 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14897 promotes to int; it might be unsigned int.
14898 * data/yacc.c (yy_reduce_print): Likewise.
14899
14900 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14901 be #defined in the prologue, not in the Bison declarations.
14902 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 14903
b64755e3
PE
149042002-12-02 Paul Eggert <eggert@twinsun.com>
14905
14906 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14907 * lib/strtoul.c: New file, from gnulib.
14908 This fixes a porting bug reported by Peter Klein in
161a71f3 14909 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 14910
6e746484
PE
149112002-11-30 Paul Eggert <eggert@twinsun.com>
14912
b64755e3
PE
14913 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14914 and put only a forward declaration in the prologue. This is for
14915 consistency with the other scanner helper functions.
14916
6ba55592
PE
14917 Type clashes now generate warnings, not errors, since it
14918 appears that POSIX may allow some grammars with type clashes.
14919 * src/reader.c (grammar_current_rule_check): Warn about
14920 type clashes instead of complaining.
14921 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14922
6e746484
PE
14923 Add Yacc library, since POSIX requires it.
14924 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14925 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14926 * lib/main.c, lib/yyerror.c: New files.
14927
14928 gram_error can be static; it need not be extern.
14929 * src/reader.h (gram_error): Remove decl.
14930 * src/parse-gram.y (gram_error): Now static. Add static decl.
14931 (print_token_value): Omit parameter names from forward decl,
14932 for consistency.
14933
88510f9c
PE
149342002-11-29 Paul Eggert <eggert@twinsun.com>
14935
6e746484
PE
14936 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14937 be declared before being used. E.g., one should typically
14938 declare them in the prologue. Use GNU coding style in examples.
14939 Put "const" consistently after the type it modifies. Mention
14940 that C99 supports "inline". Mention that yyerror traditionally
14941 returns "int".
14942
88510f9c
PE
14943 %parse-param and %lex-param now take just one argument, the
14944 declaration; the argument name is deduced from the declaration.
14945
14946 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14947 Reporting, Table of Symbols): Document this.
14948 * src/parse-gram.y (add_param): New function.
14949 (COMMA): Remove.
14950 (declaration): Implement new rule for %parse-param and %lex-param.
14951 * src/scan-gram.l: "," now elicits a warning, rather than being
14952 a token; this is more compatible with byacc.
14953 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14954
bb92250c
PE
149552002-11-27 Paul Eggert <eggert@twinsun.com>
14956
14957 Rename identifiers to avoid real and potential collisions.
14958
14959 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14960 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 14961 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
14962 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14963 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14964 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14965 All uses changed.
14966 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14967 The name "yycontrol" violates the name space rules, and this stuff
14968 wasn't being used anyway.
14969 (input): Remove action; this stuff wasn't being used.
14970 (gram_error): Rename local variable yylloc -> loc.
14971 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14972 (YY_DECL): Don't use "yy" at start of local variables.
14973 All uses changed, e.g., yylloc -> loc.
14974 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14975 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14976 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14977 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14978
14979 * src/parse-gram.y (gram_error): loc is now const *.
14980 * src/reader.h (gram_error): Likewise.
14981
3af4feb2
PE
149822002-11-24 Paul Eggert <eggert@twinsun.com>
14983
14984 Version 1.75c.
14985
14986 * tests/actions.at (Actions after errors): Use an output format
14987 more similar to that of the Printers and Destructors test.
14988 Test the position of the ';' token too.
14989 (Printers and Destructors): Likewise.
14990 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14991 unnecessarily alarming people when the test fails.
14992
14993 * data/yacc.c (yyerrlab1): Move this label down, so that the
14994 parser does not discard the lookahead token if the user code
14995 invokes YYERROR. This change is required for POSIX conformance.
14996
14997 * lib/error.c: Sync with gnulib.
14998
149992002-11-22 Paul Eggert <eggert@twinsun.com>
15000
15001 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15002 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15003 * lib/xmalloc.c: Likewise.
26b4a969 15004
58004308
PE
150052002-11-20 Paul Eggert <eggert@twinsun.com>
15006
15007 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15008
150092002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 15010
58004308
PE
15011 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15012 should use `if (! x) abort ();' rather than `assert (x);', and
15013 anyway it's one less thing to worry about configuring.
15014
15015 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15016 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15017 and replace all instances of assert with abort.
15018 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15019 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15020
15021 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15022 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15023 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15024 hash_find_entry, hash_rehash, hash_insert): Likewise.
15025 * src/conflicts.c (resolve_sr_conflict): Likewise.
15026 * src/lalr.c (set_goto_map, map_goto): Likewise.
15027 * src/nullable.c (nullable_compute): Likewise.
15028 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15029 * src/reader.c (packgram, reader): Likewise.
15030 * src/state.c (state_new, state_free, state_transitions_set,
15031 state_reduction_find): Likewise.
15032 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15033 symbol_pack): Likewise.
15034 * src/tables.c (conflict_row, pack_vector): Likewise.
15035 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15036 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15037 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15038 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15039
15040 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15041 (ARGMATCH_CONSTRAINT): New macro.
15042 (ARGMATCH_ASSERT): Use it.
15043
15044 * src/system.h (verify): New macro.
15045 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15046 rather than assert.
15047 * src/tables.c (tables_generate): Likewise.
15048
15049 * src/struniq.c (struniq_assert): Now returns void, and aborts
15050 if the assertion is false.
15051 (struniq_assert_p): Remove.
15052 * src/struniq.h: Likewise.
15053
76ae8198
PE
150542002-11-18 Paul Eggert <eggert@twinsun.com>
15055
15056 * data/glr.c (yygetLRActions): Replace `yyindex' with
15057 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15058 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 15059 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 15060
d3c4e709
AD
150612002-11-18 Akim Demaille <akim@epita.fr>
15062
15063 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15064 space.
15065 From Tim Van Holder.
15066
8d8a7238
PE
150672002-11-17 Paul Eggert <eggert@twinsun.com>
15068
15069 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15070 to "SyntaxError" for consistency with my 2002-11-15 change.
15071
15072 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15073 not define to {}, since this breaks the common use of `YYDPRINTF
15074 ((...));' if a single statement is desired (e.g. before `else').
15075 Work around GCC warnings by surrounding corresponding calls with
15076 {} if needed.
15077 (yyhasResolvedValue): Remove unused function.
15078 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15079 loop body.
15080 (yyreportSyntaxError): Renamed from yyreportParseError.
15081 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15082 All uses changed.
15083 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15084 extern when possible. Remove unused initializations.
15085
b0937b22
AD
150862002-11-16 Akim Demaille <akim@epita.fr>
15087
15088 Augment the similarity between GLR and LALR traces.
15089
15090 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15091 (YY_REDUCE_PRINT): New.
15092 (yyparse): Use them.
15093 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15094 YYDPRINT here.
15095 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15096 state reached after the reduction/recovery, since...
15097 (yyparse, yyprocessOneStack): Report the state we are entering in.
15098
c5e3e510
AD
150992002-11-16 Akim Demaille <akim@epita.fr>
15100
15101 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15102 Add support for --trace=skeleton.
15103 * src/scan-skel.l: %option debug.
15104 Scan strings of non-@ or \n instead of character by character.
15105 (scan_skel): Handle trace_skeleton.
15106 (QPUTS): New.
15107 (@output_parser_name@, @output_header_name@): ``Restore'' their
15108 support (used to be M4 macros).
15109 * data/yacc.c: Quote larger chunks, a la glr.c.
15110 * data/lalr1.cc: Likewise.
15111 The header guards are no longer available, so use some other
15112 string than `YYLSP_NEEDED'.
15113
4c6cc1db
AD
151142002-11-16 Akim Demaille <akim@epita.fr>
15115
15116 Make the ``Printers and Destructors'' test more verbose, taking
15117 `yacc.c''s behavior as (possibly wrong) reference.
15118
15119 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15120 instead of fprint on stdout.
15121 Set and report the last_line of the symbols.
15122 Consistently display values and locations.
15123
6d9e8019
PE
151242002-11-16 Paul Eggert <eggert@twinsun.com>
15125
15126 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15127
6e649e65
PE
151282002-11-15 Paul Eggert <eggert@twinsun.com>
15129
b25d88f6
PE
15130 * tests/actions.at (Actions after errors): New test case.
15131
6e649e65
PE
15132 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15133 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15134 tests/action.at, tests/calc.at, tests/conflicts.at,
15135 tests/cxx-type.at, tests/regression.at:
15136 "parse error" -> "syntax error" for POSIX compatibility.
15137 "parsing stack overflow..." -> "parser stack overflow" so
15138 that code matches Bison documentation.
15139
0f39aab9
AD
151402002-11-15 Akim Demaille <akim@epita.fr>
15141
15142 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15143 take two BRACED_CODE, not two string_content.
15144 Free the scanner's obstack when we are done.
15145 (code_content): New.
15146 * tests/calc.at: Adjust.
15147 * doc/bison.texinfo: Adjust.
15148 Also, make sure to include the `,' for these declarations.
15149
761c1926
AD
151502002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15151
15152 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15153 definition; avoids potential autoreconf problems.
15154
b0f98b10
AD
151552002-11-15 Akim Demaille <akim@epita.fr>
15156
15157 Always check the value returned by yyparse.
15158
15159 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15160 returned by yyparse.
15161 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15162 Adjust calls.
15163 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15164 returned by yyparse.
15165
970785f1
PH
151662002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15167
15168 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15169 on input.at test.
15170
8fcc7db1
PE
151712002-11-14 Paul Eggert <eggert@twinsun.com>
15172
7ec1b48e
PE
15173 * src/output.c (output_skeleton): Call xfopen instead of
15174 duplicating xfopen's body.
15175
cfff7583 15176 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 15177 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 15178
8fcc7db1
PE
15179 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15180 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15181 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15182 file twice in the grammar, as an extra check.
15183
15184 * tests/input.at (Torturing the Scanner): Surround the
15185 backslash-newline tests with "#if 0", to make it less likely that
15186 we'll run into compiler bugs. Bring back solitary \ inside
15187 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 15188 test backslash-newline in C character constant.
8fcc7db1 15189
4e8d992c
AD
151902002-11-14 Akim Demaille <akim@epita.fr>
15191
15192 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15193 status of the compiler.
f32b346d 15194 Calling `exit 1' is no longer needed.
4e8d992c
AD
15195 Reported by Nelson H. F. Beebe.
15196
9501dc6e
AD
151972002-11-14 Akim Demaille <akim@epita.fr>
15198
15199 * tests/atlocal.in (CPPFLAGS): We have config.h.
15200 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15201 New.
15202 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15203 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15204 * tests/regression.at, tests/torture.at: Use them for all the
15205 grammars that are to be compiled.
15206 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15207 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15208 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15209
18b519c0
AD
152102002-11-14 Akim Demaille <akim@epita.fr>
15211
15212 * doc/bison.texinfo: Various formatting changes (alignments in
15213 samples, additional @group/@end group, GCS in samples.
15214 Use @deffn instead of simple @table to define the directives,
15215 macros, variables etc.
15216
9a86cdb9
PE
152172002-11-13 Paul Eggert <eggert@twinsun.com>
15218
daa33def 15219 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 15220 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 15221
daa33def 15222 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 15223 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
15224 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15225 * tests/headers.at (export YYLTYPE): Likewise.
15226
15227 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 15228 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 15229
9a86cdb9
PE
15230 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15231 comments, since they're not portable. Use GNU coding style.
15232
9c1e26bd
AD
152332002-11-13 Akim Demaille <akim@epita.fr>
15234
15235 * data/yacc.c: Leave bigger chunks of quoted text.
15236 (YYDSYMPRINTF): New.
15237 Use it to report symbol activities.
15238 * data/glr.c (YYDSYMPRINTF): New.
15239 Use it.
15240
87f721cc
PE
152412002-11-12 Paul Eggert <eggert@twinsun.com>
15242
15243 Version 1.75b.
15244
15245 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15246 (yyglrReduce): Return yyok, not 0.
15247 This should avoid the enumerated-type warnings reported
464c6927 15248 by Nelson H. F. Beebe in
161a71f3 15249 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
15250
15251 * lib/bbitset.h (BITSET_INLINE): Remove.
15252 * lib/bitset.h [! BITSET_INLINE]: Remove.
15253 (bitset_set, bitset_reset, bitset_test): Rename local vars
15254 to avoid shadowing warnings by GCC.
15255
15256 * data/glr.c (inline): Remove #define. It's the user's
15257 responsibility to #define it away, just like 'const'.
464c6927 15258 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 15259 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 15260
87f721cc
PE
15261 * Makefile.maint (po-check): Scan .l and .y files instead of the
15262 .c and the .h files that they generate. This fixes the bug
15263 reported by Tim Van Holder in:
161a71f3 15264 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
15265 Look for N_ as well as for _. Try to avoid matching #define for
15266 N_ and _.
15267 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15268 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15269 * src/scan-gram.l: Revamp regular expressions so that " and '
15270 do not confuse xgettext.
15271
15272 * src/struniq.h (struniq_new): Do not declare the return type
15273 to be 'const'; this violates the C standard.
15274 * src/struniq.c (struniq_new): Likewise.
15275
be14ade5
AD
152762002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15277
15278 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15279 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15280 linker.
15281
05291fbc
AD
152822002-11-12 Akim Demaille <akim@epita.fr>
15283
15284 * Makefile.maint: Sync with Autoconf:
15285 (local_updates): New.
15286
1f5fd52e
AD
152872002-11-12 Akim Demaille <akim@epita.fr>
15288
15289 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15290
283f1e64
AD
152912002-11-12 Akim Demaille <akim@epita.fr>
15292
15293 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15294 locations.
15295
886b69d1
AD
152962002-11-12 Akim Demaille <akim@epita.fr>
15297
15298 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15299 not yyvalue.
15300
3df37415
AD
153012002-11-12 Akim Demaille <akim@epita.fr>
15302
15303 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15304 Use it to test the GLR parser.
15305
7bd6c77e
AD
153062002-11-12 Akim Demaille <akim@epita.fr>
15307
15308 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15309 defines it.
15310 * data/glr.c (yystos): New.
15311 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15312 (YYDSYMPRINT): New.
15313 (yyval): Don't define it, it is handled via M4.
15314 (yyrecoverParseError): Free verbosely the discarded symbols.
15315 * data/yacc.c (yysymprint): Remove, rather...
15316 (b4_yysymprint_generate): invoke.
15317 * data/c.m4 (b4_yysymprint_generate): New.
15318 Accept pointers as arguments, as opposed to the version from
15319 yacc.c.
15320 (b4_yydestruct_generate): Likewise.
15321 * tests/cations.at (Printers and Destructors): Use Bison directives
15322 instead of CPP macros.
15323 Don't rely on internal details.
15324
b0400cc6
AD
153252002-11-12 Akim Demaille <akim@epita.fr>
15326
15327 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15328 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15329 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15330 it against YYEMPTY and so forth), work on yytoken (i.e., set
15331 it to YYEMPTY etc.).
15332 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15333 (b4_symbol_actions): Remove.
15334 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15335 for 0, end-of-input.
15336
72f889cc
AD
153372002-11-12 Akim Demaille <akim@epita.fr>
15338
15339 * doc/bison.texinfo (Destructor Decl): New.
15340
b1ae9233
AD
153412002-11-12 Akim Demaille <akim@epita.fr>
15342
15343 * src/tables.c (tables_generate): Use free for pointers that
15344 cannot be NULL, not XFREE.
15345 (pack_vector): Use assert, not fatal, for bound violations.
15346 * src/state.c (state_new): Likewise.
15347 * src/reader.c (reader): Likewise.
15348 * src/lalr.c (set_goto_map): Likewise.
72f889cc 15349 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
15350 the file name.
15351
7ec2d4cd
AD
153522002-11-12 Akim Demaille <akim@epita.fr>
15353
15354 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15355 Restore.
15356 * src/scan-gram.l (last_string): Is global to the file, not to
15357 yylex.
15358 * src/parse-gram.y (input): Don't append the epilogue here,
15359 (epilogue.opt): do it here, and free the scanner's obstack.
15360 * src/reader.c (epilogue_set): Rename as...
15361 (epilogue_augment): this.
15362 * data/c.m4 (b4_epilogue): Defaults to empty.
15363
573a6cd3
AD
153642002-11-12 Akim Demaille <akim@epita.fr>
15365
15366 * src/getargs.c (long_options): Remove duplicates.
15367 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15368 Remove.
15369 * doc/bison.rnh: Remove.
15370 * doc/bison.texinfo (VMS Invocation): Remove.
15371
95612cfa
AD
153722002-11-12 Akim Demaille <akim@epita.fr>
15373
15374 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15375 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15376
15377 Use struniq for symbols.
15378
15379 * src/symtab.h (symbol_t): The tag member is a struniq.
15380 (symbol_type_set): Adjust.
15381 * src/symtab.c (symbol_new): Takes a struniq.
15382 (symbol_free): Don't free the tag member.
15383 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15384 (hash_compare_symbol, hash_symbol): these.
15385 Use the fact that tags as struniqs.
15386 (symbol_get): Use struniq_new.
15387 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15388 Returns a strniq.
15389 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15390 and type members are struniqs.
15391 * src/reader.c (get_merge_function)
15392 (grammar_current_rule_merge_set): Adjust.
15393 (TYPE, current_type): Are struniq.
15394
15395 Use struniq for file names.
15396
15397 * src/files.h, src/files.c (infile): Split into...
15398 (grammar_file, current_file): these.
15399 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15400 * src/reduce.c (reduce_print): Likewise.
15401 * src/getargs.c (getargs): Likewise.
15402 * src/complain.h, src/complain.c: Likewise.
15403 * src/main.c (main): Call struniqs_new early enough to use it for
15404 file names.
15405 Don't free the input file name.
15406
3e6656f9
AD
154072002-11-12 Akim Demaille <akim@epita.fr>
15408
15409 * src/symtab.c (symbol_free): Remove dead deactivated code:
15410 type_name are properly removed.
15411 Don't use XFREE to free items that cannot be NULL.
15412 * src/struniq.h, src/struniq.c: New.
15413 * src/main.c (main): Initialize/free struniqs.
15414 * src/parse-gram.y (%union): Add astruniq member.
15415 (yyprint): Adjust.
15416 * src/scan-gram.l (<{tag}>): Return a struniq.
15417 Free the obstack bit that used to store it.
15418 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15419
7672019c
PE
154202002-11-11 Paul Eggert <eggert@twinsun.com>
15421
15422 Revamp to fix many (but not all) of the C- and M4-related quoting
15423 problems. Among other things, this fixes the Bison bug reported
15424 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 15425 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
15426
15427 Use new @ escapes consistently. Represent brackets with @{ and @}
15428 rather than @<:@ and @:>@, since this works a bit better with dumb
15429 editors like vi. Represent @ with @@, since @ is now consistently
15430 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15431 __ofile__, to avoid unexpected expansions. Similarly, use @output
15432 rather than #output.
15433
15434 * data/c.m4 (b4_copyright): Omit file name from comment, since
15435 the file name could contain "*/".
15436 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15437 be quoted. All uses changed.
15438
15439 * data/glr.c: Use new @ escapes consistently.
15440 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15441 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15442 Remove, since they couldn't handle arbitrary characters in file
15443 names.
15444 * data/lalr1.cc: Likewise.
15445 * data/yacc.c: Likewise.
15446
15447 * src/files.c (output_infix): Remove; all uses removed.
15448 * src/files.h: Likewise.
15449
15450 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15451 mishandled funny characters in file names, and anyway it isn't
15452 needed any more.
15453 * data/yacc.c: Likewise.
15454 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15455
15456 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15457 * data/yacc.c: Likewise.
15458
15459 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15460 strings now.
15461 (muscle_init): Quote filename as a C string.
15462 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15463 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15464 * src/output.c (escaped_file_name_output): New function.
15465 (prepare_symbols): Quote tokens for M4.
15466 (prepare): Don't insert output_infix, output_prefix,
15467 output_parser_name, output_header_name; this is now down by scan-skel.
15468 Insert skeleton as a C string.
15469
15470 * src/output.c (user_actions_output, symbol_destructors_output,
15471 symbol_printers_output): Quote filenames for C and M4.
15472 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15473
15474 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15475 escapes other than \\ and \'; this simplifies the code.
15476 (<SC_STRING>): Likewise, for \\ and \".
15477 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15478 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15479 Use new escapes @{ and @} for [ and ].
15480
15481 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15482 them with auto vars.
15483 Switch to new escape scheme, where @ is the escape character uniformly.
15484 Abort if a stray escape character is found. Avoid unbounded input
15485 buffer when parsing non-escaped text.
15486
15487 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15488 __oline__, #output, $@, and @{ do not have unintended meanings.
15489
acea4f3b
PE
154902002-11-09 Paul Eggert <eggert@twinsun.com>
15491
15492 Fix the test failure due to GCC warnings described in
161a71f3 15493 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
15494 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15495 evaluate to 0 if it's impossible for NINF to be in the respective
15496 table.
15497 (yygetLRActions, yyrecoverParseError): Use them.
15498
15499 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15500 counted in the token inserted at end of file. Now takes
15501 location_t *, not location_t, so that the location can be
15502 adjusted. All uses changed.
15503
15504 * tests/regression.at (Invalid inputs): Adjust wording in
15505 diagnostic to match the new behavior.
15506
15507 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15508 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15509 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15510 abort ();'. This reduces the runtime of the "Many lookaheads"
15511 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15512 GCC 3.2.
15513
20ef1ad5
PE
155142002-11-07 Paul Eggert <eggert@twinsun.com>
15515
15516 * src/parse-gram.y (CHARACTER): Remove unused token.
15517 All uses removed.
15518
15519 * src/scan-gram.l: Remove stack option. We no longer use the
15520 stack, since the stack was never deeper than 1; instead, use the
15521 new auto var c_context to record the stacked value.
15522
15523 Remove nounput option. At an unexpected end of file, we now unput
15524 the minimal input necessary to end cleanly; this simplifies the
15525 code.
15526
15527 Avoid unbounded token sizes where this is easy.
15528
15529 (unexpected_end_of_file): New function.
15530 Use it to systematize the error message on unexpected EOF.
15531 (last-string): Now auto, not static.
15532 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15533 (scanner_last_string_free): Remove; not used.
15534 (percent_percent_count): Move decl to just before use.
15535 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15536 not the (never otherwised-used) CHARACTER.
15537
93724f13
AD
155382002-11-07 Akim Demaille <akim@epita.fr>
15539
15540 Let yyerror always receive the msg as last argument, so that
15541 yyerror can be variadic.
15542
15543 * data/yacc.c (b4_yyerror_args): New.
15544 Use it when calling yyerror.
15545 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15546 Use it when calling yyerror.
15547 * doc/bison.texinfo (Error Reporting): Adjust.
15548 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15549 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15550
6e40b4eb
AD
155512002-11-06 Akim Demaille <akim@epita.fr>
15552
15553 #line should have quoted strings.
15554 Ideally, this should be done by m4_quotearg.
15555
15556 * src/scan-skel.l: Include quotearg.h.
15557 Quote __ofile__.
15558 * src/output.c (symbol_printers_output)
15559 (symbol_destructors_output): Quote the file name.
15560
2dfbfc12
AD
155612002-11-06 Akim Demaille <akim@epita.fr>
15562
15563 * tests/regression.at (Invalid inputs): Adjust to the recent
15564 messages.
15565
437c2d80
AD
155662002-11-06 Akim Demaille <akim@epita.fr>
15567
15568 Restore --no-lines.
15569 Reported by Jim Kent.
15570
15571 * data/c.m4 (b4_syncline): New.
15572 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15573 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15574 * src/output.c (user_actions_output): Likewise.
15575 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 15576 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 15577
900c5db5
AD
155782002-11-06 Akim Demaille <akim@epita.fr>
15579
15580 * src/main.c (main): Free `infile'.
15581 * src/scan-gram.l (handle_syncline): New.
15582 Recognize `#line'.
15583 * src/output.c (user_actions_output, symbol_destructors_output)
15584 (symbol_printers_output): Use the location's file name, not
15585 infile.
15586 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15587
e183b123 155882002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 15589
e183b123 15590 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 15591 either has GLR conflict entries.
e183b123 15592
193eb6b7
PE
155932002-11-05 Paul Eggert <eggert@twinsun.com>
15594
e183b123
PE
15595 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15596 "integer out of range" rather than "invalid value".
15597 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15598 accordingly.
15599
193eb6b7
PE
15600 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15601 Also, remove one static variable in the scanner.
15602
15603 * src/scan-gram.l (braces_level): Now auto, not static.
15604 Initialize to zero if the compiler is being picky.
15605 (INITIAL): Clear braces_level instead of incrementing it.
15606 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
15607 as POSIX 1003.1-2001 requires.
15608 * src/system.h (IF_LINT): New macro, taken from coreutils.
15609 * configure.ac: Define "lint" if --enable-gcc-warnings.
15610
29c01725
AD
156112002-11-05 Akim Demaille <akim@epita.fr>
15612
15613 * src/scan-gram.l: When it starts with `%', complain about the
15614 whole directive, not just that `invalid character: %'.
15615
8aeac3ca
AD
156162002-11-04 Akim Demaille <akim@epita.fr>
15617
15618 * Makefile.maint: Update from Autoconf.
15619 (update, cvs-update, po-update, do-po-update): New.
15620
793a58bb
AD
156212002-11-04 Akim Demaille <akim@epita.fr>
15622
15623 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
15624 and yyerror.
15625 Have yyerror `use' its arguments.
15626 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
15627 returns true when location & yacc & pure & parse-param.
15628 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
15629
c4d720cd
AD
156302002-11-04 Akim Demaille <akim@epita.fr>
15631
15632 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
15633 clashes.
15634 * src/scan-gram.l: Use [\'] instead of ['] to pacify
15635 font-lock-mode.
15636 Use complain_at.
15637 Use quote, not quote_n since LOCATION_PRINT no longer uses the
15638 slot 0.
15639
613a0dc5
PE
156402002-11-03 Paul Eggert <eggert@twinsun.com>
15641
15642 * src/reader.c (get_merge_function, grammar_current_rule_check):
15643 Use consistent diagnostics for reporting type name clashes.
15644 Quote the types with <>, for consistency with Yacc.
15645 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
15646
2a8d363a
AD
156472002-11-03 Akim Demaille <akim@epita.fr>
15648
15649 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
15650 New.
15651 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
15652 (b4_parse_param): Remove.
15653 Use b4_identification.
15654 Propagate b4_pure_args where needed to pass them to yyerror.
15655 * data/glr.m4 (b4_parse_param): Remove.
15656 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
15657 (b4_lpure_formals): New.
15658 Use b4_identification.
15659 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
15660 b4_user_formals and b4_user_args.
15661 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
15662 (yyreportAmbiguity): When using a pure parser, also need
15663 the location, and the parse-params.
15664 Adjust callers.
15665 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
15666 When using a pure parser, also need the parse-params.
15667 Adjust callers.
15668 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
15669 (%pure-parser + %parse-param) LALR and GLR parsers.
15670 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
15671 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
15672 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
15673 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
15674 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
15675 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
15676 * doc/bison.texinfo: Untabify the whole file.
15677 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
15678 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
15679 (Error Reporting): Adjust to these new directives.
15680 Document %error-verbose, deprecate YYERROR_VERBOSE.
15681
9e32add8
AD
156822002-11-03 Akim Demaille <akim@epita.fr>
15683
15684 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
15685 AT_CHECK_CALC_GLR invocations to use % directives, instead of
15686 command line options.
15687 * tests/cxx-type.at: Formatting changes.
15688
b02d90a5
PE
156892002-11-03 Paul Eggert <eggert@twinsun.com>
15690
15691 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
15692 to count columns correctly, and to check for invalid inputs.
9e32add8 15693
b02d90a5
PE
15694 Use mbsnwidth to count columns correctly. Account for tabs, too.
15695 Include mbswidth.h.
15696 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
15697 (extend_location): New function.
15698 (YY_LINES): Remove.
15699
15700 Handle CRLF in C code rather than in Lex code.
15701 (YY_INPUT): New macro.
15702 (no_cr_read): New function.
15703
15704 Scan UCNs, even though we don't fully handle them yet.
15705 (convert_ucn_to_byte): New function.
15706
15707 Handle backslash-newline correctly in C code.
15708 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
15709 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
15710 all uses changed.
15711 (tag, splice): New EREs. Do not allow NUL or newline in tags.
15712 Use {splice} wherever C allows backslash-newline.
15713 YY_STEP after space, newline, vertical-tab.
15714 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 15715
b02d90a5
PE
15716 (letter, id): Don't assume ASCII; e.g., spell out a-z.
15717
15718 ({int}, handle_action_dollar, handle_action_at): Check for integer
15719 overflow.
9e32add8 15720
b02d90a5
PE
15721 (YY_STEP): Omit trailing semicolon, so that it's more like C.
15722
15723 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
15724 as well as \000. Check for UCHAR_MAX, not 255.
15725 Allow \x with an arbitrary positive number of digits, as in C.
15726 Check for overflow here.
15727 Allow \? and UCNs, for compatibility with C.
15728
15729 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
15730 with quote slot used by complain_at.
15731
15732 * tests/input.at: Add tests for backslash-newline, m4 quotes
15733 in symbols, long literals, and funny escapes in strings.
15734
15735 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
15736 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
15737 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
15738 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
15739 * m4/mbswidth.m4: New file, from GNU coreutils.
15740
15741 * doc/bison.texinfo (Grammar Outline): Document // comments.
15742 (Symbols): Document that trigraphs have no special meaning in Bison,
15743 nor is backslash-newline allowed.
15744 (Actions): Document that trigraphs have no special meaning.
15745
15746 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
15747 no longer used.
15748
157492002-11-02 Paul Eggert <eggert@twinsun.com>
15750
15751 * src/reader.c: Don't include quote.h; not needed.
15752 (get_merge_function): Reword warning to be consistent with
15753 type clash diagnostic in grammar_current_rule_check.
15754
15755 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15756 bug in trigraph handling.
15757
15758 * src/output.c (prepare_symbols): When printing token names,
15759 escape "[" as "@<:@" and likewise for "]".
15760
15761 * src/system.h (errno): Remove declaration, as we are now
15762 assuming C89 or better, and C89 guarantees errno.
15763
762b212b
PE
157642002-10-30 Paul Eggert <eggert@twinsun.com>
15765
15766 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15767 Check for close failures.
15768 * src/files.h (xfclose): Return void, not int, since it always
15769 returned zero.
15770 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15771 indicates one.
15772 * src/output.c (output_skeleton): Use xfclose rather than fclose
15773 and ferror. xfclose now checks ferror.
15774
15775 * data/glr.c (YYLEFTMOST_STATE): Remove.
15776 (yyreportTree): Use a stack-based leftmost state. This avoids
15777 our continuing battles with bogus warnings about initializers.
15778
56100c60
AD
157792002-10-30 Akim Demaille <akim@epita.fr>
15780
15781 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15782 #if.
15783
51b4a04c
PH
157842002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15785
15786 * tests/glr-regr1.at: New test for reported regressions.
15787 * tests/testsuite.at: Add glr-regr1.at test.
15788 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 15789
bf1ebda2
PE
157902002-10-24 Paul Eggert <eggert@twinsun.com>
15791
5c16c6b1
PE
15792 Version 1.75a.
15793
bf1ebda2
PE
15794 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15795 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15796 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15797 Don't assume strdup exists; POSIX says its an XSI extension.
15798 Check for buffer overflow on input.
15799
b526ee61
AD
158002002-10-24 Akim Demaille <akim@epita.fr>
15801
15802 * src/output.c (output_skeleton): Don't disable M4sugar comments
15803 too soon: it results in comments being expanded.
15804 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15805 first output.
15806
f1886bb2
AD
158072002-10-24 Akim Demaille <akim@epita.fr>
15808
15809 * data/yacc.c (m4_int_type): New.
15810 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15811 char' as only yacc.c wants K&R portability.
15812 * data/glr.c (yysigned_char): Remove.
15813 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15814 Reported by Quoc Peyrot.
15815
c5576256
PE
158162002-10-23 Paul Eggert <eggert@twinsun.com>
15817
15818 * src/main.c (main): With --trace=time, report times even if a
15819 non-fatal error occurs. Formerly, the times were reported in some
15820 such cases but not in others.
15821 * src/reader.c (reader): Just return if a complaint has been issued,
15822 instead of exiting, so that 'main' can report times.
15823
27b0ffea
AD
158242002-10-22 Akim Demaille <akim@epita.fr>
15825
15826 * src/system.h: Include sys/types.
15827 Reported by Bert Deknuydt.
15828
223a7883
PE
158292002-10-23 Paul Eggert <eggert@twinsun.com>
15830
15831 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15832 Suggested by Art Haas.
15833
158342002-10-22 Paul Eggert <eggert@twinsun.com>
15835
15836 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15837 decl; not needed any more.
15838 * src/main.c (main): Use return to exit, undoing yesterday's change.
15839 The last OS that we could find where this wouldn't work is
15840 SunOS 3.5, and that's too old to worry about now.
15841
15842 * data/glr.c (struct yyltype): Define members even when not
15843 doing locations. This is more consistent with yacc.c, and it
15844 works around the following bug reports:
161a71f3
PE
15845 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15846 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 15847
223a7883
PE
15848 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15849 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15850 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15851
8b76775a
AD
158522002-10-22 Akim Demaille <akim@epita.fr>
15853
15854 * data/README: New.
15855
6db10d14
PE
158562002-10-21 Paul Eggert <eggert@twinsun.com>
15857
15858 Be consistent about 'bool'; the old code used an enum in one
15859 module and an int in another, and this violates the C standard.
15860 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15861 * configure.ac (AC_HEADER_STDBOOL): Add.
15862 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15863 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15864 * src/symtab.c (hash_compare_symbol_t): Likewise.
15865 * src/system.h (bool, false, true): Use a definition consistent
15866 with ../lib/hash.c. All uses changed.
15867
15868 * src/complain.c (warning_issued): Renamed from warn_message_count,
15869 so that we needn't worry about integer overflow (!).
15870 Now of type bool. All uses changed.
15871 (complaint_issued): Renamed from complain_message_count; likewise.
15872
15873 * src/main.c (main): Use exit to exit with failure.
27b0ffea 15874
6db10d14
PE
15875 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15876 rather than 1 and 0.
15877 * src/main.c (main): Likewise.
15878 * src/getargs.c (getargs): Likewise.
15879 * src/reader.c (reader): Likewise.
15880
15881 * src/getarg.c (getargs): Remove duplicate code for
15882 "Try `bison --help'".
15883
15884 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15885 What was that "2" for?
15886
15887 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15888 * src/getargs.c (usage): Likewise.
15889
15890 * src/getargs.c (getargs): When there are too few operands, report
15891 the last one. When there are too many, report the first extra
15892 one. This is how diffutils does it.
15893
92a060fd
PE
158942002-10-20 Paul Eggert <eggert@twinsun.com>
15895
15896 Remove K&R vestiges.
15897 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15898 * src/complain.c (VA_START): Remove. Assume prototypes.
15899 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15900 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15901 fatal): Assume prototypes.
15902 * src/complain.h: Assume prototypes.
15903 * src/system.h (PARAMS): Remove.
15904 Include <limits.h> unconditionally, since it's guaranteeed even
15905 for a freestanding C89 compiler.
15906 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15907 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 15908
e7cb57c0
AD
159092002-10-20 Akim Demaille <akim@epita.fr>
15910
15911 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15912 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15913 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15914 (yyresolveStates, yyresolveAction, yyresolveStack)
15915 (yyprocessOneStack): Use them.
15916 (yy_reduce_print): New.
15917 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15918
0245f82d
AD
159192002-10-20 Akim Demaille <akim@epita.fr>
15920
15921 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15922 arguments and output `void'.
15923 (b4_c_function): Rename as...
15924 (b4_c_function_def): this.
15925 (b4_c_function_decl, b4_c_ansi_function_def)
15926 (b4_c_ansi_function_decl): New.
15927 Change the interpretation of the arguments: before `int, foo', now
15928 `int foo, foo'.
15929 * data/yacc.c (yyparse): Prototype and define thanks to these.
15930 Adjust b4_c_function_def uses.
15931 * data/glr.c (yyparse): Likewise, but ANSI only.
15932
39912f52
AD
159332002-10-20 Akim Demaille <akim@epita.fr>
15934
15935 * src/output.c (prepare): Move the definition of `tokens_number',
15936 `nterms_number', `undef_token_number', `user_token_number_max'
15937 to...
15938 (prepare_tokens): Here.
15939 (prepare_tokens): Rename as...
15940 (prepare_symbols): this.
15941 (prepare): Move the definition of `rules_number' to...
15942 (prepare_rules): here.
15943 (prepare): Move the definition of `last', `final_state_number',
15944 `states_number' to...
15945 (prepare_states): here.
15946 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15947
20c1e2ad
AD
159482002-10-20 Akim Demaille <akim@epita.fr>
15949
15950 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15951
21964f43
AD
159522002-10-20 Akim Demaille <akim@epita.fr>
15953
15954 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15955 * data/c.m4: here.
15956
66d30cd4
AD
159572002-10-20 Akim Demaille <akim@epita.fr>
15958
15959 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15960 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15961 `pair'.
15962 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15963 `name' to...
15964 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15965 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15966 These.
15967
95f2c9fe
PE
159682002-10-19 Paul Eggert <eggert@twinsun.com>
15969
15970 Do not create a temporary file, as that involves security and
15971 cleanup headaches. Instead, use a pair of pipes.
15972 Derived from a suggestion by Florian Krohm.
15973 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15974 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15975 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15976 (BISON_PREREQ_SUBPIPE): Add.
15977 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15978 Add subpipe.h, subpipe.c.
15979 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15980 * po/POTFILES.in: Add lib/subpipe.c.
15981 * src/output.c: Include "subpipe.h".
15982 (m4_invoke): Remove decl.
15983 (scan_skel): New decl.
15984 (output_skeleton): Use pipe rather than temporary file for m4 input.
15985 Check that m4sugar.m4 is readable, to avoid deadlock.
15986 Check for pipe I/O error.
15987 * src/scan-skel.l (readpipe): Remove decl.
15988 (scan_skel): New function, to be used in place of m4_invoke.
15989 Read from stream rather than file.
66d30cd4 15990
95f2c9fe
PE
15991 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15992 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15993 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15994 this generates a more-accurate value anyway.
15995
15996 * lib/timevar.c (timervar_accumulate): Rename locals to
15997 avoid confusion with similarly-named more-global.
15998 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15999
16000 * src/output.c (prepare): Use xstrdup to convert char const *
16001 to char *, to avoid GCC warning.
16002
c19988b7
AD
160032002-10-19 Akim Demaille <akim@epita.fr>
16004
16005 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16006 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16007 Use them to have `calc.y' ready for %pure-parser.
16008 * data/yacc.c (YYLEX): Pass a yylex return type to
16009 b4_c_function_call.
16010
ae7453f2
AD
160112002-10-19 Akim Demaille <akim@epita.fr>
16012
16013 Prototype support of %lex-param and %parse-param.
16014
16015 * src/parse-gram.y: Add the definition of the %lex-param and
16016 %parse-param tokens, plus their rules.
16017 Drop the `_' version of %glr-parser.
16018 Add the "," token.
16019 * src/scan-gram.l (INITIAL): Scan them.
16020 * src/muscle_tab.c: Comment changes.
16021 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16022 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16023 (muscle_entry_s): The `value' member is no longer const.
16024 Adjust all dependencies.
16025 * src/muscle_tab.c (muscle_init): Adjust: use
16026 MUSCLE_INSERT_STRING.
16027 Initialize the obstack earlier.
16028 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16029 (muscle_pair_list_grow): New.
16030 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16031 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16032 * tests/calc.at: Use %locations, not --locations.
16033 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16034
0e575721
AD
160352002-10-19 Akim Demaille <akim@epita.fr>
16036
16037 * src/getargs.c (usage): Take status as argument and exit
16038 accordingly.
16039 Report the traditional `Try ... --help' message when status != 0.
16040 (usage, version): Don't take a FILE * as arg, it is pointless.
16041 (getargs): When there is an incorrect number of arguments, make it
16042 an error, and report it GNUlically thanks to `usage ()'.
16043
724ce7f5
PE
160442002-10-18 Paul Eggert <eggert@twinsun.com>
16045
3a781eb2
PE
16046 * data/glr.c (yyreportParseError): Don't assume that sprintf
16047 yields the length of the printed string, as this is not true
16048 on SunOS 4.1.4. Reported by Peter Klein.
16049
724ce7f5
PE
16050 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16051 * tests/conflicts.at (%nonassoc and eof): Likewise.
16052 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16053
473d0a75
AD
160542002-10-17 Akim Demaille <akim@epita.fr>
16055
16056 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16057 * src/getargs.c (trace_types, trace_args): Adjust.
16058 * src/reader.c (grammar_current_rule_prec_set)
16059 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16060 Standardize error messages.
16061 And s/@prec/%prec/!
16062 (reader): Use trace_flag to enable scanner/parser debugging,
16063 instead of an adhoc scheme.
16064 * src/scan-gram.l: Remove trailing debugging code.
16065
e76d2469
PE
160662002-10-16 Paul Eggert <eggert@twinsun.com>
16067
93e2236a
PE
16068 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16069 MUSCLE_TAB_H.
16070
e76d2469
PE
16071 * NEWS: Officially drop support for building Bison with K&R C,
16072 since it didn't work anyway and it's not worth worrying about.
16073 * Makefile.maint (wget_files): Remove ansi2knr.c.
16074 (ansi2knr.c-url_prefix): Remove.
16075 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16076 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16077 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16078
5bd1c419
PE
160792002-10-15 Paul Eggert <eggert@twinsun.com>
16080
16081 Stop using the "enum_" trick for K&R-style function definitions;
16082 it confused me, and I was the author! Instead, assume that people
16083 who want to use K&R C compilers (when using these modules in GCC,
16084 perhaps?) will run ansi2knr.
16085
16086 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16087 All uses of "enum_" changed to "enum ".
16088 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16089 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 16090
5bd1c419
PE
16091 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16092 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16093 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16094 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16095 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16096 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16097 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16098 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16099 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16100 Use function prototypes; this removes the need for declaring
16101 static functions simply to provide their prototypes.
16102 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16103 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16104 bitset_count_, bitset_create, bitset_dump, bitset_first,
16105 bitset_free, bitset_init, bitset_last, bitset_next,
16106 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16107 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16108 bitset_print, bitset_release_memory, bitset_toggle_,
16109 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16110 debug_bitset): Likewise.
16111 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16112 * lib/bitset_stats.c (bitset_log_histogram_print,
16113 bitset_percent_histogram_print, bitset_stats_and,
16114 bitset_stats_and_cmp, bitset_stats_and_or,
16115 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16116 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16117 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16118 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16119 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16120 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16121 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16122 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16123 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16124 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16125 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16126 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16127 bitset_stats_zero): Likewise.
16128 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16129 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16130 bitsetv_dump, debug_bitsetv): Likewise.
16131 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16132 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16133 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16134 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16135 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16136 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16137 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16138 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16139 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16140 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16141 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16142 Likewise.
16143 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16144 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16145 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16146 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16147 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16148 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16149 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16150 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16151 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16152 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16153 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 16154
ae26e1f0
AD
161552002-10-14 Akim Demaille <akim@epita.fr>
16156
16157 Version 1.75.
16158
d43baf71
AD
161592002-10-14 Akim Demaille <akim@epita.fr>
16160
16161 * tests/Makefile.am (maintainer-check-posix): New.
16162
7ebc83e3
AD
161632002-10-14 Akim Demaille <akim@epita.fr>
16164
16165 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16166 member.
16167
05846dae
AD
161682002-10-14 Akim Demaille <akim@epita.fr>
16169
16170 * src/tables.c (table_ninf_remap): base -> tab.
16171 Reported by Matt Rosing.
16172
1318e37d
PE
161732002-10-14 Paul Eggert <eggert@twinsun.com>
16174
447fbb17
PE
16175 * tests/action.at, tests/calc.at, tests/conflicts.at,
16176 tests/cxx-type.at, tests/headers.at, tests/input.at,
16177 tests/regression.at, tests/synclines.at, tests/torture.at:
16178 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16179 so that the tests still work even if POSIXLY_CORRECT is set.
16180 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 16181
1318e37d
PE
16182 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16183 for portability to K&R hosts. Fix typo: signed char is guaranteed
16184 only to 127, not to 128.
16185 * data/glr.c (yysigned_char): New type.
16186 * data/yacc.c (yysigned_char): Likewise.
16187 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16188
cc0f0794
PE
161892002-10-13 Paul Eggert <eggert@twinsun.com>
16190
5038f418
PE
16191 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16192 true due to limited range of data type" warning from GCC.
16193
cc0f0794
PE
16194 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16195 by wrapping enum yytokentype's definition inside #ifndef
16196 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16197
6fed0802
AD
161982002-10-13 Akim Demaille <akim@epita.fr>
16199
16200 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16201 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16202
32f0598d
AD
162032002-10-13 Akim Demaille <akim@epita.fr>
16204
16205 * Makefile.maint: Update from Autoconf 2.54.
16206 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16207
7ea9a33f
AD
162082002-10-13 Akim Demaille <akim@epita.fr>
16209
16210 * src/print.c (print_state): Separate the list of solved conflicts
16211 from the other items.
16212 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16213
ea99527d
AD
162142002-10-13 Akim Demaille <akim@epita.fr>
16215
16216 Let nondeterministic skeletons be usable with deterministic
16217 tables.
16218
16219 With the patch, GAWK compiled by GCC without -O2 passes its test
16220 suite using a GLR parser driven by LALR tables. It fails with -O2
16221 because `struct stat' gives two different answers on my machine:
16222 88 (definition of an auto var) and later 96 (memset on this var).
16223 Hence the stack is badly corrumpted. The headers inclusion is to
16224 blame: if I move the awk.h inclusion before GLR's system header
16225 inclusion, the two struct stat have the same size.
16226
16227 * src/tables.c (pack_table): Always create conflict_table.
16228 (token_actions): Always create conflict_list.
16229 * data/glr.c (YYFLAG): Remove, unused.
16230
f377f69f
AD
162312002-10-13 Akim Demaille <akim@epita.fr>
16232
16233 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16234 (O0FLAGS): New.
16235 (VALGRIND, GXX): New.
16236 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16237 * tests/bison.in: Run $PREBISON a pre-command.
16238 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16239 (maintainer-check-g++): New.
16240 * Makefile.am (maintainer-check): New.
16241
2a1fe6ed
AD
162422002-10-13 Akim Demaille <akim@epita.fr>
16243
16244 * data/glr.c: Formatting changes.
16245 Tweak some trace messages to match yacc.c's.
16246
f50adbbd
AD
162472002-10-13 Akim Demaille <akim@epita.fr>
16248
16249 GLR parsers sometimes raise parse errors instead of performing the
16250 default reduction.
16251 Reported by Charles-Henry de Boysson.
16252
16253 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 16254 check the length of the traces when %glr.
f50adbbd
AD
16255 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16256 GLR's traces.
16257 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16258 Test GLR parsers.
16259 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16260 (yyltype): Remove the yy prefix from the member names.
16261 (yytable): Complete its comment.
16262 (yygetLRActions): Map error action number from YYTABLE from
16263 YYTABLE_NINF to 0.
16264 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16265 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16266 not satisfying as we could compare an YYACTION computed from
16267 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16268 only value for error actions.
16269 (yyreportParseError): In verbose parse error messages, don't issue
16270 `error' in the list of expected tokens.
16271 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16272 next action to perform to match glr.c's decoding.
16273 (yytable): Complete its comment.
16274
bcbad5b9
PE
162752002-10-13 Paul Eggert <eggert@twinsun.com>
16276
16277 Fix problem reported by Henrik Grubbstroem in
161a71f3 16278 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
16279 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16280 because the Bison parser reads the second action before reducing
16281 the first one.
16282 * src/scan-gram.l (rule_length): New static var.
16283 Use it to keep track of the rule length in the scanner, since
16284 we can't expect the parser to be in lock-step sync with the scanner.
16285 (handle_action_dollar, handle_action_at): Use this var.
16286 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 16287
14904b89
PE
162882002-10-12 Paul Eggert <eggert@twinsun.com>
16289
1fe611e5
PE
16290 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16291 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16292 Include <sys/time.h> when checking for clock_t and struct tms.
16293 Use same include order as source.
16294 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 16295 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 16296
1fe611e5
PE
16297 * lib/timevar.c: Update copyright date and clarify comments.
16298 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 16299
1fe611e5
PE
16300 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16301 GCC version as of today, then merge Bison's changes.
16302 Change "GCC" to "Bison" in copyright notice. timevar.def's
16303 author is Akim, so change that too.
16304
98194095
PE
16305 * src/reader.c (grammar_current_rule_check):
16306 Don't worry about the default action if $$ is untyped.
16307 Prevents bogus warnings reported by Jim Gifford in
161a71f3 16308 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 16309
14904b89
PE
16310 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16311 * data/glr.c, data/lalr1.cc, data/yacc.c:
16312 Output token definitions before the first part of user declarations.
16313 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 16314 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 16315
ff6dca18
PE
163162002-10-11 Paul Eggert <eggert@twinsun.com>
16317
16318 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16319 (yyparse): here. This undoes some of the 2002-07-25 change.
16320 Compatibility problem reported by Ralf S. Engelschall with
16321 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16322
eb714592
AD
163232002-10-11 Akim Demaille <akim@epita.fr>
16324
16325 * tests/regression.at Characters Escapes): New.
16326 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16327 characters.
16328 Reported by Jan Nieuwenhuizen.
16329
b7195100
AD
163302002-10-11 Akim Demaille <akim@epita.fr>
16331
16332 * po/id.po: New.
16333
f28a0f2d
PE
163342002-10-10 Paul Eggert <eggert@twinsun.com>
16335
16336 Portability fixes for bitsets; this also avoids several GCC
16337 warnings.
16338
16339 * lib/abitset.c: Include <stddef.h>, for offsetof.
16340 * lib/lbitset.c: Likewise.
16341
16342 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16343 properly for vectors of objects. Do not assume that adding a
16344 header size to a multiple of a word size yields a value that is
16345 properly aligned for the whole union.
16346 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16347
16348 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16349 unique names for structures.
16350 * lib/ebitset.c (ebitset_bytes): Likewise.
16351 * lib/lbitset.c (lbitset_bytes): Likewise.
16352
16353 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16354 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16355 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16356 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16357 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16358 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16359 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16360 to improve the type-checking that GCC can do.
16361 * lib/bitset.c (bitset_op4_cmp): Likewise.
16362 * lib/bitset_stats.c (bitset_stats_count,
16363 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16364 bitset_stats_copy, bitset_stats_disjoint_p,
16365 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16366 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16367 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16368 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16369 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16370 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16371 bitset_stats_or_and_cmp): Likewise.
16372 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16373 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16374 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16375 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16376
16377 * lib/abitset.h: Include bitset.h, not bbitset.h.
16378 * lib/ebitset.h: Likewise.
16379 * lib/lbitset.h: Likewise.
16380
16381 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16382 All instances of parameters of type enum bitset_opts are now of
16383 type enum_bitset_opts, to conform to the C Standard, and similarly
16384 for enum_bitset_type.
16385 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16386 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16387
16388 Do not use "struct bitset_struct" to mean different things in
16389 different modules. Not only is this confusing, it violates
16390 the C Standard, which requires that structure types in different
16391 modules must be compatible if one is to be passed to the other.
16392 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16393 All instances of "struct bitset_struct *" replaced with "bitset".
16394 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16395 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16396 struct lbitset_struct, struct bitset_stats_struct): New types.
16397 All uses of struct bitset_struct changed to union bitset_union,
16398 etc.
ba0fe3c7 16399 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
16400 struct bitset_struct): Remove.
16401 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16402 struct bitset_struct): Remove.
16403 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16404 bitset_struct): Remove.
16405 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16406 Likewise.
16407
16408 Do not call a function of type T using a call that assumes the
16409 function is of a different type U. Standard C requires that a
16410 function must be called with a type that is compatible with its
16411 definition.
16412 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16413 New decls.
16414 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16415 New functions.
16416 * lib/ebitset.c (PFV): Remove.
16417 * lib/lbitset.c (PFV): Likewise.
16418 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16419 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16420 decls.
16421 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16422 (ebitset_vtable): Use them.
16423 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16424 lbitset_xor): New functions.
16425 (lbitset_vtable): Use them.
16426
16427 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16428 Declare.
16429
16430 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16431 GCC warning.
16432 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16433 Use offsetof, for simplicity.
16434
6fbe4984
PE
164352002-10-06 Paul Eggert <eggert@twinsun.com>
16436
16437 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16438 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 16439 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
16440 which was inadvertently undone by the 2002-09-30 patch.
16441 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16442 the same width as int.
16443
420f93c8
PE
164442002-10-04 Paul Eggert <eggert@twinsun.com>
16445
16446 Version 1.50.
16447
16448 * configure.ac (AC_INIT), NEWS: Increment version number.
16449
16450 * doc/bison.texinfo: Minor spelling, grammar, and white space
16451 fixes.
16452 (Symbols): Mention that any negative value returned from yylex
16453 signifies end-of-input. Warn about negative chars. Mention
16454 the portable Standard C character set.
16455
16456 The GNU coding standard says CFLAGS and YFLAGS are reserved
16457 for the installer to set.
16458 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16459 * src/Makefile.am (AM_CFLAGS): Likewise.
16460 (AM_YFLAGS): Renamed from YFLAGS.
16461
16462 Fix some MAX and MIN problems.
16463 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16464 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16465 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16466 * src/reader.c (reader): Use it.
16467
16468 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16469 POSIX 1003.1-2001 has removed fgrep.
16470
164712002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16472
16473 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16474 interpreted as signed.
16475 * lib/ebitset.c (ebitset_list): Fix bug.
16476
ff68026d
PE
164772002-10-01 Paul Eggert <eggert@twinsun.com>
16478
16479 More fixes for 64-bit hosts and large bitsets.
16480
16481 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16482 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16483 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16484 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16485 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16486 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16487 bitset_count_): Likewise.
16488 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16489 bitset_first, bitset_last): Likewise.
16490 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16491 bitset_stats_list_reverse, bitset_stats_size,
16492 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16493 Likewise.
16494 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16495 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16496 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16497 bitsetv_reflexive_transitive_closure): Likewise.
16498 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16499 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16500 Likewise.
16501 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16502 Likewise.
420f93c8 16503
ff68026d
PE
16504 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16505 Use size_t, not unsigned int, to count bytes.
16506 * lib/abitset.h (abitset_bytes): Likewise.
16507 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16508 Likewise.
16509 * lib/bitset.h (bitset_bytes): Likewise.
16510 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16511 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16512 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16513 * lib/ebitset.c (ebitset_bytes): Likewise.
16514 * lib/ebitset.h (ebitset_bytes): Likewise.
16515 * lib/lbitset.c (lbitset_bytes): Likewise.
16516 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 16517
ff68026d
PE
16518 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16519 abitset_subset_p, abitset_disjoint_p, abitset_and,
16520 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16521 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16522 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16523 abitset_or_and, abitset_or_and_cmp):
16524 Use bitset_windex instead of unsigned int.
16525 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16526 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16527 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16528 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16529 Likewise.
16530 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 16531
ff68026d
PE
16532 * lib/bitset.c (bitset_print):
16533 Use proper printf formats for widths of integer types.
16534 * lib/bitset_stats.c (bitset_percent_histogram_print,
16535 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16536 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16537 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16538 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 16539
ff68026d
PE
16540 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16541 BITSET_SIZE_MAX): New macros.
16542 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16543 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16544 to BITSET_WINDEX_MAX.
16545
16546 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16547 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16548 since we now return the bitset_bindex type (not int).
16549
16550 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16551 when computing sizes.
16552 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16553
16554 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16555 and avoid cast to unsigned.
16556
6aa452a6
AD
165572002-09-30 Akim Demaille <akim@epita.fr>
16558
16559 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16560 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16561 Updates from Michael Hayes.
16562
927f7817
AD
165632002-09-30 Art Haas <ahaas@neosoft.com>
16564
16565 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16566 invocations.
16567 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16568 defined.
16569
9738f41e
AD
165702002-09-27 Akim Demaille <akim@epita.fr>
16571
16572 Version 1.49c.
16573
a5c75d7f
AD
165742002-09-27 Akim Demaille <akim@epita.fr>
16575
16576 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16577 (Because of AC_LIBSOURCE).
16578
8280e179
AD
165792002-09-27 Akim Demaille <akim@epita.fr>
16580
16581 Playing with Autoscan.
16582
16583 * configure.ac: Remove the old LIBOBJ tweaks.
16584 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16585 * lib/strrchr.c: New.
16586 * lib/strtol.c: New, from the Coreutils 4.5.1.
16587
ae64af35
AD
165882002-09-27 Akim Demaille <akim@epita.fr>
16589
16590 Playing with Autoscan.
16591
16592 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16593 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16594 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16595 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16596 Coreutils 4.5.1.
16597
d1a1114f
AD
165982002-09-24 Akim Demaille <akim@epita.fr>
16599
16600 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16601 (Frequently Asked Questions, Parser Stack Overflow): New.
16602
b906441c
AD
166032002-09-13 Akim Demaille <akim@epita.fr>
16604
16605 Playing with autoscan.
16606
16607 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
16608 * src/files.c (skeleton_find): Remove, unused.
16609 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
16610 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
16611
bd701811
AD
166122002-09-13 Akim Demaille <akim@epita.fr>
16613
16614 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
16615 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
16616
e0a13e7b
AD
166172002-09-13 Akim Demaille <akim@epita.fr>
16618
16619 * configure.ac: Require 2.54.
16620 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
16621 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
16622 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
16623 Remove, provided by Autoconf macros.
16624
c97011bf
AD
166252002-09-12 Akim Demaille <akim@epita.fr>
16626
16627 * m4/prereq.m4: Update, from Coreutils 4.5.1.
16628
d862b1be
AD
166292002-09-12 Akim Demaille <akim@epita.fr>
16630
16631 * m4/prereq.m4: Update, from Fileutils 4.1.5.
16632 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
16633 Reported by Martin Mokrejs.
16634
3d38c03a
AD
166352002-09-10 Akim Demaille <akim@epita.fr>
16636
16637 * src/parse-gram.y: Associate a human readable string to each
16638 token type.
16639 * tests/regression.at (Invalid inputs): Adjust.
16640
b6347355
AD
166412002-09-10 Gary V. Vaughan <gary@gnu.org>
16642
16643 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
16644 with an Autoconf-2.5x style configure.ac.
16645
09ba4ab2
PE
166462002-09-06 Paul Eggert <eggert@twinsun.com>
16647
16648 * doc/bison.texinfo (Conditions): Make explicit that the GPL
16649 exception applies only to yacc.c. This is a modification of a
16650 patch originally suggested by Akim Demaille.
16651
21846f69
AD
166522002-09-06 Akim Demaille <akim@epita.fr>
16653
09ba4ab2
PE
16654 * data/c.m4 (b4_copyright): Move the GPL exception comment from
16655 here to...
16656 * data/yacc.c: here.
16657
21846f69
AD
16658 * data/lalr1.cc (struct yyltype): Don't define it, since we use
16659 LocationType.
16660 (b4_ltype): Default to yy::Location from location.hh.
16661
c0ad8bf3
AD
166622002-09-04 Jim Meyering <jim@meyering.net>
16663
16664 * data/yacc.c: Guard the declaration of yytoknum also with
16665 `#ifdef YYPRINT', so it is declared only when used.
16666
3a93251e
AD
166672002-09-04 Akim Demaille <akim@epita.fr>
16668
16669 * configure.in: Rename as...
16670 * configure.ac: this.
16671 Bump to 1.49c.
16672
427c0dda
AD
166732002-09-04 Akim Demaille <akim@epita.fr>
16674
16675 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
16676 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
16677 translate maintainer only messages.
16678
6a254321
PE
166792002-08-12 Paul Eggert <eggert@twinsun.com>
16680
645e30d1
PE
16681 Version 1.49b.
16682
6a254321
PE
16683 * Makefile.am (SUBDIRS): Remove intl.
16684 (DISTCLEANFILES): Remove.
16685 * NEWS: Mention that GNU M4 is now required. Clarify what is
16686 meant by "larger grammars". Mention the pt_BR translation.
16687 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
16688 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
16689 Bump version from 0.11.2 to 0.11.5.
16690 (BISON_PREREQ_STAGE): Remove.
16691 (AM_GNU_GETTEXT): Use external gettext.
16692 (AC_OUTPUT): Remove intl/Makefile.
16693
16694 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
16695
16696 * data/glr.c: Include string.h, for strlen.
16697 (yyreportParseError): Use size_t for yysize.
16698 (yy_yypstack): No longer nested inside yypstates, as nested
16699 functions are not portable. Do not assume size_t is the
16700 same width as int.
16701 (yypstates): Do not assume that ptrdiff_t is the same width
16702 as int, and similarly for yyposn and YYINDEX.
16703
16704 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
16705
16706 * lib/Makefile.am (INCLUDES): Do not include from the intl
16707 directory, which has been removed.
16708 * src/Makefile.am (INCLUDES): Likewise.
16709
16710 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
16711 (bitsets_sources, additional_bitsets_sources, timevars_sources):
16712 New vars.
16713
16714 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
16715 * tests/Makefile.am (EXTRA_DIST): Likewise.
16716
16717 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
16718 Do not assume that bitset_windex is the same width as unsigned.
16719
16720 * lib/abitset.c (abitset_unused_clear): Do not assume that
16721 bitset_word is the same width as int.
16722 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
16723 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
16724 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
16725 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
16726 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
16727
16728 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
16729 portability to one's complement hosts!).
16730 * lib/ebitset.c (ebitset_op1): Likewise.
16731 * lib/lbitset.c (lbitset_op1): Likewise.
16732
16733 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
16734 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
16735 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
16736 Sync with fileutils.
16737 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
16738 lib/gettext.h: Sync with diffutils.
16739
16740 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
16741 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
16742
16743 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
16744 PROTOTYPES to check for prototypes, and "defined __STDC__" to
16745 check for void *.
16746
16747 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
16748 size_t; the old version tried to do this but casted improperly.
16749 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
16750 (bitset_test): Now returns int, not unsigned long.
16751
16752 * lib/bitset_stats.c: Include "gettext.h".
16753 (_): New macro.
16754 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
16755 name locals "index", as it generates unnecessary warnings on some
16756 hosts that have an "index" function.
16757
16758 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16759 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16760 they need translation.
16761 * src/LR0.c (state_list_append, new_itemsets, get_state,
16762 append_states, generate_states): Likewise.
16763 * src/assoc.c (assoc_to_string): Likewise.
16764 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16765 * src/gram.c (grammar_dump): Likewise.
16766 * src/injections.c (injections_compute): Likewise.
16767 * src/lalr.c (lookaheads_print): Likewise.
16768 * src/relation.c (relation_transpose): Likewise.
16769 * src/scan-gram.l: Likewise.
16770 * src/tables.c (table_grow, pack_vector): Likewise.
16771
16772 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16773 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16774 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16775 * m4/mbstate_t.m4: Sync with fileutils.
16776 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16777
16778 * po/LINGUAS: Add pt_BR.
16779 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16780 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16781 lib/timevar.c.
16782 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16783 manual recommends.
16784 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16785
16786 * src/complain.c (strerror_r): Remove decl; not needed.
16787 (strerror): Use same pattern as ../lib/error.c.
16788
16789 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16790
16791 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16792
16793 * src/main.c (main): Cast result of bindtextdomain and textdomain
16794 to void, to avoid a GCC warning when --disable-nls is in effect.
16795
16796 * src/scan-gram.l: Use strings rather than escapes when possible,
16797 to minimize the number of warnings from xgettext.
16798 (handle_action_dollar, handle_action_at): Don't use isdigit,
16799 as it mishandles negative chars and it may not work as expected
16800 outside the C locale.
16801
16802 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16803 this is a GCC extension and is not portable to other compilers.
16804
16805 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16806 Do not include <ctype.h>; no longer needed.
16807 Do not include <malloc.h>; no longer needed (and generates
16808 warnings on OpenBSD 3.0).
16809
16810 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16811 it's not portable.
16812
16813 * tests/regression.at: Do not use 'cc -c input.c -o input';
16814 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16815
16816 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16817 exit status as failure, not just exit status 1. Sun C exits
16818 with status 2 sometimes.
16819
16820 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16821 Use it for the two large tests.
16822
c8f002c7
AD
168232002-08-02 Akim Demaille <akim@epita.fr>
16824
16825 * src/conflicts.c (conflicts_output): Don't output rules never
16826 reduced here, since anyway that computation doesn't work.
16827 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16828 (rule_useless_p, rule_never_reduced_p): New.
16829 (grammar_rules_partial_print): Use a filter instead of a range.
16830 Display the title only if needed.
16831 (grammar_rules_print): Adjust.
16832 (grammar_rules_never_reduced_report): New.
16833 * src/tables.c (action_row): Move the computation of rules never
16834 reduced to...
16835 (token_actions): here.
16836 * src/main.c (main): Make the parser before making the report, so
16837 that rules never reduced are computed.
16838 Call grammar_rules_never_reduced_report.
16839 * src/print.c (print_results): Report rules never reduced.
16840 * tests/conflicts.at, tests/reduce.at: Adjust.
16841
cd08e51e
AD
168422002-08-01 Akim Demaille <akim@epita.fr>
16843
16844 Instead of attaching lookaheads and duplicating the rules being
16845 reduced by a state, attach the lookaheads to the reductions.
16846
16847 * src/state.h (state_t): Remove the `lookaheads',
16848 `lookaheads_rule' member.
16849 (reductions_t): Add a `lookaheads' member.
16850 Use a regular array for the `rules'.
16851 * src/state.c (reductions_new): Initialize the lookaheads member
16852 to 0.
16853 (state_rule_lookaheads_print): Adjust.
16854 * src/state.h, src/state.c (state_reductions_find): New.
16855 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16856 (count_rr_conflicts): Adjust.
16857 * src/lalr.c (LArule): Remove.
16858 (add_lookback_edge): Adjust.
16859 (state_lookaheads_count): New.
16860 (states_lookaheads_initialize): Merge into...
16861 (initialize_LA): this.
16862 (lalr_free): Adjust.
16863 * src/main.c (main): Don't free nullable and derives too early: it
16864 is used by --verbose.
16865 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16866
bb0027a9
AD
168672002-08-01 Akim Demaille <akim@epita.fr>
16868
16869 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16870 `rule_number_t**'.
16871 (set_derives, free_derives): Rename as...
16872 (derives_compute, derives_free): this.
16873 Adjust all dependencies.
16874 * src/nullable.c (set_nullable, free_nullable): Rename as...
16875 (nullable_compute, nullable_free): these.
16876 (rule_list_t): Store rule_t *, not rule_number_t.
16877 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16878 pointers, instead of their numbers.
16879 * src/main.c (main): Call nullable_free, and derives_free earlier,
16880 as they were lo longer used.
16881
3325ddc4
AD
168822002-08-01 Akim Demaille <akim@epita.fr>
16883
16884 * lib/timevar.c (get_time): Include children time.
16885 * src/lalr.h (LA, LArule): Don't export them: used with the
16886 state_t.
16887 * src/lalr.c (LA, LArule): Static.
16888 * src/lalr.h, src/lalr.c (lalr_free): New.
16889 * src/main.c (main): Call it.
16890 * src/tables.c (pack_vector): Check whether loc is >= to the
16891 table_size, not >.
16892 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16893 (tables_generate): do it, since that's also it which allocates
16894 them.
16895 Don't free LA and LArule, main does.
16896
c6f1a33c
AD
168972002-07-31 Akim Demaille <akim@epita.fr>
16898
16899 Separate parser tables computation and output.
16900
16901 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16902 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16903 (yydefgoto, yydefact, high): Move to...
16904 * src/tables.h, src/tables.c: here.
16905 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16906 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16907 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16908 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16909 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16910 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16911 (action_row, save_row, token_actions, save_column, default_goto)
16912 (goto_actions, sort_actions, matching_state, pack_vector)
16913 (table_ninf_remap, pack_table, prepare_actions): Move to...
16914 * src/tables.c: here.
16915 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16916 * src/output.c (token_actions, output_base, output_conflicts)
16917 (output_check): Merge into...
16918 (prepare_actions): this.
16919 (actions_output): Rename as...
16920 (user_actions_output): this.
16921 * src/main.c (main): Call tables_generate and tables_free.
16922
1509d42f
AD
169232002-07-31 Akim Demaille <akim@epita.fr>
16924
16925 Steal GCC's --time-report support.
16926
16927 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16928 stolen/adjusted from GCC.
16929 * m4/stage.m4: Remove time related checks.
16930 * m4/timevar.m4: New.
16931 * configure.in: Adjust.
16932 * src/system.h: Adjust to using timevar.h.
16933 * src/getargs.h, src/getargs.c: Support trace_time for
16934 --trace=time.
16935 * src/main.c (stage): Remove.
16936 (main): Replace `stage' invocations with timevar calls.
16937 * src/output.c: Insert pertinent timevar calls.
16938
273a74fa
AD
169392002-07-31 Akim Demaille <akim@epita.fr>
16940
16941 Let --trace have arguments.
16942
16943 * src/getargs.h (enum trace_e): New.
16944 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16945 (long_options, short_options): --trace/-T takes an optional
16946 argument.
16947 Change all the uses of trace_flag to reflect the new flags.
16948 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16949
16950 Strengthen `stage' portability.
16951
16952 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16953 * configure.in: Use it.
16954 Don't check for malloc.h and sys/times.h.
16955 * src/system.h: Include them when appropriate.
16956 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16957 times and struct tms are available.
16958
217598da
AD
169592002-07-30 Akim Demaille <akim@epita.fr>
16960
16961 In verbose parse error message, don't report `error' as an
16962 expected token.
16963 * tests/actions.at (Printers and Destructors): Adjust.
16964 * tests/calc.at (Calculator $1): Adjust.
16965 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16966 error message, do not report the parser accepts the error token in
16967 that state.
16968
52489d44
AD
169692002-07-30 Akim Demaille <akim@epita.fr>
16970
16971 Normalize conflict related messages.
16972
16973 * src/complain.h, src/complain.c (warn, complain): New.
16974 * src/conflicts.c (conflicts_print): Use them.
16975 (conflict_report_yacc): New, extracted from...
16976 (conflicts_print): here.
16977 * tests/conflicts.at, tests/existing.at: Adjust.
16978
e8832397
AD
169792002-07-30 Akim Demaille <akim@epita.fr>
16980
16981 Report rules which are never reduced by the parser: those hidden
16982 by conflicts.
16983
16984 * src/LR0.c (save_reductions): Don't make the final state too
16985 different: save its reduction (accept) instead of having a state
16986 without any action (no shift or goto, no reduce).
16987 Note: the final state is now a ``regular'' state, i.e., the
16988 parsers now contain `reduce 0' as default reduction.
16989 Nevertheless, since they decide to `accept' when yystate =
16990 final_state, they still will not reduce rule 0.
16991 * src/print.c (print_actions, print_reduction): Adjust.
16992 * src/output.c (action_row): Track reduced rules.
16993 (token_actions): Report rules never reduced.
16994 * tests/conflicts.at, tests/regression.at: Adjust.
16995
caf23d24
AD
169962002-07-30 Akim Demaille <akim@epita.fr>
16997
16998 `stage' was accidently included in a previous patch.
16999 Initiate its autoconfiscation.
17000
17001 * configure.in: Look for malloc.h and sys/times.h.
17002 * src/main.c (stage): Adjust.
17003 Report only when trace_flag.
17004
640748ee
AD
170052002-07-29 Akim Demaille <akim@epita.fr>
17006
17007 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17008 state_number_t.
17009 (errs_t): symbol_t*, not symbol_number_t.
17010 (reductions_t): rule_t*, not rule_number_t.
17011 (FOR_EACH_SHIFT): New.
17012 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17013 * src/print.c, src/print_graph.c: Adjust.
17014
88bce5a2
AD
170152002-07-29 Akim Demaille <akim@epita.fr>
17016
17017 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17018
17019 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17020 (endtoken, accept): these.
17021 * src/reader.c (reader): Set endtoken's default tag to "$end".
17022 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17023 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17024 Adjust.
17025
1bfb97db
AD
170262002-07-29 Akim Demaille <akim@epita.fr>
17027
17028 * src/reduce.c (reduce_grammar): When the language is empty,
17029 complain about the start symbol, not the axiom.
17030 Use its location.
17031 * tests/reduce.at (Empty Language): New.
17032
fc5734fe
AD
170332002-07-26 Akim Demaille <akim@epita.fr>
17034
17035 * src/reader.h, src/reader.c (gram_error): ... can't get
17036 yycontrol without making too strong assumptions on the parser
17037 itself.
17038 * src/output.c (prepare_tokens): Use the real 0th value of
17039 token_translations instead of `0'.
17040 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17041 visible here.
17042 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17043 for the time being: %locations ought to provide it to yyerror.
17044
3650b4b8
AD
170452002-07-25 Akim Demaille <akim@epita.fr>
17046
17047 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17048 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17049 * tests/regression.at (Web2c Actions): Adjust.
17050
4b3d3a8e
AD
170512002-07-25 Akim Demaille <akim@epita.fr>
17052
17053 Stop storing rules from 1 to nrules + 1.
17054
17055 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17056 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17057 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17058 Iterate from 0 to nrules.
17059 Use rule_number_as_item_number and item_number_as_rule_number.
17060 Adjust to `derive' now containing possibly 0.
17061 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17062 Handle the `- 1' part in rule numbers from/to item numbers.
17063 * src/conflicts.c (log_resolution): Fix the message which reversed
17064 shift and reduce.
17065 * src/output.c (action_row): Initialize default_rule to -1.
17066 (token_actions): Adjust.
17067 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17068 expected output.
17069 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17070
4a2a22f4
AD
170712002-07-25 Akim Demaille <akim@epita.fr>
17072
17073 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17074 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17075 (b4_c_knr_arg_decl): New.
17076 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17077 yyreport_parse_error.
17078
b8df3223
AD
170792002-07-25 Akim Demaille <akim@epita.fr>
17080
17081 * data/yacc.c (yyreport_parse_error): New, extracted from...
17082 (yyparse): here.
17083 (yydestruct, yysymprint): Move above yyparse.
17084 Be K&R compliant.
17085
a762e609
AD
170862002-07-25 Akim Demaille <akim@epita.fr>
17087
17088 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17089 replace...
17090 (b4_sint_type, b4_uint_type): these.
17091 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17092 * tests/regression.at (Web2c Actions): Adjust.
17093
12b0043a
AD
170942002-07-25 Akim Demaille <akim@epita.fr>
17095
17096 * src/gram.h (TIEM_NUMBER_MAX): New.
17097 (item_number_of_rule_number, rule_number_of_item_number): Rename
17098 as...
17099 (rule_number_as_item_number, item_number_as_rule_number): these.
17100 Adjust dependencies.
17101 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17102 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17103 (symbol_number_to_vector_number): New.
17104 (order): Of vector_number_t* type.
17105 (base_t, BASE_MAX, BASE_MIN): New.
17106 (froms, tos, width, pos, check): Of base_t type.
17107 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17108 (actrow): Of action_number_t type.
17109 (conflrow): Of unsigned int type.
17110 (table_ninf, base_ninf): New.
17111 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17112 (muscle_insert_int_table, muscle_insert_base_table)
17113 (muscle_insert_rule_number_table): New.
17114 (prepare_tokens): Output `toknum' as int_table.
17115 (action_row): Returns a rule_number_t.
17116 Use ACTION_MIN, not SHRT_MIN.
17117 (token_actions): yydefact is rule_number_t*.
17118 (table_ninf_remap): New.
17119 (pack_table): Use it for `base' and `table'.
17120 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17121 replaced with...
17122 (YYPACT_NINF, YYTABLE_NINF): these.
17123 (yypact, yytable): Compute their types instead of hard-coded
17124 `short'.
17125 * tests/regression.at (Web2c Actions): Adjust.
17126
5dde258a
AD
171272002-07-19 Akim Demaille <akim@epita.fr>
17128
17129 * src/scan-gram.l (id): Can start with an underscore.
17130
a945ec39
AD
171312002-07-16 Akim Demaille <akim@epita.fr>
17132
17133 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17134 Adjust all former `associativity' dependencies.
17135 * src/symtab.c (symbol_new): Default associativity is `undef', not
17136 `right'.
17137 (symbol_check_alias_consistence): Adjust.
17138
fae437e8
AD
171392002-07-09 Akim Demaille <akim@epita.fr>
17140
17141 * doc/bison.texinfo: Properly set the ``header'' part.
17142 Use @dircategory ``GNU programming tools'' as per Texinfo's
17143 documentation.
17144 Use @copying.
17145
1a715ef2
AD
171462002-07-09 Akim Demaille <akim@epita.fr>
17147
17148 * lib/quotearg.h: Protect against multiple inclusions.
17149 * src/location.h (location_t): Add a `file' member.
17150 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17151 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17152 `error_one_per_line' support.
17153
a5d50994
AD
171542002-07-09 Akim Demaille <akim@epita.fr>
17155
17156 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17157 * src/reader.c (lineno): Remove.
17158 Adjust all dependencies.
17159 (get_merge_function): Take a location and use complain_at.
17160 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17161 * tests/regression.at (Invalid inputs, Mixing %token styles):
17162 Adjust.
17163
b275314e
AD
171642002-07-09 Akim Demaille <akim@epita.fr>
17165
17166 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17167 recovery rule, and forbid extensions when --yacc.
17168 (gram_error): Use complain_at.
17169 * src/reader.c (reader): Exit if there were parse errors.
17170
865b9df1
AD
171712002-07-09 Akim Demaille <akim@epita.fr>
17172
17173 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17174 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17175 Reported by R Blake <blakers@mac.com>.
17176
c76e14da
AD
171772002-07-09 Akim Demaille <akim@epita.fr>
17178
17179 * data/yacc.c: Output the copyright notive in the header.
17180
7db2ed2d
AD
171812002-07-03 Akim Demaille <akim@epita.fr>
17182
17183 * src/output.c (froms, tos): Are state_number_t.
17184 (save_column): sp, sp1, and sp2 are state_number_t.
17185 (prepare): Rename `final' as `final_state_number', `nnts' as
17186 `nterms_number', `nrules' as `rules_number', `nstates' as
17187 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17188 unused.
17189 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17190 * data/lalr1.cc (nsym_): Remove, unused.
17191
e68e0410
AD
171922002-07-03 Akim Demaille <akim@epita.fr>
17193
17194 * src/lalr.h, src/lalr.c (goto_number_t): New.
17195 * src/lalr.c (goto_list_t): New.
17196 Propagate them.
17197 * src/nullable.c (rule_list_t): New.
17198 Propagate.
17199 * src/types.h: Remove.
17200
e1a4f3a4
AD
172012002-07-03 Akim Demaille <akim@epita.fr>
17202
17203 * src/closure.c (print_fderives): Use rule_rhs_print.
17204 * src/derives.c (print_derives): Use rule_rhs_print.
17205 (rule_list_t): New, replaces `shorts'.
17206 (set_derives): Add comments.
17207 * tests/sets.at (Nullable, Firsts): Adjust.
17208
536545f3
AD
172092002-07-03 Akim Demaille <akim@epita.fr>
17210
17211 * src/output.c (prepare_actions): Free `tally' and `width'.
17212 (prepare_actions): Allocate and free `order'.
17213 * src/symtab.c (symbols_free): Free `symbols'.
17214 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17215 * src/output.c (m4_invoke): Move to...
17216 * src/scan-skel.l: here.
17217 (<<EOF>>): Close yyout, and free its name.
17218
8b752b00
AD
172192002-07-03 Akim Demaille <akim@epita.fr>
17220
17221 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17222
17223 * src/LR0.c (new_state): Merge into...
17224 (state_list_append): this.
17225 (new_states): Merge into...
17226 (generate_states): here.
17227 (set_states): Don't ensure a proper `errs' state member here, do it...
17228 * src/conflicts.c (conflicts_solve): here.
17229 * src/state.h, src/state.c: Comment changes.
17230 (state_t): Rename member `shifts' as `transitions'.
17231 Adjust all dependencies.
17232 (errs_new): For consistency, also take the values as argument.
17233 (errs_dup): Remove.
17234 (state_errs_set): New.
17235 (state_reductions_set, state_transitions_set): Assert that no
17236 previous value was assigned.
17237 (state_free): New.
17238 (states_free): Use it.
17239 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17240 temporary storage: use `errs' and `nerrs' as elsewhere.
17241 (set_conflicts): Allocate and free this `errs'.
17242
613f5e1a
AD
172432002-07-02 Akim Demaille <akim@epita.fr>
17244
17245 * lib/libiberty.h: New.
17246 * lib: Update the bitset implementation from upstream.
17247 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17248 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17249 * src/main.c: Adjust bitset stats calls.
17250
26e0cadc
PE
172512002-07-01 Paul Eggert <eggert@twinsun.com>
17252
17253 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17254 char, so that negative chars don't collide with $.
17255
1154cced
AD
172562002-06-30 Akim Demaille <akim@epita.fr>
17257
17258 Have the GLR tests be `warning' checked, and fix the warnings.
17259
17260 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17261 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17262 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17263 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17264 (yyaddDeferredAction): static.
17265 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17266 (yyreportParseError): yyprefix is const.
17267 yytokenp is used only when verbose.
17268 (yy__GNUC__): Replace with __GNUC__.
17269 (yypdumpstack): yyi is size_t.
17270 (yypreference): Un-yy local variables and arguments, to avoid
17271 clashes with `yyr1'. Anyway, we are not in the user name space.
17272 (yytname_size): be an int, as is compared with ints.
17273 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17274 Use them.
17275 * tests/cxx-gram.at: Use quotation to protect $1.
17276 Use AT_COMPILE to enable warnings hunts.
17277 Prototype yylex and yyerror.
17278 `Use' argc.
17279 Include `string.h', not `strings.h'.
17280 Produce and prototype stmtMerge only when used.
17281 yylex takes a location.
17282
97650f4e
AD
172832002-06-30 Akim Demaille <akim@epita.fr>
17284
17285 We spend a lot of time in quotearg, in particular when --verbose.
17286
17287 * src/symtab.c (symbol_get): Store a quoted version of the key.
17288 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17289 Adjust all callers.
17290
d2576365
AD
172912002-06-30 Akim Demaille <akim@epita.fr>
17292
17293 * src/state.h (reductions_t): Rename member `nreds' as num.
17294 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17295 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17296
ccaf65bc
AD
172972002-06-30 Akim Demaille <akim@epita.fr>
17298
17299 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17300 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17301 (shifts_to): Rename as...
17302 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17303 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17304 (TRANSITION_IS_DISABLED, transitions_to): these.
17305
87675353
AD
173062002-06-30 Akim Demaille <akim@epita.fr>
17307
17308 * src/print.c (print_shifts, print_gotos): Merge into...
17309 (print_transitions): this.
17310 (print_transitions, print_errs, print_reductions): Align the
17311 lookaheads columns.
17312 (print_core, print_transitions, print_errs, print_state,
17313 print_grammar): Output empty lines separator before, not after.
17314 (state_default_rule_compute): Rename as...
17315 (state_default_rule): this.
17316 * tests/conflicts.at (Defaulted Conflicted Reduction),
17317 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17318 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17319
ce4ccb4b
AD
173202002-06-30 Akim Demaille <akim@epita.fr>
17321
17322 Display items as we display rules.
17323
17324 * src/gram.h, src/gram.c (rule_lhs_print): New.
17325 * src/gram.c (grammar_rules_partial_print): Use it.
17326 * src/print.c (print_core): Likewise.
17327 * tests/conflicts.at (Defaulted Conflicted Reduction),
17328 (Unresolved SR Conflicts): Adjust.
17329 (Unresolved SR Conflicts): Adjust and rename as...
17330 (Resolved SR Conflicts): this, as was meant.
17331 * tests/regression.at (Web2c Report): Adjust.
17332
bc933ef1
AD
173332002-06-30 Akim Demaille <akim@epita.fr>
17334
17335 * src/print.c (state_default_rule_compute): New, extracted from...
17336 (print_reductions): here.
17337 Pessimize, but clarify the code.
17338 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17339
53d4308d
AD
173402002-06-30 Akim Demaille <akim@epita.fr>
17341
17342 * src/output.c (action_row): Let default_rule be always a rule
17343 number.
17344
574fb2d5
AD
173452002-06-30 Akim Demaille <akim@epita.fr>
17346
17347 * src/closure.c (print_firsts, print_fderives, closure):
17348 Use BITSET_EXECUTE.
17349 * src/lalr.c (lookaheads_print): Likewise.
17350 * src/state.c (state_rule_lookaheads_print): Likewise.
17351 * src/print_graph.c (print_core): Likewise.
17352 * src/print.c (print_reductions): Likewise.
17353 * src/output.c (action_row): Likewise.
17354 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17355
05811fd7
AD
173562002-06-30 Akim Demaille <akim@epita.fr>
17357
17358 * src/print_graph.c: Use report_flag.
17359
0e4d5753
AD
173602002-06-30 Akim Demaille <akim@epita.fr>
17361
17362 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17363 to...
17364 * src/relation.h, src/relation.c (traverse, relation_digraph)
17365 (relation_print, relation_transpose): New.
17366
24c7d800
AD
173672002-06-30 Akim Demaille <akim@epita.fr>
17368
17369 * src/state.h, src/state.c (shifts_to): New.
17370 * src/lalr.c (build_relations): Use it.
17371
9222837b
AD
173722002-06-30 Akim Demaille <akim@epita.fr>
17373
17374 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17375 (item_number_of_rule_number, rule_number_of_item_number): New.
17376 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17377 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17378 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17379 Propagate their use.
17380 Much remains to be done, in particular wrt `shorts' from types.h.
17381
260008e5
AD
173822002-06-30 Akim Demaille <akim@epita.fr>
17383
17384 * src/symtab.c (symbol_new): Initialize the `printer' member.
17385
8a731ca8
AD
173862002-06-30 Akim Demaille <akim@epita.fr>
17387
17388 * src/LR0.c (save_reductions): Remove, replaced by...
17389 * src/state.h, src/state.c (state_reductions_set): New.
17390 (reductions, errs): Rename as...
17391 (reductions_t, errs_t): these.
17392 Adjust all dependencies.
17393
32e1e0a4
AD
173942002-06-30 Akim Demaille <akim@epita.fr>
17395
17396 * src/LR0.c (state_list_t, state_list_append): New.
17397 (first_state, last_state): Now symbol_list_t.
17398 (this_state): Remove.
17399 (new_itemsets, append_states, save_reductions): Take a state_t as
17400 argument.
17401 (set_states, generate_states): Adjust.
17402 (save_shifts): Remove, replaced by...
17403 * src/state.h, src/state.c (state_shifts_set): New.
17404 (shifts): Rename as...
17405 (shifts_t): this.
17406 Adjust all dependencies.
17407 * src/state.h (state_t): Remove the `next' member.
17408
e5fb6710
AD
174092002-06-30 Akim Demaille <akim@epita.fr>
17410
17411 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17412 escaped in slot 0.
17413
c7ca99d4
AD
174142002-06-30 Akim Demaille <akim@epita.fr>
17415
17416 Use hash.h for the state hash table.
17417
17418 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17419 (allocate_storage): Use state_hash_new.
17420 (free_storage): Use state_hash_free.
17421 (new_state, get_state): Adjust.
17422 * src/lalr.h, src/lalr.c (states): Move to...
17423 * src/states.h (state_t): Remove the `link' member, no longer
17424 used.
17425 * src/states.h, src/states.c: here.
17426 (state_hash_new, state_hash_free, state_hash_lookup)
17427 (state_hash_insert, states_free): New.
17428 * src/states.c (state_table, state_compare, state_hash): New.
17429 * src/output.c (output_actions): Do not free states now, since we
17430 still need to know the final_state number in `prepare', called
17431 afterwards. Do it...
17432 * src/main.c (main): here: call states_free after `output'.
17433
df0e7316
AD
174342002-06-30 Akim Demaille <akim@epita.fr>
17435
17436 * src/state.h, src/state.c (state_new): New, extracted from...
17437 * src/LR0.c (new_state): here.
17438 * src/state.h (STATE_ALLOC): Move to...
17439 * src/state.c: here.
17440 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17441 * src/state.h, src/state.c: here.
17442
39f41916
AD
174432002-06-30 Akim Demaille <akim@epita.fr>
17444
17445 * src/reader.c (gensym): Rename as...
17446 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17447 (getsym): Rename as...
17448 (symbol_get): this.
17449
d57650a5
AD
174502002-06-30 Akim Demaille <akim@epita.fr>
17451
17452 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17453 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17454 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17455 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17456
5a08f1ce
AD
174572002-06-30 Akim Demaille <akim@epita.fr>
17458
17459 Make the test suite pass with warnings checked.
17460
17461 * tests/actions.at (Printers and Destructors): Improve.
17462 Avoid unsigned vs. signed issues.
17463 * tests/calc.at: Don't exercise the scanner here, do it...
17464 * tests/input.at (Torturing the Scanner): here.
17465
720623af
PH
174662002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17467
88e7e941 17468 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
17469 reorganize first lines parallel to yacc.c.
17470
fb8135fa
AD
174712002-06-28 Akim Demaille <akim@epita.fr>
17472
17473 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17474 (b4_token_enum, b4_token_defines): New, factored from...
17475 * data/lalr1.cc, data/yacc.c, glr.c: here.
17476
41442480
AD
174772002-06-28 Akim Demaille <akim@epita.fr>
17478
17479 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17480 unused variables.
17481 * src/output.c (merger_output): static.
17482
e0e5bf84
AD
174832002-06-28 Akim Demaille <akim@epita.fr>
17484
ba0fe3c7 17485 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
17486 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17487 pacify GCC.
17488 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 17489
676385e2
PH
174902002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17491
17492 Accumulated changelog for new GLR parsing features.
17493
6a254321 17494 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
17495 conflicts_total_count.
17496 * src/conflicts.h: Ditto.
17497 * src/output.c (token_actions): Use the new name.
17498 (output_conflicts): Change conflp => conflict_list_heads, and
17499 confl => conflict_list for better readability.
17500 * data/glr.c: Use the new names.
17501 * NEWS: Add self to GLR announcement.
e0e5bf84 17502
676385e2
PH
17503 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17504
17505 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17506 Akim Demaille.
17507
17508 * data/bison.glr: Change name to glr.c
17509 * data/glr.c: Renamed from bison.glr.
17510 * data/Makefile.am: Add glr.c
e0e5bf84
AD
17511
17512 * src/getargs.c:
17513
676385e2 17514 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 17515 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 17516
676385e2
PH
17517 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17518
17519 * data/bison.glr: Be sure to restore the
17520 current #line when returning to the skeleton contents after having
17521 exposed the input file's #line.
17522
17523 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17524
17525 * data/bison.glr: Bring up to date with changes to bison.simple.
17526
17527 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17528
17529 * data/bison.glr: Correct definitions that use b4_prefix.
17530 Various reformatting.
17531 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17532 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17533 yytokenp argument; now part of stack.
17534 (yychar): Define to behave as documented.
17535 (yyclearin): Ditto.
e0e5bf84 17536
676385e2
PH
17537 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17538
17539 * src/reader.h: Add declaration for free_merger_functions.
17540
17541 * src/reader.c (merge_functions): New variable.
17542 (get_merge_function): New function.
17543 (free_merger_functions): New function.
17544 (readgram): Check for %prec that is not followed by a symbol.
17545 Handle %dprec and %merge declarations.
17546 (packgram): Initialize dprec and merger fields in rules array.
17547
17548 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17549 conflict_list_cnt, conflict_list_free): New variables.
17550 (table_grow): Also grow conflict_table.
e0e5bf84 17551 (prepare_rules): Output dprec and merger tables.
676385e2 17552 (conflict_row): New function.
e0e5bf84 17553 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
17554 default reduction in conflicted states for GLR parser so that there
17555 are spaces for the conflict lists.
17556 (save_row): Also save conflict information.
17557 (token_actions): Allocate conflict list.
17558 (merger_output): New function.
17559 (pack_vector): Pack conflict table, too.
17560 (output_conflicts): New function to output yyconflp and yyconfl.
17561 (output_check): Allocate conflict_tos.
17562 (output_actions): Output conflict tables, also.
17563 (output_skeleton): Output b4_mergers definition.
17564 (prepare): Output b4_max_rhs_length definition.
17565 Use 'bison.glr' as default skeleton for GLR parsers.
17566
17567 * src/gram.c (glr_parser): New flag.
17568 (grammar_free): Call free_merger_functions.
17569
17570 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17571 all pairs of conflicting reductions, rather than just all tokens
17572 causing conflicts. Needed to size conflict tables.
e0e5bf84 17573 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
17574 interface.
17575 (conflicts_print): Ditto.
17576 (count_total_conflicts): New function.
17577
17578 * src/reader.h (merger_list): New type.
17579 (merge_functions): New variable.
17580
17581 * src/lex.h (tok_dprec, tok_merge): New token types.
17582
17583 * src/gram.h (rule_s): Add dprec and merger fields.
17584 (glr_parser): New flag.
17585
17586 * src/conflicts.h (count_total_conflicts): New function.
17587
17588 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17589
17590 * doc/bison.texinfo (Generalized LR Parsing): New section.
17591 (GLR Parsers): New section.
17592 (Language and Grammar): Mention GLR parsing.
17593 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17594 Correct typo ("tge" -> "the").
17595
17596 * data/bison.glr: New skeleton for GLR parsing.
17597
17598 * tests/cxx-gram.at: New tests for GLR parsing.
17599
17600 * tests/testsuite.at: Include cxx-gram.at.
17601
17602 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 17603
676385e2
PH
17604 * src/parse-gram.y:
17605
17606 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
17607
17608 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 17609
b5480d74 176102002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
17611
17612 * src/options.h, src/options.c: Remove.
17613 * src/getargs.c (short_options, long_options): New.
17614
60491a94
AD
176152002-06-27 Akim Demaille <akim@epita.fr>
17616
17617 * data/bison.simple, data/bison.c++: Rename as...
17618 * data/yacc.c, data/lalr1.cc: these.
17619 * doc/bison.texinfo (Environment Variables): Remove.
17620
9be0c25b
AD
176212002-06-25 Raja R Harinath <harinath@cs.umn.edu>
17622
17623 * src/getargs.c (report_argmatch): Initialize strtok().
17624
1ae72863
AD
176252002-06-20 Akim Demaille <akim@epita.fr>
17626
17627 * data/bison.simple (b4_symbol_actions): New, replaces...
17628 (b4_symbol_destructor, b4_symbol_printer): these.
17629 (yysymprint): Be sure to call YYPRINT only for tokens, and using
17630 user token numbers.
17631
87542d29
AD
176322002-06-20 Akim Demaille <akim@epita.fr>
17633
17634 * data/bison.simple (yydestructor): Rename as...
17635 (yydestruct): this.
17636
1a31ed21
AD
176372002-06-20 Akim Demaille <akim@epita.fr>
17638
17639 * src/symtab.h, src/symtab.c (symbol_type_set)
17640 (symbol_destructor_set, symbol_precedence_set): The location is
17641 the last argument.
17642 Adjust all callers.
17643
e776192e
AD
176442002-06-20 Akim Demaille <akim@epita.fr>
17645
17646 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
17647 internals.
17648 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
17649 Takes a location.
17650 * src/symtab.h, src/symtab.c (symbol_class_set)
17651 (symbol_user_token_number_set): Likewise.
17652 Adjust all callers.
17653 Promote complain_at.
17654 * tests/input.at (Type Clashes): Adjust.
17655
5c1180b3
AD
176562002-06-20 Akim Demaille <akim@epita.fr>
17657
17658 * data/bison.simple (YYLEX): Fix the declaration when
17659 %pure-parser.
17660
e3170060
AD
176612002-06-20 Akim Demaille <akim@epita.fr>
17662
17663 * data/bison.simple (yysymprint): Don't print the token number,
17664 just its name.
17665 * tests/actions.at (Destructors): Rename as...
17666 (Printers and Destructors): this.
17667 Also exercise %printer.
17668
253862fd
AD
176692002-06-20 Akim Demaille <akim@epita.fr>
17670
17671 * data/bison.simple (YYDSYMPRINT): New.
17672 Use it to remove many of the #if YYDEBUG/if (yydebug).
17673
366eea36
AD
176742002-06-20 Akim Demaille <akim@epita.fr>
17675
17676 * src/symtab.h, src/symtab.c (symbol_t): printer and
17677 printer_location are new members.
17678 (symbol_printer_set): New.
17679 * src/parse-gram.y (PERCENT_PRINTER): New token.
17680 Handle its associated rule.
17681 * src/scan-gram.l: Adjust.
17682 (handle_destructor_at, handle_destructor_dollar): Rename as...
17683 (handle_symbol_code_at, handle_symbol_code_dollar): these.
17684 * src/output.c (symbol_printers_output): New.
17685 (output_skeleton): Call it.
17686 * data/bison.simple (yysymprint): New. Cannot be named yyprint
17687 since there are already many grammar files with a user `yyprint'.
17688 Replace the calls to YYPRINT to calls to yysymprint.
17689 * tests/calc.at: Adjust.
17690 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
17691 taking advantage of parser very internal details (stack size!).
17692
4f25ebb0
AD
176932002-06-20 Akim Demaille <akim@epita.fr>
17694
17695 * src/scan-gram.l: Complete the scanner with the missing patterns
17696 to pacify Flex.
17697 Use `quote' and `symbol_tag_get' where appropriate.
17698
93b68a0e
AD
176992002-06-19 Akim Demaille <akim@epita.fr>
17700
17701 * tests/actions.at (Destructors): Augment to test locations.
17702 * data/bison.simple (yydestructor): Pass it the current location
17703 if locations are enabled.
17704 Prototype only when __STDC__ or C++.
17705 Change the argument names to move into the yy name space: there is
17706 user code here.
17707
58612f1d
AD
177082002-06-19 Akim Demaille <akim@epita.fr>
17709
74310291
AD
17710 * data/bison.simple (b4_pure_if): New.
17711 Use it instead of #ifdef YYPURE.
17712
177132002-06-19 Akim Demaille <akim@epita.fr>
17714
17715 * data/bison.simple (b4_location_if): New.
58612f1d
AD
17716 Use it instead of #ifdef YYLSP_NEEDED.
17717
f25bfb75
AD
177182002-06-19 Akim Demaille <akim@epita.fr>
17719
17720 Prepare @$ in %destructor, but currently don't bind it in the
17721 skeleton, as %location use is not cleaned up yet.
17722
17723 * src/scan-gram.l (handle_dollar, handle_destructor_at)
17724 (handle_action_at): New.
17725 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
17726 a braced_code_t and a location as additional arguments.
17727 (handle_destructor_dollar): Instead of requiring `b4_eval', just
17728 unquote one when outputting `b4_dollar_dollar'.
17729 Adjust callers.
17730 * data/bison.simple (b4_eval): Remove.
17731 (b4_symbol_destructor): Adjust.
17732 * tests/input.at (Invalid @n): Adjust.
17733
c732d2c6
AD
177342002-06-19 Zack Weinberg <zack@codesourcery.com>
17735
17736 * doc/bison.texinfo: Document ability to have multiple
17737 prologue sections.
17738
8c165d89
AD
177392002-06-18 Akim Demaille <akim@epita.fr>
17740
17741 * src/files.c (compute_base_names): When computing the output file
17742 names from the input file name, strip the directory part.
17743
ca98bf57
AD
177442002-06-18 Akim Demaille <akim@epita.fr>
17745
17746 * data/bison.simple.new: Comment changes.
17747 Reported by Andreas Schwab.
17748
0bfb02ff
AD
177492002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
17750
17751 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
17752 there are no `label `yyoverflowlab' defined but not used' warnings
17753 when yyoverflow is defined.
17754
24c0aad7
AD
177552002-06-18 Akim Demaille <akim@epita.fr>
17756
17757 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17758 new member.
17759 (symbol_destructor_set): Adjust.
17760 * src/output.c (symbol_destructors_output): Output the destructor
17761 locations.
17762 Output the symbol name.
17763 * data/bison.simple (b4_symbol_destructor): Adjust.
17764
5719c109
AD
177652002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17766 and Akim Demaille <akim@epita.fr>
17767
17768 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17769 what's left on the stack when the error recovery hits EOF.
17770 * tests/actions.at (Destructors): Complete to exercise this case.
17771
9280d3ef
AD
177722002-06-17 Akim Demaille <akim@epita.fr>
17773
17774 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17775 arguments is really empty, not only equal to `[]'.
17776 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17777 member.
17778 (symbol_destructor_set): New.
17779 * src/output.c (symbol_destructors_output): New.
17780 * src/reader.h (brace_code_t, current_braced_code): New.
17781 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17782 (handle_dollar): Rename as...
17783 (handle_action_dollar): this.
17784 (handle_destructor_dollar): New.
17785 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17786 (grammar_declaration): Use it.
17787 * data/bison.simple (yystos): Is always defined.
17788 (yydestructor): New.
17789 * tests/actions.at (Destructors): New.
17790 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17791
dafdc66f
AD
177922002-06-17 Akim Demaille <akim@epita.fr>
17793
17794 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17795 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17796 rule_length only when needed.
17797 * src/output.c (actions_output, token_definitions_output): Output
17798 the full M4 block.
17799 * src/symtab.c: Don't access directly to the symbol tag, use
17800 symbol_tag_get.
17801 * src/parse-gram.y: Use symbol_list_free.
17802
56c47203
AD
178032002-06-17 Akim Demaille <akim@epita.fr>
17804
17805 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17806 (symbol_list_prepend, get_type_name): Move to...
17807 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17808 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17809 Adjust all callers.
17810 (symbol_list_free): New.
17811 * src/scan-gram.l (handle_dollar): Takes a location.
17812 * tests/input.at (Invalid $n): Adjust.
17813
1e0bab92
AD
178142002-06-17 Akim Demaille <akim@epita.fr>
17815
17816 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17817 (symbol_list_prepend): New.
17818 * src/parse-gram.y (%union): `list' is a new member.
17819 (symbols.1): New, replaces...
17820 (terms_to_prec.1, nterms_to_type.1): these.
17821 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17822 Take a location as additional argument.
17823 Adjust all callers.
17824
04e60654
AD
178252002-06-15 Akim Demaille <akim@epita.fr>
17826
17827 * src/parse-gram.y: Move %token in the declaration section so that
17828 we don't depend upon CVS Bison.
17829
10e5b8bd
AD
178302002-06-15 Akim Demaille <akim@epita.fr>
17831
17832 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17833 * src/print.c (print_core): Use it.
17834
9801d40c
AD
178352002-06-15 Akim Demaille <akim@epita.fr>
17836
17837 * src/conflicts.c (log_resolution): Accept the rule involved in
17838 the sr conflicts instead of the lookahead number that points to
17839 that rule.
17840 (flush_reduce): Accept the current lookahead vector as argument,
17841 instead of the index in LA.
17842 (resolve_sr_conflict): Accept the current number of lookahead
17843 bitset to consider for the STATE, instead of the index in LA.
17844 (set_conflicts): Adjust.
17845 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17846
c0263492
AD
178472002-06-15 Akim Demaille <akim@epita.fr>
17848
17849 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17850 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17851 Adjust all dependencies.
17852 * src/lalr.c (initialize_lookaheads): Split into...
17853 (states_lookaheads_count, states_lookaheads_initialize): these.
17854 (lalr): Adjust.
17855
9757c359
AD
178562002-06-15 Akim Demaille <akim@epita.fr>
17857
17858 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17859 out of...
17860 (grammar_rules_print): here.
17861 * src/reduce.c (reduce_output): Use it.
17862 * tests/reduce.at (Useless Rules, Reduced Automaton)
17863 (Underivable Rules): Adjust.
17864
6b98e4b5
AD
178652002-06-15 Akim Demaille <akim@epita.fr>
17866
17867 Copy BYacc's nice way to report the grammar.
17868
17869 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17870 New.
17871 Don't print the rules' location, it is confusing and useless.
17872 (rule_print): Use grammar_rhs_print.
17873 * src/print.c (print_grammar): Use grammar_rules_print.
17874
6b98e4b5
AD
178752002-06-15 Akim Demaille <akim@epita.fr>
17876
17877 Complete and rationalize `useless thing' warnings.
17878
17879 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17880 (symbol_tag_print): New.
17881 Use them everywhere in place of accessing directly the tag member.
17882 * src/gram.h, src/gram.c (rule_print): New.
17883 Use it where a rule used to be printed `by hand'.
17884 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17885 (reduce_grammar_tables): Report the useless rules.
17886 (reduce_print): Useless things are a warning, not an error.
17887 Report it as such.
17888 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17889 (Reduced Automaton, Underivable Rules): Adjust.
17890 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17891 * tests/conflicts.at (Unresolved SR Conflicts)
17892 (Solved SR Conflicts): Adjust.
17893
ee000ba4
AD
178942002-06-15 Akim Demaille <akim@epita.fr>
17895
17896 Let symbols have a location.
17897
17898 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17899 (getsym): Adjust.
17900 Adjust all callers.
17901 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17902 Use location_t, not int.
17903 * src/symtab.c (symbol_check_defined): Take advantage of the
17904 location.
17905 * tests/regression.at (Invalid inputs): Adjust.
17906
8efe435c
AD
179072002-06-15 Akim Demaille <akim@epita.fr>
17908
17909 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17910 (input): Don't try to initialize yylloc here, do it in the
17911 scanner.
17912 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17913 * src/gram.h (rule_t): Change line and action_line into location
17914 and action_location, of location_t type.
17915 Adjust all dependencies.
17916 * src/location.h, src/location.c (empty_location): New.
17917 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17918 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17919 (grammar_current_rule_symbol_append)
17920 (grammar_current_rule_action_append): Expect a location as argument.
17921 * src/reader.c (grammar_midrule_action): Adjust to attach an
17922 action's location as dummy symbol location.
17923 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17924 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17925 the line numbers.
17926
1921f1d7
AD
179272002-06-14 Akim Demaille <akim@epita.fr>
17928
17929 Grammar declarations may be found in the grammar section.
17930
17931 * src/parse-gram.y (rules_or_grammar_declaration): New.
17932 (declarations): Each declaration may end with a semicolon, not
17933 just...
17934 (grammar_declaration): `"%union"'.
17935 (grammar): Branch to rules_or_grammar_declaration.
17936
4515534c
AD
179372002-06-14 Akim Demaille <akim@epita.fr>
17938
17939 * src/main.c (main): Invoke scanner_free.
17940
f958596b
AD
179412002-06-14 Akim Demaille <akim@epita.fr>
17942
17943 * src/output.c (m4_invoke): Extracted from...
17944 (output_skeleton): here.
17945 Free tempfile.
17946
2c569025
AD
179472002-06-14 Akim Demaille <akim@epita.fr>
17948
17949 * src/parse-gram.y (directives, directive, gram)
17950 (grammar_directives, precedence_directives, precedence_directive):
17951 Rename as...
17952 (declarations, declaration, grammar, grammar_declaration)
17953 (precedence_declaration, precedence_declarator): these.
17954 (symbol_declaration): New.
17955
592e8d4d
AD
179562002-06-14 Akim Demaille <akim@epita.fr>
17957
17958 * src/files.c (action_obstack): Remove, unused.
17959 (output_obstack): Remove it, and all its dependencies, as it is no
17960 longer needed.
17961 * src/reader.c (epilogue_set): Build the epilogue in the
17962 muscle_obstack.
17963 * src/output.h, src/output.c (muscle_obstack): Move to...
17964 * src/muscle_tab.h, src/muscle_tab.h: here.
17965 (muscle_init): Initialize muscle_obstack.
17966 (muscle_free): New.
17967 * src/main.c (main): Call it.
17968
0c15323d
AD
179692002-06-14 Akim Demaille <akim@epita.fr>
17970
17971 * src/location.h: New, extracted from...
17972 * src/reader.h: here.
17973 * src/Makefile.am (noinst_HEADERS): Merge into
17974 (bison_SOURCES): this.
17975 Add location.h.
17976 * src/parse-gram.y: Use location_t instead of Bison's.
17977 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17978 Use location_t instead of ints.
17979
e96c9728
AD
179802002-06-14 Akim Demaille <akim@epita.fr>
17981
17982 * data/bison.simple, data/bison.c++: Be sure to restore the
17983 current #line when returning to the skeleton contents after having
17984 exposed the input file's #line.
17985
75d1fe16
AD
179862002-06-12 Akim Demaille <akim@epita.fr>
17987
17988 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17989 eager.
17990 * tests/actions.at (Exotic Dollars): New.
17991
6c35d22c
AD
179922002-06-12 Akim Demaille <akim@epita.fr>
17993
17994 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17995 ['"/] too eagerly.
17996 * tests/input.at (Torturing the Scanner): New.
17997
1d6412ad
AD
179982002-06-11 Akim Demaille <akim@epita.fr>
17999
18000 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18001 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18002 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18003 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18004 * src/reader.c (reader): Use it.
18005
4cdb01db
AD
180062002-06-11 Akim Demaille <akim@epita.fr>
18007
18008 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18009 Adjust all callers.
18010 (scanner_last_string_free): New.
18011
44995b2e
AD
180122002-06-11 Akim Demaille <akim@epita.fr>
18013
18014 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18015 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18016 (last_string, YY_OBS_FREE): New.
18017 Use them when returning an ID.
18018
e9955c83
AD
180192002-06-11 Akim Demaille <akim@epita.fr>
18020
18021 Have Bison grammars parsed by a Bison grammar.
18022
18023 * src/reader.c, src/reader.h (prologue_augment): New.
18024 * src/reader.c (copy_definition): Remove.
18025
18026 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18027 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18028 (grammar_current_rule_prec_set, grammar_current_rule_check)
18029 (grammar_current_rule_symbol_append)
18030 (grammar_current_rule_action_append): Export.
18031 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18032 (symbol_list_action_append): Remove.
18033 Hook the routines from reader.
18034 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18035 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18036
18037 * src/reader.c (read_declarations): Remove, unused.
18038
18039 * src/parse-gram.y: Handle the epilogue.
18040 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18041 (grammar_start_symbol_set): this.
18042 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18043 * src/reader.c (readgram): Remove, unused.
18044 (reader): Adjust to insert eoftoken and axiom where appropriate.
18045
18046 * src/reader.c (copy_dollar): Replace with...
18047 * src/scan-gram.h (handle_dollar): this.
18048 * src/parse-gram.y: Remove `%thong'.
18049
18050 * src/reader.c (copy_at): Replace with...
18051 * src/scan-gram.h (handle_at): this.
18052
18053 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18054 New.
18055
18056 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18057 time being.
18058
18059 * src/reader.h, src/reader.c (grammar_rule_end): New.
18060
18061 * src/parse.y (current_type, current_class): New.
18062 Implement `%nterm', `%token' support.
18063 Merge `%term' into `%token'.
18064 (string_as_id): New.
18065 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18066 type name.
18067
18068 * src/parse-gram.y: Be sure to handle properly the beginning of
18069 rules.
18070
18071 * src/parse-gram.y: Handle %type.
18072 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18073
18074 * src/parse-gram.y: More directives support.
18075 * src/options.c: No longer handle source directives.
18076
18077 * src/parse-gram.y: Fix %output.
18078
18079 * src/parse-gram.y: Handle %union.
18080 Use the prologue locations.
18081 * src/reader.c (parse_union_decl): Remove.
18082
18083 * src/reader.h, src/reader.c (epilogue_set): New.
18084 * src/parse-gram.y: Use it.
18085
18086 * data/bison.simple, data/bison.c++: b4_stype is now either not
18087 defined, then default to int, or to the contents of %union,
18088 without `union' itself.
18089 Adjust.
18090 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18091
18092 * src/output.c (actions_output): Don't output braces, as they are
18093 already handled by the scanner.
18094
18095 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18096 characters to themselves.
18097
18098 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18099 that the epilogue has a proper #line.
18100
18101 * src/parse-gram.y: Handle precedence/associativity.
18102
18103 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18104 a terminal.
18105 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18106 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18107 at all to define terminals that cannot be emitted.
18108
18109 * src/scan-gram.l: Escape M4 characters.
18110
18111 * src/scan-gram.l: Working properly with escapes in user
18112 strings/characters.
18113
18114 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18115 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18116 grammar.
18117 Use more modest sizes, as for the time being the parser does not
18118 release memory, and therefore the process swallows a huge amount
18119 of memory.
18120
18121 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18122 stricter %token grammar.
18123
18124 * src/symtab.h (associativity): Add `undef_assoc'.
18125 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18126 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18127
18128 * tests/regression.at (Invalid %directive): Remove, as it is now
18129 meaningless.
18130 (Invalid inputs): Adjust to the new error messages.
18131 (Token definitions): The new grammar doesn't allow too many
18132 eccentricities.
18133
18134 * src/lex.h, src/lex.c: Remove.
18135 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18136 (copy_character, copy_string2, copy_string, copy_identifier)
18137 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18138 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18139 (parse_action): Remove.
18140 * po/POTFILES.in: Adjust.
18141
2e047461
AD
181422002-06-11 Akim Demaille <akim@epita.fr>
18143
cd05d13c 18144 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
18145 rule's action member: return the action as a string.
18146 Don't require `rule_length' as an argument: compute it.
18147 (grammar_current_rule_symbol_append)
18148 (grammar_current_rule_action_append): New, eved out from
18149 (readgram): here.
18150 Remove `action_flag', `rulelength', unused now.
18151
9af3fbce
AD
181522002-06-11 Akim Demaille <akim@epita.fr>
18153
18154 * src/reader.c (grammar_current_rule_prec_set).
18155 (grammar_current_rule_check): New, eved out from...
18156 (readgram): here.
18157 Remove `xaction', `first_rhs': useless.
18158 * tests/input.at (Type clashes): New.
18159 * tests/existing.at (GNU Cim Grammar): Adjust.
18160
1485e106
AD
181612002-06-11 Akim Demaille <akim@epita.fr>
18162
18163 * src/reader.c (grammar_midrule_action): New, Eved out from
18164 (readgram): here.
18165
da4160c3
AD
181662002-06-11 Akim Demaille <akim@epita.fr>
18167
18168 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18169 New.
18170 (readgram): Use them as replacement of inlined code, crule and
18171 crule1.
18172
f6d0f937
AD
181732002-06-11 Akim Demaille <akim@epita.fr>
18174
18175 * src/reader.c (grammar_end, grammar_symbol_append): New.
18176 (readgram): Use them.
18177 Make the use of `p' as local as possible.
18178
69078d4b
AD
181792002-06-10 Akim Demaille <akim@epita.fr>
18180
18181 GCJ's parser requires the tokens to be defined before the prologue.
18182
18183 * data/bison.simple: Output the token definition before the user's
18184 prologue.
18185 * tests/regression.at (Braces parsing, Duplicate string)
18186 (Mixing %token styles): Check the output from bison.
18187 (Early token definitions): New.
18188
5e424082
AD
181892002-06-10 Akim Demaille <akim@epita.fr>
18190
18191 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18192 assigning twice the same user number to a token, so that we can
18193 use it in...
18194 * src/lex.c (lex): here.
18195 Also use `symbol_class_set' instead of hand written code.
18196 * src/reader.c (parse_assoc_decl): Likewise.
18197
44536b35
AD
181982002-06-10 Akim Demaille <akim@epita.fr>
18199
18200 * src/symtab.c, src/symtab.c (symbol_class_set)
18201 (symbol_user_token_number_set): New.
18202 * src/reader.c (parse_token_decl): Use them.
18203 Use a switch instead of ifs.
18204 Use a single argument.
18205
8b9f2372
AD
182062002-06-10 Akim Demaille <akim@epita.fr>
18207
18208 Remove `%thong' support as it is undocumented, unused, duplicates
18209 `%token's job, and creates useless e-mail traffic with people who
18210 want to know what it is, why it is undocumented, unused, and
18211 duplicates `%token's job.
18212
18213 * src/reader.c (parse_thong_decl): Remove.
18214 * src/options.c (option_table): Remove "thong".
18215 * src/lex.h (tok_thong): Remove.
18216
3ae2b51f
AD
182172002-06-10 Akim Demaille <akim@epita.fr>
18218
18219 * src/symtab.c, src/symtab.c (symbol_type_set)
18220 (symbol_precedence_set): New.
18221 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18222 (value_components_used): Remove, unused.
18223
2f1afb73
AD
182242002-06-09 Akim Demaille <akim@epita.fr>
18225
18226 Move symbols handling code out of the reader.
18227
18228 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18229 (axiom): Move to...
18230 * src/symtab.h, src/symtab.c: here.
18231
18232 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18233 * src/reader.c (startval): Rename as...
18234 * src/symtab.h, src/symtab.c (startsymbol): this.
18235 * src/reader.c: Adjust.
18236
18237 * src/reader.c (symbol_check_defined, symbol_make_alias)
18238 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18239 (token_translations_init)
18240 Move to...
18241 * src/symtab.c: here.
18242 * src/reader.c (packsymbols): Move to...
18243 * src/symtab.h, src/symtab.c (symbols_pack): here.
18244 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18245 argument.
18246
e9bca3ad
AD
182472002-06-03 Akim Demaille <akim@epita.fr>
18248
18249 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18250 then statements.
18251
86eff183
AD
182522002-06-03 Akim Demaille <akim@epita.fr>
18253
18254 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18255 structs with non literals.
18256 * src/scan-skel.l: never-interactive.
18257 * src/conflicts.c (enum conflict_resolution_e): No trailing
18258 comma.
18259 * src/getargs.c (usage): Split long literal strings.
18260 Reported by Hans Aberg.
18261
717be197
AD
182622002-05-28 Akim Demaille <akim@epita.fr>
18263
18264 * data/bison.c++: Use C++ ostreams.
18265 (cdebug_): New member.
18266
670ddffd
AD
182672002-05-28 Akim Demaille <akim@epita.fr>
18268
18269 * src/output.c (output_skeleton): Be sure to allocate enough room
18270 for `/' _and_ for `\0' in full_skeleton.
18271
769b430f
AD
182722002-05-28 Akim Demaille <akim@epita.fr>
18273
18274 * data/bison.c++: Catch up with bison.simple:
18275 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18276 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18277 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18278 and popping traces.
18279
7067cb36
PH
182802002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18281
18282 * src/output.c (output_skeleton): Put an explicit path in front of
18283 the skeleton file name, rather than relying on the -I directory,
18284 to partially alleviate effects of having a skeleton file lying around
18285 in the current directory.
769b430f 18286
4a713ec2
PH
182872002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18288
769b430f 18289 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
18290 obstack_printf should be obstack_fgrow1.
18291
b408954b
AD
182922002-05-26 Akim Demaille <akim@epita.fr>
18293
18294 * src/state.h (state_t): `solved_conflicts' is a new member.
18295 * src/LR0.c (new_state): Set it to 0.
18296 * src/conflicts.h, src/conflicts.c (print_conflicts)
18297 (free_conflicts, solve_conflicts): Rename as...
18298 (conflicts_print, conflicts_free, conflicts_solve): these.
18299 Adjust callers.
18300 * src/conflicts.c (enum conflict_resolution_e)
18301 (solved_conflicts_obstack): New, used by...
18302 (log_resolution): this.
18303 Adjust to attach the conflict resolution to each state.
18304 Complete the description with the precedence/associativity
18305 information.
18306 (resolve_sr_conflict): Adjust.
18307 * src/print.c (print_state): Output its solved_conflicts.
18308 * tests/conflicts.at (Unresolved SR Conflicts)
18309 (Solved SR Conflicts): Exercise --report=all.
18310
a49aecd5
AD
183112002-05-26 Akim Demaille <akim@epita.fr>
18312
18313 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18314 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18315 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18316 (token_number_t, item_number_as_token_number)
18317 (token_number_as_item_number, muscle_insert_token_number_table):
18318 Rename as...
18319 (symbol_number_t, item_number_as_symbol_number)
18320 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18321 these, since it is more appropriate.
18322
5504898e
AD
183232002-05-26 Akim Demaille <akim@epita.fr>
18324
18325 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18326 `Error:' lines.
18327 * data/bison.simple (yystos) [YYDEBUG]: New.
18328 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18329 error recovery.
18330 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18331
ec3bc396
AD
183322002-05-25 Akim Demaille <akim@epita.fr>
18333
18334 * doc/bison.texinfo (Debugging): Split into...
18335 (Tracing): this new section, its former contents, and...
18336 (Understanding): this new section.
18337 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18338 by...
18339 (report_flag): this.
18340 Adjust all dependencies.
18341 (report_args, report_types, report_argmatch): New.
18342 (usage, getargs): Report/support -r, --report.
18343 * src/options.h
18344 (struct option_table_struct): Rename as..,
18345 (struct option_table_s): this.
18346 Rename the `set_flag' member to `flag' to match with getopt_long's
18347 struct.
18348 * src/options.c (option_table): Split verbose into an entry for
18349 %verbose, and another for --verbose.
18350 Support --report/-r, so remove -r from the obsolete --raw.
18351 * src/print.c: Attach full item sets and lookaheads reports to
18352 report_flag instead of trace_flag.
18353 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18354
78df8250
PE
183552002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18356 and Paul Eggert <eggert@twinsun.com>
769b430f 18357
78df8250
PE
18358 * data/bison.simple (yyparse): Correct error handling to conform to
18359 POSIX and yacc. Specifically, after syntax error is discovered,
18360 do not reduce further before shifting the error token.
18361 Clean up the code a bit by removing the labels yyerrdefault,
18362 yyerrhandle, yyerrpop.
18363 * NEWS: Document the above.
18364
c0c9ea05
PH
183652002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18366
18367 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18368 type; it isn't always big enough, since it doesn't necessarily
18369 include non-terminals.
769b430f 18370 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
18371 the latter can be removed.
18372 (yy_token_number_type): Remove, only one use.
18373 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18374 don't use TokenNumberType as element type.
769b430f 18375
c0c9ea05
PH
18376 * tests/regression.at: Modify expected output to agree with change
18377 to yyr1 and yytranslate.
769b430f 18378
6390a83f
FK
183792002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18380
18381 * src/reader.c (parse_action): Use copy_character instead of
18382 obstack_1grow.
18383
db7c8e9a
AD
183842002-05-13 Akim Demaille <akim@epita.fr>
18385
18386 * tests/regression.at (Token definitions): Prototype yylex and
18387 yyerror.
18388
fcc61800
PH
183892002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18390
158c687b 18391 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
18392 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18393 32-bit arithmetic.
18394 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18395
5683e9b2
AD
183962002-05-07 Akim Demaille <akim@epita.fr>
18397
18398 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18399 avoid GCC warnings.
18400
0c2d3f4c
AD
184012002-05-07 Akim Demaille <akim@epita.fr>
18402
18403 Kill GCC warnings.
18404
18405 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18406 over the RHS of each rule.
18407 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18408 * src/state.h (state_t): Member `nitems' is unsigned short.
18409 * src/LR0.c (get_state): Adjust.
18410 * src/reader.c (packgram): Likewise.
18411 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18412 `Type'.
18413 (muscle_insert_int_table): Remove, unused.
18414 (prepare_rules): Remove `max'.
18415
1565b720
AD
184162002-05-06 Akim Demaille <akim@epita.fr>
18417
18418 * src/closure.c (print_firsts): Display of the symbol tags.
18419 (bitmatrix_print): Move to...
18420 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18421 here.
18422 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18423
cfaee611
AD
184242002-05-06 Akim Demaille <akim@epita.fr>
18425
18426 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18427 hash_do_for_each.
18428
458be8e0
AD
184292002-05-06 Akim Demaille <akim@epita.fr>
18430
18431 * src/LR0.c (new_state, get_state): Instead of using the global
18432 `kernel_size' and `kernel_base', have two new arguments:
18433 `core_size' and `core'.
18434 Adjust callers.
18435
a900a624
AD
184362002-05-06 Akim Demaille <akim@epita.fr>
18437
18438 * src/reader.c (packgram): No longer end `ritem' with a 0
18439 sentinel: it is not used.
18440
d4e7d3a1
AD
184412002-05-05 Akim Demaille <akim@epita.fr>
18442
18443 New experimental feature: display the lookaheads in the report and
18444 graph.
18445
18446 * src/print (print_core): When --trace-flag, display the rules
18447 lookaheads.
18448 * src/print_graph.c (print_core): Likewise.
18449 Swap the arguments.
18450 Adjust caller.
18451
39ceb25b
AD
184522002-05-05 Akim Demaille <akim@epita.fr>
18453
18454 * tests/torture.at (Many lookaheads): New test.
18455
5372019f
AD
184562002-05-05 Akim Demaille <akim@epita.fr>
18457
18458 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18459 (GENERATE_MUSCLE_INSERT_TABLE): this.
18460 (output_int_table, output_unsigned_int_table, output_short_table)
18461 (output_token_number_table, output_item_number_table): Replace with...
18462 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18463 (muscle_insert_short_table, muscle_insert_token_number_table)
18464 (muscle_insert_item_number_table): these.
18465 Adjust all callers.
18466 (prepare_tokens): Don't free `translations', since...
18467 * src/reader.h, src/reader.c (grammar_free): do it.
18468 Move to...
18469 * src/gram.h, src/gram.c (grammar_free): here.
18470 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18471 b4_translate_max.
18472
5df5f6d5
AD
184732002-05-05 Akim Demaille <akim@epita.fr>
18474
18475 * src/output.c (output_unsigned_int_table): New.
18476 (prepare_rules): `i' is unsigned.
18477 `prhs', `rline', `r2' are unsigned int.
18478 Rename muscle `rhs_number_max' as `rhs_max'.
18479 Output muscles `prhs_max', `rline_max', and `r2_max'.
18480 Free rline and r1.
18481 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18482 to compute types instead of constant types.
18483 * tests/regression.at (Web2c Actions): Adjust.
18484
b87f8b21
AD
184852002-05-04 Akim Demaille <akim@epita.fr>
18486
18487 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18488 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18489 Adjust dependencies.
18490 * src/output.c (token_definitions_output): Be sure not to output a
18491 `#define 'a'' when fed with `%token 'a' "a"'.
18492 * tests/regression.at (Token definitions): New.
18493
8bb936e4
PE
184942002-05-03 Paul Eggert <eggert@twinsun.com>
18495
18496 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18497 for K&R C.
18498
184992002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18500
18501 * Makefile.am (SUBDIRS): Remove intl.
18502 (EXTRA_DIST): Add config/config.rpath.
18503
53c71a12
AD
185042002-05-03 Akim Demaille <akim@epita.fr>
18505
18506 * data/bison.simple (m4_if): Don't output empty enums.
18507 And actually, output valid enum definitions :(.
18508
289dd0cf
AD
185092002-05-03 Akim Demaille <akim@epita.fr>
18510
18511 * configure.bat: Remove, completely obsolete.
18512 * Makefile.am (EXTRA_DIST): Adjust.
18513 Don't distribute config.rpath...
18514 * config/Makefile.am (EXTRA_DIST): Do it.
18515
db85e524
AD
185162002-05-03 Akim Demaille <akim@epita.fr>
18517
18518 * configure.in (GETTEXT_VERSION): New.
18519 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18520
83ccf991
AD
185212002-05-03 Akim Demaille <akim@epita.fr>
18522
18523 * data/bison.simple (b4_token_enum): New.
18524 (b4_token_defines): Use it to output tokens both as #define and
18525 enums.
18526 Suggested by Paul Eggert.
18527 * src/output.c (token_definitions_output): Don't output spurious
18528 white spaces.
18529
1f418995
AD
185302002-05-03 Akim Demaille <akim@epita.fr>
18531
18532 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18533
45119f04
RA
185342002-05-02 Robert Anisko <robert@lrde.epita.fr>
18535
18536 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18537 Update the stack class, give a try to deque as the default container.
18538
b2d52318
AD
185392002-05-02 Akim Demaille <akim@epita.fr>
18540
18541 * data/bison.simple (yyparse): Do not implement @$ = @1.
18542 (YYLLOC_DEFAULT): Adjust to do it.
18543 * doc/bison.texinfo (Location Default Action): Fix.
18544
3a8b4109
AD
185452002-05-02 Akim Demaille <akim@epita.fr>
18546
18547 * src/reader.c (parse_braces): Merge into...
18548 (parse_action): this.
18549
84614e13
AD
185502002-05-02 Akim Demaille <akim@epita.fr>
18551
18552 * configure.in (ALL_LINGUAS): Remove.
18553 * po/LINGUAS, hr.po: New.
18554
fdbcd8e2
AD
185552002-05-02 Akim Demaille <akim@epita.fr>
18556
18557 Remove the so called hairy (semantic) parsers.
18558
18559 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18560 * src/gram.h, src/gram.c (semantic_parser): Remove.
18561 (rule_t): Remove the guard and guard_line members.
18562 * src/lex.h (token_t): remove tok_guard.
18563 * src/options.c (option_table): Remove %guard and %semantic_parser
18564 support.
18565 * src/output.c, src/output.h (guards_output): Remove.
18566 (prepare): Adjust.
18567 (token_definitions_output): Don't output the `T'
18568 tokens (???).
18569 (output_skeleton): Don't output the guards.
18570 * src/files.c, src/files.c (attrsfile): Remove.
18571 * src/reader.c (symbol_list): Remove the guard and guard_line
18572 members.
18573 Adjust dependencies.
18574 (parse_guard): Remove.
18575 * data/bison.hairy: Remove.
18576 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18577 BISON_HAIRY.
18578
82b6cb3f
AD
185792002-05-02 Akim Demaille <akim@epita.fr>
18580
18581 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18582 (parse_guard): Rename the formal argument `stack_offset' as
18583 `rule_length', which is more readable.
18584 Adjust callers.
18585 (copy_at, copy_dollar): Instead of outputting the hard coded
18586 values of $$, $n and so forth, output invocation to b4_lhs_value,
18587 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
18588 Note: this patch partially drops `semantic-parser' support: it
18589 always does `rule_length - n', where semantic parsers ought to
18590 always use `-n'.
82b6cb3f
AD
18591 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18592 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18593
6cbfbcc5
AD
185942002-05-02 Akim Demaille <akim@epita.fr>
18595
18596 * configure.in (AC_INIT): Bump to 1.49b.
18597 (AM_INIT_AUTOMAKE): Short invocation.
18598
b8548114
AD
185992002-05-02 Akim Demaille <akim@epita.fr>
18600
18601 Version 1.49a.
18602
c20cd1fa
AD
186032002-05-01 Akim Demaille <akim@epita.fr>
18604
18605 * src/skeleton.h: Remove.
18606
8a9566d4
AD
186072002-05-01 Akim Demaille <akim@epita.fr>
18608
18609 * src/skeleton.h: Fix the #endif.
18610 Reported by Magnus Fromreide.
18611
8c6d399a
PE
186122002-04-26 Paul Eggert <eggert@twinsun.com>
18613
18614 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
18615 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 18616 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 18617
2b7ed18a
RA
186182002-04-25 Robert Anisko <robert@lrde.epita.fr>
18619
18620 * src/scan-skel.l: Postprocess quadrigraphs.
18621
18622 * src/reader.c (copy_character): New function, used to output
18623 single characters while replacing `[' and `]' with quadrigraphs, to
18624 avoid troubles with M4 quotes.
18625 (copy_comment): Output characters with copy_character.
18626 (read_additionnal_code): Likewise.
18627 (copy_string2): Likewise.
18628 (copy_definition): Likewise.
18629
18630 * tests/calc.at: Exercise M4 quoting.
18631
34a89c50
AD
186322002-04-25 Akim Demaille <akim@epita.fr>
18633
18634 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
18635 between `!' and the command.
18636 Reported by Paul Eggert.
18637
0dd1580a
RA
186382002-04-24 Robert Anisko <robert@lrde.epita.fr>
18639
18640 * tests/calc.at: Exercise prologue splitting.
18641
18642 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
18643 `b4_post_prologue' instead of `b4_prologue'.
18644
18645 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
18646 muscles.
18647 (output): Free pre_prologue_obstack and post_prologue_obstack.
18648 * src/files.h, src/files.c (attrs_obstack): Remove.
18649 (pre_prologue_obstack, post_prologue_obstack): New.
18650 * src/reader.c (copy_definition): Add a parameter to specify the
18651 obstack to fill, instead of using attrs_obstack unconditionally.
18652 (read_declarations): Pass pre_prologue_obstack to copy_definition if
18653 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
18654
83c1796f
PE
186552002-04-23 Paul Eggert <eggert@twinsun.com>
18656
18657 * data/bison.simple: Remove unnecessary commentary and white
18658 space differences from 1_29-branch.
18659 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
18660
18661 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
18662 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
18663 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
18664 constructors or destructors.
18665
18666 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
18667
1207eeac
AD
186682002-04-23 Akim Demaille <akim@epita.fr>
18669
18670 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
18671 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
18672 location with columns.
18673 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
18674 All reported by Paul Eggert.
18675
78ab8f67
AD
186762002-04-22 Akim Demaille <akim@epita.fr>
18677
18678 * src/reduce.c (dump_grammar): Move to...
18679 * src/gram.h, src/gram.c (grammar_dump): here.
18680 Be sure to separate long item numbers.
18681 Don't read the members of a rule's prec if its nil.
18682
133c20e2
AD
186832002-04-22 Akim Demaille <akim@epita.fr>
18684
18685 * src/output.c (table_size, table_grow): New.
18686 (MAXTABLE): Remove, replace uses with table_size.
18687 (pack_vector): Instead of dying when the table is too big, grow it.
18688
9515e8a7
AD
186892002-04-22 Akim Demaille <akim@epita.fr>
18690
18691 * data/bison.simple (yyr1): Its type is that of a token number.
18692 * data/bison.c++ (r1_): Likewise.
18693 * tests/regression.at (Web2c Actions): Adjust.
18694
23c5a174
AD
186952002-04-22 Akim Demaille <akim@epita.fr>
18696
18697 * src/reader.c (token_translations_init): 256 is now the default
18698 value for the error token, i.e., it will be assigned another
18699 number if the user assigned 256 to one of her tokens.
18700 (reader): Don't force 256 to error.
18701 * doc/bison.texinfo (Symbols): Adjust.
18702 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
18703 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
18704 etc. instead of 10, 20, 30 (which was used to `jump' over error
18705 (256) and undefined (2)).
18706
5fbb0954
AD
187072002-04-22 Akim Demaille <akim@epita.fr>
18708
18709 Propagate more token_number_t.
18710
18711 * src/gram.h (token_number_as_item_number)
18712 (item_number_as_token_number): New.
18713 * src/output.c (GENERATE_OUTPUT_TABLE): New.
18714 Use it to create output_item_number_table and
18715 output_token_number_table.
18716 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18717 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
18718 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
18719 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
18720
4f940944
AD
187212002-04-22 Akim Demaille <akim@epita.fr>
18722
18723 * src/output.h, src/output.c (get_lines_number): Remove.
18724
3ded9a63
AD
187252002-04-19 Akim Demaille <akim@epita.fr>
18726
18727 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
18728 as Lex/Flex'.
18729 (Debugging): More details about enabling the debugging features.
18730 (Table of Symbols): Describe $$, $n, @$, and @n.
18731 Suggested by Tim Josling.
18732
e0c471a9
AD
187332002-04-19 Akim Demaille <akim@epita.fr>
18734
18735 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
18736
fecc10cd
AD
187372002-04-10 Akim Demaille <akim@epita.fr>
18738
18739 * src/system.h: Rely on HAVE_LIMITS_H.
18740 Suggested by Paul Eggert.
18741
51dec47b
AD
187422002-04-09 Akim Demaille <akim@epita.fr>
18743
18744 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
18745 full stderr, and strip it according to the bison options, instead
18746 of composing the error message from different bits.
18747 This makes it easier to check for several error messages.
18748 Adjust all the invocations.
18749 Add an invocation exercising the error token.
18750 Add an invocation demonstrating a stupid error message.
18751 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
18752 Adjust the tests.
18753 Error message are for stderr, not stdout.
18754
007a50a4
AD
187552002-04-09 Akim Demaille <akim@epita.fr>
18756
18757 * src/gram.h, src/gram.c (error_token_number): Remove, use
18758 errtoken->number.
18759 * src/reader.c (reader): Don't specify the user token number (2)
18760 for $undefined, as it uselessly prevents using it.
18761 * src/gram.h (token_number_t): Move to...
18762 * src/symtab.h: here.
18763 (state_t.number): Is a token_number_t.
18764 * src/print.c, src/reader.c: Use undeftoken->number instead of
18765 hard coded 2.
18766 (Even though this 2 is not the same as above: the number of the
18767 undeftoken remains being 2, it is its user token number which
18768 might not be 2).
18769 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18770 `user_token_number_max'.
18771 Output `undef_token_number'.
18772 * data/bison.simple, data/bison.c++: Use them.
18773 Be sure to map invalid yylex return values to
18774 `undef_token_number'. This saves us from gratuitous SEGV.
18775
18776 * tests/conflicts.at (Solved SR Conflicts)
18777 (Unresolved SR Conflicts): Adjust.
18778 * tests/regression.at (Web2c Actions): Adjust.
18779
06446ccf
AD
187802002-04-08 Akim Demaille <akim@epita.fr>
18781
18782 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18783 Adding #line.
18784 Remove the duplicate `typedefs'.
18785 (RhsNumberType): Fix the declaration and various other typos.
18786 Use __ofile__.
18787 * data/bison.simple: Use __ofile__.
18788 * src/scan-skel.l: Handle __ofile__.
18789
62a3e4f0
AD
187902002-04-08 Akim Demaille <akim@epita.fr>
18791
18792 * src/gram.h (item_number_t): New, the type of item numbers in
18793 RITEM. Note that it must be able to code symbol numbers as
18794 positive number, and the negation of rule numbers as negative
18795 numbers.
18796 Adjust all dependencies (pretty many).
18797 * src/reduce.c (rule): Remove this `short *' pointer: use
18798 item_number_t.
18799 * src/system.h (MINSHORT, MAXSHORT): Remove.
18800 Include `limits.h'.
18801 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18802 (shortcpy): Remove.
18803 (MAXTABLE): Move to...
18804 * src/output.c (MAXTABLE): here.
18805 (prepare_rules): Use output_int_table to output rhs.
18806 * data/bison.simple, data/bison.c++: Adjust.
18807 * tests/torture.at (Big triangle): Move the limit from 254 to
18808 500.
18809 * tests/regression.at (Web2c Actions): Ajust.
18810
18811 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18812 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18813 passes, but produces negative #line number, once fixed, GCC is
18814 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18815 C), it passes.
18816 * src/state.h (state_h): Code input lines on ints, not shorts.
18817
bb88b0fc
AD
188182002-04-08 Akim Demaille <akim@epita.fr>
18819
18820 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18821 and then the grammar.
18822
9a636f47
AD
188232002-04-08 Akim Demaille <akim@epita.fr>
18824
18825 * src/system.h: No longer using strndup.
18826
680e8701
AD
188272002-04-07 Akim Demaille <akim@epita.fr>
18828
18829 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18830 * src/output.c (output_table_data): Return the longest number.
18831 (prepare_tokens): Output `token_number_max').
18832 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18833 New.
18834 Use them to define yy_token_number_type/TokenNumberType.
18835 Use this type for yytranslate.
18836 * tests/torture.at (Big triangle): Push the limit from 124 to
18837 253.
18838 * tests/regression.at (Web2c Actions): Adjust.
18839
817e9f41
AD
188402002-04-07 Akim Demaille <akim@epita.fr>
18841
18842 * tests/torture.at (Big triangle): New.
18843 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18844 * tests/existing.at: here.
18845
5123689b
AD
188462002-04-07 Akim Demaille <akim@epita.fr>
18847
18848 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18849 nritems.
18850 Adjust dependencies.
18851
f3849179
AD
188522002-04-07 Akim Demaille <akim@epita.fr>
18853
18854 * src/reader.c: Normalize increments to prefix form.
18855
bd02036a
AD
188562002-04-07 Akim Demaille <akim@epita.fr>
18857
18858 * src/reader.c, symtab.c: Remove debugging code.
18859
db8837cb
AD
188602002-04-07 Akim Demaille <akim@epita.fr>
18861
18862 Rename all the `bucket's as `symbol_t'.
18863
18864 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18865 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18866 * src/symtab.c, src/symtab.h (bucket): Rename as...
18867 (symbol_t): this.
18868 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18869 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18870 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18871 (buckets_new, buckets_free, buckets_do): Rename as...
18872 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18873 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18874 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18875 (symbols_new, symbols_free, symbols_do): these.
18876
72a23c97
AD
188772002-04-07 Akim Demaille <akim@epita.fr>
18878
18879 Use lib/hash for the symbol table.
18880
18881 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18882 EOF.
18883 * src/lex.c (lex): Set the `number' member of new terminals.
18884 * src/reader.c (bucket_check_defined, bucket_make_alias)
18885 (bucket_check_alias_consistence, bucket_translation): New.
18886 (reader, grammar_free, readgram, token_translations_init)
18887 (packsymbols): Adjust.
18888 (reader): Number the predefined tokens.
18889 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18890 for predefined tokens.
18891 * src/symtab.h (bucket): Remove all the hash table related
18892 members.
18893 * src/symtab.c (symtab): Replace by...
18894 (bucket_table): this.
18895 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18896 (buckets_new, buckets_do): New.
18897
280a38c3
AD
188982002-04-07 Akim Demaille <akim@epita.fr>
18899
18900 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18901 (start_symbol, max_user_token_number, semantic_parser)
18902 (error_token_number): Initialize.
18903 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18904 Initialize.
18905 (reader): Don't.
18906 (errtoken, eoftoken, undeftoken, axiom): Extern.
18907
03b31c0c
AD
189082002-04-07 Akim Demaille <akim@epita.fr>
18909
18910 * src/gram.h (rule_s): prec and precsym are now pointers
18911 to the bucket giving the priority/associativity.
18912 Member `associativity' removed: useless.
18913 * src/reduce.c, src/conflicts.c: Adjust.
18914
8b3df748
AD
189152002-04-07 Akim Demaille <akim@epita.fr>
18916
18917 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18918 Properly escape the symbols' TAG when outputting them.
18919
e601aa1d
AD
189202002-04-07 Akim Demaille <akim@epita.fr>
18921
18922 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18923
b0299a2e
AD
189242002-04-07 Akim Demaille <akim@epita.fr>
18925
18926 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18927 (LArule): this, which is an array to rule_t*.
18928 * src/print.c, src/conflicts.c: Adjust.
18929
d7e1f00c
AD
189302002-04-07 Akim Demaille <akim@epita.fr>
18931
18932 * src/gram.h (rule_t): Rename `number' as `user_number'.
18933 `number' is a new member.
18934 Adjust dependencies.
18935 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18936
cc9305dd
AD
189372002-04-07 Akim Demaille <akim@epita.fr>
18938
18939 As a result of the previous patch, it is no longer needed
18940 to reorder ritem itself.
18941
18942 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18943
b0940840
AD
189442002-04-07 Akim Demaille <akim@epita.fr>
18945
18946 Be sure never to walk through RITEMS, but use only data related to
18947 the rules themselves. RITEMS should be banished.
18948
18949 * src/output.c (output_token_translations): Rename as...
18950 (prepare_tokens): this.
18951 In addition to `translate', prepare the muscles `tname' and
18952 `toknum', which were handled by...
18953 (output_rule_data): this.
18954 Remove, and move the remainder of its outputs into...
18955 (prepare_rules): this new routines, which also merges content from
18956 (output_gram): this.
18957 (prepare_rules): Be sure never to walk through RITEMS.
18958 (output_stos): Rename as...
18959 (prepare_stos): this.
18960 (output): Always invoke prepare_states, after all, just don't use it
18961 in the output if you don't need it.
18962
643a5994
AD
189632002-04-07 Akim Demaille <akim@epita.fr>
18964
18965 * src/LR0.c (new_state): Display `nstates' as the name of the
18966 newly created state.
18967 Adjust to initialize first_state and last_state if needed.
18968 Be sure to distinguish the initial from the final state.
18969 (new_states): Create the itemset of the initial state, and use
18970 new_state.
18971 * src/closure.c (closure): Now that the initial state has its
18972 items properly set, there is no need for a special case when
18973 creating `ruleset'.
18974
18975 As a result, now the rule 0, reducing to $axiom, is visible in the
18976 outputs. Adjust the test suite.
18977
18978 * tests/conflicts.at (Solved SR Conflicts)
18979 (Unresolved SR Conflicts): Adjust.
18980 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18981 * tests/conflicts.at (S/R in initial): New.
18982
b4c4ccc2
AD
189832002-04-07 Akim Demaille <akim@epita.fr>
18984
18985 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18986 the RHS of the rules.
18987 * src/output.c (output_gram): Likewise.
18988
bba97eb2
AD
189892002-04-07 Akim Demaille <akim@epita.fr>
18990
18991 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18992 bucket.
18993 Adjust all dependencies.
18994 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18995 `number' of the buckets too.
18996 * src/gram.h: Include `symtab.h'.
18997 (associativity): Move to...
18998 * src/symtab.h: here.
18999 No longer include `gram.h'.
19000
c3b407f4
AD
190012002-04-07 Akim Demaille <akim@epita.fr>
19002
19003 * src/gram.h, src/gram.c (rules_rhs_length): New.
19004 (ritem_longest_rhs): Use it.
19005 * src/gram.h (rule_t): `number' is a new member.
19006 * src/reader.c (packgram): Set it.
19007 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19008 the end of `rules', and count them out of `nrules'.
19009 (reduce_output, dump_grammar): Adjust.
19010 * src/print.c (print_grammar): It is no longer needed to check for
19011 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19012 * tests/reduce.at (Reduced Automaton): New test.
19013
11652ab3
AD
190142002-04-07 Akim Demaille <akim@epita.fr>
19015
19016 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19017 lacking `+ 1' to nrules, Bison reported as useless a token if it
19018 was used solely to set the precedence of the last rule...
19019
26b23c1a
AD
190202002-04-07 Akim Demaille <akim@epita.fr>
19021
19022 * data/bison.c++, data/bison.simple: Don't output the current file
19023 name in #line, to avoid useless diffs between two identical
19024 outputs under different names.
19025
18bcecb0
AD
190262002-04-07 Akim Demaille <akim@epita.fr>
19027
19028 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19029 Normalize loops to using `< nrules + 1', not `<= nrules'.
19030
fa770c86
AD
190312002-04-07 Akim Demaille <akim@epita.fr>
19032
19033 * TODO: Update.
19034
d9b739c3
AD
190352002-04-07 Akim Demaille <akim@epita.fr>
19036
19037 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19038 bucket.value as bucket.number.
19039
99013900
AD
190402002-04-07 Akim Demaille <akim@epita.fr>
19041
19042 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19043 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19044 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19045 RHS, instead of being an index in RITEMS.
19046
e966383b
PE
190472002-04-04 Paul Eggert <eggert@twinsun.com>
19048
19049 * doc/bison.texinfo: Update copyright date.
19050 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19051 (Symbols): Warn about running Bison in one character set,
19052 but compiling and/or running in an incompatible one.
19053 Warn about character code 256, too.
19054
190552002-04-03 Paul Eggert <eggert@twinsun.com>
19056
19057 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19058 YYERROR_VERBOSE is nonzero, not whether it is defined.
19059
19060 Merge changes from bison-1_29-branch.
c307773e 19061
8d6c48b9
PE
190622002-03-20 Paul Eggert <eggert@twinsun.com>
19063
19064 Merge fixes from Debian bison_1.34-1.diff.
19065
19066 * configure.in (AC_PREREQ): 2.53.
19067
e53c6322
AD
190682002-03-20 Akim Demaille <akim@epita.fr>
19069
19070 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19071
9ffbeca7
PE
190722002-03-19 Paul Eggert <eggert@twinsun.com>
19073
21db0b2a
PE
19074 * src/bison.simple (YYCOPY): New macro.
19075 (YYSTACK_RELOCATE): Use it.
19076 Remove Type arg; no longer needed. All callers changed.
19077 (yymemcpy): Remove; no longer needed.
19078
9ffbeca7
PE
19079 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19080 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19081
642cb8f8
AD
190822002-03-19 Akim Demaille <akim@epita.fr>
19083
19084 Test and fix the #line outputs.
19085
19086 * tests/atlocal.at (GCC): New.
19087 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 19088 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
19089 (Action synch line, Epilogue synch line): New tests.
19090 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19091 * data/bison.simple, data/bison.c++: Use it.
19092
3c31a486
AD
190932002-03-19 Akim Demaille <akim@epita.fr>
19094
19095 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19096 (Solved SR Conflicts, %expect not enough, %expect right)
19097 (%expect too much): Move to...
19098 * tests/conflicts.at: this new file.
19099
0d8bed56
AD
191002002-03-19 Akim Demaille <akim@epita.fr>
19101
19102 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19103 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19104 that we can move to enums for instance.
19105 * src/output.c (token_definitions_output): Output a list of
19106 `token-name, token-number' instead of the #define.
19107 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19108
9208d17f
AD
191092002-03-14 Akim Demaille <akim@epita.fr>
19110
19111 Use Gettext 0.11.1.
19112
af27eacb
RA
191132002-03-09 Robert Anisko <robert@lrde.epita.fr>
19114
19115 * data/bison.c++: Make the user able to add members to the generated
19116 parser by subclassing.
19117
9101a310
RA
191182002-03-05 Robert Anisko <robert@lrde.epita.fr>
19119
19120 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19121 a character.
19122 Reported by Nicolas Tisserand and Nicolas Burrus.
19123
fff9bf0b
RA
191242002-03-04 Robert Anisko <robert@lrde.epita.fr>
19125
19126 * src/reader.c: Warn about lacking semi-colons, do not complain.
19127
64dba31e
RA
191282002-03-04 Robert Anisko <robert@lrde.epita.fr>
19129
19130 * data/bison.c++: Remove a debug line.
19131
374f5a14
RA
191322002-03-04 Robert Anisko <robert@lrde.epita.fr>
19133
19134 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19135 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19136 provide a default implementation.
19137
bfcf1f3a
AD
191382002-03-04 Akim Demaille <akim@epita.fr>
19139
19140 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19141 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19142 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19143 * tests/semantic.at (Parsing Guards): Similarly.
19144 * src/reader.at (readgram): Complain if the last rule is not ended
19145 with a semi-colon.
19146
65ccf9fc
AD
191472002-03-04 Akim Demaille <akim@epita.fr>
19148
19149 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19150 * src/closure.c: here.
19151 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19152 RTC.
19153 * src/warshall.h, src/warshall.c: Remove.
19154 * tests/sets.at (Broken Closure): Adjust.
19155
d0039cbc
AD
191562002-03-04 Akim Demaille <akim@epita.fr>
19157
19158 * src/output.c (output_skeleton): tempdir is const.
19159 bytes_read is unused.
19160
345cea78
AD
191612002-03-04 Akim Demaille <akim@epita.fr>
19162
19163 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19164 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19165 Update.
19166 From Michael Hayes.
19167
564801f7
AD
191682002-03-04 Akim Demaille <akim@epita.fr>
19169
19170 * src/closure.c (closure): `r' is unused.
19171
e5352bc7
AD
191722002-03-04 Akim Demaille <akim@epita.fr>
19173
19174 * tests/sets.at (Broken Closure): Add the ending `;'.
19175 * src/reader.at (readgram): Complain if a rule is not ended with a
19176 semi-colon.
19177
914feea9
AD
191782002-03-04 Akim Demaille <akim@epita.fr>
19179
19180 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19181 (count_sr_conflicts): Use bitset_count.
19182 * src/reduce.c (inaccessable_symbols): Ditto.
19183 (bits_size): Remove.
19184 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19185
f0250de6
AD
191862002-03-04 Akim Demaille <akim@epita.fr>
19187
19188 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19189 * src/reduce.c: Remove the `bitset_zero's following the
19190 `bitset_create's, as now it is performed by the latter.
19191
ef017502
AD
191922002-03-04 Akim Demaille <akim@epita.fr>
19193
19194 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19195 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19196 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19197 latest sources from Michael.
19198
76514394
AD
191992002-03-04 Akim Demaille <akim@epita.fr>
19200
19201 * src/output.c (output): Don't free the grammar.
19202 * src/reader.c (grammar_free): New.
19203 * src/main.c (main): Call it and don't free symtab here.
19204
55024580
AD
192052002-03-04 Akim Demaille <akim@epita.fr>
19206
19207 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19208 before returning.
19209 Reported by Benoit Perrot.
19210
f9abaa2c
AD
192112002-03-04 Akim Demaille <akim@epita.fr>
19212
19213 Use bitset operations when possible, not loops over bits.
19214
19215 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19216 bitset_or.
19217 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19218 * src/reduce.c (useless_nonterminals): Formatting changes.
19219 * src/warshall.c (TC): Use bitset_or.
19220
0e721e75
AD
192212002-03-04 Akim Demaille <akim@epita.fr>
19222
19223 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19224 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19225 Ditto.
19226
0fb1ffb1
AD
192272002-03-04 Akim Demaille <akim@epita.fr>
19228
19229 * src/lalr.c (F): Now a bitset*.
19230 Adjust all dependencies.
19231
b86796bf
AD
192322002-03-04 Akim Demaille <akim@epita.fr>
19233
19234 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19235 Adjust all dependencies.
19236
602bbf31
AD
192372002-03-04 Akim Demaille <akim@epita.fr>
19238
19239 * src/L0.c, src/LR0.h (nstates): Be size_t.
19240 Adjust comparisons (signed vs unsigned).
19241 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19242 bitset*.
19243 Adjust all dependencies.
19244
d8a0245c
AD
192452002-03-04 Akim Demaille <akim@epita.fr>
19246
19247 * src/closure.c (firsts): Now, also a bitset.
19248 Adjust all dependencies.
19249 (varsetsize): Remove, now unused.
19250 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19251
34ba9743
AD
192522002-03-04 Akim Demaille <akim@epita.fr>
19253
19254 * src/print.c: Convert to use bitset.h, not hand coded iterations
19255 over ints.
19256
ed86e78c
AD
192572002-03-04 Akim Demaille <akim@epita.fr>
19258
19259 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19260
dfdb1797
AD
192612002-03-04 Akim Demaille <akim@epita.fr>
19262
19263 * src/closure.c (ruleset): Be a bitset.
19264 (rulesetsize): Remove.
19265
7086e707
AD
192662002-03-04 Akim Demaille <akim@epita.fr>
19267
19268 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19269 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19270 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19271 * src/closure.c (fderives): Be an array of bitsets.
19272
98254360
RA
192732002-02-28 Robert Anisko <robert@lrde.epita.fr>
19274
19275 * data/bison.c++: Merge the two generated headers. Insert a copyright
19276 notice in each output file.
19277
a75c057f
AD
192782002-02-28 Akim Demaille <akim@epita.fr>
19279
19280 * data/bison.c++: Copy the prologue of bison.simple to fetch
19281 useful M4 definitions, such as b4_header_guard.
19282
06b00abc
AD
192832002-02-25 Akim Demaille <akim@epita.fr>
19284
19285 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
19286 translator friendly scheme for the bgr
19287 copyright notice.
06b00abc 19288
70e7d534
AD
192892002-02-25 Akim Demaille <akim@epita.fr>
19290
19291 * src/output.c (header_output): Remove, now handled completely via
19292 M4.
19293
abe017f6
AD
192942002-02-25 Akim Demaille <akim@epita.fr>
19295
19296 * m4/m4.m4: New, from CVS Autoconf.
19297 * configure.in: Invoke it.
19298 * src/output.c (output_skeleton): Use its result instead of the
19299 hard coded name.
19300
381fb12e
AD
193012002-02-25 Akim Demaille <akim@epita.fr>
19302
19303 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19304 Fileutils 4.1.5.
19305 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19306 * src/output.c (output_skeleton): Use mkstemp to create a real
19307 temporary file.
19308 Move the filling of `skeleton' and its muscle to...
19309 (prepare): here.
19310 (output): Move the definition of the prologue muscle to...
19311 (prepare): here.
19312 * src/system.h (DEFAULT_TMPDIR): New.
19313
6f38107f
PE
193142002-02-14 Paul Eggert <eggert@twinsun.com>
19315
19316 Remove the support for C++ namespace cleanliness; it was
19317 causing more problems than it was curing, since it didn't work
19318 properly on some nonstandard C++ compilers. This can wait
19319 for a proper C++ parser.
19320
19321 * NEWS: Document this.
19322 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19323 of C++, as it's treated like C now.
19324 * src/bison.simple (YYSTD): Remove.
19325 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19326 Treat C++ just like Standard C instead of trying to support
19327 namespace cleanliness.
19328
80cce3da
AD
193292002-02-14 Akim Demaille <akim@epita.fr>
19330
19331 * tests/regression.at (else): Adjust to Andreas' change.
19332
842e8679
AD
193332002-02-14 Akim Demaille <akim@epita.fr>
19334
19335 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19336
4bda3f10
AD
193372002-02-13 Andreas Schwab <schwab@suse.de>
19338
19339 * src/output.c (output_rule_data): Don't output NULL, it might
19340 not be defined yet.
19341
4162fa07 193422002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 19343
4162fa07
RA
19344 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19345 (Copyright notice): Update.
b418ecd8 19346
bd16a5dc
AD
193472002-02-11 Akim Demaille <akim@epita.fr>
19348
19349 * tests/regression.at (%nonassoc and eof): Don't include
19350 nonportable headers.
19351
8d69a1a3
RA
193522002-02-08 Robert Anisko <robert@lrde.epita.fr>
19353
19354 * data/bison.c++: Correct error recovery. Make the user able to
19355 initialize the starting location.
19356
9b2d0677
AD
193572002-02-07 Akim Demaille <akim@epita.fr>
19358
19359 * tests/input.at: New.
19360
69e2658b
RA
193612002-02-07 Robert Anisko <robert@lrde.epita.fr>
19362
19363 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 19364 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
19365 directives around tables only needed for debugging.
19366
4aacc3a7
RA
193672002-02-07 Robert Anisko <robert@lrde.epita.fr>
19368
19369 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19370 C++ parsers.
19371 (yy::b4_name::parse): Use print_.
19372
762a801e
RA
193732002-02-07 Robert Anisko <robert@lrde.epita.fr>
19374
19375 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19376
4bb2bc3f
RA
193772002-02-07 Robert Anisko <robert@lrde.epita.fr>
19378
19379 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19380 C++ parsers.
19381 (yy::b4_name::parse): Build verbose error messages, and use error_.
19382
6b45a3ca
RA
193832002-02-06 Robert Anisko <robert@lrde.epita.fr>
19384
19385 * data/bison.c++: Fix m4 quoting in comments.
19386
50997c6e
RA
193872002-02-06 Robert Anisko <robert@lrde.epita.fr>
19388
19389 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19390 not expanded by m4.
19391
3f3eed27
AD
193922002-02-05 Akim Demaille <akim@epita.fr>
19393
19394 * data/bison.c++: Adjust to the M4 back end.
19395 More is certainly needed.
19396
be2a1a68
AD
193972002-02-05 Akim Demaille <akim@epita.fr>
19398
19399 Give a try to M4 as a back end.
19400
19401 * lib/readpipe.c: New, from wdiff.
19402 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19403 BISON_HAIRY.
19404 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19405 specific values. Now it is m4 that performs the lookup.
19406 * src/parse-skel.y: Remove.
19407 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19408 * src/output.c (actions_output, guards_output)
19409 (token_definitions_output): No longer keeps track of the output
19410 line number, hence remove the second argument.
19411 (guards_output): Check against the guard member of a rule, not the
19412 action member.
19413 Adjust callers.
19414 (output_skeleton): Don't look for the skeleton location, let m4 do
19415 that.
19416 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19417 file will be used.
19418 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19419 (prepare): Given that for the time being changesyntax is not
19420 usable in M4, rename the muscles using `-' to `_'.
19421 Define `defines_flag', `output_parser_name' and `output_header_name'.
19422 * src/output.h (actions_output, guards_output)
19423 (token_definitions_output): Adjust prototypes.
19424 * src/scan-skel.l: Instead of scanning the skeletons, it now
19425 processes the output of m4: `__oline__' and `#output'.
19426 * data/bison.simple: Adjust to be used by M4(sugar).
19427 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19428 to date.
19429 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19430 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19431 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19432 shamelessly stolen from CVS Autoconf.
19433
beda758b
AD
194342002-02-05 Akim Demaille <akim@epita.fr>
19435
19436 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19437 * configure.in: Check for the declarations of free and malloc.
19438 * src/muscle_tab.c: Adjust.
19439
5ece6d43
AD
194402002-02-05 Akim Demaille <akim@epita.fr>
19441
19442 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19443 which have no values.
19444
5bb18f9a
AD
194452002-02-05 Akim Demaille <akim@epita.fr>
19446
19447 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19448 * data/: here.
19449
894dd62e
PE
194502002-01-29 Paul Eggert <eggert@twinsun.com>
19451
19452 * src/bison.simple (YYSIZE_T): Do not define merely because
19453 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19454 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19455
82841af7
AD
194562002-01-27 Akim Demaille <akim@epita.fr>
19457
19458 Fix `%nonassoc and eof'.
19459
19460 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19461 which were not properly copied! Replace
19462 memcpy (res->errs, src->errs, src->nerrs);
19463 with
19464 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19465 !!!
19466 * tests/regression.at (%nonassoc and eof): Adjust to newest
19467 Autotest: `.' is not in the PATH.
19468
318b76e9
AD
194692002-01-27 Akim Demaille <akim@epita.fr>
19470
19471 * tests/sets.at (AT_EXTRACT_SETS): New.
19472 (Nullable): Use it.
19473 (Firsts): New.
19474
30d2f3d5
AD
194752002-01-26 Akim Demaille <akim@epita.fr>
19476
19477 * tests/actions.at, tests/calc.at, tests/headers.at,
19478 * tests/torture.at: Adjust to the newest Autotest which no longer
19479 forces `.' in the PATH.
19480
30f8c395
AD
194812002-01-25 Akim Demaille <akim@epita.fr>
19482
19483 * tests/regression.at (%nonassoc and eof): New.
19484 Suggested by Robert Anisko.
19485
29ae55f1
AD
194862002-01-24 Akim Demaille <akim@epita.fr>
19487
19488 Bison dumps core when trying to complain about broken input files.
19489 Reported by Cris van Pelt.
19490
19491 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19492 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19493 into...
19494 (Invalid inputs): Strengthen: exercise parse_percent_token.
19495
2b548aa6
RA
194962002-01-24 Robert Anisko <robert.anisko@epita.fr>
19497
19498 * src/Makefile.am: Add bison.c++.
19499 * src/bison.c++: New skeleton.
19500
bb0146c2
AD
195012002-01-21 Paolo Bonzini <bonzini@gnu.org>
19502
19503 * po/it.po: New.
19504
bec30531
AD
195052002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19506
19507 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19508
fc6edc45
MA
195092002-01-20 Marc Autret <marc@gnu.org>
19510
19511 * src/files.c (compute_output_file_names): Fix
19512
5e5d5415
MA
195132002-01-20 Marc Autret <marc@gnu.org>
19514
19515 * tests/output.at: New test.
19516 * src/files.c (compute_base_names): Don't map extensions when
19517 the YACC flag is set, use defaults.
19518 Reported by Evgeny Stambulchik.
19519
44ea3fbd
MA
195202002-01-20 Marc Autret <marc@gnu.org>
19521
ba0fe3c7
PE
19522 * src/system.h: Need to define __attribute__ away for non-GCC
19523 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
19524 Suggested by Albert Chin-A-Young.
19525
338963d1
TVH
195262002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19527
19528 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19529 canonical definition.
19530 * src/system.h: Use the canonical definition for PARAMS (avoids
19531 a conflict with the macro from lib/hash.h).
19532
c57b2479
AD
195332002-01-11 Akim Demaille <akim@epita.fr>
19534
19535 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 19536 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 19537
b85810ae
AD
195382002-01-09 Akim Demaille <akim@epita.fr>
19539
19540 * src/files.c, src/files.h (output_infix): New.
19541 (tab_extension): Remove.
19542 (compute_base_names): Compute the former, drop the latter.
19543 * src/output.c (prepare): Insert the muscles `output-infix', and
19544 `output-suffix'.
19545 * src/parse-skel.y (string, string.1): New.
19546 (section.header): Use it.
19547 (section.yacc): Remove.
19548 (prefix): Remove too.
19549 * src/scan-skel.l: Adjust.
19550 * src/bison.simple, src/bison.hairy: Adjust.
19551
cae60122
AD
195522002-01-09 Akim Demaille <akim@epita.fr>
19553
19554 * configure.in (WERROR_CFLAGS): Compute it.
19555 * src/Makefile.am (CFLAGS): Pass it.
19556 * tests/atlocal.in (CFLAGS): Idem.
19557 * src/files.c: Fix a few warnings.
19558 (get_extension_index): Remove, unused.
19559
ae404801
AD
195602002-01-08 Akim Demaille <akim@epita.fr>
19561
19562 * src/getargs.c (AS_FILE_NAME): New.
19563 (getargs): Use it to convert DOSish file names.
19564 * src/files.c (base_name): Rename as full_base_name to avoid
19565 clashes with `base_name ()'.
19566 (filename_split): New.
19567 (compute_base_names): N-th rewrite, using filename_split.
19568
22312b71
AD
195692002-01-08 Akim Demaille <akim@epita.fr>
19570
19571 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19572 New, stolen from the Fileutils 4.1.
19573 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19574 * configure.in: Check for the presence of memrchr, and of its
19575 prototype.
19576
a67cef01
TVH
195772002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19578
19579 * lib/hash.h (__P): Added definition for this macro.
19580 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19581 BUILT_SOURCES, to ensure they are generated first.
19582 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19583 %error-verbose to allow bootstrapping with bison 1.30x.
19584
2b25d624
AD
195852002-01-06 Akim Demaille <akim@epita.fr>
19586
19587 * src/reader.c (parse_braces): Don't fetch the next char, the
19588 convention is to fetch on entry.
19589 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19590 'switch' without a following semicolon.
19591 * tests/regression.at (braces parsing): New.
19592
3460813b
AD
195932002-01-06 Akim Demaille <akim@epita.fr>
19594
19595 Bison is dead wrong in its RR conflict reports.
19596
19597 * tests/torture.at (GNU Cim Grammar): New.
19598 * src/conflicts.c (count_rr_conflicts): Fix.
19599
73784c64
AD
196002002-01-06 Akim Demaille <akim@epita.fr>
19601
19602 Creating package.m4 from configure.ac causes too many problems.
19603
19604 * tests/Makefile.am (package.m4): Create it by hand,
19605 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
19606
25d81090
AD
196072002-01-06 Akim Demaille <akim@epita.fr>
19608
19609 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
19610 skeleton.h.
19611
a9b8959e
PE
196122002-01-04 Paul Eggert <eggert@twinsun.com>
19613
19614 * doc/bison.texinfo (Debugging):
19615 Remove YYSTDERR; it's no longer defined or used.
19616 Also, s/cstdio.h/cstdio/.
19617
25d81090
AD
196182002-01-03 Akim Demaille <akim@epita.fr>
19619
19620 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
19621
1109455c
AD
196222002-01-03 Akim Demaille <akim@epita.fr>
19623
19624 * src/parse-skel.y (process_skeleton): Don't bind the parser's
19625 tracing code to --trace, wait for a better --trace option, with
19626 args.
19627
7ea5e977
AD
196282002-01-03 Akim Demaille <akim@epita.fr>
19629
19630 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
19631 The ISO C++ standard is extremely clear about it: stderr is
19632 considered a macro, not a regular symbol (see table 94 `Header
19633 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
19634 Therefore std:: does not apply to it. It still does with fprintf.
19635 Also, s/cstdio.h/cstdio/.
19636
fab5b110
AD
196372002-01-03 Akim Demaille <akim@epita.fr>
19638
19639 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
19640 for non system headers.
19641
aed7fd9b
AD
196422002-01-02 Akim Demaille <akim@epita.fr>
19643
19644 Equip the skeleton chain with location tracking, runtime trace,
19645 pure parser and scanner.
19646
19647 * src/parse-skel.y: Request a pure parser, locations, and prefix
19648 renaming.
19649 (%union): Having several members with the same type does not help
19650 type mismatches, simplify.
19651 (YYPRINT, yyprint): New.
19652 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
19653 (skel_error): this.
19654 Handle locations.
19655 * src/scan-skel.l: Adjust to these changes.
19656 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
19657 (LOCATION_PRINT, skel_control_t): New.
19658
24fad99e
AD
196592001-12-30 Akim Demaille <akim@epita.fr>
19660
19661 * src/parse-skel.y: Get rid of the shift/reduce conflict:
19662 replace `gb' with BLANKS.
19663 * src/scan-skel.l: Adjust.
19664
a4b36db4
AD
196652001-12-30 Akim Demaille <akim@epita.fr>
19666
19667 * src/system.h: We don't need nor want bcopy.
19668 Throw away MS-DOS crap: we don't need getpid.
19669 * configure.in: We don't need strndup. It was even causing
19670 problems: because Flex includes the headers *before* us,
19671 _GNU_SOURCE is not defined by config.h, and therefore strndup was
19672 not visible.
19673 * lib/xstrndup.c: New.
19674 * src/scan-skel.l: Use it.
19675 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
19676 * src/parse-skel.y: Use %directives instead of #defines.
19677
1239777d
AD
196782001-12-30 Akim Demaille <akim@epita.fr>
19679
19680 * src/skeleton.h: New.
19681 * src/output.c (output_parser, output_master_parser): Remove, dead
19682 code.
19683 * src/output.h (get_lines_number, actions_output, guards_output)
19684 (token_definitions_output): Prototype them.
19685 * src/parse-skel.y: Add the license notice.
19686 Include output.h and skeleton.h.
19687 (process_skeleton): Returns void, and takes a single parameter.
19688 * src/scan-skel.l: Add the license notice.
19689 Include skeleton.h.
19690 Don't use %option yylineno: it seems that then Flex imagines
19691 REJECT has been used, and therefore it won't reallocate its
19692 buffers (which makes no other sense to me than a bug). It results
19693 in warnings for `unused: yy_flex_realloc'.
19694
9b3add5b
RA
196952001-12-30 Robert Anisko <robert.anisko@epita.fr>
19696
19697 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19698 (MUSCLE_INSERT_PREFIX): ...to there.
19699 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19700 (MUSCLE_INSERT_PREFIX): Move from here...
19701
19702 * src/bison.hairy: Add a section directive. Put braces around muscle
19703 names. This parser skeleton is still broken, but Bison should not
19704 choke on a bad muscle 'syntax'.
19705 * src/bison.simple: Add a section directive. Put braces around muscle
19706 names.
19707
19708 * src/files.h (strsuffix, stringappend): Add declarations.
19709 (tab_extension): Add declaration.
19710 (short_base_name): Add declaration.
19711
19712 * src/files.c (strsuffix, stringappend): No longer static. These
19713 functions are used in the skeleton parser.
19714 (tab_extension): New.
19715 (compute_base_names): Use the computations done in this function
fab5b110 19716 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
19717 names.
19718 (short_base_name): No longer static.
19719
19720 * src/output.c (output_skeleton): New.
19721 (output): Disable call to output_master_parser, and give a try to
19722 a new skeleton handling system.
19723 (guards_output, actions_output): No longer static.
19724 (token_definitions_output, get_lines_number): No longer static.
19725
19726 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
19727
fab5b110 19728 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
19729 parse-skel.y.
19730
19731 * src/parse-skel.y: New file.
19732 * src/scan-skel.l: New file.
19733
b5b61c61
AD
197342001-12-29 Akim Demaille <akim@epita.fr>
19735
19736 %name-prefix is broken.
19737
19738 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
19739 Adjust all dependencies.
19740 * tests/headers.at (export YYLTYPE): Strengthen this test: use
19741 %name-prefix.
19742
19743 Renaming yylval but not yylloc is not consistent. Now we do.
19744
19745 * src/bison.simple: Prefix yylloc if used.
19746 * doc/bison.texinfo (Decl Summary): Document that.
19747
8c9a50be
AD
197482001-12-29 Akim Demaille <akim@epita.fr>
19749
19750 * doc/bison.texinfo: Promote `%long-directive' over
19751 `%long_directive'.
19752 Remove all references to fixed-output-files, yacc is enough.
19753
d99361e6
AD
197542001-12-29 Akim Demaille <akim@epita.fr>
19755
19756 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19757 user prologue. These are defaults.
19758 * tests/actions.at (Mid-rule actions): Make sure the user can
19759 define YYDEBUG and YYERROR_VERBOSE.
19760
b9cecb91
AD
197612001-12-29 Akim Demaille <akim@epita.fr>
19762
19763 * src/output.c (header_output): Don't forget to export YYLTYPE and
19764 yylloc.
19765 * tests/headers.at (export YYLTYPE): New, make sure it does.
19766 * tests/regression.at (%union and --defines, Invalid CPP headers):
19767 Move to...
19768 * tests/headers.at: here.
19769
aea13e97
AD
197702001-12-29 Akim Demaille <akim@epita.fr>
19771
19772 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19773
931394cb
AD
197742001-12-29 Akim Demaille <akim@epita.fr>
19775
19776 * tests/actions.at (Mid-rule actions): Output on a single line
19777 instead of several.
19778
704a47c4
AD
197792001-12-29 Akim Demaille <akim@epita.fr>
19780
19781 * doc/bison.texinfo: Formatting changes.
19782
091e20bb
AD
197832001-12-29 Akim Demaille <akim@epita.fr>
19784
19785 Don't store the token defs in a muscle, just be ready to output it
19786 on command. Now possible via `symbols'. Fixes a memory leak.
19787
19788 * src/output.c (token_definitions_output): New.
19789 (output_parser, header_output): Use it.
19790 * src/reader.c (symbols_save): Remove.
19791
cce71710
AD
197922001-12-29 Akim Demaille <akim@epita.fr>
19793
19794 * src/bison.simple: Do not provide a default for YYSTYPE and
19795 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19796 default.
19797
82c035a8
AD
197982001-12-29 Akim Demaille <akim@epita.fr>
19799
19800 Mid-rule actions are simply... ignored!
19801
19802 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19803 the empty-rule associated to the dummy symbol, not to the host
19804 rule.
19805 * tests/actions.at (Mid-rule actions): New.
19806
8419d367
AD
198072001-12-29 Akim Demaille <akim@epita.fr>
19808
19809 Memory leak.
19810
19811 * src/reader.c (reader): Free grammar.
19812
375d5806
AD
198132001-12-29 Akim Demaille <akim@epita.fr>
19814
19815 Memory leak.
19816
19817 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19818 since it allocates it for each state, although only one is needed.
19819 (allocate_storage): Do it here.
19820
f51cb8ff
AD
198212001-12-29 Akim Demaille <akim@epita.fr>
19822
19823 * src/options.h, src/options.c (create_long_option_table): Rename
19824 as...
19825 (long_option_table_new): this, with a clearer prototype.
19826 (percent_table): Remove, unused,
19827 * src/getargs.c (getargs): Adjust.
19828
29e88316
AD
198292001-12-29 Akim Demaille <akim@epita.fr>
19830
19831 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19832 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19833 as states.
19834
b9f71f19
AD
198352001-12-29 Akim Demaille <akim@epita.fr>
19836
19837 * src/lalr.c (build_relations): Rename `states' as `states1'.
19838 Sorry, I don't understand exactly what it is, no better name...
19839
1a2b5d37
AD
198402001-12-29 Akim Demaille <akim@epita.fr>
19841
19842 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19843 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19844 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19845 as rules.
19846
1cca533e
AD
198472001-12-29 Akim Demaille <akim@epita.fr>
19848
19849 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19850 ago.
19851
c03ae966
AD
198522001-12-29 Akim Demaille <akim@epita.fr>
19853
19854 * src/reader.c, src/reader.h (user_toknums): Remove.
19855 Adjust all users to use symbols[i]->user_token_number.
19856
5a670b1e
AD
198572001-12-29 Akim Demaille <akim@epita.fr>
19858
19859 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19860 Adjust all users to use symbols[i]->prec or ->assoc.
19861
ad949da9
AD
198622001-12-29 Akim Demaille <akim@epita.fr>
19863
19864 * src/reader.c, src/reader.h (tags): Remove.
19865 Adjust all users to use symbols[i]->tag.
19866
0e78e603
AD
198672001-12-29 Akim Demaille <akim@epita.fr>
19868
19869 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19870 and rule_table.
19871 * src/reader.c (packsymbols): Fill this table.
19872 Drop sprec.
19873 * src/conflicts.c (resolve_sr_conflict): Adjust.
19874 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19875 single table.
19876 Use symbols[i]->tag instead of tags[i].
19877
213e640e
AD
198782001-12-29 Akim Demaille <akim@epita.fr>
19879
19880 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19881 In addition, put a comment in there, to replace...
19882 * tests/regression.at (%union and C comments): Remove.
19883
e7b8bef1
AD
198842001-12-29 Akim Demaille <akim@epita.fr>
19885
19886 * tests/regression.at (Web2c Actions): Blindly move the actual
19887 output as expected output. The contents *seem* right to me, but I
19888 can't pretend reading perfectly parser tables... Nonetheless, all
19889 the other tests pass correctly, the table look OK, even though the
19890 presence of `$axiom' is to be noted: AFAICS it is useless (but
19891 harmless).
19892
b68e7744
AD
198932001-12-29 Akim Demaille <akim@epita.fr>
19894
19895 * src/reader.c (readgram): Don't add the rule 0 if there were no
19896 rules read. In other words, add it _after_ having performed
19897 grammar sanity checks.
19898 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19899
78d5bae9
AD
199002001-12-29 Akim Demaille <akim@epita.fr>
19901
19902 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19903 visible, and some states have now a different number.
19904
ff442794
AD
199052001-12-29 Akim Demaille <akim@epita.fr>
19906
19907 * src/reader.c (readgram): Bind the initial rule's lineno to that
19908 of the first rule.
19909 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19910 (Solved SR Conflicts): Adjust rule 0's line number.
19911
610ab194
AD
199122001-12-29 Akim Demaille <akim@epita.fr>
19913
19914 Fix the `GAWK Grammar' failure.
19915
19916 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19917 the reductions of the first state which was mistakenly confused
19918 with the final state because precisely final_state was initialized
19919 to 0.
19920 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19921 now noticed by Bison.
19922 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19923 have a reduction on $default.
19924
29d29c8f
AD
199252001-12-29 Akim Demaille <akim@epita.fr>
19926
19927 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19928 rule line numbers.
19929 * src/closure.c (print_closure): Likewise.
19930 * src/derives.c (print_derives): Likewise.
19931 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19932 now.
19933
7c6b64d0
AD
199342001-12-29 Akim Demaille <akim@epita.fr>
19935
19936 * src/lalr.c (lookaheads_print): New.
19937 (lalr): Call it when --trace-flag.
19938 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19939 are dumped.
19940
3d4daee3
AD
199412001-12-29 Akim Demaille <akim@epita.fr>
19942
19943 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19944 when walking through ritem, even via rule->rhs.
19945 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19946 (useful_production, useless_nonterminals): Likewise.
19947 (reduce_grammar_tables): Likewise, plus update nritems.
19948 * src/nullable.c (set_nullable): Likewise.
19949 * src/lalr.c (build_relations): Likewise.
19950 * tests/sets.at (Nullable): Adjust.
19951 Fortunately, now, the $axiom is no longer nullable.
19952
9e7f6bbd
AD
199532001-12-29 Akim Demaille <akim@epita.fr>
19954
19955 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19956 the 0-sentinel.
19957 * src/gram.c (ritem_longest_rhs): Likewise.
19958 * src/reduce.c (nonterminals_reduce): Likewise.
19959 * src/print_graph.c (print_graph): Likewise.
19960 * src/output.c (output_rule_data): Likewise.
19961 * src/nullable.c (set_nullable): Likewise.
19962
255ef638
AD
199632001-12-29 Akim Demaille <akim@epita.fr>
19964
19965 * src/output.c: Comment changes.
19966
0d8a7363
AD
199672001-12-27 Paul Eggert <eggert@twinsun.com>
19968
19969 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19970 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19971 Sparc, as they were causing more porting problems than the
19972 (minor) performance improvement was worth.
19973
19974 Also, catch up with 1.31's YYSTD.
19975
3db472b9
AD
199762001-12-27 Akim Demaille <akim@epita.fr>
19977
19978 * src/output.c (output_gram): Rely on nritems, not the
19979 0-sentinel. See below.
19980 Use -1 as separator, not 0.
19981 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19982 Rely on -1 as separator in yyrhs, instead of 0.
19983 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19984 twice `Now at end of input', therefore there are two lines less to
19985 expect.
19986
b365aa05
AD
199872001-12-27 Akim Demaille <akim@epita.fr>
19988
19989 * tests/regression.at (Unresolved SR Conflicts):
19990 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19991 below.
19992
30171f79
AD
199932001-12-27 Akim Demaille <akim@epita.fr>
19994
19995 * src/LR0.c (new_state): Recognize the final state by the fact it
19996 is reached by eoftoken.
19997 (insert_start_shifting_state, insert_eof_shifting_state)
19998 (insert_accepting_state, augment_automaton): Remove, since now
19999 these states are automatically computed from the initial state.
20000 (generate_states): Adjust.
20001 * src/print.c: When reporting a rule number to the user, substract
20002 1, so that the axiom rule is rule 0, and the first user rule is 1.
20003 * src/reduce.c: Likewise.
20004 * src/print_graph.c (print_core): For the time being, just as for
20005 the report, depend upon --trace-flags to dump the full set of
20006 items.
20007 * src/reader.c (readgram): Once the grammar read, insert the rule
20008 0: `$axiom: START-SYMBOL $'.
20009 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20010 number of the states has changed (the final state is no longer
20011 necessarily the last), catch up.
20012
75142d45
AD
200132001-12-27 Akim Demaille <akim@epita.fr>
20014
20015 Try to make the use of the eoftoken valid. Given that its value
20016 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20017 is used instead of > 0 where appropriate, (ii), depend upon nritems
20018 instead of the 0-sentinel.
20019
20020 * src/gram.h, src/gram.c (nritems): New.
20021 Expected to be duplication of nitems, but for the time being...
20022 * src/reader.c (packgram): Assert nritems and nitems are equal.
20023 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20024 * src/closure.c (print_closure, print_fderives): Likewise.
20025 * src/gram.c (ritem_print): Likewise.
20026 * src/print.c (print_core, print_grammar): Likewise.
20027 * src/print_graph.c: Likewise.
20028
b7c49edf
AD
200292001-12-27 Akim Demaille <akim@epita.fr>
20030
20031 * src/main.c (main): If there are complains after grammar
20032 reductions, then output the report anyway if requested, then die.
20033 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20034 * src/reader.c (eoftoken): New.
20035 (parse_token_decl): If the token being defined has value `0', it
20036 is the eoftoken.
20037 (packsymbols): No longer hack `tags' to insert `$' by hand.
20038 Be sure to preserve the value of the eoftoken.
20039 (reader): Make sure eoftoken is defined.
20040 Initialize nsyms to 0: now eoftoken is created just like the others.
20041 * src/print.c (print_grammar): Don't special case the eof token.
20042 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20043 lie anyway, albeit pleasant.
20044 * tests/calc.at: Exercise error messages with eoftoken.
20045 Change the grammar so that empty input is invalid.
20046 Adjust expectations.
20047 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20048
ec2da99f
AD
200492001-12-27 Akim Demaille <akim@epita.fr>
20050
20051 * configure.in: Check the protos of strchr ans strspn.
20052 Replace strchr if needed.
20053 * src/system.h: Provide the protos of strchr, strspn and memchr if
20054 missing.
20055 * lib/strchr.c: New.
20056 * src/reader.c (symbols_save): Use strchr.
20057
8adfa272
AD
200582001-12-27 Akim Demaille <akim@epita.fr>
20059
20060 * src/print.c, src/print_graph.c (escape): New.
20061 Use it to quote the TAGS outputs.
20062 * src/print_graph.c (print_state): Now errors are in red, and
20063 reductions in green.
20064 Prefer high to wide: output the state number on a line of its own.
20065
80dac38c
AD
200662001-12-27 Akim Demaille <akim@epita.fr>
20067
20068 * src/state.h, src/state.c (reductions_new): New.
20069 * src/LR0.c (set_state_table): Let all the states have a
20070 `reductions', even if reduced to 0.
20071 (save_reductions): Adjust.
20072 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20073 * src/print.c (print_reductions, print_actions): Adjust.
20074 * src/output.c (action_row): Adjust.
20075
2cec70b9
AD
200762001-12-27 Akim Demaille <akim@epita.fr>
20077
20078 * src/state.h, src/state.c (errs_new, errs_dup): New.
20079 * src/LR0.c (set_state_table): Let all the states have an errs,
20080 even if reduced to 0.
20081 * src/print.c (print_errs, print_reductions): Adjust.
20082 * src/output.c (output_actions, action_row): Adjust.
20083 * src/conflicts.c (resolve_sr_conflict): Adjust.
20084
13ca549a
AD
200852001-12-27 Akim Demaille <akim@epita.fr>
20086
20087 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20088
5092aba5
AD
200892001-12-27 Akim Demaille <akim@epita.fr>
20090
20091 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20092 * src/print.c: here.
20093 (lookaheadset, shiftset): New, used as additional storage by
20094 print_reductions.
20095 (print_results): Adjust.
20096 (print_shifts, print_gotos, print_errs): New, extracted from...
20097 (print_actions): here.
20098 * src/print_graph.c (print_actions): Remove dead code.
20099
11e2beca
AD
201002001-12-27 Akim Demaille <akim@epita.fr>
20101
20102 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20103 `$n' and `@n'.
20104
dac3c910
AD
201052001-12-27 Akim Demaille <akim@epita.fr>
20106
20107 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20108 (build_relations): Adjust.
20109
d0b0fefa
AD
201102001-12-27 Akim Demaille <akim@epita.fr>
20111
20112 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20113 duplication.
20114
adc8c848
AD
201152001-12-27 Akim Demaille <akim@epita.fr>
20116
20117 * src/reader.c (packgram): Catch nitems overflows.
20118
14d293ac
AD
201192001-12-27 Akim Demaille <akim@epita.fr>
20120
20121 * src/files.c, src/files.h (guard_obstack): Remove.
20122 * src/output.c (output): Adjust.
20123 * src/reader.c (parse_braces): New, factoring...
20124 (copy_action, copy_guard): these two which are renamed as...
20125 (parse_action, parse_guard): these.
20126 As a voluntary consequence, using braces around guards is now
20127 mandatory.
20128
f499b062
AD
201292001-12-27 Akim Demaille <akim@epita.fr>
20130
20131 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20132 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20133 members.
20134 (symbol_list_new): Adjust.
20135 (copy_action): action_line is the first line, not the last.
20136 (copy_guard): Just as for actions, store the `action' only, not
20137 the switch/case/break flesh.
20138 Don't parse the user action that might follow the guard, let...
20139 (readgram): do it, i.e., now, there can be an action after a
20140 guard.
20141 In other words the guard is just explicitly optional.
20142 (packgram): Adjust.
20143 * src/output.c (guards_output): New.
20144 (output_parser): Call it when needed.
20145 (output): Also free the guard and attrs obstacks.
20146 * src/files.c, src/files.h (obstack_save): Remove.
20147 (output_files): Remove.
20148 As a result, if one needs the former `.act' file, using an
20149 appropriate skeleton which requires actions and guards is now
20150 required.
20151 * src/main.c (main): Adjust.
20152 * tests/semantic.at: New.
20153 * tests/regression.at: Use `input.y' as input file name.
20154 Avoid 8+3 problems by requiring input.c when the test needs the
20155 parser.
20156
d945f5cd
AD
201572001-12-27 Akim Demaille <akim@epita.fr>
20158
20159 * src/reader.c (symbol_list_new): Be sure to initialize all the
20160 fields.
20161
d200e455
AD
201622001-12-27 Akim Demaille <akim@epita.fr>
20163
20164 All the hacks using a final pseudo state are now useless.
20165
20166 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20167 * src/lalr.c (nLA): New.
20168 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20169 instead of lookaheadsp from the pseudo state (nstate + 1).
20170
f9507c28
AD
201712001-12-27 Akim Demaille <akim@epita.fr>
20172
20173 * src/output.c (action_row, token_actions): Use a state_t instead
20174 of a integer, and nlookaheads instead of the following state's
20175 lookaheadsp.
20176
065fbd27
AD
201772001-12-27 Akim Demaille <akim@epita.fr>
20178
20179 * src/conflicts.c (log_resolution, flush_shift)
20180 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20181 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20182 (conflicts_print, print_reductions): Use a state_t instead of an
20183 integer when referring to a state.
20184 As much as possible, depend upon nlookaheads, instead of the
20185 `lookaheadsp' member of the following state (since lookaheads of
20186 successive states are successive, the difference between state n + 1
20187 and n served as the number of lookaheads for state n).
20188 * src/lalr.c (add_lookback_edge): Likewise.
20189 * src/print.c (print_core, print_actions, print_state)
20190 (print_results): Likewise.
20191 * src/print_graph.c (print_core, print_actions, print_state)
20192 (print_graph): Likewise.
20193 * src/conflicts.h: Adjust.
20194
1b177bd7
AD
201952001-12-27 Akim Demaille <akim@epita.fr>
20196
20197 * src/bison.hairy: Formatting/comment changes.
20198 ANSIfy.
20199 Remove `register' indications.
20200 Add plenty of `static'.
20201
7742ddeb
AD
202022001-12-27 Akim Demaille <akim@epita.fr>
20203
20204 * src/output.c (prepare): Drop the muscle `ntbase' which
20205 duplicates ntokens.
20206 * src/bison.simple: Formatting/comment changes.
20207 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20208 is an undocumented synonym.
20209
1fa14068
AD
202102001-12-22 Akim Demaille <akim@epita.fr>
20211
20212 * src/output.c (output_table_data): Change the prototype to use
20213 `int' for array ranges: some invocations do pass an int, not a
20214 short.
20215 Reported by Wayne Green.
20216
b9752825
AD
202172001-12-22 Akim Demaille <akim@epita.fr>
20218
20219 Some actions of web2c.y are improperly triggered.
20220 Reported by Mike Castle.
20221
20222 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20223 * tests/regression.at (Web2c): Rename as...
20224 (Web2c Report): this.
20225 (Web2c Actions): New.
20226
776209d6
AD
202272001-12-22 Akim Demaille <akim@epita.fr>
20228
20229 Reductions in web2c.y are improperly reported.
20230 Reported by Mike Castle.
20231
20232 * src/conflicts.c (print_reductions): Fix.
20233 * tests/regression.at (Web2c): New.
20234
275fc3ad
AD
202352001-12-18 Akim Demaille <akim@epita.fr>
20236
20237 Some host fail on `assert (!"foo")', which expands to
20238 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20239 Reported by Nelson Beebee.
20240
20241 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20242 `#define it_succeeded 0' and `assert (it_succeeded)'.
20243
897668ee
MA
202442001-12-17 Marc Autret <autret_m@epita.fr>
20245
20246 * src/bison.simple: Don't hard code the skeleton line and filename.
20247 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20248 New line counter 'skeleton_line' (skeleton-line muscle).
20249
ab3399e0
PE
202502001-12-17 Paul Eggert <eggert@twinsun.com>
20251
20252 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20253 YYDEBUG must be defined to a nonzero value.
20254
20255 * src/bison.simple (yytname): Do not assume that the user defines
20256 YYDEBUG to a properly parenthesized expression.
20257
3877f72b
AD
202582001-12-17 Akim Demaille <akim@epita.fr>
20259
20260 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20261 nlookaheads is a new member.
20262 Adjust all users.
20263 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20264 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20265 state.
776209d6 20266
331dbc1b
AD
202672001-12-17 Akim Demaille <akim@epita.fr>
20268
20269 * src/files.h, src/files.c (open_files, close_files): Remove.
20270 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20271 let...
20272 * src/reader.c (reader): Do it.
776209d6 20273
be750e4c
AD
202742001-12-17 Akim Demaille <akim@epita.fr>
20275
20276 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 20277
709ae8c6
AD
202782001-12-17 Akim Demaille <akim@epita.fr>
20279
20280 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20281 (flush_reduce): New.
20282 (resolve_sr_conflict): Adjust.
776209d6 20283
f87685c3
AD
202842001-12-17 Akim Demaille <akim@epita.fr>
20285
20286 * src/output.c (output_obstack): Be static and rename as...
20287 (format_obstack): this, to avoid any confusion with files.c's
20288 output_obstack.
20289 * src/reader.h (muscle_obstack): Move to...
20290 * src/output.h: here, since it's defined in output.c.
20291
837491d8
AD
202922001-12-17 Akim Demaille <akim@epita.fr>
20293
20294 * src/output.c (action_row, save_column, default_goto)
20295 (sort_actions, matching_state, pack_vector): Better variable
20296 locality.
20297
796d61fb
AD
202982001-12-17 Akim Demaille <akim@epita.fr>
20299
20300 * src/output.c: Various formatting changes.
776209d6 20301
64d15509
AD
203022001-12-17 Akim Demaille <akim@epita.fr>
20303
20304 * src/files.c (output_files): Free the output_obstack.
20305 * src/main.c (main): Call print and print_graph conditionally.
20306 * src/print.c (print): Work unconditionally.
20307 * src/print_graph.c (print_graph): Work unconditionally.
20308 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20309
fbc8ecb7
MA
203102001-12-16 Marc Autret <autret_m@epita.fr>
20311
20312 * src/output.c (actions_output): Fix. When we use %no-lines,
20313 there is one less line per action.
20314
f0440388
MA
203152001-12-16 Marc Autret <autret_m@epita.fr>
20316
20317 * src/bison.simple: Remove a useless #line directive.
20318 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20319 * src/output.c (get_lines_number): New.
776209d6 20320 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
20321 output muscles.
20322 Fix line numbering.
20323 (actions_output): Computes the number of lines taken by actions.
20324 (output_master_parser): Insert new skeleton which is the name of
20325 the output parser file name.
20326
a79986b8
MA
203272001-12-15 Marc Autret <autret_m@epita.fr>
20328
20329 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20330
4ec8e00f
MA
203312001-12-15 Marc Autret <autret_m@epita.fr>
20332
20333 * src/output.c (output_gram): Keep track of the hairy one.
20334
1a4648ff
AD
203352001-12-15 Akim Demaille <akim@epita.fr>
20336
20337 Make `make distcheck' work.
20338
20339 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20340 system.h which uses libgettext.h.
20341
9c2c67e6
AD
203422001-12-15 Akim Demaille <akim@epita.fr>
20343
20344 * src/nullable.c (set_nullable): Useless rules must be skipped,
20345 otherwise, since we range over their symbols, we might look at a
20346 nonterminal which no longer ``exists'', i.e., it is not counted in
20347 `nvars', hence we overflow our arrays.
20348
93ede233
AD
203492001-12-15 Akim Demaille <akim@epita.fr>
20350
20351 The header can also be produced directly, without any obstack!
20352 Yahoo!
20353
20354 * src/files.c, src/files.h (defines_obstack): Remove.
20355 (compute_header_macro): Global.
20356 (defines_obstack_save): Remove.
20357 * src/reader.c (parse_union_decl): No longer output to
20358 defines_obstack: its content can be found in the `stype' muscle
20359 anyway.
20360 (output_token_translations): Merge into...
20361 (symbols_output): this.
20362 Rename as...
20363 (symbols_save): this.
20364 (reader): Adjust.
20365 * src/output.c (header_output): New.
20366 (output): Call it.
20367
2666f928
AD
203682001-12-15 Akim Demaille <akim@epita.fr>
20369
20370 * src/reader.c (parse_union_decl): Instead of handling two obstack
20371 simultaneously, use one to define the `stype' muscle, and use the
20372 value of the latter to fill defines_obstack.
20373 (copy_comment): Remove.
20374 (copy_comment2): Work for a single obstack.
20375 Rename as...
20376 (copy_comment): this.
20377
428046f8
AD
203782001-12-15 Akim Demaille <akim@epita.fr>
20379
20380 * src/lex.c, src/lex.h (xgetc): No longer static.
20381 * src/reader.c (parse_union_decl): Revamp.
20382
ea52d706
AD
203832001-12-15 Akim Demaille <akim@epita.fr>
20384
20385 Still making progress in separating Bison into (i) input, (ii)
20386 process, (iii) output: now we can directly output the parser file
20387 without using table_obstack at all.
20388
20389 * src/files.c, src/files.h (table_obstack): Bye bye.
20390 (parser_file_name): New.
20391 * src/files.c (compute_output_file_names): Compute it.
20392 * src/output.c (actions_output, output_parser)
20393 (output_master_parser): To a file instead of an obstack.
20394
3f96f4dc
AD
203952001-12-15 Akim Demaille <akim@epita.fr>
20396
20397 Attach actions to rules, instead of pre-outputting them to
20398 actions_obstack.
20399
20400 * src/gram.h (rule_t): action and action_line are new members.
20401 * src/reader.c (symbol_list): Likewise.
20402 (copy_action): Save the actions within the rule.
20403 (packgram): Save them in rule_table.
20404 * src/output.c (actions_output): New.
20405 (output_parser): Use it on `%%actions'.
20406 (output_rule_data): Don't free rule_table.
20407 (output): Do it.
20408 (prepare): Don't save the `action' muscle.
20409 * src/bison.simple: s/%%action/%%actions/.
20410
51576fb3
AD
204112001-12-15 Akim Demaille <akim@epita.fr>
20412
20413 * src/reader.c (copy_action): When --yacc, don't append a `;'
20414 to the user action: let it fail if lacking.
dee049eb 20415 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 20416
2648a72d
AD
204172001-12-14 Akim Demaille <akim@epita.fr>
20418
20419 * src/lex.c (literalchar): Simply return the char you decoded, non
20420 longer mess around with obstacks and int pointers.
20421 Adjust all callers.
20422
92790e5b
AD
204232001-12-14 Akim Demaille <akim@epita.fr>
20424
20425 * src/lex.c (literalchar): Don't escape the special characters,
20426 just decode them, and keep them as char (before, eol was output as
20427 the 2 char string `\n' etc.).
20428 * src/output.c (output_rule_data): Use quotearg to output the
20429 token strings.
20430
927c1557
PE
204312001-12-13 Paul Eggert <eggert@twinsun.com>
20432
20433 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20434 Do not infringe on the global user namespace when using C++.
20435 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20436 All uses of `fprintf' and `stderr' changed.
20437
20438 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20439
ed8e1f68
AD
204402001-12-13 Akim Demaille <akim@epita.fr>
20441
20442 The computation of nullable is broken: it doesn't handle empty
20443 RHS's properly.
20444
20445 * tests/torture.at (GNU AWK Grammar): New.
20446 * tests/sets.at (Nullable): New.
20447 * src/nullable.c (set_nullable): Instead of blindly looping over
20448 `ritems', loop over the rules, and then over their rhs's.
20449
20450 Work around Autotest bugs.
20451
20452 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20453 frame, because Autotest understand lines starting with a `+' as
20454 traces from the shell. Then, they are not processed properly.
20455 Admittedly an Autotest bug, but we don't have time to wait for
20456 Autotest to catch up.
20457 * tests/regression.at (Broken Closure): Adjust to the new table
20458 frames.
20459 Move to...
20460 * tests/sets.at: here.
20461
cb581495
AD
204622001-12-13 Akim Demaille <akim@epita.fr>
20463
20464 * src/closure.c (closure): Use nrules instead of playing tricks
20465 with BITS_PER_WORD.
20466
2e729273
AD
204672001-12-13 Akim Demaille <akim@epita.fr>
20468
20469 * src/print.c (print_actions): Output the handling of `$' as the
20470 traces do: shifting the token EOF. Before EOF was treated as a
20471 nonterminal.
20472 * tests/regression.at: Adjust some tests.
20473 * src/print_graph.c (print_core): Complete the set of items via
20474 closure. The next-to-final and final states are still unsatisfying,
20475 but that's to be addressed elsewhere.
20476 No longer output the rule numbers, but do output the state number.
20477 A single loop for the shifts + gotos is enough, but picked a
20478 distinct color for each.
20479 (print_graph): Initialize and finalize closure.
20480
107f7dfb
AD
204812001-12-13 Akim Demaille <akim@epita.fr>
20482
20483 * src/reader.c (readgram): Remove dead code, an strip useless
20484 braces.
20485 (get_type): Remove, unused.
20486
9b53a24f
AD
204872001-12-12 Akim Demaille <akim@epita.fr>
20488
20489 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20490 on that of lib/error.c.
20491
dbfb6dcd
AD
204922001-12-12 Akim Demaille <akim@epita.fr>
20493
20494 Some hosts don't like `/' in includes.
20495
20496 * src/system.h: Include libgettext.h without qualifying the path.
20497 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20498 $(top_srcdir).
20499
c25fb648
MA
205002001-12-11 Marc Autret <autret_m@epita.fr>
20501
20502 * src/output.c (output_parser): Remove useless muscle.
20503
710ddc4f
MA
205042001-12-11 Marc Autret <autret_m@epita.fr>
20505
20506 * src/bison.simple: Remove #line just before %%epilogue. It
20507 is now handled in ...
20508 * src/reader.c (read_additionnal_code): Add the output of a
20509 #line for the epilogue.
20510
e83d80b8
MA
205112001-12-10 Marc Autret <autret_m@epita.fr>
20512
927c1557 20513 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
20514 replace precedent remove.
20515 * src/bison.simple: Remove #line before %%prologue because
20516 %%input-line is wrong at this time.
20517
971d5158
MA
205182001-12-10 Marc Autret <autret_m@epita.fr>
20519
20520 * src/reader.c (symbols_output): Clean up.
927c1557 20521 * src/output.c (output_gram, output): Clean up.
971d5158 20522
5edafffd
AD
205232001-12-10 Akim Demaille <akim@epita.fr>
20524
20525 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20526 * src/LR0.c (set_state_table): here.
20527 * src/lalr.c (lalr): Call it.
20528
0279f8e9
AD
205292001-12-10 Akim Demaille <akim@epita.fr>
20530
20531 * src/state.h (shifts): Remove the `number' member: shifts are
20532 attached to state, hence no longer need to be labelled with a
20533 state number.
20534
190c4f5f
AD
205352001-12-10 Akim Demaille <akim@epita.fr>
20536
20537 Now that states have a complete set of members, the linked list of
20538 shifts is useless: just fill directly the state's shifts member.
20539
20540 * src/state.h (shifts): Remove the `next' member.
20541 * src/LR0.c (first_state, last_state): Remove.
20542 Adjust the callers.
20543 (augment_automaton): Don't look for the shifts that must be added
20544 a shift on EOF: it is those of the state we looked for! But now,
20545 since shifts are attached, it is no longer needed to looking
20546 merely by its id: its number.
20547
2a73b93d
AD
205482001-12-10 Akim Demaille <akim@epita.fr>
20549
20550 * src/LR0.c (augment_automaton): Better variable locality.
20551 Remove an impossible branch: if there is a state corresponding to
20552 the start symbol being shifted, then there is shift for the start
20553 symbol from the initial state.
20554
74392f6a
AD
205552001-12-10 Akim Demaille <akim@epita.fr>
20556
20557 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20558 only when appropriate: when insert_start_shifting_state' is not
20559 invoked.
20560 * tests/regression.at (Rule Line Numbers): Adjust.
20561
37c82725
AD
205622001-12-10 Akim Demaille <akim@epita.fr>
20563
20564 * src/LR0.c (augment_automaton): Now that all states have shifts,
20565 merge the two cases addition shifts to the initial state.
20566
6a164e0c
AD
205672001-12-10 Akim Demaille <akim@epita.fr>
20568
20569 * src/lalr.c (set_state_table): Move to...
20570 * src/LR0.c: here.
20571 * src/lalr.c (lalr): Don't call it...
20572 * src/LR0.c (generate_states): do it.
20573 * src/LR0.h (first_state): Remove, only the table is used.
20574
7215de24
AD
205752001-12-10 Akim Demaille <akim@epita.fr>
20576
20577 * src/LR0.h (first_shift, first_reduction): Remove.
20578 * src/lalr.c: Don't use first_shift: find shifts through the
20579 states.
20580
80e25d4d
AD
205812001-12-10 Akim Demaille <akim@epita.fr>
20582
20583 * src/LR0.c: Attach shifts to states as soon as they are
20584 computed.
20585 * src/lalr.c (set_state_table): Instead of assigning shifts to
20586 state, just assert that the mapping was properly done.
20587
0ab3728b
AD
205882001-12-10 Akim Demaille <akim@epita.fr>
20589
20590 * src/LR0.c (insert_start_shift): Rename as...
20591 (insert_start_shifting_state): this.
20592 (insert_eof_shifting_state, insert_accepting_state): New.
20593 (augment_automaton): Adjust.
20594 Better locality of the variables.
20595 When looking if the start_symbol is shifted from the initial
20596 state, using `while (... symbol != start_symbol ...)' sounds
20597 better than `while (... symbol < start_symbol ...)': If fail
20598 to see how the order between symbols could be relevant!
20599
78af9bbc
AD
206002001-12-10 Akim Demaille <akim@epita.fr>
20601
20602 * src/getargs.h: Don't declare `spec_name_prefix' and
20603 `spec_file_prefix', declared by src/files.h.
20604 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20605 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
20606 * src/output.c (prepare): Adjust.
20607 * src/reader.c (symbols_output): Likewise.
20608 * src/vmsgetargs.c: Vaguely adjust, but who cares?
20609
bdef2a41
AD
206102001-12-10 Akim Demaille <akim@epita.fr>
20611
20612 * src/muscle_tab.c (muscle_init): NULL is a better default than
20613 `"0"'.
20614
3735969c
AD
206152001-12-10 Akim Demaille <akim@epita.fr>
20616
20617 * src/reader.c (reader): Calling symbols_output once is enough.
20618
49701457
AD
206192001-12-10 Akim Demaille <akim@epita.fr>
20620
20621 Now that states have a complete set of members, the linked list of
20622 reductions is useless: just fill directly the state's reductions
20623 member.
20624
20625 * src/state.h (struct reductions): Remove member `number' and
20626 `next'.
20627 * src/LR0.c (first_reduction, last_reduction): Remove.
20628 (save_reductions): Don't link the new reductions, store them in
20629 this_state.
20630 * src/lalr.c (set_state_table): No need to attach reductions to
20631 states, it's already done.
20632 * src/output.c (output_actions): No longer free the shifts, then
20633 the reductions, then the states: free all the states and their
20634 members.
20635
0edad749
AD
206362001-12-10 Akim Demaille <akim@epita.fr>
20637
20638 * src/options.c (OPTN, DRTV, BOTH): New.
20639 (option_table): Use them.
20640
0edad749
AD
20641 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
20642 the job of system.h.
20643 * src/options.c: Don't include stdio.h and xalloc.h for the same
20644 reasons.
20645
5449dd0f
AD
206462001-12-10 Akim Demaille <akim@epita.fr>
20647
20648 * src/output.c (output, prepare): Make sure the values of the
20649 muscles `action' and `prologue' are 0-terminated.
20650
a870c567
AD
206512001-12-10 Akim Demaille <akim@epita.fr>
20652
20653 Clean up GCC warnings.
20654
20655 * src/reader.c (copy_action): `buf' is not used.
20656 (parse_skel_decl): Be static.
20657 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
20658 * src/options.h (create_long_option_table): Have a real prototype.
20659 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
20660 (hash_delete_at): Return const void *.
20661 Adjust casts to preserve the const.
20662
80df8768
AD
206632001-12-10 Akim Demaille <akim@epita.fr>
20664
20665 * configure.in: Require 2.52g.
20666 M4 is not needed, but AUTOM4TE is.
20667 * m4/m4.m4: Remove.
20668 * tests/Makefile.am: Adjust.
20669
f693ad14
AD
206702001-12-10 Akim Demaille <akim@epita.fr>
20671
20672 One structure for states is enough, even though theoretically
20673 there are LR(0) states and LALR(1) states.
20674
20675 * src/lalr.h (state_t): Remove.
20676 (state_table): Be state_t **, not state_t *.
20677 * src/state.h (core, CORE_ALLOC): Rename as...
20678 (state_t, STATE_ALLOC): this.
20679 Add the LALR(1) members: shifts, reductions, errs.
20680 * src/LR0.c (state_table): Rename as...
20681 (state_hash): this, to avoid name clashes with the global
20682 `state_table'.
20683 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
20684 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
20685
74ffbcb6
AD
206862001-12-10 Akim Demaille <akim@epita.fr>
20687
20688 Bison dumps core on bash.y.
20689 Reported by Pascal Bart.
20690
20691 * src/warshall.c (bitmatrix_print): New.
20692 (TC): Use it.
ba0fe3c7 20693 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
20694 j must be the outer loop.
20695 * tests/regression.at (Broken Closure): New.
20696
07708e19
AD
206972001-12-05 Akim Demaille <akim@epita.fr>
20698
20699 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
20700 its argument.
ba1ecc07 20701 Reported by Peter Hamorsky.
07708e19 20702
92b16366
AD
207032001-12-05 Akim Demaille <akim@epita.fr>
20704
20705 * src/conflicts.c (err_table): Remove.
20706 (resolve_sr_conflict): Adjust.
20707 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
20708 Rename as...
20709 (state_t.reductions, state_t.shifts): this.
20710
076ab033
AD
207112001-12-05 Akim Demaille <akim@epita.fr>
20712
20713 * src/reduce.c (reduce_grammar_tables): No longer disable the
20714 removal of useless rules via CPP but via `if (0)', so that the
20715 compiler still check the code is valid.
20716 For instance, it should have noticed `rline' no longer exists: use
20717 the `line' member of rule_t.
20718 * src/gram.c (dummy, rline): Remove, unused.
20719
3843c413
AD
207202001-12-05 Akim Demaille <akim@epita.fr>
20721
20722 * src/output.c (pack_vector): Use assert, not berror.
20723 * src/main.c (berror): Remove, unused.
20724
43168960
AD
207252001-12-05 Akim Demaille <akim@epita.fr>
20726
20727 New experimental feature: if --verbose --trace output all the
20728 items of a state, not only its kernel.
20729
20730 * src/print.c (print_core): If `trace_flag', then invoke closure
20731 before outputting the items of the state (print_core is no longer
20732 a correct name them).
20733 (print_results): Invoke new_closure/free_closure if needed.
20734
b2872512
AD
207352001-12-05 Akim Demaille <akim@epita.fr>
20736
20737 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
20738 * src/closure.c, src/closure.h (itemsetsize): Rename as...
20739 (nitemset): for consistency with the rest of the project.
20740
23cbcc6c
AD
207412001-12-05 Akim Demaille <akim@epita.fr>
20742
20743 * src/closure.c (print_closure): Improve.
20744 (closure): Use it for printing input and output.
20745
03ec521c
AD
207462001-12-05 Akim Demaille <akim@epita.fr>
20747
20748 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
20749 indexed by nonterminals.
20750
3a7456dd
AD
207512001-12-05 Akim Demaille <akim@epita.fr>
20752
20753 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
20754 what it was!).
20755 * src/warshall.h: Remove accidental duplication of the content.
20756
1cbcf2e7
AD
207572001-12-05 Akim Demaille <akim@epita.fr>
20758
20759 * src/closure.c (set_fderives): De-obfuscate.
20760
84182270
AD
207612001-12-05 Akim Demaille <akim@epita.fr>
20762
20763 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20764
3f6f053c
AD
207652001-12-05 Akim Demaille <akim@epita.fr>
20766
20767 * src/closure.c (set_firsts): De-obfuscate.
20768
7a5350ba
AD
207692001-12-05 Akim Demaille <akim@epita.fr>
20770
20771 * src/output.c (action_row): De-obfuscate
20772 using the good o' techniques: arrays not pointers, variable
20773 locality, BITISSET, RESETBIT etc.
20774
d954473d
AD
207752001-12-05 Akim Demaille <akim@epita.fr>
20776
20777 Pessimize the code to simplify it: from now on, all the states
20778 have a valid SHIFTS, which NSHIFTS is possibly 0.
20779
20780 * src/LR0.c (shifts_new): Be global and move to..
20781 * src/state.c, src/state.h: here.
20782 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20783 * src/print_graph: Adjust.
20784
9839bbe5
AD
207852001-12-05 Akim Demaille <akim@epita.fr>
20786
20787 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20788 * src/conflicts.c: Use it.
20789 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20790 incorrectly ``simplified''.
20791
9f136c07
AD
207922001-12-05 Akim Demaille <akim@epita.fr>
20793
20794 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20795 using the good o' techniques: arrays not pointers, variable
20796 locality, BITISSET, RESETBIT etc.
20797
b608206e
AD
207982001-12-05 Akim Demaille <akim@epita.fr>
20799
20800 * src/state.h (SHIFT_SYMBOL): New.
20801 * src/conflicts.c: Use it to deobfuscate.
20802
52afa962
AD
208032001-12-05 Akim Demaille <akim@epita.fr>
20804
20805 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20806 (print_reductions): De-obfuscate using the good o' techniques:
20807 arrays not pointers, variable locality, BITISSET.
20808
e74dc321
AD
208092001-12-05 Akim Demaille <akim@epita.fr>
20810
20811 * src/conflicts.c (print_reductions): Arrays, not pointers.
20812 Use BITISSET.
20813
768fca83
AD
208142001-12-05 Akim Demaille <akim@epita.fr>
20815
20816 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20817
a17e599f
AD
208182001-12-05 Akim Demaille <akim@epita.fr>
20819
20820 * src/conflicts.c (print_reductions): Improve variable locality.
20821
a04bc341
AD
208222001-12-05 Akim Demaille <akim@epita.fr>
20823
20824 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20825
c8ea038e
AD
208262001-12-05 Akim Demaille <akim@epita.fr>
20827
20828 * src/conflicts.c (print_reductions): Improve variable locality.
20829
aa2aab3c
AD
208302001-12-05 Akim Demaille <akim@epita.fr>
20831
20832 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20833 * src/lalr.c: Use them.
20834
b178c8cc
AD
208352001-12-05 Akim Demaille <akim@epita.fr>
20836
20837 * src/LR0.c (augment_automaton): Formatting changes.
20838 Better variable locality.
20839
f67d13aa
AD
208402001-12-05 Akim Demaille <akim@epita.fr>
20841
20842 * src/lalr.c (matrix_print): New.
20843 (transpose): Use it.
20844 Use arrays instead of pointers.
20845
c2713865
AD
208462001-12-05 Akim Demaille <akim@epita.fr>
20847
20848 * src/lalr.c (maxrhs): Move to...
20849 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20850 * src/lalr.c (build_relations): Adjust.
20851
9887c18a
AD
208522001-12-05 Akim Demaille <akim@epita.fr>
20853
20854 * src/lalr.c (transpose): Free the memory allocated to the
20855 argument, as it is replaced by the results by the unique caller.
20856 (build_relations): Merely invoke transpose: it handles the memory
20857 deallocation.
20858 Improve variable locality.
20859 Avoid variables used as mere abbreviations.
20860 (compute_lookaheads): Use arrays instead of pointers.
20861
4d4f699c
AD
208622001-12-05 Akim Demaille <akim@epita.fr>
20863
20864 * src/lalr.c (initialize_F): Improve variable locality.
20865 Avoid variables used as mere abbreviations.
20866
80a69750
AD
208672001-12-05 Akim Demaille <akim@epita.fr>
20868
20869 * src/derives.c (print_derives): Display the ruleno.
20870 * src/lalr.c (initialize_F, transpose): Better variable locality
20871 to improve readability.
20872 Avoid variables used as mere abbreviations.
20873
fe961097
AD
208742001-12-05 Akim Demaille <akim@epita.fr>
20875
20876 * src/lalr.c (traverse): Use arrays instead of pointers.
20877
e3e4e814
AD
208782001-12-05 Akim Demaille <akim@epita.fr>
20879
20880 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20881 the handling of squeue.
20882 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20883
630e182b
AD
208842001-12-05 Akim Demaille <akim@epita.fr>
20885
20886 Because useless nonterminals are now kept alive (instead of being
20887 `destroyed'), we now sometimes examine them, and store information
20888 related to them. Hence we need to know their number, and adjust
20889 memory allocations.
20890
20891 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20892 static.
20893 * src/LR0.c (allocate_itemsets): The memory allocated to
20894 `symbol_count' was used for two different purpose: once to count
20895 the number of occurrences of each symbol, and later reassigned to
20896 `shift_symbol', containing the symbol that can be shifted from a
20897 given state.
20898 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20899 only, and...
20900 (new_itemsets): Allocate `shift_symbol' here.
20901 (allocate_itemsets): symbol_count includes useless nonterminals.
20902 Make room for them.
20903 (free_storage): Use `free', not `XFREE', for pointers that cannot
20904 be null.
20905
81b51460
AD
209062001-12-05 Akim Demaille <akim@epita.fr>
20907
20908 * src/nullable.c (set_nullable): Deobfuscate the handling of
20909 ritem.
20910 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20911
3067fbef
AD
209122001-12-05 Akim Demaille <akim@epita.fr>
20913
20914 * src/gram.c, src/gram.h (ritem_print): New.
20915 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20916 (This useless function was defined only to work around VMS linkers
20917 that can't handle compilation units with variables only).
20918 * src/reduce.c (dump_grammar): Use it to trace the construction of
20919 ritem.
20920
c2bea5f9
PE
209212001-12-04 Paul Eggert <eggert@twinsun.com>
20922
7d27c823
PE
20923 * src/bison.simple (union yyalloc): Change member names
20924 to be the same as the stack names.
20925 (yyparse): yyptr is now union yyalloc *, not char *.
20926 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20927 and may generate better code on some machines.
c2bea5f9
PE
20928 (yystpcpy): Use prototype if __STDC__ is defined, not just
20929 if __cplusplus is defined.
35687a9d 20930
2c8a9dfa
AD
209312001-11-30 Akim Demaille <akim@epita.fr>
20932
20933 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20934 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20935 Gettext doesn't compile cleanly, and dies with -Werror.
20936 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20937 Include WARNING_CFLAGS here.
20938 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20939 before being defined.
20940
f4e421e6
AD
209412001-11-27 Paul Eggert <eggert@twinsun.com>
20942
20943 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20944 First arg is int, not unsigned.
20945 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20946 (SIZE_MAX, UINT_MAX): New macros.
20947 (quotearg_n_options): Abort if N is negative.
20948 Avoid overflow check on hosts where size_t is 64 bits and int
20949 is 32 bits, as overflow is impossible there.
20950 Fix off-by-one typo that caused unnecessary reallocation.
20951
7093d0f5
AD
209522001-11-29 Paul Eggert <eggert@twinsun.com>
20953
20954 Name space cleanup in generated parser.
20955
20956 * doc/bison.texinfo (Bison Parser): Discuss system headers
20957 and their effect on the user name space.
20958
20959 * src/bison.simple:
20960 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20961 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20962 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20963
20964 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20965 on user names when possible.
20966
20967 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20968 Simplify test for whather <alloca.h> exists.
20969
20970 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20971
20972 (<stdio.h>): Include if YYDEBUG.
20973
20974 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20975 ! defined (yyoverflow) && ! defined (yymemcpy).
20976
20977 (yymemcpy, yyparse): Rename local variables as needed so that
20978 they all begin with 'yy'.
20979
20980 (yystrlen, yystpcpy): New functions.
20981
20982 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20983 All uses changed.
20984
20985 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20986 instead of relying on string.h functions. Use YYSTACK_ALLOC
20987 and YYSTACK_FREE instead of malloc and free.
20988
fd51e5ff
AD
209892001-11-30 Akim Demaille <akim@epita.fr>
20990
20991 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20992 before their first uses.
20993 (YYBISON, YYPURE): Move to the top of the output.
20994
7d13ff5f
AD
209952001-11-30 Akim Demaille <akim@epita.fr>
20996
20997 * tests/reduce.at (Useless Nonterminals): Fix.
20998
892a3995
AD
209992001-11-30 Akim Demaille <akim@epita.fr>
21000
21001 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21002 if body instead of `;' to pacify GCC's warnings.
21003
68f1e3ed
AD
210042001-11-30 Akim Demaille <akim@epita.fr>
21005
21006 Instead of mapping the LHS of unused rules to -1, keep the LHS
21007 valid, but flag the rules as invalid.
21008
21009 * src/gram.h (rule_t): `useful' is a new member.
21010 * src/print.c (print_grammar): Adjust.
21011 * src/derives.c (set_derives): Likewise.
21012 * src/reader.c (packgram, reduce_output): Likewise.
21013 * src/reduce.c (reduce_grammar_tables): Likewise.
21014 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21015
d2d1b42b
AD
210162001-11-30 Akim Demaille <akim@epita.fr>
21017
21018 * src/reduce.c (reduce_output): Formatting changes.
21019 * src/print.c (print_results, print_grammar): Likewise.
21020 * tests/regression.at (Rule Line Numbers)
21021 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21022
760b53a8
AD
210232001-11-30 Akim Demaille <akim@epita.fr>
21024
21025 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21026 useless nonterminals, move them at the end of the symbol arrays.
21027 (reduce_output): Adjust.
21028 * tests/reduce.at (Useless Nonterminals): Adjust.
21029
00238958
AD
210302001-11-30 Akim Demaille <akim@epita.fr>
21031
21032 * src/reduce.c: Various comment/formatting changes.
21033 (nonterminals_reduce): New, extracted from...
21034 (reduce_grammar_tables): here.
21035 (reduce_grammar): Call nonterminals_reduce.
21036
396452de
PE
210372001-11-29 Paul Eggert <eggert@twinsun.com>
21038
21039 * src/bison.simple (YYSTACK_REALLOC): Remove.
21040 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21041 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21042 New macros.
21043 (union yyalloc): New type.
21044 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21045 an arbitrary restriction on hosts where size_t is wider than int.
21046
21047 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21048 a parser stack overflow. Allocate just one block of memory for all
21049 three stacks, instead of allocating three blocks; this typically is
21050 faster and reduces fragmentation.
21051
21052 Do not limit the number of items in the stack to a value that fits
21053 in 'int', as this is an arbitrary limit on hosts with 64-bit
21054 size_t and 32-bit int.
21055
147e184c
MA
210562001-11-29 Marc Autret <autret_m@epita.fr>
21057
21058 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21059 of defining YYERROR_VERBOSE.
21060 [AT_DATA]: $4 is now out of C declarations in the prologue.
21061
426cf563
MA
210622001-11-28 Marc Autret <autret_m@epita.fr>
21063
21064 * src/reader.c (parse_dquoted_param): New.
21065 (parse_skel_decl): Use it.
21066 * src/lex.h: Add its prototype.
21067 * src/lex.c (literalchar): Become not static.
21068
c7925b99
MA
210692001-11-28 Marc Autret <autret_m@epita.fr>
21070
21071 * src/output.h: And put its extern declaration here.
21072 * src/output.c (error_verbose): Define here.
21073 (prepare): Echo name modification.
21074 * src/getargs.h: Clean its extern declaration.
21075 * src/getargs.c (error_verbose_flag): Remove.
21076 (getargs): Remove case 'e'.
21077 * src/options.c (option_table): 'error-verbose' is now seen as simple
21078 percent option.
21079 Include output.h.
21080
21081 * src/reader.c (read_declarations): Remove case tok_include.
21082 (parse_include_decl): Remove.
21083 * src/lex.h (token_t): Remove tok_include.
21084 * src/options.c (option_table): 'include' is now a simple command line
21085 option.
21086
5b5d1929
MA
210872001-11-28 Marc Autret <autret_m@epita.fr>
21088
21089 * src/bison.simple: Adjust muscle names.
21090 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21091 * src/output.c (prepare): s/_/-/ for the muscles names.
21092 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21093
8850be4b
MA
210942001-11-28 Marc Autret <autret_m@epita.fr>
21095
21096 * src/bison.simple: Fix debug.
21097 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21098
4a38e613
AD
210992001-11-28 Akim Demaille <akim@epita.fr>
21100
21101 * src/LR0.c (shifts_new): New.
21102 (save_shifts, insert_start_shift, augment_automaton): Use it.
21103
4b35e1c1
AD
211042001-11-28 Akim Demaille <akim@epita.fr>
21105
21106 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21107 keep ruleno only.
21108
d2b04478
AD
211092001-11-28 Akim Demaille <akim@epita.fr>
21110
21111 * src/closure.c (closure): Instead of looping over word in array
21112 then bits in words, loop over bits in array.
21113
2c4c30aa
AD
211142001-11-28 Akim Demaille <akim@epita.fr>
21115
21116 * src/closure.c (closure): No longer optimize the special case
21117 where all the bits of `ruleset[r]' are set to 0, to make the code
21118 clearer.
21119
576890b7
AD
211202001-11-28 Akim Demaille <akim@epita.fr>
21121
21122 * src/closure.c (closure): `r' and `c' are new variables, used to
21123 de-obfuscate accesses to RULESET and CORE.
21124
cb487d7d
AD
211252001-11-28 Akim Demaille <akim@epita.fr>
21126
21127 * src/reduce.c (reduce_print): Use ngettext.
21128 (dump_grammar): Improve the trace accuracy.
21129
6013d43f
AD
211302001-11-28 Akim Demaille <akim@epita.fr>
21131
21132 * src/reduce.c (dump_grammar): Don't translate trace messages.
21133
cb4956ee
AD
211342001-11-28 Akim Demaille <akim@epita.fr>
21135
21136 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21137 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21138 as all tags are free'ed afterwards.
21139 From Enrico Scholz.
21140
648185ab
PE
211412001-11-27 Paul Eggert <eggert@twinsun.com>
21142
21143 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21144 use alloca when we didn't want to, and vice versa.
21145
68254a03
MA
211462001-11-27 Marc Autret <autret_m@epita.fr>
21147
9113b58f
AD
21148 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21149 initialization.
68254a03
MA
21150 * src/output.c (prepare): Remove its update.
21151
04d843a2
MA
211522001-11-27 Marc Autret <autret_m@epita.fr>
21153
21154 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21155 Use %error-verbose.
21156
d2079671 211572001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
21158
21159 * src/bison.simple: Remove YYERROR_VERBOSE using.
21160 Use %%error_verbose.
21161 (yyparse): Likewise.
21162 * src/output.c (prepare): Give its final value.
21163 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21164 * src/getargs.h: Add its extern declaration.
21165 * src/getargs.c (error_verbose_flag): New int.
21166 (getargs): Update to catch new case.
21167 * src/options.c (option_table): 'error-verbose' is a new option.
21168 (shortopts): Update.
21169
e0327bc8
AD
211702001-11-27 Akim Demaille <akim@epita.fr>
21171
21172 * src/system.h: Use intl/libgettext.h.
21173 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21174
000f1a3c
AD
211752001-11-27 Akim Demaille <akim@epita.fr>
21176
21177 * tests/torture.at (Exploding the Stack Size with Malloc):
21178 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21179
26cfe0be
AD
211802001-11-27 Akim Demaille <akim@epita.fr>
21181
21182 * src/files.c: Include error.h.
21183 Reported by Hans Aberg.
21184
f6bd5427
MA
211852001-11-26 Marc Autret <autret_m@epita.fr>
21186
d2079671 21187 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
21188 (read_declarations): Add case tok_include.
21189 * src/getargs.h (include): Add its extern definition.
21190 * src/getargs.c (include): New const char *.
21191 (getargs): Add case '-I'.
21192 * src/options.c (option_table): Add include as command line and
21193 percent option.
21194 * src/lex.h (token_t): Add tok_include.
21195
2ca209c1
AD
211962001-11-26 Akim Demaille <akim@epita.fr>
21197
21198 * src/reader.c (readgram): Make sure rules for mid-rule actions
21199 have a lineno equal to that of their host rule.
21200 Reported by Hans Aberg.
21201 * tests/regression.at (Rule Line Numbers): New.
21202
0e41b407
AD
212032001-11-26 Akim Demaille <akim@epita.fr>
21204
21205 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21206 size_ts.
21207
212082001-11-26 Akim Demaille <akim@epita.fr>
21209
21210 * src/complain.c, src/complain.h (error): Remove, provided by
21211 lib/error.[ch].
21212
e0c40012
AD
212132001-11-26 Akim Demaille <akim@epita.fr>
21214
21215 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21216 issue an error message.
21217 * tests/regression.at (Invalid %directive): New.
21218 Reported by Hans Aberg.
21219
5e147124
AD
212202001-11-26 Akim Demaille <akim@epita.fr>
21221
21222 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21223 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21224
a034c8b8
AD
212252001-11-26 Akim Demaille <akim@epita.fr>
21226
21227 * src/conflicts.c (conflicts_print): Don't complain at all when
21228 there are no reduce/reduce conflicts, and as many shift/reduce
21229 conflicts as expected.
21230 * tests/regression.at (%expect right): Adjust.
21231
c64a20f3
AD
212322001-11-23 Akim Demaille <akim@epita.fr>
21233
21234 * lib/alloca.c: Update, from fileutils.
21235
5b0d29bb
AD
212362001-11-23 Akim Demaille <akim@epita.fr>
21237
21238 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21239
722c4bfe
AD
212402001-11-23 Akim Demaille <akim@epita.fr>
21241
21242 * src/system.h: Include alloca.h.
21243 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21244
6255b435
AD
212452001-11-23 Akim Demaille <akim@epita.fr>
21246
21247 * src/print_graph.c (print_actions): Remove `rule', unused.
21248 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21249 pacify GCC's signed < unsigned warnings.
21250 * src/closure.c (itemsetsize): Likewise.
21251 * src/reader.c (symbol_list_new): Static.
21252
b29b2ed5
AD
212532001-11-23 Akim Demaille <akim@epita.fr>
21254
21255 Attaching lineno to buckets is stupid, since only one copy of each
21256 symbol is kept, only the line of the first occurrence is kept too.
21257
21258 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21259 * src/reader.c (rline_allocated): Remove, unused.
21260 (symbol_list): Have a `line' member.
21261 (symbol_list_new): New.
21262 (readgram): Use it.
21263 * src/print.c (print_grammar): Output the rule line numbers.
21264 * tests/regression.at (Solved SR Conflicts)
21265 (Unresolved SR Conflicts): Adjust.
21266 Reported by Hans Aberg.
21267
a81b1d4a
MA
212682001-11-22 Marc Autret <autret_m@epita.fr>
21269
21270 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21271
c1ecb3c1
MA
212722001-11-22 Marc Autret <autret_m@epita.fr>
21273
21274 * src/muscle_tab.c (muscle_init): Remove initialization of
21275 skeleton muscle.
21276 * src/output.c (output_master_parser): Do it here.
21277
fbe01355
AD
212782001-11-20 Akim Demaille <akim@epita.fr>
21279
21280 * po/sv.po: New.
21281 * configure.in (ALL_LINGUAS): Adjust.
21282 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21283 longer contains strings to translate.
21284
81e895c0
AD
212852001-11-19 Akim Demaille <akim@epita.fr>
21286
21287 * src/conflicts.c (conflicts_print): Add a missing \n.
21288
6bb1878b
AD
212892001-11-19 Akim Demaille <akim@epita.fr>
21290
21291 * src/nullable.c (nullable_print): New.
21292 (set_nullable): Call it when tracing.
21293 Better locality of variables.
21294
d9ec2d07
AD
212952001-11-19 Akim Demaille <akim@epita.fr>
21296
21297 * src/print.c (print_actions): Better locality of variables.
21298
720e5c1b
AD
212992001-11-19 Akim Demaille <akim@epita.fr>
21300
21301 * src/derives.c (print_derives): Fix and enrich.
21302 * src/closure.c (print_fderives): Likewise.
21303
fb908786
AD
213042001-11-19 Akim Demaille <akim@epita.fr>
21305
21306 * src/closure.c (itemsetend): Remove, replaced with...
21307 (itemsetsize): new.
21308
125ecb56
AD
213092001-11-19 Akim Demaille <akim@epita.fr>
21310
21311 * src/LR0.c (kernel_end): Remove, replaced with...
21312 (kernel_size): new.
21313
d8cf039f
AD
213142001-11-19 Akim Demaille <akim@epita.fr>
21315
21316 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21317 to clarify.
21318
7bec0760
AD
213192001-11-19 Akim Demaille <akim@epita.fr>
21320
21321 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21322
c87d4863
AD
213232001-11-19 Akim Demaille <akim@epita.fr>
21324
21325 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21326 trace messages.
21327 * src/LR0.c: Likewise.
21328 (allocate_itemsets): Use arrays instead of pointers to clarify.
21329
9bfe901c
AD
213302001-11-19 Akim Demaille <akim@epita.fr>
21331
21332 * src/getargs.c (statistics_flag): Replace with...
21333 (trace_flag): New.
21334 (longopts): Accept --trace instead of --statistics.
21335 * src/getargs.h, src/options.c: Adjust.
21336 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21337 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21338
97db7bd4
AD
213392001-11-19 Akim Demaille <akim@epita.fr>
21340
cc72668c 21341 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
21342 pointers to clarify the code.
21343 (save_reductions, save_shifts): Factor common parts of alternatives.
21344
2c5f66ed
AD
213452001-11-19 Akim Demaille <akim@epita.fr>
21346
21347 * src/LR0.c (new_state, get_state): Complete TRACE code.
21348 * src/closure.c: Include `reader.h' to get `tags', needed by the
21349 trace code.
21350 Rename the conditional DEBUG as TRACE.
21351 Output consistently TRACEs to stderr, not stdout.
21352 * src/derives.c: Likewise.
21353 * src/reduce.c: (inaccessable_symbols): Using if is better style
21354 than goto.
21355 Use `#if TRACE' instead of `#if 0' for tracing code.
21356
300f275f
AD
213572001-11-19 Akim Demaille <akim@epita.fr>
21358
21359 * src/system.h (LIST_FREE, shortcpy): New.
21360 * src/LR0.c: Use them.
21361 * src/output.c (free_itemsets, free_reductions, free_shifts):
21362 Remove, replaced by LIST_FREE.
21363
f59c437a
AD
213642001-11-19 Akim Demaille <akim@epita.fr>
21365
21366 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21367 (REDUCTIONS_ALLOC): New.
21368 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21369 allocation.
21370
6986fd9e
AD
213712001-11-19 Akim Demaille <akim@epita.fr>
21372
21373 * src/LR0.c (new_state): Complete trace code.
21374 * src/nullable.c (set_nullable): Don't translate traces.
21375
4bc30f78
AD
213762001-11-19 Akim Demaille <akim@epita.fr>
21377
21378 * src/print_graph.c (print_core): Better locality of variables.
21379 * src/print.c (print_core): Likewise.
21380
08a946e0
AD
213812001-11-19 Akim Demaille <akim@epita.fr>
21382
21383 * src/vcg.c: You do the output, so you are responsible of the
21384 handling of VCG syntax, in particular: use quotearg.
21385 * src/print_graph.c: Don't.
21386 (print_actions): Don't output the actions as part of the nodes,
21387 since that's the job of the edges.
21388 (print_state): Don't output by hand: fill the node description,
9bfe901c 21389 and ask for its output.
08a946e0 21390
f0473484
AD
213912001-11-19 Akim Demaille <akim@epita.fr>
21392
cc72668c
AD
21393 * src/bison.simple (yyparse): When verbosely reporting an error,
21394 no longer put additional quotes around token names.
f0473484
AD
21395 * tests/calc.at: Adjust.
21396
e41dc700
AD
213972001-11-19 Akim Demaille <akim@epita.fr>
21398
21399 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21400 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21401 * src/output.c: Adjust.
21402
652a871c
AD
214032001-11-19 Akim Demaille <akim@epita.fr>
21404
21405 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21406 (rule_t): this.
21407 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21408
b2ed6e58
AD
214092001-11-19 Akim Demaille <akim@epita.fr>
21410
21411 * src/gram.h (rule_t): New.
21412 (rule_table): New.
21413 (rrhs, rlhs): Remove, part of state_t.
21414 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21415 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21416 * src/reader.c, src/reduce.c: Adjust.
21417
edad7067
AD
214182001-11-19 Akim Demaille <akim@epita.fr>
21419
21420 * src/reader.c (symbols_output): New, extracted from...
21421 (packsymbols): Here.
21422 (reader): Call it.
21423
3feec034
AD
214242001-11-19 Akim Demaille <akim@epita.fr>
21425
21426 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21427 (maxrhs): this new function.
21428
ddcd5fdf
AD
214292001-11-19 Akim Demaille <akim@epita.fr>
21430
cc72668c 21431 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
21432 Adjust.
21433
bb527fc2
AD
214342001-11-19 Akim Demaille <akim@epita.fr>
21435
cc72668c 21436 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
21437 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21438 * src/lalr.c: Adjust.
21439
a845a697
AD
214402001-11-19 Akim Demaille <akim@epita.fr>
21441
21442 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21443 (set_state_table): handle the `lookaheads' members.
21444
f004bf6a
AD
214452001-11-19 Akim Demaille <akim@epita.fr>
21446
cc72668c
AD
21447 * src/lalr.h (lookaheads): Removed array, whose contents is now
21448 a member of...
f004bf6a
AD
21449 (state_t): this structure.
21450 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21451 Adjust.
21452
de326cc0
AD
214532001-11-19 Akim Demaille <akim@epita.fr>
21454
cc72668c
AD
21455 * src/lalr.h (consistent): Removed array, whose contents is now
21456 a member of...
de326cc0
AD
21457 (state_t): this structure.
21458 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21459 Adjust.
21460
90b4416b
AD
214612001-11-19 Akim Demaille <akim@epita.fr>
21462
cc72668c
AD
21463 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21464 contents are now members of...
90b4416b
AD
21465 (state_t): this structure.
21466 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21467 Adjust.
21468
9703cc49
AD
214692001-11-19 Akim Demaille <akim@epita.fr>
21470
21471 * src/lalr.h (state_t): New.
21472 (state_table): Be a state_t * instead of a core **.
21473 (accessing_symbol): Remove, part of state_t.
21474 * src/lalr.c: Adjust.
21475 (set_accessing_symbol): Merge into...
21476 (set_state_table): this.
21477 * src/print_graph.c, src/conflicts.c: Adjust.
21478
d803322e
AD
214792001-11-14 Akim Demaille <akim@epita.fr>
21480
21481 * tests/calc.at, tests/output.at, tests/regression.at,
21482 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21483 now the tests are run in private dirs, therefore AC_CLEANUP and
21484 family can be simplified to 0-ary.
21485 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21486 use abs. path to find config.h.
21487 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21488 stderr, there can be way too much random noise.
21489 Instead pass -Werror to GCC and rely on the exit status.
21490 Reported by Wolfram Wagner.
21491
3d76b07d
AD
214922001-11-14 Akim Demaille <akim@epita.fr>
21493
21494 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21495 defined only if yyoverflow is defined, to avoid `warning: unused
21496 variable `yyvs1''.
21497 Reported by The Test Suite.
21498
09b503c8
AD
214992001-11-14 Akim Demaille <akim@epita.fr>
21500
21501 * src/print.c: Include reduce.h.
21502 Reported by Hans Aberg.
21503
215042001-11-14 Akim Demaille <akim@epita.fr>
21505
21506 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21507 Revert a previous patch: these are really const.
21508 * src/conflicts.c (conflict_report): Additional useless pair of
21509 braces to pacify GCC's warnings for `if () if () {} else {}'.
21510 * src/lex.c (parse_percent_token): Replace equal_offset with
21511 arg_offset.
21512 arg is const.
21513 Be sure to strdup `arg' when used, since there is no reason for
21514 token_buffer not to change.
21515
0f37a994
AD
215162001-11-14 Akim Demaille <akim@epita.fr>
21517
21518 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21519 definition.
21520 * src/main.c (main): Use them.
21521 Suggested by Hans Aberg.
21522
d39d93b8
AD
215232001-11-12 Akim Demaille <akim@epita.fr>
21524
21525 * src/system.h (ngettext): Now that we use ngettext, be sure to
21526 provide a default definition when NLS are not used.
21527
9edcd895
AD
215282001-11-12 Akim Demaille <akim@epita.fr>
21529
21530 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21531 Use @kbd to denote user input.
21532 (Language and Grammar): ANSIfy the example.
21533 Adjust its layout for info/notinfo.
21534 (Location Tracking Calc): Output error messages to stderr.
21535 Output locations in a more GNUtically correct way.
21536 Fix a couple of Englishos.
21537 Adjust @group/@end group pairs.
21538
7da99ede
AD
215392001-11-12 Akim Demaille <akim@epita.fr>
21540
e3aa65c5 21541 %expect was not functioning at all.
7da99ede
AD
21542
21543 * src/conflicts.c (expected_conflicts): Set to -1.
21544 (conflict_report): Use ngettext.
21545 (conflicts_print): Check %expect and make its violation an error.
21546 * doc/bison.texinfo (Expect Decl): Adjust.
21547 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21548 * tests/regression.at (%expect not enough, %expect right)
21549 (%expect too much): New.
21550
ba9dda1a
AD
215512001-11-12 Akim Demaille <akim@epita.fr>
21552
21553 * tests/regression.at (Conflicts): Rename as...
21554 (Unresolved SR Conflicts): this.
21555 (Solved SR Conflicts): New.
21556
337c5bd1
AD
215572001-11-12 Akim Demaille <akim@epita.fr>
21558
21559 * src/reduce.c (print_results): Rename as...
21560 (reduce_output): This.
21561 Output to OUT, passed as argument, instead of output_obstack.
21562 (dump_grammar): Likewise.
21563 (reduce_free): New.
21564 Also free V1.
21565 (reduce_grammar): No longer call reduce_output, since...
21566 * src/print.c (print_results): do it.
21567 * src/main.c (main): Call reduce_free;
21568
c73a41af
AD
215692001-11-12 Akim Demaille <akim@epita.fr>
21570
21571 * src/conflicts.c (print_reductions): Accept OUT as argument.
21572 Output to it, not to output_obstack.
21573 * src/print.c (print_actions): Adjust.
21574
0df87bb6
AD
215752001-11-12 Akim Demaille <akim@epita.fr>
21576
21577 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21578 the result instead of using...
21579 (src_total, rrc_total, src_count, rrc_count): Remove.
21580 (any_conflicts): Remove.
21581 (print_conflicts): Split into...
21582 (conflicts_print, conflicts_output): New.
21583 * src/conflicts.h: Adjust.
21584 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 21585 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
21586 * tests/regression.at (Conflicts): New.
21587 Reported by Tom Lane.
21588
e4d3d4de
AD
215892001-11-12 Akim Demaille <akim@epita.fr>
21590
21591 * tests/regression.at (Invalid input): Remove, duplicate with
21592 ``Invalid input: 1''.
21593
6d7d248e
AD
215942001-11-12 Akim Demaille <akim@epita.fr>
21595
21596 * tests/torture.at (AT_DATA_STACK_TORTURE)
21597 (Exploding the Stack Size with Alloca)
21598 (Exploding the Stack Size with Malloc): New.
21599
e9e4c321
AD
216002001-11-12 Akim Demaille <akim@epita.fr>
21601
21602 * src/bison.simple (YYSTACK_REALLOC): New.
21603 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 21604 Reported by Per Allansson.
e9e4c321 21605
5f7e0832
AD
216062001-11-12 Pascal Bart <pascal.bart@epita.fr>
21607
21608 * src/bison.simple: Define type yystype instead of YYSTYPE, and
21609 define CPP macro, which substitute YYSTYPE by yystype.
21610 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
21611 with yyltype/YYLTYPE. This allows inclusion of the generated
21612 header within the parser if the compiler, such as GGC, accepts
21613 multiple equivalent #defines.
21614 From Akim.
21615
e3f1699f
AD
216162001-11-05 Akim Demaille <akim@epita.fr>
21617
21618 * src/reader.c (symbols_output): New, extracted from...
21619 (packsymbols): here.
21620 (reader): Adjust.
21621
65be0866
AD
216222001-11-05 Akim Demaille <akim@epita.fr>
21623
21624 * src/lex.c (parse_percent_token): s/quotearg/quote/.
21625
e4d910bf
AD
216262001-11-05 Akim Demaille <akim@epita.fr>
21627
21628 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
21629 pattern.
21630
951366c1
AD
216312001-11-05 Akim Demaille <akim@epita.fr>
21632
21633 * src/options.h (struct option_table_struct): set_flags is void*.
21634 * src/options.c (longopts): Support `--output' and `%output'.
21635 (usage): Adjust.
21636 * src/lex.h (tok_setopt): Remove, replaced with...
21637 (tok_intopt, tok_stropt): these new guys.
21638 * src/lex.c (getopt.h): Not needed.
21639 (token_buffer, unlexed_token_buffer): Not const.
21640 (percent_table): Promote `-' over `_' in directive names.
21641 Active `%name-prefix', `file-prefix', and `output'.
21642 (parse_percent_token): Accept possible arguments to directives.
21643 Promote `-' over `_' in directive names.
21644
d8988b2f
AD
216452001-11-04 Akim Demaille <akim@epita.fr>
21646
21647 * doc/bison.texinfo (Decl Summary): Split the list into
21648 `directives for grammars' and `directives for bison'.
21649 Sort'em.
21650 Add description of `%name-prefix', `file-prefix', and `output'.
21651 Promote `-' over `_' in directive names.
21652 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
21653 Simplify the description of `--name-prefix'.
21654 Promote `-' over `_' in directive names.
21655 Promote `--output' over `--output-file'.
21656 Fix the description of `--defines'.
21657 * tests/output.at: Exercise %file-prefix and %output.
21658
6468d18e
AD
216592001-11-02 Akim Demaille <akim@epita.fr>
21660
21661 * doc/refcard.tex: Update.
21662
6b7e85b9
AD
216632001-11-02 Akim Demaille <akim@epita.fr>
21664
21665 * src/symtab.h (SUNDEF): New.
21666 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
21667 stand for `uninitialized', instead of 0.
21668 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
21669 * src/lex.c (lex): Adjust.
21670
21671 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
21672 Number it 0.
21673 Let yylex return it instead of a plain 0.
21674 Reported by Dick Streefland.
21675
cd5aafcf
AD
216762001-11-02 Akim Demaille <akim@epita.fr>
21677
21678 * tests/regression.at (Mixing %token styles): New test.
21679
037ca2f1
AD
216802001-11-02 Akim Demaille <akim@epita.fr>
21681
21682 * src/reader.c (parse_thong_decl): Formatting changes.
21683 (token_translations_init): New, extracted from...
21684 (packsymbols): Here.
21685 Adjust.
21686
270a173c
AD
216872001-11-01 Akim Demaille <akim@epita.fr>
21688
21689 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
21690 Check that `9foo.y' produces correct cpp guards.
21691 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
21692 guards.
21693 Reported by Wwp.
21694
561f9a30
AD
216952001-11-01 Akim Demaille <akim@epita.fr>
21696
21697 * tests/regression.at (Invalid input: 2): New.
21698 * src/lex.c (unlexed_token_buffer): New.
21699 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
21700 too.
21701 Reported by Wwp.
21702
f987e9d2
AD
217032001-11-01 Akim Demaille <akim@epita.fr>
21704
21705 * tests/calc.at: Catch up with 1.30.
21706 * configure.in: Bump to 1.49a.
21707 Adjust to newer Autotest.
21708
0846f581
PB
217092001-10-19 Pascal Bart <pascal.bart@epita.fr>
21710
21711 * src/conflicts.c: Move global variables rrc_total and src_total ...
21712 (print_conflicts): here.
21713 * src/output.c (output): Free global variable user_toknums.
21714 * src/lex.c (token_obstack): Become static.
21715
3c1a79b3
AD
217162001-10-18 Akim Demaille <akim@epita.fr>
21717
21718 * tests/atlocal.in (GCC): Add.
21719 * tests/calc.at: s/m4_match/m4_bmatch/.
21720 s/m4_patsubst/m4_bpatsubst/.
21721 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
21722 * configure.in: AC_SUBST(GCC).
21723
5d52e7d0
MA
217242001-10-14 Marc Autret <autret_m@epita.fr>
21725
21726 * src/options.c (create_long_option_table): Fix.
21727
631aa1d3
AD
217282001-10-10 Akim Demaille <akim@epita.fr>
21729
21730 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
21731
f6ec6d13
AD
217322001-10-04 Akim Demaille <akim@epita.fr>
21733
21734 * src/reader.c (parse_union_decl): Push the caracters in
21735 union_obstack, not attrs_obstack.
21736
342b8b6e
AD
217372001-10-04 Akim Demaille <akim@epita.fr>
21738
21739 Merge in the branch 1.29.
21740
21741 * src/reader.c (packsymbols): Use a temporary obstack for
21742 `%%tokendef', since output_stack is already used elsewhere.
21743
21744 2001-10-02 Akim Demaille <akim@epita.fr>
21745
21746 Bump 1.29d.
21747
21748 2001-10-02 Akim Demaille <akim@epita.fr>
21749
21750 Version 1.29c.
21751
21752 2001-10-02 Akim Demaille <akim@epita.fr>
21753
21754 * tests/regression.at (Invalid CPP headers): New.
21755 From Alexander Belopolsky.
21756 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21757
21758 2001-10-02 Akim Demaille <akim@epita.fr>
21759
21760 * tests/regression.at (Invalid input): New.
21761 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21762 Reported by Shura.
21763
21764 2001-10-02 Akim Demaille <akim@epita.fr>
21765
21766 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21767
21768 2001-10-02 Akim Demaille <akim@epita.fr>
21769
21770 * src/output.c (output_parser): Assert `skeleton'.
21771 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21772 systems.
21773 From Shura.
21774
21775 2001-10-01 Marc Autret <autret_m@epita.fr>
21776
21777 * src/lex.h: Echo modifications.
21778 * src/lex.c (unlex): Parameter is now token_t.
21779 From Hans Aberg.
21780
21781 2001-10-01 Marc Autret <autret_m@epita.fr>
21782
21783 * src/main.c: Include lex.h.
21784 From Hans Aberg.
21785
21786 2001-09-29 Akim Demaille <akim@epita.fr>
21787
21788 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21789
21790 2001-09-28 Akim Demaille <akim@epita.fr>
21791
21792 * tests/testsuite.at: Update to newer Autotest.
21793 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21794
21795 2001-09-27 Akim Demaille <akim@epita.fr>
21796
21797 Position independent wrapper.
21798
21799 * tests/bison: Remove.
21800 * tests/bison.in: New.
21801 * configure.in: Adjust.
21802
21803 2001-09-27 Paul Eggert <eggert@twinsun.com>
21804
21805 Port quotearg fixes from tar 1.13.24.
21806
21807 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21808 tm to be declared.
21809 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21810 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21811
21812 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21813 * m4/mbrtowc.m4: New file.
21814 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21815 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21816
21817 2001-09-27 Akim Demaille <akim@epita.fr>
21818
21819 Bump to 1.29c.
21820
21821 2001-09-27 Akim Demaille <akim@epita.fr>
21822
21823 Version 1.29b.
21824
21825 2001-09-25 Akim Demaille <akim@epita.fr>
21826
21827 * src/system.h: Include `xalloc.h'.
21828 Remove it from the C files.
21829 * src/files.c (output_files): Free the obstacks.
21830 * src/lex.c (init_lex): Rename as...
21831 (lex_init): this.
21832 (lex_free): New.
21833 * src/main.c (main): Use it.
21834
21835 2001-09-24 Marc Autret <autret_m@epita.fr>
21836
21837 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21838 to output informations in fout (FILE*).
21839 (open_graph, close_graph): Likewise.
21840 (output_graph, output_edge, output_node): Likewise.
21841 * src/vcg.h: Update function prototypes.
21842 * src/print_graph.c (print_graph): Open output graph file.
21843 (print_actions): Adjust.
21844 * src/files.h: Remove extern declaration.
21845 * src/files.c: Remove graph_obstack declaration.
21846 (open_files): Remove graph_obstack initialization.
21847 (output_files): Remove graph_obstack saving.
21848
21849 2001-09-24 Marc Autret <autret_m@epita.fr>
21850
21851 * src/files.c (compute_output_file_names): Fix.
21852
21853 2001-09-24 Marc Autret <autret_m@epita.fr>,
21854 Akim Demaille <akim@epita.fr>
21855
21856 * src/reader.c (reader): Remove call to free_symtab ().
21857 * src/main.c (main): Call it here.
21858 Include symtab.h.
21859 * src/conflicts.c (initialize_conflicts): Rename as...
21860 (solve_conflicts): this.
21861 * src/print.c (print_core, print_actions, print_state)
21862 (print_grammar): Dump to a file instead a `output_obstack'.
21863 (print_results): Dump `output_obstack', and then proceed with the
21864 FILE *.
21865 * src/files.c (compute_output_file_names, close_files): New.
21866 (output_files): Adjust.
21867 * src/main.c (main): Adjust.
21868
21869 2001-09-23 Marc Autret <autret_m@epita.fr>
21870
21871 * src/files.c (compute_header_macro): Computes header macro name
21872 from spec_defines_file when given.
21873
21874 2001-09-23 Marc Autret <autret_m@epita.fr>
21875
21876 * src/files.c (output_files): Add default extensions.
21877
21878 2001-09-22 Akim Demaille <akim@epita.fr>
21879
21880 * src/conflicts.c (finalize_conflicts): Rename as...
21881 (free_conflicts): this.
21882
21883 2001-09-22 Akim Demaille <akim@epita.fr>
21884
21885 * src/gram.c (gram_free): Rename back as...
21886 (dummy): this.
21887 (output_token_translations): Free `token_translations'.
21888 * src/symtab.c (free_symtab): Free the tag field.
21889
21890 2001-09-22 Akim Demaille <akim@epita.fr>
21891
21892 Remove `translations' as it is always set to true.
21893
21894 * src/gram.h: Adjust.
21895 * src/reader.c (packsymbols, parse_token_decl): Adjust
21896 * src/print.c (print_grammar): Adjust.
21897 * src/output.c (output_token_translations): Adjust.
21898 * src/lex.c (lex): Adjust.
21899 * src/gram.c: Be sure the set pointers to NULL.
21900 (dummy): Rename as...
21901 (gram_free): this.
21902
21903 2001-09-22 Akim Demaille <akim@epita.fr>
21904
21905 * configure.in: Invoke AM_LIB_DMALLOC.
21906 * src/system.h: Use dmalloc.
21907 * src/LR0.c: Be sure to have pointers initialized to NULL.
21908 (allocate_itemsets): Allocate kernel_items only if needed.
21909
21910 2001-09-22 Akim Demaille <akim@epita.fr>
21911
21912 * configure.in: Bump to 1.29b.
21913 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21914 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21915 need xmalloc.c in calc.y.
21916 From Pascal Bart.
21917
21918 2001-09-21 Akim Demaille <akim@epita.fr>
21919
21920 Version 1.29a.
21921 * Makefile.maint, config/config.guess, config/config.sub,
21922 * config/missing: Update from masters.
21923 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21924 upon package.m4.
21925 * configure.in (ALL_LINGUAS): Add `tr'.
21926
21927 2001-09-21 Akim Demaille <akim@epita.fr>
21928
21929 * tests/Makefile.am (package.m4): Move to...
21930 ($(srcdir)/$(TESTSUITE)): here.
21931
21932 2001-09-20 Akim Demaille <akim@epita.fr>
21933
21934 * src/complain.c: No longer try to be standalone: use system.h.
21935 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21936 * src/complain.h: Likewise.
21937 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21938 Remove the unused variable `n'.
21939 From Albert Chin-A-Young.
21940
21941 2001-09-18 Marc Autret <autret_m@epita.fr>
21942
21943 * doc/bison.1: Update.
21944 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21945 descriptions.
21946 (Option Cross Key): Update.
21947 Add --graph.
21948
21949 2001-09-18 Marc Autret <autret_m@epita.fr>
21950
21951 * tests/regression.at: New test (comment in %union).
21952
21953 2001-09-18 Marc Autret <autret_m@epita.fr>
21954
21955 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21956 do that.
21957 Reported by Keith Browne.
21958
21959 2001-09-18 Marc Autret <autret_m@epita.fr>
21960
21961 * tests/output.at: Add tests for --defines and --graph.
21962
21963 2001-09-18 Marc Autret <autret_m@epita.fr>
21964
21965 * tests/output.at: Removes tests of %{header,src}_extension features.
21966
21967 2001-09-18 Akim Demaille <akim@epita.fr>
21968
21969 * tests/Makefile.am (package.m4): New.
21970 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21971 (_AT_CHECK_CALC_ERROR): Likewise.
21972 Factor the `, ' part of verbose error messages.
21973
21974 2001-09-18 Marc Autret <autret_m@epita.fr>
21975
21976 * src/getargs.c (longopts): Declare --defines and --graph as options
21977 with optional arguments.
21978 * src/files.h: Add extern declarations.
21979 * src/files.c (spec_graph_file, spec_defines_file): New.
21980 (output_files): Update.
21981 Remove CPP-outed code.
21982
21983 2001-09-18 Marc Autret <autret_m@epita.fr>
21984
21985 Turn off %{source,header}_extension feature.
21986
21987 * src/files.c (compute_exts_from_gf): Update.
21988 (compute_exts_from_src): Update.
21989 (output_files): CPP-out useless code.
21990 * src/files.h: Remove {header,source}_extension extern declarations.
21991 * src/reader.c (parse_dquoted_param): CPP-out.
21992 (parse_header_extension_decl): Remove.
21993 (parse_source_extension_decl): Remove.
21994 (read_declarations): Remove cases tok_{hdrext,srcext}.
21995 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21996 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21997
21998 2001-09-10 Akim Demaille <akim@epita.fr>
21999
22000 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22001 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22002 (AT_CHECK_OUTPUT): this.
22003 Merely check ls' exit status, its output is useless.
22004
22005 2001-09-10 Akim Demaille <akim@epita.fr>
22006
22007 * tests/calc.at: Use m4_match.
22008 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22009
22010 2001-09-10 Marc Autret <autret_m@epita.fr>,
22011 Akim Demaille <akim@epita.fr>
22012
22013 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22014 enum color_e.
22015 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22016 to `normal'.
22017 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22018 * src/lex.h: Adjust prototype.
22019 (token_t): Add `tok_undef'.
22020 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22021 (parse_percent_token): Now returns token_t.
22022 Add default statement in switch.
22023 (lex): Separate `c' as an input variable, from the token_t result
22024 part.
22025 (unlexed): Is a token_t.
22026
22027 2001-09-10 Akim Demaille <akim@epita.fr>
22028
22029 * configure.in: Bump to 1.29a.
22030
22031 2001-09-07 Akim Demaille <akim@epita.fr>
22032
22033 Version 1.29.
22034
22035 2001-08-30 Akim Demaille <akim@epita.fr>
22036
22037 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22038 * m4/atconfig.m4: Remove.
22039 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22040 * tests/bison: New.
22041 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22042 m4_if, m4_patsubst, and m4_regexp.
22043 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22044 `input' file instead of echo.
22045
22046 2001-08-29 Akim Demaille <akim@epita.fr>
22047
22048 Bump to 1.28e.
22049
22050 2001-08-29 Akim Demaille <akim@epita.fr>
22051
22052 Version 1.28d.
22053
22054 2001-08-29 Paul Eggert <eggert@twinsun.com>
22055
22056 * src/bison.simple (yyparse): Don't take the address of an
22057 item before the start of an array, as that doesn't conform to
22058 the C Standard.
22059
22060 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22061
22062 * doc/bison.texinfo (Location Tracking Calc): New node.
22063
22064 2001-08-29 Paul Eggert <eggert@twinsun.com>
22065
22066 * src/output.c (output): Do not define const, as this now
22067 causes more problems than it cures.
22068
22069 2001-08-29 Akim Demaille <akim@epita.fr>
22070
22071 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22072 the nodes.
22073 Be sure to tag the `detailmenu'.
22074
22075 2001-08-29 Akim Demaille <akim@epita.fr>
22076
22077 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22078 download in a tmp dir.
22079
22080 2001-08-28 Marc Autret <autret_m@epita.fr>
22081
22082 * config/depcomp: New file.
22083
22084 2001-08-28 Marc Autret <autret_m@epita.fr>
22085
22086 * doc/bison.1 (mandoc): Adjust.
22087 From Juan Manuel Guerrero.
22088
22089 2001-08-28 Marc Autret <autret_m@epita.fr>
22090
22091 * src/print_graph.c (print_state): Fix.
22092
22093 2001-08-27 Marc Autret <autret_m@epita.fr>
22094
22095 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22096 char * members.
22097 Echo modifications to the functions prototypes.
22098 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22099
22100 2001-08-27 Marc Autret <autret_m@epita.fr>
22101
22102 * src/vcg.c: Include `xalloc.h'.
22103 (add_colorentry): New.
22104 (add_classname): New.
22105 (add_infoname): New.
22106 * src/vcg.h: Add new prototypes.
22107
22108 2001-08-27 Akim Demaille <akim@epita.fr>
22109
22110 * Makefile.maint: Sync. again with CVS Autoconf.
22111
22112 2001-08-27 Akim Demaille <akim@epita.fr>
22113
22114 * Makefile.maint: Formatting changes.
22115 (po-update, cvs-update, update): New targets.
22116 (AMTAR): Remove.
22117
22118 2001-08-27 Akim Demaille <akim@epita.fr>
22119
22120 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22121 * Makefile.maint: Sync. with CVS Autoconf.
22122
22123 2001-08-27 Marc Autret <autret_m@epita.fr>
22124
22125 * src/vcg.h (struct infoname_s): New.
22126 (struct colorentry_s): New.
22127 (graph_s): New fields {vertical,horizontal}_order in structure.
22128 Add `infoname' field.
22129 Add `colorentry' field;
22130 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22131 (G_HORIZONTAL_ORDER): New.
22132 (G_INFONAME): New.
22133 (G_COLORENTRY): New.
22134 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22135 Add output of `infoname'.
22136 Add output of `colorentry'.
22137
22138 2001-08-27 Marc Autret <autret_m@epita.fr>
22139
22140 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22141 This one shadowed a global parameter.
22142
22143 2001-08-24 Marc Autret <autret_m@epita.fr>
22144
22145 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22146 instead of `unsigned'.
22147 (print_state): Do not call obstack_object_size () in obstack_grow ()
22148 to avoid macro variables shadowing.
22149
22150 2001-08-23 Marc Autret <autret_m@epita.fr>
22151
22152 * src/lex.c (percent_table): Typo: s/naem/name/.
22153 Add graph option.
22154 Normalize new options declarations.
22155
22156 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22157
22158 * tests/suite.at: Exercise %header_extension and %source_extension.
22159
22160 2001-08-16 Marc Autret <autret_m@epita.fr>
22161
22162 * src/reader.c (parse_dquoted_param): New.
22163 (parse_header_extension_decl): Use it.
22164 (parse_source_extension_decl): Likewise.
22165
22166 2001-08-16 Marc Autret <autret_m@epita.fr>
22167
22168 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22169 (get_xxxx_str): Use assert () instead of complain ().
22170 Remove return invokations in default cases.
22171 (get_decision_str): Modify default behaviour. Remove second argument.
22172 Echo modifications on calls.
22173 (output_graph): Fix.
22174
22175 2001-08-16 Marc Autret <autret_m@epita.fr>
22176
22177 * src/getargs.c (usage): Update with ``-g, --graph''.
22178
22179 2001-08-16 Marc Autret <autret_m@epita.fr>
22180
22181 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22182 (Option Cross Key): Likewise.
22183 * doc/bison.1: Update.
22184
1c8c2190
PB
221852001-09-25 Pascal Bart <pascal.bart@epita.fr>
22186
22187 * src/output.c (output_master_parser): Don't finish action_obstack.
22188 (output_parser): Don't care about the muscle action, here.
22189 (prepare): Copy the action_obstack in the action muscle.
22190 (output): Free action_obstack.
22191
180d45ba
PB
221922001-09-23 Pascal Bart <pascal.bart@epita.fr>
22193
22194 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22195 will contain `%union' declaration.
22196 (parse_union_decl): Delete #line directive output.
22197 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22198 informations about %union.
22199 (parse_union_decl): Copy the union_obstack in the muscle stype.
22200 * src/bison.simple: Add new #line directive.
22201 Add typdef %%stype YYSTYPE.
22202
c51d1a19
PB
222032001-09-23 Pascal Bart <pascal.bart@epita.fr>
22204
22205 * src/bison.simple: Add new `#line' directive.
22206
6f9344da
PB
222072001-09-22 Pascal Bart <pascal.bart@epita.fr>
22208
22209 * src/bison.simple: New `#line' directive.
22210 * src/output.c (output_parser): Support new dynamic muscle input_line.
22211
652def80
MA
222122001-09-22 Marc Autret <autret_m@epita.fr>
22213
22214 * src/output.c (output_master_parser): New.
22215 (output_parser): Be more re-entrant.
22216
25b222fa
MA
222172001-09-21 Marc Autret <autret_m@epita.fr>
22218
22219 * src/reader.c (copy_definition, parse_union_decl): Update and use
22220 `linef' muscle.
22221 (copy_action): Likewise.
22222 Use obstack_1grow ().
22223 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22224
6bc35ae5
MA
222252001-09-21 Marc Autret <autret_m@epita.fr>
22226
22227 * src/options.c (option_table): Adjust.
22228 * src/lex.c (parse_percent_token): Fix.
22229
c0629aa1
PB
222302001-09-20 Pascal Bart <pascal.bart@epita.fr>
22231
22232 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 22233
82b6d266
PB
222342001-09-20 Pascal Bart <pascal.bart@epita.fr>
22235
22236 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22237 is now an option_table_struct*.
22238 (option_strcmp): New function option_strcmp.
22239 (parse_percent_token): Call option_strcmp.
22240 * src/getargs.c (xalloc.h, options.h): Include it.
22241 (getargs): Call create_long_option_table.
22242 (getargs): Free longopts at the end of the function.
22243 (shortopts): Move in options.c.
22244 * src/options.c (create_long_option_table): New function. Convert
22245 information from option_table to option structure.
22246 * src/reader.c (options.h): Include it.
22247
22248 * src/Makefile.am: Adjust.
22249 * src/options.c (option_table): Create from longopts and percent_table.
22250 * src/getargs.c (longopts): Delete.
22251 * src/lex.c (struct percent_table_struct): Delete.
22252 (percent_table): Delete.
22253 (options.h): Include it.
22254 * src/options.c: Create.
22255 * src/options.h: Create.
22256 Declare enum opt_access_e.
22257 Define struct option_table_struct.
22258
75f5aaea
MA
222592001-09-20 Marc Autret <autret_m@epita.fr>
22260
22261 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22262 sections of Bison.
22263
f508cb0a
PB
222642001-09-19 Pascal Bart <pascal.bart@epita.fr>
22265
22266 * src/bison.simple: s/%%filename/%%skeleton.
22267 * src/muscle_tab.c (getargs.h): Include it.
22268 (muscle_init): Insert new muscle skeleton.
22269
13105fc1
PB
222702001-09-18 Pascal Bart <pascal.bart@epita.fr>
22271
22272 * src/output.c (output_parser): Delete unused variable actions_dumped.
22273
b0c4483e
PB
222742001-09-07 Pascal Bart <pascal.bart@epita.fr>
22275
22276 * src/output.c (output): Delete call to reader_output_yylsp.
22277 * src/reader.c (reader): Likewise.
ba0fe3c7 22278 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 22279
11d82f03
MA
222802001-09-02 Marc Autret <autret_m@epita.fr>
22281
22282 * src/reader.c: Include muscle_tab.h.
22283 (parse_union_decl): Update.
22284 (parse_macro_decl): Rename parse_muscle_decl.
22285 Update to use renamed functions and variable.
22286 (read_declarations, copy_action, read_additionnal_code, : Updated
22287 with correct variables and functions names.
22288 (packsymbols, reader): Likewise.
342b8b6e 22289
11d82f03 22290 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 22291
11d82f03
MA
22292 * src/output.c: Include muscle_tab.h
22293 In all functions using macro_insert, change by using muscle_insert ().
22294 (macro_obstack): Rename muscle_obstack.
22295 Echo modifications in the whole file.
22296 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22297 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22298 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22299
22300 * src/muscle_tab.h: Update double inclusion macros.
22301 (macro_entry_s): Rename muscle_entry_s.
22302 Update prototypes.
342b8b6e 22303
11d82f03
MA
22304 * src/muscle_tab.c: Include muscle_tab.h.
22305 Rename macro_tabble to muscle_table.
22306 (mhash1, mhash2, mcmp): Use muscle_entry.
22307 (macro_init): Rename muscle_init. Update.
22308 (macro_insert): Rename muscle_insert. Update.
22309 (macro_find): Rename muscle_find. Update.
22310
22311 * src/main.c: Include muscle_tab.h.
22312 (main): Call muscle_init ().
22313 * src/Makefile.am (bison_SOURCES): Echo modifications.
22314
93a37297
MA
223152001-09-02 Marc Autret <autret_m@epita.fr>
22316
f753cd62 22317 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 22318
f753cd62
MA
22319 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22320
223212001-09-02 Marc Autret <autret_m@epita.fr>
22322
22323 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 22324
682d48cd
PB
223252001-09-01 Pascal Bart <pascal.bart@epita.fr>
22326
342b8b6e 22327 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
22328 filename.
22329
087c8fda
MA
223302001-09-01 Marc Autret <autret_m@epita.fr>
22331
22332 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22333 to an explicit value to activate the feature. We do it here.
22334
dda680cb
PB
223352001-08-31 Pascal Bart <pascal.bart@epita.fr>
22336
22337 * src/output.c (prepare): Delete the `filename' muscule insertion.
22338 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22339 (parse_union_decl): Likewise.
22340 * src/macrotab.c (macro_init): Initialize filename by infile.
22341
9e644e64
MA
223422001-08-31 Marc Autret <autret_m@epita.fr>
22343
22344 * src/bison.simple (YYLSP_NEEDED): New definition.
22345 * src/output.c (prepare): Add macro insertion of `locations_flag'
22346
17da6427
PB
223472001-08-31 Pascal Bart <pascal.bart@epita.fr>
22348
22349 * src/output.c (prepare): Delete insertion of previous muscles,
22350 and insert the `prefix' muscles.
22351 * src/macrotab.c (macro_init): Likewise.
22352 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 22353 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
22354 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22355 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 22356 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
22357 name_prefix.
22358
e8cb70b9
PB
223592001-08-31 Pascal Bart <pascal.bart@epita.fr>
22360
22361 * src/main.c (main): Standardize.
22362 * src/output.c (output_table_data, output_parser): Likewise.
22363 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22364
63c2d5de
MA
223652001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22366
342b8b6e 22367 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
22368 %%epilogue.
22369 * src/output.c (output): Rename %%declarations to %%prologue.
22370 * src/bison.simple: Echo modifications.
342b8b6e 22371
d8cb5183
MA
223722001-08-31 Marc Autret <autret_m@epita.fr>
22373
22374 * src/reader.c (readgram): CleanUp.
22375 (output_token_defines): Likewise.
22376 (packsymbols): Likewise.
22377 (reader): Likewise.
22378 * src/output.c (output): CPP-out useless code.
22379
6c686258
PB
223802001-08-31 Pascal Bart <pascal.bart@epita.fr>
22381
342b8b6e 22382 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
22383 output_trailers and output_headers.
22384 * src/output.h: Remove obsolete functions prototypes of output_headers
22385 and output_trailers.
22386
8f451ef7
PB
223872001-08-30 Pascal Bart <pascal.bart@epita.fr>
22388
22389 * src/main.c: Include macrotab.h.
342b8b6e 22390 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
22391 Adjust functions prototypes.
22392 * src/macrotab.c (macro_insert): Constify key and value.
22393 (macro_find): Constify key.
22394 (macro_insert): Include 'xalloc.h'
22395 (macro_insert): Use XMALLOC.
22396 (macro_find): Constify return value.
22397 * src/output.c (output_table_data): Rename table to table_data.
22398 (output_parser): Constify macro_key, macro_value.
22399
997b6fd0 224002001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
22401
22402 * src/reader.c (parse_skel_decl): New.
342b8b6e 22403 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
22404 * src/lex.h (token_t): New token `tok_skel'.
22405 * src/lex.c (percent_table): Add skeleton option entry.
22406 Standardize.
22407
ff48177d
MA
224082001-08-29 Marc Autret <autret_m@epita.fr>
22409
22410 * src/bison.simple: Add %%user_code directive at the end.
22411 * src/reader.c (read_additionnal_code): New.
22412 (reader): Use it.
22413 * src/output.c (output_program): Remove.
22414 (output): Update.
22415
b33160bf
MA
224162001-08-28 Marc Autret <autret_m@epita.fr>
22417
22418 * src/output.c (output_actions): Clean up.
4e5caae2 22419 (output_gram): CPP-out useless code.
b33160bf
MA
22420 * src/reader.c (reader): Clean up, CPP-out useless code.
22421
d1a2daf7
PB
224222001-08-28 Pascal Bart <pascal.bart@epita.fr>
22423
342b8b6e 22424 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 22425 directive.
d1a2daf7
PB
22426 * src/bison.simple: Add `%%definitions'.
22427
2b763dfe
MA
224282001-08-28 Marc Autret <autret_m@epita.fr>
22429
22430 * config/depcomp: New file.
22431
f1a87ef6
PE
224322001-08-27 Paul Eggert <eggert@twinsun.com>
22433
22434 * src/bison.simple (yyparse): Don't take the address of an
22435 item before the start of an array, as that doesn't conform to
22436 the C Standard.
22437
82e236e2
RA
224382001-08-27 Robert Anisko <robert.anisko@epita.fr>
22439
f1a87ef6 22440 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
22441 obstack. It was done too late here.
22442
22443 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22444 completely wrong.
22445 (reader): Initialize the macro obstack here, since we need it to grow
22446 '%define' directives.
22447
22448 * src/reader.h: Declare the macro obstack as extern.
22449
b0cfa28a
RA
224502001-08-27 Robert Anisko <robert.anisko@epita.fr>
22451
22452 * src/output.c (output_parser): Fix. Store single '%' characters in
22453 the output obstack instead of throwing them away.
22454
6fc74234
AD
224552001-08-27 Akim Demaille <akim@epita.fr>
22456
22457 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22458
9c76d118
RA
224592001-08-25 Robert Anisko <robert.anisko@epita.fr>
22460
22461 * lib/Makefile.am: Adjust.
22462
a8289c62
RA
224632001-08-25 Robert Anisko <robert.anisko@epita.fr>
22464
22465 * src/bison.simple: Update and add '%%' directives.
22466
b6610515
RA
224672001-08-25 Robert Anisko <robert.anisko@epita.fr>
22468
22469 * src/reader.c (reader): Remove calls to 'output_headers' and
22470 'output_trailers'. Remove some C output.
22471 (readgram): Disable a piece of code that was writing a default
22472 definition for 'YYSTYPE'.
22473 (reader_output_yylsp): Remove.
22474 (packsymbols): Output token defintions to a macro.
22475 (copy_definition): Disable C output.
6fc74234 22476
b6610515
RA
22477 * src/reader.c (parse_macro_decl): New function used to parse macro
22478 declarations.
22479 (copy_string2): Put the body of copy_string into this new function.
22480 Add a parameter to let the caller choose whether he wants to copy the
22481 string delimiters or not.
22482 (copy_string): Be a simple call to copy_string2 with the last argument
22483 bound to true.
22484 (read_declarations): Add case for macro definition.
22485 (copy_identifier): New.
6fc74234 22486 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
22487 rather than lex.
22488
26f609ff
RA
224892001-08-25 Robert Anisko <robert.anisko@epita.fr>
22490
22491 * src/output.c (prepare): Add prefixed names.
22492 (output_parser): Output semantic actions.
22493 (output_parser): Fix bug on '%%line' directives.
6fc74234 22494
26f609ff
RA
22495 * src/output.c (output_headers): Remove. The C code printed by this
22496 function should now be in the skeletons.
22497 (output_trailers): Remove.
22498 (output): Disable call to 'reader_output_yylsp'.
22499 (output_rule_data): Do not output tables to the table obstack.
22500
22501 * src/output.c: Remove some C dedicated output.
22502 Improve the use of macro and output obstacks.
22503 (output_defines): Remove.
6fc74234 22504
26f609ff
RA
22505 * src/output.c (output_token_translations): Associate 'translate'
22506 table with a macro. No output to the table obstack.
22507 (output_gram): Same for 'rhs' and 'prhs'.
22508 (output_stos): Same for 'stos'.
22509 (output_rule_data): Same for 'r1' and 'r2'.
22510 (token_actions): Same for 'defact'.
22511 (goto_actions): Same for 'defgoto'.
22512 (output_base): Same for 'pact' and 'pgoto'.
22513 (output_table): Same for 'table'.
22514 (output_check): Same for 'check'.
6fc74234 22515
26f609ff
RA
22516 * src/output.c (output_table_data): New function.
22517 (output_short_table): Remove.
22518 (output_short_or_char_table): Remove.
6fc74234 22519
26f609ff
RA
22520 * src/output.c (output_parser): Replace most of the skeleton copy code
22521 with something new. Skeletons are now processed character by character
22522 rather than line by line, and Bison looks for '%%' macros. This is the
22523 first step in making Bison's output process (a lot) more flexible.
22524 (output_parser): Use the macro table.
22525
6f43b113
RA
225262001-08-25 Robert Anisko <robert.anisko@epita.fr>
22527
22528 * src/main.c (main): Initialize the macro table.
22529
dd3127cf
RA
225302001-08-25 Robert Anisko <robert.anisko@epita.fr>
22531
22532 * src/lex.c (percent_table): Add tok_define.
22533 * src/lex.h: Add tok_define.
22534
aa321494
RA
225352001-08-25 Robert Anisko <robert.anisko@epita.fr>
22536
22537 * src/macrotab.c: New file.
22538 * src/macrotab.h: New file.
22539 * src/Makefile.am: Update.
22540
68bd3b6b
RA
225412001-08-25 Robert Anisko <robert.anisko@epita.fr>
22542
22543 * lib/hash.c: New file.
22544 * lib/hash.h: New file.
22545 * lib/Makefile.am: Update.
22546
45f8dd1e
AD
225472001-08-15 Akim Demaille <akim@epita.fr>
22548
22549 Version 1.28c.
22550
40a64a7a 225512001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
22552
22553 * src/reader.c (readgram): Indent output macro YYSTYPE.
22554 (packsymbols): Likewise.
22555 (output_token_defines): Likewise.
22556 * src/files.c: Standardize.
22557 (compute_header_macro): New.
22558 (defines_obstack_save): New. Use compute_header_macro.
22559 (output_files): Update. Use defines_obstack_save.
22560
f9a8293a
AD
225612001-08-15 Akim Demaille <akim@epita.fr>
22562
22563 * doc/bison.texinfo (Table of Symbols): Document
22564 YYSTACK_USE_ALLOCA.
22565
150ca7a7
AD
225662001-08-15 Akim Demaille <akim@epita.fr>
22567
22568 * missing: Update from CVS Automake.
22569 * config/config.guess, config/config.sub, config/texinfo.tex:
22570 Update from gnu.org.
22571
69b5cec4
AD
225722001-08-15 Akim Demaille <akim@epita.fr>
22573
22574 * Makefile.maint: Sync with CVS Autoconf.
22575
f2b5126e
PB
225762001-08-14 Pascal Bart <pascal.bart@epita.fr>
22577
69b5cec4 22578 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
22579 `fdl.texi'.
22580 * doc/fdl.texi: Add to package.
22581
4ecbf796
MA
225822001-08-14 Marc Autret <autret_m@epita.fr>
22583
22584 Turn on %{source,header}_extension features.
22585
69b5cec4 22586 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
22587 source_extension.
22588 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 22589 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
22590 between options.
22591
95fb5662
MA
225922001-08-14 Marc Autret <autret_m@epita.fr>
22593
22594 * src/files.c (compute_base_names): Add extensions computing when
22595 `--file-prefix' used.
22596 Standardize function calls.
22597
78d09da9
MA
225982001-08-13 Marc Autret <autret_m@epita.fr>
22599
69b5cec4 22600 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
22601 defining it (defined but null disables alloca).
22602
5a009f2c
MA
226032001-08-13 Marc Autret <autret_m@epita.fr>
22604
22605 * src/bison.simple (_yy_memcpy): CPP reformat.
22606
1e41465a
PB
226072001-08-13 Pascal Bart <pascal.bart@epita.fr>
22608
22609 * tests/atconfig.in (CPPFLAGS): Fix.
22610
c67a198d
PB
226112001-08-10 Pascal Bart <pascal.bart@epita.fr>
22612
79282c6c 22613 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
22614 `gpl.texi'.
22615 * doc/gpl.texi: Add to package.
22616
09a6de7e
MA
226172001-08-10 Marc Autret <autret_m@epita.fr>
22618
22619 * src/print_graph.h: Fix.
22620 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
22621
b77b9ee0
AD
226222001-08-10 Akim Demaille <akim@epita.fr>
22623
22624 * src/system.h: Provide default declarations for stpcpy, strndup,
22625 and strnlen.
22626
3e259915
MA
226272001-08-10 Robert Anisko <anisko_r@epita.fr>
22628
22629 * doc/bison.texinfo (Locations): Update @$ stuff.
22630
ca96bc2d
MA
226312001-08-09 Robert Anisko <anisko_r@epita.fr>
22632
22633 * src/bison.simple (YYLLOC_DEFAULT): Update.
22634 (yyparse): Adjust.
22635
fdc6758b
MA
226362001-08-08 Marc Autret <autret_m@epita.fr>
22637
b77b9ee0 22638 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
22639 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
22640 Reported by Fabrice Bauzac.
957d4dbf 22641
600cad3b
MA
226422001-08-08 Marc Autret <autret_m@epita.fr>
22643
22644 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
22645 * src/vcg.c (output_node): Fix.
22646 * src/vcg.h: Cleanup.
22647 * src/print_graph.c: Add comments.
b77b9ee0 22648 (node_output_size): New global variable. Simplify the formatting of
600cad3b 22649 the VCG graph output.
b77b9ee0 22650 (print_actions): Unused code is now used. It notifies the final state
600cad3b 22651 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 22652 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
22653 blue.
22654 Get the current node name and node_obstack by argument.
22655 (node_obstack): New variable.
22656 (print_state): Manage node_obstack.
22657 (print_core): Use node_obstack given by argument.
22658 A node is not only computed here but in print_actions also.
22659 (print_graph): CPP out useless code instead of commenting it.
22660
976e528f
AD
226612001-08-07 Pascal Bart <pascal.bart@epita.fr>
22662
22663 * tests/atconfig.in (CPPFLAGS): Fix.
22664
20e8e5ca
AD
226652001-08-07 Akim Demaille <akim@epita.fr>
22666
22667 * src/print_graph.c (quote): New.
22668 (print_core): Use it.
22669
957d4dbf 226702001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 22671
3e3da797
AD
22672 * src/vcg.c (complain.h): Include it.
22673 Unepitaize `return' invocations.
c4b66126 22674 [NDEBUG] (main): Remove.
79282c6c 22675 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
22676 * src/files.c (open_files): Initialize graph_obstack.
22677 * src/print_graph.c (print_actions): CPP out useless code.
22678 (print_core): Don't output the last `\n' in labels.
22679 Use `quote'.
22680 * src/files.c (output_files): Output the VCG file.
22681 * src/main.c (main): Invoke print_graph ();
3e3da797 22682
957d4dbf 226832001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
22684
22685 Automaton VCG graph output.
22686 Using option ``-g'' or long option ``--graph'', you can generate
22687 a gram_filename.vcg file containing a VCG description of the LALR (1)
22688 automaton of your grammar.
22689
22690 * src/main.c: Call to print_graph() function.
22691 * src/getargs.h: Update.
22692 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
22693 (graph_flag): New flag.
22694 (longopts): Update.
22695 (getargs): Add case `g'.
22696 * src/files.c (graph_obstack): New obstack struct.
22697 (open_files): Initialize new obstack.
22698 (output_files): Saves graph_obstack if required.
22699 * src/files.h (graph_obstack): New extern declaration.
22700 * src/Makefile.am: Add new source files.
22701
927c1557 227022001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
22703
22704 * src/print_graph.c, src/print_graph.h (graph): New.
22705 * src/vcg.h: New file.
22706 * src/vcg.c: New file, VCG graph handling.
22707
7333d403
AD
227082001-08-06 Marc Autret <autret_m@epita.fr>
22709
22710 Add of %source_extension and %header_extension which specify
22711 the source or/and the header output file extension.
22712
22713 * src/files.c (compute_base_names): Remove initialisation of
22714 src_extension and header_extension.
22715 (compute_exts_from_gf): Update.
22716 (compute_exts_from_src): Update.
22717 (output_files): Update.
22718 * src/reader.c (parse_header_extension_decl): New.
22719 (parse_source_extension_decl): New.
22720 (read_declarations): New case statements for the new tokens.
22721 * src/lex.c (percent_table): Add entries for %source_extension
22722 and %header_extension.
22723 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
22724
84163231
AD
227252001-08-06 Marc Autret <autret_m@epita.fr>
22726
22727 * configure.in: Bump to 1.28c.
22728 * doc/bison.texinfo: Texinfo thingies.
22729
8303fc42
AD
227302001-08-04 Pascal Bart <pascal.bart@epita.fr>
22731
22732 * tests/atconfig.in (CPPFLAGS): Add.
22733 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
22734
70a84437
AD
227352001-08-03 Akim Demaille <akim@epita.fr>
22736
22737 Version 1.28b.
22738
2ce10144
AD
227392001-08-03 Akim Demaille <akim@epita.fr>
22740
22741 * tests/Makefile.am (check-local): Ship testsuite.
22742 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
22743 Include `string.h'.
22744
1e3e4bc1
AD
227452001-08-03 Akim Demaille <akim@epita.fr>
22746
22747 * configure.in: Try using -Wformat when compiling.
22748
42b45b7f
AD
227492001-08-03 Akim Demaille <akim@epita.fr>
22750
22751 * configure.in: Bump to 1.28b.
22752
8f13fe33
AD
227532001-08-03 Akim Demaille <akim@epita.fr>
22754
22755 * src/complain.c: Adjust strerror_r portability issues.
22756
b37ba92c
AD
227572001-08-03 Akim Demaille <akim@epita.fr>
22758
22759 Version 1.28a.
22760
b0ce6046
AD
227612001-08-03 Akim Demaille <akim@epita.fr>
22762
22763 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22764 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22765 * src/getargs.c: Include complain.h.
22766 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22767 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22768
d01c415b
AD
227692001-08-03 Akim Demaille <akim@epita.fr>
22770
22771 * src/reader.c (readgram): Display hidden chars in error messages.
22772
459dd1a6
AD
227732001-08-03 Akim Demaille <akim@epita.fr>
22774
22775 Update to gettext 0.10.39.
22776
53b74c0c
AD
227772001-08-03 Akim Demaille <akim@epita.fr>
22778
22779 * lib/strspn.c: New.
22780
234a3be3
AD
227812001-08-01 Marc Autret <autret_m@epita.fr>
22782
22783 * doc/bison.texinfo: Update.
22784 * doc/bison.1 (mandoc): Update.
22785 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22786 * src/files.c: Support output files extensions computing.
22787 (src_extension): New static variable.
22788 (header_extension): New static variable.
22789 (tr): New function.
22790 (get_extension_index): New function, gets the index of an extension
22791 filename in a string.
22792 (compute_exts_from_gf): New function, computes extensions from the
22793 grammar file extension.
22794 (compute_exts_from_src): New functions, computes extensions from the
22795 C source file extension, file given by ``-o'' option.
22796 (compute_base_names): Update.
22797 (output_files): Update.
22798
847bf1f5
AD
227992001-08-01 Robert Anisko <anisko_r@epita.fr>
22800
d995fee7 22801 * doc/bison.texi: Document @$.
847bf1f5
AD
22802 (Locations): New section.
22803
d074a105
AD
228042001-07-18 Akim Demaille <akim@epita.fr>
22805
22806 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22807 * config/prev-version.txt, config/move-if-change: New.
22808 * Makefile.am: Adjust.
22809
3419715d
AD
228102001-07-08 Pascal Bart <pascal.bart@epita.fr>
22811
22812 * src/bison.simple (yyparse): Suppress warning `comparaison
22813 between signed and unsigned'.
22814
62ab6972
AD
228152001-07-05 Pascal Bart <pascal.bart@epita.fr>
22816
22817 * src/getargs.h (raw_flag): Remove.
22818 * src/getargs.c: Die on `-r'/`--raw'.
22819 * src/lex.c (parse_percent_token): Die on `%raw'.
22820 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22821 * tests/calc.at: Suppress test with option `--raw'.
22822
1e24cc5b
AD
228232001-07-14 Akim Demaille <akim@epita.fr>
22824
22825 * config/: New.
22826 * configure.in: Require Autoconf 2.50.
22827 Update to gettext 0.10.38.
22828
32dfccf8
AD
228292001-03-16 Akim Demaille <akim@epita.fr>
22830
22831 * doc/bison.texinfo: ANSIfy the examples.
22832
cd5bd6ac
AD
228332001-03-16 Akim Demaille <akim@epita.fr>
22834
22835 * getargs.c (skeleton): New variable.
22836 (longopts): --skeleton is a new option.
22837 (shortopts, getargs): -S is a new option.
22838 * getargs.h: Declare skeleton.
22839 * output.c (output_parser): Use it.
22840
5141b016
AD
228412001-03-16 Akim Demaille <akim@epita.fr>
22842
22843 * m4/strerror_r.m4: New.
22844 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22845 * lib/error.h, lib/error.c: Update.
22846
447992b9
AD
228472001-03-16 Akim Demaille <akim@epita.fr>
22848
22849 * src/getargs.c (longopts): Clean up.
22850
274d42ce
AD
228512001-02-21 Akim Demaille <akim@epita.fr>
22852
22853 * src/reader.c (gensym): `gensym_count' is your own.
22854 Use a static buf to create the symbol name, as token_buffer is no
22855 longer a buffer.
22856
22c821f3
AD
228572001-02-08 Akim Demaille <akim@epita.fr>
22858
22859 * src/conflicts.c (conflict_report): Be sure not to append to res
22860 between two calls, which could happen if both first sprintf were
22861 skipped, but not the first cp += strlen.
22862
18569462
AD
228632001-02-08 Akim Demaille <akim@epita.fr>
22864
22865 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22866 New, from fileutils 4.0.37.
22867 * configure.in: Require Autoconf 2.49c. I took some time before
22868 making this decision. This is the only way out for portability
22869 issues in Bison, it would mean way too much duplicate effort to
22870 import in Bison features implemented in 2.49c since 2.13.
22871 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22872
0d8f3c8a
AD
228732001-02-02 Akim Demaille <akim@epita.fr>
22874
22875 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 22876 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 22877
f17bcd1f
AD
228782001-01-19 Akim Demaille <akim@epita.fr>
22879
22880 Get rid of the ad hoc handling of token_buffer in the scanner: use
22881 the obstacks.
22882
22883 * src/lex.c (token_obstack): New.
22884 (init_lex): Initialize it. No longer call...
22885 (grow_token_buffer): this. Remove it.
22886 Adjust all the places which used it to use the obstack.
22887
511e79b3
AD
228882001-01-19 Akim Demaille <akim@epita.fr>
22889
22890 * src/lex.h: Rename all the tokens:
22891 s/\bENDFILE\b/tok_eof/g;
22892 s/\bIDENTIFIER\b/tok_identifier/g;
22893 etc.
22894 Let them be enums, not #define, to ease debugging.
22895 Adjust all the code.
22896
0d6508ef
AD
228972001-01-18 Akim Demaille <akim@epita.fr>
22898
22899 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22900 * src/lex.c (maxtoken, grow_token_buffer): Static.
22901
6deb4447
AD
229022001-01-18 Akim Demaille <akim@epita.fr>
22903
22904 Since we now use obstacks, more % directives can be enabled.
22905
22906 * src/lex.c (percent_table): Also accept `%yacc',
22907 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22908 `%debug'.
22909 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22910 instead of returning a token.
22911 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22912 * src/reader.c (read_declarations): Adjust.
22913 * src/files.c (open_files): Don't call `compute_base_names', don't
22914 compute `attrsfile' since they depend upon data which might be
22915 *in* the input file now.
22916 (output_files): Do it here.
22917 * src/output.c (output_headers): Document the fact that this patch
22918 introduces a guaranteed SEGV for semantic parsers.
22919 * doc/bison.texinfo: Document them.
22920 * tests/suite.at: Exercise these %options.
22921
ff4423cc
AD
229222000-12-20 Akim Demaille <akim@epita.fr>
22923
22924 Also handle the output file (--verbose) with obstacks.
22925
22926 * files.c (foutput): Remove.
22927 (output_obstack): New.
22928 Adjust all dependencies.
22929 * src/conflicts.c: Return a string.
22930 * src/system.h (obstack_grow_string): Rename as...
22931 (obstack_sgrow): this. Be ready to work with non literals.
22932 (obstack_fgrow4): New.
22933
956dba3a
AD
229342000-12-20 Akim Demaille <akim@epita.fr>
22935
22936 * src/files.c (open_files): Fix the computation of short_base_name
22937 in the case of `-o foo.tab.c'.
22938
337bab46
AD
229392000-12-20 Akim Demaille <akim@epita.fr>
22940
22941 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22942 (copy_dollar): Now that everything uses obstacks, get rid of the
22943 FILE * parameters.
22944
5d3214b8
AD
229452000-12-20 Akim Demaille <akim@epita.fr>
22946
22947 * src/files.c (open_files): Actually the `.output' file is based
22948 on the short_base_name, not base_name.
22949 * tests/suite.at (Checking output file names): Adjust.
22950
29092a57
AD
229512000-12-20 Akim Demaille <akim@epita.fr>
22952
22953 * src/bison.s1: Remove, we now use directly...
22954 * src/bison.simple: this.
22955 * src/Makefile.am: Use pkgdata instead of data.
22956
ea5607fd
AD
229572000-12-20 Akim Demaille <akim@epita.fr>
22958
22959 * src/files.c (guard_obstack): New.
22960 (open_files): Initialize it.
22961 (output_files): Dump it...
22962 * src/files.h: Export it.
22963 * src/reader.c (copy_guard): Use it.
22964
27110317
AD
229652000-12-19 Akim Demaille <akim@epita.fr>
22966
22967 * src/files.c (outfile, defsfile, actfile): Removed as global
22968 vars.
22969 (open_files): Don't compute them.
22970 (output_files): Adjust.
22971 (base_name, short_base_name): Be global.
22972 Adjust dependencies.
22973
19c50364
AD
229742000-12-19 Akim Demaille <akim@epita.fr>
22975
22976 * src/files.c (strsuffix): New.
22977 (stringappend): Be just like strcat but allocate.
22978 (base_names): Eve out from open_files.
22979 Try to simplify the rather hairy computation of base_name and
22980 short_base_name.
22981 (open_files): Use it.
22982 * tests/suite.at (Checking output file names): New test.
22983
573c1d9f
AD
229842000-12-19 Akim Demaille <akim@epita.fr>
22985
22986 * src/system.h (obstack_grow_literal_string): Rename as...
22987 (obstack_grow_string): this.
22988 * src/output.c (output_parser): Recognize `%% actions' instead of
22989 `$'.
22990 * src/bison.s1: s/$/%% actions/.
22991 * src/bison.hairy: Likewise.
22992
ef7ddedd
AD
229932000-12-19 Akim Demaille <akim@epita.fr>
22994
22995 * src/output.c (output_parser): Compute the `#line' lines when
22996 there are.
22997 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22998 Suggested by Hans Aberg.
22999
ff61dabd
AD
230002000-12-19 Akim Demaille <akim@epita.fr>
23001
23002 Let the handling of the skeleton files be local to the procedures
23003 that use it.
23004
23005 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23006 longer static.
23007 (fparser, open_extra_files): Remove.
23008 (open_files, output_files): Don't take care of fparser.
23009 * src/files.h: Adjust.
23010 * src/output.c (output_parser): Open and close the file to the
23011 skeleton.
23012 * src/reader.c (read_declarations): When %semantic_parser, open
23013 fguard.
23014
55b96341
AD
230152000-12-19 Akim Demaille <akim@epita.fr>
23016
23017 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23018 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23019
358c15b7
AD
230202000-12-19 Akim Demaille <akim@epita.fr>
23021
23022 * src/files.c (open_files): Yipee! We no longer need all the code
23023 looking for `/tmp' since we have no tmp file.
23024
7de3329e
AD
230252000-12-19 Akim Demaille <akim@epita.fr>
23026
23027 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23028 New macros.
23029 * src/files.c (open_files): Less dependency on MSDOS etc.
23030
3abcd459
AD
230312000-12-14 Akim Demaille <akim@epita.fr>
23032
23033 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23034 Provide a default definition.
23035 Use it when executing the default @ action.
23036 * src/reader.c (reader_output_yylsp): No longer include
23037 `timestamp' and `text' in the default YYLTYPE.
23038
2a91a95e
AD
230392000-12-12 Akim Demaille <akim@epita.fr>
23040
23041 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23042 (copy_guard): Quote the file names.
23043 Reported by Laurent Mascherpa.
23044
14d3eb9b
AD
230452000-12-12 Akim Demaille <akim@epita.fr>
23046
23047 * src/output.c (output_headers, output_program, output): Be sure
23048 to escape special characters when outputting filenames.
23049 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23050 (output_headers): Don't depend on them, Use ACTSTR.
23051
d7045ec6
AD
230522000-11-17 Akim Demaille <akim@epita.fr>
23053
23054 * lib/obstack.h: Formatting changes.
23055 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23056 prevents type checking.
23057 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23058 cast the value to (void *): assigning a `foo *' to a `void *'
23059 variable is valid.
23060 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23061 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23062 append characters.
23063
6fd54b73
AD
230642000-11-17 Akim Demaille <akim@epita.fr>
23065
23066 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23067 as...
23068 (suite.m4, regression.m4, calc.m4): these.
23069 * tests/atgeneral.m4: Update from CVS Autoconf.
23070
4c50eae6
AD
230712000-11-17 Akim Demaille <akim@epita.fr>
23072
23073 * tests/regression.m4 (%union and --defines): New test,
23074 demonstrating a current bug in the obstack implementation.
23075
a35f64ea
AD
230762000-11-17 Akim Demaille <akim@epita.fr>
23077
23078 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23079 macros.
23080 Use them to declare the variables which are global or local to
23081 `yyparse'.
23082
7de23534
AD
230832000-11-17 Akim Demaille <akim@epita.fr>
23084
23085 * acconfig.h: Remove, no longer used.
23086
aa7815f5
AD
230872000-11-07 Akim Demaille <akim@epita.fr>
23088
23089 * src: s/Copyright (C)/Copyright/g.
23090
5af1f549
AD
230912000-11-07 Akim Demaille <akim@epita.fr>
23092
23093 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23094 defining.
23095 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23096
553e2b22
AD
230972000-11-07 Akim Demaille <akim@epita.fr>
23098
23099 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23100 Merge in a single CPP if/else.
23101
8a4f41d6
AD
231022000-11-07 Akim Demaille <akim@epita.fr>
23103
23104 * src/output.c (output): Remove useless variables.
23105 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23106 argument `data' for consistency with the prototypes.
23107 Qualify it `const'.
23108 (obstack_copy, obstack_copy0): Rename the second argument as
23109 `address' for consistency. Qualify it `const'.
23110 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23111 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23112 `const' their input argument (`data' or `address').
23113 Adjust the corresponding macros to include `const' in casts.
23114
095a3fb5
AD
231152000-11-03 Akim Demaille <akim@epita.fr>
23116
23117 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23118 s/PFILE1/BISON_HAIRY/.
23119 Adjust dependencies.
23120
d1cdce7c
AD
231212000-11-03 Akim Demaille <akim@epita.fr>
23122
090c5ebf 23123 For some reason, this was not applied.
d1cdce7c
AD
23124
23125 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23126 `unlink': it's no longer used.
23127
9311529b
AD
231282000-11-03 Akim Demaille <akim@epita.fr>
23129
23130 * src/files.c (skeleton_find): New function, eved out of...
23131 (open_files, open_extra_files): here.
23132
d8880f69
AD
231332000-11-03 Akim Demaille <akim@epita.fr>
23134
23135 Don't use `atexit'.
23136
23137 * src/files.c (obstack_save): New function.
23138 (done): Rename as...
23139 (output_files): this.
23140 Use `obstack_save'.
23141 * src/main.c (main): Don't use `atexit' to register `done', since
23142 it no longer has to remove tmp files, just call `output_files'
23143 when there are no errors.
23144
0dbb648e
AD
231452000-11-02 Akim Demaille <akim@epita.fr>
23146
23147 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23148 `unlink': it's no longer used.
23149 * src/files.h: Formatting changes.
23150
896fe5c1
AD
231512000-11-02 Akim Demaille <akim@epita.fr>
23152
23153 Remove the last uses of mktemp and unlink/delete.
23154
23155 * src/files.c (fdefines, ftable): Removed.
23156 (defines_ostack, table_obstack): New.
23157 Adjust dependencies of the former into uses of the latter.
23158 * src/output.c (output_short_or_char_table, output_short_table):
23159 Convert to using obstacks.
23160 * src/reader.c (copy_comment2): Accept one FILE * and two
23161 obstacks.
23162 (output_token_defines, reader_output_yylsp): Use obstacks.
23163 * src/system.h (obstack_fgrow3): New.
1f65350a 23164 * po/POTFILES.in: Adjust.
896fe5c1 23165
dd60faec
AD
231662000-11-01 Akim Demaille <akim@epita.fr>
23167
23168 Change each use of `fattrs' into a use of `attrs_obstack'.
23169
23170 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23171 * src/files.c (fattrs): Remove.
23172 (attrs_obstack): New.
23173 Adjust all dependencies.
23174 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23175
8c7ebe49
AD
231762000-11-01 Akim Demaille <akim@epita.fr>
23177
23178 Introduce obstacks.
23179 Change each use of `faction' into a use of `action_obstack'.
23180
23181 * lib/obstack.h, lib/obstack.c: New files.
23182 * src/files.c (faction): Remove.
23183 (action_obstack): New.
23184 Adjust all dependencies.
23185
77aee789
AD
231862000-10-20 Akim Demaille <akim@epita.fr>
23187
23188 * lib/quote.h (PARAMS): New macro. Use it.
23189
43591cec
AD
231902000-10-16 Akim Demaille <akim@epita.fr>
23191
23192 * src/output.c (output_short_or_char_table): New function.
23193 (output_short_table, output_token_translations): Use it.
23194 (goto_actions): Use output_short_table.
23195
1e9798d5
AD
231962000-10-16 Akim Demaille <akim@epita.fr>
23197
23198 * src/symtab.c (bucket_new): New function.
23199 (getsym): Use it.
23200
23201 * src/output.c (output_short_table): New argument to display the
23202 comment associated with the table.
23203 Adjust dependencies.
23204 (output_gram): Use it.
23205 (output_rule_data): Nicer output layout for YYTNAME.
23206
f282676b
AD
232072000-10-16 Akim Demaille <akim@epita.fr>
23208
23209 * src/lex.c (read_typename): New function.
23210 (lex): Use it.
23211 * src/reader.c (copy_dollar): Likewise.
23212
550a72a3
AD
232132000-10-16 Akim Demaille <akim@epita.fr>
23214
23215 * src/reader.c (copy_comment2): Expect the input stream to be on
23216 the `/' which is suspected to open a comment, instead of being
23217 called after `//' or `/*' was read.
23218 (copy_comment, copy_definition, parse_union_decl, copy_action)
23219 (copy_guard): Adjust.
23220
131e2fef
AD
232212000-10-16 Akim Demaille <akim@epita.fr>
23222
23223 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23224 `read_signed_integer'.
23225
79282c5a
AD
232262000-10-16 Akim Demaille <akim@epita.fr>
23227
23228 * src/reader.c (copy_dollar): New function.
23229 (copy_guard, copy_action): Use it.
23230
ff4a34be
AD
232312000-10-16 Akim Demaille <akim@epita.fr>
23232
23233 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23234 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23235 New files, from Fileutils 4.0.27.
23236 * src/main.c (printable_version): Remove.
23237 * src/lex.c, src/reader.c: Use `quote'.
23238
232392000-10-04 Akim Demaille <akim@epita.fr>
23240
23241 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23242
14ded682
AD
232432000-10-04 Akim Demaille <akim@epita.fr>
23244
23245 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23246
8e03724b
AD
232472000-10-04 Akim Demaille <akim@epita.fr>
23248
23249 When a literal string is used to define two different tokens,
23250 `bison -v' segfaults.
23251 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23252
23253 * tests/regression.m4: New file.
23254 Include the core of the sample provided by Piotr Gackiewicz.
23255 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23256 properly.
23257
a9e64249
AD
232582000-10-04 Akim Demaille <akim@epita.fr>
23259
23260 * src/reader.c (parse_expect_decl): Keep `count' within the size
23261 of `buffer'.
23262 From Neil Booth.
23263
da9abf43
AD
232642000-10-02 Paul Eggert <eggert@twinsun.com>
23265
23266 * bison.s1 (yyparse): Assign the default value
23267 unconditionally, to avoid a GCC warning and make the parser a
23268 tad smaller.
23269
c33638bb
AD
232702000-10-02 Akim Demaille <akim@epita.fr>
23271
23272 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23273 options.
23274
444c570a
AD
232752000-10-02 Akim Demaille <akim@epita.fr>
23276
23277 * src/derives.c, src/print.c, src/reduce.c: To ease the
23278 translation, move some `\n' out of the translated strings.
23279
89cab50d
AD
232802000-10-02 Akim Demaille <akim@epita.fr>
23281
23282 The location tracking mechanism is precious for parse error
23283 messages. Nevertheless, it is enabled only when `@n' is used in
23284 the grammar, which is a different issue (you can use it in error
23285 message, but not in the grammar per se). Therefore, there should
23286 be another means to enable it.
23287
23288 * src/getargs.c (getargs): Support `--locations'.
23289 (usage): Report it.
23290 * src/getargs.h (locationsflag): Export it.
23291 * src/lex.c (percent_table): Support `%locations'.
23292 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23293 with `locationsflag'.
23294 * doc/bison.texinfo: Document `--locations' and `%locations'.
23295 Sort the options.
23296 * tests/calc.m4: Test it.
23297
23298 For regularity of the names, replace each
23299 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23300 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23301 In addition replace each `flag' with `_flag'.
23302
d6c2cba0
AD
233032000-10-02 Akim Demaille <akim@epita.fr>
23304
23305 Also test parse error messages, including with YYERROR_VERBOSE.
23306
23307 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23308 associative).
23309 Use it to check the computations.
23310 Use it to check `nonassoc' is honored.
23311 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23312 `--yyerror-verbose'.
23313 (_AT_CHECK_CALC): Adjust to this option.
23314 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23315
5a35a6cb
AD
233162000-10-02 Akim Demaille <akim@epita.fr>
23317
23318 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23319 the latter demonstrates a flaw in the handling of non debugging
23320 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23321 was used in order to simplify:
23322
23323 #if YYDEBUG
23324 if (yydebug)
23325 {
23326 ...
23327 }
23328 #endif
23329
23330 into
23331
23332 if (yydebug)
23333 {
23334 ...
23335 }
23336
23337 unfortunately this leads to a CPP conflict when
23338 `--name-prefix=foo' is used since it produces `#define yydebug
23339 foodebug'.
23340
23341 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23342 (YYDPRINTF): New macro.
23343 Spread its use.
23344 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23345 the bison options.
23346 Also test `--verbose', `--defines' and `--name-prefix'.
23347
71da9eea
AD
233482000-10-02 Akim Demaille <akim@epita.fr>
23349
23350 Improve the readability of the produced parsers.
23351
23352 * src/bison.s1: Formatting changes.
23353 Improve the comment related to the `$' mark.
23354 (yydefault): Don't fall through to `yyresume': `goto' there.
23355 * src/output.c (output_parser): When the `$' is met, skip the end
23356 of its line.
23357 New variable, `number_of_dollar_signs', to check there's exactly
23358 one `$' in the parser skeleton.
23359
95e36146
AD
233602000-10-02 Akim Demaille <akim@epita.fr>
23361
23362 * lib/xstrdup.c: New file, from the fileutils.
23363 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23364 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23365 instead of strlen + xmalloc + strcpy.
23366 * src/symtab.c (copys): Remove, use xstrdup instead.
23367
d7020c20
AD
233682000-10-02 Akim Demaille <akim@epita.fr>
23369
23370 * src/gram.h (associativity): New enum type which replaces the
23371 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23372 `right_assoc', `left_assoc' and `non_assoc'.
23373 Adjust all dependencies.
23374 * src/reader.c: Formatting changes.
23375 (LTYPESTR): Don't define it, use it as a literal in
23376 `reader_output_yylsp'.
23377 * src/symtab.h (symbol_class): New enum type which replaces the
23378 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23379 `sunknown', `stoken and `snterm'.
23380
1916f98e
AD
233812000-10-02 Akim Demaille <akim@epita.fr>
23382
23383 * src/getargs.c (fixed_outfiles): Rename as...
23384 (yaccflag): for consistency and accuracy.
23385 Adjust dependencies.
23386
d7913476
AD
233872000-10-02 Akim Demaille <akim@epita.fr>
23388
23389 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23390 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23391 difficult and introduced a lot of core dump. It turns out that
23392 Bison used an implementation of `xmalloc' based on `calloc', and
23393 at various places it does depend upon the initialization to 0. I
23394 have not tried to isolate the pertinent places, and all the former
23395 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23396 someone should address this issue.
23397
23398 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23399 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23400 files.
23401 Adjust dependencies.
23402 * src/warshall.h: New file.
23403 Propagate.
23404
340ef489
AD
234052000-10-02 Akim Demaille <akim@epita.fr>
23406
23407 Various anti-`extern in *.c' changes.
23408
23409 * src/system.h: Include `assert.h'.
23410
b2ca4022
AD
234112000-10-02 Akim Demaille <akim@epita.fr>
23412
23413 * src/state.h (nstates, final_state, first_state, first_shift)
23414 (first_reduction): Move their exportation from here...
23415 * src/LR0.h: to here.
23416 Adjust dependencies.
23417 * src/getargs.c (statisticsflag): New variable.
23418 Add support for `--statistics'.
23419 Adjust dependencies.
23420
23421 Remove a lot of now useless `extern' statements in most files.
23422
403b315b
AD
234232000-10-02 Akim Demaille <akim@epita.fr>
23424
23425 * src/LR0.h: New file.
23426 Propagate its use.
23427
07a58c13
AD
234282000-10-02 Akim Demaille <akim@epita.fr>
23429
23430 * src/print.h: New file.
23431 Propagate its use.
23432 * src/print.c: Formatting and ordering changes.
23433 (verbose, terse): Replace with...
23434 (print_results): this new function.
23435 Adjust dependencies.
23436
0619caf0
AD
234372000-10-02 Akim Demaille <akim@epita.fr>
23438
23439 * src/conflicts.c (conflict_report): New function.
23440 (conflict_log, verbose_conflict_log): Replace with...
23441 (print_conflicts): this function.
23442 Adjust dependencies.
23443 * src/conflicts.h: New file.
23444 Propagate its inclusion.
23445
3519ec76
AD
234462000-10-02 Akim Demaille <akim@epita.fr>
23447
23448 * src/nullable.h: New file.
23449 Propagate its inclusion.
23450 * src/nullable.c: Formatting changes.
23451
015acc48
AD
234522000-10-02 Akim Demaille <akim@epita.fr>
23453
23454 * src/reduce.h: New file.
23455 Propagate its inclusion.
23456 * src/reduce.c: Topological sort and other formatting changes.
23457 (bool, TRUE, FALSE): Move their definition to...
23458 * src/system.h: here.
23459
8963a27b
AD
234602000-10-02 Akim Demaille <akim@epita.fr>
23461
23462 * src/files.c: Formatting changes.
23463 (tryopen, tryclose, openfiles): Rename as...
23464 (xfopen, xfclose, open_files): this.
23465 (stringappend): static.
23466 * src/files.h: Complete the list of exported symbols.
23467 Propagate its use.
23468
a70083a3
AD
234692000-10-02 Akim Demaille <akim@epita.fr>
23470
23471 * src/reader.h: New file.
23472 Propagate its use instead of tedious list of `extern' and
23473 prototypes.
23474 * src/reader.c: Formatting changes, topological sort,
23475 s/register//.
23476
abadc117
AD
234772000-10-02 Akim Demaille <akim@epita.fr>
23478
23479 * src/lex.h: Prototype `lex.c' exported functions.
23480 * src/reader.c: Adjust.
23481 * src/lex.c: Formatting changes.
23482 (safegetc): Rename as...
23483 (xgetc): this.
23484
720d742f
AD
234852000-10-02 Akim Demaille <akim@epita.fr>
23486
23487 * src/lalr.h: New file.
23488 Propagate its inclusion instead of prototypes and `extern'.
23489 * src/lalr.c: Formatting changes, topological sorting etc.
23490
f2acea59
AD
234912000-10-02 Akim Demaille <akim@epita.fr>
23492
23493 * src/output.c (token_actions): Introduce a temporary array,
23494 YYDEFACT, that makes it possible for this function to use
23495 output_short_table.
23496
d019d655
AD
234972000-10-02 Akim Demaille <akim@epita.fr>
23498
23499 `user_toknums' is output as a `short[]' in `output.c', while it is
23500 defined as a `int[]' in `reader.c'. For consistency with the
23501 other output tables, `user_toknums' is now defined as a table of
23502 shorts.
23503
23504 * src/reader.c (user_toknums): Be a short table instead of an int
23505 table.
23506 Adjust dependencies.
23507
23508 Factor the short table outputs.
23509
23510 * src/output.c (output_short_table): New function.
23511 * src/output.c (output_gram, output_stos, output_rule_data)
23512 (output_base, output_table, output_check): Use it.
23513
6c89f1c1
AD
235142000-10-02 Akim Demaille <akim@epita.fr>
23515
23516 * src/output.c (output): Topological sort of the functions, in
23517 order to get rid of the `static' prototypes.
23518 No longer use `register'.
23519 * src/output.h: New file.
23520 Propagate its inclusion in files explicitly prototyping functions
23521 from output.c.
23522
d9efd181
AD
235232000-09-21 Akim Demaille <akim@epita.fr>
23524
23525 * src/atgeneral.m4: Update from Autoconf.
23526
c29240e7 235272000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
23528
23529 * src/closure.h: New file.
23530 * src/closure.c: Formatting changes, topological sort over the
23531 functions, use of closure.h.
23532 (initialize_closure, finalize_closure): Rename as...
23533 (new_closure, free_closure): these. Adjust dependencies.
23534 * src/LR0.c: Formatting changes, topological sort, use of
23535 cloture.h.
23536 (initialize_states): Rename as...
23537 (new_states): this.
23538 * src/Makefile.am (noinst_HEADERS): Adjust.
23539
499daa50
AD
235402000-09-20 Akim Demaille <akim@epita.fr>
23541
23542 * src/acconfig.h: Don't protect config.h against multiple
23543 inclusion.
23544 Don't define PARAMS.
23545 * src/system.h: Define PARAMS.
23546 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23547 purpose of config.h. system.h must not try to fix wrong
23548 definitions in config.h.
23549
cc84fd5d
AD
235502000-09-20 Akim Demaille <akim@epita.fr>
23551
23552 * src/derives.h: New file.
23553 * src/main.c, src/derives.h: Use it.
23554 Formatting changes.
23555 * src/Makefile.am (noinst_HEADERS): Adjust.
23556
db5b3a89
AD
235572000-09-20 Akim Demaille <akim@epita.fr>
23558
23559 * tests/atgeneral.m4: Update from Autoconf.
23560 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23561 (AT_CHECK_CALC): New macros.
23562 Use these macros to test bison with options `', `--raw',
23563 `--debug', `--yacc', `--yacc --debug'.
23564
ceed8467
AD
235652000-09-19 Akim Demaille <akim@epita.fr>
23566
23567 * src/output.c: Formatting changes.
23568 * src/machine.h: Remove, leaving its contents in...
23569 * src/system.h: here.
23570 Include stdio.h.
23571 Adjust all dependencies on stdio.h and machine.h.
23572 * src/getargs.h: New file.
23573 Let all `extern' declarations about getargs.c be replaced with
23574 inclusion of `getargs.h'.
23575 * src/Makefile.am (noinst_HEADERS): Adjust.
23576
23577 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23578 scope.
23579 (yyerror): Returns void, not int.
23580 * doc/bison.texinfo: Formatting changes.
23581
05a1d24b
AD
235822000-09-19 Akim Demaille <akim@epita.fr>
23583
23584 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23585 portable.
23586
cbd25751
AD
235872000-09-18 Akim Demaille <akim@epita.fr>
23588
23589 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23590 * src/Makefile.am (INCLUDES): Don't.
23591 Be ready to fetch headers in lib/.
23592
13863333
AD
235932000-09-18 Akim Demaille <akim@epita.fr>
23594
23595 * doc/bison.texinfo: Update the copyright.
23596 ANSIfy and GNUify the examples.
23597 Remove the old menu.
23598
0d533154
AD
235992000-09-18 Akim Demaille <akim@epita.fr>
23600
23601 First set of tests: use the `calc' example from the documentation.
23602
23603 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23604 is defined only when YYDEBUG is.
23605 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
23606 * src/files.c (tryopen, tryclose): Formatting changes.
23607 Move to the top and be static.
23608 * src/reader.c (read_signed_integer): Likewise.
23609 * tests/calc.m4: New file.
23610 * Makefile.am, suite.m4: Adjust.
23611 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
23612
e79137ac
AD
236132000-09-18 Akim Demaille <akim@epita.fr>
23614
23615 Add support for an Autotest test suite for Bison.
23616
23617 * m4/m4.m4, m4/atconfig.m4: New files.
23618 * m4/Makefile.am (EXTRA_DIST): Adjust.
23619 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
23620 files.
23621 * src/getargs.c: Display a more standard --version message.
23622 * src/reader.c (reader): Formatting changes.
23623 No longer depend upon VERSION_STRING.
23624 * configure.in: No longer use `dnl'.
23625 Set up the test suite and the new directory `tests/.
23626 (VERSION_STRING): Remove.
23627
27821bff
AD
236282000-04-14 Akim Demaille <akim@epita.fr>
23629
23630 * src/reader.c (copy_comment2): New function, same as former
23631 `copy_comment', but outputs into two FILE *.
23632 (copy_comment): Use it.
23633 (parse_union_decl): Use it.
23634 (get_type, parse_start_decl): Use the same `invalid' message.
23635 (parse_start_decl, parse_union_decl): Use the same `multiple'
23636 message.
23637 (parse_union_decl, copy_guard, copy_action): Use the same
23638 `unmatched' message.
23639 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
23640
cfe5fbc0
AD
236412000-03-31 Akim Demaille <akim@epita.fr>
23642
23643 * src/files.c (tryopen, tryclose): Move to the top.
23644 Be static.
23645
cb7db13e
AD
236462000-03-31 Akim Demaille <akim@epita.fr>
23647
23648 * src/main.c (main): Don't call `done', exit does it.
23649
a0f6b076
AD
236502000-03-31 Akim Demaille <akim@epita.fr>
23651
36281465
AD
23652 * allocate.c: s/return (foo)/return foo/.
23653 * lalr.c: Likewise.
23654 * LR0.c: Likewise.
23655 * output.c: Likewise.
23656 * reader.c: Likewise.
23657 * symtab.c: Likewise.
23658 * vmsgetargs.c: Likewise.
23659
236602000-03-31 Akim Demaille <akim@epita.fr>
23661
23662 Clean up the error reporting functions.
a0f6b076
AD
23663
23664 * src/report.c: New file.
23665 * src/report.h: Likewise.
23666 * src/Makefile.am: Adjust.
23667 * m4/error.m4: New file.
23668 * m4/Makefile.am: Adjust.
23669 * configure.in (jm_PREREQ_ERROR): Call it.
23670 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
23671 Remove.
23672 (fatal, fatals): Remove. All callers use complain.c::fatal.
23673 (warn, warni, warns, warnss, warnss): Remove. All callers use
23674 complain.c::complain.
23675 (toomany): Remove, use fatal instead.
23676 * src/files.c (done): No argument, use complain_message_count.
23677 * src/main.c (main): Register `done' to `atexit'.
23678
23679 * src/getargs.c (usage): More `fputs', less `fprintf'.
23680
18539825
AD
236812000-03-28 Akim Demaille <akim@epita.fr>
23682
23683 * lib/: New directory.
23684 * Makefile.am (SUBDIRS): Adjust.
23685 * configure.in: Adjust.
23686 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
23687 useless.
23688 * src/alloca.c: Moved to lib/.
23689 * src/getopt.c: Likewise.
23690 * src/getopt1.c: Likewise.
23691 * src/getopt.h: Likewise.
23692 * src/ansi2knr.c: Likewise.
23693 * src/ansi2knr.1: Likewise.
23694 * src/Makefile.am: Adjust.
23695 * lib/Makefile.am: New file.
23696
9f306f2a
AD
236972000-03-28 Akim Demaille <akim@epita.fr>
23698
23699 * src/getargs.c (usage): Refresh the help message.
23700
0ba347b6
AD
237012000-03-17 Akim Demaille <akim@epita.fr>
23702
23703 * src/getopt1.c: Updated from textutils 2.0e
23704 * src/getopt.c: Likewise.
23705 * src/getopt.h: Likewise.
23706
dbe7f271
AD
237072000-03-17 Akim Demaille <akim@epita.fr>
23708
23709 * src/Makefile.am (bison.simple): Fix the awk program: quote only
23710 the file name, not the whole `#line LINE FILE'.
23711
75bbe78d
AD
237122000-03-17 Akim Demaille <akim@epita.fr>
23713
23714 On syntax errors, report the token on which we choked.
23715
aa5fd0ee
AD
23716 * src/bison.s1 (yyparse): In the label yyerrlab, when
23717 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 23718
7b306f52
AD
237192000-03-17 Akim Demaille <akim@epita.fr>
23720
aa5fd0ee 23721 * src/reader.c (copy_at): New function.
7b306f52
AD
23722 (copy_guard): Use it.
23723 (copy_action): Use it.
23724
e87b5700
AD
237252000-03-17 Akim Demaille <akim@epita.fr>
23726
23727 Be kind to translators, save some useless translations.
23728
aa5fd0ee 23729 * src/main.c (banner): New function.
e87b5700
AD
23730 (fatal_banner): Use it.
23731 (warn_banner): Use it.
23732
ae3c3164
AD
237332000-03-17 Akim Demaille <akim@epita.fr>
23734
aa5fd0ee
AD
23735 * src/reader.c (copy_definition): Use copy_string and
23736 copy_comment. Removed now unused `match', `ended',
23737 `cplus_comment'.
ae3c3164
AD
23738 (copy_comment, copy_string): Moved, to be visible from
23739 copy_definition.
23740
4dc58e7c
AD
237412000-03-17 Akim Demaille <akim@epita.fr>
23742
aa5fd0ee
AD
23743 * src/reader.c (copy_string): Declare `static inline'. No
23744 problems with inline, since it is checked by configure.
4dc58e7c
AD
23745 (copy_comment): Likewise.
23746
0a6384c4
AD
237472000-03-17 Akim Demaille <akim@epita.fr>
23748
aa5fd0ee 23749 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 23750
3cef001a
AD
237512000-03-17 Akim Demaille <akim@epita.fr>
23752
aa5fd0ee 23753 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
23754 (copy_action): Use it. Removed now unused `match', `ended',
23755 `cplus_comment'.
23756 (copy_guard): Likewise.
23757
ca36d2ef
AD
237582000-03-17 Akim Demaille <akim@epita.fr>
23759
aa5fd0ee 23760 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
23761 (copy_action): Use it.
23762 (copy_guard): Likewise.
23763
6666f98f
AD
237642000-03-17 Akim Demaille <akim@epita.fr>
23765
23766 Change the handling of @s so that they behave exactly like $s.
23767 There is now a pseudo variable @$ (readble and writable), location
23768 of the lhs of the rule (by default ranging from the location of
23769 the first symbol of the rhs, to the location of the last symbol,
23770 or, if the rhs is empty, YYLLOC).
23771
23772 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23773 yyval.
23774 (yyparse): When providing a default semantic action, provide a
23775 default location action.
23776 (after the $): No longer change `*YYLSP', just stack YYLOC the
23777 same way you stack YYVAL.
23778 * src/reader.c (read_declarations): Use warns.
23779 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23780 (copy_action, case '@'): Likewise.
23781 Use a standard error message, to save useless work from
23782 translators.
23783
41aca2e0
AD
237842000-03-17 Akim Demaille <akim@epita.fr>
23785
aa5fd0ee
AD
23786 * src/bison.s1: Formatting and cosmetics changes.
23787 * src/reader.c: Likewise.
41aca2e0
AD
23788 Update the Copyright notice.
23789
dc08c1d5
AD
237902000-03-17 Akim Demaille <akim@epita.fr>
23791
aa5fd0ee
AD
23792 * src/bison.s1 (#line): All set to `#line' only, since the
23793 Makefile now handles them.
dc08c1d5 23794
9ee3c97b
AD
237952000-03-16 Akim Demaille <akim@epita.fr>
23796
23797 * src/output.c (output_rule_data): Output the documentation of
23798 some of the tables.
23799 (Copyright notice): Update.
23800 Formatting changes.
23801
0de741ca
AD
238022000-03-16 Akim Demaille <akim@epita.fr>
23803
23804 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23805 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23806 One `#if YYDEBUG' remains, since it uses variables which are
23807 defined only if `YYDEBUG != 0'.
23808
bb10be54
AD
238092000-03-16 Akim Demaille <akim@epita.fr>
23810
23811 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23812 and related variables so that the similarities are highlighted.
23813
b07b484a
AD
238142000-03-16 Akim Demaille <akim@epita.fr>
23815
23816 * src/bison.s1: Properly indent CPP directives.
23817
361f60b3
AD
238182000-03-16 Akim Demaille <akim@epita.fr>
23819
23820 * src/bison.s1: Properly indent the `alloca' CPP section.
23821
8c44d3ec
AD
238222000-03-16 Akim Demaille <akim@epita.fr>
23823
23824 Do not hard code values of directories in `configure.in'.
23825 Update the `configure' tool chain.
23826
23827 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23828 src/makefile.am.
23829 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23830 (AC_OUTPUT): Add m4/Makefile.
23831 Bump to bison 1.28a, 1.29 has never been released.
23832 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23833 handled via src/Makefile.am.
23834 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23835 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23836 autoheader.
23837 * Makefile.am (SUBDIRS): Add m4.
23838 (ACLOCAL_AM_FLAGS): New variable.
23839 (AUTOMAKE_OPTIONS): Add check-news.
23840 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23841 the proper line number and file name.
23842 (DEFS): Propagate the location of bison library files and of the
23843 locale files.
23844 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23845 builddir.
23846 * acinclude.m4: Remove, replaced by the directory m4.
23847 * m4/Makefile.am (EXTRA_DIST): New variable.
23848 * m4/gettext.m4: New file, from the fileutils.
23849 * m4/lcmessage.m4: Likewise
23850 * m4/progtest.m4: Likewise.
23851 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23852
f95997e7
AD
238532000-03-10 Akim Demaille <akim@epita.fr>
23854
23855 * src/closure.c:
23856 Formatting changes of various comments.
23857 Respect the GNU coding standards at various places.
23858 Don't use `_()' when no translation is needed.
23859
238601999-12-13 Jesse Thilo <jthilo@gnu.org>
23861
23862 * src/files.c:
23863 OS/2 honors TMPDIR environment variable.
23864
238651999-12-13 Jesse Thilo <jthilo@gnu.org>
23866
23867 * doc/bison.texinfo: Tweaked spelling and grammar.
23868 Updated ISBN.
23869 Removed reference to price of printed copy.
23870 Mention BISON_SIMPLE and BISON_HAIRY.
23871
238721999-12-13 Jesse Thilo <jthilo@gnu.org>
23873
23874 * configure.in, NEWS:
23875 Bison 1.29 released.
23876
238771999-10-27 Jesse Thilo <jthilo@gnu.org>
23878
23879 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23880 Added reference card.
23881
238821999-07-26 Jesse Thilo <jthilo@gnu.org>
23883
23884 * po/ru.po: Added Russian translation.
23885
238861999-07-26 Jesse Thilo <jthilo@gnu.org>
23887
23888 * configure.in: Added Russian translation.
23889
238901999-07-06 Jesse Thilo <jthilo@gnu.org>
23891
23892 * configure.in, NEWS, README:
23893 Released version 1.28.
23894
238951999-06-14 Jesse Thilo <jthilo@gnu.org>
23896
23897 * src/system.h:
23898 Squashed redefinition warning on some systems.
23899
23900 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23901 Have configure build version string instead of relying on ANSI string
23902 concatentation.
23903
239041999-06-14 Jesse Thilo <jthilo@gnu.org>
23905
23906 * po/POTFILES.in: Got rid of version.c.
23907
239081999-06-14 Jesse Thilo <jthilo@gnu.org>
23909
23910 * acconfig.h, configure.in:
23911 Have configure build version string instead of relying on ANSI string
23912 concatentation.
23913
239141999-06-08 Jesse Thilo <jthilo@gnu.org>
23915
23916 * doc/bison.1:
23917 Dropped mention of `+' for long-named options.
23918
239191999-05-30 Jesse Thilo <jthilo@gnu.org>
23920
23921 * src/files.c: Added <unistd.h> for unlink().
23922
23923 * src/Makefile.am, src/system.h:
23924 I18n fixes.
23925
239261999-05-30 Jesse Thilo <jthilo@gnu.org>
23927
23928 * README: Added a FAQ list.
23929
23930 * configure.in, acconfig.h:
23931 I18n fixes.
23932
239331999-05-30 Jesse Thilo <jthilo@gnu.org>
23934
23935 * doc/FAQ, doc/Makefile.am:
23936 Added a FAQ list.
23937
239381999-05-19 Jesse Thilo <jthilo@gnu.org>
23939
23940 * src/alloc.h, src/symtab.h, src/version.c:
23941 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23942
239431999-04-18 Jesse Thilo <jthilo@gnu.org>
23944
23945 * src/.cvsignore, src/Makefile.am:
23946 Reorganized: sources in `src', documentation in `doc'.
23947
23948 * src/lex.c (literalchar):
23949 fixed the code for escaping double quotes (thanks
23950 Jonathan Czisny.)
23951
239521999-04-18 Jesse Thilo <jthilo@gnu.org>
23953
23954 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23955 Adjusted paths to reflect directory reorganization.
23956
239571999-04-18 Jesse Thilo <jthilo@gnu.org>
23958
23959 * doc/.cvsignore, doc/Makefile.am:
23960 Reorganized: sources in `src', documentation in `doc'.
23961
239621999-04-18 Jesse Thilo <jthilo@gnu.org>
23963
23964 * configure.in:
23965 Updated AC_INIT file to reflect directory reorganization.
23966
23967 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23968 Reorganized: sources in `src', documentation in `doc'.
23969
239701999-04-13 Jesse Thilo <jthilo@gnu.org>
23971
23972 * src/allocate.c:
23973 Don't declare calloc() and realloc() if not necessary.
23974
239751999-04-13 Jesse Thilo <jthilo@gnu.org>
23976
23977 * configure.in, acconfig.h, acinclude.m4:
23978 Don't declare calloc() and realloc() if not necessary.
23979
239801999-03-23 Jesse Thilo <jthilo@gnu.org>
23981
23982 * po/.cvsignore: Added i18n support.
23983
239841999-03-23 Jesse Thilo <jthilo@gnu.org>
23985
23986 * acconfig.h, configure.in, Makefile.am:
23987 Added i18n support.
23988
239891999-03-22 Jesse Thilo <jthilo@gnu.org>
23990
23991 * src/bison.s1: Fixed #line numbers.
23992
239931999-03-15 Jesse Thilo <jthilo@gnu.org>
23994
23995 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23996 Added PO files from Translation Project.
23997
239981999-03-03 Jesse Thilo <jthilo@gnu.org>
23999
24000 * Makefile.am:
24001 Added support for non-ANSI compilers (ansi2knr).
24002
240031999-02-16 Jesse Thilo <jthilo@gnu.org>
24004
24005 * configure.in: Bumped version number to 1.27.
24006
24007 * Makefile.am:
24008 Added `bison.simple' to list of files removed by `make distclean'.
24009
240101999-02-12 Jesse Thilo <jthilo@gnu.org>
24011
24012 * src/files.c, src/files.h:
24013 Defined locations of parser files in config.h instead of Makefile.
24014
240151999-02-12 Jesse Thilo <jthilo@gnu.org>
24016
24017 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24018 Defined locations of parser files in config.h instead of Makefile.
24019
240201999-02-09 Jesse Thilo <jthilo@gnu.org>
24021
24022 * Makefile.am:
24023 Removed inappropriate use of $< macro.
24024
240251999-02-05 Jesse Thilo <jthilo@gnu.org>
24026
24027 * po/Makefile.in.in, po/POTFILES.in:
24028 Add `po' directory skeleton.
24029
240301999-01-27 Jesse Thilo <jthilo@gnu.org>
24031
24032 * README: Document help-bison list.
24033
24034 * configure.in: Add check for mkstemp().
24035
240361999-01-20 Jesse Thilo <jthilo@gnu.org>
24037
24038 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24039 Hush a few compiler warnings.
24040
24041 * src/files.c:
24042 Add tryclose(), which verifies that fclose was successful.
24043 Hush a couple of compiler warnings.
24044
240451999-01-20 Jesse Thilo <jthilo@gnu.org>
24046
24047 * Makefile.am, OChangeLog:
24048 ChangeLog is now automatically generated. Include the old version as
24049 OChangeLog.
24050
240511999-01-14 Jesse Thilo <jthilo@gnu.org>
24052
24053 * 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:
24054 Update FSF address.
24055
240561999-01-14 Jesse Thilo <jthilo@gnu.org>
24057
24058 * doc/bison.texinfo: Fix formatting glitch.
24059
24060 * doc/bison.texinfo: Update FSF address.
24061
240621999-01-14 Jesse Thilo <jthilo@gnu.org>
24063
24064 * acconfig.h: Update FSF address.
24065
240661999-01-08 Jesse Thilo <jthilo@gnu.org>
24067
24068 * src/system.h:
24069 Don't define PACKAGE here, since config.h defines it.
24070
240711998-12-30 Jesse Thilo <jthilo@gnu.org>
24072
24073 * src/reader.c: Update copyright date.
24074
24075 * src/main.c:
24076 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24077 favor of output directly to stderr (avoids buffer overruns).
24078
24079 * src/reader.c: Some checks for premature EOF.
24080
24081 * 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:
24082 Use prototypes if the compiler understands them.
24083
24084 * src/files.c: Honor TMPDIR on Unix hosts.
24085 Use prototypes if the compiler understands them.
24086
24087 * src/reader.c:
24088 Fix a couple of buffer overrun bugs.
24089 Use prototypes if the compiler understands them.
24090
24091 * src/system.h: Include unistd.h and ctype.h.
24092 Use #ifdef instead of #if for NLS symbols.
24093
240941998-12-30 Jesse Thilo <jthilo@gnu.org>
24095
24096 * doc/bison.texinfo:
24097 Delete comment "consider using @set for edition number, etc..." since
24098 we now are doing so.
24099
241001998-12-30 Jesse Thilo <jthilo@gnu.org>
24101
24102 * configure.in:
24103 Use prototypes if the compiler understands them.
24104
24105 * NEWS: Document 1.26 highlights.
24106
24107 * Makefile.am: Require Automake 1.3 or later.
24108
24109 * acconfig.h:
24110 Use prototypes if the compiler understands them.
24111
241121998-12-29 Jesse Thilo <jthilo@gnu.org>
24113
24114 * src/version.c:
24115 Use VERSION symbol from automake for version number.
24116
241171998-12-29 Jesse Thilo <jthilo@gnu.org>
24118
24119 * acconfig.h, configure.in, version.cin:
24120 Use VERSION symbol from automake for version number.
24121
241221998-11-28 Jesse Thilo <jthilo@gnu.org>
24123
24124 * Makefile.am:
24125 Distribute original version of simple parser (bison.s1), not built
24126 version (bison.simple).
24127
241281998-11-28 Jesse Thilo <jthilo@gnu.org>
24129
24130 * doc/bison.texinfo: Add info dir entry.
24131
24132 * doc/bison.texinfo:
24133 Let automake put version number into documentation.
24134
241351998-11-26 Jesse Thilo <jthilo@gnu.org>
24136
24137 * src/bison.cld, src/build.com, src/vmshlp.mar:
24138 Add non-RCS files from /gd/gnu/bison.
24139
241401998-11-26 Jesse Thilo <jthilo@gnu.org>
24141
24142 * doc/bison.1:
24143 Document the BISON_HAIRY and BISON_SIMPLE variables.
24144
241451998-11-25 Jesse Thilo <jthilo@gnu.org>
24146
24147 * src/version.c: Build version.c automatically.
24148
24149 * src/reader.c:
24150 Fix token numbering (used to start at 258, not 257).
24151
24152 * src/system.h: Include config.h.
24153
24154 * src/getargs.c: Update bug report address.
24155
24156 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24157 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24158
241591998-11-25 Jesse Thilo <jthilo@gnu.org>
24160
24161 * Makefile.am:
24162 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24163
24164 * configure.in, version.cin:
24165 Build version.c automatically.
24166
24167 * AUTHORS: Add AUTHORS file.
24168
24169 * README: Update bug report address.
24170
24171 * bison.simple:
24172 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24173
24174 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24175 Add automake stuff.
24176
241771998-11-25 Jesse Thilo <jthilo@gnu.org>
24178
24179 * doc/bison.texinfo: Clean up some formatting.
24180
241811998-05-05 Richard Stallman <rms@gnu.org>
24182
24183 * doc/bison.texinfo:
24184 Explain better why to make a pure parser.
24185
241861998-01-05 Richard Stallman <rms@gnu.org>
24187
24188 * src/files.c (openfiles):
24189 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24190 find a temporary directory, if possible. Do not unlink files while
24191 they are open.
24192
241931997-08-25 Richard Stallman <rms@gnu.org>
24194
24195 * src/reader.c (stack_offset;):
24196 Change some warni to warns.
24197
24198 * src/lex.c (literalchar): Use warns, not warni.
24199
242001997-06-28 Richard Stallman <rms@gnu.org>
24201
24202 * src/bison.s1: Add a Bison version comment.
24203
24204 * src/main.c (fatal, warn, berror):
24205 Use program_name.
24206
242071997-06-28 Richard Stallman <rms@gnu.org>
24208
24209 * Makefile.in (bison_version): New variable.
24210 (dist): Use that variable.
24211 (bison.s1): Substitute the Bison version into bison.simple.
24212
24213 * bison.simple: Add a Bison version comment.
24214
242151997-06-18 Richard Stallman <rms@gnu.org>
24216
24217 * src/main.c (fatal, warn, berror):
24218 Make error messages standard.
24219 (toomany): Improve error message text.
24220
24221 * 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:
24222 new.h renamed to alloc.h.
24223
242241997-06-18 Richard Stallman <rms@gnu.org>
24225
24226 * Makefile.in: new.h renamed to alloc.h.
24227
242281997-05-24 Richard Stallman <rms@gnu.org>
24229
24230 * src/lex.c (literalchar):
24231 Fix the code for escaping \, " and '.
24232
24233 (lex): Avoid trouble when there are many chars
24234 to discard in a char literal with just several chars in it.
24235
242361997-05-17 Richard Stallman <rms@gnu.org>
24237
24238 * src/bison.s1:
24239 Use malloc, if using alloca is troublesome.
24240 (YYSTACK_USE_ALLOCA): New flag macro.
24241 Define it for some systems and compilers.
24242 (YYSTACK_ALLOC): New macro.
24243 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24244 If it was malloc'd, free it.
24245
242461997-05-17 Richard Stallman <rms@gnu.org>
24247
24248 * bison.simple:
24249 Use malloc, if using alloca is troublesome.
24250 (YYSTACK_USE_ALLOCA): New flag macro.
24251 Define it for some systems and compilers.
24252 (YYSTACK_ALLOC): New macro.
24253 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24254 If it was malloc'd, free it.
24255
242561997-04-23 Richard Stallman <rms@gnu.org>
24257
24258 * src/bison.s1:
24259 (alloca) [__hpux]: Always define as __builtin_alloca.
24260
242611997-04-23 Richard Stallman <rms@gnu.org>
24262
24263 * bison.simple:
24264 (alloca) [__hpux]: Always define as __builtin_alloca.
24265
242661997-04-22 Richard Stallman <rms@gnu.org>
24267
24268 * src/bison.s1:
24269 [__hpux]: Include alloca.h (right for HPUX 10)
24270 instead of declaring alloca (right for HPUX 9).
24271
24272 * src/bison.s1 (__yy_memcpy):
24273 Declare arg `count' as unsigned int.
24274 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24275
242761997-04-22 Richard Stallman <rms@gnu.org>
24277
24278 * bison.simple:
24279 [__hpux]: Include alloca.h (right for HPUX 10)
24280 instead of declaring alloca (right for HPUX 9).
24281
24282 * bison.simple (__yy_memcpy):
24283 Declare arg `count' as unsigned int.
24284 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24285
242861997-01-03 Richard Stallman <rms@gnu.org>
24287
24288 * src/allocate.c: [__STDC__ or _MSC_VER]:
24289 Declare calloc and realloc to return void *.
24290
242911997-01-02 Richard Stallman <rms@gnu.org>
24292
24293 * src/system.h:
24294 [_MSC_VER]: Include stdlib.h and process.h.
24295 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24296
24297 * src/main.c (main): Return FAILURE as a value.
24298 (printable_version): Declare arg as int, not char.
24299
243001997-01-02 Richard Stallman <rms@gnu.org>
24301
24302 * Makefile.in (dist):
24303 Explicitly check for symlinks, and copy them.
24304
243051996-12-19 Richard Stallman <rms@gnu.org>
24306
24307 * src/files.c:
24308 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24309
243101996-12-18 Paul Eggert <eggert@gnu.org>
24311
24312 * src/bison.s1 (yyparse):
24313 If __GNUC__ and YYPARSE_PARAM are both defined,
24314 declare yyparse to have a void * argument.
24315
243161996-12-18 Paul Eggert <eggert@gnu.org>
24317
24318 * bison.simple (yyparse):
24319 If __GNUC__ and YYPARSE_PARAM are both defined,
24320 declare yyparse to have a void * argument.
24321
243221996-12-17 Richard Stallman <rms@gnu.org>
24323
24324 * src/reduce.c (nbits): Add some casts.
24325
243261996-08-12 Richard Stallman <rms@gnu.org>
24327
24328 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24329
243301996-08-12 Richard Stallman <rms@gnu.org>
24331
24332 * bison.simple: Test _MSDOS as well as _MSDOS_.
24333
243341996-07-31 Richard Stallman <rms@gnu.org>
24335
24336 * src/bison.s1:
24337 [__sun && __i386]: Include alloca.h.
24338
243391996-07-31 Richard Stallman <rms@gnu.org>
24340
24341 * bison.simple:
24342 [__sun && __i386]: Include alloca.h.
24343
243441996-07-30 Richard Stallman <rms@gnu.org>
24345
24346 * src/bison.s1: Comment change.
24347
24348 * src/bison.s1: Test _MSDOS_, not MSDOS.
24349
243501996-07-30 Richard Stallman <rms@gnu.org>
24351
24352 * bison.simple: Comment change.
24353
24354 * bison.simple: Test _MSDOS_, not MSDOS.
24355
243561996-06-01 Richard Stallman <rms@gnu.org>
24357
24358 * 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:
24359 Insert `_' macro around many string constants.
24360
24361 * src/main.c:
24362 Insert `_' macro around many string constants.
24363
24364 (main): Call setlocale, bindtextdomain and textdomain.
24365
24366 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24367 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24368 [ENABLE_NLS]: Include libintl.h.
24369 [ENABLE_NLS] (gettext): Define.
24370 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24371 (N_, PACKAGE, LOCALEDIR): New macros.
24372
243731996-06-01 Richard Stallman <rms@gnu.org>
24374
24375 * POTFILES.in: New file.
24376
24377 * Makefile.in (allocate.o):
24378 Define target explicitly.
24379
24380 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24381 (LDFLAGS): Set to @LDFLAGS@.
24382 (configure): Run autoconf only if preceding `cd' succeeds.
24383 (bison.s1): Redirect output to temporary file then move the
24384 temporary to the target, rather than redirecting directly to bison.s1.
24385 (clean): Remove config.status and config.log.
24386 (distclean): Don't remove config.status here.
24387
243881996-05-12 Richard Stallman <rms@gnu.org>
24389
24390 * src/bison.s1:
24391 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24392
243931996-05-12 Richard Stallman <rms@gnu.org>
24394
24395 * bison.simple:
24396 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24397
243981996-05-11 Richard Stallman <rms@gnu.org>
24399
24400 * src/bison.s1 (__yy_memcpy):
24401 Really reorder the args, as was supposedly done on Feb 14 1995.
24402 (yyparse): Calls changed accordingly.
24403
244041996-05-11 Richard Stallman <rms@gnu.org>
24405
24406 * Makefile.in (dist): Don't use $(srcdir).
24407
24408 * bison.simple (__yy_memcpy):
24409 Really reorder the args, as was supposedly done on Feb 14 1995.
24410 (yyparse): Calls changed accordingly.
24411
244121996-01-27 Richard Stallman <rms@gnu.org>
24413
24414 * src/output.c (output_rule_data):
24415 Test YYERROR_VERBOSE in the conditional
24416 around the definition of ttyname.
24417
244181995-12-29 Richard Stallman <rms@gnu.org>
24419
24420 * src/bison.s1:
24421 Fix line numbers in #line commands.
24422
244231995-12-29 Richard Stallman <rms@gnu.org>
24424
24425 * bison.simple:
24426 Fix line numbers in #line commands.
24427
244281995-12-27 Richard Stallman <rms@gnu.org>
24429
24430 * src/bison.s1 (YYPARSE_PARAM_DECL):
24431 In C++, make it always null.
24432 (YYPARSE_PARAM_ARG): New macro.
24433 (yyparse): Use YYPARSE_PARAM_ARG.
24434
244351995-12-27 Richard Stallman <rms@gnu.org>
24436
24437 * bison.simple (YYPARSE_PARAM_DECL):
24438 In C++, make it always null.
24439 (YYPARSE_PARAM_ARG): New macro.
24440 (yyparse): Use YYPARSE_PARAM_ARG.
24441
244421995-11-29 Richard Stallman <rms@gnu.org>
24443
24444 * doc/bison.texinfo:
24445 Describe literal string tokens, %raw, %no_lines, %token_table.
24446
244471995-11-29 Daniel Hagerty <hag@gnu.org>
24448
24449 * doc/bison.texinfo: Fixed update date
24450
244511995-10-16 Richard Stallman <rms@gnu.org>
24452
24453 * src/version.c: Version 1.25.
24454
244551995-10-16 Richard Stallman <rms@gnu.org>
24456
24457 * NEWS: *** empty log message ***
24458
244591995-10-16 Richard Stallman <rms@gnu.org>
24460
24461 * doc/bison.1, doc/bison.rnh:
24462 Add new options.
24463
244641995-10-15 Richard Stallman <rms@gnu.org>
24465
24466 * src/vmsgetargs.c, src/getargs.c:
24467 Added -n, -k, and -raw switches.
24468 (noparserflag, toknumflag, rawtoknumflag): New variables.
24469
24470 * src/symtab.h (SALIAS):
24471 New #define for adding aliases to %token.
24472 (struct bucket): Added `alias' field.
24473
24474 * src/reduce.c (reduce_grammar):
24475 Revise error message.
24476 (print_notices): Remove final `.' from error message.
24477
24478 * src/reader.c (reader_output_yylsp):
24479 New function.
24480 (readgram): Use `#if 0' around code that accepted %command
24481 inside grammar rules: The documentation doesn't allow it,
24482 and it will fail since the %command processors scan for the next %.
24483 (parse_token_decl): Extended the %token
24484 declaration to allow a multi-character symbol as an alias.
24485 (parse_thong_decl): New function.
24486 (read_declarations): Added %thong declarations.
24487 (read_declarations): Handle NOOP to deal with allowing
24488 % declarations as another means to specify the flags.
24489 (readgram): Allow %prec prior to semantics embedded in a rule.
24490 (skip_to_char, read_declarations, copy_definition)
24491 (parse_token_decl, parse_start_decl, parse_type_decl)
24492 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24493 (get_type_name, copy_guard, copy_action, readgram)
24494 (get_type, packsymbols): Revised most error messages.
24495 Changed `fatal' to `warnxxx' to avoid aborting for error.
24496 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24497 (read_declarations): Improve the error message for
24498 an invalid character. Do not abort.
24499 (read_declarations, copy_guard, copy_action): Use
24500 printable_version to avoid unprintable characters in printed output.
24501 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24502 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24503 Allow the type of a non-terminal can be given
24504 more than once, as long as all specifications give the same type.
24505
24506 * src/output.c:
24507 (output_headers, output_trailers, output, output_gram)
24508 (output_rule_data): Implement noparserflag variable.
24509 Implement toknumflag variable.
24510 (output): Call reader_output_yylsp to output LTYPESTR.
24511
24512 * src/main.c (main):
24513 If reader sees an error, don't process the grammar.
24514 (fatals): Updated to not use VARARGS1.
24515 (printable_version, int_to_string, warn, warni, warns, warnss)
24516 (warnsss): New error reporting functions. Avoid abort for error.
24517
24518 * src/lex.h:
24519 Added THONG and NOOP for alias processing.
24520 Added SETOPT for the new code that allows setting options with %flags.
24521
24522 * src/lex.c:
24523 Include getopt.h. Add some extern decls.
24524 (safegetc): New function to deal with EOF gracefully.
24525 (literalchar); new function to deal with reading \ escapes.
24526 (lex): Use literalchar.
24527 (lex): Implemented "..." tokens.
24528 (literalchar, lex, parse_percent_token): Made tokenbuffer
24529 always contain the token. This includes growing the token
24530 buffer while reading an integer.
24531 (parse_percent_token): Replaced if-else statement with percent_table.
24532 (parse_percent_token): Added % declarations as another
24533 way to specify the flags -n, -l, and -r. Also added hooks for
24534 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24535 major changes to files.c.
24536 (lex) Retain in the incoming stream a character following
24537 an incorrect '/'.
24538 (skip_white_space, lex): Revised most error messages
24539 and changed fatal to warn to avoid aborting.
24540 (percent_table): Added %thong declarations.
24541
24542 * src/gram.h: Comment changes.
24543
24544 * src/files.c (openfiles, open_extra_files, done):
24545 Add faction flag
24546 and actfile file. Handle noparserflag. Both for -n switch.
24547
24548 * src/conflicts.c (resolve_sr_conflict):
24549 Remove use of alloca.
24550
245511995-06-01 Jim Meyering <meyering@gnu.org>
24552
24553 * doc/bison.texinfo: *** empty log message ***
24554
245551995-05-06 Richard Stallman <rms@gnu.org>
24556
24557 * src/bison.s1: Comment change.
24558
245591995-05-06 Richard Stallman <rms@gnu.org>
24560
24561 * bison.simple: Comment change.
24562
245631995-05-03 Richard Stallman <rms@gnu.org>
24564
24565 * src/version.c: Version now 1.24.
24566
24567 * src/bison.s1: Change distribution terms.
24568
24569 * src/version.c: Version now 1.23.
24570
245711995-05-03 Richard Stallman <rms@gnu.org>
24572
24573 * doc/bison.texinfo:
24574 Rewrite "Conditions for Using Bison".
24575 Update version to 1.24.
24576
245771995-05-03 Richard Stallman <rms@gnu.org>
24578
24579 * bison.simple: Change distribution terms.
24580
245811995-02-23 Richard Stallman <rms@gnu.org>
24582
24583 * src/files.c: Test __VMS_POSIX as well as VMS.
24584
245851995-02-14 Jim Meyering <meyering@gnu.org>
24586
24587 * src/bison.s1 (__yy_memcpy):
24588 Renamed from __yy_bcopy to avoid
24589 confusion. Reverse FROM and TO arguments to be consistent with
24590 those of memcpy.
24591
245921995-02-14 Jim Meyering <meyering@gnu.org>
24593
24594 * bison.simple (__yy_memcpy):
24595 Renamed from __yy_bcopy to avoid
24596 confusion. Reverse FROM and TO arguments to be consistent with
24597 those of memcpy.
24598
245991994-11-10 David J. MacKenzie <djm@gnu.org>
24600
24601 * NEWS: reformat
24602
24603 * NEWS: New file.
24604
24605 * Makefile.in (DISTFILES): Include NEWS.
24606
24607 * Makefile.in (DISTFILES):
24608 Include install-sh, not install.sh.
24609
24610 * configure.in: Update to Autoconf v2 macro names.
24611
246121994-10-05 David J. MacKenzie <djm@gnu.org>
24613
24614 * Makefile.in: fix typo
24615
24616 * Makefile.in (prefix, exec_prefix):
24617 Let configure set them.
24618
246191994-09-28 David J. MacKenzie <djm@gnu.org>
24620
24621 * Makefile.in: Set datadir to $(prefix)/share.
24622
246231994-09-15 Richard Stallman <rms@gnu.org>
24624
24625 * src/bison.s1:
24626 Update copyright notice and GPL version.
24627
246281994-09-15 Richard Stallman <rms@gnu.org>
24629
24630 * bison.simple:
24631 Update copyright notice and GPL version.
24632
246331994-07-12 Richard Stallman <rms@gnu.org>
24634
24635 * src/reduce.c, src/reader.c:
24636 entered into RCS
24637
246381994-05-05 David J. MacKenzie <djm@gnu.org>
24639
24640 * Makefile.in: entered into RCS
24641
246421994-03-26 Richard Stallman <rms@gnu.org>
24643
24644 * src/bison.s1: entered into RCS
24645
246461994-03-26 Richard Stallman <rms@gnu.org>
24647
24648 * bison.simple: entered into RCS
24649
246501994-03-25 Richard Stallman <rms@gnu.org>
24651
24652 * src/main.c: entered into RCS
24653
246541994-03-24 Richard Stallman <rms@gnu.org>
24655
24656 * src/conflicts.c: entered into RCS
24657
246581994-01-02 Richard Stallman <rms@gnu.org>
24659
24660 * Makefile.in: *** empty log message ***
24661
246621993-11-21 Richard Stallman <rms@gnu.org>
24663
24664 * src/bison.s1: *** empty log message ***
24665
246661993-11-21 Richard Stallman <rms@gnu.org>
24667
24668 * doc/bison.texinfo: entered into RCS
24669
24670 * doc/bison.texinfo: *** empty log message ***
24671
246721993-11-21 Richard Stallman <rms@gnu.org>
24673
24674 * bison.simple: *** empty log message ***
24675
246761993-10-25 David J. MacKenzie <djm@gnu.org>
24677
24678 * doc/bison.texinfo: *** empty log message ***
24679
246801993-10-19 Richard Stallman <rms@gnu.org>
24681
24682 * src/bison.s1: *** empty log message ***
24683
246841993-10-19 Richard Stallman <rms@gnu.org>
24685
24686 * bison.simple: *** empty log message ***
24687
246881993-10-14 Richard Stallman <rms@gnu.org>
24689
24690 * src/bison.s1: *** empty log message ***
24691
246921993-10-14 Richard Stallman <rms@gnu.org>
24693
24694 * bison.simple: *** empty log message ***
24695
246961993-09-14 David J. MacKenzie <djm@gnu.org>
24697
24698 * doc/bison.texinfo: *** empty log message ***
24699
247001993-09-13 Noah Friedman <friedman@gnu.org>
24701
24702 * Makefile.in: *** empty log message ***
24703
247041993-09-10 Richard Stallman <rms@gnu.org>
24705
24706 * src/conflicts.c: *** empty log message ***
24707
24708 * src/system.h: entered into RCS
24709
247101993-09-10 Richard Stallman <rms@gnu.org>
24711
24712 * doc/bison.1: entered into RCS
24713
247141993-09-06 Noah Friedman <friedman@gnu.org>
24715
24716 * src/version.c: entered into RCS
24717
247181993-09-06 Noah Friedman <friedman@gnu.org>
24719
24720 * Makefile.in: *** empty log message ***
24721
247221993-07-30 David J. MacKenzie <djm@gnu.org>
24723
24724 * Makefile.in: *** empty log message ***
24725
247261993-07-24 Richard Stallman <rms@gnu.org>
24727
24728 * src/bison.s1: *** empty log message ***
24729
247301993-07-24 Richard Stallman <rms@gnu.org>
24731
24732 * bison.simple: *** empty log message ***
24733
247341993-07-08 David J. MacKenzie <djm@gnu.org>
24735
24736 * Makefile.in: *** empty log message ***
24737
247381993-07-04 Richard Stallman <rms@gnu.org>
24739
24740 * src/bison.s1: *** empty log message ***
24741
247421993-07-04 Richard Stallman <rms@gnu.org>
24743
24744 * bison.simple: *** empty log message ***
24745
247461993-06-26 David J. MacKenzie <djm@gnu.org>
24747
24748 * src/getargs.c: entered into RCS
24749
247501993-06-26 David J. MacKenzie <djm@gnu.org>
24751
24752 * doc/bison.texinfo: *** empty log message ***
24753
24754 * doc/bison.1: New file.
24755
247561993-06-25 Richard Stallman <rms@gnu.org>
24757
24758 * src/getargs.c: New file.
24759
247601993-06-16 Richard Stallman <rms@gnu.org>
24761
24762 * src/bison.s1: *** empty log message ***
24763
247641993-06-16 Richard Stallman <rms@gnu.org>
24765
24766 * bison.simple: *** empty log message ***
24767
247681993-06-03 Richard Stallman <rms@gnu.org>
24769
24770 * src/bison.s1: New file.
24771
247721993-06-03 Richard Stallman <rms@gnu.org>
24773
24774 * doc/bison.texinfo: *** empty log message ***
24775
247761993-06-03 Richard Stallman <rms@gnu.org>
24777
24778 * bison.simple: New file.
24779
247801993-05-19 Richard Stallman <rms@gnu.org>
24781
24782 * doc/bison.texinfo: New file.
24783
247841993-05-07 Noah Friedman <friedman@gnu.org>
24785
24786 * Makefile.in: *** empty log message ***
24787
247881993-04-28 Noah Friedman <friedman@gnu.org>
24789
24790 * src/reader.c: *** empty log message ***
24791
247921993-04-23 Noah Friedman <friedman@gnu.org>
24793
24794 * src/alloc.h: entered into RCS
24795
247961993-04-20 David J. MacKenzie <djm@gnu.org>
24797
24798 * src/version.c: *** empty log message ***
24799
24800 * src/files.c, src/allocate.c:
24801 entered into RCS
24802
24803 * src/reader.c: *** empty log message ***
24804
24805 * src/lex.c: entered into RCS
24806
24807 * src/conflicts.c: New file.
24808
24809 * src/symtab.c: entered into RCS
24810
24811 * src/alloc.h: New file.
24812
24813 * src/LR0.c: entered into RCS
24814
248151993-04-18 Noah Friedman <friedman@gnu.org>
24816
24817 * src/reader.c: New file.
24818
24819 * src/version.c: *** empty log message ***
24820
248211993-04-18 Noah Friedman <friedman@gnu.org>
24822
24823 * Makefile.in: *** empty log message ***
24824
248251993-04-17 Noah Friedman <friedman@gnu.org>
24826
24827 * Makefile.in: *** empty log message ***
24828
248291993-04-15 Richard Stallman <rms@gnu.org>
24830
24831 * src/main.c, src/files.c:
24832 New file.
24833
248341993-04-15 Noah Friedman <friedman@gnu.org>
24835
24836 * configure.in: entered into RCS
24837
24838 * configure.in: *** empty log message ***
24839
24840 * configure.in: New file.
24841
248421993-04-14 Richard Stallman <rms@gnu.org>
24843
24844 * Makefile.in: New file.
24845
248461993-04-13 Richard Stallman <rms@gnu.org>
24847
24848 * src/version.c: New file.
24849
248501993-03-25 Richard Stallman <rms@gnu.org>
24851
24852 * src/output.c: entered into RCS
24853
248541992-09-25 Richard Stallman <rms@gnu.org>
24855
24856 * configure.bat: entered into RCS
24857
248581992-06-22 Richard Stallman <rms@gnu.org>
24859
24860 * src/vmsgetargs.c: entered into RCS
24861
248621992-06-22 Richard Stallman <rms@gnu.org>
24863
24864 * doc/bison.rnh: entered into RCS
24865
248661992-04-20 David J. MacKenzie <djm@gnu.org>
24867
24868 * README: entered into RCS
24869
248701992-01-22 Richard Stallman <rms@gnu.org>
24871
24872 * src/machine.h: entered into RCS
24873
248741991-12-21 Richard Stallman <rms@gnu.org>
24875
24876 * src/lalr.c, src/closure.c:
24877 entered into RCS
24878
248791991-12-20 Richard Stallman <rms@gnu.org>
24880
24881 * src/state.h: entered into RCS
24882
248831991-12-18 Richard Stallman <rms@gnu.org>
24884
24885 * src/print.c, src/nullable.c, src/derives.c:
24886 entered into RCS
24887
248881991-11-03 David J. MacKenzie <djm@gnu.org>
24889
24890 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24891 entered into RCS
24892
248931988-09-09 Richard Stallman <rms@gnu.org>
24894
24895 * src/bison.hairy: entered into RCS
24896
248971987-12-16 Richard Stallman <rms@gnu.org>
24898
24899 * REFERENCES: entered into RCS
dc546b0f 24900
f294a2c2 24901
04098407 24902 -----
f294a2c2 24903
04098407 24904 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e021191b
JD
24905 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
24906 2008, 2009 Free Software Foundation, Inc.
f294a2c2 24907
04098407
PE
24908 Copying and distribution of this file, with or without
24909 modification, are permitted provided the copyright notice and this
24910 notice are preserved.