]> git.saurik.com Git - bison.git/blob - ChangeLog
62488863a16dcc47916cb05c9fa186553eb08859
[bison.git] / ChangeLog
1 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
2
3 tests: fix missing include caught by g++ 4.4.1.
4 Reported by Tys Lefering.
5 * HACKING (Release checks): Add note about trying a recent GCC.
6 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
7 cstdlib for abort.
8 (_AT_DATA_EXPECT2_Y): Likewise.
9
10 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
11
12 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
13
14 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
15
16 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
17 * HACKING (Release Procedure): Update notes on copyright years.
18 * Makefile.am (update-package-copyright-year): New target rule.
19 * build-aux/update-package-copyright-year: New file.
20 * cfg.mk (update-copyright): Add update-package-copyright-year
21 as a dependency.
22
23 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
24
25 * bootstrap: Import improvements from latest gnulib.
26
27 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
28
29 build: require Automake 1.11.1 to avoid a security flaw.
30 * HACKING (Release Procedure): Don't document Automake security
31 flaw here.
32 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
33 why here.
34
35 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
36
37 gnulib: update to latest.
38
39 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
40
41 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
42
43 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
44
45 Thank the developer of the initial push parser implementation.
46 This unfortunate oversight is several years old.
47 * THANKS (Odd Arild Olsen): Add.
48
49 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
50
51 Fix some comments concerning LR(0) versus LALR(1).
52
53 Stop equating LR(0) with nondeterminism and LALR(1) with
54 determinism. That is, if all states are consistent, then LR(0)
55 tables are deterministic. On the other hand, LALR(1) tables
56 might be nondeterministic before conflict resolution, and GLR
57 permits LALR(1) tables to remain nondeterministic.
58 * src/LR0.c, src/LR0.h: Here.
59 * src/lalr.c, src/lalr.h: Here.
60 * src/main.c (main): Here.
61 * src/state.c, src/state.h: Here.
62
63 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
64 parser tables.
65
66 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
67
68 maint: run "make update-copyright"
69
70 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
71
72 POSIX: complain if %prec's token was not defined.
73 * NEWS (2.5): Document.
74 * src/reader.c (grammar_rule_check): Convert warning to
75 complaint.
76 * tests/input.at (%prec's token must be defined): Update.
77
78 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
79
80 POSIX: warn if %prec's token was not defined.
81 Reported by Florian Krohm at
82 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
83 * NEWS (2.4.2): Document.
84 * src/reader.c (grammar_rule_check): Implement.
85 (grammar_current_rule_prec_set): Add comments explaining that we
86 here assume a %prec identifier is a token, but we still manage
87 to support POSIX.
88 * tests/input.at (%prec's token must be defined): New test
89 group.
90
91 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
92
93 * HACKING (Release Procedure): Recommend a secure automake.
94
95 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
96
97 portability: `<' and `>' are not always defined on addresses.
98 Specifically, don't sort objects by their memory addresses when
99 they're not allocated in the same array or other object. Though
100 I haven't found a test case where that fails on my platform, C
101 says the behavior is undefined.
102 * src/AnnotationList.c (AnnotationList__insertInto): Remove
103 FIXME. Use new id field of InadequacyList nodes rather than
104 their memory addresses when sorting.
105 (AnnotationList__compute_from_inadequacies): Add
106 inadequacy_list_node_count argument to pass to
107 InadequacyList__new_conflict.
108 * src/AnnotationList.h
109 (AnnotationList__compute_from_inadequacies): Update prototype
110 and documentation for new argument.
111 * src/InadequacyList.c (InadequacyList__new_conflict): Add
112 node_count argument and use it to assign a unique ID.
113 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
114 (InadequacyList): Add id field.
115 (InadequacyList__new_conflict): Update prototype and
116 documentation for new argument.
117 * src/ielr.c (ielr_compute_annotation_lists): Update
118 AnnotationList__compute_from_inadequacies invocation.
119
120 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
121
122 Fix handling of yychar manipulation in user semantic actions.
123 The problem was that yacc.c didn't always update the yychar
124 translation afterwards. However, other skeletons appear to be
125 fine. glr.c appears to already translate yychar before every
126 use. lalr1.cc does not define yychar and does not document its
127 replacement, yyla, for users. It does provide yyclearin, but
128 that does not manipulate yyla and thus requires no translation
129 update. In lalr1.java, yychar is out of scope during semantic
130 actions.
131 * NEWS (2.5): Document.
132 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
133 yytoken here.
134 (yyparse, yypush_parse): Instead, translate before every use of
135 yytoken, and add comments explaining this approach.
136 * tests/actions.at (Destroying lookahead assigned by semantic
137 action): New test group checking that translation happens before
138 lookahead destructor calls at parser return. Previously,
139 incorrect destructors were called.
140 * tests/conflicts.at (parse.error=verbose and consistent
141 errors): New test group checking that translation happens at
142 syntax error detection before the associated verbose error
143 message and the associated lookahead destructor calls. While
144 the destructor call is fixed by this patch, the verbose error
145 message is currently incorrect due to another bug (see
146 comments in test group), so this is an expected failure for now.
147
148 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
149
150 YYFAIL: warn about uses and remove from lalr1.java.
151 * NEWS (2.5): Document.
152 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
153 and make it private. Update all uses.
154 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
155
156 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
157
158 YYFAIL: deprecate.
159 * NEWS (2.4.2): Document deprecation and the phase-out plan.
160 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
161 deprecation.
162 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
163 YYFAIL from GCC cpp's -Wunused-macros.
164 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
165 documentation.
166 (LocalWords): Remove YYFAIL.
167
168 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
169
170 tests: cleanup.
171 * tests/c++.at (Syntax error discarding no lookahead): Don't
172 ignore stderr. Instead, eliminate remaining warnings.
173
174 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
175
176 lalr1.cc: don't discard non-existent lookahead on syntax error.
177 * data/lalr1.cc (parser::parse): Check yyempty first.
178 * tests/c++.at (Syntax error discarding no lookahead): New test
179 group.
180
181 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
182
183 Code cleanup.
184 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
185 function, which is no longer used.
186
187 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
188
189 Add gcc's -Wundef to test suite and fix another warning from it.
190 * NEWS (2.4.2): Update description of -Wundef fix.
191 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
192 (WARN_CFLAGS_TEST): New substitution.
193 * data/glr.c: Avoid warning about __STRICT_ANSI__.
194 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
195 WARN_CFLAGS.
196 (NO_WERROR_CFLAGS): Likewise.
197 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
198
199 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
200
201 * data/yacc.c: Reformat m4 a little.
202
203 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
204
205 Document gcc -Wundef fix.
206 * NEWS (2.4.2): Here.
207 * THANKS (Jonathan Nieder): Add.
208
209 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
210
211 Simplify y.tab.c when location tracking is disabled.
212 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
213 tracking is not enabled. Instead, unconditionally define
214 YY_LOCATION_PRINT as a no-op for backward compatibility.
215
216 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
217
218 Avoid warnings from gcc -Wundef y.tab.c.
219 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
220 defined before using them.
221 * data/lalr1.cc: Likewise.
222 * data/yacc.c: Likewise.
223
224 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
225
226 autoconf: update to latest for fix of M4 detection.
227 Reported by Eric Blake.
228 * submodules/autoconf: Update.
229
230 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
231
232 portability: use -DGNULIB_POSIXCHECK.
233 Reported by Eric Blake. See discussions at
234 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
235 and
236 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
237 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
238 * bootstrap.conf (gnulib_modules): Add all the printf modules
239 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
240 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
241 (excluded_files): Remove m4/printf-posix.m4.
242 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
243 lib/libbison.a so gnulib libraries can be linked.
244
245 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
246
247 gnulib: update for fix of fprintf-posix, which we'll use soon.
248 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
249 targets so that gnulib's new arg-nonnull.h and link-warning.h
250 are matched.
251 * gnulib: Update.
252
253 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
254
255 Enable assertion output and --disable-assert for configure.
256 * bootstrap.conf (gnulib_modules): Add assert module.
257 * src/system.h (aver): Define as assert, and summarize the
258 discussion on this issue.
259
260 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
261
262 Expand GLR acronym in summary of Bison.
263 Based on discussion with Akim Demaille starting at
264 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
265 * doc/bison.texinfo (Introduction): Here.
266 * src/getargs.c (usage): Here.
267
268 2009-10-03 Alex Rozenman <rozenman@gmail.com>
269
270 Document named references.
271 * doc/bison.texinfo (Actions): Add new example and xref to
272 Using Named References node.
273 (Using Named References): New node.
274
275 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
276
277 cleanup.
278 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
279 of char*.
280 (Sbitset__isEmpty): Use Sbitset instead of char*.
281 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
282 instead of char. This helps to avoid casting errors.
283 (Sbitset__or): Use Sbitset instead of char*.
284
285 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
286
287 portability: don't assume 8-bit bytes.
288 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
289 * src/Sbitset.h (Sbitset__nbytes): Here.
290 (Sbitset__byteAddress): Here.
291 (Sbitset__bit_mask): Here.
292 (Sbitset__last_byte_mask): Here.
293 (Sbitset__ones): Here.
294 (SBITSET__FOR_EACH): Here.
295
296 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
297
298 portability: use va_start and va_end in the same function.
299 * src/complain.c (error_message): Move va_end from here...
300 (ERROR_MESSAGE): ... to here.
301
302 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
303
304 * data/bison.m4: Update comments for rename to muscle-tab.h.
305
306 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
307
308 Minor code cleanup.
309 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
310 replace all uses with UNIQSTR_CONCAT.
311 * src/uniqstr.c (uniqstr_vsprintf): New function.
312 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
313 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
314 macros.
315
316 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
317
318 * TODO (Complaint submessage indentation): New.
319
320 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
321
322 Minor code cleanup.
323 * src/parse-gram.y: Clean up sorting of declarations.
324 Use types to simplify %printer declarations where possible.
325 Provide %printer for BRACKETED_ID and symbol.prec.
326 * src/symtab.c: Whitespace change.
327
328 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
329
330 tests: skip tests of file names that platform does not support.
331 Reported by Michael Raskin at
332 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
333 * THANKS (Michael Raskin): Add.
334 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
335 to fail at least for file names containing ":" or "\".
336
337 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
338
339 yysyntax_error: avoid duplicate lookahead collection.
340 Except when memory reallocation is required, this change
341 eliminates the need to invoke yysyntax_error twice and thus to
342 repeat the collection of lookaheads. It also prepares for
343 future extensions that will make those repetitions more
344 expensive and that will require additional memory management in
345 yysyntax_error. Finally, it fixes an obscure bug already
346 exercised in the test suite.
347 * data/yacc.c (yysyntax_error): Add arguments for message
348 buffer variables stored in the parser. Instead of size, return
349 status similar to yyparse status but indicating success of
350 message creation. Other than the actual reallocation of the
351 message buffer, import and clean up memory management code
352 from...
353 (yyparse, yypush_parse): ... here.
354 * tests/regression.at (parse.error=verbose overflow): No longer
355 an expected failure.
356
357 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
358
359 yysyntax_error: test memory management more.
360 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
361 * tests/regression.at (parse.error=verbose and
362 YYSTACK_USE_ALLOCA): New test group.
363 (parse.error=verbose overflow): New test group that reveals an
364 obscure bug. Expected fail for now.
365
366 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
367
368 benchmarks: use %debug consistently among grammars.
369 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
370 %debug by default. It can affect the timings even if yydebug=0.
371 (generate_grammar_calc): For consistency with other grammars,
372 use YYDEBUG environment variable to set yydebug.
373
374 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
375
376 Remove dead code.
377 * src/symtab.c (symbol_pack): Here because every symbol's number
378 is always defined by this time.
379
380 2009-10-03 Alex Rozenman <rozenman@gmail.com>
381
382 Add additional space after periods in NEWS.
383 * NEWS (2.5): here.
384
385 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
386
387 Use the correct conversion specifier for size_t.
388 Reported by Jim Meyering.
389 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
390 because Sbitset__Index is size_t.
391 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
392
393 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
394
395 tests: don't abuse AT_BISON_CHECK.
396 * tests/regression.at (parse-gram.y: LALR = IELR): Move
397 additional shell commands outside of AT_BISON_CHECK.
398
399 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
400
401 tests: check that parse-gram.y's IELR and LALR are identical.
402 * tests/atlocal.in (abs_top_srcdir): New shell variable.
403 * tests/regression.at (parse-gram.y: LALR = IELR): New test
404 group.
405
406 2009-09-19 Alex Rozenman <rozenman@gmail.com>
407
408 Keep sub-messages aligned. Fix strings for translation.
409 * src/location.h (location_print): Add return value.
410 * src/location.c (location_print): Return number of printed
411 characters.
412 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
413 new functions.
414 * src/complain.cpp (indent_ptr): New static variable.
415 (error_message, complain_at_indent, warn_at_indent): Implement
416 the alignment mechanism.
417 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
418 for translations. Use new alignment mechanism.
419 * tests/named-ref.at: Adjust test-cases.
420 * NEWS (2.5): Add an announcement about named references.
421
422 2009-09-17 Akim Demaille <demaille@gostai.com>
423
424 doc: fixes.
425 * doc/bison.texinfo: here.
426 Reported by Alex Rozenman.
427
428 2009-09-16 Akim Demaille <demaille@gostai.com>
429
430 doc: lalr1.cc and variants.
431 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
432 "variant" %define variables.
433 (C++ Semantic Values): Split into...
434 (C++ Unions, C++ Variants): these.
435 The latter is new.
436 (C++ Parser Interface): Fix type names.
437 Document parser::syntax_error.
438 Document the fact that locations are not mandatory.
439 (C++ Scanner Interface): Split into...
440 (Split Symbols, Complete Symbols): these.
441 The later is new.
442 (Calc++ Parsing Driver): Use variants.
443 Add more comments.
444 Adjust style.
445 (Calc++ Parser): Declare all the tokens, no
446 longer accept raw characters.
447 Remove %union.
448 Adjust types and printers.
449 Remove destructors.
450 (Calc++ Scanner): Use make_<SYMBOL> functions.
451 Use strerror in error message.
452
453 2009-09-16 Akim Demaille <demaille@gostai.com>
454
455 doc: spell checking.
456 * doc/bison.texinfo: here.
457
458 2009-09-16 Akim Demaille <demaille@gostai.com>
459
460 doc: comment changes.
461 * doc/bison.texinfo: Comment changes.
462
463 2009-09-16 Akim Demaille <demaille@gostai.com>
464
465 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
466 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
467 constructor to take a token_type instead of the (internal) symbol
468 number.
469 Call yytranslate_.
470 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
471 don't call yytranslate_ here.
472
473 2009-09-16 Akim Demaille <demaille@gostai.com>
474
475 TODO: statistics.
476 * TODO (Figures): New.
477
478 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
479
480 tests: clean up push.at test group titles.
481 * tests/push.at: Remove "Push Parsing: " from test group titles
482 because these are already under the banner "Push Parsing Tests".
483
484 2009-09-12 Alex Rozenman <rozenman@gmail.com>
485
486 Provide an additional sub-message for clarity.
487 Add "symbol not found in production" error message when
488 an "invalid reference" is detected in named references
489 resolution.
490 * src/scan-code.l: Update "invalid reference" case.
491 * tests/named-ref.at: Adjust test-cases.
492
493 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
494
495 Clean up yacc.c a little.
496 * data/yacc.c: Clean up M4 for readability, and make output
497 whitespace more consistent. For the main parse function
498 comment, instead of saying "yyparse or yypush_parse", say either
499 "yyparse" or "yypush_parse" depending on which it actually is.
500
501 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
502
503 Fix --enable-gcc-warnings.
504 * src/parse-gram.y (%printer <param>): Handle param_none.
505
506 2009-09-09 Akim Demaille <demaille@gostai.com>
507
508 lalr1.cc: syntax_error as exceptions.
509 It is common to use sort of factories in the user actions. These
510 factories may check some "syntactic" constraints that are not
511 enforced by the grammar itself. This is possible using YYERROR
512 within the action itself. Provide the user with a means to throw
513 a syntax_error exception.
514
515 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
516 Declare and define yy::parser::syntax_error.
517 * data/lalr1.cc: Include stdexcept.
518 (yy::parser::parse): Wrap the user action within a try/catch.
519 * data/glr.cc: Include stdexcept.
520
521 2009-09-09 Akim Demaille <demaille@gostai.com>
522
523 lalr1.cc: add missing "inline".
524 * data/c++.m4 (b4_public_types_define): Add missing inline to
525 implementations provided in headers.
526
527 2009-09-09 Akim Demaille <demaille@gostai.com>
528
529 %param: documentation.
530 * NEWS (2.6): Document %param, %lex-param, and %parse-param
531 changes.
532 * doc/bison.texinfo: Document that %lex-param and %parse-param
533 are n-ary.
534 Changes some examples to demonstrate it.
535 (Calc++ Parser): Use %param.
536
537 2009-09-09 Akim Demaille <demaille@gostai.com>
538
539 Regen.
540
541 2009-09-09 Akim Demaille <demaille@gostai.com>
542
543 style changes.
544 * src/parse-gram.y (add_param): Scope changes.
545
546 2009-09-09 Akim Demaille <demaille@gostai.com>
547
548 %parse: support several arguments.
549 * src/parse-gram.y (current_param): New.
550 (param_type): Add param_none.
551 (params): New nonterminal.
552 Use it.
553
554 2009-09-09 Akim Demaille <demaille@gostai.com>
555
556 Regen.
557
558 2009-09-09 Akim Demaille <demaille@gostai.com>
559
560 %param.
561 Provide a means to factor lex-param and parse-param common
562 declarations.
563
564 * src/parse-gram.y (param_type): New.
565 Define a %printer for it.
566 (add_param): Use it.
567 (%parse-param, %lex-param): Merge into...
568 (%parse): this new token.
569 Adjust the grammar to use it.
570 * src/scan-gram.l (RETURN_VALUE): New.
571 (RETURN_PERCENT_FLAG): Use it.
572 (RETURN_PERCENT_PARAM): New.
573 Use it to support %parse-param, %lex-param and %param.
574
575 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
576
577 Use aver not assert.
578 * src/output.c: Don't include assert.h.
579 (output_skeleton): Use aver not assert.
580 * src/system.h (aver): In documentation of why, add links to
581 Paul Eggert's explanations in the mailing lists.
582
583 2009-09-05 Alex Rozenman <rozenman@gmail.com>
584
585 Use "Unresolved reference" error message when no symbols were found
586 in a symbolic reference resolution. Remove .expr and -expr from
587 the shown reference when the reference is unresolved.
588 * src/scan-code.l: Change the error message, adjust location columns,
589 rename variable "exact_mode" to "explicit_bracketing".
590 * tests/named-ref.at: Adjust existing tests and add a new one.
591
592 2009-09-04 Akim Demaille <demaille@gostai.com>
593
594 Adjust synclines in src/parse-gram.[ch].
595 * tests/bison.in: Do some magic (including working around issues
596 with ylwrap) when this wrapper is used to compile
597 src/parse-gram.y.
598
599 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
600
601 Complain about unused %define variables and %code qualifiers.
602 * NEWS (2.5): Document.
603 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
604 * doc/bison.texinfo (Decl Summary): Document complaint, and
605 improve %define documentation a little otherwise.
606 * tests/input.at (Reject unused %code qualifiers): Update.
607 (%define errors): Update.
608 (%define, --define, --force-define): Update.
609 (%define backward compatibility): Update.
610 (Unused %define api.pure): Update.
611 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
612
613 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
614
615 Don't suppress warnings about unused parse.error.
616 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
617 %define variable parse.error unless b4_error_verbose_flag is
618 actually expanded in a skeleton.
619
620 2009-09-03 Akim Demaille <demaille@gostai.com>
621
622 * NEWS (2.4.2): Add "Internationalization" item.
623
624 2009-09-03 Akim Demaille <demaille@gostai.com>
625
626 bootstrap: fix/improve find_tool.
627 * bootstrap (find_tool): Improve error messages.
628 Fix typo about find_tool_names.
629
630 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
631
632 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
633 See
634 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
635 * src/scan-code.h (code_props_rule_action_init): Rename
636 named_ref arg to name so it doesn't shadow named_ref type. This
637 makes it consistent with the function definition in scan-code.l
638 anyway.
639
640 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
641
642 %define: accept unquoted values.
643 * NEWS (2.5): Group all %define changes together, and document
644 this one. Remove quotes in IELR and canonical LR entry.
645 * doc/bison.texinfo: Remove quotes in most examples throughout.
646 (Decl Summary): Update %define documentation.
647 (Table of Symbols): Likewise.
648 * src/ielr.c (LrType): Update documentation.
649 * src/parse-gram.y (content.opt): Add production for ID.
650 * tests/actions.at: Remove quotes in most tests.
651 * tests/calc.at: Likewise.
652 * tests/existing.at: Likewise.
653 * tests/input.at: Likewise.
654 * tests/local.at: Likewise.
655 * tests/push.at: Likewise.
656 * tests/reduce.at: Likewise.
657 * tests/torture.at: Likewise.
658
659 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
660
661 %define lr.type: make values lowercase IDs.
662 That is, "LALR" => "lalr", "IELR" => "ielr", and
663 "canonical LR" => "canonical-lr".
664 * NEWS (2.5): Update documentation.
665 * doc/bison.texinfo (Decl Summary): Likewise.
666 * src/ielr.c (ielr): Use new values.
667 * src/ielr.h (ielr): Update documentation.
668 * src/reader.c (prepare_percent_define_front_end_variables): Use
669 and validate new values.
670 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
671 grammars.
672 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
673
674 2009-08-27 Eric Blake <ebb9@byu.net>
675
676 scan-gram: avoid portability trap with ctype usage.
677 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
678 Avoid compiler warning.
679
680 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
681
682 tests: use perl for printing special sequences to files.
683 And skip tests if perl is not available. This is better than
684 playing tricks with shell portability. Suggested by Akim
685 Demaille.
686 * tests/input.at (Bad character literals): Use it here for
687 omitting final newlines.
688 (Bad escapes in literals): Use it here for special characters.
689
690 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
691
692 tests: show a use of %define lr.default-reductions "consistent"
693 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
694 prevents the omission of expected tokens for %error-verbose.
695
696 2009-08-26 Akim Demaille <demaille@gostai.com>
697
698 tests: portability fix.
699 * tests/input.at (Bad escapes in literals): Don't expect "echo
700 '\0'" to output \ then 0.
701
702 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
703
704 Actually handle the yytable zero value correctly this time.
705 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
706 zero values in the YYTABLE comments.
707 * data/glr.c (yytable_value_is_error): Don't check for zero
708 value.
709 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
710 * data/yacc.c (yytable_value_is_error): Likewise.
711 * data/lalr1.java (yy_table_value_is_error_): Likewise.
712 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
713 * src/tables.h: In header comments, explain why it's useless to
714 check for a zero value in yytable.
715
716 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
717
718 More fixes related to last two patches.
719 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
720 comments: zero indicates syntax error not default action.
721 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
722 defined.
723 * data/glr.c (yyis_pact_ninf): Rename to...
724 (yypact_value_is_default): ... this.
725 (yyisDefaultedState): Update for rename.
726 (yyis_table_ninf): Rename to...
727 (yytable_value_is_error): ... this, and check for value zero
728 besides just YYTABLE_NINF.
729 (yygetLRActions): Check for default value from yypact. It
730 appears that this check is always performed before this function
731 is invoked, and so adding the check here is probably redundant.
732 However, the code may evolve after this subtlety is forgotten.
733 Also, update for rename to yytable_value_is_error. Because that
734 macro now checks for zero, a different but equivalent branch of
735 the if-then-else here is evaluated.
736 (yyreportSyntaxError): Update for rename to
737 yytable_value_is_error. The zero condition was mishandled
738 before.
739 (yyrecoverSyntaxError): Update for renames. No behavioral
740 changes.
741 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
742 New function.
743 (yy_table_value_is_error_): New function.
744 (parse): Use new functions where possible. No behavioral
745 changes.
746 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
747 The zero condition was mishandled before.
748 * data/yacc.c (yyis_pact_ninf): Rename to...
749 (yypact_value_is_default): ... this.
750 (yyis_table_ninf): Rename to...
751 (yytable_value_is_error): ... this, and check for value zero
752 besides just YYTABLE_NINF.
753 (yysyntax_error): Update for rename to yytable_value_is_error.
754 The zero condition was mishandled before.
755 (yyparse): Update for renames. No behavioral changes.
756 * src/tables.h: Improve comments about yypact, yytable, etc.
757 more. Most importantly, say yytable value of zero means syntax
758 error not default action.
759
760 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
761
762 Fix %error-verbose for conflicts resolved by %nonassoc.
763 * NEWS (2.5): Document.
764 * data/glr.c (yyreportSyntaxError): Fix this by checking
765 yyis_table_ninf.
766 * data/yacc.c (yysyntax_error): Likewise.
767 * data/lalr1.cc (yysyntax_error_): Fix this by checking
768 yytable_ninf_.
769 * data/lalr1.java (yysyntax_error): Likewise.
770 * tests/conflicts.at (%nonassoc and eof): Update expected output
771 and remove FIXME.
772
773 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
774
775 Some code and documentation improvements.
776 * data/c.m4 (b4_table_value_equals): New macro to capture
777 some repeated code.
778 * data/glr.c (yyis_pact_ninf): Use it here.
779 (yyis_table_ninf): Likewise.
780 (yyreportSyntaxError): Improve internal comments.
781 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
782 Use it everywhere possible.
783 (yyis_table_ninf): Likewise.
784 (yysyntax_error): Improve internal comments.
785 * data/lalr1.cc (yysyntax_error_): Likewise.
786 * data/lalr1.java (yysyntax_error): Likewise.
787 * src/tables.h: Improve comments about yypact, yytable, etc.
788
789 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
790
791 Use locale when quoting.
792 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
793 quote rather than implementing quoting here.
794
795 2009-08-20 Eric Blake <ebb9@byu.net>
796
797 Make previous patch more robust.
798 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
799 argmatch.h.
800 (output_skeleton): Use it.
801 Suggested by Akim Demaille.
802
803 Import latest m4/m4.m4.
804 * submodules/autoconf: Update to autoconf 2.64.
805 * configure.ac (M4_GNU_OPTION): New define.
806 * src/output.c (output_skeleton): Use it to resolve FIXME.
807 * NEWS: Mention this.
808
809 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
810
811 Fix complaints about escape sequences.
812 Discussed starting at
813 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
814 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
815 For a \0 and similar escape sequences meaning the null
816 character, report an invalid escape sequence instead of an
817 invalid null character because the latter does not actually
818 appear in the user's input.
819 In all escape sequence complaints, don't escape the initial
820 backslash, and don't quote when the sequence appears at the end
821 of the complaint line unless there's whitespace that quotearg
822 won't escape.
823 Consistently say "invalid" not "unrecognized".
824 Consistently prefer "empty character literal" over "extra
825 characters in character literal" warning for invalid escape
826 sequences; that is, consistently discard those sequences.
827 * tests/input.at (Bad escapes in literals): New.
828
829 2009-08-19 Akim Demaille <demaille@gostai.com>
830
831 doc: fixes.
832 * doc/bison.texinfo: Fix minor Texinfo errors.
833
834 2009-08-19 Akim Demaille <demaille@gostai.com>
835
836 tests: distcc compliance.
837 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
838 error messages from the output.
839
840 2009-08-19 Akim Demaille <demaille@gostai.com>
841
842 variables: simplify the upgrade of namespace into api.namespace.
843
844 This patch simplifies "variables: rename namespace as
845 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
846 Suggested by Joel E. Denny in
847 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
848
849 * src/muscle-tab.c (muscle_percent_variable_update): New.
850 (muscle_percent_define_insert): Use it in replacement of the
851 previous tr invocation.
852 Remove variable_tr, no longer needed.
853 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
854 Remove.
855 * data/c++.m4: No longer handle namespace -> api.namespace.
856 * tests/input.at (%define backward compatibility): Check that
857 namespace is treated as api.namespace.
858
859 2009-08-19 Akim Demaille <demaille@gostai.com>
860
861 doc: %initial-action to initialize yylloc.
862 Reported by Bill Allombert.
863 * doc/bison.texinfo: Set fill-column to 76.
864 (Location Type): Document the use of %initial-action to initialize
865 yylloc.
866
867 2009-08-19 Akim Demaille <demaille@gostai.com>
868
869 lalr1.cc: use state_type.
870 * data/lalr1.cc (yysyntax_error_): Use state_type.
871 Move argument names into yy*.
872
873 2009-08-19 Akim Demaille <demaille@gostai.com>
874
875 lalr1.cc: get rid of yyparse's yystate.
876 yystate and yystack_[0].state are equal, keep only the latter.
877 The former was also used as a temporary variable to compute the
878 post-reduction state. Move this computation into an auxiliary
879 function.
880
881 * data/glr.c (yyLRgotoState): Fuse variable definition and first
882 assignment.
883 * data/lalr1.cc (yy_lr_goto_state_): New.
884 (yyparse): Use it.
885 Replace remaining uses of yystate by yystate_[0].state.
886 Remove the former.
887
888 2009-08-19 Akim Demaille <demaille@gostai.com>
889
890 lalr1.cc: destroy $$ when YYERROR is called.
891 * data/lalr1.cc (yyreduce): Compute the resulting state before
892 running the user action so that yylhs is a valid symbol.
893 (yyerrorlab): Since yylhs is complete (it knows its type), we can
894 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
895 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
896
897 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
898
899 maint: update for gnulib's recent update-copyright changes
900 * gnulib: Update.
901 * .x-update-copyright (COPYING): Add as it's no longer implied
902 when .x-update-copyright is present.
903 * cfg.mk (update-copyright-local): Remove, now ignored.
904 (update-copyright): Declare update-b4-copyright as a dependency.
905
906 2009-08-17 Akim Demaille <demaille@gostai.com>
907
908 build: require gettext 0.17.
909
910 Suggested by Bruno Haible.
911 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
912 * configure.ac: require gettext 0.17 to ensure compatibility with
913 gnulib.
914
915 2009-08-17 Akim Demaille <demaille@gostai.com>
916
917 build: lower gettext requirements.
918
919 Bison was uselessly requiring the formatstring macros from
920 gettext, which resulted in mo files not being installed on systems
921 that perfectly supported Bison mo files. Lower the requirement.
922 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
923
924 * configure.ac: Require need-ngettext instead of
925 need-formatstring-macros.
926 Reported by Martin Jabocs.
927 Suggested by Bruno Haible.
928 * INSTALL: Restructure.
929 (Internationalization): New.
930
931 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
932
933 maint: fix use of copyright year intervals.
934 * gnulib: Update.
935 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
936 as now recommended in gnulib/NEWS.
937 * build-aux/update-b4-copyright: Fix.
938 * cfg.mk (update-copyright-env): Configure update-copyright.
939
940 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
941
942 Make it easier to write deterministic tests.
943 Continues Akim's work from his 2009-06-10 commits.
944 * src/reader.c (check_and_convert_grammar): Don't add any
945 symbols after the first symbols_do invocation.
946 * src/symtab.c (symbols_sorted): New static global.
947 (user_token_number_redeclaration): Update comments.
948 (symbol_from_uniqstr): If a new symbol is being created, assert
949 that symbols_sorted hasn't been allocated yet.
950 (symbols_free): Free symbols_sorted.
951 (symbols_cmp, symbols_cmp_qsort): New functions.
952 (symbols_do): Sort symbol_table into symbols_sorted on first
953 invocation.
954 * tests/input.at (Numbered tokens): Recombine tests now that the
955 output should be deterministic across multiple numbers.
956
957 2009-08-12 Akim Demaille <demaille@gostai.com>
958
959 tests: GCC 4.5 compliance.
960 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
961 messages about #error.
962
963 2009-08-12 Akim Demaille <demaille@gostai.com>
964
965 build: fix the generation of the documentation.
966 Some of our targets use "bison --help", but they can't depend on
967 "bison" itself (to avoid additional requirements on the user), so
968 they used to call "make src/bison" in the commands. Then
969 concurrent builds may fail: one make might be aiming one of its
970 jobs at compiling src/bison, and another job at generating the man
971 page. If the latter is faster than the former, then we have two
972 makes that concurrently try to compile src/bison.
973
974 This might also be a more convincing explanation for the failure
975 described in the patch "build: fix paths".
976
977 * Makefile.am (SUFFIXES): Initialize.
978 * build-aux/move-if-change: New, symlink to gnulib's.
979 * build-aux/local.mk: Ship it.
980 * doc/common.x: Remove, merged into...
981 * doc/bison.x: here.
982 * doc/local.mk (doc/bison.help): New.
983 ($(CROSS_OPTIONS_TEXI)): Depend on it.
984 Use src/bison.
985 (.x.1): Replace with...
986 (doc/bison.1): this explicit, simpler, target.
987 (common_dep): Remove, inlined where appropriate.
988 (SUFFIXES, PREPATH): Remove, unused.
989
990 2009-08-12 Akim Demaille <demaille@gostai.com>
991
992 gnulib: improve prefixing.
993 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
994 change the value of...
995 (gl_LIBOBJS): this.
996 Adjust more variables.
997 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
998 gl_LIBOBJS.
999 (prefix): Also transform rules whose targets have slashes.
1000 Use $prefix liberally.
1001 Map @MKDIR_P@ to $(MKDIR_P).
1002 Prefix directories that are mkdir'd.
1003
1004 2009-08-12 Akim Demaille <demaille@gostai.com>
1005
1006 build: fix paths.
1007 When using $(top_builddir) inconsistently, Make (including GNU
1008 Make) is sometimes confused. As a result it may want to build
1009 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1010 file, different names) concurrently, which, amusingly enough,
1011 might end with:
1012
1013 ranlib lib/libbison.a
1014 ranlib lib/libbison.a
1015 make[2]: *** [lib/libbison.a] Segmentation fault
1016
1017 on OS X.
1018
1019 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1020 needed.
1021
1022 2009-08-12 Akim Demaille <demaille@gostai.com>
1023
1024 distcheck: fix.
1025
1026 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1027
1028 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1029
1030 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1031
1032 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1033
1034 Miscellaneous code readability improvements.
1035
1036 * src/reader.c (reader): Move %define front-end variable
1037 defaults and checking into...
1038 (prepare_percent_define_front_end_variables): ... this new
1039 function.
1040
1041 * src/scan-gram.l (INITIAL): For consistency with string
1042 literals, don't store open quote on character literal. It's
1043 discarded before returning anyway.
1044 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1045 Make length test more readable, and make the character stored
1046 for an empty literal more obvious while consistent with the
1047 previous behavior.
1048
1049 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1050 USER_NUMBER_HAS_STRING_ALIAS throughout.
1051 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1052 that is repeated in symtab.h. Improve argument names to make it
1053 clear which side of the symbol-string alias pair is which.
1054 (symbol_check_alias_consistency): Improve local variable names
1055 for the same purpose.
1056 * src/symtab.h (struct symbol): Make comments about aliases
1057 clearer.
1058 (symbol_make_alias): Improve comments and argument name.
1059 * src/output.c (token_definitions_output): Update for rename to
1060 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1061
1062 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1063
1064 Convert "misleading reference" messages to warnings.
1065 * src/scan-code.l: New function 'show_sub_messages', more
1066 factoring.
1067 * tests/named-ref.at: Adjust tests.
1068
1069 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1070
1071 maint: run "make update-copyright"
1072
1073 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1074
1075 maint: make update-b4-copyright easier to use
1076 * build-aux/update-b4-copyright: In warnings, report line
1077 numbers rather than character positions.
1078 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1079 that update-copyright runs it.
1080 * gnulib: Update.
1081
1082 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1083
1084 maint: clean up update-b4-copyright code
1085 * build-aux/update-b4-copyright: Do not accept 2-digit
1086 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1087 Don't accept a `[' in a b4_copyright argument.
1088 Format code more consistently.
1089 Don't assume b4*copyright never occurs.
1090
1091 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1092
1093 maint: automate b4_copyright updates.
1094 * Makefile.am (update-b4-copyright): New target rule.
1095 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1096 * build-aux/update-b4-copyright: New.
1097 * data/yacc.c: Remove stray characters around b4_copyright
1098 invocations.
1099
1100 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1101
1102 maint: automate annual package-wide copyright-year update.
1103 * .x-update-copyright: New.
1104 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1105 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1106 update-copyright. Remove gnumakefile, which is implied by
1107 maintainer-makefile.
1108 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1109 * gnulib: Update.
1110 * maint.mk: Remove, now copied from gnulib.
1111 * examples/extexi: Add missing "(C)" in copyright statement so
1112 update-copyright can recognize it.
1113 * src/LR0.h: Likewise.
1114 * src/print.h: Likewise.
1115 * src/print_graph.h: Likewise.
1116 * src/gram.c: Add missing comma in copyright statement.
1117 * src/gram.h: Likewise.
1118
1119 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1120
1121 Fix "make distcheck".
1122 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1123 of just calc.stamp.
1124
1125 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1126
1127 Pacify "gcc -Wunused" for the input function from Flex.
1128 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1129 and later.
1130 * src/scan-code.l: Add "%option noinput", which I cannot find in
1131 the Flex manual, but which Flex has supported since at least as
1132 far back as 2.5.4. However, if any of our developers still use
1133 Flex 2.5.4, they'll need to stop configuring with
1134 --enable-gcc-warnings because "%option noinput" didn't work
1135 correctly until Flex 2.5.6.
1136 * src/scan-gram.l: Likewise.
1137 * src/scan-skel.l: Likewise.
1138
1139 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1140
1141 Fix --enable-gcc-warnings problems.
1142 * src/reader.c: Adjust variable names.
1143 * src/scan-code.l: Fix prototypes and adjust names.
1144 * src/named-ref.c: Remove redundant "if".
1145
1146 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1147
1148 Fix a --enable-gcc-warnings problem.
1149 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1150 variable.
1151
1152 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1153
1154 Warn about character literals not of length one.
1155 * NEWS (2.5): Document.
1156 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1157 the length.
1158 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1159 * tests/input.at (Bad character literals): New test group.
1160
1161 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1162
1163 Fix some memory leaks.
1164 * src/named-ref.c: Add a pointer check (named_ref_free).
1165 * src/scan-code.l: New function (variant_table_free). Called in
1166 code_scanner_free.
1167 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1168
1169 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1170
1171 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1172
1173 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1174
1175 Some M4 cleanup in the testsuite.
1176 Suggested by Eric Blake at
1177 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1178 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1179 complicate the code by distinguishing between a missing value
1180 and an empty string value for an optional argument. This fix is
1181 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1182 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1183 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1184 arguments are not needed because of the following changes.
1185 Fix stale comments.
1186 Bison developers should use GNU M4 and should not use
1187 POSIXLY_CORRECT when building the test suite, so do not
1188 complicate the code by avoiding $10 and above.
1189 Do not quote an empty string value for an optional argument, and
1190 do not distinguish between a missing value and an empty string
1191 value.
1192
1193 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1194
1195 Revert unnecessary column realignment in --help output.
1196 Reported by Akim Demaille at
1197 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1198 * src/getargs.c (usage): Here.
1199
1200 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1201
1202 Alphabetical order in src/local.mk.
1203 * src/local.mk: Adjust.
1204
1205 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1206
1207 Style changes and factoring.
1208 * src/named-ref.h: Add comments.
1209 * src/parse-gram.y: Readability and style changes.
1210 * src/reader.c: Factoring: assign_named_ref function.
1211 * src/scan-code.l: Factoring and style changes. Rename
1212 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1213 Use "unsigned" type for variant index. Improve readablity.
1214 * src/scan-gram.l: Change error messages and add comments.
1215 * src/symlist.h: symbol_list_null: New function decl.
1216 * src/symlist.c: symbol_list_null: Implement here.
1217 * tests/named-refs.at: Adjust for new error messages.
1218
1219 2009-06-29 Eric Blake <ebb9@byu.net>
1220
1221 scan-code: avoid compiler warnings
1222 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1223
1224 2009-06-29 Akim Demaille <demaille@gostai.com>
1225
1226 build: avoid concurrent extraction of calc++.
1227 * examples/calc++/Makefile.am (calc.stamp): New.
1228 Depend on it to create the sources of calc++ so that concurrent
1229 builds don't launch several "extexi" in parallel.
1230 Not only this is inefficient, this also builds incorrect sources
1231 with several extractions mixed together.
1232
1233 2009-06-29 Akim Demaille <demaille@gostai.com>
1234
1235 parse.error: fix.
1236 * data/bison.m4: Move code related to specific variables after the
1237 definition of the variable-maintaining macros so that we don't
1238 "invoke" b4_percent_define_check_values before it is defined.
1239
1240 2009-06-29 Akim Demaille <demaille@gostai.com>
1241
1242 variables: parse.error
1243
1244 Implement, document, and test the replacement of %error-verbose
1245 by %define parse.error "verbose".
1246 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1247 values of the parse.error variable.
1248 Make "simple" its default value.
1249 Check the valid values.
1250 * src/parse-gram.y: Use %define parse.error.
1251 (PERCENT_ERROR_VERBOSE): New token.
1252 Support it.
1253 * src/scan-gram.l: Support %error-verbose.
1254
1255 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1256 %define error-verbose by that of %define parse.error.
1257 * NEWS: Document it.
1258
1259 * tests/actions.at, tests/calc.at: Use parse.error instead of
1260 %error-verbose.
1261
1262 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1263
1264 Implement support for named symbol references.
1265 * src/parse-gram.y: Add new syntax (named_ref.opt).
1266 * src/reader.c: Store named refs in symbol lists.
1267 * src/reader.h: New argument for symbol_append and
1268 action_append functions.
1269 * src/scan-code.h: Add new field (named_ref) into
1270 code_props data structure. Keeps named ref of midrule
1271 actions.
1272 * src/scan-code.l: Support for named refs in semantic
1273 action code. New function 'parse_named_ref'.
1274 * src/scan-gram.l: Support bracketed id.
1275 * src/symlist.c: Store named refs in symbol lists.
1276 * src/symlist.h: New field in symbol list: named_ref.
1277 * src/named-ref.h: New file, a struct for named_ref.
1278 * src/named-ref.cp: New file, named_ref_new function.
1279 * src/local.mk: Add two new files.
1280 * tests/testsuite.at: Include new test group:
1281 * tests/named-refs.at: this new file.
1282
1283 2009-06-25 Akim Demaille <demaille@gostai.com>
1284
1285 hash: check insertion for memory exhaustion.
1286 * src/uniqstr.c (uniqstr_new): New.
1287
1288 2009-06-24 Akim Demaille <demaille@gostai.com>
1289
1290 variables: rename namespace as api.namespace.
1291 Discussed in
1292 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1293
1294 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1295 New.
1296 (b4_percent_define_use): New.
1297 Use it where applicable.
1298 * data/c++.m4: Replace uses of the variable "namespace" by
1299 "api.namespace".
1300 Default the latter to the former.
1301 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1302 obsolete.
1303 Document api.namespace.
1304 Use @samp to document %define uses, keep @code for identifiers.
1305 * NEWS: Likewise.
1306 * tests/c++.at, tests/input.at: Test api.namespace instead of
1307 namespace. (The tests passed with namespace.)
1308
1309 2009-06-11 Akim Demaille <demaille@gostai.com>
1310
1311 style changes.
1312 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1313 * src/print-xml.c: Style changes.
1314 * tests/conflicts.at: Comment changes.
1315
1316 2009-06-11 Akim Demaille <demaille@gostai.com>
1317
1318 xml: beware of user strings used to give a %prec to rules.
1319 * tests/conflicts.at (%prec with user strings): New.
1320 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1321 XML output.
1322
1323 2009-06-11 Akim Demaille <demaille@gostai.com>
1324
1325 hash: check insertion for memory exhaustion.
1326 * src/muscle-tab.c (muscle_insert, muscle_grow)
1327 * src/state.c (state_hash_insert): Check the return value of
1328 hash_insert.
1329
1330 2009-06-11 Akim Demaille <demaille@gostai.com>
1331
1332 tests: honor TESTSUITEFLAGS in every check target.
1333 * tests/local.mk (RUN_TESTSUITE): New.
1334 (check-local, installcheck-local, maintainer-check-g++)
1335 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1336
1337 2009-06-10 Akim Demaille <demaille@gostai.com>
1338
1339 deterministic test suite.
1340 Some consistency checks on symbols are performed after all the
1341 symbols were read, by an iteration over the symbol table. This
1342 traversal is nondeterministic, which can be a problem for test
1343 cases.
1344 Avoid this.
1345 Addresses another form of nondeterminism reported by Joel E. Denny.
1346 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1347
1348 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1349 test in two.
1350 Use different file names for the three tests to make the
1351 maintenance easier.
1352
1353 2009-06-10 Akim Demaille <demaille@gostai.com>
1354
1355 gnulib: update.
1356 * gnulib: Update to latest.
1357 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1358 * m4/.gitignore: Regen.
1359 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1360 Call xalloc_die on hash_insert failures.
1361 Requested by the new __warn_unused_result__ attribute of
1362 hash_insert.
1363
1364 2009-06-10 Akim Demaille <demaille@gostai.com>
1365
1366 deterministic user-token-number redeclaration errors.
1367 Address nondeterminism reported by Joel E. Denny.
1368 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1369
1370 * src/uniqstr.h: Comment changes.
1371 * src/location.h (boundary_cmp, location_cmp): New.
1372 * src/symtab.c (user_token_number_redeclaration): New.
1373 (symbol_translation): Use it.
1374 * tests/input.at (Numbered tokens): Adjust the expected output.
1375
1376 2009-05-25 Akim Demaille <demaille@gostai.com>
1377
1378 build: avoid ignored errors.
1379 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1380 errors, they pollute the output.
1381
1382 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1383
1384 Convert multiple variable definition warnings to complaints.
1385 * NEWS (2.5): Add a new entry for that change.
1386 * doc/bison.texinfo (Decl Summary): Update %define entry.
1387 (Bison Options): Update -D/--define/-F/--force-define entry.
1388 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1389 * src/muscle-tab.h (muscle_percent_define_insert): Update
1390 comments.
1391 * tests/input.at (`%define errors'): Update.
1392 (`%define, --define, --force-define'): Update.
1393
1394 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1395
1396 -F/--force-define and relative %define/-D/--define priorities.
1397 * NEWS (2.5): Add documentation to -D/--define entry.
1398 * build-aux/cross-options.pl: Hard-code association of
1399 --force-define with %define.
1400 * doc/bison.texinfo (Decl Summary): In %define entry,
1401 cross-reference command-line options.
1402 (Bison Options): Add documentation to -D/--define entry.
1403 (Option Cross Key): Widen column for --force-define row.
1404 * src/getargs.c (usage): Document -F/--force-define. Realign
1405 options in output.
1406 (short_options, long_options, getargs): Parse -F/--force-define,
1407 and update muscle_percent_define_insert invocations.
1408 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1409 (muscle_percent_define_insert): Add argument with that type.
1410 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1411 -F/--force-define behavior and priorities.
1412 (muscle_percent_define_ensure): Update
1413 muscle_percent_define_insert invocation.
1414 * src/parse-gram.y (prologue_declaration): Update
1415 muscle_percent_define_insert invocations.
1416 * tests/input.at (`%define, --define'): Rename to...
1417 (`%define, --define, --force-define'): ... this and extend.
1418
1419 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1420
1421 Update some comments to make sense for -D.
1422 * data/bison.m4 (b4_check_user_names): In header comments, say
1423 "user occurrence" instead of "grammar occurrence".
1424 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1425 (muscle_percent_code_grow): Likewise just for consistency.
1426
1427 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1428
1429 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1430
1431 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1432
1433 Handle a trailing `:' in a user-supplied C++ namespace better.
1434 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1435 among the closing braces here. This fix might make the
1436 generated code easier to debug, but otherwise it should be
1437 insignificant because a trailing `:' is a C++ error already.
1438
1439 2009-05-19 Akim Demaille <demaille@gostai.com>
1440
1441 remove useless variable.
1442 * src/getargs.c (skeleton_arg): Remove now useless variable.
1443 Should help the compiler see that this printf-like call is sane.
1444
1445 2009-05-15 Akim Demaille <demaille@gostai.com>
1446
1447 Rename token.prefix as api.tokens.prefix.
1448 Discussed here.
1449 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1450
1451 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1452 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1453 (token.prefix): Rename as...
1454 (api.tokens.prefix): this.
1455
1456 2009-05-11 Akim Demaille <demaille@gostai.com>
1457
1458 doc: use C++ headers.
1459 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1460 headers.
1461
1462 2009-05-11 Akim Demaille <demaille@gostai.com>
1463
1464 doc: token.prefix
1465 * doc/bison.simple (Decl Summary): Document token.prefix.
1466 (Calc++ Parser): Various fixes.
1467 Formatting changes.
1468 Use token.prefix.
1469 Introduce a macro TOKEN to shorten the code and make it more
1470 readable.
1471 (Calc++ Scanner): Adjust.
1472 * NEWS (Variable token.prefix): New.
1473
1474 2009-05-04 Akim Demaille <demaille@gostai.com>
1475
1476 bison: catch bad symbol names.
1477 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1478 * tests/input.at: Adjust.
1479
1480 2009-05-04 Akim Demaille <demaille@gostai.com>
1481
1482 identifiers: dashes are letters.
1483 Dashes can now start identifiers (symbols and directives).
1484
1485 * src/scan-gram.l ({letter}): Add dash.
1486 ({id}): Remove it.
1487 * tests/input.at (Symbols): Adjust.
1488 Remove stray comment.
1489 * tests/regression.at (Invalid inputs): Adjust error message.
1490 * doc/bison.texinfo (Symbols): Update.
1491
1492 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1493
1494 Declare %code to be a permanent feature.
1495 * NEWS (2.4.2): Here.
1496 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1497 experimental.
1498 (Decl Summary): Likewise.
1499
1500 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1501
1502 Convert underscores to dashes in some %define variable names.
1503 For now, just api.push-pull and lr.keep-unreachable-states.
1504 Maintain old names for backward compatibility.
1505 * NEWS (2.5): Document.
1506 * data/c.m4 (b4_identification): Update comment.
1507 * data/yacc.c: Update access.
1508 * doc/bison.texinfo: Update.
1509 * etc/bench.pl.in (bench_push_parser): Update use.
1510 * src/files.c (tr): Move to...
1511 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1512 think of a better place to expose it. My logic is that, for all
1513 uses of tr so far, command-line arguments can be involved, and
1514 getargs.h is already included.
1515 * src/main.c (main): Update access.
1516 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1517 variable names to new variable names before assigning value.
1518 * src/reader.c (reader): Update setting default.
1519 * tests/calc.at: Update uses.
1520 * tests/conflicts.at (Unreachable States After Conflict
1521 Resolution): Update use.
1522 * tests/input.at (%define enum variables): Update use.
1523 (%define backward compatibility): New test group.
1524 * tests/push.at: Update uses.
1525 * tests/reduce.at: Update uses.
1526 * tests/torture.at: Update uses.
1527
1528 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1529
1530 Set all front-end %define defaults in one place.
1531 * src/main.c (main): Move lr.keep_unreachable_states default...
1532 * src/reader.c (reader): ... to here.
1533
1534 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1535
1536 Rename lr.default_reductions to lr.default-reductions.
1537 * NEWS (2.5): Here.
1538 * doc/bison.texinfo: Here.
1539 * src/lalr.c (initialize_LA): Here.
1540 * src/print.c (print_reductions): Here.
1541 * src/reader.c (reader): Here.
1542 * src/tables.c (action_row): Here.
1543 * tests/input.at (%define enum variables): Here.
1544 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1545
1546 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1547
1548 Pacify ./configure --enable-gcc-warnings.
1549 * tests/input.at (Symbols): Prototype yyerror and yylex.
1550
1551 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1552
1553 Document how `%define "var" "value"' is not M4-friendly.
1554 * src/parse-gram.y (variable): In comments here.
1555
1556 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1557
1558 Clean up recent patches a little.
1559 Reported by Akim Demaille.
1560 * doc/bison.texinfo (Understanding): Fix typos.
1561 * src/print.c (print_reductions): Don't use negated variable.
1562
1563 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1564
1565 List accepted values for a %define enum variable with an invalid value.
1566 Suggested by Akim Demaille at
1567 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1568 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1569 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1570 * tests/input.at (%define lr.default_reductions invalid values): Merge
1571 into...
1572 (%define enum variables): ... here, and update output.
1573
1574 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1575
1576 Rename "default rule" to "default reduction".
1577 This includes changing variable names in code, changing
1578 comments, and renaming %define lr.default_rules to %define
1579 lr.default_reductions.
1580 * NEWS (2.5): Update IELR documentation.
1581 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1582 documentation.
1583 * data/glr.c, data/lalr1.java: Sync copyright dates.
1584 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1585 and lr.type documentation. Make some other wording
1586 improvements.
1587 (Glossary): Adjust cross-references and Default Reduction
1588 definition.
1589 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1590 Remove a confusing comment pointed out by Akim Demaille.
1591 (initialize_LA): Adjust code.
1592 * src/print-xml.c (print_reductions): Adjust code.
1593 * src/print.c (print_reductions): Adjust code.
1594 * src/reader.c (reader): Adjust code.
1595 * src/tables.c (action_row): Adjust code.
1596 (token_actions): Adjust code.
1597 * src/tables.h: Adjust YYDEFACT documentation.
1598 * tests/input.at (%define lr.default_rules invalid values):
1599 Rename test group to...
1600 (%define lr.default_reductions invalid values): ... this, and
1601 update grammar file and expected output.
1602 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1603 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1604
1605 2009-04-21 Akim Demaille <demaille@gostai.com>
1606
1607 tests: check the use of dashes and periods in symbols.
1608 * tests/input.at (Symbol): New test group.
1609
1610 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1611
1612 Document %define lr.type and lr.default_rules.
1613 * NEWS (2.5): Add an entry.
1614 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1615 besides just LALR(1) and GLR(1).
1616 * doc/bison.texinfo (Introduction): Likewise.
1617 (Language and Grammar): Bison is no longer limited to LALR(1)
1618 restrictions.
1619 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1620 when trying to distinguish from GLR. Talk about LR(1) grammars
1621 rather than LALR(1) grammars.
1622 (Decl Summary): In %define api.push_pull entry, say it applies
1623 to deterministic parsers in C rather than LALR(1) parsers in C.
1624 Add lr.default_rules entry.
1625 Add lr.type entry.
1626 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1627 restrictions.
1628 (Generalized LR Parsing): Same changes as for the previous GLR
1629 section.
1630 (Memory Management): Say deterministic rather than LALR(1).
1631 (Understanding): Correct some bison output.
1632 Index discussion of "accepting state".
1633 Say deterministic rather than LALR(1).
1634 (Bison Options): In --yacc entry, say deterministic rather than
1635 LALR(1).
1636 In --report, --graph, and --xml entries, just don't mention
1637 LALR(1).
1638 (C++ Parsers): Say deterministic rather than LALR(1).
1639 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1640 (Glossary): Add Accepting State, Consistent State, Default Rule,
1641 and IELR(1) definitions.
1642 In Generalized LR (GLR) definition, make same changes as in
1643 previous GLR sections.
1644 In LALR(1) definition, say Bison uses LALR(1) by default rather
1645 than implying Bison is limited to LALR(1).
1646 (LocalWords): Add IELR.
1647
1648 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1649
1650 Finish implementing %define lr.type.
1651 Its value can be "LALR", "IELR", or "canonical LR".
1652 * lib/timevar.def (TV_IELR_PHASE1): New var.
1653 (TV_IELR_PHASE2): New var.
1654 (TV_IELR_PHASE3): New var.
1655 (TV_IELR_PHASE4): New var.
1656 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1657 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1658 Sbitset.h, ielr.h, and ielr.c.
1659 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1660 trace_types): Add trace_ielr.
1661 * src/lalr.h, src/lalr.c (ngotos): Export it.
1662 (F): Rename to...
1663 (goto_follows): ... this, update all uses, and export it.
1664 (set_goto_map): Export it.
1665 (map_goto): Export it.
1666 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1667 handled in ielr.
1668 (initialize_LA): Export it. Move lookback allocation to...
1669 (lalr): ... here because, for canonical LR, initialize_LA must
1670 be invoked but lookback and much of the rest of LALR isn't
1671 needed.
1672 * main.c (main): Instead of lalr, invoke ielr, which invokes
1673 lalr.
1674 * src/reader.c (reader): Default lr.type to "LALR".
1675 Default lr.default_rules to "accepting" if lr.type is "canonical
1676 LR". Leave the default as "all" otherwise.
1677 Check for a valid lr.type value.
1678 * src/state.h, src/state.c (struct state_list): Add state_list
1679 member.
1680 (state_new): Initialize state_list member to NULL.
1681 (state_new_isocore): New function, exported.
1682 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1683 exercises all values of lr.type.
1684 (GNU AWK Grammar): Rename test group to...
1685 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1686 AT_TEST_EXISTING_GRAMMAR.
1687 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1688 (GNU pic Grammar): Rename test group to...
1689 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1690 AT_TEST_EXISTING_GRAMMAR.
1691 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1692 all values of lr.type.
1693 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1694 (Lane Split): Likewise.
1695 (Complex Lane Split): Likewise.
1696 (Split During Added Lookahead Propagation): Likewise.
1697
1698 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1699
1700 Add new files for IELR and canonical LR implementation.
1701 * src/AnnotationList.c: New.
1702 * src/AnnotationList.h: New.
1703 * src/InadequacyList.c: New.
1704 * src/InadequacyList.h: New.
1705 * src/Sbitset.c: New.
1706 * src/Sbitset.h: New.
1707 * src/ielr.c: New.
1708 * src/ielr.h: New.
1709
1710 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1711
1712 Implement %define lr.default_rules.
1713 Its value describes the states that are permitted to contain
1714 default rules: "all", "consistent", or "accepting".
1715 * src/reader.c (reader): Default lr.default_rules to "all".
1716 Check for a valid lr.default_rules value.
1717 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1718 is "accepting", then only mark the accepting state as
1719 consistent.
1720 (initialize_LA): Tell state_lookahead_tokens_count whether
1721 lr.default_rules is "accepting".
1722 * src/tables.c (action_row): If lr.default_rules is not "all",
1723 then disable default rules in inconsistent states.
1724 * src/print.c (print_reductions): Use this opportunity to
1725 perform some assertions about whether lr.default_rules was
1726 obeyed correctly.
1727 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1728 helps with checking the parser tables for a grammar.
1729 * tests/input.at (%define lr.default_rules invalid values): New
1730 test group.
1731 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1732 AT_TEST_TABLES_AND_PARSE.
1733 (`no %define lr.default_rules'): New test group generated by
1734 AT_TEST_LR_DEFAULT_RULES.
1735 (`%define lr.default_rules "all"'): Likewise.
1736 (`%define lr.default_rules "consistent"'): Likewise.
1737 (`%define lr.default_rules "accepting"'): Likewise.
1738
1739 2009-04-20 Akim Demaille <demaille@gostai.com>
1740
1741 Formatting change.
1742
1743 2009-04-20 Akim Demaille <demaille@gostai.com>
1744
1745 bison: factoring.
1746 * src/output.c (token_definitions_output): Use symbol_id_get
1747 instead of duplicating its logic.
1748 * TODO (YYERRCODE): Extend.
1749
1750 2009-04-20 Akim Demaille <demaille@gostai.com>
1751
1752 variables: prefer error-verbose to error_verbose.
1753 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1754 instead of error_verbose.
1755 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1756 variable.
1757 * doc/bison.texinfo: Promote %define error-verbose instead of
1758 %error-verbose.
1759 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1760
1761 2009-04-15 Akim Demaille <demaille@gostai.com>
1762
1763 variables: accept dashes.
1764 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1765 underscores.
1766 * src/scan-gram.l ({id}): Also accept dashes after the initial
1767 letter.
1768 ({directive}): Use {id}.
1769 * src/parse-gram.y: Comment and formatting changes.
1770 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1771 symbols.
1772 * src/complain.h, src/complain.c (yacc_at): New.
1773 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1774 symbol names.
1775 * src/output.c (token_definitions_output): Do not #define token
1776 names with dashes.
1777
1778 2009-04-20 Akim Demaille <demaille@gostai.com>
1779
1780 Consistently refer to Yacc, not YACC.
1781 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1782
1783 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1784
1785 Pacify make maintainer-check-posix.
1786 * tests/input.at (%define, --define): Move bison command-line
1787 options before grammar file name.
1788
1789 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1790
1791 Document semicolon warnings.
1792 * NEWS (2.5): Here.
1793
1794 2009-04-14 Akim Demaille <demaille@gostai.com>
1795
1796 variables: use `parse.assert' instead of `assert'.
1797 * TODO (assert): Remove.
1798 * data/bison.m4 (b4_assert_if): Replace with...
1799 (b4_parse_assert_if): this.
1800 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1801 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1802
1803 2009-04-14 Akim Demaille <demaille@gostai.com>
1804
1805 variables: use `parse.trace' instead of `debug'.
1806 * src/getargs.c (getargs): Map -t to %define trace.parse.
1807 * src/scan-gram.l (%debug): Map to %define trace.parse.
1808 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1809 names to `_' in macro names.
1810 (b4_debug_if): Replace with...
1811 (b4_parse_trace_if): this.
1812 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1813 * data/yacc.c: Adjust.
1814 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1815 Use @code to label the variable list.
1816 Document the variable parse.trace.
1817 (Tracing): Promote the parse.trace variable.
1818 * TODO: %printer is not documented.
1819
1820 2009-04-14 Akim Demaille <demaille@gostai.com>
1821
1822 doc: minor fixes.
1823 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1824 (Table of Symbols): Remove duplicate entry for %debug.
1825
1826 2009-04-10 Eric Blake <ebb9@byu.net>
1827
1828 submodules: update to latest
1829 * submodules/autoconf: Use latest upstream Autoconf.
1830
1831 2009-04-06 Eric Blake <ebb9@byu.net>
1832
1833 Work around autoconf 2.63b bug in testsuite.
1834 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1835 autoconf bug related to # in test.
1836
1837 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1838
1839 * NEWS (2.5): New section. Describe new -D/--define feature.
1840
1841 2009-04-06 Akim Demaille <demaille@gostai.com>
1842
1843 Regen.
1844 * src/parse-gram.h, src/parse-gram.c: Regen.
1845
1846 2009-04-06 Akim Demaille <demaille@gostai.com>
1847
1848 rename muscle_tab.* as muscle-tab.* for consistency.
1849 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1850 * src/muscle-tab.h, src/muscle-tab.c: these.
1851 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1852 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1853
1854 2009-04-06 Akim Demaille <demaille@gostai.com>
1855
1856 Makefile: introduce $(BISON).
1857 * src/local.mk (BISON): New.
1858 (YACC): Use it.
1859
1860 2009-04-06 Akim Demaille <demaille@gostai.com>
1861
1862 parser: handle %locations as %define locations.
1863 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1864 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1865 to set "locations" to true.
1866 * src/output.c (prepare): Don't output "locations".
1867 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1868 * src/parse-gram.y: It's no longer a token.
1869 Don't handle it.
1870 * data/bison.m4 (b4_locations_if): Define it with
1871 b4_percent_define_if_define.
1872 * data/c.m4, data/glr.cc: Adjust.
1873
1874 2009-04-06 Akim Demaille <demaille@gostai.com>
1875
1876 Regen.
1877 * src/parse-gram.c: Regen.
1878
1879 2009-04-06 Akim Demaille <demaille@gostai.com>
1880
1881 muscle: factor the handling of obsolete of obsolete directives.
1882 Suggested by Joel E. Denny.
1883
1884 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1885 New, extracted from...
1886 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1887 Remove it.
1888 (prologue_declaration: "%<flag>"): Use
1889 muscle_percent_define_ensure.
1890 (%error-verbose, %pure-parser): No longer tokens.
1891 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1892
1893 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1894
1895 Fix options documentation.
1896 * build-aux/cross-options.pl: As in --help output, write optional
1897 arguments as [=ARG] not =[ARG].
1898 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1899
1900 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1901
1902 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1903 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1904 requirements for a correct m4 are stricter.
1905 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1906 * configure.ac: Update to use AC_PROG_GNU_M4.
1907 Reported by Eric Blake.
1908
1909 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1910
1911 Help with updating web manual.
1912 * HACKING: Incorporate instructions from gnulib/doc/README.
1913 * bootstrap.conf (gnulib_modules): Add gendocs.
1914
1915 2009-04-03 Akim Demaille <demaille@gostai.com>
1916
1917 Regen.
1918 * src/parse-gram.h, src/parse-gram.c: Regen.
1919
1920 2009-04-03 Akim Demaille <demaille@gostai.com>
1921
1922 Factor %FLAG at scan level.
1923 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
1924 definitions and associated rules, replaced by....
1925 (PERCENT_FLAG): this new token type, and rule.
1926 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
1927 Use it for %debug and %error-verbose.
1928
1929 2009-04-03 Akim Demaille <demaille@gostai.com>
1930
1931 Regen.
1932 * src/parse-gram.h, src/parse-gram.c: Regen.
1933
1934 2009-04-03 Akim Demaille <demaille@gostai.com>
1935
1936 Treat %debug as %define debug.
1937 * data/bison.m4 (b4_debug_if): New.
1938 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
1939 * data/lalr1.java: Use it instead of b4_debug_flag.
1940 * src/getargs.h, src/getargs.c (debug_flag): Remove.
1941 * src/output.c (prepare): Don't output it.
1942 * src/parse-gram.y: Treat %debug as %define debug.
1943
1944 2009-04-03 Akim Demaille <demaille@gostai.com>
1945
1946 Treat %error-verbose as %define error_verbose.
1947 This allows to pass -Derror_verbose on the command line. Better
1948 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
1949 ERROR_VERBOSE being defined as false or true.
1950 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
1951 on b4_percent_define_ifdef, for does not check the defined value,
1952 but only whether the symbol is defined, rely on
1953 b4_percent_define_flag_if, so that a value of "false" is processed
1954 as a false.
1955 If not defined, define the flag to "false".
1956 (b4_error_verbose_if): New.
1957 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
1958 b4_error_verbose_flag.
1959 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
1960 * src/output.c (prepare): Don't output it.
1961 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
1962
1963 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1964
1965 Fix strange %define locations for default values.
1966 Reported by Akim Demaille at
1967 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1968 and discussed again starting at
1969 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1970 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1971 because location information is bogus.
1972 Use angle brackets to delimit fake file name because square brackets
1973 look like underexpanded m4. Choose a better fake file name.
1974 Use negative line numbers.
1975 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1976 * src/location.c (location_print): If line for a boundary is negative,
1977 only print that boundary's file name.
1978 * src/location.h: Document that.
1979 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1980 defaults): Update output.
1981
1982 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1983
1984 Pacify ./configure --enable-gcc-warnings.
1985 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
1986 in lib won't compile with it.
1987 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
1988
1989 2009-03-31 Akim Demaille <demaille@gostai.com>
1990
1991 bootstrap: --help to stdout.
1992 * bootstrap (usage): Don't send --help to stderr.
1993 Use a here doc instead of a long string.
1994
1995 2009-03-31 Akim Demaille <demaille@gostai.com>
1996
1997 bootstrap: README-hacking no longer exists
1998 * bootstrap (checkout_only_file): Set to HACKING.
1999
2000 2009-03-26 Akim Demaille <demaille@gostai.com>
2001
2002 doc: merge HACKING and README-hacking.
2003 Two files is confusing.
2004 Reported by Alexandre Duret-Lutz.
2005
2006 * README-hacking: Merge into...
2007 * HACKING (Working from the repository): here.
2008
2009 2009-03-26 Akim Demaille <demaille@gostai.com>
2010
2011 doc: update README-hacking.
2012 * README-hacking: We now use git and git submodules.
2013 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2014
2015 2009-03-26 Akim Demaille <demaille@gostai.com>
2016
2017 lalr1.cc: avoid GCC 4.3 warnings.
2018 GCC 4.3 now warns about "a || b && c" and asks for explicit
2019 parentheses.
2020 Reported by Alexandre Duret-Lutz.
2021 * data/location.cc: Update copyright years.
2022 (Position::operator==): Use parens to make precedence explicit.
2023 Compare lines and columns first, as they are more likely to be
2024 different, and they are faster to compare.
2025
2026 2009-03-26 Akim Demaille <demaille@gostai.com>
2027
2028 gnulib: update.
2029 * gnulib: Update to latest.
2030 * src/local.mk (AM_CFLAGS): Move to...
2031 * Makefile.am: here.
2032 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2033 AM_CFLAGS.
2034
2035 2009-03-02 Akim Demaille <demaille@gostai.com>
2036
2037 Comment changes.
2038
2039 2009-03-02 Akim Demaille <demaille@gostai.com>
2040
2041 Share b4_yytranslate_define.
2042 * data/lalr1.cc (b4_yytranslate_define): Move to...
2043 * data/c++.m4: here.
2044
2045 2009-03-02 Akim Demaille <demaille@gostai.com>
2046
2047 Use locations in the variant example.
2048 Yes, this obfuscates the point of this example, variants only.
2049 But glr.cc cannot work (yet?) without locations. This change
2050 makes it easier to use this example with glr.cc.
2051
2052 * examples/variant.yy (assert): %define it.
2053 (locations): Request them.
2054 (yylex): Bind the location to the stage.
2055
2056 2009-03-02 Akim Demaille <demaille@gostai.com>
2057
2058 Dub make_TOKEN as a public type interface.
2059 * data/c++.m4 (b4_symbol_constructor_declare)
2060 (b4_symbol_constructor_define): New empty stubs.
2061 (b4_public_types_declare, b4_public_types_define): Use them.
2062 * data/lalr1.cc (b4_symbol_constructor_declare)
2063 (b4_symbol_constructor_declare_)
2064 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2065 Move to...
2066 * data/variant.hh: here.
2067 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2068 needed.
2069 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2070 b4_symbol_constructor_declare, as it is now done by
2071 b4_public_types_define and b4_public_types_declare.
2072
2073 2009-03-02 Akim Demaille <demaille@gostai.com>
2074
2075 Coding style changes.
2076 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2077 (b4_symbol_constructor_declarations)
2078 (b4_symbol_constructor_definition_)
2079 (b4_symbol_constructor_definitions)
2080 (b4_yytranslate_definition): Rename as...
2081 (b4_symbol_constructor_declare_)
2082 (b4_symbol_constructor_declare)
2083 (b4_symbol_constructor_define_)
2084 (b4_symbol_constructor_define)
2085 (b4_yytranslate_define): these.
2086 * data/variant.hh (b4_variant_definition): Rename as...
2087 (b4_variant_define): this.
2088
2089 2009-03-02 Akim Demaille <demaille@gostai.com>
2090
2091 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2092 * data/bison.m4 (b4_percent_define_if_define): New.
2093 * data/c++.m4 (b4_variant_if): Move to...
2094 * data/bison.m4: Here, using b4_percent_define_if_define.
2095 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2096 * data/bison.m4: Here, using b4_percent_define_if_define.
2097
2098 2009-03-02 Akim Demaille <demaille@gostai.com>
2099
2100 Dub symbol_type_base as a public type.
2101 * data/c++.m4 (b4_public_types_declare): Now define
2102 symbol_type_base and symbol_type.
2103 (b4_public_types_define): New.
2104 In both cases, the definitions are taken verbatim from lalr1.cc.
2105 * data/lalr1.cc: Adjust.
2106
2107 2009-03-02 Akim Demaille <demaille@gostai.com>
2108
2109 b4_public_types_declare.
2110 * data/c++.m4 (b4_public_types_declare): New.
2111 * data/glr.cc, data/lalr1.cc: Use it.
2112
2113 2009-03-02 Akim Demaille <demaille@gostai.com>
2114
2115 b4_semantic_type_declare.
2116 * data/c++.m4 (b4_semantic_type_declare): New.
2117 Factors and generalizes what was in glr.cc and lalr1.cc.
2118 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2119 variants.
2120 * data/lalr1.cc, data/glr.cc: Use it.
2121
2122 2009-02-26 Akim Demaille <demaille@gostai.com>
2123
2124 Upgrade gnulib.
2125 * gnulib: Upgrade from master.
2126 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2127 Regen.
2128
2129 2009-02-25 Akim Demaille <demaille@gostai.com>
2130
2131 Remove useless arguments.
2132 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2133 relevant.
2134
2135 2009-02-25 Akim Demaille <demaille@gostai.com>
2136
2137 Comment changes.
2138 * data/lalr1.cc: here.
2139
2140 2009-02-25 Akim Demaille <demaille@gostai.com>
2141
2142 Fix glr.cc's debug level handling.
2143 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2144 glr.c which is used.
2145 (debug_level, set_debug_level): Adjust.
2146
2147 2009-02-25 Akim Demaille <demaille@gostai.com>
2148
2149 Copyright years.
2150 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2151
2152 2009-02-25 Akim Demaille <demaille@gostai.com>
2153
2154 Style changes.
2155 * etc/bench.pl.in (generate_grammar_list): Consitently use
2156 location_type, not yy::location.
2157
2158 2009-02-25 Akim Demaille <demaille@gostai.com>
2159
2160 Comment change.
2161 * data/lalr1.cc: here.
2162
2163 2009-02-19 Akim Demaille <demaille@gostai.com>
2164
2165 Make yyparser::error public.
2166 * data/lalr1.cc: here.
2167 There is no good reason to keep it private (and it is convenient
2168 to use it from the scanner for instance). It is already public in
2169 glr.cc.
2170
2171 2009-02-19 Akim Demaille <demaille@gostai.com>
2172
2173 Comment changes.
2174 * data/glr.cc: here.
2175
2176 2009-02-19 Akim Demaille <demaille@gostai.com>
2177
2178 Remove trailing blanks.
2179 The epilogue has its own ending \n, no need to add another.
2180
2181 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2182 epilogue.
2183 * data/glr.cc: dnl when extending the epilogue.
2184 Remove stray "private:".
2185
2186 2009-02-19 Akim Demaille <demaille@gostai.com>
2187
2188 Use b4_c_modern.
2189 * data/c.m4 (b4_c_function_decl): Here.
2190
2191 2009-02-19 Akim Demaille <demaille@gostai.com>
2192
2193 Comment changes.
2194 * data/lalr1.cc: here.
2195
2196 2009-02-19 Akim Demaille <demaille@gostai.com>
2197
2198 Extract variant.hh
2199 * data/variant.hh: New, extracted from...
2200 * data/lalr1.cc: here.
2201 Adjust.
2202 * data/local.mk: Adjust.
2203
2204 2009-02-19 Akim Demaille <demaille@gostai.com>
2205
2206 Extract stack.hh from lalr1.cc.
2207 * data/stack.hh: New.
2208 * data/lalr1.cc: Extract from here.
2209 * data/local.mk: Adjust.
2210
2211 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2212
2213 Add reminder about uploading public key to keys.gnupg.net.
2214 * HACKING (Release Procedure): Here.
2215
2216 2009-01-28 Akim Demaille <demaille@gostai.com>
2217
2218 * NEWS: Update information about 2.4.1 and 2.4.2.
2219
2220 2008-11-04 Akim Demaille <demaille@gostai.com>
2221
2222 Reformat NEWS.
2223 * NEWS: Use more outline-mode markup.
2224 Suggested by Jim Meyering.
2225
2226 2009-01-08 Akim Demaille <demaille@gostai.com>
2227
2228 Fix grep portability issues.
2229 Grep on Solaris does not support -q.
2230 Reported by Summum Bonum.
2231
2232 * NEWS: Add a stub for 2.4.2.
2233 * THANKS: Add Summum Bonum.
2234 * tests/atlocal.in (EGREP): New.
2235 (CC, CXX, XSLTPROC): Make it possible to override them via
2236 envvars.
2237 * tests/java.at: Use $EGREP instead of egrep.
2238 Use AT_CHECK's ignore instead of grep's -q.
2239
2240 2008-12-11 Akim Demaille <demaille@gostai.com>
2241
2242 Pass the token type to yysyntax_error.
2243 * data/yacc.c (yysyntax_error): Take the transated token instead
2244 of the raw number.
2245 Adjust callers.
2246 * TODO: Update.
2247
2248 2008-12-11 Akim Demaille <demaille@gostai.com>
2249
2250 Formatting changes.
2251 * data/glr.c: Formatting changes.
2252
2253 2008-12-11 Akim Demaille <demaille@gostai.com>
2254
2255 Propagate i18n changes into glr.c.
2256 * TODO: Update.
2257 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2258 building the error message format dynamically.
2259 * data/lalr1.java: Formatting changes.
2260
2261 2008-12-11 Akim Demaille <demaille@gostai.com>
2262
2263 Use testsuite -C.
2264 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2265 Solves problems when top_srcdir is an absolute path.
2266 Suggested by Eric Blake.
2267 * configure.ac: Require Autoconf 2.62.
2268
2269 2008-12-11 Akim Demaille <demaille@gostai.com>
2270
2271 Simplify the i18n of the error messages.
2272 * data/lalr1.cc: Comment changes.
2273 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2274 lalr1.cc instead of building dynamically the format string.
2275
2276 2008-12-08 Akim Demaille <demaille@gostai.com>
2277
2278 Fix portability issue in the test suite.
2279 * tests/local.at (AT_MATCHES_CHECK): New.
2280 Based on Perl instead of Sed. Sed has too many portability
2281 pitfalls, not ever Sed is GNU Sed.
2282 * tests/actions.at (Fix user actions without a trailing semicolon):
2283 Use it.
2284
2285 2008-12-08 Akim Demaille <demaille@gostai.com>
2286
2287 Update data/README.
2288 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2289
2290 2008-12-08 Akim Demaille <demaille@gostai.com>
2291
2292 Install autoconf as a submodule to get m4sugar.
2293 * .gitmodules: Add submodules/autoconf.
2294 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2295 submodules/autoconf.
2296
2297 2008-12-08 Akim Demaille <demaille@gostai.com>
2298
2299 Test token.prefix in all the skeletons.
2300 * data/java.m4 (b4_token_enum): Use the token.prefix.
2301 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2302 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2303 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2304 * tests/java.at: Comment changes.
2305 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2306 (Java parser class and package names): Add token.prefix check.
2307
2308 2008-12-08 Akim Demaille <demaille@gostai.com>
2309
2310 Fix regeneration of atconfig.
2311 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2312 remove it: now that there is no tests/Makefile.am, the top-level
2313 Makefile properly updates atconfig when needed.
2314
2315 2008-12-07 Di-an Jan <dianj@freeshell.org>
2316
2317 Implement the FIXME that ends an user action with a semicolon
2318 if it seems necessary.
2319 * src/scan-code.l (flex rules section): Flag cpp directive from
2320 any `#' to the first unescaped end-of-line. Semicolon is not
2321 needed after `;', `{', '}', or cpp directives and is needed after
2322 any other token (whitespaces and comments have no effect).
2323 * tests/actions.at (Fix user actions without a trailing semicolon):
2324 New test.
2325 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2326 to make user actions complete statements.
2327 Adjust column numbers in error messages.
2328 * tests/regression.at (Fix user actions without a trailing semicolon):
2329 Remove. Covered by new test.
2330
2331 2008-12-07 Akim Demaille <demaille@gostai.com>
2332
2333 Update gnulib.
2334 * gnulib: Update from master.
2335
2336 2008-12-05 Eric Blake <ebb9@byu.net>
2337
2338 Avoid compiler warning.
2339 * src/output.c (muscle_insert_item_number_table): Delete unused
2340 function.
2341
2342 2008-12-02 Eric Blake <ebb9@byu.net>
2343
2344 Build testsuite with newer autoconf.
2345 * tests/output.at (m4_expand): Don't override in newer autoconf,
2346 where the underlying implementation changed.
2347 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2348 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2349 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2350 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2351 since some of them contain unbalanced ')'.
2352
2353 2008-12-01 Akim Demaille <demaille@gostai.com>
2354
2355 Use b4_symbol for printers and destructors everywhere.
2356 * data/bison.m4 (b4_symbol_action_location): New.
2357 * data/c.m4 (b4_symbol_actions): Remove.
2358 Adjust all callers to use by b4_symbol_foreach and the corresponding
2359 b4_symbol_printer/destructor macro.
2360 * data/glr.cc: Adjust.
2361 * data/lalr1.java: Adjust the %destructor sanity check.
2362 * src/output.c (symbol_code_props_output): Remove, we no longer
2363 need the b4_symbol_printers/destructors tables.
2364
2365 2008-12-01 Akim Demaille <demaille@gostai.com>
2366
2367 Use b4_symbol_case_.
2368 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2369 b4_symbol_case_.
2370
2371 2008-12-01 Akim Demaille <demaille@gostai.com>
2372
2373 Move b4_symbol based macro to bison.m4.
2374 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2375 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2376 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2377 (b4_type_foreach): Move to...
2378 * data/bison.m4: Here.
2379 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2380 b4_symbol_value_template instead of b4_symbol_value.
2381
2382 2008-12-01 Akim Demaille <demaille@gostai.com>
2383
2384 b4_symbol/type_foreach.
2385 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2386 Use them.
2387
2388 2008-12-01 Akim Demaille <demaille@gostai.com>
2389
2390 Use the symbol properties to output the printer/destructor for lalr1.cc.
2391 Instead of defining complex list of tuples to define various
2392 properties of the symbols, we now prefer to define symbols as
2393 "structs" in m4: using the symbol key (its number), and the
2394 property name, b4_symbol gives it value. Use this to handle
2395 destructors and printers.
2396
2397 * src/output.c (CODE_PROP): New.
2398 (prepare_symbol_definitions): Use it to define the printer and
2399 destructor related attributes of the symbols.
2400 * data/lalr1.cc (b4_symbol_actions): Rename as...
2401 (b4_symbol_action): this.
2402 Use b4_symbol instead of 6 arguments.
2403 (b4_symbol_printer, b4_symbol_destructor): New.
2404 Use them instead of b4_symbol_actions.
2405
2406 2008-12-01 Akim Demaille <demaille@gostai.com>
2407
2408 Avoid capturing variables too easily.
2409 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2410 v__ and p__ instead of v and p.
2411
2412 2008-12-01 Akim Demaille <demaille@gostai.com>
2413
2414 Remove spurious empty line before syncline.
2415 * data/bison.m4 (b4_syncline): Don't output an empty line before
2416 the output.
2417
2418 2008-11-26 Akim Demaille <demaille@gostai.com>
2419
2420 Convert lib/Makefile.am into lib/local.mk.
2421 The real problem is rather gnulib.mk, which itself is extracted
2422 from a Makefile.am that gnulib expects to the "recursive". The
2423 tool prefix-gnulib-mk converts such a gnulib.mk to be
2424 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2425
2426 * etc/prefix-gnulib-mk: New.
2427 * bootstrap (slurp): Use it to convert further gnulib.mk.
2428 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2429 are deeper.
2430 * lib/Makefile.am: Rename as...
2431 * lib/local.mk: this.
2432 Adjust to be prefixed.
2433 * Makefile.am, configure.ac: Adjust.
2434 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2435
2436 2008-11-26 Akim Demaille <demaille@gostai.com>
2437
2438 s/_FLAGS/FLAGS/.
2439 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2440 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2441 Reported by Eric Blake.
2442
2443 2008-11-26 Akim Demaille <demaille@gostai.com>
2444
2445 Use b4_parser_tables_define in glr.cc.
2446 * data/glr.c: Use b4_parser_tables_define instead of defining the
2447 (deterministic integral) tables by hand.
2448
2449 2008-11-26 Akim Demaille <demaille@gostai.com>
2450
2451 Use b4_parser_tables_define in Java.
2452 * data/java.m4 (b4_typed_parser_table): Rename as...
2453 (b4_typed_parser_table_define): this, for consistency.
2454 Accept a comment as $4.
2455 Move $2 into yy*_.
2456 (b4_integral_parser_table): Rename as...
2457 (b4_integral_parser_table_define): this.
2458 * data/lalr1.java: Adjust all uses.
2459 Use b4_parser_tables_define instead of generation by hand.
2460
2461 2008-11-26 Akim Demaille <demaille@gostai.com>
2462
2463 Prepare the convergence bw C style and Java table generation.
2464 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2465 (b4_tables_define): Rename as...
2466 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2467 (b4_parser_tables_define): these.
2468 * data/c.m4 (b4_table_define): Rename as...
2469 (b4_integral_parser_table_define): this.
2470 * data/lalr1.cc: Adjust.
2471 (b4_table_define, b4_table_declare): Rename as...
2472 (b4_integral_parser_table_define)
2473 (b4_integral_parser_table_declare): these.
2474 (yyrline_): Move the comment where it is actually used.
2475 * data/yacc.c: Adjust.
2476 (yyrline): Use b4_integral_parser_table_define.
2477
2478 2008-11-26 Akim Demaille <demaille@gostai.com>
2479
2480 Regen.
2481 * src/parse-gram.h, src/parse-gram.c: Regen.
2482
2483 2008-11-26 Akim Demaille <demaille@gostai.com>
2484
2485 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2486 * data/lalr1.cc (b4_tables_map): Move to...
2487 * data/bison.m4: here.
2488 Update the comment for yytable during the flight.
2489 (b4_tables_declare, b4_tables_define): New.
2490 * data/lalr1.cc: Use them.
2491 * data/c.m4 (b4_table_define): New.
2492 * data/yacc.c: Use b4_tables_define instead of output the tables
2493 by hand.
2494 * tests/regression.at (Web2c Actions): Adjust the expected output,
2495 the order of the tables changed.
2496
2497 2008-11-26 Akim Demaille <demaille@gostai.com>
2498
2499 Get rid of (yy)rhs and (yy)prhs.
2500 These tables are no longer needed in the parsers, and they don't seem to
2501 be useful. They are not documented either.
2502
2503 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2504 Adjust the computation of (yy)r2.
2505
2506 2008-11-26 Akim Demaille <demaille@gostai.com>
2507
2508 Rule length is unsigned.
2509 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2510
2511 2008-11-26 Akim Demaille <demaille@gostai.com>
2512
2513 Get rid of lalr1-split.cc.
2514 It was no longer maintainer.
2515
2516 * data/lalr1-split.cc: Remove.
2517 * etc/bench.pl.in (bench_fusion_parser): Remove.
2518 Adjust.
2519
2520 2008-11-26 Akim Demaille <demaille@gostai.com>
2521
2522 Use yy* consistently.
2523 * data/glr.c: Now that yyrhs no longer exists as a global
2524 variable, rename local "rhs" variables into "yyrhs" for
2525 consistency.
2526
2527 2008-11-25 Akim Demaille <demaille@gostai.com>
2528
2529 Get rid of yyrhs and yyprhs in glr.c.
2530 * data/glr.c (yyrhs, yyprhs): Remove.
2531 Instead, use the state stack and yystos.
2532
2533 2008-11-25 Akim Demaille <demaille@gostai.com>
2534
2535 Flag glr tests.
2536 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2537 as an Autotest keyword.
2538
2539 2008-11-25 Akim Demaille <demaille@gostai.com>
2540
2541 Prefer TESTSUITE_FLAGS.
2542 TESTSUITEFLAGS is barely readable.
2543
2544 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2545 for backward compatibility.
2546 Use the former instead of the latter.
2547
2548 2008-11-25 Akim Demaille <demaille@gostai.com>
2549
2550 Get rid of yyrhs and yyprhs in larl1.java.
2551 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2552 (yy_reduce_print): Rather, use yystos_ and the state stack.
2553
2554 2008-11-25 Akim Demaille <demaille@gostai.com>
2555
2556 Formatting changes.
2557
2558 2008-11-25 Akim Demaille <demaille@gostai.com>
2559
2560 Get rid of yyrhs and yyprhs in yacc.c.
2561 They were used to get the symbol types, given a rule number, when
2562 displaying the top of the stack before a reduction. But the
2563 symbol type is available from the state stack. This has two be
2564 benefits: two tables less in the parser (making it smaller), and a
2565 more consistent use of the three stacks which will help to fuse
2566 them.
2567
2568 * data/yacc.c (yyprhs, yyrhs): Remove.
2569 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2570 (yy_reduce_print): Take yyssp as argument.
2571 Use it, together with yystos, to get the symbol type.
2572 * tests/regression.at (Web2c Report): Remove these tables from the
2573 expected output.
2574
2575 2008-11-25 Akim Demaille <demaille@gostai.com>
2576
2577 b4_tables_map.
2578 The point is to factor the generation of the tables across skeletons.
2579 This is language dependant.
2580
2581 * data/c.m4 (b4_comment_): New.
2582 Should be usable to define how to generate tables independently of
2583 the language.
2584 (b4_c_comment): New.
2585 (b4_comment): Bounce to b4_c_comment.
2586 Now support $2 = [PREFIX] for indentation.
2587 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2588 there is no comment.
2589 Indent it properly when there is one.
2590 Output the ending semicolon.
2591 (b4_table_define): Space changes.
2592 Output the ending semicolon.
2593 (b4_tables_map): New.
2594 Use it twice instead of declaring and defining the (integral)
2595 tables by hand.
2596
2597 2008-11-25 Akim Demaille <demaille@gostai.com>
2598
2599 b4_table_declare.
2600 * data/lalr1.cc (b4_table_declare): New.
2601 Use it to declare the tables defined with b4_table_define.
2602 (b4_table_define): Declare a third arg to match b4_table_declare
2603 signature.
2604 Move all the comments around invocations of b4_table_define into
2605 the invocations itselves.
2606 Move things around to have the order for declarations and
2607 definitions.
2608
2609 2008-11-25 Akim Demaille <demaille@gostai.com>
2610
2611 Formatting changes.
2612 * data/lalr1.java: here.
2613
2614 2008-11-25 Akim Demaille <demaille@gostai.com>
2615
2616 b4_args is more general than only C++.
2617 * data/lalr1.cc (b4_args, _b4_args): Move to...
2618 * data/bison.m4: here.
2619
2620 2008-11-21 Di-an Jan <dianj@freeshell.org>
2621
2622 Implement no-XXX arguments for --warnings, --report, --trace.
2623 * src/getargs.c (flags_argmatch): Handles no-XXX.
2624 Fix typo in doxygen comment.
2625
2626 2008-11-21 Akim Demaille <demaille@gostai.com>
2627
2628 Display the changes in cross-options.texi.
2629 * build-aux/cross-options.pl ($sep): New, to separate items.
2630 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2631 changes.
2632
2633 2008-11-20 Di-an Jan <dianj@freeshell.org>
2634
2635 Improves options in the manual.
2636 * doc/bison.texinfo (-g, -x): Add space before argument.
2637 (Option Cross Key): Implement FIXME: listing directives also.
2638 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2639 (Short Option): Special case -d. Put arguments inside @option.
2640 (Bison Directive): Add column, automatically extracted from
2641 src/scan-gram.l (actual name passed as the first argument)
2642 with special case for %define.
2643 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2644 to build-aux/cross-options.pl.
2645 * src/getargs.c (usage): Document limitations of cross-options.pl.
2646 * src/scan-gram.l: Likewise.
2647
2648 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2649
2650 Fix unexpanded macros in GLR defines file.
2651 Reported by Csaba Raduly at
2652 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2653 * THANKS (Csaba Raduly): Add.
2654 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2655 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2656 lexer in a separate module that includes the defines file.
2657 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2658 source.
2659 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2660 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2661 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2662 (AT_DATA_SOURCE_PROLOGUE): New.
2663 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2664 (AT_DATA_SOURCE): New.
2665 (AT_FULL_COMPILE): Extend to support an additional source file.
2666
2667 2008-11-18 Akim Demaille <demaille@gostai.com>
2668
2669 More TODO.
2670 * TODO: More short term issues.
2671
2672 2008-11-18 Akim Demaille <demaille@gostai.com>
2673
2674 Regen.
2675 * src/parse-gram.h, src/parse-gram.c: Regen.
2676
2677 2008-11-18 Akim Demaille <demaille@gostai.com>
2678
2679 Use b4_subtract where possible.
2680 * data/lalr1.cc (b4_subtract): Move to...
2681 * data/bison.m4: here.
2682 * data/glr.c (b4_rhs_data): Use it.
2683 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2684
2685 2008-11-18 Akim Demaille <demaille@gostai.com>
2686
2687 Remove incorrect mode specification.
2688 * data/glr.cc: Don't pretend it's C code.
2689
2690 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2691
2692 Simplify last patch slightly.
2693 * src/getargs.c (getargs): Here.
2694
2695 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2696
2697 Fix last warning from --enable-gcc-warnings.
2698 * src/getargs.c (getargs): Don't assign const address to non-const
2699 pointer.
2700
2701 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2702
2703 Don't let maintainer-*-check targets force a version update.
2704 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2705 handled.
2706
2707 2008-11-17 Di-an Jan <dianj@freeshell.org>
2708
2709 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2710 Align menus. Adjust word wrapping. Use node names for menu names.
2711 (Examples): Don't abbreviate node names.
2712 (LocalWords): Remove abbreviations.
2713 (Copying): Make description a sentence.
2714 (Java Action Features): Remove period to match the rest of menu.
2715
2716 2008-11-17 Di-an Jan <dianj@freeshell.org>
2717
2718 Handles several --enable-gcc-warnings.
2719 * src/getargs.c (command_line_location): Set parameters to void.
2720 * src/output.c (symbol_type_name_cmp): Make static.
2721 (symbols_by_type_name): Set parameters to void.
2722 (symbol_definitions_output): Remove unused parameter. Rename as...
2723 (prepare_symbol_definitions): this.
2724 (muscles_output): Move symbol_definitions_output to...
2725 (output): here as prepare_symbol_definitions.
2726 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
2727 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
2728
2729 2008-11-17 Di-an Jan <dianj@freeshell.org>
2730
2731 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2732 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2733
2734 2008-11-16 Akim Demaille <demaille@gostai.com>
2735
2736 Add missing $(EXEEXT).
2737 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2738 "src/bison$(EXEEXT)".
2739 Reported by Di-an Jan.
2740
2741 2008-11-15 Akim Demaille <demaille@gostai.com>
2742
2743 * TODO: Update.
2744
2745 2008-11-15 Akim Demaille <demaille@gostai.com>
2746
2747 Formatting changes.
2748 * tests/input.at: here.
2749
2750 2008-11-15 Akim Demaille <demaille@gostai.com>
2751
2752 Remove duplicate header inclusion.
2753 * src/LR0.c: here.
2754
2755 2008-11-15 Akim Demaille <demaille@gostai.com>
2756
2757 * src/parse-gram.h, src/parse-gram.c: Regen.
2758
2759 2008-11-15 Akim Demaille <demaille@gostai.com>
2760
2761 Support parametric types.
2762
2763 There are two issues to handle: first scanning nested angle
2764 bracket pairs to support types such as std::pair< std::string,
2765 std::list<std::string> > >.
2766
2767 Another issue is to address idiosyncracies of C++: do not glue two
2768 closing angle brackets together (otherwise it's operator>>), and
2769 avoid sticking blindly a TYPE to the opening <, as it can result
2770 in '<:' which is a digraph for '['.
2771
2772 * src/scan-gram.l (brace_level): Rename as...
2773 (nesting): this.
2774 (SC_TAG): New.
2775 Implement support for complex tags.
2776 (tag): Accept
2777 , but not <.
2778 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2779 (b4_symbol_variant): Leave space around types as parameters.
2780 * examples/variant.yy: Use nested template types and leading ::.
2781 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2782 Rename as...
2783 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2784 * tests/c++.at: Test parametric types.
2785
2786 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2787
2788 Test token.prefix.
2789 This is not sufficient, but we test at least that the make_SYMBOL
2790 interface is not affected by token.prefix. A more general test
2791 will be implemented when the support of token.prefix is generalized
2792 to more skeletons.
2793
2794 * tests/c++.at: One more variant test, using token.prefix.
2795
2796 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2797
2798 Test the make_TOKEN interface.
2799 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2800 Factor the common code in yylex.
2801 Use it to test "%define lex_symbol".
2802
2803 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2804
2805 Formatting change.
2806
2807 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2808
2809 Simplify code for variants bench marks.
2810 * etc/bench.pl.in (&generate_grammar_list): Define and use
2811 location_type.
2812 Factor the common code in yylex.
2813
2814 2008-11-15 Akim Demaille <demaille@gostai.com>
2815
2816 Better error message.
2817 * bootstrap (find_tool): Fix the error message.
2818
2819 2008-11-15 Akim Demaille <demaille@gostai.com>
2820
2821 Update variant.yy to newest interface.
2822 * examples/variant.yy: Define lex_symbol.
2823 Adjust.
2824
2825 2008-11-15 Akim Demaille <demaille@gostai.com>
2826
2827 Don't use locations in variant.yy.
2828 * examples/variant.yy: Adjust to not using locations.
2829
2830 2008-11-15 Akim Demaille <demaille@gostai.com>
2831
2832 Comment changes.
2833 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2834 comments for the license.
2835
2836 2008-11-15 Akim Demaille <demaille@gostai.com>
2837
2838 Remove tests/Makefile.am.
2839 * tests/Makefile.am: Rename as...
2840 * tests/local.mk: this.
2841 * Makefile.am, configure.ac: Adjust.
2842 * Makefile.am (DISTCLEANFILES): Define.
2843 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2844 Remove, we no longer need to bounce to the real targets.
2845
2846 2008-11-15 Akim Demaille <demaille@gostai.com>
2847
2848 Comment changes.
2849
2850 2008-11-15 Akim Demaille <demaille@gostai.com>
2851
2852 djgpp/local.mk.
2853 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2854 * djgpp/local.mk: this new file.
2855
2856 2008-11-15 Akim Demaille <demaille@gostai.com>
2857
2858 Remove doc/Makefile.am.
2859 * doc/Makefile.am: Rename as...
2860 * doc/local.mk: this.
2861 Adjust paths
2862 * Makefile.am, configure.ac: Adjust.
2863 * Makefile.am (MOSTLYCLEANFILES): New.
2864 * src/local.mk: Adjust.
2865
2866 2008-11-15 Akim Demaille <demaille@gostai.com>
2867
2868 Move sc_tight_scope into maint.mk.
2869 It does not work, and I don't know how it was supposed to work: it
2870 seems to be looking for sources in the build tree. I just moved
2871 it at a better place, fixing it is still required.
2872
2873 * src/local.mk (echo): Remove.
2874 (sc_tight_scope): Move to...
2875 * maint.mk: here.
2876
2877 2008-11-15 Akim Demaille <demaille@gostai.com>
2878
2879 Regen.
2880 * src/parse-gram.h, src/parse-gram.h: Regen.
2881
2882 2008-11-15 Akim Demaille <demaille@gostai.com>
2883
2884 Remove src/Makefile.am.
2885 * src/Makefile.am: Rename as...
2886 * src/local.mk: this.
2887 Prefix all the paths with src/.
2888 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2889 (AM_CPPFLAGS): Find find in builddir/src.
2890 (YACC): Move the flags into...
2891 (AM_YFLAGS): here.
2892 * maint.mk (sc_tight_scope): Disable.
2893 It used to bounce to the version in src/Makefile.am which is now
2894 part of this very Makefile.
2895 * Makefile.am, configure.ac: Adjust.
2896 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2897 include "..." to find files "here": we are no longer in src/, so
2898 qualify the includes with src/.
2899 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2900 prefix.
2901 (.x.1): Adjust to be able to create src/foo from the top level
2902 Makefile, instead of going bounce to src/Makefile the creation of
2903 foo.
2904
2905 2008-11-15 Akim Demaille <demaille@gostai.com>
2906
2907 Remove useless variable.
2908 * doc/Makefile.am (srcsrcdir): Remove.
2909
2910 2008-11-15 Akim Demaille <demaille@gostai.com>
2911
2912 Remove data/Makefile.am.
2913 * data/Makefile.am: Rename as...
2914 * data/local.mk: this.
2915 Adjust paths.
2916 * Makefile.am, configure.ac: Adjust.
2917
2918 2008-11-15 Akim Demaille <demaille@gostai.com>
2919
2920 Remove etc/Makefile.am.
2921 * etc/Makefile.am: Rename as...
2922 * etc/local.mk: this.
2923 Adjust.
2924 * Makefile.am, configure.ac: Adjust.
2925
2926 2008-11-15 Akim Demaille <demaille@gostai.com>
2927
2928 Remove examples/local.mk.
2929 examples/calc++/Makefile.am might be interesting to keep as is, since
2930 it is an example in itself.
2931
2932 * examples/Makefile.am: Rename as...
2933 * examples/local.mk: this.
2934 Adjust.
2935 * Makefile.am, configure.ac: Adjust.
2936
2937 2008-11-15 Akim Demaille <demaille@gostai.com>
2938
2939 Remove build-aux/Makefile.am.
2940 Recursive Makefiles are really way too slow, let's get rid of some of
2941 them.
2942
2943 * build-aux/Makefile.am: Rename as...
2944 * build-aux/local.mk: this.
2945 Adjust paths.
2946 * Makefile.am, configure.ac: Adjust.
2947
2948 2008-11-15 Akim Demaille <demaille@gostai.com>
2949
2950 Provide convenience constructors for locations and positions.
2951 * data/location.cc (position::position): Accept file, line and
2952 column as arguments with default values.
2953 Always qualify initial line and column literals as unsigned.
2954 (location::location): Provide convenience constructors.
2955
2956 2008-11-15 Akim Demaille <demaille@gostai.com>
2957
2958 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
2959 token type.
2960 Using template buys us nothing, and makes it uselessly complex to
2961 construct a symbol. Besides, it could not be generalized to other
2962 languages, while make_FOO would work in C/Java etc.
2963
2964 * data/lalr1.cc (b4_symbol_): New.
2965 (b4_symbol): Use it.
2966 (b4_symbol_constructor_declaration_)
2967 (b4_symbol_constructor_definition_): Instead of generating
2968 specializations of an overloaded template function, just generate
2969 several functions whose names are forged from the token names
2970 without the token.prefix.
2971 (b4_symbol_constructor_declarations): Generate them for all the
2972 symbols, not just by class of symbol type, now that instead of
2973 specializing a function template by the token, we generate a
2974 function named after the token.
2975 (b4_symbol_constructor_specialization_)
2976 (b4_symbol_constructor_specializations): Remove.
2977 * etc/bench.pl.in: Adjust to this new API.
2978
2979 2008-11-13 Akim Demaille <demaille@gostai.com>
2980
2981 %define token.prefix.
2982 Provide a means to add a prefix to the name of the tokens as
2983 output in the generated files. Because of name clashes, it is
2984 good to have such a prefix such as TOK_ that protects from names
2985 such as EOF, FILE etc. But it clutters the grammar itself.
2986
2987 * data/bison.m4 (token.prefix): Empty by default.
2988 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
2989 * data/lalr1.cc (b4_symbol): Ditto.
2990
2991 2008-11-13 Akim Demaille <demaille@gostai.com>
2992
2993 Compute at M4 time some of the subtractions.
2994 * data/lalr1.cc (b4_subtract): New.
2995 (b4_rhs_data): Use it.
2996
2997 2008-11-13 Akim Demaille <demaille@gostai.com>
2998
2999 symbol::token.
3000 This allows the user to get the type of a token returned by yylex.
3001
3002 * data/lalr1.cc (symbol::token): New.
3003 (yytoknum_): Define when %define lex_symbol, independently of
3004 %debug.
3005 (yytoken_number_): Move into...
3006 (symbol::token): here, since that's the only use.
3007 The other one is YYPRINT which was not officially supported
3008 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3009 array under a different name (yytoknum).
3010
3011 2008-11-13 Akim Demaille <demaille@gostai.com>
3012
3013 YYERRCODE.
3014 * TODO (YYERRCODE): Mention the case of $undef.
3015
3016 2008-11-13 Akim Demaille <demaille@gostai.com>
3017
3018 TODO: YYPRINT.
3019 * TODO (YYPRINT): New.
3020
3021 2008-11-13 Akim Demaille <demaille@gostai.com>
3022
3023 Comment changes.
3024 * data/lalr1.cc, data/yacc.c: Fix the description of the
3025 yytranslate and yytoknum tables.
3026
3027 2008-11-13 Akim Demaille <demaille@gostai.com>
3028
3029 Define make_symbol in the header.
3030 To reach good performances these functions should be inlined (yet
3031 this is to measure precisely). To this end they must be available
3032 to the caller.
3033
3034 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3035 location_type with the class name.
3036 Since will now be output in the header, declare "inline".
3037 No longer use b4_symbol_constructor_specializations, but
3038 b4_symbol_constructor_definitions in the header.
3039 Don't call it in the *.cc file.
3040
3041 2008-11-13 Akim Demaille <demaille@gostai.com>
3042
3043 Define yytranslate in the header for lex_symbol.
3044 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3045 into the header file when using %define lex_symbol.
3046 (yytranslate_): Declare inline.
3047
3048 2008-11-13 Akim Demaille <demaille@gostai.com>
3049
3050 Define the constructors of symbol_type in
3051 b4_symbol_constructor_definitions.
3052 The constructors are called by the make_symbol functions, which a
3053 forthcoming patch will move elsewhere. Hence the interest of
3054 putting them together.
3055
3056 The stack_symbol_type does not need to be moved, it is used only
3057 by the parser.
3058
3059 * data/lalr1.cc: Move symbol_type and symbol_base_type
3060 constructors into...
3061 (b4_symbol_constructor_definitions): here.
3062 Adjust.
3063
3064 2008-11-13 Akim Demaille <demaille@gostai.com>
3065
3066 Make it easier to move the definition of yytranslate_.
3067 Forthcoming changes will make it possible to use yytranslate_
3068 from outside the parser implementation file.
3069
3070 * data/lalr1.cc (b4_yytranslate_definition): New.
3071 Use it.
3072
3073 2008-11-13 Akim Demaille <demaille@gostai.com>
3074
3075 Remove useless class specification.
3076 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3077 to refer to the class name to use a type defined by the class for
3078 arguments of member functions.
3079
3080 2008-11-13 Akim Demaille <demaille@gostai.com>
3081
3082 Finer input type for yytranslate.
3083 This patch is debatable: the tradition expects yylex to return an int
3084 which happens to correspond to token_number (which is an enum). This
3085 allows for instance to return characters (such as '*' etc.). But this
3086 goes against the stronger typing I am trying to have with the new
3087 lex interface which return a symbol_type. So in this case, feed
3088 yytranslate_ with a token_type.
3089
3090 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3091 expect a token_type.
3092
3093 2008-11-13 Akim Demaille <demaille@gostai.com>
3094
3095 Honor lex-params in %define lex_symbol mode.
3096 * data/lalr1.cc: Use b4_lex_param.
3097
3098 2008-11-13 Akim Demaille <demaille@gostai.com>
3099
3100 Simplify names.
3101 * src/output.c (symbol_definitions_output): Rename symbol
3102 attributes type_name and has_type_name as type and has_type.
3103 * data/lalr1.cc: Adjust uses.
3104
3105 2008-11-13 Akim Demaille <demaille@gostai.com>
3106
3107 Use b4_type_names for the union type.
3108 The union used to compute the size of the variant used to iterate
3109 over the type of all the symbols, with a lot of redundancy. Now
3110 iterate over the lists of symbols having the same type-name.
3111
3112 * data/lalr1.cc (b4_char_sizeof_): New.
3113 (b4_char_sizeof): Use it.
3114 Adjust to be called with a list of numbers instead of a single
3115 number.
3116 Adjust its caller for new-line issues.
3117
3118 2008-11-13 Akim Demaille <demaille@gostai.com>
3119
3120 Define the "identifier" of a symbol.
3121 Symbols may have several string representations, for instance if
3122 they have an alias. What I call its "id" is a string that can be
3123 used as an identifier. May not exist.
3124
3125 Currently the symbols which have the "tag_is_id" flag set are
3126 those that don't have an alias. Look harder for the id.
3127
3128 * src/output.c (is_identifier): Move to...
3129 * src/symtab.c (is_identifier): here.
3130 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3131 * src/output.c (symbol_definitions_output): Use it to define "id"
3132 and "has_id".
3133 Remove the definition of "tag_is_id".
3134 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3135 "tag_is_id" were used to produce code.
3136 We still use "tag" for documentation.
3137
3138 2008-11-11 Akim Demaille <demaille@gostai.com>
3139
3140 Locations are no longer required by lalr1.cc.
3141 * data/lalr1.cc (_b4_args, b4_args): New.
3142 Adjust all uses of locations to make them optional.
3143 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3144 (AT_CHECK_NAMESPACE): Check the use of locations.
3145 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3146 without locations with lalr1.cc.
3147 Test these cases.
3148 * tests/output.at: Check lalr1.cc with and without location
3149 support.
3150 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3151 Don't use locations.
3152
3153 2008-11-11 Akim Demaille <demaille@gostai.com>
3154
3155 AT_FULL_COMPILE.
3156 * tests/local.at (AT_FULL_COMPILE): New.
3157 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3158
3159 2008-11-11 Akim Demaille <demaille@gostai.com>
3160
3161 Support parens in calc++.
3162 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3163 * examples/calc++/test (run): Check the expected output.
3164 Adjust callers.
3165 Check parens too.
3166
3167 2008-11-11 Akim Demaille <demaille@gostai.com>
3168
3169 Simplify lalr1.cc since %defines is mandatory.
3170 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3171
3172 2008-11-11 Akim Demaille <demaille@gostai.com>
3173
3174 TODO: yyfmt.
3175 * TODO (yysyntax_error): New item.
3176
3177 2008-11-11 Akim Demaille <demaille@gostai.com>
3178
3179 Prefer M4 to CPP.
3180 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3181 YYERROR_VERBOSE.
3182
3183 2008-11-11 Akim Demaille <demaille@gostai.com>
3184
3185 Support i18n of the parse error messages.
3186 * TODO (lalr1.cc/I18n): Remove.
3187 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3188 error messages, as done in yacc.c.
3189 Stay within the yy* pseudo namespace.
3190
3191 2008-11-11 Akim Demaille <demaille@gostai.com>
3192
3193 More TODO.
3194 * TODO (single stack, yysyntax_error): New.
3195
3196 2008-11-11 Akim Demaille <demaille@gostai.com>
3197
3198 Make it possible to return a symbol_type from yylex.
3199 * data/lalr1.cc (b4_lex_symbol_if): New.
3200 (parse): When lex_symbol is defined, expected yylex to return the
3201 complete lookahead.
3202 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3203 yylex interface.
3204 (bench_variant_parser): Exercise it.
3205
3206 2008-11-11 Akim Demaille <demaille@gostai.com>
3207
3208 Remove useless bench case.
3209 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3210 no longer used.
3211
3212 2008-11-11 Akim Demaille <demaille@gostai.com>
3213
3214 Improve display of directives.
3215 * etc/bench.pl.in (parse_term): Don't add useless eol.
3216
3217 2008-11-11 Akim Demaille <demaille@gostai.com>
3218
3219 Use string_cast in the bench.
3220 * etc/bench.pl.in (generate_grammar_list): Define and use
3221 string_cast.
3222
3223 2008-11-11 Akim Demaille <demaille@gostai.com>
3224
3225 Replace yychar with a Boolean.
3226 * data/lalr1.cc (parse::yychar): Replace by...
3227 (parse::yyempty): this.
3228
3229 2008-11-11 Akim Demaille <demaille@gostai.com>
3230
3231 Factor the tables.
3232 * TODO: New item.
3233
3234 2008-11-11 Akim Demaille <demaille@gostai.com>
3235
3236 Let yytranslate handle the eof case.
3237 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3238 Adjust callers.
3239 No longer expect yychar to be equal to yyeof_, rather, test the
3240 lookahead's (translated) kind.
3241
3242 2008-11-11 Akim Demaille <demaille@gostai.com>
3243
3244 yychar cannot be empty in yyerrlab.
3245 * TODO (yychar == yyempty_): New.
3246 * data/lalr1.cc: Remove the handling of this case.
3247 This eases forthcoming changes related to yychar and yytranslate.
3248
3249 2008-11-11 Akim Demaille <demaille@gostai.com>
3250
3251 Bench: syntactic sugar for %define/#define.
3252 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3253 (&bench_push_parser, bench_variant_parser): Use this feature.
3254 (&eat): New.
3255 Use it.
3256
3257 2008-11-11 Akim Demaille <demaille@gostai.com>
3258
3259 Less memory pressure on the "list" bench.
3260 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3261 the values, to limit memory pressure.
3262
3263 2008-11-11 Akim Demaille <demaille@gostai.com>
3264
3265 Introduce make_symbol.
3266 make_symbol provides a means to construct a full symbol (kind,
3267 value, location) in a single shot. It is meant to be a Symbol
3268 constructor, parameterized by the symbol kind so that overloading
3269 would prevent incorrect kind/value pairs. Unfortunately
3270 parameterized constructors do not work well in C++ (unless the
3271 parameter also appears as an argument, which is not acceptable),
3272 hence the use of a function instead of a constructor.
3273
3274 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3275 (b4_symbol_constructor_declarations)
3276 (b4_symbol_constructor_specialization_)
3277 (b4_symbol_constructor_specializations)
3278 (b4_symbol_constructor_definition_)
3279 (b4_symbol_constructor_definitions): New.
3280 Use them where appropriate to generate declaration, declaration of
3281 the specializations, and implementations of the templated
3282 overloaded function "make_symbol".
3283 (variant::variant): Always define a default ctor.
3284 Also provide a copy ctor.
3285 (symbol_base_type, symbol_type): New ctor overloads for value-less
3286 symbols.
3287 (symbol_type): Now public, so that functions such as yylex can use
3288 it.
3289
3290 2008-11-11 Akim Demaille <demaille@gostai.com>
3291
3292 Inform m4 whether a tag is a valid id.
3293 * src/output.c (is_identifier): New.
3294 (symbol_definitions_output): Use it to define tag_is_id.
3295 But maybe this should be done at m4 level?
3296
3297 2008-11-11 Akim Demaille <demaille@gostai.com>
3298
3299 Test 214 was failing: it greps with a pattern containing [ ]*
3300 which obviously meant to catch spaces and tabs, but contained only
3301 spaces. Tabulations in sources are a nuisance, so to simplify the
3302 matter, get rid of all the tabulations in the Java sources. The
3303 other skeletons will be treated equally later.
3304
3305 * data/java.m4, data/lalr1.java: Untabify.
3306 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3307 tabulations are no longer generated.
3308
3309 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
3310
3311 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3312 * configure.ac: Adjust usage.
3313 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3314 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3315 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3316
3317 2008-11-10 Di-an Jan <dianj@freeshell.org>
3318
3319 Workaround Java's ``code too large'' problem for parser tables
3320 in most cases, by using one function per initialization.
3321 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3322 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3323 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3324 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3325 (yytname_): Use b4_typed_parser_table.
3326 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3327 ``code too large'' error.
3328
3329 2008-11-10 Di-an Jan <dianj@freeshell.org>
3330
3331 * NEWS: Document them.
3332
3333 General Java skeleton improvements.
3334 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3335 using gcj < 4.3 in the testsuite, according to comments in
3336 gnulib/m4/javacomp.m4.
3337 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3338 location_type, position_type): Remove extraneous brackets from
3339 b4_percent_define_default.
3340 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3341 m4_define and m4_define_default.
3342 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3343 which marks the end of user code with appropriate syncline, like all
3344 the other skeletons.
3345 (b4_user_post_prologue): Add. Don't silently drop.
3346 (yylex): Remove.
3347 (parse): Inline yylex.
3348 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3349 (%{...%}): Fix typo of %code imports.
3350 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3351
3352 Support annotations on parser class with %define annotations.
3353 * data/lalr1.java (annotations): Add to parser class modifier.
3354 * doc/bison.texinfo (Java Parser Interface): Document
3355 %define annotations.
3356 (Java Declarations Summary): Document %define annotations.
3357 * tests/java.at (Java parser class modifiers): Test annotations.
3358
3359 Do not generate code for %error-verbose unless requested.
3360 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3361 Make private. Make conditional on %error-verbose.
3362 (getErrorVerbose, setErrorVerbose): New.
3363 (yytnamerr_): Make conditional on %error-verbose.
3364 (yysyntax_error): Make some code conditional on %error-verbose.
3365 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3366 about %error-verbose having no effect.
3367 (getErrorVerbose, setErrorVerbose): Document.
3368
3369 Move constants for token names to Lexer interface.
3370 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3371 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3372 (parse): Qualify EOF to Lexer.EOF.
3373 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3374 EOF and token names to Java Lexer Interface.
3375 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3376
3377 Make yyerror public.
3378 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3379 (yyerror): Change to public. Add Javadoc comments. Use longer
3380 parameter names. Make the body rather than the declarator
3381 conditional on %locations.
3382 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3383
3384 Allow user to add code to the constructor with %code init.
3385 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3386 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3387 Add %code init to the front of the constructor body.
3388 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3389 and %define init_throws.
3390 (Java Declarations Summary): Document %code init and
3391 %define init_throws.
3392 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3393 (Java constructor init and init_throws): Add tests.
3394
3395 2008-11-10 Akim Demaille <demaille@gostai.com>
3396
3397 Update TODO.
3398 * TODO (-D): is implemented.
3399 (associativity): Same precedence must have the same associativity.
3400 For instance, how can a * b / c be parsed if * is %left and / is
3401 %right?
3402 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3403
3404 2008-11-10 Akim Demaille <demaille@gostai.com>
3405
3406 Formatting changes.
3407
3408 2008-11-10 Akim Demaille <demaille@gostai.com>
3409
3410 More information about the symbols.
3411 * src/output.c (type_names_output): Document all the symbols,
3412 including those that don't have a type-name.
3413 (symbol_definitions_output): Define "is_token" and
3414 "has_type_name".
3415 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3416 type-name, now that they are defined too in b4_type_names.
3417
3418 2008-11-10 Akim Demaille <demaille@gostai.com>
3419
3420 Regen.
3421
3422 2008-11-10 Akim Demaille <demaille@gostai.com>
3423
3424 Make parser::yytranslate static.
3425 Small speedup (1%) on the list grammar. And makes yytranslate_
3426 available in non member functions.
3427
3428 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3429 function.
3430
3431 2008-11-10 Akim Demaille <demaille@gostai.com>
3432
3433 Avoid trailing spaces.
3434 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3435 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3436 they can be empty, and anyway this incorrectly indents the first
3437 action.
3438
3439 2008-11-10 Akim Demaille <demaille@gostai.com>
3440
3441 Comment changes.
3442
3443 2008-11-10 Akim Demaille <demaille@gostai.com>
3444
3445 Use "enum" for integral constants.
3446 This is just nicer to read, I observed no speedup.
3447
3448 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3449 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3450 (yyuser_token_number_max_, yyundef_token_): Move into...
3451 (yytranslate_): here.
3452
3453 2008-11-10 Akim Demaille <demaille@gostai.com>
3454
3455 Shortcuts in bench directives.
3456 * etc/bench.pl.in (parse_dirs): New.
3457 Use it.
3458 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3459 Create the benches in "benches/".
3460
3461 2008-11-10 Akim Demaille <demaille@gostai.com>
3462
3463 Formatting changes.
3464 * data/lalr1.cc: here.
3465
3466 2008-11-10 Akim Demaille <demaille@gostai.com>
3467
3468 Adjust verbose message to using emacs.
3469 * etc/bench.pl.in: Inform compilation-mode when we change the
3470 directory.
3471 (generate_grammar_list): Recognize %define "variant" in addition
3472 to %define variant.
3473
3474 2008-11-10 Akim Demaille <demaille@gostai.com>
3475
3476 Classify symbols by type-name.
3477 * src/uniqstr.h (UNIQSTR_CMP): New.
3478 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3479 (type_names_output): New.
3480 (muscles_output): Use it.
3481 * data/lalr1.cc (b4_symbol_action_): Remove.
3482 (b4_symbol_case_, b4_type_action_): New.
3483 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3484
3485 2008-11-10 Akim Demaille <demaille@gostai.com>
3486
3487 Change the handling of the symbols in the skeletons.
3488 Before we were using tables which lines were the symbols and which
3489 columns were things like number, tag, type-name etc. It is was
3490 difficult to extend: each time a column was added, all the numbers had
3491 to be updated (you asked for colon $2, not for "tag"). Also, it was
3492 hard to filter these tables when only a subset of the symbols (say the
3493 tokens, or the nterms, or the tokens that have and external number
3494 *and* a type-name) was of interest.
3495
3496 Now instead of monolithic tables, we define one macro per cell. For
3497 instance "b4_symbol(0, tag)" is a macro name which contents is
3498 self-decriptive. The macro "b4_symbol" provides easier access to
3499 these cells.
3500
3501 * src/output.c (type_names_output): Remove.
3502 (symbol_numbers_output, symbol_definitions_output): New.
3503 (muscles_output): Call them.
3504 (prepare_symbols): Define b4_symbols_number.
3505
3506 2008-11-10 Akim Demaille <demaille@gostai.com>
3507
3508 --trace=muscles
3509 * src/getargs.h, src/getargs.c (trace_muscle): New.
3510 (trace_types, trace_args): Support it.
3511 * src/output.c (output_skeleton): Use it.
3512
3513 2008-11-10 Akim Demaille <demaille@gostai.com>
3514
3515 muscles_output.
3516 * src/output.c (muscles_output): New, extracted from...
3517 (output_skeleton): here.
3518 Adjust.
3519
3520 2008-11-10 Akim Demaille <demaille@gostai.com>
3521
3522 Formatting changes.
3523
3524 2008-11-10 Akim Demaille <demaille@gostai.com>
3525
3526 Update the variant example.
3527 * examples/variant.yy: Formatting changes.
3528 One stage build.
3529
3530 2008-11-10 Akim Demaille <demaille@gostai.com>
3531
3532 Support constructor with an argument.
3533 This improves the "list" bench by 2%.
3534
3535 * data/lalr1.cc (variant::build): Add an overloaded version with
3536 an argument.
3537 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3538
3539 2008-11-10 Akim Demaille <demaille@gostai.com>
3540
3541 Test variants.
3542 * tests/c++.at (AT_CHECK_VARIANTS): New.
3543 Use it with and without %define assert.
3544
3545 2008-11-10 Akim Demaille <demaille@gostai.com>
3546
3547 Add %precedence support.
3548 Unfortunately it is not possible to reuse the %prec directive. This
3549 is because to please POSIX, we do not require to end the rules with a
3550 semicolon. As a result,
3551
3552 foo: bar %prec baz
3553
3554 is ambiguous: either a rule which precedence is that of baz, or a rule,
3555 and then a declaration of the precedence of the token baz.
3556
3557 * doc/bison.texinfo: Document %precedence.
3558 (Precedence Only): New.
3559 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3560 * src/conflicts.c (resolve_sr_conflict): Support it.
3561 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3562 Parse it.
3563 * tests/calc.at: Use %precedence for NEG.
3564 * tests/conflicts.at (%precedence does not suffice)
3565 (%precedence suffices): New tests.
3566
3567 2008-11-09 Akim Demaille <demaille@gostai.com>
3568
3569 Make benches in a sub dirs.
3570 * etc/bench.pl.in ($dir): New.
3571 Use it.
3572 Check the use of constructors with an argument.
3573 (bench_variant_parser): Fix.
3574
3575 2008-11-09 Akim Demaille <demaille@gostai.com>
3576
3577 fix eof condition
3578
3579 2008-11-09 Akim Demaille <demaille@gostai.com>
3580
3581 Fix --help.
3582
3583 2008-11-09 Akim Demaille <demaille@gostai.com>
3584
3585 Require the generation of parse-gram.output.
3586 * src/Makefile.am (YACC): Pass --report=all.
3587
3588 2008-11-09 Akim Demaille <demaille@gostai.com>
3589
3590 Formatting changes.
3591
3592 2008-11-09 Akim Demaille <demaille@gostai.com>
3593
3594 Update TODO.
3595 * TODO: Remove obsolete items.
3596 Update others.
3597
3598 2008-11-09 Akim Demaille <demaille@gostai.com>
3599
3600 Enhance bench.pl.
3601 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3602 (@token, $grammar, $bench): New.
3603 (generate_grammar_variant): Rename as...
3604 (generate_grammar_list): this.
3605 (generate_grammar): Adjust.
3606 (bench_grammar): Rename as...
3607 (bench): this.
3608 Use it in the various bench-marking routines.
3609 (-b, -g): New options.
3610
3611 2008-11-09 Akim Demaille <demaille@gostai.com>
3612
3613 Use a static hierarchy for symbols in the C++ parser.
3614 * data/lalr1.cc (symbol_base_type, symbol_type)
3615 (stack_symbol_type): Make it a static hierarchy.
3616 Adjust dependencies.
3617
3618 2008-11-09 Akim Demaille <demaille@gostai.com>
3619
3620 bench.pl -d, --directive.
3621 * etc/bench.pl.in (@directive): New.
3622 (&bench_grammar): Use it.
3623 (&bench_list_grammar): New, to provide access to the "variant"
3624 grammar.
3625 Use it.
3626 (getopts): Support -d, --directive.
3627
3628 2008-11-09 Akim Demaille <demaille@gostai.com>
3629
3630 Use inline for small operations.
3631 * data/lalr1.cc (symbol_base_type, symbol_type)
3632 (stack_symbol_type): Declare constructor and other operations as
3633 inline.
3634 (yy_destroy_): Inline.
3635
3636 2008-11-09 Akim Demaille <demaille@gostai.com>
3637
3638 Introduce a hierarchy for symbols.
3639 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3640 (data_type): Rename as...
3641 (stack_symbol_type): this.
3642 Derive from symbol_base_type.
3643 (yy_symbol_value_print_): Merge into...
3644 (yy_symbol_print_): this.
3645 Rename as...
3646 (yy_print_): this.
3647 (yydestruct_): Rename as...
3648 (yy_destroy_): this.
3649 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3650 (parser::parse): yyla is now of symbol_type.
3651 Use its type member instead of yytoken.
3652
3653 2008-11-09 Akim Demaille <demaille@gostai.com>
3654
3655 Rename data_type and stack_symbol_type.
3656 * data/lalr1.cc (data_type): Rename as...
3657 (stack_symbol_type): this.
3658
3659 2008-11-09 Akim Demaille <demaille@gostai.com>
3660
3661 Handle semantic value and location together.
3662 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3663 yydata.value and yydata.location.
3664 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3665 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3666 single arg.
3667 Adjust all callers.
3668 (yydestruct_): New overload for a stack symbol.
3669
3670 2008-11-09 Akim Demaille <demaille@gostai.com>
3671
3672 Push a complete symbol, not connected parts.
3673 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3674 state, value and location.
3675 Adjust callers.
3676
3677 2008-11-09 Akim Demaille <demaille@gostai.com>
3678
3679 Agregate yylval and yylloc.
3680 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3681 (parser::yyla): this.
3682
3683 2008-11-09 Akim Demaille <demaille@gostai.com>
3684
3685 Rely on the state stack to display reduction traces.
3686 To display rhs symbols before a reduction, we used information
3687 about the rule reduced, which required the tables yyrhs and
3688 yyprhs. Now use rely only on the state stack to get the same
3689 information.
3690
3691 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3692 Use them.
3693 (parser::yyrhs_, parser::yyprhs_): Remove.
3694 (parser::yy_reduce_print_): Use the state stack.
3695
3696 2008-11-09 Akim Demaille <demaille@gostai.com>
3697
3698 Fuse yyval and yyloc into yylhs.
3699 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3700 yylhs.
3701 (parse): Replace yyval and yyloc with yylhs.value and
3702 yylhs.location.
3703 After a user action, compute yylhs.state earlier.
3704 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3705 fresh error_token.
3706
3707 2008-11-09 Di-an Jan <dianj@freeshell.org>
3708
3709 Remove unused variable.
3710 * src/output.c (type_names_output): Remove unused variable sep.
3711
3712 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
3713
3714 Change tests/output.at quoting.
3715 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3716 expanding arguments.
3717
3718 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3719
3720 Don't add a semicolon to actions for %skeleton or %language.
3721 It breaks Java test cases as reported by Akim Demaille.
3722 * src/scan-code.l: Implement.
3723
3724 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3725
3726 Clean up %skeleton and %language priority implementation.
3727 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3728 remove static qualifier because others will soon need to see it.
3729 (language_prio): Likewise.
3730 (getargs): Use command_line_prio rather than 0.
3731 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3732 enum fields.
3733 (skeleton_prio): Extern it.
3734 (language_prio): Extern it.
3735 * src/parse-gram.y: Use grammar_prio rather than 1.
3736
3737 2008-11-07 Akim Demaille <demaille@gostai.com>
3738
3739 Moving push traces into yypush_.
3740 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3741 Adjust all uses.
3742
3743 2008-11-07 Akim Demaille <demaille@gostai.com>
3744
3745 The single-stack C++ parser is now the standard one.
3746 * data/lalr1.cc: Rename as...
3747 * data/lalr1-split.cc: this.
3748 * data/lalr1-fusion.cc: Rename as...
3749 * data/lalr1.cc: this.
3750 * etc/bench.pl.in: Adjust.
3751
3752 2008-11-07 Akim Demaille <demaille@gostai.com>
3753
3754 Avoid empty-if warnings.
3755 Reported by Quentin Hocquet.
3756
3757 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3758 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3759
3760 2008-11-07 Akim Demaille <demaille@gostai.com>
3761
3762 Pass command line location to skeleton_arg and language_argmatch.
3763 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3764 The location argument is now mandatory.
3765 Adjust all dependencies.
3766 (getargs): Use command_line_location.
3767
3768 2008-11-07 Akim Demaille <demaille@gostai.com>
3769
3770 -D, --define.
3771 * src/getargs.c (usage): Document -D.
3772 Fix help string for --locations.
3773 (command_line_location): New.
3774 (short_options, long_options, getargs): Support -D, --define.
3775 (getargs): Move -d support at the right place.
3776 * doc/bison.texinfo (Bison Options): Update.
3777 * tests/input.at (%define, --define): New.
3778
3779 2008-11-07 Akim Demaille <demaille@gostai.com>
3780
3781 Initialize the muscle table before parsing the command line.
3782 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3783 (getargs): Define file_name.
3784 * src/main.c (main): Initialize muscle_tab before calling
3785 getargs.
3786 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3787 its value is not available yet.
3788
3789 2008-11-07 Akim Demaille <demaille@gostai.com>
3790
3791 Locations without columns for command line arguments.
3792 * src/location.c (location_print): Don't display negative columns.
3793 * src/location.h: Document this.
3794
3795 2008-11-07 Akim Demaille <demaille@gostai.com>
3796
3797 Fix --help.
3798 * src/getargs.c (usage): Fix help string for -W.
3799
3800 2008-11-07 Akim Demaille <demaille@gostai.com>
3801
3802 Handle more general types of option arguments.
3803 * build-aux/cross-options.pl: The argument ends at the first
3804 space, not the first non-symbol character.
3805 Use @var for each word appearing the argument description.
3806
3807 2008-11-07 Akim Demaille <demaille@gostai.com>
3808
3809 Destroy the variants that remain on the stack in case of error.
3810 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3811 destructor.
3812 Display the value only if yymsg is nonnull.
3813 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3814
3815 2008-11-07 Akim Demaille <demaille@gostai.com>
3816
3817 Add "%define assert" to variants.
3818 This is used to help the user catch cases where some value gets
3819 ovewritten by a new one. This should not happen, as this will
3820 probably leak.
3821
3822 Unfortunately this uncovered a bug in the C++ parser itself: the
3823 lookahead value was not destroyed between two calls to yylex. For
3824 instance if the previous lookahead was a std::string, and then an int,
3825 then the value of the std::string was correctly taken (i.e., the
3826 lookahead was now an empty string), but std::string structure itself
3827 was not reclaimed.
3828
3829 This is now done in variant::build(other&) (which is used to take the
3830 value of the lookahead): other is not only stolen from its value, it
3831 is also destroyed. This incurs a new performance penalty of a few
3832 percent, and union becomes faster again.
3833
3834 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3835 (b4_variant_if): New.
3836 (variant::built): New.
3837 Use it whereever the status of the variant changes.
3838 * etc/bench.pl.in: Check the penalty of %define assert.
3839
3840 2008-11-07 Akim Demaille <demaille@gostai.com>
3841
3842 Use "%define variant" in bench.pl.
3843 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3844 just use %define variants.
3845
3846 2008-11-07 Akim Demaille <demaille@gostai.com>
3847
3848 Regen.
3849 * src/parse-gram.h, src/parse-gram.c: Regen.
3850
3851 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3852
3853 Fix user actions without a trailing semicolon.
3854 Reported by Sergei Steshenko at
3855 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3856 * THANKS (Sergei Steshenko): Add.
3857 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3858 * tests/regression.at (Fix user actions without a trailing semicolon):
3859 New test case.
3860
3861 2008-11-04 Akim Demaille <demaille@gostai.com>
3862
3863 Use b4_copyright_years.
3864 * data/yacc.c (b4_copyright_years): New.
3865 Fix its value according to the comments in the file.
3866 Use it and undefine it.
3867
3868 2008-11-04 Akim Demaille <demaille@gostai.com>
3869
3870 Formatting changes.
3871 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3872
3873 2008-11-04 Akim Demaille <demaille@gostai.com>
3874
3875 Formatting changes.
3876 * data/lalr1-fusion.cc: here.
3877
3878 2008-11-04 Akim Demaille <demaille@gostai.com>
3879
3880 Use strict on bench.pl.
3881 * etc/bench.pl.in (&run, &generate_grammar): New.
3882 Rename the grammar generating functions for consistency.
3883 Change the interface so that the list of benches to run is passed
3884 as (optionless) arguments.
3885 (&compile): Use &run.
3886
3887 2008-11-04 Akim Demaille <demaille@gostai.com>
3888
3889 Remove spurious initial empty lines.
3890 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3891 * data/yacc.c: End the @output lines with an @.
3892
3893 2008-11-04 Akim Demaille <demaille@gostai.com>
3894
3895 Improve the display of sizes.
3896 * etc/bench.p.in: Higher precision.
3897 Sort by decreasing size.
3898
3899 2008-11-04 Akim Demaille <demaille@gostai.com>
3900
3901 Don't memcpy C++ structures.
3902 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3903 arguments.
3904 (variant::build): New overload for
3905 copy-construction-that-destroys.
3906 (variant::swap): New.
3907 (parser::yypush_): Use it in variant mode.
3908
3909 2008-11-04 Akim Demaille <demaille@gostai.com>
3910
3911 Better defaults for bench.pl.
3912 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
3913 default values.
3914 Adjust &verbose uses.
3915 (-q, --quiet): New.
3916
3917 2008-11-04 Akim Demaille <demaille@gostai.com>
3918
3919 Make variant.yy more complex.
3920 std::list cannot be copied via memcpy, they are more demanding than
3921 std::string. Use one std::list to strengthen the test.
3922
3923 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
3924 Adjust.
3925 Create a list of strings, instead of a single large string.
3926
3927 2008-11-04 Akim Demaille <demaille@gostai.com>
3928
3929 bench.pl --bench.
3930 * etc/bench.pl.in (--bench, $bench): New.
3931
3932 2008-11-04 Akim Demaille <demaille@gostai.com>
3933
3934 Sort methods.
3935 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
3936 Define it after as().
3937
3938 2008-11-04 Akim Demaille <demaille@gostai.com>
3939
3940 Useless parens.
3941 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
3942
3943 2008-11-04 Akim Demaille <demaille@gostai.com>
3944
3945 Issue missing synclines after user actions.
3946 * data/c.m4 (b4_case): Issue synclines on the output file.
3947
3948 2008-11-04 Akim Demaille <demaille@gostai.com>
3949
3950 Remove trailing empty line.
3951 * data/lalr1-fusion.cc: Don't add an empty line after the user's
3952 epilogue.
3953
3954 2008-11-04 Akim Demaille <demaille@gostai.com>
3955
3956 Fix output of copyright years.
3957 * data/bison.m4 (b4_copyright): Fix the indentation of the
3958 copyright year paragraph.
3959 Use b4_copyright_years when no years are given.
3960 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
3961 (b4_copyright_years): New.
3962 Use it.
3963
3964 2008-11-04 Akim Demaille <demaille@gostai.com>
3965
3966 Avoid the spurious initial empty line.
3967 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
3968 the end of @output request to suppress the empty line that
3969 results.
3970
3971 2008-11-04 Akim Demaille <demaille@gostai.com>
3972
3973 Remove parser::rhs_number_type.
3974 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
3975 (yyrhs_): Use b4_table_define.
3976
3977 2008-11-04 Akim Demaille <demaille@gostai.com>
3978
3979 Fix iteration type.
3980 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
3981
3982 2008-11-04 Akim Demaille <demaille@gostai.com>
3983
3984 Factor the declaration of the integer tables.
3985 * data/lalr1-fusion.cc (b4_table_define): New.
3986 Use it.
3987
3988 2008-11-03 Akim Demaille <demaille@gostai.com>
3989
3990 Fix indentation of tables in lalr1.cc
3991 * data/lalr1-fusion.cc: Fix the indentation.
3992
3993 2008-11-03 Akim Demaille <demaille@gostai.com>
3994
3995 Destroy the lhs symbols after reduction.
3996 * data/lalr1-fusion.cc (parse): After the user action, when in
3997 variant mode, destroy the lhs symbols.
3998
3999 2008-11-03 Akim Demaille <demaille@gostai.com>
4000
4001 Simplify yysyntax_error_ use.
4002 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4003 type, but make it unnamed in the declaration when it is not used.
4004
4005 2008-11-03 Akim Demaille <demaille@gostai.com>
4006
4007 Let yy::variant::build return an lvalue.
4008 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4009 object.
4010
4011 2008-11-03 Akim Demaille <demaille@gostai.com>
4012
4013 Define yy::variant only when needed.
4014 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4015 used.
4016
4017 2008-11-03 Akim Demaille <demaille@gostai.com>
4018
4019 Bench the three-stack lalr1.cc.
4020 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4021 one-stack one.
4022
4023 2008-11-03 Akim Demaille <demaille@gostai.com>
4024
4025 Fail on parse error in calc++.
4026 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4027 status.
4028 * examples/calc++/test ($me, $number, $exit, run): New.
4029 Use them to propagate errors to the exit status.
4030
4031 2008-11-03 Akim Demaille <demaille@gostai.com>
4032
4033 Don't specify the skeleton twice in the example.
4034 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4035 file does what is needed.
4036
4037 2008-11-03 Akim Demaille <demaille@gostai.com>
4038
4039 bench: Improve output.
4040 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4041
4042 2008-11-03 Akim Demaille <demaille@gostai.com>
4043
4044 bench: check impact of %debug on variants.
4045 * etc/bench.pl.in (variant_grammar): Fix the computation of
4046 $variant.
4047 Generate a grammar file that can work with or without %debug.
4048 Do use the @directive.
4049 (bench_variant_parser): Check impact of %debug.
4050 (@directives): Rename all the occurrences to...
4051 (@directive): this, for consistency.
4052
4053 2008-11-03 Akim Demaille <demaille@gostai.com>
4054
4055 bench: report the size too.
4056 * etc/bench.pl.in ($iterations): Defaults to -3.
4057 (&bench_grammar): Require hireswallclock.
4058 Compute and display the size of the result.
4059 More comments.
4060
4061 2008-11-03 Akim Demaille <demaille@gostai.com>
4062
4063 bench: More use of the verbosity level.
4064 * etc/bench.pl.in ($verbose, &verbose): New.
4065 Use them.
4066 More POD documentation.
4067
4068 2008-11-03 Akim Demaille <demaille@gostai.com>
4069
4070 bench.pl: a command line interface
4071 * etc/bench.pl.in: More doc.
4072 Some fixes in the documentation.
4073 ($cflags, $iterations, &help, &getopt): New.
4074 Use them.
4075 (&variant_grammar): Let the number of stages be 10 times what is
4076 specified.
4077
4078 2008-11-03 Akim Demaille <demaille@gostai.com>
4079
4080 Bench the use of Boost.Variants.
4081 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4082 New.
4083 (&compile): Be ready to compile C++ parsers.
4084 (&bench_push_parser): Move debug information to the outermost
4085 level.
4086 * THANKS: Add Michiel De Wilde.
4087
4088 2008-11-03 Akim Demaille <demaille@gostai.com>
4089
4090 bench.pl: Pass directives as a list instead of as a string.
4091 * etc/bench.pl.in (&directives): New.
4092 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4093 directives.
4094 (&triangular_grammar): Do use the directives (were ignored).
4095 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4096 directives.
4097
4098 2008-11-03 Akim Demaille <demaille@gostai.com>
4099
4100 Improve genericity of bench.pl.
4101 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4102 argument.
4103 (&bench_push_parser): New.
4104 Call it.
4105
4106 2008-11-03 Akim Demaille <demaille@gostai.com>
4107
4108 Add documentation to bench.pl.
4109 * etc/bench.pl.in: Comment changes.
4110
4111 2008-11-03 Akim Demaille <demaille@gostai.com>
4112
4113 Fuse the three stacks into a single one.
4114
4115 In order to make it easy to perform benchmarks to ensure that
4116 there are no performance loss, lalr1.cc is forked into
4117 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4118 lalr1.cc.
4119
4120 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4121 exercized by the test suite, the user must install a symbolic link
4122 from lalr1.cc to it.
4123
4124 Instead of having three stacks (state, value, location), use a
4125 stack of triples. This considerably simplifies the code (and it
4126 will be easier not to require locations as currently does the C++
4127 parser), and also gives a 10% speedup according to
4128 etc/bench (probably mainly since memory allocation is done once
4129 instead of three times).
4130
4131 Another motivation is to make it easier to destruct properly
4132 semantic values: now that they are bound to their state (hence
4133 symbol type) it will be easier to call the appropriate destructor.
4134
4135 These changes should probably benefit the C parser too.
4136
4137 * data/lalr1.cc: Copy as...
4138 * data/lalr1-fusion.cc: this new file.
4139 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4140 from c++.m4.
4141 (state_stack_type, semantic_stack_type, location_stack_type)
4142 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4143 (data_type, stack_type, yystack_): New.
4144 (YYLLOC_DEFAULT, yypush_): Adjust.
4145 (yyerror_range): Now based on data_type, not location_type.
4146
4147 2008-11-03 Akim Demaille <demaille@gostai.com>
4148
4149 Push the state, value, and location at the same time.
4150 This is needed to prepare a forthcoming patch that fuses the three
4151 stacks into one.
4152
4153 * data/lalr1.cc (parser::yypush_): New.
4154 (parser::yynewstate): Change the semantics: instead of arriving to
4155 this label when value and location have been pushed, but yystate
4156 is to be pushed on the state stack, now the three of them must
4157 have been pushed before. yystate still must be the new state.
4158 This allows to use yypush_ everywhere instead of individual
4159 handling of the stacks.
4160
4161 2008-11-03 Akim Demaille <demaille@gostai.com>
4162
4163 Prefer references to pointers.
4164 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4165 definition to use references instead of pointers.
4166 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4167 Take the value and location as references.
4168 Adjust callers.
4169
4170 2008-11-03 Akim Demaille <demaille@gostai.com>
4171
4172 stack::size instead of stack::height.
4173 * data/lalr1.cc (stack::height): Rename as...
4174 (stack::size): this.
4175 Fix the output type.
4176 Comment changes.
4177
4178 2008-11-03 Akim Demaille <demaille@gostai.com>
4179
4180 Use variants to support objects as semantic values.
4181 This patch was inspired by work by Michiel De Wilde. But he used
4182 Boost variants which (i) requires Boost on the user side, (ii) is
4183 slow, and (iii) has useless overhead (the parser knows the type of
4184 the semantic value there is no reason to duplicate this
4185 information as Boost.Variants do).
4186
4187 This implementation reserves a buffer large enough to store the
4188 largest objects. yy::variant implements this buffer. It was
4189 implemented with Quentin Hocquet.
4190
4191 * src/output.c (type_names_output): New.
4192 (output_skeleton): Invoke it.
4193 * data/c++.m4 (b4_variant_if): New.
4194 (b4_symbol_value): If needed, provide a definition for variants.
4195 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4196 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4197 (b4_char_sizeof, yy::variant): New.
4198 (parser::parse): If variants are requested, define
4199 parser::union_type, parser::variant, change the definition of
4200 semantic_type, construct $$ before running the user action instead
4201 of performing a default $$ = $1.
4202 * examples/variant.yy: New.
4203 Based on an example by Michiel De Wilde.
4204
4205 2008-11-03 Akim Demaille <demaille@gostai.com>
4206
4207 Parameterize the extraction of semantic values.
4208 To make future changes easier, no longer rely on ".TYPE" being the
4209 way to get a semantic value.
4210
4211 * data/c.m4 (b4_symbol_value): New.
4212 Use it.
4213 * data/c++.m4, data/yacc.c: Use it.
4214 * data/glr.c: Use b4_symbol_value.
4215 (b4_rhs_data): New.
4216 Use it.
4217
4218 2008-11-03 Akim Demaille <demaille@gostai.com>
4219
4220 Prepare easier M4 changes.
4221 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4222 future changes.
4223
4224 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4225
4226 Initiate further development.
4227 * NEWS: Create an empty section for new entries.
4228 * gnulib: Update submodule to HEAD.
4229
4230 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4231
4232 * NEWS: Version 2.4.
4233
4234 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4235
4236 Prepare for next release.
4237 * NEWS: Briefly mention changes since 2.3b.
4238 * README: Say GNU m4 1.4.6, which we've been requiring in release
4239 announcements already, not 1.4.3, which breaks the build.
4240
4241 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4242
4243 Say %language is experimental.
4244 We're thinking of extending it's effect on output file naming. See the
4245 thread at
4246 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4247 * NEWS: Say it's experimental.
4248 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4249 recommend it over %skeleton for now.
4250 (Bison Options): Likewise.
4251 (C++ Bison Interface): Use %skeleton not %language.
4252 (Calc++ Parser): Use %skeleton not %language.
4253 * src/getargs.c (usage): Say it's experimental.
4254
4255 2008-11-01 Di-an Jan <dianj@freeshell.org>
4256 Paolo Bonzini <bonzini@gnu.org>
4257
4258 Support all Java parser class modifiers.
4259 * data/java.m4 (b4_percent_define_get3): New.
4260 (b4_final_if, b4_strictfp_if): New.
4261 * data/lalr1.java (final, strictfp, extends, implements): Support.
4262 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4263 documentation.
4264 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4265 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4266 (AT_CHECK_JAVA_GREP): New.
4267 (Java parser class modifiers): New test.
4268 (Java parser class extends and implements): New test.
4269
4270 Model exception propagation better with throws and lex_throws.
4271 * data/java.m4 (b4_list2): New.
4272 (throws): Change default.
4273 * data/lalr1.java (yyaction): Add throws.
4274 (parse): Add lex_throws in addition to throws.
4275 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4276 * tests/java.at (Java throws specifications): New test.
4277
4278 Improve documentation for Java parsers.
4279 * doc/bison.texinfo (Java Parsers): Add subsections.
4280 Don't quote first argument of %define.
4281 (Java Bison Interface): Document output files. Move documentation
4282 of parser class and merge into Java Parser Interface. Document
4283 features that error out. Document directives with no effect.
4284 Move note about Javadoc higher.
4285 (Java Semantic Values): Explicitly mention stype.
4286 Document that generic types cannot be used.
4287 (Java Location Values): Use @deftypeivar. Document constructors.
4288 Correct return value for toString.
4289 (Java Parser Interface): List undocumented constants/fields.
4290 Move documentation of fields added by %parse-param closer to list
4291 of members. Document that token names are added as fields.
4292 Document constructors accurately. Remove error method.
4293 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4294 Interface. Describe %code lexer and yylex accutately.
4295 Remove documentation that does not match the code.
4296 (Java Action Features): New.
4297 (Java Differences): Add reference. Add item on semantic values.
4298 Add note about @{ ... @}. Clarify %% epilogue placement.
4299 (Java Declarations Summary): New.
4300
4301 Fix Java skeleton.
4302 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4303 (b4_remove_comma): Quote test argument.
4304 (b4_identification): Remove "bison" field.
4305 * tests/java.at (Java parser class and package names): New test.
4306 (Java %parse-param and %lex-param): New test.
4307 (Java stype, position_class and location_class): New test.
4308
4309 2008-10-31 Di-an Jan <dianj@freeshell.org>
4310
4311 * data/lalr1.jave: Update copyright years.
4312 (YYParser): Correct name of "generated from" file in Javadoc:
4313 use b4_file_name instead of @ofile@.
4314 (Location constructor): Correct Javadoc parameter name.
4315 (yylloc): Add missing opening m4 quote after b4_location_if.
4316 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4317 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4318 (YYParser constructor): Correct Javadoc parameter name.
4319
4320 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4321
4322 Always put auxiliary code files in the same dir as other output files.
4323 * src/files.c (compute_file_name_parts): When the user specifies
4324 --output but not --file-prefix, extract the directory prefix from the
4325 file prefix not from the grammar file name. This affects the location
4326 of files like location.hh generated by the C++ skeleton. The includes
4327 in the other output files require this fix.
4328 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4329 for expected output files.
4330 (Output files): Add a test for the above.
4331
4332 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4333
4334 * gnulib: Update submodule to HEAD.
4335
4336 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4337
4338 Update copyright year.
4339 * src/files.c: Here.
4340
4341 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4342
4343 Don't overwrite the input file.
4344 * src/files.c (output_file_name_check): Fatal error if using input file
4345 for output.
4346 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4347 argument.
4348 (Conflicting output files): Add test.
4349
4350 2008-10-28 Akim Demaille <demaille@gostai.com>
4351
4352 Space changes.
4353 * data/lalr1.cc: Formatting changes.
4354
4355 2008-10-28 Akim Demaille <demaille@gostai.com>
4356
4357 Don't define debugging functions when !YYDEBUG.
4358 * data/lalr1.cc (debug_stream, set_debug_stream)
4359 (debug_level_type, debug_level, set_debug_level): Don't
4360 declare them when YYDEBUG is not defined.
4361 The implementation are already YYDEBUG-aware.
4362
4363 2008-10-28 Akim Demaille <demaille@gostai.com>
4364
4365 Prefer "continue" for empty loop bodies.
4366 * etc/bench.pl.in: Use "continue" instead of {}.
4367
4368 2008-10-28 Akim Demaille <demaille@gostai.com>
4369
4370 Space and comments changes.
4371 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4372 * data/c.m4, data/lalr1.cc: Space changes.
4373
4374 2008-10-28 Akim Demaille <demaille@gostai.com>
4375
4376 Make gnulib a submodule.
4377 * gnulib: New.
4378 * .gitmodules (gnulib): New.
4379
4380 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4381
4382 Fix yyerror_range for user-defined location type in C++. Reported by
4383 Georg Sauthoff at
4384 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4385 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4386 * THANKS (Georg Sauthoff): Add.
4387
4388 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4389
4390 Update several administrative files mainly to facilitate releasing.
4391 * HACKING (Administrivia): Make the git-merge-changelog notes more
4392 helpful.
4393 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4394 (Release Procedure): Update for git and add numerous details that were
4395 previously missing.
4396 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4397 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4398 that announcements don't claim we bootstrapped with whatever bison
4399 happened to be in PATH. Add flex as a bootstrap tool.
4400 * Makefile.maint: Remove, previously replaced by maint.mk.
4401 * Makefile.cfg: Remove, and migrate settings to...
4402 * cfg.mk: ... here for the sake of `make announcement'.
4403 * bootstrap.conf (gnulib_modules): Add announce-gen.
4404 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4405 Berry.
4406
4407 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4408
4409 Small but important bugfixes for the Java skeleton.
4410 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4411 (yy_symbol_print): Call toString on yyvaluep.
4412
4413 2008-08-29 Akim Demaille <demaille@gostai.com>
4414
4415 Clarify UPDATED use.
4416 * doc/bison.texinfo: It refers to the last edition of this file,
4417 not to the release date of Bison.
4418 Reported by Joel E. Denny.
4419
4420 2008-08-29 Akim Demaille <demaille@gostai.com>
4421
4422 * README: Update FAQ pointer.
4423 Reported by Joel E. Denny.
4424
4425 2008-08-27 Eric Blake <ebb9@byu.net>
4426
4427 Resync m4sugar from autoconf.
4428 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4429 (m4_init): Adjust to latest m4.git changes.
4430 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4431 effects.
4432 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4433 (_m4_list_cmp): Reduce side effects.
4434
4435 2008-08-27 Akim Demaille <demaille@gostai.com>
4436
4437 Check yyerrok in calc.at.
4438 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4439 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4440 expected.
4441
4442 2008-08-27 Akim Demaille <demaille@gostai.com>
4443
4444 Support yyerrok in lalr1.cc.
4445 YYBACKUP is still to import back into lalr1.cc.
4446 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
4447
4448 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4449
4450 For maintainer-check*, don't recompile for a $(VERSION) update.
4451 * cfg.mk: New file.
4452 (_is-dist-target): Override the one in GNUmakefile.
4453 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4454
4455 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4456
4457 Update for recent change to gnulib.
4458 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4459 string.h now.
4460
4461 2008-08-15 Eric Blake <ebb9@byu.net>
4462
4463 Remaining m4sugar merge from autoconf.
4464 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4465 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4466 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4467 * src/output.c (output_skeleton): Tell m4 how to find it.
4468
4469 Partial m4sugar merge from autoconf: m4_map.
4470 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4471 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4472 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4473 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4474 for empty list.
4475 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4476 Likewise.
4477 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4478 declares it.
4479
4480 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4481
4482 Keep .version and PACKAGE_VERSION in sync.
4483 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4484 dependency, and add comments justifying this in more detail. Discussed
4485 starting at
4486 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4487
4488 2008-08-06 Eric Blake <ebb9@byu.net>
4489
4490 Partial m4sugar merge from autoconf: m4_shiftn.
4491 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4492 (m4_shift2, m4_shift3): New macros.
4493 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4494 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4495 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4496 * data/java.m4 (b4_remove_comma): Likewise.
4497
4498 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4499 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4500 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4501 (m4_init): Consolidate wrapped text into single m4_wrap.
4502 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4503 in wrapped text.
4504
4505 2008-08-05 Eric Blake <ebb9@byu.net>
4506
4507 Partial m4sugar merge from autoconf: builtins, version.m4.
4508 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4509 (m4_prepend): Remove, as it is unused and inherently quadratic,
4510 whereas m4_append is linear in newer m4.
4511 (m4_mkstemp): New builtin.
4512 (m4_symbols): Make rename conditional.
4513 (m4_version_prereq): Ensure fatal error if used in bison, which
4514 intentionally lacks version.m4.
4515
4516 Fix comments in m4sugar.
4517 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4518
4519 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4520
4521 Update for recent .gitignore fix in Gnulib.
4522 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4523 anchored .gitignore entries.
4524
4525 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4526
4527 Set gnu or gnits strictness.
4528 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4529 development and gnits strictness for releases. Based on Eric Blake's
4530 suggestion at
4531 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4532
4533 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4534
4535 * NEWS: Clarify documentation of %language.
4536
4537 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4538
4539 Support usage of git-merge-changelog.
4540 * .gitattributes: New.
4541 * HACKING: Document usage of git-merge-changelog.
4542 * bootstrap: Install git-merge-changelog entries in .git/config
4543 if appropriate.
4544
4545 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4546
4547 Remove remaining dependence on CVS Id keyword.
4548 * ChangeLog: For the sake of people still using CVS, don't use dollars
4549 when mentioning Id.
4550 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4551 unusual anyway.
4552 * data/xslt/xml2dot.xsl: Likewise.
4553 * data/xslt/xml2text.xsl: Likewise.
4554 * data/xslt/xml2xhtml.xsl: Likewise.
4555 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4556 * doc/Makefile.am (neutralize): Remove, no longer needed.
4557 (.x.1): Don't use neutralize.
4558 (edit): Don't substitute for ID.
4559 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4560
4561 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4562
4563 Fix dependence on computed configure variables.
4564 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4565 $(top_srcdir)/configure.ac so that changes to computed variables, such
4566 as PACKAGE_VERSION, are seen.
4567 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4568
4569 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4570
4571 Update copyright dates for recent changes.
4572 * Makefile.am: Here.
4573 * src/Makefile.am: Here.
4574 * src/reduce.c: Here.
4575 * tests/reduce.at: Here.
4576
4577 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4578
4579 Use git-version-gen for version names between releases.
4580 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4581 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4582 * .prev-version: New.
4583 * .version.in: Remove.
4584 * ChangeLog: Remove the Id previously used for capturing the CVS
4585 revision.
4586 * GNUmakefile: Remove, now copied from Gnulib.
4587 * Makefile.am: Add code suggested by comments in
4588 build-aux/git-version-gen.
4589 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4590 .prev-version, and .version.
4591 * NEWS (2.3b+): Rename to...
4592 (?.?): ... this because we're dropping the "+" version naming scheme,
4593 but, in general, we still can't be sure of our next release name.
4594 * bootstrap: Add a quick hack to remove from .gitignore the
4595 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4596 entry. This should really be fixed in gnulib instead.
4597 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4598 * configure.ac (AC_INIT): Set version name by invoking
4599 build-aux/git-version-gen.
4600 (AC_CONFIG_FILES): Remove .version, now generated by
4601 build-aux/git-version-gen.
4602 * maint.mk: New, copied from coreutils.
4603 * doc/.cvsignore (bison.1): Add.
4604 * doc/.gitignore (/bison.1): Add.
4605 * doc/bison.1: Remove, generated.
4606 * src/.cvsignore (revision.c): Remove.
4607 * src/.gitignore (/revision.c): Remove.
4608 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4609 (BUILT_SOURCES): Remove revision.c.
4610 (revision.c): Remove.
4611 * src/getargs.c (version): Don't print revision after the VERSION.
4612 * src/revision.h: Remove.
4613
4614 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4615
4616 Fix untranslatable composition of sentences. Reported by Goran
4617 Uddeborg at
4618 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4619 * THANKS (Goran Uddeborg): Add.
4620 * src/reduce.c (reduce_print): Report the number of nonterminals and
4621 rules useless in the grammar in separate sentences.
4622 * tests/reduce.at (Useless Rules): Update output.
4623 (Reduced Automaton): Likewise.
4624 (Underivable Rules): Likewise.
4625 (Empty Language): Likewise.
4626
4627 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4628
4629 Fix some .gitignore and .cvsignore problems.
4630 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4631 (insert_vc_ignore): ... this new function, which prepends `/' to all
4632 .gitignore entries before passing them to insert_sorted_if_absent.
4633 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4634 .cvsignore files are maintained even though Bison developers run
4635 bootstrap while using Git.
4636 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4637 unneeded by Bison.
4638 (gnulib): Add.
4639 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4640 unneeded. Reported by Eric Blake.
4641 * lib/.gitignore (/*~): Add.
4642 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4643 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4644 Blake.
4645 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4646
4647 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4648
4649 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4650 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4651 * bootstrap.conf (gnulib_modules): Add unsetenv.
4652 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4653 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4654 (/setenv.m4): Add.
4655 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4656 the first argument because it may become position-dependent, and unset
4657 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4658 Add comments explaining these issues in more detail.
4659
4660 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4661
4662 Add .gitignore everywhere based on .cvsignore.
4663 * .gitignore: New.
4664 * build-aux/.gitignore: New.
4665 * data/.gitignore: New.
4666 * doc/.gitignore: New.
4667 * etc/.gitignore: New.
4668 * examples/.gitignore: New.
4669 * examples/calc++/.gitignore: New.
4670 * lib/.gitignore: New.
4671 * m4/.gitignore: New.
4672 * po/.gitignore: New.
4673 * runtime-po/.gitignore: New.
4674 * src/.gitignore: New.
4675 * tests/.gitignore: New.
4676
4677 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4678
4679 * NEWS (2.3b+): New section, empty for now.
4680 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4681
4682 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4683
4684 * NEWS (2.3b): Update release date since there has been a delay in
4685 getting the announcements and tarballs out.
4686
4687 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4688
4689 * NEWS: Version 2.3b.
4690 * configure.ac (AC_INIT): Likewise.
4691 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4692
4693 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4694
4695 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4696 been doing it for years.
4697 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4698 (Release Procedure): Add FIXME about make alpha being unmaintained.
4699
4700 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4701
4702 * data/yacc.c: Reformat m4 a little for readability.
4703 * src/lalr.c (build_relations): Correct comment.
4704
4705 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4706
4707 DJGPP specific issue.
4708 * djgpp/config.sed: Fixes required to run configure scripts generated
4709 by autoconf 2.62.
4710
4711 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4712
4713 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4714 coordinator@translationproject.org.
4715
4716 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4717
4718 * THANKS: Add Eric Blake.
4719
4720 2008-04-23 Eric Blake <ebb9@byu.net>
4721
4722 Revert prior patch, by working around autoconf regression.
4723 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4724 ("Output file name: ("): Uncomment test.
4725 ("Output file name: )"): Likewise.
4726 Based on an idea from Noah Misch.
4727
4728 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4729
4730 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4731 2.61. Reported by Juan Manuel Guerrero at
4732 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4733 * tests/output.at ("Output file name: ("): Comment out test case for
4734 now.
4735 ("Output file name: )"): Likewise.
4736
4737 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4738
4739 * GNUmakefile: Update git-version-gen invocation so make dist
4740 succeeds.
4741
4742 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4743
4744 Update to the current gnulib CVS repository, and fix trigraph handling
4745 in Bison.
4746 * bootstrap: Update gnulib CVS repository URL.
4747 (symlink_to_dir): Encapsulate the code that guarantees the destination
4748 directory exists into...
4749 (check_dst_dir): ... this new function, and...
4750 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4751 fail when copying files into lib/uniwidth/.
4752 * src/output.c (prepare_symbols): When writing yytname muscles, where
4753 symbol names will be encoded in C-string literals, tell quotearg to
4754 escape trigraphs. This used to be the default in gnulib.
4755 * tests/regression.at (Token definitions): Because of the change in
4756 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4757 escapes trigraphs in symbol names. Thus, yytname no longer has
4758 trigraphs unnecessarily doubly escaped. Update test case output.
4759 Extend test case to be sure Bison's own error messages will no longer
4760 have trigraphs in symbol names unnecessarily escaped once.
4761
4762 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4763
4764 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4765 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4766 * .cvsignore: Add .version.
4767 * .version.in: New.
4768 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4769 * configure.ac (AC_CONFIG_FILES): Add .version.
4770 * build-aux/.cvsignore: Add git-version-gen.
4771
4772 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4773
4774 * NEWS (2.3a+): Mention that -g now takes an argument.
4775 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4776 consistency. Update the -g and -x entries now that they take
4777 arguments. Use brackets to indicate optional arguments.
4778 * src/getargs.c (usage): Explain the relationship between arguments of
4779 long and short options more completely. Document --defines and -d
4780 separately since the former takes an argument but, for POSIX Yacc, the
4781 latter does not.
4782 (short_options): Let -W take an optional argument like --warnings.
4783 (getargs): Sort cases.
4784
4785 2008-02-28 Akim Demaille <demaille@gostai.com>
4786
4787 * doc/bison.texinfo: Fix a few typos.
4788
4789 2008-02-28 Akim Demaille <akim@epita.fr>
4790
4791 * doc/bison.texinfo (Bison Options): Document -W.
4792 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4793
4794 2008-02-28 Akim Demaille <akim@epita.fr>
4795
4796 * src/getargs.c (short_options): Split and sort for readability.
4797 -g and -x take optional arguments, just like their long options.
4798 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4799 understand.
4800 Fix the handling of $opt which resulted in all the argument to be
4801 considered as optional.
4802
4803 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4804
4805 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4806 say its interface is experimental.
4807 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4808 Java.
4809 (Bison Options): In the -L and --language entry, mention Java.
4810 (Java Bison Interface): Say the interface is experimental.
4811 * src/getargs.c (usage): Mention -L and --language.
4812
4813 * NEWS (2.3a+): Say the push parsing interface is experimental.
4814 * doc/bison.texinfo (Push Decl): Likewise.
4815 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4816 (Push Parser Function): Likewise.
4817 (Pull Parser Function): Likewise.
4818 (Parser Create Function): Likewise.
4819 (Parser Delete Function): Likewise.
4820 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4821 yypull_parse, and yypush_parse entries.
4822
4823 * NEWS (2.3a+): Mention XML support, and say the schema is
4824 experimental.
4825 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4826 * src/getargs.c (usage): Say the XML schema is experimental.
4827
4828 * NEWS (2.3a+): Say option instead of flag.
4829
4830 2008-02-21 Wojciech Polak <polak@gnu.org>
4831
4832 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4833 text.
4834
4835 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4836
4837 Fix impure push parser compile error reported by Bob Rossi at
4838 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4839 * data/yacc.c: Clean up whitespace in the output a little.
4840 (yypstate_allocated): Define for impure push parsers regardless of
4841 whether the pull interface is also requested.
4842 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4843 check impure push parsers without the pull interface.
4844
4845 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4846 yyerror takes arguments specified by %parse-param while yypstate_new
4847 does not.
4848 * doc/bison.texinfo (Parser Create Function): Document that
4849 yypstate_new returns 0 for multiple impure parser instances.
4850 * tests/push.at (Push Parsing: Multiple impure instances): Update
4851 expected stderr output.
4852
4853 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4854
4855 * runtime-po/POTFILES.in (push.c): Remove.
4856
4857 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4858
4859 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4860 * data/push.c: Rename to...
4861 * data/yacc.c: ... this, overwriting it.
4862 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4863 `%push-pull-parser' -> `%define api.push_pull "both"'.
4864 Remove old yacc.c tests, and update push.c tests to yacc.c.
4865
4866 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4867
4868 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4869 `"%code top" blocks' instead of `%code "top" blocks'.
4870 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4871 Clean up whitespace in the output a little.
4872
4873 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4874
4875 Fix documentation problems reported by Tim Josling at
4876 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4877 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4878 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4879 integers. Explain the effect of literal string aliases on error
4880 messages. Copy token 0 documentation from the C++ skeleton
4881 documentation.
4882
4883 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4884
4885 Accept a token number in a %left, %right, or %nonassoc for POSIX
4886 conformance. Reported by Tim Josling at
4887 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4888 * NEWS (2.3a+): Mention.
4889 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4890 and code numbers are treated by precedence declarations.
4891 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4892 of symbols.1.
4893 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4894 of symbol.
4895 (symbol.prec): New, just like symbol but allows INT.
4896 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4897 longer holds.
4898 * tests/regression.at (Token number in precedence declaration): New
4899 test case.
4900
4901 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4902
4903 DJGPP specific issues.
4904 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4905 be changed. Copyright timestamp adjusted.
4906 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4907 be changed. Copyright timestamp adjusted.
4908 * djgpp/config.site: Copyright timestamp adjusted.
4909 * djgpp/config_h.sed: Copyright timestamp adjusted.
4910 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4911 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4912 filename translation list.
4913 * djgpp/subpipe.c (init_subpipe): Check the environment variables
4914 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
4915 files shall be created. Before trying to use the temp dir where the
4916 environment variable points to check that the dir really exists. If
4917 not default to the cwd as temp dir. Copyright timestamp adjusted.
4918 * djgpp/subpipe.h: Copyright timestamp adjusted.
4919 * djgpp/testsuite.sed: Copyright timestamp adjusted.
4920
4921 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
4922
4923 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
4924
4925 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
4926
4927 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
4928 Problem reported by Claudio Saavedra in
4929 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
4930
4931 2008-01-05 Wojciech Polak <polak@gnu.org>
4932
4933 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
4934 document's title with the input grammar file name.
4935
4936 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
4937
4938 Automate regression testing of the XML/XSLT implementation. Discussed
4939 starting at
4940 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
4941 * configure.ac (XSLTPROC): New substitution.
4942 * Makefile.am (maintainer-xml-check): New phony target invoking...
4943 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
4944 invoking make maintainer-check with BISON_TEST_XML=1.
4945 * tests/atlocal.in (XSLTPROC): New.
4946 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
4947 not to report reachable memory when Bison is expected to have a
4948 non-zero exit status and (2) to compare XML/XSLT output with --graph
4949 and --report=all output for every working grammar when
4950 BISON_TEST_XML=1.
4951 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
4952 (AT_BISON_CHECK_XML): New.
4953 (AT_QUELL_VALGRIND): New.
4954 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
4955 (AT_CHECK): ... don't redefine this since this was the old way to
4956 quell Valgrind.
4957 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
4958 AT_BISON_CHECK invocations.
4959 * tests/c++.at: Likewise.
4960 * tests/calc.at: Likewise.
4961 * tests/conflicts.at: Likewise.
4962 * tests/cxx-type.at: Likewise.
4963 * tests/existing.at: Likewise.
4964 * tests/glr-regression.at: Likewise.
4965 * tests/headers.at: Likewise.
4966 * tests/input.at: Likewise.
4967 * tests/java.at: Likewise.
4968 * tests/output.at: Likewise.
4969 * tests/push.at: Likewise.
4970 * tests/reduce.at: Likewise.
4971 * tests/regression.at: Likewise.
4972 * tests/sets.at: Likewise.
4973 * tests/skeletons.at: Likewise.
4974 * tests/synclines.at: Likewise.
4975 * tests/torture.at: Likewise.
4976 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
4977 tends to hang xsltproc.
4978 (Big horizontal): Likewise.
4979
4980 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4981
4982 In XML output, remove redundant class attribute on symbol element.
4983 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
4984 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
4985 look up a symbol to determine whether it's a nonterminal or terminal.
4986 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
4987 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
4988
4989 Add prec/assoc information to XML output.
4990 * src/gram.c (grammar_rules_print_xml): For each rule that has a
4991 %prec, add a percent_prec attribute.
4992 * src/print-xml.c (print_grammar): For each terminal that has a
4993 precedence or associativity, add a prec or assoc attribute.
4994 (xml_indent): New.
4995 (xml_puts): Use xml_indent.
4996 (xml_printf): Use xml_indent.
4997 * src/print-xml.h (xml_indent): Prototype.
4998
4999 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5000 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5001
5002 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5003
5004 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5005 (bison:ruleByNumber): ... this for clarity.
5006 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5007 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5008 (xsl:template match="reduction"): Update.
5009 (xsl:template match="item"): Update.
5010 (xsl:template match="reduction"): Update.
5011
5012 In the XML output, don't print the list of rules where symbols appear.
5013 Compute it in XSLT instead. Discussed at
5014 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5015 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5016 (bison:ruleByRhs): New.
5017 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5018 bison:ruleByRhs.
5019 (xsl:template match="terminal/rule"): Remove.
5020 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5021 bison:ruleByRhs.
5022 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5023 Remove.
5024 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5025 bison:ruleByRhs and mode="number-link" for rule template.
5026 (xsl:template match="terminal/rule"): Remove.
5027 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5028 bison:ruleByRhs and mode="number-link" for rule template.
5029 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5030 Rewrite as...
5031 (xsl:template match="rule" mode="number-link"): ... this.
5032 * src/print-xml.c (print_grammar): Don't print the list of rules.
5033
5034 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5035
5036 Don't let --report affect XML output; always print all information.
5037 Discussed at
5038 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5039 * src/conflicts.c (log_resolution): Implement.
5040 * src/print-xml.c (print_core): Implement.
5041 (print_state): Implement.
5042 (print_xml): Implement.
5043
5044 * NEWS (2.3a+): Fix quotes.
5045 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5046 don't let %verbose clear the list specified by --report.
5047
5048 2007-11-26 Akim Demaille <akim@epita.fr>
5049
5050 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5051
5052 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5053
5054 In the XML output, list useless and unused symbols and rules with the
5055 useful ones and add a "usefulness" attribute. Discussed starting at
5056 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5057 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5058 (grammar_rules_print_xml): Print all rules instead of just those
5059 useful in the grammar, and add a "usefulness" attribute.
5060 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5061 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5062 (print_grammar): Print all nonterminals instead of just useful ones,
5063 and add a "usefulness" attribute to nonterminals and terminals.
5064 (print_xml): Don't print a separate "reductions" or
5065 "rules-useless-in-parser" element.
5066 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5067 (reduce_xml): Remove.
5068 (reduce_token_unused_in_grammar): New.
5069 (reduce_nonterminal_useless_in_grammar): New.
5070 * src/reduce.h (reduce_xml): Remove prototype.
5071 (reduce_token_unused_in_grammar): Add prototype.
5072 (reduce_nonterminal_useless_in_grammar): Add prototype.
5073 * data/xslt/xml2text.xsl: Update for XML changes.
5074 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5075 * tests/reduce.at (Useless Terminals): Update output.
5076 (Useless Rules): Update output.
5077 (Reduced Automaton): Update output.
5078
5079 Say "Terminals unused in grammar" instead of "Unused terminals".
5080 * NEWS (2.3a+): Update.
5081 * doc/bison.texinfo (Understanding): Update example output.
5082 * src/reduce.c (reduce_output): Implement.
5083 * data/xslt/xml2text.xsl: Implement.
5084 * data/xslt/xml2xhtml.xsl: Implement.
5085
5086 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5087
5088 Accept --report-file=FILE to override the default `.output' filename.
5089 * NEWS (2.3a+): Mention.
5090 * doc/bison.texinfo (Bison Options): Add an entry.
5091 * src/files.c (compute_output_file_names): Don't override
5092 spec_verbose_file if already set.
5093 * src/getargs.c (usage): Document --report-file.
5094 (REPORT_FILE_OPTION): New anonymous enum member.
5095 (long_options): Add entry for it.
5096 (getargs): Add case for it setting spec_verbose_file.
5097
5098 * build-aux/cross-options.pl: Don't record a short option just because
5099 there's an arg.
5100 * doc/.cvsignore: Add yacc.1.
5101
5102 2007-11-14 Akim Demaille <akim@epita.fr>
5103
5104 * doc/yacc.1.in: New.
5105 * configure.ac, doc/Makefile.am: Adjust.
5106 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5107 config.h symbol.
5108 Use AC_SUBST for assignments too.
5109 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5110
5111 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5112
5113 * src/gram.c: Remove comments that duplicate comments in gram.h.
5114
5115 When reporting useless rules and nonterminals, say "useless in grammar"
5116 instead of "useless", and say "useless in parser" instead of "never
5117 reduced". Discussed starting at
5118 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5119 * NEWS (2.3a+): Mention this change.
5120 * data/xslt/xml2text.xsl: Update output text and expected input XML
5121 element names to match changes below.
5122 * data/xslt/xml2xhtml.xsl: Likewise.
5123 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5124 Contents: "Rules useless in parser due to conflicts".
5125 * doc/bison.texinfo (Decl Summary): Reword a little.
5126 (Understanding): Update example output for changes below.
5127 * src/gram.c: (rule_useful_p): Rename to...
5128 (rule_useful_in_grammar_p): ... this.
5129 (rule_useless_p): Rename to...
5130 (rule_useless_in_grammar_p): ... this.
5131 (rule_never_reduced_p): Rename to...
5132 (rule_useless_in_parser_p): ... this.
5133 (grammar_rules_print): Update for renames.
5134 (grammar_rules_print_xml): Update for renames.
5135 (grammar_rules_never_reduced_report): Rename to...
5136 (grammar_rules_useless_report): ... this since it is used for either
5137 kind of useless rule.
5138 * src/gram.h: Reword comments and update function names in prototypes.
5139 * src/main.c (main): Say "rule useless in parser due to conflicts".
5140 * src/print-xml.c (print_rules_never_reduced): Rename to...
5141 (print_rules_useless_in_parser): ... this, and rename output XML
5142 element "rules-never-reduced" to "rules-useless-in-parser".
5143 (print_xml): Update for rename.
5144 * src/print.c (print_results): Say "Rules useless in parser due to
5145 conflicts".
5146 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5147 (nonterminals_reduce): Say "nonterminal useless in grammar".
5148 (reduce_output): Say "Nonterminals useless in grammar".
5149 Say "Rules useless in grammar".
5150 (reduce_xml): Rename output XML element "useless" to
5151 "useless-in-grammar".
5152 (reduce_print): Don't report the count of grammatically useless rules
5153 as "rules never reduced" just because %yacc is specified.
5154 In the correct report of this count, say nonterminal(s) and rule(s)
5155 "useless in grammar".
5156 * tests/conflicts.at (S/R in initial): Update expected output.
5157 (Defaulted Conflicted Reduction): Likewise.
5158 (Unreachable States After Conflict Resolution): Likewise.
5159 * tests/existing.at (GNU pic Grammar): Likewise.
5160 * tests/reduce.at (Useless Nonterminals): Likewise.
5161 (Useless Rules): Likewise.
5162 (Reduced Automaton): Likewise.
5163 (Underivable Rules): Likewise.
5164 (Empty Language): Likewise.
5165
5166 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5167
5168 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5169 here document and before the EOF so that BSD's implementation of Bourne
5170 shell doesn't parse the delimiter as part of the here document.
5171 * doc/.cvsignore: Add cross-options.texi.
5172 * src/getargs.c (usage): Add a blank line after the warning categories.
5173
5174 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
5175
5176 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5177
5178 2007-11-05 Akim Demaille <akim@epita.fr>
5179
5180 Remove Id: from bison.1.
5181 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5182 (perl -0777 -pi -e 's/\.PP\nId): New.
5183 (.x.1): Use it to ignore the version control revision.
5184
5185 2007-11-05 Akim Demaille <demaille@gostai.com>
5186
5187 * build-aux/Makefile.am: Ship cross-options.pl.
5188 * doc/Makefile.am: Always refer to cross-options.texi with
5189 $(srcdir).
5190 (MAINTAINERCLEANFILES): Add it.
5191
5192 2007-11-04 Akim Demaille <demaille@gostai.com>
5193
5194 Generate the long/short option cross-table.
5195 * build-aux/cross-options.pl: New.
5196 * doc/Makefile.am (cross-options.texi): New.
5197 * doc/bison.texinfo: Use it.
5198
5199 2007-11-04 Akim Demaille <demaille@gostai.com>
5200
5201 Generate bison.1 using help2man.
5202 * doc/common.x, doc/bison.x: New.
5203 * doc/Makefile.am (bison.1, .x.1): New.
5204 The code is taken from autoconf-2.61/man/Makefile.am.
5205 * configure.ac: Look for help2man.
5206
5207 2007-11-04 Akim Demaille <demaille@gostai.com>
5208
5209 Complete --help.
5210 * src/getargs.c (usage): Document -W, make it clear that -d,
5211 -g and -x have optional arguments.
5212
5213 2007-11-04 Akim Demaille <demaille@gostai.com>
5214
5215 Find sha1sum when named gsha1sum.
5216 * bootstrap (find_tool): New.
5217 ($SHA1SUM): New.
5218
5219 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5220
5221 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5222 at
5223 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5224 * NEWS (2.3a+): Mention.
5225 * data/bison.m4 (b4_pure_if): Don't define it here.
5226 * data/c.m4 (b4_identification): Depend on individual skeletons to
5227 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5228 values of the %define variables api.pure or api.push_pull. Define
5229 YYPURE, YYPUSH, and YYPULL accordingly.
5230 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5231 glr.cc has already defined b4_pure_flag.
5232 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5233 Remove YYPUSH and YYPULL since they're back in b4_identification again.
5234 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
5235 * doc/bison.texinfo (Pure Decl): Update.
5236 (Push Decl): Update.
5237 (Decl Summary): Add api.pure to %define entry.
5238 In %pure-parser entry, say it's deprecated and reference %define.
5239 (Pure Calling): Update.
5240 (Error Reporting): Update.
5241 (C++ Scanner Interface): Update.
5242 (How Can I Reset the Parser): Update.
5243 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5244 reference %define.
5245 * src/getargs.c (pure_parser): Remove global variable.
5246 * src/getargs.h (pure_parser): Remove extern.
5247 * src/output.c (prepare): Don't define pure_flag muscle.
5248 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5249 wrapper around `%define api.pure'.
5250 * tests/calc.at (Simple LALR Calculator): Update.
5251 (Simple GLR Calculator): Update.
5252 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5253 Update.
5254 (GLR: Resolve ambiguity, pure, locations): Update.
5255 (GLR: Merge conflicting parses, pure, no locations): Update.
5256 (GLR: Merge conflicting parses, pure, locations): Update.
5257 * tests/glr-regression.at (Uninitialized location when reporting
5258 ambiguity): Update
5259 * tests/input.at (Unused %define api.pure): New test case.
5260 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5261 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5262 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5263
5264 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5265
5266 %define push_pull -> %define api.push_pull. Discussed starting at
5267 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5268 * data/push.c: Expect the new name.
5269 * data/yacc.c: Likewise.
5270 * doc/bison.texinfo (Push Decl): Update.
5271 (Decl Summary): Update %define entry.
5272 (Push Parser Function): Update.
5273 (Pull Parser Function): Update.
5274 (Parser Create Function): Update.
5275 (Parser Delete Function): Update.
5276 * tests/calc.at (Simple LALR Calculator): Update.
5277 * tests/input.at (%define enum variables): Update.
5278 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5279 (Push Parsing: Multiple impure instances): Update.
5280 (Push Parsing: Unsupported Skeletons): Update.
5281 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5282 (Exploding the Stack Size with Malloc): Update.
5283
5284 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5285 other entries some.
5286
5287 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5288
5289 For the XML output's terminal element, rename @number to @token-number,
5290 and add @symbol-number. In the nonterminal element, rename @number to
5291 @symbol-number. Discussed starting at
5292 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5293 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5294 renames.
5295 (xsl:template match="nonterminal"): Likewise.
5296 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5297 (xsl:template match="nonterminal"): Likewise.
5298 * src/print-xml.c (print_grammar): Implement.
5299
5300 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5301
5302 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5303 2007-10-11 change, the child elements here are items not rules.
5304 (xsl:template match="item"): New.
5305 (xsl:template match="rule"): Update for new reduced itemset.
5306 (xsl:template match="point"): Remove.
5307 (xsl:template match="empty"): For consistency with --graph, don't
5308 output "/* empty */".
5309 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5310 line-wrap, don't pass a negative value as first-line-length since this
5311 won't work with the following changes.
5312 (xsl:template name="line-wrap"): Simplify slightly.
5313 (xsl:template name="ws-search"): Eliminate recursion.
5314 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5315 set next to an item whose dot is not at the end of the RHS even if it
5316 happens to be associated with the same rule.
5317
5318 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5319
5320 Add %define lr.keep_unreachable_states.
5321 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5322 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5323 * src/main.c (main): Implement it.
5324 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5325 Extend to test it, and fix a typo.
5326
5327 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5328
5329 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
5330 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5331 the example .output text.
5332 * tests/regression.at (Extra lookahead sets in report): Improve wording
5333 of comments.
5334
5335 2007-10-17 Wojciech Polak <polak@gnu.org>
5336
5337 * src/print-xml.c (print_grammar): Renamed
5338 <terminal> and <nonterminal> attributes:
5339 "type" to "number" and "symbol" to "name".
5340 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5341 Use new attribute names.
5342 (xsl:template match="nonterminal"): Likewise.
5343 * data/xslt/xml2xhtml.xsl: Likewise.
5344
5345 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5346
5347 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5348 (Option Cross Key): Likewise.
5349
5350 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5351 next to an item whose dot is not at the end of the RHS even if it
5352 happens to be associated with the same rule.
5353 * src/print.c (print_core): Likewise.
5354 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5355 (Resolved SR Conflicts): Update output.
5356 * tests/regression.at (Extra lookahead sets in report): New test case.
5357
5358 2007-10-11 Wojciech Polak <polak@gnu.org>
5359
5360 * src/print-xml.c (print_core): Remove item set
5361 redundancy.
5362 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5363 Improve processing time. Suggested by Joel E. Denny.
5364 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5365 Write xsl:param "required" attribute as comment.
5366 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5367 (xsl:template match="rule"): Support new reduced itemset.
5368 (xsl:template match="point"): Remove.
5369 * data/xslt/xml2xhtml.xsl: Likewise.
5370
5371 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5372
5373 * src/getargs.c (version): Update copyright year.
5374
5375 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5376
5377 Make xml2dot.xsl and --graph produce the same output.
5378 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5379 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5380 escaped later.
5381 (xsl:template name="output-node"): Use the new escape template instead
5382 of the string-replace template directly.
5383 (xsl:template name="output-edge"): Likewise.
5384 (xsl:template name="escape"): New, escapes backslashes and newlines in
5385 addition to quotation marks.
5386 * src/graphviz.c (start_graph, output_node, output_edge): Add
5387 whitespace to output for legibility.
5388
5389 Make xml2text.xsl and --report produce the same output, and remove the
5390 XML "conflicts" element since a conflict summary is easily extracted
5391 from the automaton.
5392 * data/xslt/bison.xsl: New.
5393 (xsl:template match="state" mode="bison:count-conflicts): New.
5394 * data/xslt/xml2text.xsl: Import bison.xsl.
5395 (xsl:template match="bison-xml-report"): Instead of styling the
5396 "conflicts" element, style the "automaton" element with mode
5397 "conflicts". Unlike the former, the latter lists S/R and R/R
5398 conflicts for a state on the same line.
5399 (xsl:template match="conflicts"): Remove.
5400 (xsl:template match="conflict"): Remove.
5401 (xsl:template match="terminal"): Line-wrap the list of rules in which
5402 the terminal is used.
5403 (xsl:template match="nonterminal"): Likewise for nonterminals.
5404 (xsl:template match="automaton" mode="conflicts"): New.
5405 (xsl:template match="state" mode="conflicts"): New.
5406 (xsl:template name="line-wrap"): New.
5407 (xsl:template name="ws-search"): New.
5408 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5409 (xsl:template match="bison-xml-report"): Instead of styling the
5410 "conflicts" element, style the "automaton" element with mode
5411 "conflicts."
5412 (xsl:template match="conflicts"): Remove.
5413 (xsl:template match="conflict"): Remove.
5414 (xsl:template match="automaton" mode="conflicts"): New.
5415 (xsl:template match="state" mode="conflicts): New.
5416 * src/conflicts.c (conflicts_output_xml): Remove.
5417 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5418 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5419 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5420 the corresponding XSLT is easier. Also, never wrap between a word and
5421 the comma that follows it.
5422
5423 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5424
5425 Improve C++ namespace support. Discussed starting at
5426 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5427 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5428 b4_namespace_close): New macros that interpret the %define variable
5429 "namespace" so its value can contain "::" to indicate nested
5430 namespaces.
5431 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5432 the above macros.
5433 * data/lalr1.cc (b4_namespace): Likewise.
5434 * data/location.cc (b4_namespace): Likewise.
5435 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5436 inside a new table in the general %define entry. Document `%define
5437 namespace' there as well. Point the %name-prefix entry to it since it
5438 explains it more completely in the case of C++.
5439 (C++ Bison Interface): Mention `%define namespace' instead of
5440 %name-prefix.
5441 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5442 entry suffices.
5443 * tests/c++.at (Relative namespace references): New test case.
5444 (Absolute namespace references): New test case.
5445 (Syntactically invalid namespace references): New test case.
5446 * tests/input.at (C++ namespace reference errors): New test case.
5447
5448 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5449
5450 Add syncline support and location accessor to internal %define
5451 interfaces.
5452 * data/bison.m4 (b4_percent_define_get_loc): New.
5453 (b4_percent_define_get_syncline): New.
5454 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5455 (b4_percent_define_default): Record defining location as line 1 rather
5456 than 0 for the sake of synchronizing #line's, and define
5457 b4_percent_define_syncline(VARIABLE).
5458 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5459 * src/muscle_tab.c (muscle_syncline_grow): New.
5460 (muscle_code_grow): Use muscle_syncline_grow.
5461 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5462 define b4_percent_define_syncline(VARIABLE).
5463 (muscle_percent_define_get_loc): New.
5464 (muscle_percent_define_get_syncline): New.
5465 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5466 remove some unused variables.
5467 (muscle_percent_define_default): Record defining location as line 1
5468 rather than 0 for the sake of synchronizing #line's, and define
5469 b4_percent_define_syncline(VARIABLE).
5470 (muscle_percent_define_check_values): Use
5471 muscle_percent_define_get_loc.
5472 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5473 (muscle_percent_define_get_syncline): Prototype.
5474 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5475 defaults): Update output for location change.
5476 (Complaining during macro argument expansion): Extend to test
5477 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5478
5479 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5480
5481 Fix some error-reporting macro bugs.
5482 * data/bison.m4 (b4_cat): New.
5483 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5484 to stdout so they don't become arguments to other macros. Update
5485 comments and add examples.
5486 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5487 add examples.
5488 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5489 after printing the error directive so that M4 doesn't report subsequent
5490 problems that are induced by this problem.
5491 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5492 instead of just in them. Recognize @\n in both places. Both expand to
5493 the empty string. Needed by b4_cat.
5494 * tests/skeletons.at (Complaining during macro argument expansion):
5495 New test case.
5496 (Fatal errors make M4 exit immediately): New test case.
5497
5498 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5499
5500 Implement --print-datadir.
5501 * src/getargs.c (usage): Mention.
5502 (PRINT_DATADIR_OPTION): New anonymous enum member.
5503 (long_options): Add entry for it.
5504 (getargs): Add case for it calling compute_pkgdatadir.
5505 * src/output.c (output_skeleton): Encapsulate data directory
5506 computation from here...
5507 (prepare): ... and from here...
5508 (compute_pkgdatadir): ... into this new function.
5509 * src/output.h (compute_pkgdatadir): Prototype.
5510
5511 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5512
5513 * src/print-xml.c (escape_bufs): New static global variable
5514 replacing...
5515 (xml_escape_n): ... the static local variable buf here.
5516 (print_xml): Free memory for escape_bufs.
5517 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5518
5519 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5520
5521 Replace `%push-parser' and `%push-pull-parser' with
5522 `%define push_pull "push"' and `%define push_pull "both"'.
5523 `%define push_pull "pull"' is the default.
5524 * doc/bison.texinfo (Push Decl, Push Parser Function,
5525 Pull Parser Function, Parser Create Function, Parser Delete Function):
5526 Update declarations.
5527 (Decl Summary, Table of Symbols): Replace %push-parser and
5528 %push-pull-parser entries with a %define push_pull entry.
5529 * data/bison.m4 (b4_percent_define_check_values): New macro.
5530 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5531 definitions...
5532 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5533 definitions...
5534 * data/push.c: ... to here and compute them from the value of the
5535 %define variable push_pull.
5536 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5537 parsing requests here...
5538 * data/yacc.c: ... hack this to switch to push.c any time
5539 b4_use_push_pull_flag or the %define variable push_pull is set. This
5540 will go away when we mv push.c yacc.c.
5541 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5542 push parsing is not supported since unused %define variables are
5543 reported anyway.
5544 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5545 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5546 comments for consistency with b4_percent_define_check_values.
5547 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5548 muscles.
5549 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5550 Remove.
5551 (prologue_declaration): Remove %push-parser and %push-pull-parser
5552 rules.
5553 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5554 * tests/calc.at: Update declarations.
5555 * tests/input.at (%define enum variables): New test case.
5556 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5557 declaration.
5558 (Push Parsing: Multiple impure instances): Update declaration.
5559 (Push Parsing: Unsupported Skeletons): New test case.
5560 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5561 declaration.
5562 (Exploding the Stack Size with Malloc): Update declaration.
5563
5564 2007-09-24 Wojciech Polak <polak@gnu.org>
5565
5566 Add XSLT transformations.
5567
5568 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5569 * data/xslt/xml2text.xsl: Transform XML into plain text.
5570 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5571 * data/Makefile.am (xsltdir): New variable.
5572 (dist_xslt_DATA): Add xslt/*.xsl files.
5573
5574 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5575
5576 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5577 Problem reported by Wojciech Polak.
5578 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5579 (xml_printf): Undo change I made on 21 September; that is,
5580 indent 2 spaces, not 1.
5581
5582 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5583
5584 Pacify ./configure --enable-gcc-warnings.
5585 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5586 `char const *' instead of `char *'.
5587 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5588 local variable `sep'.
5589
5590 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5591
5592 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5593 elsewhere.
5594 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5595 (xml_printf): Indent just 1 space for level.
5596 (e_char, xlate_char): Remove.
5597 (xml_escape_string): Rewrite to avoid undefined behavior (used
5598 storage that was freed from the stack).
5599 (xml_escape_n): Don't bother checking for subscript error.
5600
5601 2007-09-21 Wojciech Polak <polak@gnu.org>
5602
5603 Add Bison XML Automaton Report.
5604
5605 Add support for an -x option to generate an XML report.
5606 It is not documented yet.
5607 * src/print-xml.c: New file.
5608 * src/print-xml.h: Likewise.
5609 * lib/timevar.def (TV_XML): New var.
5610 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5611 * src/conflicts.c: Include print-xml.h.
5612 (solved_conflicts_xml_obstack): New var.
5613 (log_resolution, conflicts_solve, conflicts_free):
5614 Add support for XML report.
5615 (conflicts_output_val): New function.
5616 * src/conflicts.h (conflicts_output_val): New decl.
5617 * src/files.c (spec_xml_file): New var.
5618 (compute_output_file_names, output_file_names_free): Add XML support.
5619 * src/files.h (spec_xml_file): New decl.
5620 * src/getargs.c (xml_flag): New var.
5621 (usage, short_options, long_options, getargs): Add XML support.
5622 * src/getargs.h (xml_flag): New decl.
5623 * src/gram.c: Include print-xml.h.
5624 (rule_lhs_print_xml, rule_rhs_print_xml):
5625 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5626 New functions.
5627 * src/gram.h: Declare external ones.
5628 * src/main.c: Include print-xml.h.
5629 (main): Add XML support.
5630 * src/reduce.c: Include print-xml.h.
5631 (reduce_xml): New function.
5632 * src/reduce.h: Declare it.
5633 * src/state.c: Include print-xml.h.
5634 (state_new): Add XML support.
5635 (state_rule_lookahead_tokens_print_xml): New function.
5636 * src/state.h: Declare it.
5637 (struct state): New member solved_conflicts_xml.
5638 * src/symtab.c (symbol_class_get_string): New function.
5639 * src/symtab.h: Declare it.
5640
5641 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5642
5643 * GNUmakefile: Switch to coreutils's version.
5644 * bootstrap: Likewise.
5645 * Makefile.cfg: Adjust to new GNUmakefile.
5646 * README-hacking: Likewise.
5647
5648 Import from gnulib:
5649
5650 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5651 Bruno Haible <bruno@clisp.org>
5652
5653 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5654 and is a script that invokes bison. Tighten the code. Add comments.
5655
5656 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5657
5658 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5659 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5660 * doc/bison.texinfo (Decl Summary): Fix.
5661 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5662 * tests/input.at (Boolean %define variables): Update output.
5663 * tests/skeletons.at (%define boolean variables: invalid skeleton
5664 defaults): Rename to...
5665 (%define Boolean variables: invalid skeleton defaults): ... this and
5666 update output.
5667
5668 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5669
5670 In impure push mode, don't allow more than one yypstate to be allocated
5671 since multiple impure parsers would corrupt yynerrs.
5672 * data/push.c (yypstate_allocated): New static global variable
5673 initialized to 0.
5674 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5675 exhaustion if yypstate_allocated is 1, but still return 2.
5676 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5677 already 1. Otherwise, set it to 1.
5678 (yypstate_delete): Set it to 0.
5679 * tests/push.at (Push Parsing: Multiple impure instances): New test
5680 case.
5681
5682 2007-08-17 Bob Rossi <bob@brasko.net>
5683
5684 * doc/bison.texinfo (Push Decl): Document the push parser.
5685 (Table of Symbols): Ditto.
5686 (Pure Decl): Ditto.
5687 (Decl Summary): Ditto.
5688 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5689 Parser Create Function, Parser Delete Function):
5690 Add new push parser symbols.
5691 (Table of Symbols): Document push-parser, push-pull-parser,
5692 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5693
5694 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5695
5696 Update to GPLv3.
5697 * doc/gpl-3.0.texi: New file.
5698 * doc/gpl.texi: Remove.
5699 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5700 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5701 * README-hacking, TODO, bootstrap, bootstrap.conf:
5702 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5703 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5704 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5705 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5706 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5707 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5708 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5709 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5710 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5711 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5712 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5713 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5714 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5715 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5716 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5717 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5718 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5719 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5720 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5721 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5722 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5723 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5724 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5725 * src/complain.c, src/complain.h, src/conflicts.c:
5726 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5727 * src/files.h, src/flex-scanner.h, src/getargs.c:
5728 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5729 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5730 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5731 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5732 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5733 * src/print.c, src/print.h, src/print_graph.c:
5734 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5735 * src/reduce.h, src/relation.c, src/relation.h:
5736 * src/revision.h, src/scan-code.h, src/scan-code.l:
5737 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5738 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5739 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5740 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5741 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5742 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5743 * tests/existing.at, tests/glr-regression.at:
5744 * tests/headers.at, tests/input.at, tests/java.at:
5745 * tests/local.at, tests/output.at, tests/push.at:
5746 * tests/reduce.at, tests/regression.at, tests/sets.at:
5747 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5748 * tests/torture.at:
5749 Update to GPLv3.
5750
5751 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5752
5753 Get rid of broken %no-parser, -n, and --no-parser implementation and
5754 documentation.
5755 * TODO: Don't mention them.
5756 * doc/bison.1: Likewise.
5757 * doc/bison.texinfo (Decl Summary): Likewise.
5758 (Bison Options): Likewise.
5759 (Option Cross Key): Likewise.
5760 * src/getargs.c (no_parser_flag): Remove global variable.
5761 (usage): Don't print description of -n and --no-parser.
5762 (long_options): Remove --no-parser entry here.
5763 (getargs): Remove -n case in the switch here.
5764 * src/getargs.h (no_parser_flag): Remove extern.
5765 * tests/regression.at (Web2c Actions): Remove comment that mentions
5766 --no-parser.
5767
5768 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5769
5770 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5771 name user variables starting with `yy'. Just pass NULL instead of a
5772 dummy local &yylval to yypush_parse.
5773 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5774 starting with `yy'.
5775
5776 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5777
5778 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5779 true since it's then always used regardless of whether yyoverflow is
5780 defined. Reported by Christian Burger at
5781 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5782 * THANKS: Add Christian Burger.
5783
5784 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5785 node names: say "Decl Summary" not "Bison Declaration Summary".
5786
5787 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5788
5789 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5790 determine whether this function has already complained about an invalid
5791 value for a %define boolean variable, don't check whether Bison has
5792 ever examined the value. As written, the check was a tautology.
5793 Instead, record and check for this complaint using a separate muscle.
5794
5795 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5796
5797 Fix push parsing memory leak reported by Brandon Lucia at
5798 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5799 * THANKS: Add Brandon Lucia.
5800 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5801 but the parse never completed and thus freed it.
5802 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5803 * tests/testsuite.at: Include push.at.
5804 * test/push.at: New.
5805 (Push Parsing: Memory Leak for Early Deletion): New test case.
5806
5807 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5808
5809 Improve handling of multiple S/R conflicts in the same state and of S/R
5810 conflicts involving multiple reductions.
5811 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5812 set for a state here or Bison will abort if it is reassigned on a
5813 later conflicted reduction in the same state.
5814 Similarly, don't finalize and assign the solved conflicts report here
5815 or it will be lost if it is reassigned on a later conflicted reduction
5816 in the same state.
5817 (set_conflicts): Instead, assign them both here after all S/R conflicts
5818 in the state have been fully examined.
5819 * src/print.c (shift_set): Rename to...
5820 (no_reduce_set): ... this.
5821 (print_reductions): Update for rename, and add %nonassoc error action
5822 tokens to no_reduce_set so that, when printing the first remaining
5823 reduction on an error action token, the reduction is enclosed in
5824 brackets.
5825 (print_results): Update for rename.
5826 * tests/conflicts.at (Solved conflicts report for multiple reductions
5827 in a state): New test case.
5828 (%nonassoc error actions for multiple reductions in a state): New test
5829 case.
5830
5831 * src/main.c (main): Don't depend on C99 features.
5832
5833 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5834
5835 * build-aux/.cvsignore: Add compile.
5836 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5837 uniwidth.
5838
5839 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5840
5841 * bootstrap (slurp): Create target directories that don't exist.
5842 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5843
5844 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5845
5846 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5847 than item number.
5848 * closure.c (closure): Likewise.
5849 * state.h (reductions): Comment sorting of rules.
5850 (state): Comment sorting of items.
5851
5852 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5853
5854 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5855 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5856 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5857 definition in order to avoid Gnulib headers since we don't use config.h
5858 here.
5859 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5860 rather than AT_DATA so that config.h is included.
5861
5862 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5863
5864 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5865 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5866 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5867 and so that YYFPRINTF is guaranteed to be defined here.
5868
5869 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5870
5871 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5872 with...
5873 (muscle_percent_define_check_values): ... this more helpful function.
5874 Again, it's not used yet, but it will be.
5875 * src/muscle_tab.h: Likewise.
5876
5877 Improve some comments in parser table construction.
5878 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5879 (generate_states): Don't mention ruleset, which is internal to closure.
5880 * src/closure.c (closure): Explain sorting of core and itemset, which
5881 is required for this function to behave correctly.
5882 * src/closure.h (closure): Mention sorting.
5883
5884 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5885
5886 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5887 move the check for disabled transitions to an aver since conflict
5888 resolution hasn't happened yet.
5889
5890 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5891 labels a state as inconsistent just because it has error transitions.
5892 The original form of this check appeared in revision 1.1 of lalr.c,
5893 which was committed on 1991-12-21. Now (at least), changing the
5894 consistency label on such a state appears to have no useful effect in
5895 any of the places it is examined, which I enumerate below. The key
5896 point to understanding each item in this enumeration is that a state
5897 with an error transition is labelled consistent in the first place only
5898 if it has no rules, so the check cannot matter for states that have
5899 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5900 to try to identify its conflicts, and a state must have *rules* to have
5901 conflicts. (2) Labelling a state as inconsistent will affect how
5902 action_row sets the default *rule* for the state. (3) Labelling a
5903 state as inconsistent will cause build_relations to add lookback edges
5904 to *rules* in that state.
5905 * src/state.h (struct state): Word the comment for member consistent
5906 more carefully.
5907
5908 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5909
5910 Don't depend on C99 features.
5911 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5912 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5913 * src/reader.c (check_and_convert_grammar): Fix for-loop.
5914 * src/state.c (state_mark_reachable_states): Fix for-loop.
5915 (state_remove_unreachable_states): Fix for-loop.
5916
5917 Don't widen struct state with member reachable just to temporarily
5918 record reachability. Instead, use a local bitset.
5919 * src/state.h (struct state): Remove member.
5920 * src/state.c (state_new): Don't initialize it.
5921 (state_mark_reachable_states): Rename to...
5922 (state_record_reachable_states): ... this, and use bitset.
5923 (state_remove_unreachable_states): Use bitset.
5924
5925 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
5926
5927 * src/Makefile.am (yacc): Quote target action commands properly so
5928 that the yacc script isn't corrupt. Reported by Hans Aberg at
5929 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
5930
5931 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
5932 the case of pure parsers. Reported by Frans Englich at
5933 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
5934 * THANKS: Add Frans Englich.
5935
5936 * NEWS (2.3a+): In the %code entry, reference section `Bison
5937 Declaration Summary' from the manual now since the %code summary has
5938 moved there.
5939 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
5940 in the rules section must be terminated by semicolons.
5941
5942 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
5943
5944 Extend the front-end API for %define variables to more completely
5945 mirror the back-end. This will be useful in the future.
5946 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
5947 Update comments to mention the new front-end counterparts of these
5948 macros.
5949 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
5950 for muscle_string_decode and muscle_location_decode.
5951 (muscle_string_decode): New static function.
5952 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
5953 (muscle_percent_define_get, muscle_percent_define_ifdef): New
5954 functions.
5955 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
5956 muscle_percent_define_get to mimic the b4_percent_define_flag_if
5957 implementation more closely.
5958 (muscle_percent_define_invalid_value): New function.
5959 * src/muscle_tab.h (muscle_percent_define_get,
5960 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
5961 Prototype.
5962
5963 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5964
5965 * NEWS (2.3a+): Mention yesterday's state-removal change.
5966 (2.3a): Remove the %language entry, which was added after 2.3a.
5967 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
5968 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
5969 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
5970 tests/existing.at: Update copyright date.
5971
5972 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5973
5974 If conflict resolution makes states unreachable, remove those states,
5975 report rules that are then unused, and don't report conflicts in those
5976 states.
5977 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
5978 New global function.
5979 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
5980 function.
5981 * src/main.c (main): After conflict resolution, remove the unreachable
5982 states and update all data structures that reference states by number.
5983 * src/state.c (state_new): Initialize each state's reachable member to
5984 false.
5985 (state_mark_reachable_states): New static function.
5986 (state_remove_unreachable_states): New global function.
5987 * src/state.h (struct state): Add member bool reachable.
5988 (state_remove_unreachable_states): Prototype.
5989 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5990 New test case.
5991 * tests/existing.at (GNU pic Grammar): Update test case output now that
5992 an unused rule is discovered.
5993
5994 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5995
5996 Minor code cleanup in parser table construction.
5997 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
5998 (new_itemsets, save_reductions): Update for rename to nitemset.
5999 * src/closure.c (nritemset): Rename to...
6000 (nitemset): ... this since the "r" appears to meaningless and isn't
6001 used in the comments.
6002 (closure): Update for rename.
6003 * src/closure.h (nritemset): Update extern to...
6004 (nitemset): ... this.
6005 * src/lalr.c (LA): Fix a typo in comments.
6006 * src/print.c (print_core): Update for rename to nitemset.
6007 * src/print_graph.c (print_graph): Likewise.
6008 * src/state.h: Fix some typos in header comments.
6009
6010 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6011
6012 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6013 still sticks to ASCII. Sorry!
6014
6015 * README-hacking: New file, taken mostly from coreutils, with changes
6016 for Bison. Contains much of the contents of:
6017 * README-cvs: Remove.
6018 * bootstrap: Sync from gnulib.
6019 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6020 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6021
6022 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6023
6024 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6025 Setzer.
6026 (Java Differences): Fix some typos.
6027 * THANKS: Add Sebastian Setzer.
6028
6029 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
6030
6031 * data/java.m4 (b4_single_class_if): Remove.
6032 (b4_abstract_if): Look at "%define abstract".
6033 (b4_lexer_if): New.
6034 (b4_union_name): Rename...
6035 (b4_yystype): ... to this. Map to "%define stype".
6036 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6037 b4_maybe_throws): Fix quoting.
6038 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6039 * data/lalr1.java (Lexer interface): Always define.
6040 (Lexer interface within parser class): Remove.
6041 (YYLexer class): New, used when "%code lexer" is present.
6042 (constructor): When "%code lexer" is used, pass %lex-param
6043 to the lexer constructor.
6044 (yylex, yyparse): Remove %lex-param from method invocations
6045 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6046
6047 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6048 abstract". Rename "%define union_name" to "%define stype".
6049 Rename method names according to previous patch.
6050 (Java Scanner Interface): Describe "%code lexer" instead of
6051 "%pure-parser" and "%define single_class".
6052 (Java Differences): Mention "%code lexer".
6053
6054 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6055 Include scanner here, using macros from tests/local.at.
6056 (AT_DATA_CALC_Y): Remove final argument.
6057 (_AT_CHECK_JAVA_CALC): Likewise.
6058 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6059 of %locations and %error-verbose.
6060 (main): Test with and without %lex-param.
6061 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6062 (AT_BISON_OPTION_POPDEFS): Pop it.
6063
6064 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6065
6066 DJGPP spefic issue. Inhibit the use of disallowed characters for
6067 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6068 and concern testsuite case 46.
6069 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6070 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6071 * djgpp/config.bat: Inhibit the use of disallowed characters.
6072
6073 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6074
6075 Miscellaneous %define and %code cleanup.
6076 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6077 values are interpreted.
6078 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6079 documentation a little more.
6080 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6081 muscle_percent_define_insert, muscle_percent_code_grow): New
6082 functions/macros.
6083 * src/muscle_tab.h (muscle_percent_define_insert,
6084 muscle_percent_code_grow): Prototype.
6085 * src/parse-gram.y (prologue_declaration): Use
6086 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6087 %define and %code directives.
6088
6089 Make it easy to share %define boolean variables between the front-end
6090 and back-end. Though not used yet, this will be useful in the future.
6091 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6092 Bison uses of names rather than just skeleton uses of names.
6093 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6094 b4_percent_define_skeleton_variables(VARIABLE) to
6095 b4_percent_define_bison_variables(VARIABLE).
6096 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6097 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6098 b4_percent_code_bison_qualifiers(QUALIFIER).
6099 (b4_check_user_names_wrap): Update for renames.
6100 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6101 muscle_percent_define_default): New functions mimicking
6102 b4_percent_define_flag_if and b4_percent_define_default.
6103
6104 For %define variables, report locations for invalid values and
6105 redefinitions.
6106 * data/bison.m4 (b4_percent_define_flag_if): Read
6107 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6108 value for VARIABLE.
6109 (b4_percent_define_default): Save a special location in
6110 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6111 must later be reported as invalid.
6112 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6113 functions.
6114 (muscle_percent_define_insert): Record the location of VARIABLE in
6115 muscle percent_define_loc(VARIABLE), and use it to report the previous
6116 location for a redefinition.
6117 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6118 (muscle_percent_define_default): Update like b4_percent_define_default.
6119 (muscle_grow_user_name_list): Rename to...
6120 (muscle_user_name_list_grow): ... this for consistency and use
6121 muscle_location_grow.
6122 * src/muscle_tab.h (muscle_location_grow): Prototype.
6123 * tests/input.at (%define errors): Update expected output.
6124 * tests/skeletons.at (%define boolean variables: invalid skeleton
6125 defaults): New test case.
6126
6127 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6128
6129 * src/print.c (lookahead_set, state_default_rule): Remove.
6130 (print_reductions): Replace state_default_rule invocation with
6131 equivalent use of yydefact, which was computed in token_actions in
6132 tables.c.
6133 (print_results): Don't allocate lookahead_set.
6134
6135 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
6136
6137 * data/lalr1.java: Prefix all private members with yy.
6138
6139 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6140
6141 Use YYFPRINTF instead of fprintf where appropriate. Reported by
6142 Sebastien Fricker at
6143 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
6144 * THANKS: Add Sebastien Fricker.
6145 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6146 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6147 accept a variable number of arguments.
6148
6149 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6150
6151 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6152
6153 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6154
6155 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6156 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6157 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6158
6159 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6160
6161 Undo my 2007-02-07 change, switching back to the c-strcase module
6162 introduced in the 2007-02-03 change. Bruno Haible reported that
6163 the 2007-02-07 change would be dangerous in Turkish if we add a
6164 language whose name contains "i", since "i" is not lowercase "I"
6165 in Turkish.
6166 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6167 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6168 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6169 * m4/.cvsignore: Remove strcase.m4.
6170 * src/getargs.c: Revert 2007-02-07 change, as follows.
6171 Include c-strcase.h.
6172 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6173
6174 2007-02-11 Bruno Haible <bruno@clisp.org>
6175
6176 Enable the Java related testsuite tests when the only Java compiler
6177 found is a gcj < 4.3. Discussed at
6178 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6179 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6180
6181 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6182
6183 * data/Makefile.am: Update copyright date.
6184 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6185 yypstate_new returns NULL.
6186 (yypstate_new): Return NULL if malloc does.
6187 * src/reader.c (packgram): Move translation of rule actions from the
6188 beginning of packgram to...
6189 (check_and_convert_grammar): ... here right before packgram is invoked
6190 so it's easier to write more complete comments, and remove redundant
6191 code.
6192
6193 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6194
6195 As in semantic actions, make @$ in %initial-action, %destructor, and
6196 %printer imply %locations.
6197 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6198 scanning @$.
6199 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6200 (@$ in %initial-action implies %locations,
6201 @$ in %destructor implies %locations,
6202 @$ in %printer implies %locations): ... these new test cases.
6203
6204 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6205
6206 Undo most of the 2007-02-03 change, switching to the strcase module
6207 now that gnulib strcase has been fixed.
6208 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6209 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6210 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6211 * m4/.cvsignore: Add strcase.m4.
6212 * src/getargs.c: Revert 2007-02-03 change, as follows.
6213 Don't include c-strcase.h.
6214 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6215 strcasecmp has "unspecified behavior" outside the POSIX locale,
6216 but it works fine in practice if at least one argument is ASCII,
6217 as is the case in Bison.
6218
6219 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
6220
6221 * tests/java.at: Skip tests if only one of javac/java is present.
6222 Reported by Joel E. Denny.
6223 * tests/atlocal.in: Adjust copyright years.
6224
6225 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
6226
6227 * data/lalr1.java (Stack): Work around old verifiers that disallow
6228 access to the private fields of an inner class, from the outer class.
6229 We can make Stack's fields public because user code doesn't have access
6230 to the instance of Stack used by parse(). Reported by Paul Eggert.
6231
6232 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6233
6234 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6235 the right spot for these files?
6236 * bootstrap.conf (gnulib_modules): Add c-strcase.
6237 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6238 c-strncasecmp.c.
6239 * src/getargs.c: Include c-strcase.h.
6240 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6241 to avoid unspecified behavior.
6242
6243 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6244
6245 * doc/bison.texinfo (Decl Summary): Correct typo.
6246
6247 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
6248
6249 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6250 Complain if the value does not match empty, "true" or "false".
6251 * data/c++.m4: Adjust default definitions of %define variables.
6252 * data/java.m4: Adjust default definitions of %define variables.
6253 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6254 to above behavior.
6255 * tests/input.at (Boolean %define variables): Test new behavior.
6256
6257 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
6258
6259 * NEWS: Mention java.
6260 * TODO: Remove things that are done.
6261 * bootstrap.conf: Add javacomp-script and javaexec-script.
6262 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6263
6264 * data/Makefile.am: Add new files.
6265 * data/java-skel.m4: New.
6266 * data/java.m4: New.
6267 * data/lalr1.java: New.
6268
6269 * doc/bison.texinfo: Put "A Complete C++ Example" under
6270 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6271 under Other Languages.
6272
6273 * src/getargs.c (valid_languages): Add Java.
6274 * src/getargs.h (struct bison_language): Update size of string fields.
6275
6276 * tests/Makefile.am: Add java.at.
6277 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6278 * tests/java.at: New.
6279 * tests/testsuite.at: Include it.
6280
6281 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6282
6283 Clean up.
6284 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6285 at_directive_argv arguments so these no longer have to be global
6286 variables. Also, update the implementation for the following changes.
6287 (fail_for_at_directive_too_many_args,
6288 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6289 (at_directive_name): Remove as at_directive_argv[0] will be used for
6290 this now.
6291 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6292 for the directive name.
6293 (at_directive_argc, at_directive_argv): Make these local within
6294 skel_lex instead of global.
6295 (INITIAL): Update directive start action for above changes.
6296 (SC_AT_DIRECTIVE_ARG): Rename to...
6297 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6298 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6299 (scan_skel): Move yylex_destroy to...
6300 (skel_scanner_free): ... here.
6301 * tests/skeletons.at (installed skeleton file name): Rename to...
6302 (installed skeleton file names): ... this.
6303
6304 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6305
6306 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6307 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6308 Summary" not "Directives".
6309 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6310 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6311 since the former is now the more complete one.
6312 (Prologue Alternatives): Likewise and do the same for %defines.
6313 (Table of Symbols): Add summary of %code, add summary of %define, and
6314 move full %code documentation to...
6315 (Decl Summary): ... here for consistency with other entries in these
6316 sections.
6317 Move %define entry in order to keep this list alphabetized.
6318 Reword %define entry a little to put less emphasis on the skeleton
6319 concept, which most users shouldn't have to think about.
6320
6321 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6322
6323 Adjust to recent gnulib changes.
6324 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6325 Add string.h, string_.h, unistd_.h, wchar_.h.
6326 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6327 * src/system.h: Don't include <stpcpy.h>; this is now done by
6328 <string.h>.
6329
6330 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
6331
6332 Simplify implementation of unqualified %code, implement macros for
6333 uniform treatment of boolean %define flags. Document %define.
6334 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6335 b4_percent_code_ifdef): New.
6336 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6337 * data/c++.m4: Define default value for global_tokens_and_yystype.
6338 * data/glr.cc: Likewise.
6339 * data/location.cc: Use b4_percent_define_flag_if.
6340
6341 * doc/bison.texinfo (Decl Summary): Document %define.
6342
6343 * src/parse-gram.y (Unqualified %code): Change muscle name to
6344 b4_percent_code().
6345 (content.opt): Default to empty.
6346
6347 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6348
6349 Implement support for relative and absolute skeleton file names.
6350 Discussed starting at
6351 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6352 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6353 (Bison Options): Document in --skeleton entry.
6354 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6355 full_skeleton can't necessarily hold all of pkgdatadir.
6356 If the specified skeleton file name contains a `/', don't prepend
6357 pkgdatadir.
6358 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6359 file name contains a `/', prepend the grammar file directory.
6360 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6361 * skeletons.at: New file.
6362 (relative skeleton file names): New test case.
6363 (installed skeleton file names): New test case.
6364 * tests/testsuite.at: Include skeletons.at.
6365
6366 * bootstrap: Update copyright to 2007.
6367
6368 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
6369
6370 * bootstrap: Remove occurrences of .#bootmp from the files.
6371
6372 2007-01-17 Akim Demaille <akim@epita.fr>
6373
6374 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6375 nonterminals.
6376 Use per-type %printer.
6377
6378 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6379
6380 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6381 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6382 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6383 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6384 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6385 tests/glr-regression.at, tests/input.at, tests/local.at,
6386 tests/output.at, tests/torture.at: Update copyright to 2007.
6387
6388 2007-01-16 Akim Demaille <akim@epita.fr>
6389
6390 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6391 error code.
6392 (Calc++ Scanner): Exit with failure if we can't open the input
6393 file.
6394 Accept "-" standing for stdin.
6395 (Calc++ Top Level): Print the result only if the parsing was
6396 successful.
6397
6398 2007-01-16 Akim Demaille <akim@epita.fr>
6399
6400 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6401
6402 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
6403 and Joel E. Denny <jdenny@ces.clemson.edu>
6404
6405 Clean up %define and %code implementation in M4 some. Most
6406 importantly, rename all related macros to be in the b4_percent_define
6407 and b4_percent_code namespaces. Also, complete support for `.' in
6408 %define variable names and %code qualifiers.
6409 * data/bison.m4 (b4_check_user_names): Check for special
6410 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6411 m4_foreach loops.
6412 (b4_get_percent_define, b4_get_percent_code): Rename to...
6413 (b4_percent_define_get, b4_percent_code_get): ... these.
6414 Extend documentation with examples.
6415 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6416 b4_percent_define_skeleton_variables and
6417 b4_percent_code_skeleton_qualifiers.
6418 Expect any value for the %define variable `foo' to be stored in the
6419 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6420 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6421 expect any unqualified %code blocks to be stored in a macro named
6422 `b4_percent_code_unqualified'.
6423 Use m4_indir so that %define variable names and %code qualifiers can
6424 contain `.', which is allowed by the grammar parser.
6425 (b4_percent_define_default): New macro to set a default value for a
6426 %define variable.
6427 (m4_wrap): Update wrapped code, and fix some underquoting.
6428 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6429 Expect grammar uses of %define variables and %code qualifiers to be
6430 defined in b4_percent_define_user_variables and
6431 b4_percent_code_user_qualifiers.
6432 * data/c++.m4: Use b4_percent_define_default rather than
6433 m4_define_default. Fix some underquoting. Skeleton usage of %define
6434 variable define_location_comparison now implies skeleton usage of
6435 %define variable filename_type.
6436 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6437 data/push.c, data/yacc.c: Update macro names.
6438 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6439 muscle names.
6440
6441 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6442
6443 DJGPP specific issues.
6444
6445 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6446 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6447
6448 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6449
6450 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6451 run parsers in all tests so that Valgrind is invoked during
6452 maintainer-check-valgrind.
6453 (Duplicate representation of merged trees): Free all semantic values.
6454 (Duplicated user destructor for lookahead): Likewise.
6455
6456 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6457
6458 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6459 command-line prefix.
6460 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6461 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6462 miss Valgrind messages.
6463 (Exploding the Stack Size with Malloc): Likewise.
6464
6465 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6466
6467 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6468 locals. Reported by Juan Manuel Guerrero at
6469 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6470 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6471 Fix some indentation also.
6472 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6473 explaining this issue.
6474
6475 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
6476 and Joel E. Denny <jdenny@ces.clemson.edu>
6477
6478 Simplify union and prologue handling, and escape union and lex/parse
6479 params with digraphs.
6480 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6481 values to the empty string since these are no longer guaranteed
6482 initialized by the front-end.
6483 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6484 braces around b4_user_stype since this is no longer done by the
6485 front-end.
6486 * src/files.c, src/files.h (pre_prologue_obstack,
6487 post_prologue_obstack): Remove.
6488 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6489 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6490 with digraphs. This fixes lex params and parse params.
6491 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6492 * src/output.c (prepare): Remove muscle insertion of the prologues.
6493 (output): Remove freeing of pre_prologue_obstack and
6494 post_prologue_obstack.
6495 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6496 than prologue_augment for prologue parsing so you don't need prologue
6497 obstacks.
6498 (grammar_declaration): For %union RHS, use `braceless' instead of
6499 "{...}" so that braces are already stripped and code is escaped with
6500 digraphs.
6501 * src/reader.c (prologue_augment): Remove.
6502 (reader): Remove initialization of pre_prologue_obstack and
6503 post_prologue_obstack.
6504 * src/reader.h (prologue_augment): Remove.
6505
6506 * data/c.m4: Remove stray parenthesis.
6507
6508 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6509
6510 Remove quotes from variables names in %define directives and from
6511 qualifiers in %code directives, and restrict the characters that are
6512 allowed in them to M4-friendly ones. For %define, continue to support
6513 the quoted form as a deprecated feature. Discussed starting at
6514 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6515 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6516 %code.
6517 * doc/bison.texinfo (Prologue Alternatives): Update.
6518 (Decl Summary): In %defines entry, update mention of `%code requires'
6519 and `%code provides'.
6520 (C++ Location Values): Update %define uses.
6521 (Calc++ Parser Interface): Likewise.
6522 (Calc++ Parser): Likewise, and update `%code requires' uses.
6523 (Table of Symbols): Update %code documentation.
6524 * src/parse-gram.y (prologue_declaration): For %define variables, use
6525 `variable' instead of `STRING'.
6526 (grammar_declaration): For %code qualifiers, use `ID' instead of
6527 `STRING'.
6528 (variable): New nonterminal that takes an `ID' or a `STRING'.
6529 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6530 and %define uses.
6531 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6532 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6533 (%define errors): Update %define uses.
6534
6535 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6536
6537 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6538 instead of muscle_insert for %define values so that M4-special
6539 characters are replaced with digraphs.
6540 * tests/input.at (%define errors): Extend to check weird values.
6541
6542 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6543
6544 Instead of having skeletons declare all valid %define variables and
6545 %code qualifiers, provide macros that retrieve the associated values
6546 and build these lists automatically. Thus Bison will now warn when a
6547 variable or qualifier is not used by the skeleton in the current
6548 invocation regardless of whether it might sometimes be used by that
6549 skeleton in other invocations. Also, move all %define value macros to
6550 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6551 form, which is replaced by %code.
6552 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6553 (b4_check_user_names): ... this, and change the series of valid name
6554 arguments to a single list argument for names used in the skeleton
6555 similar to the existing list argument for names used in the grammar.
6556 Warn instead of complaining.
6557 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6558 values and %code code, to format %code code properly, and to build
6559 lists of all %define variables and %code qualifiers used in the
6560 skeleton: b4_skeleton_percent_define_variables and
6561 b4_skeleton_percent_code_qualifiers.
6562 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6563 Remove, and...
6564 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6565 the skeleton names lists can finish building first. In place of
6566 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6567 expect the lists b4_user_percent_define_variables and
6568 b4_user_percent_code_qualifiers.
6569 * data/c++.m4: Where setting default values for b4_parser_class_name,
6570 b4_location_type, b4_filename_type, b4_namespace, and
6571 b4_define_location_comparison, update their names to the
6572 b4_percent_define_ namespace.
6573 * data/glr.c: Don't use b4_check_percent_define_variables and
6574 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6575 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6576 (b4_parser_class_name, b4_namespace): Define these using
6577 b4_get_percent_define for parser_class_name and namespace.
6578 * data/location.cc: Use b4_get_percent_define.
6579 * data/push.c: Don't use b4_check_percent_define_variables and
6580 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6581 * data/yacc.c: Likewise, and don't call m4_exit in
6582 b4_use_push_for_pull_if or m4_wrap code will never execute.
6583 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6584 Rename to...
6585 (muscle_grow_user_name_list): ... this for consistency with the
6586 terminology used in bison.m4.
6587 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6588 %define variable names, and rename muscle used_percent_define_variables
6589 to user_percent_define_variables.
6590 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6591 user_percent_code_qualifiers.
6592 (content): Remove.
6593 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6594 {CODE} form is no longer accepted.
6595 * tests/input.at (Reject bad %code qualifiers): Rename to...
6596 (Reject unused %code qualifiers): ... this, and update test output.
6597 (%define error): Update test output.
6598
6599 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6600
6601 Check for unrecognized %define variables similar to checking for
6602 unrecognized %code qualifiers. Check for redefined %define variables.
6603 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6604 generalizes...
6605 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6606 (b4_check_percent_define_variables): New, also wraps it.
6607 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6608 variables using b4_check_percent_define_variables.
6609 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6610 all those exercised in the test suite and all those listed in the
6611 `Default values' section of c++.m4. Are there others?
6612 * data/push.c, data/yacc.c: Declare no valid %define variables.
6613 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6614 similar to muscle_find, but it works even when the muscle stores a
6615 const value.
6616 (muscle_grow_used_name_list): New function for constructing the used
6617 name list muscles that b4_check_for_unrecognized_names requires.
6618 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6619 %define'd more than once. Define the b4_used_percent_define_variables
6620 muscle with muscle_grow_used_name_list.
6621 (grammar_declaration): Abbreviate %code code with
6622 muscle_grow_used_name_list.
6623 * tests/input.at (%define errors): New.
6624
6625 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6626
6627 Provide warn_at, complain_at, and fatal_at function callbacks to the
6628 skeletons, and use this for %code qualifier complaints.
6629 * data/bison.m4 (b4_error_at): New, invoked by...
6630 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6631 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6632 @fatal_at(...@) directives.
6633 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6634 qualifiers in b4_used_percent_code_qualifiers and to use
6635 b4_complain_at.
6636 * src/location.c, src/location.h (boundary_set_from_string): New global
6637 function.
6638 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6639 function.
6640 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6641 to b4_used_percent_code_qualifiers.
6642 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6643 function.
6644 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6645 (lineno): Rename to...
6646 (out_lineno): ... this so I don't misunderstand it again.
6647 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6648 here; these newlines are in the input but not the output file.
6649 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6650 (at_directive_perform): ... this new static function, and add handling
6651 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6652 directives.
6653 * tests/input.at (Reject bad %code qualifiers): Update test output with
6654 locations and extend.
6655
6656 * tests/output.at (Output file name: [, Output file name: ]): Remove
6657 bogus comment about these tests failing.
6658
6659 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6660
6661 Clean up b4_check_percent_code_qualifiers a little.
6662 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6663 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6664 documentation and add examples.
6665 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6666 qualifiers here.
6667
6668 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6669
6670 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6671 unreliable -- especially when they're hidden inside another macro.
6672 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6673 data/c.m4: Remove m4_divert(-1).
6674 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6675 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6676 m4_divert_push(0) and m4_divert_pop(0).
6677 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
6678 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6679 pushed and popped by m4sugar, should be first on the stack.
6680
6681 Provide warn, complain, and fatal function callbacks to the skeletons.
6682 This provides more flexibility than m4_fatal, improves the error
6683 message format, and captures messages for translation. Discussed
6684 starting at
6685 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6686 * data/bison.m4 (b4_error): New, invoked by...
6687 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6688 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6689 directives. Because these M4 macros might be called when the current
6690 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6691 the previous removal of uses of m4_divert, which caused trouble.
6692 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6693 m4_fatal to report unrecognized %code qualifiers.
6694 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6695 push parser requests.
6696 * data/glr.c: Use b4_complain instead of m4_fatal to report
6697 non-deterministic push parser requests.
6698 Update @output usage to @output(...@) form.
6699 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6700 report missing %defines. Update @output usage to @output(...@) form.
6701 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6702 @output(...@) form.
6703 * src/main.c (main): Invoke skel_scanner_free.
6704 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6705 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6706 obstack_for_string from flex-scanner.h.
6707 (YY_DECL): Use to declare skel_lex static.
6708 (decode_at_digraphs): Remove; now handled in the new
6709 SC_AT_DIRECTIVE_ARG start condition.
6710 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6711 functions.
6712 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6713 at_directive_argv): New static globals.
6714 (INITIAL): Use fail_for_invalid_at.
6715 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6716 recognize the start of a generalized `@directive(...@)' form and
6717 start...
6718 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6719 directive args (using the new obstack_for_string), to decode the
6720 contained @ diagraphs, and to perform the directive. It recognizes
6721 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6722 @output(...@).
6723 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6724 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6725 `@,'.
6726 (scan_skel): Initialize obstack_for_string on the first call.
6727 (skel_scanner_free): New function to free obstack_for_string.
6728 * tests/input.at (Reject bad %code qualifiers): Update test output.
6729
6730 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6731
6732 Consolidate the 4 prologue alternative directives (%code, %requires,
6733 %provides, and %code-top) into a single %code directive with an
6734 optional qualifier field. Discussed at
6735 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6736 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6737 alternatives.
6738 * doc/bison.texinfo (Prologue Alternatives): Update.
6739 (Decl Summary): Update to %code "requires" and %code "provides".
6740 (Calc++ Parser): Update to %code "requires".
6741 (Table of Symbols): Remove entries for %requires, %provides, and
6742 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6743 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6744 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6745 which are skeleton-specific.
6746 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6747 declare what %code qualifiers it supports and to complain if any other
6748 qualifiers were used in the grammar.
6749 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6750 and b4_user_code([b4_percent_code_provides]) in place of
6751 b4_user_requires and b4_user_provides.
6752 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6753 Add b4_user_code([b4_percent_code_top]) and
6754 b4_user_code([b4_percent_code]).
6755 Invoke b4_check_percent_code_qualifiers.
6756 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6757 PERCENT_REQUIRES): Remove.
6758 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6759 %requires. Rewrite the %code RHS as the unqualified form defining the
6760 muscle b4_percent_code. Add another RHS for the qualified %code form,
6761 which defines muscles of the form b4_percent_code_QUALIFIER and the
6762 b4_used_percent_code_qualifiers muscle.
6763 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6764 PERCENT_REQUIRES): Remove.
6765 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6766 %code "requires" and %code "provides".
6767 * tests/input.at (Reject bad %code qualifiers): New.
6768
6769 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6770
6771 Use the new code_props interface for destructors and printers.
6772 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6773 printer_location members, and change the type of the destructor and
6774 printer members to code_props.
6775 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6776 symbol_printer_get, semantic_type_destructor_set,
6777 semantic_type_printer_set, default_tagged_destructor_set,
6778 default_tagless_destructor_set, default_tagged_printer_set,
6779 default_tagless_printer_set): Use code_props in arguments and return
6780 types in place of char const * and location.
6781 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6782 since the locations are now contained in the return of
6783 symbol_destructor_get and symbol_printer_get.
6784 * src/output.c (symbol_destructors_output, symbol_printers_output):
6785 Replace with...
6786 (symbol_code_props_output): ... this to eliminate duplicate code.
6787 (output_skeleton): Update to use symbol_code_props_output.
6788 * src/reader.c (symbol_should_be_used): Update use of
6789 symbol_destructor_get.
6790 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6791 Update uses of the various _destructor_set and _printer_set functions.
6792 * src/symtab.c: (default_tagged_destructor_location,
6793 default_tagless_destructor_location, default_tagged_printer_location,
6794 default_tagless_printer_location): Remove since we...
6795 (default_tagged_destructor, default_tagless_destructor,
6796 default_tagged_printer, default_tagless_printer): ... change the type
6797 of these to code_props.
6798 (symbol_new, semantic_type_new, symbol_destructor_set,
6799 semantic_type_destructor_set, symbol_destructor_get,
6800 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6801 symbol_check_alias_consistency, default_tagged_destructor_set,
6802 default_tagless_destructor_set, default_tagged_printer_set,
6803 default_tagless_printer_set): Update.
6804 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6805 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6806 code_props members.
6807 (symbol_print): Use SYMBOL_CODE_PRINT.
6808
6809 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6810
6811 Use the new code_props interface for rule actions.
6812 * src/symlist.h (symbol_list): Replace action, action_location, and
6813 used members with a code_props action_props member.
6814 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6815 grammar_midrule_action, grammar_current_rule_merge_set,
6816 grammar_current_rule_symbol_append, packgram): Update.
6817 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6818 * src/scan-code.l (handle_action_dollar): Update.
6819 (translate_rule_action): Remove, no longer used.
6820 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6821
6822 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6823
6824 Use the new code_props interface in parse-gram.y.
6825 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6826 Update all uses of translate_* functions to use the new code_props
6827 interface and to use gram_scanner_last_string_free and
6828 code_scanner_last_string_free where possible.
6829 (grammar_declaration): symbol_list_destructor_set and
6830 symbol_list_printer_set now perform the translation, so don't do it
6831 here. Use gram_scanner_last_string_free where possible.
6832 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6833 translate_code): Remove, no longer used.
6834 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6835 symbol_list_printer_set): Perform code translation here rather than
6836 depending on the caller to do so.
6837
6838 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6839 * src/scan-gram.h (gram_last_string): Remove declaration.
6840 * src/scan-gram.l (last_string): Declare it static.
6841
6842 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6843
6844 Encapsulate code properties and related functionality for the various
6845 destructors, printers, and actions into a code_props structure and
6846 interface. This patch merely implements code_props in scan-code.h and
6847 scan-code.l. Future patches will rewrite other modules to use it.
6848 Discussed starting at
6849 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6850 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6851 consistently initialize const structs that have an empty location
6852 field.
6853 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6854 to ensure consistency.
6855 * src/scan-code.h (code_props): New structure.
6856 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6857 function, macro, and const global variable for initializing a
6858 code_props with no code.
6859 (code_props_plain_init, code_props_symbol_action_init,
6860 code_props_rule_action_init, code_props_translate_code): The rest of
6861 the new code_props functional interface. Among other things, the init
6862 functions set the code_props kind field so that
6863 code_props_translate_code will know whether to behave like
6864 translate_symbol_action, translate_rule_action, or translate_code.
6865 These old translate functions must remain until all other modules are
6866 updated to use the new code_props interface.
6867 (code_scanner_last_string_free): New function similar to
6868 gram_scanner_last_string_free.
6869 (code_scanner_free): Add documentation.
6870 * src/scan-code.l: Implement the new interface.
6871 (code_lex): Make it static, add a code_props* argument, and remove the
6872 rule argument.
6873 (last_string): New static global similar to the one in scan-gram.l.
6874 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6875 instead of rule.
6876 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6877 code_props since Bison may one day use this information for destructors
6878 and printers.
6879 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6880 (handle_action_dollar): Use symbol_list_n_get and set used flag
6881 directly since symbol_list_n_used_set is removed.
6882 (translate_action): Add a code_props* argument and remove the rule,
6883 action, and location arguments. Pass the code_props* on to code_lex.
6884 (translate_rule_action, translate_symbol_action, translate_code):
6885 Rewrite as wrappers around the new code_props interface.
6886 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6887 it would eventually need to break the encapsulation of code_props.
6888
6889 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6890
6891 * etc/.cvsignore: New.
6892
6893 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6894
6895 Add maintainer-push-check to run maintainer-check using push parsing in
6896 place of pull parsing where available.
6897 * Makefile.am (maintainer-push-check): New.
6898 * data/bison.m4 (b4_use_push_for_pull_if): New.
6899 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6900 appropriately based on their existing values.
6901 (yypush_parse): Don't print push-parser-specific diagnostics if push
6902 parsing is being used in place of pull parsing.
6903 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6904 push.c.
6905 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6906 variable, and insert b4_use_push_for_pull_flag into muscles.
6907 * tests/Makefile.am (maintainer-push-check): New.
6908
6909 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6910
6911 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6912 (whether successful or failed) so that yypush_parse can be invoked
6913 again to start a new parse using the same yypstate.
6914 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
6915 check multiple yypull_parse invocations on the same yypstate. For pull
6916 mode, extend to check multiple yyparse invocations.
6917 (Exploding the Stack Size with Alloca): Extend to try with
6918 %push-pull-parser.
6919 (Exploding the Stack Size with Malloc): Likewise.
6920
6921 * tests/calc.at (Simple LALR Calculator): Don't specify
6922 %skeleton "push.c" since %push-pull-parser implies that now.
6923 * tests/headers.at (export YYLTYPE): Don't check for the push
6924 declarations. Otherwise, this test case can't be used to see if push
6925 mode can truly emulate pull mode.
6926 * tests/input.at (Torturing the Scanner): Likewise.
6927 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
6928 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
6929 AT_YACC_IF, which now includes the case of push mode since %skeleton
6930 need not be used for push mode. This will be more intuitive once
6931 push.c is renamed to yacc.c.
6932
6933 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6934
6935 For push mode, convert yyparse from a macro to a function, invoke yylex
6936 instead of passing a yylexp argument to yypull_parse, and don't
6937 generate yypull_parse or yyparse unless %push-pull-parser is declared.
6938 Discussed starting at
6939 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
6940 * data/bison.m4 (b4_pull_if): New.
6941 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
6942 * data/push.c: Improve M4 quoting a little.
6943 (b4_generate_macro_args, b4_parenthesize): Remove.
6944 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
6945 any time a pull parser is requested.
6946 Don't #define this as a wrapper around yypull_parse. Instead, when
6947 both push and pull are requested, make it a function that does that
6948 same thing.
6949 (yypull_parse): If there's a b4_prefix, #define this to
6950 b4_prefix[pull_parse] when both push and pull are requested.
6951 Don't define this as a function unless both push and pull are
6952 requested.
6953 Remove the yylexp argument and hard-code yylex invocation instead.
6954 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
6955 %push-parser.
6956 * src/getargs.c (pull_parser): New global initialized to true.
6957 * getargs.h (pull_parser): extern it.
6958 * src/output.c (prepare): Insert pull_flag muscle.
6959 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
6960 (prologue_declaration): Set both push_parser and pull_parser = true for
6961 %push-pull-parser. Set push_parser = true and pull_parser = false for
6962 %push-parser.
6963 * src/scan-gram.l: Don't accept %push_parser as an alternative to
6964 %push-parser since there's no backward-compatibility concern here.
6965 Scan %push-pull-parser.
6966 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
6967 instead of %push-parser.
6968 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
6969 prototype it in the module that calls yyparse.
6970 * tests/input.at (Torturing the Scanner): Likewise.
6971 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
6972
6973 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
6974
6975 Update etc/bench.pl. Optimize push mode a little (the yyn change
6976 deserves most of the credit).
6977 * Makefile.am (SUBDIRS): Add etc subdirectory.
6978 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
6979 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
6980 yytoken, yyval, and yyloc declarations to...
6981 (yyparse or yypush_parse): ... here to improve performance. For
6982 yypush_parse invocations after the first, be sure to assign yyn its old
6983 value again.
6984 (yypstate_new): Don't bother initializing the yyresult field since the
6985 initial value isn't used.
6986 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
6987 remove the #define that, in push mode, set it to yyps->NAME.
6988 * etc/Makefile.am: New.
6989 * etc/bench.pl: Remove and build it instead from...
6990 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
6991 "tests/bison" from the build directory by default rather than just
6992 invoking "bison" from $PATH.
6993 (calc_grammar): Update push parser code: don't declare yylval globally,
6994 don't define yyparse_wrapper, and don't #define yyparse.
6995 (bench_grammar): Update to check all working combinations of yacc.c,
6996 push.c, impure, pure, pull, and push.
6997
6998 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6999
7000 For push mode, add pull wrappers around yypush_parse.
7001 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7002 (yypull_parse): New function wrapping yypush_parse.
7003 (yyparse): New #define wrapping yypull_parse.
7004 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7005 is declared.
7006 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7007 prototype yylex in the module that calls yyparse, and don't prototype
7008 yyparse there. Otherwise, the yyparse expansion won't compile.
7009 * tests/input.at (Torturing the Scanner): Likewise.
7010
7011 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7012
7013 Enable push parsers to operate in impure mode. Thus, %push-parser no
7014 longer implies %pure-parser. The point of this change is to move
7015 towards being able to test the push parser code by running the entire
7016 test suite as if %push-parser had been declared.
7017 * data/push.c (yypush_parse): For impure mode, remove the
7018 yypushed_char, yypushed_val, and yypushed_loc arguments.
7019 Instead, declare these as local variables initialized to the global
7020 yychar, yylval, and yylloc.
7021 For the first yypush_parse invocation only, restore the initial values
7022 of these global variables when it's time to read a token since they
7023 have been overwritten.
7024 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7025 %push-parser.
7026 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7027 %pure-parser along with %push-parser since this test case was designed
7028 for pure push parsers.
7029 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7030 (AT_YACC_OR_PUSH_IF): New.
7031 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7032 add a note that it's still wrong for some cases (as it has been for a
7033 while).
7034 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7035 %push-parser no longer implies %pure-parser.
7036
7037 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7038
7039 Remove some unnecessary differences between the pull parser code and
7040 the push parser code. This patch enables yynerrs in push mode.
7041 * data/push.c: Reformat M4 a little.
7042 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7043 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7044 because push mode is on. Instead, if pure mode is on, move yynerrs
7045 to...
7046 (b4_declare_parser_state_variables): ... here.
7047 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7048 to yyps->NAME so it can be used in yypush_parse.
7049 (yypush_parse): Don't omit uses of yynerrs in push mode.
7050
7051 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7052
7053 Fix bug such that the first pushed token's value and location are
7054 sometimes overwritten (sometimes by %initial-action) before being used.
7055 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7056 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7057 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7058 more closely mimic the pull parser logic.
7059 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7060 time to read a token, which is after any initialization of yylval and
7061 yylloc.
7062 (gottoken): Rename label to...
7063 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7064 user namespace.
7065
7066 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7067
7068 Rearrange initialization of the parser state variables so that the
7069 skeleton doesn't have to have a copy for pull mode and another for push
7070 mode. This patch also fixes at least a bug such that yylloc was not
7071 initialized (with b4_location_initial_line and
7072 b4_location_initial_column) upon calling yypush_parse. However, that
7073 initialization now overwrites the first token's location;
7074 %initial-action assigning @$ already did the same thing, and both bugs
7075 will be fixed in a later patch.
7076 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7077 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7078 yyss, yyvs, yyls, and yystacksize.
7079 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7080 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7081 yylsp.
7082 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7083 yyps->NAME so it can be used in yypush_parse.
7084 (yyparse or yypush_parse): For yypush_parse, don't print the
7085 "Starting parse" diagnostic for invocations after the first.
7086 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7087 yypush_parse, only do it for the first invocation.
7088 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7089 initialization to occur in yypush_parse but only on the first
7090 invocation.
7091
7092 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7093
7094 * data/push.c: Add CPP guards around push parser declarations in both
7095 the header and the code file.
7096 In the code file, move the push parser declarations to the same place
7097 they appear in the header file.
7098 Clean up the M4 some, especially the inconsistent underquoting in
7099 some b4_c_function_def and b4_c_function_decl uses.
7100
7101 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7102
7103 Encapsulate the push parser state variables into an M4 macro so the
7104 push skeleton doesn't have to list them again for pull mode's yyparse.
7105 For push mode, remove yypush_parse's local equivalents of these
7106 variables to eliminate unnecessary copying between the two sets at
7107 run-time. This patch also fixes at least a bug related to multiple
7108 %initial-action invocations in push mode.
7109 * data/push.c (b4_declare_parser_variables): Rename to...
7110 (b4_declare_scanner_communication_variables): ... this for clarity and
7111 update both uses.
7112 (b4_declare_yyparse_variables): Remove and move its contents to the one
7113 spot where it was invoked.
7114 (b4_declare_parser_state_variables): New macro containing the parser
7115 state variables required by push mode.
7116 (struct yypstate): Replace all fields but yynew with
7117 b4_declare_parser_state_variables.
7118 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7119 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7120 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7121 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7122 parser state variable declarations with
7123 b4_declare_parser_state_variables.
7124 Don't initialize parser state variables when calling yypush_parse since
7125 yypstate_new already does that.
7126 Invoke the user's initial action only upon the first yypush_parse
7127 invocation.
7128 Remove all code that copies between the local parser state variables
7129 and the yypstate.
7130
7131 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7132
7133 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7134 prevent a name collision in a future patch where these names will
7135 sometimes be #define'd.
7136 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7137 since it no longer has the same name as the existing argument.
7138 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7139
7140 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
7141 and Joel E. Denny <jdenny@ces.clemson.edu>
7142
7143 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7144 that the argument is case-insensitive, and there's no `=' here.
7145 For the %skeleton entry, mention that %language is better.
7146 (Bison Options): Likewise for --language and --skeleton. Move the
7147 --skeleton entry so that the `Tuning the parser' section is sorted
7148 alphabetically on long options.
7149 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7150 %language directive in detail here; cross-reference the %language
7151 documentation instead.
7152 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7153 `%require "2.3b"' so that the example is always up-to-date.
7154 (Table of Symbols): Add entries for %language and %skeleton.
7155 * examples/extexi (normalize): Instead of replacing every %require
7156 argument with the current Bison version, just substitute for
7157 `@value{VERSION}'. This guarantees that we're testing what actually
7158 appears in the documentation.
7159 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7160 rather than `@VERSION@'.
7161
7162 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7163
7164 * NEWS: Reword the %language news a bit, and put it earlier.
7165
7166 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7167 Rewrite to simplify the logic.
7168 (language_argmatch): Likewise.
7169 (program_name): We now own this var.
7170 * src/getargs.h (struct bison_language): Use char[] rather than
7171 const char *.
7172
7173 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7174 Java is supported.
7175 * src/complain.c (program_name): Remove decl; no longer needed.
7176 * src/main.c (program_name): Remove; now belongs to getargs.
7177
7178 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
7179
7180 * NEWS: Document %language.
7181
7182 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7183
7184 * data/c-skel.m4, data/c++-skel.m4: New files.
7185 * data/glr.c: Complain on push parsers.
7186
7187 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7188 over %skeleton.
7189 (Decl Summary): Document %language and %skeleton.
7190 (Command line): Document -L.
7191
7192 * examples/extexi: Rewrite %require directive.
7193 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7194
7195 * src/files.c (compute_exts_from_gc): Look in language structure
7196 for .y extension.
7197 (compute_file_name_parts): Check whether .tab should be added.
7198 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7199 (language, skeleton_arg, language_argmatch): New.
7200 (long_options): Add --language.
7201 (getargs): Use skeleton_arg, add -L/--language.
7202 * src/getargs.h: Include location.h.
7203 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7204 * src/output.c (prepare): Pick default skeleton from struct language.
7205 Don't dispatch C skeletons here.
7206 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7207 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7208 * src/scan-gram.l ("%language"): New rule.
7209
7210 * tests/calc.at: Test %skeleton and %language.
7211 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7212 (AT_GLR_IF): Look for %skeleton "glr.cc".
7213 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7214 (AT_YACC_IF): Reject %language.
7215
7216 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7217
7218 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7219 since it wasn't used; only the typedef name 'semantic_type' is needed.
7220 Also, omit trailing white space.
7221
7222 * bootstrap: Sync from coreutils.
7223 (gnulib_extra_files): Add build-aux/announce.gen.
7224 (slurp): Adjust .gitignore files like .cvsignore files.
7225 * build-aux/announce-gen: Remove from CVS, since bootstrap
7226 now creates this.
7227
7228 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7229
7230 Make %push-parser imply %pure-parser. This fixes several bugs; see
7231 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7232 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7233 pure_parser = true.
7234 * data/push.c: Don't bother testing b4_push_if when deciding whether
7235 to expand b4_declare_parser_variables globally.
7236 (yypush_parse): Likewise in here.
7237
7238 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7239 (yy_reduce_print): Reformat M4 for readability.
7240
7241 2006-12-15 Bob Rossi <bob@brasko.net>
7242 and Joel Denny <jdenny@ces.clemson.edu>
7243
7244 * data/push.c (yypstate): Add typedef, and update all uses of
7245 struct yypstate to just yypstate.
7246 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7247
7248 2006-12-14 Bob Rossi <bob@brasko.net>
7249
7250 * data/push.c (yypush_parse): Declare prototype regardless of
7251 %locations option.
7252
7253 2006-12-14 Bob Rossi <bob@brasko.net>
7254
7255 * data/push.c (yyparse): Remove the prototype and the #define when in
7256 push-parser mode.
7257
7258 2006-12-13 Bob Rossi <bob@brasko.net>
7259
7260 * data/push.c (yypstate_init): Rename to...
7261 (yypstate_new): ... this and use b4_c_function_def.
7262 (yypstate_delete): New.
7263 (yypush_parse): Change parameters yynval and yynlloc to be const.
7264 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7265 yypstate_delete functions.
7266
7267 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7268
7269 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7270 strange test case titles. Reported by Bob Rossi.
7271
7272 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7273
7274 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7275 of potential ambiguities in GLR grammers.
7276
7277 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7278
7279 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7280 `bison ', use m4_index instead of m4_substr since chopping up a string
7281 containing M4-special characters causes problems here.
7282
7283 Fix a couple of bugs related to special characters in user-specified
7284 file names, and make it easier for skeletons to compute output file
7285 names with the same file name prefix as Bison-computed output file
7286 names.
7287 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7288 b4_parser_file_name and b4_spec_defines_file instead of
7289 @output_parser_name@ and @output_header_name@, which are now redundant.
7290 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7291 b4_parser_file_name, b4_spec_defines_file, and the new
7292 @basename(FILENAME@) instead of @output_parser_name@ and
7293 @output_header_name@, which inappropriately escaped the file names as
7294 C string literals.
7295 * src/files.c (all_but_ext): Remove static qualifier.
7296 (compute_output_file_names): Move `free (all_but_ext)' to...
7297 (output_file_names_free): ... here since all_but_ext is needed later.
7298 * src/files.h (all_but_ext): Extern.
7299 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7300 exactly what MUSCLE_INSERT_STRING used to do.
7301 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7302 characters are escaped properly.
7303 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7304 all_but_ext.
7305 For pkgdatadir muscle, maintain previous functionality by using
7306 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7307 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7308 digraphs would never be expanded. Hopefully no one has M4-special
7309 characters in his Bison installation path.
7310 * src/scan-skel.l: Don't parse @output_header_name@ and
7311 @output_parser_name@ anymore since they're now redundant.
7312 In @output, use decode_at_digraphs.
7313 Parse a new @basename command that invokes last_component.
7314 (decode_at_digraphs): New.
7315 (BASE_QPUTS): Remove unused.
7316 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7317 (Output file name): New tests.
7318
7319 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7320
7321 Warn about output files that are generated by the skeletons and that
7322 conflict with other output files.
7323 * data/glr.c: Don't generate the header file here when glr.cc does.
7324 * src/files.c (file_names, file_names_count): New static globals.
7325 (compute_output_file_names): Invoke output_file_name_check for files
7326 not generated by the skeletons and remove existing checks.
7327 (output_file_name_check): New function that warns about conflicting
7328 output file names.
7329 (output_file_names_free): Free file_names.
7330 * src/files.h (output_file_name_check): Declare.
7331 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7332 the skeletons.
7333 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7334 (Conflicting output files): New tests.
7335
7336 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7337
7338 * doc/bison.texinfo: Fix a couple of typos.
7339
7340 2006-12-08 Bob Rossi <bob@brasko.net>
7341
7342 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7343 Rename to...
7344 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7345 update all uses.
7346 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7347 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7348 local pv.
7349 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7350 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7351
7352 2006-12-07 Bob Rossi <bob@brasko.net>
7353 and Joel Denny <jdenny@ces.clemson.edu>
7354
7355 * data/push.c (yypvarsinit): Change return type from void* to struct
7356 yypvars*. No longer cast to void* on return.
7357 (struct yypvars): Remove yylen since it need not be remembered between
7358 yypushparse invocations.
7359 (yypushparse): Don't copy between yylen and pv->yylen.
7360
7361 2006-12-05 Bob Rossi <bob@brasko.net>
7362
7363 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7364 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7365 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7366 (struct yypvars): Remove b4_declare_parser_variables.
7367 (yypvarsinit): Remove init code for removed variables.
7368 (global scope): Do not declare b4_declare_parser_variables if
7369 push or pure mode.
7370 (yypushparse): Add b4_declare_parser_variables.
7371 Init new local variables, and remove init code for removed
7372 yypvars variables.
7373 (yyparse): Delete.
7374 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7375 and yyparse for other modes.
7376 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7377 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7378 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7379 (AT_PURE_LEX_IF): True if pure or push parser.
7380
7381 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7382
7383 Document Yacc prologue alternatives and default %destructor's and
7384 %printer's as experimental. Don't mention Java yet. Discussed at
7385 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7386 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7387 (2.3a): Annotate this entry to say the old forms of these features were
7388 also experimental.
7389 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
7390 Table of Symbols): Say they're experimental. Comment out any mention
7391 of Java (we'll want this back eventually).
7392
7393 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7394
7395 Support a file name argument to %defines. Deprecate `=' in
7396 %file-prefix, %name-prefix, and %output. Discussed at
7397 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7398 * NEWS (2.3a+): Mention.
7399 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
7400 form of %defines, and remove `=' from entries for %file-prefix,
7401 %name-prefix, and %output.
7402 * src/parse-gram.y (prologue_declaration): Implement.
7403 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7404 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7405 all but one occurrence of %name-prefix.
7406 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7407 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7408 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7409 occurrence of each of %file-prefix and %output. Add check for %defines
7410 with argument.
7411 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7412 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7413 Remove the `=' from %output.
7414
7415 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7416
7417 Don't escape $ in test case titles since Autoconf 2.61 now does that
7418 correctly.
7419 * tests/actions.at (Default %printer and %destructor are not for error
7420 or $undefined): Here.
7421 (Default %printer and %destructor are not for $accept): Here.
7422 * tests/input.at (Invalid $n and @n): Here.
7423
7424 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7425
7426 Rename <!> to <>. Discussed starting at
7427 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7428 * NEWS (2.3a+): Update.
7429 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
7430 Update.
7431 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7432 * src/scan-gram.l (INITIAL): Implement.
7433 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7434 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7435 comment.
7436 * tests/actions.at (Default tagless %printer and %destructor,
7437 Default tagged and per-type %printer and %destructor,
7438 Default %printer and %destructor are not for error or $undefined,
7439 Default %printer and %destructor are not for $accept,
7440 Default %printer and %destructor for mid-rule values): Update.
7441 * tests/input.at (Default %printer and %destructor redeclared,
7442 Unused values with default %destructor): Update.
7443
7444 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7445
7446 Don't let %prec take a nonterminal.
7447 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7448 token.
7449 * tests/input.at (%prec takes a token): New test checking that %prec
7450 won't take a nonterminal.
7451
7452 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7453
7454 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7455 it was double-quoted.
7456 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7457 grammar is maintained with Bison's highest standards.
7458 * src/getargs.c: Fix some typos in Doxygen comments.
7459
7460 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7461
7462 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7463 later. Reported by Paul Eggert in
7464 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7465 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7466 * src/scan-code.l (translate_action): Don't bother invoking
7467 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7468 (code_scanner_free): Instead of invoking
7469 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7470 which frees more.
7471 * src/scan-gram.l (gram_scanner_free): Likewise.
7472 * src/scan-skel.l (scan_skel): Likewise.
7473
7474 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7475
7476 * src/files.c (tr): Change return type to void.
7477 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7478 has been called previously for the same key.
7479 (muscle_find): Return storage instead of value so that
7480 --enable-gcc-warnings doesn't produce warnings that the return discards
7481 const. aver that the value and storage are the same since storage
7482 could potentially be NULL when value is not.
7483 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7484 same as 0.
7485
7486 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7487
7488 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7489 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7490 us a slightly cleaner distribution, and also works.
7491 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7492 gnulib changes.
7493
7494 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7495 and Paul Eggert <eggert@cs.ucla.edu>
7496
7497 Don't let Bison leak memory except when it complains.
7498 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7499 (spec_defines_file, dir_prefix): Now char *, not const char *,
7500 since they are freed.
7501 * src/files.c: Likewise.
7502 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7503 Likewise.
7504 (tr): Now operates in-place. All uses changed.
7505 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7506 values.
7507 (compute_file_name_parts, compute_output_file_names): Don't store
7508 read-only data in variables that will be freed.
7509 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7510 src_extension, and header_extension.
7511 (output_file_names_free): New public function to free
7512 spec_verbose_file, spec_graph_file, spec_defines_file,
7513 parser_file_name, and dir_prefix.
7514 * src/getargs.c (getargs): Don't store read-only data in variables that
7515 will be freed.
7516 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7517 (which previously existed but was unused), and quotearg_free.
7518 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7519 * src/muscle_tab.c: Likewise.
7520 (muscle_entry): Make the value char const *,
7521 and add a new storage member that is char * and can be freed.
7522 (muscle_entry_free): New private function.
7523 (muscle_init): Use it instead of free.
7524 (muscle_insert, muscle_grow): Update and use new storage member.
7525 (muscle_code_grow): Free the string passed to muscle_grow
7526 since it's not needed anymore.
7527 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7528 add a new `char *code' member.
7529 ("{...}"): Declare semantic type as code.
7530 * src/scan-code.h (translate_rule_action):
7531 (translate_symbol_action, translate_code, translate_action): Return
7532 `char const *' rather than `char *' since external code should not free
7533 these strings.
7534 * src/scan-code.l: Likewise.
7535 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7536 which is "{...}" in the parser.
7537 * tests/Makefile.am (maintainer-check-valgrind): Set
7538 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7539 Valgrind.
7540 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7541 complain.
7542 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7543 expecting a non-zero exit status sets --leak-check=summary and
7544 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7545 this case, and we don't want to hear about it.
7546
7547 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7548
7549 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7550 instead of from the template, to simplify configuration a bit.
7551 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7552 and m4/wint_t.m4, as they are needed with the latest gnulib.
7553
7554 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7555
7556 Disable unset/unused mid-rule value warnings by default, and recognize
7557 --warnings=midrule-values to enable them. Discussed starting at
7558 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7559 * NEWS (2.3a+): Mention.
7560 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7561 warnings): Add entry for midrule-values subargument.
7562 * src/reader.c (symbol_should_be_used): Don't return true just because
7563 the value is a set/used mid-rule value unless
7564 --warnings=midrule-values was specified.
7565 * tests/input.at (Unused values, Unused values before symbol
7566 declarations): Run tests with and without --warnings=midrule-values.
7567
7568 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7569 than LIST_FREE directly.
7570
7571 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7572
7573 Finish implementing --warnings=error, which should not be implied by
7574 --warnings=all (or by its synonyms -W and --warnings without
7575 subarguments).
7576 * src/complain.c (set_warning_issued): New function to report that
7577 warnings are being treated as errors and to record an error if so.
7578 Invoke...
7579 (warn_at, warn): ... here.
7580 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7581 "error - warnings are errors" does not appear above "all - all of the
7582 above".
7583 (getargs): For -W and --warnings without subarguments, don't let
7584 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7585 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7586
7587 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7588
7589 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7590 empty subargument list. For example: `bison --warnings= parser.y'.
7591
7592 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7593
7594 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7595 the parser header file so that gcc doesn't warn.
7596
7597 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7598
7599 Split the default %destructor/%printer into two kinds: <*> and <!>.
7600 Discussed starting at
7601 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7602 * NEWS (2.3a+): Mention.
7603 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7604 previous change today related to mid-rules.
7605 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
7606 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
7607 (TYPE_TAG_ANY): Add as <*>.
7608 (TYPE_TAG_NONE): Add as <!>.
7609 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7610 for <*> and <!>.
7611 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7612 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7613 * src/symlist.c (symbol_list_default_new): Split into tagged and
7614 tagless versions.
7615 (symbol_list_destructor_set, symbol_list_printer_set): Split
7616 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7617 SYMLIST_DEFAULT_TAGLESS.
7618 * src/symlist.h: Update symbol_list_default*_new prototypes.
7619 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7620 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7621 * src/symtab.c (default_destructor, default_destructor_location,
7622 default_printer, default_printer_location): Split each into tagged and
7623 tagless versions.
7624 (symbol_destructor_get, symbol_destructor_location_get,
7625 symbol_printer_get, symbol_printer_location_get): Implement tagged
7626 default and tagless default cases.
7627 (default_destructor_set, default_printer_set): Split each into tagged
7628 and tagless versions.
7629 * src/symtab.h: Update prototypes.
7630 * tests/actions.at (Default %printer and %destructor): Rename to...
7631 (Default tagless %printer and %destructor): ... this, and extend.
7632 (Per-type %printer and %destructor): Rename to...
7633 (Default tagged and per-type %printer and %destructor): ... this, and
7634 extend.
7635 (Default %printer and %destructor for user-defined end token): Extend.
7636 (Default %printer and %destructor are not for error or $undefined):
7637 Update.
7638 (Default %printer and %destructor are not for $accept): Update.
7639 (Default %printer and %destructor for mid-rule values): Extend.
7640 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7641 (Unused values with default %destructor): Extend.
7642
7643 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7644
7645 Don't apply the default %destructor/%printer to an unreferenced midrule
7646 value. Mentioned at
7647 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7648 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7649 like $@n instead of just @n so that the default %destructor/%printer
7650 logic doesn't see them as user-defined symbols.
7651 (symbol_is_dummy): Check for both forms of the name.
7652 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7653 name for which the midrule value is referenced in any action.
7654 * tests/actions.at (Default %printer and %destructor for mid-rule
7655 values): New test.
7656 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7657 for change to dummy symbol names.
7658
7659 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7660
7661 Warn about unset midrule $$ if the corresponding $n is used.
7662 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7663 $n usage.
7664 (packgram): Before invoking grammar_rule_check on any rule, make sure
7665 all actions have already been scanned in order to set `used' flags.
7666 Otherwise, checking that a midrule's $$ is set will not always work
7667 properly because the midrule check must forward-reference the midrule's
7668 parent rule.
7669 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7670 warning.
7671
7672 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7673
7674 More improvements to the documentation of the prologue alternatives:
7675 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7676 Bison manual.
7677 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7678 some text to clarify the relative importance of the new directives and
7679 to show how these directives may be viewed as code labels.
7680
7681 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7682
7683 Similar to the recently removed %before-header, add %code-top as the
7684 alternative to the pre-prologue. Mentioned at
7685 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7686 Also, let the prologue alternatives appear in the grammar section.
7687 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7688 (prologue_declaration): Move the existing prologue alternatives to...
7689 (grammar_declaration): ... here and add %code-top.
7690 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7691
7692 Clean up and extend documentation for the prologue alternatives.
7693 * NEWS (2.3a+): Describe prologue alternatives.
7694 * doc/bison.texinfo (Prologue): Move discussion of prologue
7695 alternatives to...
7696 (Prologue Alternatives): ... this new section, and extend it to discuss
7697 all 4 directives in detail.
7698 (Table of Symbols): Clean up discussion of prologue alternatives and
7699 add %code-top.
7700
7701 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7702
7703 DJGPP specific issues.
7704
7705 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7706 config.bat accordingly.
7707 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7708 * djgpp/config.site: Likewise.
7709
7710 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
7711
7712 Replace %*-header with %provides, %requires, %code. See discussion at
7713 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7714
7715 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7716 (b4_user_start_header): Remove.
7717 * data/glr.c: Use new macros instead of b4_*start_header
7718 and b4_*end_header.
7719 * data/glr.cc: Likewise.
7720 * data/lalr1.cc: Likewise.
7721 * data/push.c: Likewise.
7722 * data/yacc.c: Likewise.
7723
7724 * doc/bison.texinfo: Remove %before-header, rename
7725 %{start,end,after}-header to %requires, %provides, %code.
7726
7727 * src/parse-gram.y: Likewise (also rename token names accordingly).
7728 * src/scan-gram.l: Likewise.
7729 * tests/actions.at: Likewise.
7730
7731 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7732
7733 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7734 Problem reported by Joel E. Denny.
7735
7736 2006-10-14 Jim Meyering <jim@meyering.net>
7737
7738 (Sync from coreutils.)
7739 Work also when the working directory (with e.g. coreutils sources)
7740 is version controlled with git, rather than CVS.
7741 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7742 rather than CVS.
7743 In messages and comments, say e.g., "checked-out sources",
7744 rather than "CVS sources".
7745 (version_controlled_file): New function. Work for git as well as
7746 for CVS. Don't use grep's -q option.
7747 (slurp): Call it here, in place of CVS-specific code.
7748
7749 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7750
7751 Fix testsuite for ./configure --enable-gcc-warnings:
7752 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7753 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7754 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7755 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7756 * test/regression.at (Diagnostic that expects two alternatives):
7757 Likewise.
7758
7759 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7760
7761 * bootstrap.conf (gnulib_modules): Add config-h.
7762 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7763 worry about HAVE_CONFIG_H.
7764 * lib/abitset.c: Likewise.
7765 * lib/bitset.c: Likewise.
7766 * lib/bitset_stats.c: Likewise.
7767 * lib/bitsetv-print.c: Likewise.
7768 * lib/bitsetv.c: Likewise.
7769 * lib/ebitset.c: Likewise.
7770 * lib/get-errno.c: Likewise.
7771 * lib/lbitset.c: Likewise.
7772 * lib/subpipe.c: Likewise.
7773 * lib/timevar.c: Likewise.
7774 * lib/vbitset.c: Likewise.
7775 * lib/bitset.c: Include "bitset.h" first, to test interface.
7776 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7777 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7778 * lib/bitsetv.c: Include "bitsetv.h" first.
7779 * lib/get-errno.c: Include "get-errno.h" first.
7780 * m4/.cvsignore: Add config-h.m4.
7781 * tests/actions.at (Default %printer and %destructor for ...):
7782 Adjust expected line numbers in output to reflect removal of #if
7783 HAVE_CONFIG_H lines.
7784 * tests/glr-regression.at (Missed %merge type warnings when ...):
7785 Likewise.
7786 * tests/regression.at (Braced code in declaration in rules section):
7787 Likewise.
7788 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7789 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7790 Include <config.h> unconditionally.
7791
7792 * bootstrap: Sync from coreutils, as follows:
7793
7794 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7795
7796 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7797 variable was sometimes used without being initialized. This
7798 messed up the installation of the INSTALL file in some cases.
7799
7800 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7801
7802 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7803 --copy. Inspired by a suggestion from Bruno Haible.
7804
7805 2006-10-03 Jim Meyering <jim@meyering.net>
7806
7807 * bootstrap: Undo last change to this file, since now gnulib-tool
7808 sticks with the automake default in generating dependencies.
7809
7810 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7811
7812 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7813 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7814
7815 * doc/bison.1: Add copyright notice.
7816
7817 * data/glr.c: Don't include <stdarg.h>; not used.
7818
7819 * NEWS: The -g and --graph options now output graphs in Graphviz
7820 DOT format, not VCG format.
7821 * doc/bison.1: Likewise.
7822 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
7823 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7824 of this change in
7825 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
7826 * TODO: Remove Graphviz entry.
7827 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7828 remove vcg.c, vcg.h, vcg_defaults.h.
7829 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7830 * src/graphviz.c, src/graphviz.h: New files.
7831 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7832 * src/files.h: Make comment more generic.
7833 * src/main.c (main): Likewise.
7834 * src/print_graph.h: Likewise.
7835 * src/getargs.c (usage): Make usage description more generic.
7836 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7837 (static_graph, fgraph): Remove. All uses changed to pass
7838 arguments instead of sharing a static var.
7839 (print_core, print_actions, print_state, print_graph):
7840 Output graphviz format rather than VCG format.
7841 * tests/.cvsignore: Remove *.vcg; add *.dot.
7842 * tests/output.at: Expect *.dot files, not *.vcg files.
7843
7844 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7845 accommodates the 2006-10-08 change.
7846
7847 2006-10-11 Bob Rossi <bob@brasko.net>
7848
7849 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7850 (b4_yyssa, b4_yyerror_range): New macros.
7851 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7852 (yypvarsinit): Remove init of removed fields.
7853 (yypushparse): Remove use of removed fields; use new macros instead.
7854
7855 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7856
7857 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7858 in a push parser. Reindent slightly to match yacc.c better.
7859
7860 2006-10-11 Bob Rossi <bob@brasko.net>
7861
7862 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7863 yymsg_alloc fields.
7864 (yypvarsinit, yypushparse): Remove init of removed fields.
7865 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
7866
7867 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 * THANKS: Add Paolo Bonzini and Bob Rossi.
7870
7871 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
7872
7873 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7874 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7875 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7876 b4_define_user_cde and uses): Remove.
7877 (b4_comment, b4_prefix, b4_sync_start): New.
7878 * data/bison.m4: New file, with most of the content removed from c.m4.
7879 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7880 * src/output.c (output_skeleton): Pass bison.m4.
7881 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7882 only if specified.
7883
7884 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7885
7886 Fix test failure reported by Tom Lane in
7887 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7888 and try to make such failures easier to catch in the future.
7889 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7890 that's now the caller's responsibility.
7891 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7892 Set yychar = YYEOF if it's negative.
7893 * tests/actions.at (yylex): Abort if asked to read past EOF.
7894 * tests/conflicts.at (yylex): Likewise.
7895 * tests/cxx-type.at (yylex): Likewise.
7896 * tests/glr-regression.at (yylex): Likewise.
7897 * tests/input.at (yylex): Likewise.
7898 * tests/regression.at (yylex): Likewise.
7899 * tests/torture.at (yylex): Likewise.
7900
7901 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7902
7903 Fix problems with translating English-language diagnostics.
7904 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7905 respect to bison-runtime pot generation. The YY_ stuff
7906 wasn't being captured.
7907 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7908 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7909 * runtime-po/POTFILES.in: Add data/push.c.
7910
7911 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7912
7913 Merge bootstrap changes from coreutils.
7914
7915 2006-09-28 Jim Meyering <jim@meyering.net>
7916
7917 Automatically generated dependencies are important even
7918 when all of the sources in a directory come from gnulib.
7919 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
7920 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
7921
7922 2006-09-23 Jim Meyering <jim@meyering.net>
7923
7924 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
7925
7926 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7927
7928 * bootstrap: Add support for --force.
7929 (usage): New function. Describe usage less tersely.
7930 (CVS_only_file): New var.
7931
7932 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
7933
7934 * data/push.c (YYPUSH_MORE): Make it an enum instead.
7935 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
7936 Adjust white space and comments to match GNU style better.
7937
7938 2006-09-20 Bob Rossi <bob@brasko.net>
7939
7940 * data/push.c (yyresult_get): Remove function.
7941 (YYPUSH_MORE): Add #define.
7942 (yypushparse): Modify return value.
7943
7944 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7945
7946 * stamp-h.in: Remove; no longer needed.
7947 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
7948 Remove config.h, config.hin, intl (no longer created).
7949 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
7950 stamp-h1.
7951
7952 Sync bootstrap from coreutils, as follows:
7953
7954 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
7955
7956 * bootstrap (symlink_to_gnulib): New function.
7957 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
7958 to copies-of-gnulib.
7959 (cp_mark_as_generated, slurp, gnulib_files):
7960 Avoid making a copy if it's the same as the old version.
7961 (gnulib_files): Add support for this variable (used by Bison).
7962
7963 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7964
7965 * src/getargs.c (usage): Rework to use conventions similar to
7966 coreutils, to make translation a bit easier and the code a bit
7967 smaller. Problem reported by Tim Van Holder.
7968
7969 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
7970
7971 Use some of gnulib's new modules, taken from coreutils.
7972
7973 * bootstrap: Sync from coreutils, except add support for gnulib_files.
7974 * bootstrap.conf: New file.
7975 (gnulib_modules): Add configmake, inttypes, unistd.
7976 (XGETTEXT_OPTIONS): Add complain, complain_at,
7977 fatal, fatal_at, warn, warn_at, unexpected_end.
7978 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
7979 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
7980 (gl_EARLY): Add.
7981 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
7982 (gl_INIT): Add
7983 (GNULIB_AUTOCONF_SNIPPET): Remove.
7984 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
7985 the pickiest.
7986 * lib/.cvsignore: Add inttypes_.h.
7987 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
7988 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
7989 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
7990 no-longer-necessary initializations.
7991 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
7992 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
7993 use the unistd module.
7994 * src/system.h: Likewise.
7995 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
7996 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
7997 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
7998 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
7999 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8000 * src/system.h: Include inttypes.h unconditionally, now that we
8001 use the inttypes module. Don't bother to include stdint.h, since
8002 inttypes.h now does that for us.
8003 (LOCALEDIR): Remove, now that we use the configmake module.
8004 * src/getargs.c: Include configmake.h.
8005 * src/main.c: Likewise.
8006 * src/output.c: Likewise.
8007 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8008 not from $abs_top_builddir, since config.h moved.
8009
8010
8011 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8012 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8013
8014 * src/parse-gram.y (symbol_declaration): Don't put statements
8015 before declarations; it's not portable to C89.
8016 * src/scan-code.l (handle_action_at): Likewise.
8017
8018 * src/scan-code.l: Always initialize braces_level; the old code
8019 left it uninitialized and therefore had undefined behavior.
8020
8021 Don't attempt to redefine 'assert', since it runs afoul of
8022 systems where standard headers (mistakenly) include <assert.h>.
8023 Instead, define and use our own alternative, called 'aver'.
8024 * src/reader.c: Don't include assert.h, since we no longer
8025 use assert.
8026 * src/scan-code.l: Likewise.
8027 * src/system.h (assert): Remove, replacing with....
8028 (aver): New function, taking a bool arg. All uses changed.
8029 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8030 not merely an integer.
8031
8032 2006-09-15 Bob Rossi <bob@brasko.net>
8033
8034 Add support for push parsing. Based on the original work of
8035 Odd Arild Olsen <oao@fibula.no>.
8036 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8037 * data/c.m4 (YYPUSH): New.
8038 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
8039 * data/push.c: New file.
8040 * src/getargs.c (push_parser): New var.
8041 * src/getargs.h (push_parser): New declaration.
8042 * src/output.c (prepare): Add macro insertion of `push_flag'.
8043 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8044 (prologue_declaration): Parse %push-parser.
8045 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8046 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8047 list of removed lines from the traces observed.
8048 (AT_CHECK_CALC_LALR): Added push parser tests.
8049
8050 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8051
8052 * NEWS: Version 2.3a.
8053 * configure.ac (AC_INIT): Likewise.
8054
8055 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8056 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8057 due to header ordering dependencies. I don't know why the #define
8058 was there.
8059
8060 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8061 runtime cost when YYDEBUG is not defined, and so that some tests
8062 that used to fail now work. Problem and initial suggestion by
8063 Paolo Bonzini.
8064 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8065 * data/glr.cc (b4_parser_class_name):
8066 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8067 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8068 (yydebug_) [YYDEBUG]: New member.
8069 (yycdebug_): Now defined only if YYDEBUG.
8070 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8071 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8072 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8073 if YYYDEBUG.
8074 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8075 Define only if YYDEBUG.
8076 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8077 set_debug_level.
8078 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8079 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8080 AT_CHECK_CALC_GLR_CC that are working now.
8081
8082 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8083
8084 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8085 We don't need them in glr.cc, and glr.c defines them.
8086 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8087 assumes that defining it to anything is the same as defining
8088 it to 1. Problem reported by Paolo Bonzini.
8089
8090 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8091
8092 * data/c.m4 (b4_null, b4_case): Define.
8093 * src/output.c (prepare_symbols): Use b4_null.
8094 (user_actions_output): Use b4_case.
8095
8096 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8097
8098 * data/glr.c (b4_shared_declarations): Put start-header first,
8099 before any #includes that we generate, so that feature-test
8100 macros work. Problem reported by Michael Deutschmann in
8101 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8102 * data/lalr1.cc: Likewise.
8103 * doc/bison.texinfo (Prologue): Document that feature-test macros
8104 should be defined before any Bison declarations.
8105 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8106 that depend on location.hh after, not before, Bison decls, since
8107 we now include location.hh after the first user prologue.
8108
8109 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8110 Sander Brandenburg in
8111 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8112 Also, fix minor white space and comment issues.
8113 (Prologue): Mention that it's better to define feature-test macros
8114 before Bison declarations. Problem reported by Michael Deutschmann.
8115
8116 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8117 by Jim Meyering.
8118 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8119 This adjusts to recent gnulib changes.
8120
8121 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8122
8123 Finish implementation of per-type %destructor/%printer. Discussed
8124 starting at
8125 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8126 and
8127 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8128 * NEWS (2.3+): Add a description of this feature to the default
8129 %destructor/%printer description.
8130 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8131 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8132 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8133 list node contains a semantic type.
8134 * src/symtab.c, src/symtab.h: Extend with a table that associates
8135 semantic types with their %destructor's and %printer's.
8136 (semantic_type_from_uniqstr, semantic_type_get,
8137 semantic_type_destructor_set, semantic_type_printer_set): New functions
8138 composing the public interface of that table.
8139 (symbol_destructor_get, symbol_destructor_location_get,
8140 symbol_printer_get, symbol_printer_location_get): If there's no
8141 per-symbol %destructor/%printer, look up the per-type before trying
8142 the default.
8143 * tests/actions.at (Per-type %printer and %destructor): New test case.
8144 * tests/input.at (Default %printer and %destructor redeclared):
8145 Extend to check that multiple occurrences of %symbol-default in a
8146 single %destructor/%printer declaration is an error.
8147 (Per-type %printer and %destructor redeclared, Unused values with
8148 per-type %destructor): New test cases.
8149
8150 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8151
8152 Require default %destructor/%printer to be declared using
8153 %symbol-default instead of an empty symbol list, and start working on
8154 new per-type %destructor/%printer. Discussed at
8155 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8156 * NEWS (2.3+): Add %symbol-default to example.
8157 * bison.texinfo (Freeing Discarded Symbols): Likewise.
8158 (Table of Symbols): Add entry for %symbol-default.
8159 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8160 (generic_symlist, generic_symlist_item): New nonterminals for creating
8161 a list in which each item is a symbol, semantic type, or
8162 %symbol-default.
8163 (grammar_declaration): Use generic_symlist in %destructor and %printer
8164 declarations instead of symbols.1 or an empty list.
8165 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8166 for changes to symbol_list.
8167 * src/reader.c: Update for changes to symbol_list.
8168 * src/scan-code.l: Likewise.
8169 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8170 * src/symlist.c, src/symlist.h: Extend such that a list node may
8171 represent a semantic type or a %symbol-default in addition to just an
8172 ordinary symbol. Add switched functions for setting %destructor's and
8173 %printer's.
8174 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8175 %destructor/%printer declarations.
8176
8177 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8178
8179 Whether the default %destructor/%printer applies to a particular symbol
8180 isn't a question of whether the user *declares* that symbol (in %token,
8181 for example). It's a question of whether the user by any means
8182 *defines* the symbol at all (by simply using a char token, for
8183 example). $end is defined by Bison whereas any other token with token
8184 number 0 is defined by the user. The error token is always defined by
8185 Bison regardless of whether the user declares it with %token, but we
8186 may one day let the user define error as a nonterminal instead.
8187 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8188 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8189 the meaning of "user-defined".
8190 * tests/actions.at (Default %printer and %destructor for user-declared
8191 end token): Rename to...
8192 (Default %printer and %destructor for user-defined end token): ...
8193 this.
8194
8195 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8196 computation of whether to apply the default, don't maintain a list of
8197 every Bison-defined symbol. Instead, just check for a first character
8198 of '$', which a user symbol cannot have, and check for the error token.
8199
8200 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8201
8202 Don't apply the default %destructor or %printer to the error token,
8203 $undefined, or $accept. This change fits the general rule that the
8204 default %destructor and %printer are only for user-declared symbols,
8205 and it solves several difficulties that are described in the new test
8206 cases listed below.
8207 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8208 * tests/actions.at (Default %printer and %destructor are not for error
8209 or $undefined, Default %printer and %destructor are not for $accept):
8210 New test cases.
8211
8212 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8213
8214 Allow %start after the first rule.
8215 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8216 when parsing the first rule.
8217 (check_and_convert_grammar): Search for it here after all grammar
8218 declarations have been parsed. Skip midrules, which have dummy LHS
8219 nonterminals.
8220 * src/symtab.c (symbol_is_dummy): New function.
8221 * src/symtab.h (symbol_is_dummy): Declare it.
8222 * tests/input.at (%start after first rule): New test.
8223
8224 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8225
8226 Redo some of the previous commit: add back the ability to use
8227 non-aliased/undeclared string literals since it might be useful to
8228 those declaring %token-table.
8229 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8230 commit: don't worry about complaints from symbols_pack.
8231 * src/symtab.c (symbol_new, symbol_class_set,
8232 symbol_check_alias_consistency): Undo changes in previous commit: count
8233 each string literal as a new symbol and token, assign it a symbol
8234 number, and don't complain about non-aliased string literals.
8235 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8236 and token counts but does still set aliased tokens to the same number,
8237 symbol_pack_processor now leaves empty slots in the symbols array.
8238 Remove those slots.
8239 * tests/regression.at (Undeclared string literal): Remove test case
8240 added in previous commit since non-aliased string literals are allowed
8241 again.
8242 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8243 remove unnecessary string literal declarations.
8244 * tests/sets.at (Firsts): Likewise.
8245
8246 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8247
8248 Don't allow an undeclared string literal, but allow a string literal to
8249 be used before its declaration.
8250 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8251 symbols_pack complained.
8252 * src/symtab.c (symbol_new): Don't count a string literal as a new
8253 symbol.
8254 (symbol_class_set): Don't count a string literal as a new token, and
8255 don't assign it a symbol number since symbol_make_alias does that.
8256 (symbol_make_alias): It's not necessary to decrement the symbol and
8257 token counts anymore. Don't assume that an alias declaration occurs
8258 before any uses of the identifier or string, and thus don't assert that
8259 one of them has the highest symbol number so far.
8260 (symbol_check_alias_consistency): Complain if there's a string literal
8261 that wasn't declared as an alias.
8262 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8263 symbol_pack asserts that every token has been assigned a symbol number
8264 although undeclared string literals have not.
8265 * tests/regression.at (String alias declared after use, Undeclared
8266 string literal): New test cases.
8267 (Characters Escapes, Web2c Actions): Declare string literals as
8268 aliases.
8269 * tests/sets.at (Firsts): Likewise.
8270
8271 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8272
8273 In the grammar scanner, STRING_FINISH unclosed constructs and return
8274 them to the parser in order to improve error messages.
8275 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8276 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8277 * tests/input.at (Unclosed constructs): New test case.
8278 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8279 seen.
8280
8281 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8282 unused global.
8283
8284 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8285
8286 Handle string aliases for character tokens correctly.
8287 * src/symtab.c (symbol_user_token_number_set): If the token has an
8288 alias, check and set its alias's user token number instead of its own,
8289 which is set to indicate the alias. Previously, every occurrence of
8290 the character token in the grammar overwrote that alias indicator with
8291 the character code.
8292 * tests/input.at (String aliases for character tokens): New test.
8293
8294 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8295
8296 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8297
8298 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8299
8300 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8301 to prevent failures when building on older platforms.
8302 Check for autopoint failure.
8303 Set XGETTEXT_OPTIONS to values that check for C format strings,
8304 so that translators are warned about them (this also helps
8305 prevent core dumps).
8306
8307 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8308 function, since it simplifies our code a bit.
8309
8310 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8311 rather than -W, so we don't get bogus warnings about sign comparisons.
8312 Add -Wpointer-arith, since that warning is useful (it reports code
8313 that does not conform to C89 and that some compilers reject).
8314 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8315 since it's no longer needed.
8316
8317 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8318
8319 Clean up scanners a bit.
8320 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8321 definitions so gcc won't warn when obstack_for_string is unused.
8322 * src/scan-code.l: config.h and system.h are already #include'd by
8323 scan-code-c.c, so get rid of them here.
8324 * src/scan-gram.l: Likewise.
8325 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8326 definitions rather than duplicating the rest of it.
8327 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8328
8329 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8330
8331 Suppress signed/unsigned comparison warnings for yycheck.
8332 * data/c.m4 (b4_safest_int_type): New macro.
8333 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8334 a signed int type, cast it to b4_safest_int_type first.
8335 * data/yacc.c: Likewise.
8336 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8337 also overwritten.
8338
8339 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8340
8341 * doc/bison.texinfo: Fix some typos.
8342
8343 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8344
8345 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8346 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8347
8348 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8349 the latest gnulib does this a different way.
8350 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8351 translation was patched, so stop omitting it.
8352
8353 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8354
8355 Enable declaration of default %printer/%destructor. Make the parser
8356 use these for all user-declared grammar symbols for which the user does
8357 not declare a specific %printer/%destructor. Thus, the parser uses it
8358 for token 0 if the user declares it but not if Bison generates it as
8359 $end. Discussed starting at
8360 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8361 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8362 and
8363 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8364 * NEWS (2.3+): Mention.
8365 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8366 declare a %destructor for a mid-rule's semantic value. It's just
8367 impossible to declare one specific to it.
8368 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8369 code. Describe default %destructor form.
8370 * src/parse-gram.y (grammar_declaration): Parse default
8371 %printer/%destructor declarations.
8372 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8373 and symbol_destructor_location_get rather than accessing the destructor
8374 and destructor_location members of struct symbol.
8375 (symbol_printers_output): Likewise but for %printer's.
8376 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8377 again.
8378 * src/symtab.c (default_destructor, default_destructor_location,
8379 default_printer, default_printer_location): New static global
8380 variables to record the default %destructor and %printer.
8381 (symbol_destructor_get, symbol_destructor_location_get,
8382 symbol_printer_get, symbol_printer_location_get): New functions to
8383 compute the appropriate %destructor and %printer for a symbol.
8384 (default_destructor_set, default_printer_set): New functions to set the
8385 default %destructor and %printer.
8386 * src/symtab.h: Prototype all those new functions.
8387 * tests/actions.at (Default %printer and %destructor): New test to
8388 check that the right %printer and %destructor are called, that they're
8389 not called for $end, and that $$ and @$ work correctly.
8390 (Default %printer and %destructor for user-declared end token): New
8391 test to check that the default %printer and %destructor are called for
8392 a user-declared end token.
8393 * tests/input.at (Default %printer and %destructor redeclared, Unused
8394 values with default %destructor): New tests to check related grammar
8395 warnings and errors.
8396
8397 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8398
8399 Clean up handling of %destructor for the end token (token 0).
8400 Discussed starting at
8401 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8402 and
8403 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8404
8405 Make the skeletons consistent in how they pop the end token and invoke
8406 its %destructor.
8407 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8408 state, which has token number 0, since this would invoke the
8409 %destructor for the end token.
8410 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8411 until after shifting the end token, or else it won't be popped.
8412 * data/yacc.c (yyparse): Likewise.
8413
8414 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8415 it's the end token. Upon termination, destroy an unshifted lookahead
8416 even when it's the end token.
8417 * data/lalr1.cc (yy::parser::parse): Likewise.
8418 * data/yacc.c (yyparse): Likewise.
8419
8420 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8421 value warnings for the end token when the user gives the end token a
8422 %destructor.
8423
8424 * tests/actions.at (Printers and Destructors): Test all the above.
8425
8426 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8427
8428 Update to latest gnulib and gettext versions.
8429 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8430 Add fopen-safer.
8431 (gnulib_files): Add m4/warning.m4. Don't worry about files
8432 overwritten by autopoint.
8433 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8434 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8435 rejects them.
8436 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8437 so that we can remove the intl files at a better time.
8438 (intl_files_to_remove): Remove aclocal.m4, since it gets
8439 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8440 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8441 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8442 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8443 Remove datarootdir hack; no longer needed.
8444 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8445 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8446 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8447 strdup.h.
8448 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8449 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8450
8451 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8452
8453 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8454 it with --assume-autoconf='latest-stable'.
8455
8456 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8457
8458 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8459 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8460 YYSTYPE' and `{'.
8461 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8462 those from muscle_tab.c since the old ones are misleading.
8463
8464 2006-07-13 Akim Demaille <akim@epita.fr>
8465
8466 Support %define "KEY" {VALUE}.
8467 * src/scan-code.h, src/scan-code.l (translate_action)
8468 (translate_rule_action, translate_symbol_action, translate_code):
8469 Return char *, not const char *.
8470 * src/parse-gram.y (declaration): Rename as...
8471 (prologue_declaration): this.
8472 (string_content): Remove this nonterminal, use STRING.
8473 (braceless, content, content.opt): New nonterminal.
8474 Use them.
8475 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8476 as value.
8477 * src/scan-gram.l (getargs.h): Don't include it.
8478
8479 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8480
8481 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8482 rather than a for-loop that declares a local bool variable. This
8483 should work around a compatibility problem with a Cray x1e C++
8484 compiler reported by Hung Nguyen in
8485 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8486 The for-loop was introduced in the 2004-11-17 change but I don't
8487 know why it was needed.
8488
8489 2006-07-12 Akim Demaille <akim@epita.fr>
8490
8491 * data/c.m4: Comment changes.
8492
8493 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
8494
8495 * src/complain.c (error_message, ERROR_MESSAGE): New.
8496 To factor...
8497 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8498 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8499
8500 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8501
8502 * NEWS: Instead of %union, you can define and use your own union type
8503 YYSTYPE if your grammar contains at least one <type> tag.
8504 Your YYSTYPE need not be a macro; it can be a typedef.
8505 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8506 (Union Decl, Decl Summary): Document this.
8507 * data/glr.c (YYSTYPE): Implement this.
8508 * data/glr.cc (YYSTYPE): Likewise.
8509 * data/lalr1.cc (YYSTYPE): Likewise.
8510 * data/yacc.c (YYSTYPE): Likewise.
8511 * src/output.c (prepare): Output tag_seen_flag.
8512 * src/parse-gram.y (declaration, grammar_declaration):
8513 Use 'union_seen' rather than 'typed' to determine whether
8514 %union has been seen, since grammars can now be typed without
8515 %union.
8516 (symbol_declaration, type.opt, symbol_def):
8517 Keep track of whether a tag has been seen.
8518 * src/reader.c (union_seen, tag_seen): New vars.
8519 (typed): remove.
8520 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8521 * src/scan-code.l (untyped_var_seen): New variable.
8522 (handle_action_dollar): Adjust to above changes.
8523 (handle_action_dollar, handle_action_at):
8524 Improve overflow checking for outlandish numbers.
8525 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8526 avoid new diagnostics generated by above changes.
8527 * tests/regression.at (YYSTYPE typedef): Add test to check
8528 for type tags without %union.
8529
8530 * src/symlist.c (symbol_list_length): Return int, not unsigned
8531 int, since callers expect int. This may need to get revisited
8532 once we have proper integer overflow checking.
8533
8534 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8535 object is now static.
8536
8537 * src/getargs.c (flags_argmatch): Return void, not int,
8538 to pacify ./configure --enable-gcc-warnings.
8539
8540 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8541 since last_string is already defined to FLEX_PREFIX (last_string).
8542
8543 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8544
8545 Implement --warnings/-W.
8546 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8547 replaced by...
8548 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8549 Adjust callers.
8550 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8551 (warnings_args, warnings_types): New.
8552 (getargs, short_options, long_options): Accept -W/--warnings.
8553 Sort the options by alphabetical order, upper case letter right
8554 before its lower case.
8555
8556 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8557
8558 Change %merge result type clash warnings to errors. Discussed at
8559 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8560 * src/reader.c (record_merge_function_type): Use complain_at.
8561 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8562 declared later): Update test case results.
8563
8564 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8565
8566 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8567 to be in alphabetical order.
8568 (trace_args): Spelling fixes.
8569
8570 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8571
8572 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8573 so they don't collide with user-defined macros.
8574 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8575 this was never guaranteed, and now that we're using gnulib stdint,
8576 which defines int_fast16_t to long int, the problem is exposed.
8577
8578 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8579
8580 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8581 need the full POSIX semantics (and weren't implementing them
8582 anyway).
8583
8584 Adjust to Autoconf 2.60 and today's gnulib.
8585 * bootstrap (gnulib_modules): Add stdint.
8586 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8587 no longer copies it.
8588 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8589 since stdint needs the former and wcwidth (which is now required
8590 by mbswidth) needs the latter.
8591 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8592 work around a compatibility glitch between gettext 0.14.6 and
8593 Autoconf 2.60.
8594 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8595 Do not check for uintptr_t, since new stdint module does the right
8596 thing.
8597 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8598 Add stdint.h, stdint_.h, wcwidth.h.
8599 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8600 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8601 stdint.m4, wchar_t.m4, wcwidth.m4.
8602 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8603 usual order for ../lib/*.h files.
8604 (file_name_split): Use last_component, not base_name, to adjust
8605 to gnulib changes.
8606 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8607 for ../lib/*.h files.
8608 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8609 Define unconditionally, since we now assume the stdint module.
8610 * src/scan-skel.l: Include <dirname.h>.
8611 (BASE_QPUTS): Use last_component, not base_name.
8612 * src/system.h: Include <unlocked-io.h> in the usual order
8613 for ../lib/*.h files. Include <stdint.h> unconditionally,
8614 since we now use the stdint module.
8615 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8616 HAVE_UINTPTR_T, since we now use the stdint module.
8617 (base_name): Remove decl, since files now include <dirname.h>
8618 to get the decl.
8619
8620 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8621
8622 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8623 New, default to 1.
8624 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8625 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8626 default.
8627 * tests/calc.at: Adjust.
8628
8629 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8630
8631 * data/c.m4 (b4_basename): New.
8632 (b4_syncline): Also output the location of its invocation (from
8633 the skeleton).
8634 (b4_user_action, b4_define_user_action, b4_user_actions)
8635 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8636 (b4_user_stype): New.
8637 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8638
8639 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8640
8641 In the grammar file, the first column is 1 not 0 on the first line as
8642 on every other line.
8643 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8644 * tests/input.at (Torturing the Scanner): Update output.
8645
8646 * src/scan-gram.l (scanner_cursor): Declare it static.
8647
8648 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8649
8650 In warnings, say "previous declaration" rather than "first
8651 declaration".
8652 * src/symtab.c (redeclaration): Do that here.
8653 * src/reader.c (record_merge_function_type): In the case of a result
8654 type clash, report the previous declaration rather than the very first
8655 one in the grammar file.
8656 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8657 declared later): Add a third declaration to check this behavior.
8658 * tests/input.at (Incompatible Aliases): Update output.
8659
8660 2006-06-27 Akim Demaille <akim@epita.fr>
8661
8662 * doc/Doxyfile.in: New.
8663 * doc/Makefile.am: Use it.
8664 * src/lalr.h, src/symtab.h: Initial doxygenation.
8665
8666 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8667
8668 Don't miss %merge result type warnings just because the LHS types are
8669 declared after the %merge. This continues the effort of the previous
8670 patch.
8671 * src/reader.c (get_merge_function): Don't set the merger type yet.
8672 (record_merge_function_type): New function for setting the merger type
8673 and checking for clashes.
8674 (grammar_current_rule_merge_set): Set the location of the %merge for
8675 the current rule.
8676 (packgram): Invoke record_merge_function_type for each rule now that
8677 all symbol type declarations have been parsed.
8678 * src/reader.h (merger_list.type_declaration_location): New member
8679 storing the location of the first %merge from which the type for this
8680 merging function was derived.
8681 * src/symlist.h (symbol_list.merger_declaration_location): New member
8682 storing the location of a rule's %merge, if any.
8683 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8684 declared later): New test to catch the error fixed by the above patch.
8685
8686 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8687
8688 Get action warnings (grammar_rule_check) right even when symbol
8689 declarations appear after the rules. Discussed at
8690 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8691 and
8692 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8693 Don't mistake the type of $$ in a midrule to be that of its parent
8694 rule's $$.
8695 * src/reader.c (grammar_current_rule_end): Don't invoke
8696 grammar_rule_check yet since not all symbol declarations may have been
8697 parsed yet.
8698 (grammar_midrule_action): Likewise.
8699 Don't record whether the midrule's $$ has been used yet since actions
8700 haven't been translated yet.
8701 Record the midrule's parent rule and its RHS index within the parent
8702 rule.
8703 (grammar_current_rule_action_append): Don't translate the action yet
8704 since not all symbol declarations may have been parsed yet and, thus,
8705 warnings about types for $$, $n, @$, and @n can't be reported yet.
8706 (packgram): Translate the action and invoke grammar_rule_check now that
8707 all symbol declarations have been parsed.
8708 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8709 after parsing the entire grammar file, the symbol list here in the case
8710 of a midrule is actually the midrule's empty RHS, so reference its
8711 parent rule's RHS where necessary.
8712 On the other hand, now that you can already know it's a midrule, you
8713 aren't forced to think $$ has the same type as its parent rule's $$.
8714 (handle_action_at): In the case of a midrule, reference the parent rule
8715 where necessary.
8716 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8717 members.
8718 (symbol_list_length): Now that this is invoked after all rules have
8719 been parsed, a NULL symbol (rather than a NULL symbol list node)
8720 terminates a rule. symbol_list_print already does this correctly.
8721 * src/symlist.h (symbol_list.midrule_parent_rule,
8722 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8723 remember their relationships with their parents.
8724 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8725 fixed by the above patch.
8726 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8727 implementing...
8728 (Unused values): ... this old test case and...
8729 (Unused values before symbol declarations): ... this new test case.
8730 This one is the same as `Unused values' except that all symbol
8731 declarations appear after the rules in order to catch the rest of the
8732 errors fixed by the above patch.
8733
8734 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8735
8736 More cleanup.
8737 * src/reader.c (current_rule): Declare it static since it's no longer
8738 used outside this file.
8739 (grammar_current_rule_action_append): Remove redundant arguments from
8740 translate_rule_action invocation.
8741 * src/reader.h (current_rule): Remove this unused extern.
8742 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8743 * src/scan-code.l (translate_rule_action): Likewise.
8744
8745 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8746
8747 Clean up yesterday's patch.
8748 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8749 to...
8750 * src/reader.c (grammar_current_rule_action_append): ... here for
8751 consistency with grammar_current_rule_symbol_append.
8752 * tests/regression.at (Braced code in declaration in rules section):
8753 Make yyerror and yylex static as usual.
8754
8755 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8756
8757 Fix bug that mistakes braced code in a declaration in the rules section
8758 to be a rule action. Mentioned at
8759 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8760 * src/scan-gram.l: Move midrule action detection from the start of the
8761 scanning of any braced code to...
8762 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8763 action. For readability, use $2 and @2 rather than the equivalent
8764 global variables.
8765 * tests/regression.at (Braced code in declaration in rules section):
8766 New test to catch the error fixed by the above patch.
8767
8768 Work on code readability some.
8769 * src/scan-code.l (current_rule): Get rid of this misleading and
8770 redundant declaration: it's actually extern'ed in reader.h.
8771 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8772 translate_action): Add a rule argument and use it instead of the global
8773 current_rule.
8774 (translate_rule_action): This already receives current_rule through an
8775 argument, so pass it on to translate_action instead of assigning
8776 current_rule to current_rule.
8777 (translate_symbol_action, translate_code): Pass rule = NULL to
8778 translate_action.
8779
8780 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8781
8782 Rename %before-definitions to %start-header and %after-definitions to
8783 %end-header. Don't use these declarations to separate pre-prologue
8784 blocks from post-prologue blocks. Add new order-independent
8785 declarations %before-header and %after-header as alternatives to the
8786 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8787 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8788 * NEWS (2.3+): Update for these changes.
8789 * data/glr.c (b4_before_definitions): Update to...
8790 (b4_start_header): ... this.
8791 (b4_after_definitions): Update to...
8792 (b4_end_header): ... this.
8793 * data/glr.cc: Likewise.
8794 * data/lalr1.cc: Likewise.
8795 * data/yacc.c: Likewise.
8796 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8797 prologue blocks with %*-header declarations.
8798 (Calc++ Parser): Likewise.
8799 (Decl Summary): Update names.
8800 (Table of Symbols): Update description.
8801 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8802 (PERCENT_END_HEADER): ... this.
8803 (PERCENT_BEFORE_DEFINITIONS): Update to...
8804 (PERCENT_START_HEADER): ... this.
8805 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8806 (declaration): Update token names and m4 macro names.
8807 When parsing %end-header and %start-header, invoke translate_code
8808 before muscle_code_grow, and no longer set global booleans to remember
8809 whether these declarations have been seen.
8810 Parse new %after-header and %before-header.
8811 * src/reader.c (before_definitions, after_definitions): Remove.
8812 (prologue_augment): Accept a new bool argument to specify whether to
8813 augment the pre-prologue or post-prologue.
8814 * src/reader.h (before_definitions, after_definitions): Remove these
8815 extern's.
8816 (prologue_augment): Add new bool argument.
8817 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8818 (PERCENT_END_HEADER): ... this.
8819 (PERCENT_BEFORE_DEFINITIONS): Update to...
8820 (PERCENT_START_HEADER): ... this.
8821 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8822 * tests/actions.at (Printers and Destructors): Update names.
8823
8824 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8825
8826 Add comparison operators for C++ location classes. Discussed at
8827 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8828 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8829 declaration indicating whether filename_type has an operator==. If
8830 filename_type is `std::string', it defaults to `1', `0' otherwise.
8831 * data/location.cc: Iff b4_define_location_comparison is `1', add
8832 operator== and operator!= for class position and for class location.
8833
8834 Some minor fixes.
8835 * src/scan-action.l: Remove unused file.
8836 * src/symtab.c (symbol_printer_set): Use printer_location not
8837 destructor_location.
8838 * src/symtab.h (struct symbol): Replace incorrect source comment for
8839 printer members.
8840 * tests/input.at (Incompatible Aliases): Update output with correct
8841 printer location.
8842
8843 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8844
8845 Don't put the pre-prologue in the header file. For the yacc.c code
8846 file and the glr.c header and code files, move the pre-prologue before
8847 the token definitions. Add new %before-definitions and
8848 %after-definitions to declare code that will go in both the header file
8849 and code file. Discussed at
8850 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8851 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8852 and
8853 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8854 * NEWS (2.3+): Describe these changes.
8855 * data/glr.c (b4_pre_prologue): Move from within to before...
8856 (b4_shared_declarations): ... this.
8857 Add new b4_before_definitions before b4_token_enums.
8858 Add new b4_after_definitions at the end.
8859 * data/glr.cc (b4_pre_prologue): Replace with...
8860 (b4_before_definitions): ... this in the header file.
8861 (b4_after_definitions): New near the end of the header file.
8862 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8863 code file right before including the header file.
8864 (b4_before_definitions): New in the previous position of
8865 b4_pre_prologue in the header file.
8866 (b4_after_definitions): New near the end of the header file.
8867 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8868 (b4_token_enums_defines): In the code file, move to right before
8869 YYSTYPE for consistency with the header file.
8870 (b4_before_definitions): New right before b4_token_enums_defines in
8871 both the header and code file.
8872 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8873 header and code file.
8874 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8875 of prologues for %union dependencies.
8876 (Decl Summary): In %defines description, mention the effect of
8877 %before-definitions and %after-definitions on the header file.
8878 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8879 than in the pre-prologue so that make check succeeds.
8880 (Table of Symbols): Add entries for %before-definitions and
8881 %after-definitions.
8882 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8883 %before-definitions.
8884 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8885 (declaration): Parse those declarations and append to
8886 b4_before_definitions and b4_after_definitions, respectively.
8887 * src/reader.c (before_definitions, after_definitions): New bools to
8888 track whether those declarations have been seen.
8889 (prologue_augment): Add to the post-prologue if %union,
8890 %before-definitions, or %after-definitions has been seen.
8891 * src/reader.h (before_definitions, after_definitions): New extern's.
8892 * src/scan-gram.l: Scan the new declarations.
8893 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8894 prologue block in a %before-definitions or a %after-definitions based
8895 on whether the %union is declared.
8896 * tests/regression.at (Early token definitions with --yacc, Early token
8897 definitions without --yacc): Move tests for token definitions into the
8898 post-prologue since token names are no longer defined in the
8899 pre-prologue.
8900
8901 2006-06-20 Akim Demaille <akim@epita.fr>
8902
8903 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8904 (symbol_get): Use it.
8905 * src/parse-gram.y: Use it.
8906
8907 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8908
8909 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8910 build succeeds when configured with --enable-gcc-warnings.
8911
8912 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
8913
8914 * src/parse-gram.y (char_name): New function.
8915 (CHAR, STRING, string_content): For %printer, properly escape.
8916 (ID): Prefer fputs to fprintf.
8917 (id): Reindent to be consistent with other rules.
8918 Properly quote char.
8919
8920 The Translation Project changed its way of publishing translations
8921 to maintainers. I haven't received any responses to my request
8922 for supporting the old way, or for documenting the new way. I
8923 have modified 'bootstrap' to use screen scraping
8924 (in this case, HTML scraping). This is unreliable and inelegant,
8925 but I don't see any better way. Yuck.
8926 * bootstrap (TP_URL, WGET_COMMAND): New vars.
8927 (get_translations): New function, which uses HTML scraping to
8928 deduce locations of latest translations.
8929 Use this function to grab both bison and bison-runtime .po files.
8930 Don't bother priming the pump for the runtime-po domain any more,
8931 as it's now translated better than bison is.
8932
8933 2006-06-19 Akim Demaille <akim@epita.fr>
8934
8935 * src/scan-gram.l: No longer "parse" things after `%union' until
8936 `{'. Rather, return a single "%union" token.
8937 No longer make symbols: return strings, and leave the conversion
8938 to symbols to the parser.
8939 (SC_PRE_CODE, token_type): Remove.
8940 * src/parse-gram.y (%union): New field `character'.
8941 Sort tokens.
8942 (CHAR): New token.
8943 (ID, ID_COLON): Now that the scanner no longer makes them
8944 identifiers, adjust all uses to invoke symbol_get.
8945 (id_colon): New, wraps the conversion from string to symbol.
8946 (%union): Accept a possible union_name.
8947 (symbol): Now can be a char.
8948 * data/c.m4 (b4_union_name): Leave a default value.
8949 * data/glr.c, data/yacc.c: Use it.
8950
8951 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
8952
8953 For associating token numbers with token names for "yacc.c", don't use
8954 #define statements unless `--yacc' is specified; always use enum
8955 yytokentype. Most important discussions start at:
8956 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
8957 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
8958 and
8959 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
8960 * NEWS (2.3+): Mention.
8961 * data/c.m4 (b4_yacc_if): New.
8962 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
8963 token #define's.
8964 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
8965 on token name definitions.
8966 * src/getargs.c (usage): Capitalize `Yacc' in English.
8967 * src/output.c (prepare): Define b4_yacc_flag.
8968 * tests/regression.at (Early token definitions): Test that tokens names
8969 are defined before the pre-prologue not just before the post-prologue.
8970 Remove this test case and copy to...
8971 (Early token definitions with --yacc): ... this to test #define's.
8972 (Early token definitions without --yacc): ... and this to test enums.
8973
8974 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
8975
8976 * NEWS: Reword the post-2.3 change to not be so optimistic about
8977 removing the old "look-ahead" spelling.
8978 Update previous look-ahead/lookahead change reports.
8979 * REFERENCES: look-ahead -> lookahead (since that's
8980 what he actually wrote).
8981 * doc/refcard.tex: look ahead -> lookahead,
8982 look-ahead -> lookahead
8983
8984 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
8985
8986 For consistency, use `lookahead' instead of `look-ahead' or
8987 `look_ahead'. Discussed starting at
8988 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
8989 and then at
8990 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
8991 * NEWS: For the next release, note the change to `--report'.
8992 * TODO, doc/bison.1: Update English.
8993 * doc/bison.texinfo: Update English.
8994 (Understanding Your Parser, Bison Options): Document as
8995 `--report=lookahead' rather than `--report=look-ahead'.
8996 * src/conflicts.c: Update English in comments.
8997 (lookahead_set): Rename from look_ahead_set.
8998 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
8999 (resolve_sr_conflict): Rename local look_ahead_tokens to
9000 lookahead_tokens, and update other uses.
9001 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9002 count_rr_conflicts, conflicts_free): Update uses.
9003 * src/getargs.c (report_args): Move "lookahead" before alternate
9004 spellings.
9005 (report_types): Update uses.
9006 (usage): For `--report' usage description, state `lookahead' spelling
9007 rather than `look-ahead'.
9008 * src/getargs.h (report.report_lookahead_tokens): Rename from
9009 report_look_ahead_tokens.
9010 * src/lalr.c: Update English in comments.
9011 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9012 (state_lookahead_tokens_count): Rename from
9013 state_look_ahead_tokens_count.
9014 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9015 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9016 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9017 Update other uses.
9018 Update English in output.
9019 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9020 * src/print.c: Update English in comments.
9021 (lookahead_set): Rename from look_ahead_set.
9022 (print_reduction): Rename argument lookahead_token from
9023 look_ahead_token.
9024 (print_core, state_default_rule, print_reductions, print_results):
9025 Update uses.
9026 * src/print_graph.c: Update English in comments.
9027 (print_core): Update uses.
9028 * src/state.c: Update English in comments.
9029 (reductions_new): Update uses.
9030 (state_rule_lookahead_tokens_print): Rename from
9031 state_rule_look_ahead_tokens_print, and update other uses.
9032 * src/state.h: Update English in comments.
9033 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9034 (state_rule_lookahead_tokens_print): Rename from
9035 state_rule_look_ahead_tokens_print.
9036 * src/tables.c: Update English in comments.
9037 (conflict_row, action_row): Update uses.
9038 * tests/glr-regression.at
9039 (Incorrect lookahead during deterministic GLR,
9040 Incorrect lookahead during nondeterministic GLR): Rename
9041 print_look_ahead to print_lookahead.
9042 * tests/torture.at: Update English in comments.
9043 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9044 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9045 (Many lookahead tokens): Update uses.
9046 * data/glr.c: Update English in comments.
9047 * lalr1.cc: Likewise.
9048 * yacc.c: Likewise.
9049 * src/conflicts.h: Likewise.
9050 * src/lalr.h: Likewise.
9051 * src/main.c: Likewise.
9052 * src/output.c: Likewise.
9053 * src/parse-gram.c: Likewise.
9054 * src/tables.h: Likewise.
9055 * tests/calc.at: Likewise.
9056
9057 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9058
9059 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9060
9061 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9062
9063 * TODO: Add request from Nelson H. F. Beebe to be able to install
9064 Bison without installing the yacc script.
9065
9066 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9067
9068 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9069 and yytext if they're already #define'd.
9070 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9071 * src/scan-code-c.c: ... here.
9072 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9073 <config.h>.
9074
9075 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9076
9077 Get Bison to build again when configured with --enable-gcc-warnings.
9078 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9079 missing #include's.
9080 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9081 loc argument as it shadows a global.
9082 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9083 invocation.
9084
9085 * src/.cvsignore: Add scan-code.c.
9086
9087 2006-06-07 Akim Demaille <akim@epita.fr>
9088
9089 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9090 to...
9091 * src/scan-code.l: here.
9092 * tests/input.at (Torturing the Scanner): Fix another location
9093 error.
9094
9095 2006-06-07 Akim Demaille <akim@epita.fr>
9096
9097 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9098
9099 2006-06-06 Akim Demaille <akim@epita.fr>
9100
9101 Extract the parsing of user actions from the grammar scanner.
9102 As a consequence, the relation between the grammar scanner and
9103 parser is much simpler. We can also split "composite tokens" back
9104 into simple tokens.
9105 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9106 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9107 rename as...
9108 * src/location.h, src/location.c (add_column_width)
9109 (location_compute): these.
9110 Fix the column count: the initial column is 0.
9111 (location_print): Be robust to ending column being 0.
9112 * src/location.h (boundary_set): New.
9113 * src/main.c: Adjust to scanner_free being renamed as
9114 gram_scanner_free.
9115 * src/output.c: Include scan-code.h.
9116 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9117 Use boundary_set.
9118 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9119 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9120 which is now, again, a separate token.
9121 Adjust all dependencies.
9122 Whereever actions with $ and @ are used, use translate_code.
9123 (action): Remove this nonterminal which is now useless.
9124 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9125 (grammar_current_rule_action_append): Use translate_code.
9126 (packgram): Bound check ruleno, itemno, and rule_length.
9127 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9128 (last_string, last_braced_code_loc, max_left_semantic_context)
9129 (scanner_initialize, scanner_free, scanner_last_string_free)
9130 (gram_out, gram_lineno, YY_DECL_): Move to...
9131 * src/scan-gram.h: this new file.
9132 (YY_DECL): Rename as...
9133 (GRAM_DECL): this.
9134 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9135 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9136 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9137 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9138 Move these declarations, and...
9139 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9140 these to...
9141 * src/flex-scanner.h: this new file.
9142 * src/scan-gram.l (rule_length, rule_length_overflow)
9143 (increment_rule_length): Remove.
9144 (last_braced_code_loc): Rename as...
9145 (gram_last_braced_code_loc): this.
9146 Adjust to the changes of the parser.
9147 Move all the handling of $ and @ into...
9148 * src/scan-code.l: here.
9149 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9150 (handle_action_dollar, handle_action_at): Move to...
9151 * src/scan-code.l: here.
9152 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9153 scan-code.h, scan-code-c.c, scan-gram.h.
9154 (EXTRA_bison_SOURCES): Add scan-code.l.
9155 (BUILT_SOURCES): Add scan-code.c.
9156 (yacc): Be robust to white spaces.
9157
9158 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9159 * tests/regression.at: Adjust the column numbers.
9160 * tests/regression.at: Adjust the error message.
9161
9162 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9163
9164 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9165 Use Akim's wording from
9166 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9167
9168 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9169
9170 Between Bison releases, manually append `+' to the previous Bison
9171 release number, and use that as a signal to automatically print the
9172 ChangeLog's CVS Id keyword from --version. Discussed starting at
9173 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9174 * ChangeLog: Add Id header.
9175 * configure.ac (AC_INIT): Append `+' to `2.3'.
9176 * src/.cvsignore: Add revision.c.
9177 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9178 (BUILT_SOURCES): Add revision.c.
9179 (revision.c): New target rule. This file defines a new global variable
9180 named revision. It initializes it with either the Id from ChangeLog
9181 or, if VERSION doesn't contain `+', with the empty string.
9182 * src/getargs.c (version): Print the value of revision.
9183 * src/revision.h: Extern revision.
9184
9185 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9186
9187 * NEWS: Version 2.3.
9188 * configure.ac (AC_INIT): Likewise.
9189
9190 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9191
9192 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9193 with no arguments, not as an object-like macro. This is for
9194 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9195 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9196 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9197 Document this.
9198
9199 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9200
9201 * src/getargs.c (usage): Back out yesterday's modification of the
9202 --help output so that we don't have to wait for translation before
9203 releasing 2.3.
9204
9205 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9206
9207 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9208 Problem reported by Akim Demaille.
9209
9210 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9211
9212 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9213
9214 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9215
9216 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9217 generated source code. Problem reported by Frans Englich in
9218 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9219
9220 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9221
9222 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9223 shell, not within 'make', so that 'make' by an ordinary builder
9224 (using GNU make) does not worry about configuring gzip. This also
9225 works around a bug reported independently by Keith Thompson and by
9226 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9227 stderr rather than stdout, messing up the build logs.
9228
9229 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9230
9231 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9232 to make sure that YYID will never be unused. This fixes a 'make
9233 maintainer-check' failure caused by the recent changes to the 'Trivial
9234 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9235 not used.
9236 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9237
9238 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9239
9240 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9241 state before an empty RHS is always resolved here. Only the location
9242 of that state is guaranteed to be resolved, and that's enough. This
9243 fixes the remaining bug reported by Derek M. Jones in
9244 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9245 * tests/glr-regression.at (Uninitialized location when reporting
9246 ambiguity): Test the above case.
9247 Also, the embedded comments in this test case claim it checks the case
9248 of an empty RHS that has inherited the initial location. However, the
9249 corresponding LHS was already resolved, so yyresolveLocations didn't
9250 actually have reason to modify it. Fix this by forcing
9251 nondeterministic operation at the beginning of the parse.
9252
9253 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9254
9255 * data/c.m4 (b4_yy_symbol_print_generate):
9256 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9257 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9258 of the bugs reported today by Derek M Jones in
9259 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9260 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9261 defined to be a type name without parens or brackets.
9262 (Location Type): Similarly for YYLTYPE.
9263 * tests/regression.at (Trivial grammars): Put in a test for this
9264 bug that will be caught by 'make maintainer-check' (though not,
9265 alas, by 'make check' unless your compiler is picky).
9266
9267 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9268
9269 * NEWS: Version 2.2.
9270 * configure.ac (AC_INIT): Likewise.
9271
9272 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9273
9274 * data/glr.c (yyreportTree): Make room in yystates for the state
9275 preceding the RHS. This fixes the segmentation fault reported by Derek
9276 M. Jones in
9277 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9278 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9279 to the user. Reported for yyreportTree by Derek M. Jones later in the
9280 same thread.
9281 * THANKS: Add Derek M. Jones.
9282 Update my email address.
9283 Fix typo in Steve Murphy's name.
9284
9285 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9286
9287 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9288 checking against YYLAST that caused the parser to miss a potential
9289 alternative in its diagnostic.
9290 Problem reported by Maria Jose Moron Fernandez in
9291 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9292 * data/lalr1.cc (yysyntax_error_): Likewise.
9293 * data/yacc.c (yysyntax_error): Likewise.
9294 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9295 tokens, in case we run into an older C compiler.
9296 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9297 Use them to check for the off-by-one error fixed above.
9298
9299 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9300 YYSIZE_T, not size_t.
9301 * tests/regression.at (Trivial grammars): New test, to catch
9302 the error fixed by the above patch.
9303
9304 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9305
9306 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9307 scheme.
9308 Reported by Steve Murphy.
9309
9310 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9311
9312 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9313 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9314
9315 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9316
9317 Implement --trace=m4.
9318 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9319 * src/output.c (output_skeleton): When set, pass -dV to m4.
9320
9321 Factor the handling of flags in m4.
9322 * src/output.c (prepare): Rename the muscle names debug, defines,
9323 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9324 * data/c.m4: Adjust.
9325 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9326 Use b4_define_flag_if to define other b4_FLAG_if macros.
9327 (b4_location_if): As a consequence, rename as...
9328 (b4_locations_if): this, for consistency.
9329 Adjust all the skeletons.
9330
9331 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9332
9333 * etc/bench.pm: Shorten bench names.
9334
9335 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9336
9337 * src/output.h, src/output.c (error_verbose): Move to...
9338 * src/getargs.h, src/getargs.c: here.
9339 Sort the flags.
9340 Adjust dependencies.
9341
9342 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9343
9344 * data/c.m4 (b4_copyright): Put the special exception for Bison
9345 skeletons here, so we don't have to put it in each skeleton. All
9346 uses changed. Suggested by Akim Demaille. Also, wrap the
9347 copyright notice, in case it is longer than 80 columns. Replace
9348 comma by newline after title.
9349
9350 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9351
9352 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9353 incompatibility, not a bug. Mention that it wasn't fixed as of
9354 flex 2.5.33.
9355
9356 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9357
9358 * examples/extexi: Enforce the precedence of concatenation over
9359 >>.
9360 Reported by Tommy Nordgren.
9361
9362 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9363
9364 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9365 with the member "token".
9366 Reported by Martin Nylin.
9367
9368 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9369
9370 * data/glr.c: Switch to Bison 2.2 special-exception language in
9371 the copyright notice. Use more-regular format for titles and
9372 copyright notices.
9373 * data/glr.cc: Likewise.
9374 * data/location.cc: Likewise.
9375 * data/yacc.cc: Likewise.
9376 * doc/bison.texinfo (Conditions): Document this.
9377 * NEWS: likewise. Upgrade version to 2.2.
9378
9379 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
9380
9381 * data/glr.cc: Remove dead code.
9382
9383 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9384
9385 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9386 that variable and the line breaks the bootstrap. Problem reported
9387 by Juan M. Guerrero.
9388
9389 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9390
9391 * doc/bison.texinfo (Multiple start-symbols): New.
9392
9393 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9394
9395 * etc/README, etc/bench.pl: New.
9396
9397 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
9398
9399 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9400 rule.
9401 Reported by Mickael Labau.
9402 * tests/input.at (Torturing the Scanner): Test it.
9403
9404 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9405
9406 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9407 Problem reported by Bob Rossi.
9408
9409 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9410
9411 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9412 and didn't really work.
9413 For the index, use @ifnotinfo, not @iftex.
9414 Minor cleanups of spacing and terminology.
9415
9416 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9417
9418 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9419 of AT_NAME_PREFIX when %name-prefix is not used.
9420
9421 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9422
9423 Apply --prefix to C++ skeletons too: they change the namespace.
9424 The test suite already exercize these cases.
9425 * data/c++.m4 (b4_namespace): New.
9426 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9427 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9428 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9429 * doc/bison.texinfo: Document it.
9430 (Option Cross Key): Use @multitable in all formats. It looks
9431 nicer, even in TeX outputs.
9432 (Rules): Use the same code whatever the output type is.
9433 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9434 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9435 * tests/calc.at: Use it, instead of hard coding `yy'.
9436
9437 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9438
9439 * TODO: Remove dead items.
9440
9441 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9442
9443 * doc/FAQ: Remove, merged into...
9444 * doc/bison.texinfo (FAQ): this.
9445 * doc/Makefile.am (EXTRA_DIST): Adjust.
9446
9447 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9448
9449 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9450 even if empty.
9451 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9452 * doc/bison.texinfo (Calc++ Scanner): Use it.
9453
9454 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9455
9456 Fix two nits reported by twlevo, plus one more that I discovered.
9457
9458 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9459 this is the usual Bison style.
9460 * src/location.h (location_print): Likewise.
9461
9462 * src/reader.h (token_name): Likewise.
9463
9464 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9465
9466 Fix some nits reported by twlevo.
9467 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9468 and "POSIX". Use more-modern syntax for URLs. Mention C++
9469 and ask for Java. Don't hardwire OS version numbers. Add
9470 copyright notice.
9471 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9472 * src/conflicts.c (solved_conflicts_obstack): Now static.
9473
9474 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9475
9476 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9477 page. Say "you can use it" not "you may use it" as on the web page;
9478 we're describing capabilities not granting permission.
9479
9480 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9481
9482 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9483 shadowing warnings. Use usual patter for iterating through RHS.
9484 * tests/glr-regression.at
9485 (Uninitialized location when reporting ambiguity):
9486 Modify yylex so that it uses its argument, rather than trying
9487 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9488 const char -> char const.
9489
9490 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9491 Don't use tabs inside commands; it messes up 'ps'.
9492 Problem reported by twlevo.
9493
9494 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9495
9496 * tests/glr-regression.at (Uninitialized location when reporting
9497 ambiguity): New test case.
9498 * data/glr.c (yyresolveLocations): New function, which uses
9499 YYLLOC_DEFAULT.
9500 (yyresolveValue): Invoke yyresolveLocations before reporting an
9501 ambiguity.
9502 * doc/bison.texinfo (Default Action for Locations): Note
9503 YYLLOC_DEFAULT's usage for ambiguity locations.
9504 (GLR Semantic Actions): Cross-reference those notes.
9505
9506 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9507
9508 * tests/glr-regression.at (Leaked semantic values when reporting
9509 ambiguity): Remove unnecessary union and type declarations.
9510 (Leaked lookahead after nondeterministic parse syntax error): New test
9511 case.
9512 * data/glr.c (yyparse): Check for zero stacks remaining before
9513 attempting to shift the lookahead so that you don't lose it.
9514
9515 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9516
9517 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9518 * tests/glr-regression.at (Leaked semantic values when reporting
9519 ambiguity): New test case.
9520 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9521 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9522 now unnecessary yystackp parameter.
9523 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9524 destructors can be called.
9525
9526 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9527 in existing testcases.
9528
9529 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9530
9531 Don't leak semantic values for parent RHS when a user action cuts the
9532 parser, and clean up related code a bit.
9533 * tests/glr-regression.at (Leaked merged semantic value if user action
9534 cuts parse): Rename to...
9535 (Leaked semantic values if user action cuts parse): ... this. Add check
9536 for leaked parent RHS values.
9537 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9538 between an unresolved state (non-empty chain of semantic options) and
9539 an incomplete one (signaled by an empty chain).
9540 (yyresolveStates): Document the interface. Move all manipulation of a
9541 successfully or unsuccessfully resolved yyGLRState to...
9542 (yyresolveValue): ... here so that yyresolveValue always leaves a
9543 yyGLRState with consistent data and thus is easier to understand.
9544 Remove the yyvalp and yylocp parameters since they are always just
9545 taken from the yys parameter. When reporting a discarded merged value
9546 in debugging output, note that it is incompletely merged. Document the
9547 interface.
9548 (yyresolveAction): If resolving any of the RHS states fails, destroy
9549 them all rather than leaking them. Thus, as long as user actions are
9550 written to clean up the RHS correctly, yyresolveAction always cleans up
9551 the RHS of a semantic option. Document the interface.
9552
9553 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9554
9555 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9556 led to a segmentation fault in GNU Pascal. Problem reported
9557 by Waldek Hebisch.
9558
9559 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9560
9561 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9562 mid-rule action inside a nonterminal symbol in order to declare a
9563 destructor for its semantic value.
9564
9565 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9566
9567 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9568 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9569 __cplusplus && ! defined _STDLIB_H && !
9570 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9571 defined free))]: Include <stdlib.h> rather than rolling our own
9572 declarations of malloc and free, to avoid problems with
9573 incompatible declarations (using 'throw') C++'s stdlib.h. This
9574 should fix Debian bug 340012
9575 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9576 reported by Guillaume Melquiond.
9577
9578 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9579
9580 * NEWS: Clarify symbols versus types in unused-value warnings.
9581
9582 * configure.ac (AC_INIT): Bump version number.
9583
9584 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9585
9586 * NEWS: Version 2.1a.
9587 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9588 since C99 requires this.
9589
9590 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9591
9592 * m4/c-working.m4: New file.
9593 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9594
9595 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9596
9597 * Makefile.maint: Merge from coreutils.
9598
9599 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9600
9601 More portability fixes for problems summarized by Nelson H. F. Beebe.
9602
9603 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9604 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9605 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9606 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9607 messes up because C++ code is compiled in 32-bit mode but linked
9608 in 64-bit mode.
9609
9610 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9611
9612 More portability fixes for problems summarized by Nelson H. F. Beebe.
9613
9614 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9615 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9616
9617 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9618 nodist_PROGRAMS, since we don't need to actually compile the
9619 example if we're just doing a plain 'make'. This avoids bothering
9620 the installer unnecessarily about problems due to weird C++
9621 compilers.
9622
9623 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9624
9625 More portability fixes for problems summarized by Nelson H. F. Beebe.
9626
9627 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9628 than #include "...", and compile with -I'.'. The old method was
9629 not portable, according to Posix and the C standard, and it does
9630 not work with Sun C 5.7, where previous #line directives affect
9631 the working directory used in later #include "..." directives.
9632
9633 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9634
9635 Various DJGGP specific issues in /djgpp
9636
9637 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9638
9639 More portability fixes for problems summarized by Nelson H. F. Beebe.
9640
9641 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9642 '#include <map>' works and that you can apply ++ to iterators.
9643
9644 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9645
9646 Work around portability problems summarized by Nelson H. F. Beebe in
9647 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9648
9649 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9650 that '#include <string>' works.
9651
9652 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9653 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9654 "warning: sorry: semantics of inline function static data `const
9655 unsigned char translate_table[262]' are wrong (you'll wind up with
9656 multiple copies)".
9657
9658 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9659 or, xor to not_, and_, or_, and xor_, respectively. This works
9660 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9661 random system header somewhere that includes the equivalent of
9662 <iso646.h>.
9663
9664 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9665 -E" works; it apparently doesn't work with PathScale EKO Compiler
9666 Suite Version 2.0.
9667
9668 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9669
9670 During deterministic GLR operation, user actions should be able to
9671 influence the parse by changing yychar. To make this easier to fix and
9672 to make glr.c easier to evolve in general, don't maintain yytoken in
9673 parallel with yychar; just compute yytoken when needed.
9674 * tests/glr-regression.at (Incorrect lookahead during deterministic
9675 GLR): Check that setting yychar in a user action has the intended
9676 effect.
9677 * data/glr.c (yyGLRStack): Remove yytokenp member.
9678 (yyclearin): Don't set *yytokenp.
9679 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9680 yychar rather than *yytokenp to determine the current lookahead.
9681 Compute yytoken locally when needed.
9682 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9683 point to.
9684
9685 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9686 after `--report' documentation.
9687
9688 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9689
9690 * src/parse-gram.y (grammar_declaration): Location of printer
9691 symbol is @1, not list->location. Bug reported by twlevo.
9692 * tests/input.at (Incompatible Aliases): Adjust to above change.
9693
9694 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9695
9696 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9697 all the test at once. This makes the output easier to read in the
9698 normal case.
9699
9700 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9701 got from <http://bro-ids.org/download.html>. The bug is that
9702 when two actions appeared in succession, the second one was
9703 scanned before the first one was added to the grammar rule
9704 as a midrule action. Bison then output the incorrect warning
9705 "parse.y:905.17-906.36: warning: unused value: $3".
9706 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9707 associated with a value.
9708 (rhs): Don't invoke grammar_current_rule_action_append.
9709 (action): Invoke it here instead.
9710 * src/reader.c (grammar_midrule_action): Now extern.
9711 (grammar_current_rule_action_append): Don't invoke
9712 grammar_midrule_action; that is now the scanner's job.
9713 * src/reader.h (last_string, last_braced_code_loc):
9714 (grammar_midrule_action): New decls.
9715 * src/scan-gram.l (last_string): Now extern, sigh.
9716 (last_braced_code_loc): New extern variable.
9717 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9718 rule already has an action.
9719 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9720 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9721 Add some tests to check that the above changes fixed the bug.
9722
9723 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9724
9725 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9726 All used changed. Check whether the symbol has a destructor,
9727 not whether it is typed.
9728 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9729 that the values are still reported as unused. All line numbers
9730 adjusted.
9731
9732 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9733
9734 Work around a bug in bro 0.8, which underparenthesizes its
9735 definition of YYLLOC_DEFAULT.
9736 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9737 their arguments.
9738 * data/lalr1.cc: Likewise.
9739 * data/yacc.cc: Likewise.
9740
9741 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9742
9743 Work around a bug in Pike 7.0, and give the Pike folks a
9744 better way to override the usual int widths.
9745 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9746 user can override the types.
9747 (short): #undef, to work around a bug in Pike 7.0.
9748 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9749 (union yyalloc.yyss): Use yytype_int16 rather than short.
9750 All uses changed.
9751 (yysigned_char): Remove.
9752 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9753 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9754 * tests/regression.at (Web2c Actions): Adjust to above changes.
9755
9756 * src/reader.c (check_and_convert_grammar): New function.
9757 (reader): Close the input file even if something went wrong during
9758 parsing. Minor file descriptor leak reported by twlevo.
9759
9760 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9761 to pacify gcc -Wswitch-default.
9762 * src/scan-gram.l (adjust_location): Use a default: break; case
9763 to pacify gcc -Wswitch-default.
9764 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9765 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9766 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9767 Move these decls to scan-skel.l, since they don't need to be
9768 visible elsewhere.
9769 * src/scan-skel.l: Accept the above decls.
9770 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9771 is used.
9772
9773 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9774
9775 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9776 since we don't want to insist on a version number at the start
9777 of the changelog every time.
9778 * Makefile.maint: Sync from coreutils a bit better.
9779 (sc_trailing_blank): Renamed from sc_trailing_space.
9780 All uses changed.
9781 (sc_no_if_have_config_h, sc_require_config_h):
9782 (sc_prohibit_assert_without_use): New rules.
9783 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9784 (sc_dd_max_sym_length): Fix leading spaces in rule.
9785 (sc_system_h_headers): Prefix with @.
9786 (sc_useless_cpp_parens, m4-check): Output line numbers.
9787 (changelog-check): Allow version only in head.
9788 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9789 satisfy new Makefile.maint rule.
9790 * data/glr.c: Likewise.
9791 * data/glr.cc: Likewise.
9792 * data/lalr1.cc: Likewise.
9793 * data/yacc.c: Likewise.
9794 * lib/ebitsetv.c: Likewise.
9795 * lib/lbitset.c: Likewise.
9796 * lib/subpipe.c: Likewise.
9797 * lib/timevar.c: Likewise.
9798 * src/system.h: Likewise.
9799 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9800 * djgpp/Makefile.maint: Add copyright notice.
9801 * djgpp/README.in: Likewise.
9802 * djgpp/config.bat: Likewise.
9803 * djgpp/config.site: Likewise.
9804 * djgpp/config_h.sed: Likewise.
9805 * djgpp/djunpack.bat: Likewise.
9806 * djgpp/config.sed: Fix copyright notice to match standard format.
9807 * djgpp/subpipe.h: Likewise.
9808 * lib/bitsetv-print.c: Likewise.
9809 * lib/bitsetv.c: Likewise.
9810 * lib/subpipe.h: Likewise.
9811 * lib/timevar.c: Likewise.
9812 * lib/timevar.h: Likewise.
9813 * djgpp/subpipe.c: Use standard recipe for config.h.
9814 * lib/abitset.c: Likewise.
9815 * lib/bitset.c: Likewise.
9816 * lib/bitset_stats.c: Likewise.
9817 * lib/bitsetv-print.c: Likewise.
9818 * lib/bitsetv.c: Likewise.
9819 * lib/ebitsetv.c: Likewise.
9820 * lib/get-errno.c: Likewise.
9821 * lib/lbitset.c: Likewise.
9822 * lib/subpipe.c: Likewise.
9823 * lib/timevar.c: Likewise.
9824 * lib/vbitset.c: Likewise.
9825 * tests/local.at: Likewise.
9826 * src/scan-gram.l: Don't include verify.h, since system.h does
9827 that for us.
9828 * .x-sc_require_config_h: New file.
9829 * .x-sc_unmarked_diagnostics: New file.
9830
9831 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9832
9833 Be a bit more systematic about using 'abort'.
9834 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9835 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9836 Put 'default: abort ();' before some other case, to satisfy older
9837 pedantic compilers.
9838 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9839 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9840 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9841 * src/conflicts.c (resolve_sr_conflict): Likewise.
9842 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9843 (get_decision_str, get_orientation_str, get_node_alignment_str):
9844 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9845 (get_linestyle_str, get_arrowstyle_str): Likewise.
9846 * src/conflicts.c (resolve_sr_conflict):
9847 Use a default case rather than one for the one remaining enum
9848 value, to catch invalid enum values as well.
9849 * src/lalr.c (set_goto_map, map_goto):
9850 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9851 * src/nullable.c (nullable_compute, token_definitions_output):
9852 Likewise.
9853 * src/reader.c (packgram, reader): Likewise.
9854 * src/state.c (transitions_to, state_new, state_reduction_find):
9855 Likewise.
9856 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9857 (symbol_pack): Likewise.
9858 * src/tables.c (conflict_row, pack_vector): Likewise.
9859 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9860 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
9861 * src/system.h: Don't include <assert.h>.
9862 (assert): New macro.
9863
9864 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9865 (Destructor Decl, Parser Function, Pure Calling):
9866 Describe rules for braces inside C code more carefully.
9867
9868 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9869
9870 Fix some porting glitches found by Nelson H. F. Beebe.
9871 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9872 compilers that don't understand that abort () does not return.
9873 * src/state.c (transitions_to): Likewise.
9874 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9875 that '#include <cstdlib>' works.
9876 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9877 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9878 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9879 for the benefit of some pre-C99 compilers.
9880
9881 * bootstrap: Undo changes to gnulib files that autoreconf made.
9882
9883 Minor fixups to get 'make maintainer-check' to work.
9884 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9885 with the new verify.h implementation.
9886 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9887 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9888 * data/yacc.c (YYUSE): Likewise.
9889 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9890 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9891 * src/parse-gram.y (declaration): Don't pass a string constant
9892 to a function that expects char *, since GCC might complain
9893 about the constant value.
9894 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9895 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9896 before #defining them.
9897 * tests/glr-regression.at
9898 (Incorrectly initialized location for empty right-hand side in GLR):
9899 In yyerror, use the msg arg.
9900 (Corrupted semantic options if user action cuts parse):
9901 (Incorrect lookahead during deterministic GLR):
9902 (Incorrect lookahead during nondeterministic GLR):
9903 Don't name a local var 'index'; it shadows string.h's 'index'.
9904
9905 2006-01-19 Akim Demaille <akim@epita.fr>
9906
9907 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9908 location, not just parts of it.
9909
9910 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9911
9912 * NEWS: Document the fact that multiple %unions are now allowed.
9913 * doc/bison.texinfo (Union Decl): Likewise.
9914 * TODO: This feature is now implemented, so remove it from
9915 the wishlist.
9916
9917 * Makefile.maint: Merge with coreutils Makefile.maint.
9918 (CVS_LIST): Use build-aux version if available.
9919 (VERSION_REGEXP): New macro.
9920 (syntax-check-rules): Add sc_no_if_have_config_h,
9921 sc_prohibit_assert_without_use, sc_require_config_h,
9922 sc_useless_cpp_parens.
9923 (sc_obsolete_symbols): Check for O_NDELAY.
9924 (sc_dd_max_sym_length): Track coreutils.
9925 (sc_unmarked_diagnostics): Look in all files, not just *.c.
9926 (sc_useless_cpp_parens): New rule.
9927 (news-date-check): Look for version or today's date.
9928 (changelog-check): Don't require version number near head.
9929 (copyright-check): Use current year instead of hardwiring 2005.
9930 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
9931 (announcement): Add --gpg-key-ID.
9932
9933 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
9934 with "file system".
9935
9936 Avoid undefined behavior that addressed just before the start of an
9937 array. Problem reported by twlevo.
9938 * src/reader.c (packgram): Prepend a new sentinel before ritem.
9939 * src/lalr.c (build_relations): Rely on new sentinel.
9940 * src/gram.c (gram_free): Adjust to new sentinel.
9941
9942 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
9943
9944 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
9945 yylookaheadNeeds. All uses updated.
9946 (yysplitStack): Rename local yynewLookaheadStatuses to
9947 yynewLookaheadNeeds.
9948 * data/glr-regression.at (Incorrect lookahead during nondeterministic
9949 GLR): In comments, change `lookahead status' to `lookahead need'.
9950
9951 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9952
9953 * data/glr.c (yysplitStack): A little stylistic rewrite.
9954
9955 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9956
9957 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
9958
9959 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
9960
9961 * doc/bison.texinfo: Fix some typos.
9962 (GLR Semantic Actions): New subsection discussing special
9963 considerations because GLR semantic actions might be deferred.
9964 (Actions): Mention look-ahead usage of yylval.
9965 (Actions and Locations): Mention look-ahead usage of yylloc.
9966 (Special Features for Use in Actions): Add YYEOF entry and mention it
9967 in the yychar entry.
9968 In the yychar entry, remove mention of the local yychar case (pure
9969 parser) since this is irrelevant information when writing semantic
9970 actions and since it's already discussed in `Table of Symbols' where
9971 yychar is otherwise described as an external variable.
9972 In the yychar entry, don't call it the `current' look-ahead since it
9973 isn't when semantic actions are deferred.
9974 In the yychar and yyclearin entries, add note about deferred semantic
9975 actions.
9976 Add yylloc and yylval entries discussing look-ahead usage.
9977 (Look-Ahead Tokens): When discussing yychar, don't call it the
9978 `current' look-ahead, and do mention yylval and yylloc.
9979 (Error Recovery): Cross-reference `Action Features' when mentioning
9980 yyclearin.
9981 (Table of Symbols): In the yychar entry, don't call it the `current'
9982 look-ahead.
9983 In the yylloc and yylval entries, mention look-ahead usage.
9984
9985 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
9986
9987 * tests/glr-regression.at: Update copyright year to 2006.
9988
9989 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9990
9991 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
9992 use during nondeterministic operation to track which stacks have
9993 actually needed the current lookahead.
9994 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
9995 Allocate, deallocate, resize, and otherwise shuffle space for
9996 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
9997 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
9998 appropriately during nondeterministic operation.
9999 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10000 members to store the current lookahead to be used by the deferred
10001 user action.
10002 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10003 from which the RHS is taken. Set the lookahead members of the new
10004 yySemanticOption according to the lookahead status for stack yyk.
10005 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10006 yyaddDeferredAction.
10007 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10008 members of yySemanticOption before invoking yyuserAction, and then set
10009 them back to their current values afterward.
10010 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10011 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10012 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10013 titles for consistency.
10014 (Leaked merged semantic value if user action cuts parse): In order to
10015 suppress lint warnings, use arguments in merge function, and assign
10016 char value < 128 in main.
10017 (Incorrect lookahead during deterministic GLR): New test case.
10018 (Incorrect lookahead during nondeterministic GLR): New test case.
10019
10020 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10021
10022 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
10023 !yyvaluep as signal that no semantic value is available to print.
10024 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10025 to print a semantic value.
10026
10027 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10028
10029 * tests/glr-regression.at: For consistency with my newer test cases,
10030 don't thank myself.
10031
10032 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10033
10034 * data/glr.c (yyresolveValue): When merging semantic options, if at
10035 least one user action succeeds but a later one cuts the parse, then
10036 destroy the semantic value before returning rather than leaking it.
10037 (yyresolveStates): If a user action cuts the parse and thus
10038 yyresolveValue fails, ignore the (unset) semantic value rather than
10039 corrupting the yyGLRState, and empty the semantic options list since
10040 the user actions should have called all necessary destructors.
10041 Simplify code with YYCHK.
10042 * tests/glr-regression.at (Corrupted semantic options if user action
10043 cuts parse): New test case.
10044 (Undesirable destructors if user action cuts parse): New test case.
10045 Before applying any of this patch, this test case never actually failed
10046 for me... but only because the corrupted semantic options usually
10047 masked this bug.
10048 (Leaked merged semantic value if user action cuts parse): New test
10049 case.
10050
10051 2006-01-05 Akim Demaille <akim@epita.fr>
10052
10053 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10054
10055 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10058 _MSC_VER. Problem reported by Cenzato Marco.
10059 (b4_c_function_def): Use it.
10060 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10061 b4_c_modern.
10062 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10063 than rolling our own.
10064
10065 2006-01-04 Akim Demaille <akim@epita.fr>
10066
10067 Also warn about non-used mid-rule values.
10068 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10069 member.
10070 (symbol_list_new): Adjust.
10071 * src/reader.c (symbol_typed_p): New.
10072 (grammar_rule_check): Use it.
10073 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10074 Check its rule.
10075 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10076 Use it.
10077 * tests/actions.at (Exotic Dollars): Adjust.
10078
10079 2006-01-04 Akim Demaille <akim@epita.fr>
10080
10081 * src/reader.c (grammar_midrule_action): If $$ is set in a
10082 mid-rule, move the `used' bit to its lhs.
10083 * tests/input.at (Unused values): New.
10084 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10085
10086 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10087
10088 * doc/bison.texinfo (Bison Options): Say more accurately what
10089 --yacc does.
10090 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10091 about declarations in the grammar when in Yacc mode, as POSIX does
10092 not require a diagnostic when the grammar uses extensions.
10093
10094 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10095
10096 Warn about dubious constructions like "%token T T".
10097 Reported by twlevo.
10098 * src/symtab.h (struct symbol.declared): New member.
10099 * src/symtab.c (symbol_new): Initialize it to false.
10100 (symbol_class_set): New arg DECLARING, specifying whether
10101 this is a declaration that we want to warn about, if there
10102 is more than one of them. All uses changed.
10103
10104 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10105 Allow multiple %union directives, whose contents concatenate.
10106 * src/parse-gram.y (grammar_declaration): Likewise.
10107 Use muscle_code_grow, so that we don't need stype_line any more.
10108 All uses changed.
10109
10110 * src/muscle_tab.c (muscle_grow): Fix comment.
10111
10112 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10113 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10114 Update copyright year to 2006.
10115
10116 2006-01-03 Akim Demaille <akim@epita.fr>
10117
10118 Have glr.cc pass (some of) the calc.at tests.
10119 * data/glr.cc (b4_parse_param_orig): New.
10120 (b4_parse_param): Improve its definition, and bound it more
10121 clearly in the skeleton.
10122 (b4_epilogue): Append, instead of prepending, in order to keep
10123 #line consistency.
10124 Simplify the generation of auxiliary functions: locations and
10125 purity are mandated.
10126 (b4_global_tokens_and_yystype): Honor it.
10127 * data/location.cc (c++.m4): Don't include it.
10128 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10129 and AT_SKEL_CC_IF.
10130 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10131 AT_LALR1_CC_IF.
10132 Be sure to initialize the first position's filename.
10133 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10134 mandated anyway.
10135 (AT_CHECK_CALC_GLR_CC): New.
10136 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10137
10138 2006-01-02 Akim Demaille <akim@epita.fr>
10139
10140 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10141 c.m4.
10142 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
10143 * data/glr.cc: Do not include stack.hh.
10144
10145 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10146
10147 * data/glr.c: Reformat whitespace with tabs.
10148 (b4_lpure_formals): Remove this unused m4 macro.
10149 * tests/cxx-type.at: Reformat whitespace with tabs.
10150 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10151 since it's a member. Rename type to isNterm for clarity.
10152
10153 2005-12-29 Akim <akim@sulaco.local>
10154
10155 Let glr.cc catch up with symbol_value_print.
10156 * data/glr.cc (b4_yysymprint_generate): Replace by...
10157 (b4_yy_symbol_print_generate): this.
10158 (yy_symbol_print, yy_symbol_value_print): Declare them.
10159
10160 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10161
10162 * src/location.h (boundary): Note that a line or column equal
10163 to INT_MAX indicates an overflow.
10164 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10165 (rule_length_overflow, increment_rule_length, add_column_width):
10166 New functions.
10167 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10168 (<SC_BRACED_CODE>"}"):
10169 Use increment_rule_length rather than incrementing it by hand.
10170 (adjust_location, handle_syncline): Diagnose overflow.
10171 (handle_action_dollar, handle_action_at):
10172 Fix bug with monstrosities like $-2147483648.
10173 Remove now-unnecessary checks.
10174 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10175 (convert_ucn_to_byte): Verify assumptions.
10176 (handle_syncline): New arg LOC. All callers changed.
10177 Don't store through a value derived from char const * pointer.
10178
10179 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10180 GCC warnings.
10181
10182 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10183
10184 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10185 Remove unnecessary forward static decls.
10186
10187 2005-12-27 Akim Demaille <akim@epita.fr>
10188
10189 * src/reader.c (grammar_current_rule_check): Also check that $$
10190 is used.
10191 Take the rule to check as argument, hence rename as...
10192 (grammar_rule_check): this.
10193 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10194 Rename as...
10195 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10196 (grammar_midrule_action, grammar_symbol_append): Now static.
10197 * tests/torture.at (input): Don't rely on the default action
10198 being always performed.
10199 * tests/calc.at: "Set" $$ even when the action is "cut" with
10200 YYERROR or other.
10201 * tests/actions.at (Exotic Dollars): Instead of using unused
10202 values, check that the warning is issued.
10203
10204 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10205
10206 * NEWS: Improve wording for unused-value warnings.
10207
10208 2005-12-22 Akim Demaille <akim@epita.fr>
10209
10210 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10211 (b4_yysymprint_generate): Rename as...
10212 (b4_yy_symbol_print_generate): this.
10213 Generate yy_symbol_print instead of yysymprint.
10214 Generate also yy_symbol_value_print, and use it.
10215
10216 2005-12-22 Akim Demaille <akim@epita.fr>
10217
10218 * NEWS: Warn about unused values.
10219 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10220 a `used' member.
10221 (symbol_list_n_get, symbol_list_n_used_set): New.
10222 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10223 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10224 * src/reader.c (grammar_current_rule_check): Check that values are
10225 used.
10226 * src/symtab.c (symbol_print): Accept 0.
10227 * tests/existing.at: Remove the type information.
10228 Empty the actions.
10229 Remove useless actions (beware of mid-rule actions: perl -000
10230 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10231 * tests/actions.at (Exotic Dollars): Use unused values.
10232 * tests/calc.at: Likewise.
10233 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10234 Likewise.
10235
10236 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10237 rule_useful_p.
10238
10239 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10240
10241 Undo 2005-12-01 tentative license wording change. The wording is
10242 still being reviewed by the lawyers, and we don't want to wait for
10243 them before publishing a test release. For now, revert to the
10244 previous wording.
10245 * NEWS: Undo 2005-12-01 change.
10246 * data/glr.c: Revert to previous license wording.
10247 * data/glr.cc: Likewise.
10248 * data/lalr1.cc: Likewise.
10249 * data/location.cc: Likewise.
10250 * data/yacc.c: Likewise.
10251
10252 * NEWS: Reword %destructor vs YYABORT etc.
10253 * data/glr.c: Use American spacing, for consistency.
10254 * data/glr.cc: Likewise.
10255 * data/lalr1.cc: Likewise.
10256 * data/yacc.c: Likewise.
10257 * data/yacc.c: Reformat comments slightly.
10258 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10259 for consistency. Fix some spelling errors and reword recently-included
10260 text slightly.
10261 * tests/cxx-type.at: Cast results of malloc, for C++.
10262
10263 2005-12-21 Joel E. Denny <address@hidden>
10264
10265 * tests/cxx-type.at: Construct a tree, count the parents of shared
10266 nodes, and free each node once and only once. Previously, the memory
10267 for semantic values was leaked instead.
10268
10269 2005-12-21 Joel E. Denny <address@hidden>
10270
10271 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10272 (yylval, yylloc): If pure, #define to yystackp->yyval and
10273 yystackp->yyloc similar to yychar and yynerrs.
10274 (yyparse): If pure, remove local yylval and yylloc. Add local
10275 yystackp to accommodate pure definitions of yylval and yylloc.
10276 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10277 yylvalp and yyllocp to &yylval and &yylloc.
10278 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10279 namespace. Previously, nerrs and char were missing, but lval and lloc
10280 weren't necessary.
10281 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10282 yylvalp and yyllocp parameters since, if pure, these are now always
10283 accessible through yystackp. If not pure, they are still accessible
10284 globally.
10285 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10286 `if (YYID (N))' to pacify lint.
10287
10288 2005-12-21 Akim Demaille <akim@epita.fr>
10289
10290 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10291 destroy the RHS symbols of a rule.
10292 * data/yacc.c (yylen): Initialize to 0.
10293 Keep its value to the number of items to possibly shift.
10294 In particular, a regular successful parse that ends on YYFINAL by
10295 a (internal) YYACCEPT must not have yylen != 0.
10296 (yyerrorlab, yyreturn): Pop the RHS.
10297 Reorder a bit to emphasize the `shifting' bits of code.
10298 (YYPOPSTACK): Now accept a number of items to pop.
10299 * data/lalr1.cc: Likewise.
10300 * data/glr.c: Formatting changes.
10301 Use goto instead of fall through.
10302 * doc/bison.texinfo (Destructor Decl): Complete.
10303
10304 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10305
10306 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10307 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10308 * djgpp/config.bat: Replace every occurence of the file name
10309 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10310 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10311 * djgpp/config.sed: Replace every occurence of the file name
10312 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10313 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10314 * djgpp/djunpack.bat: DJGPP specific file.
10315 * djgpp/fnchange.lst: DJGPP specific file.
10316 * djgpp/README.in: Add new information about how to unpack the bison
10317 source on MSDOS and other systems which have 8.3 file name restrictions
10318 using djunpack.bat and fnchange.lst.
10319
10320 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10321
10322 * bootstrap (build_cvs_prefix): Remove; unused.
10323 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10324 when getting gnulib.
10325
10326 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10327
10328 * data/glr.c: Reorder typedef declarations for structs to match order
10329 of struct declarations.
10330 Rename yystack everywhere to yystackp except in yyparse where it's not
10331 a pointer.
10332 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10333 consistency.
10334 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10335 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10336 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10337 lint.
10338
10339 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10340
10341 * tests/sets.at (Accept): Fix typos in regular expression used to
10342 sed out the final state number.
10343
10344 Work around portability problem on Solaris 10: flex-generated
10345 files include <stdio.h> before <config.h>, which messes up
10346 because the latter defines __EXTENSIONS__. Address the problem
10347 by creating two new little files that include <config.h> first,
10348 then include the flex-generated files. Rewrite everyone else
10349 to include <config.h> first, as well.
10350 * lib/timevar.c: Always include "config.h".
10351 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10352 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10353 (EXTRA_bison_SOURCES): New macro.
10354 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10355 * src/system.h: Don't include config.h.
10356 * src/LR0.c: Include <config.h> first.
10357 * src/assoc.c: Likewise.
10358 * src/closure.c: Likewise.
10359 * src/complain.c: Likewise.
10360 * src/conflicts.c: Likewise.
10361 * src/derives.c: Likewise.
10362 * src/files.c: Likewise.
10363 * src/getargs.c: Likewise.
10364 * src/gram.c: Likewise.
10365 * src/lalr.c: Likewise.
10366 * src/location.c: Likewise.
10367 * src/main.c: Likewise.
10368 * src/muscle_tab.c: Likewise.
10369 * src/nullable.c: Likewise.
10370 * src/output.c: Likewise.
10371 * src/parse-gram.y: Likewise.
10372 * src/print.c: Likewise.
10373 * src/print_graph.c: Likewise.
10374 * src/reader.c: Likewise.
10375 * src/reduce.c: Likewise.
10376 * src/relation.c: Likewise.
10377 * src/state.c: Likewise.
10378 * src/symlist.c: Likewise.
10379 * src/symtab.c: Likewise.
10380 * src/tables.c: Likewise.
10381 * src/uniqstr.c: Likewise.
10382 * src/vcg.c: Likewise.
10383
10384 * src/parse-gram.y: Fix minor problems uncovered by lint.
10385 (current_lhs, current_lhs_location): Now static.
10386 (current_assoc): Remove unused variable.
10387
10388 Cleanups so that Bison-generated parsers have less lint.
10389 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10390 Prepend /*ARGSUSED*/, for lint's sake.
10391 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10392 definition if 'lint' is defined.
10393 (YYID): New macro (or function, if lint).
10394 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10395 * data/yacc.c: Likewise.
10396 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10397 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10398 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10399 is C++ only.
10400 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10401 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10402 Use YYID(0) rather than 0, for lint.
10403 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10404 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10405
10406 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10407
10408 * tests/glr-regression.at
10409 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10410 Close memory leak reported by twlevo.
10411
10412 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10413
10414 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10415 all stacks.
10416 (yyparse): Iterate another stack in order to call user destructors.
10417 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10418 New test case.
10419 (Duplicated user destructor for lookahead): This test now is expected
10420 to succeed.
10421
10422 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10423
10424 * NEWS: Document the following change.
10425 * data/yacc.c: Say "parser skeleton" rather than "file", since
10426 it's no longer just a file.
10427 * data/glr.c: Grant a special exception for C GLR parsers, that
10428 reads like the already-existing exception for C LALR(1) parsers.
10429 * data/glr.cc: Likewise.
10430 * data/lalr1.cc: Likewise.
10431 * data/location.cc: Likewise.
10432 * data/yacc.c: Reword the "written by" statement to clarify that
10433 it was the parser skeleton, not the entire output file.
10434 * data/glr.c: Written by Paul Hilfinger.
10435 * data/glr.cc: Written by Akim Demaille.
10436 * data/lalr1.cc: Likewise.
10437
10438 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10439
10440 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10441 Fix typos in previous change that broke 'make check'.
10442 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10443 supported in C.
10444 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10445 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10446 We can revert this once things settle down.
10447
10448 * src/conflicts.c (conflicts_print): Don't print file name twice
10449 when %expect fails because there were no conflicts.
10450 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10451 change.
10452 * tests/conflicts.at (%expect not enough, %expect too much):
10453 (%expect with reduce conflicts): Adjust to new behavior.
10454
10455 2005-11-18 Akim Demaille <akim@epita.fr>
10456
10457 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10458 errors.
10459 * NEWS: Document this.
10460 * doc/bison.texinfo (Expect Decl): Likewise.
10461
10462 2005-11-16 Akim Demaille <akim@epita.fr>
10463
10464 Generalize the display of semantic values and locations in traces.
10465 * data/glr.c (yy_reduce_print): Fix indices (again).
10466 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10467 literal integers.
10468 * data/lalr1.cc (yyreduce_print): Rename as...
10469 (yy_reduce_print): this.
10470 Display values and locations.
10471 * data/yacc.c (yy_reduce_print): Likewise.
10472 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10473 (yysymprint): Move higher to be visible from yy_reduce_print).
10474 (yyparse): Adjust.
10475 * tests/calc.at: Adjust the expected length of the traces.
10476
10477 2005-11-14 Akim Demaille <akim@epita.fr>
10478
10479 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10480 from 1 to N, while values and location start at 0.
10481 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10482
10483 2005-11-14 Akim Demaille <akim@epita.fr>
10484
10485 * data/glr.c (yy_reduce_print): Fix the $ number.
10486
10487 2005-11-14 Akim Demaille <akim@epita.fr>
10488
10489 "Use" parse parameters.
10490 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10491 * data/glr.c, data/glr.cc: Use them.
10492 * data/glr.c (YYUSE): Have a C++ definition that supports
10493 non-pointer types.
10494
10495 2005-11-14 Akim Demaille <akim@epita.fr>
10496
10497 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10498
10499 2005-11-14 Akim Demaille <akim@epita.fr>
10500
10501 * data/glr.cc: New.
10502 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
10503
10504 2005-11-12 Akim Demaille <akim@epita.fr>
10505
10506 Let position and location be PODs.
10507 * data/location.cc (position::initialize, location::initialize): New.
10508 (position::position, location::location): Define only if
10509 b4_location_constructors is defined.
10510 * data/lalr1.cc (b4_location_constructors): Define it for backward
10511 compatibility.
10512 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10513
10514 2005-11-12 Akim Demaille <akim@epita.fr>
10515
10516 * data/lalr1.cc: Move the body of the ctor and dtor into the
10517 parser file (instead of the header).
10518 Wrap the implementations in a "namespace yy".
10519
10520 2005-11-12 Akim Demaille <akim@epita.fr>
10521
10522 Have glr.c include its header file when created.
10523 * data/glr.c (b4_shared_declarations): New.
10524 Output them verbatim in the parser if !%defines, otherwise
10525 output then in the header file, and include it instead.
10526
10527 2005-11-11 Akim Demaille <akim@epita.fr>
10528
10529 * data/glr.c: Comment changes.
10530
10531 2005-11-11 Akim Demaille <akim@epita.fr>
10532
10533 When yydebug, report semantic and location values for reductions.
10534 * data/glr.c (yy_reduce_print): Report the semantic values and the
10535 locations.
10536 (YY_REDUCE_PRINT): Adjust.
10537 (yyglrReduce): Use them.
10538 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10539 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10540 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10541 traces.
10542
10543 2005-11-10 Akim Demaille <akim@epita.fr>
10544
10545 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10546 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10547 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10548
10549 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10550
10551 * m4/cxx.m4, examples/Makefile.am: Don't build
10552 examples/calc++ if no C++ compiler is available. (trivial change)
10553
10554 2005-11-09 Akim Demaille <akim@epita.fr>
10555
10556 * src/scan-skel.l: Use a couple of asserts.
10557
10558 2005-11-03 Akim Demaille <akim@epita.fr>
10559
10560 In some (weird) cases, the final state number is incorrect.
10561 Reported by Alexandre Duret-Lutz.
10562 * src/LR0.c (state_list_append): Remove the computation of
10563 final_state.
10564 (save_reductions): Do it here.
10565 (get_state): Alpha conversion.
10566 (generate_states): Use a for loop.
10567 * src/gram.h (item_number_is_rule_number)
10568 (item_number_is_symbol_number): New.
10569 * src/state.c: Use assert.
10570 * src/system.h: Include assert.h.
10571 * tests/sets.at (Accept): New.
10572
10573 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10574
10575 * data/glr.c (yyfill): Adjust comment.
10576 (yyresolveAction): Initialize default location properly
10577 for empty right-hand sides.
10578 (yydoAction): Ditto.
10579 Add comment explaining apparently dead code.
10580 * tests/glr-regression.at
10581 (Incorrectly initialized location for empty right-hand side in GLR):
10582 New test.
10583
10584 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10585
10586 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10587 gnulib when interrupted. This fixes some race conditions and
10588 works around some portability problems (one noted by Paul
10589 Hilfinger).
10590
10591 2005-10-22 Akim <akim@epita.fr>
10592
10593 * Makefile.cfg: Adjust to config -> build-aux.
10594 Reported by twledo.
10595
10596 2005-10-21 Akim Demaille <akim@epita.fr>
10597
10598 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10599 the %parse-params.
10600 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10601 * data/yacc.c (b4_Pure_if): Rename as...
10602 (b4_yacc_pure_if): this.
10603 (YY_SYMBOL_PRINT, yyparse): Adjust.
10604 * doc/bison.texinfo: Formatting changes.
10605
10606 2005-10-21 Akim Demaille <akim@epita.fr>
10607
10608 Finish the transition config -> build-aux.
10609 * configure.ac, Makefile.am: Use build-aux.
10610 * config/prev-version, config/announce-gen, config/Makefile.am:
10611 Move to...
10612 * build-aux/prev-version, build-aux/announce-gen,
10613 * build-aux/Makefile.am: here.
10614
10615 2005-10-14 Akim Demaille <akim@epita.fr>
10616
10617 * examples/calc++/test: Use set -x only when VERBOSE.
10618
10619 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10620
10621 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10622 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10623
10624 2005-10-13 Akim Demaille <akim@epita.fr>
10625
10626 * src/scan-skel.l: Output the base name parts of the parser and
10627 header file names.
10628 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
10629 additional checks.
10630 Use this to exercise C++ outputs in subdirs.
10631 Reported by Oleg Smolsky.
10632
10633 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10634
10635 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10636 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10637 Problem reported by John P. Hartmann.
10638 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10639 already defined it.
10640
10641 2005-10-12 Akim Demaille <akim@epita.fr>
10642
10643 * src/parse-gram.y (version_check): Exit 63 to please missing
10644 (stands for "version mismatch).
10645 * tests/input.at, doc/bison.texinfo: Adjust.
10646
10647 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10648
10649 Work around portability problems with Visual Age C compiler
10650 (xlc and xlC_r) reported by John P. Hartmann.
10651 * data/location.cc (initial_column, initial_line): Remove.
10652 All uses replaced by 0 and 1.
10653 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10654 that xlc complains about.
10655 * src/scan-skel.l (skel_wrap): Likewise.
10656 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
10657 as __STDC__.
10658 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10659 __STDC_VERSION__. Use it everywhere instead of looking at
10660 __STDC__ and __cplusplus.
10661
10662 2005-10-10 Akim Demaille <akim@epita.fr>
10663
10664 * examples/calc++/test: Be quiet unless VERBOSE.
10665
10666 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10667
10668 * data/c.m4 (yydestruct, yysymprint):
10669 Use YYUSE instead of casting to void.
10670 * data/glr.c (YYUSE): New macro.
10671 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10672 Use it instead of rolling our own.
10673 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10674 (YYCHK1):
10675 Use /*CONSTCOND*/ to suppress lint warnings.
10676 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10677 (YY_STACK_PRINT): Use 'false' not '0'.
10678 (YYUSE): New macro.
10679 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10680 * data/yacc.c (YYUSE): New macro.
10681 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10682 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10683 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10684
10685
10686 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10687 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10688
10689 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10690
10691 Undo the parts of the unlocked-I/O change that substituted
10692 putc or puts for printf. This might hurt performance a bit,
10693 but some people prefer the printf style.
10694 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10695 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10696 All uses replaced by YYFPRINTF and YYDPRINTF.
10697 * data/yacc.c: Likewise.
10698 * lib/bitset.c (bitset_print): Likewise.
10699 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10700 putc and puts.
10701 * lib/lbitset.c (debug_lbitset): Likewise.
10702 * src/closure.c (print_firsts, print_fderives): Likewise.
10703 * src/gram.c (grammar_dump): Likewise.
10704 * src/lalr.c (look_ahead_tokens_print): Likewise.
10705 * src/output.c (escaped_output): Likewise.
10706 (user_actions_output): Break apart two printfs.
10707 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10708 * src/reduce.c (reduce_print): Likewise.
10709 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10710 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10711
10712 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10713 Use assignments rather than casts-to-void to suppress
10714 unused-variable warnings. This pacifies 'lint'.
10715 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10716 unused-variable warnings.
10717
10718 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10719
10720 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10721
10722 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10723
10724 Use unlocked I/O for a minor performance improvement on hosts like
10725 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10726 is to use the gnlib unlocked-io module, and to prefer putc and
10727 puts to printf when either will work (since the latter doesn't
10728 come in an unlocked flavor).
10729 * bootstrap (gnulib_modules): Add unlocked-io.
10730 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10731 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10732 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10733 and similarly for puts and putc and printf.
10734 * data/yacc.c: Likewise.
10735 * lib/bitset.c (bitset_print): Likewise.
10736 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10737 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10738 to printf.
10739 * lib/lbitset.c (debug_lbitset): Likewise.
10740 * src/closure.c (print_firsts, print_fderives): Likewise.
10741 * src/gram.c (grammar_dump): Likewise.
10742 * src/lalr.c (look_ahead_tokens_print): Likewise.
10743 * src/output.c (escaped_output): Likewise.
10744 (user_actions_output): Coalesce two printfs.
10745 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
10746 * src/reduce.c (reduce_print): Likewise.
10747 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10748 * src/system.h: Include unlocked-io.h rather than stdio.h.
10749
10750 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10751 this confuses xgettext.
10752
10753 2005-10-02 Akim Demaille <akim@epita.fr>
10754
10755 * bootstrap (gnulib_modules): Add strverscmp.
10756 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10757 * m4/.cvsignore: Add strverscmp.m4.
10758 * src/parse-gram.y (%require): New token, new rule.
10759 (version_check): New.
10760 * src/scan-gram.l (%require): Adjust.
10761 * tests/input.at (AT_REQUIRE): New.
10762 Use it.
10763 * doc/bison.texinfo (Require Decl): New.
10764 (Calc++ Parser): Use %require.
10765
10766 2005-10-02 Akim Demaille <akim@epita.fr>
10767
10768 * data/location.cc: New.
10769
10770 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10771 Akim Demaille <akim@epita.fr>
10772
10773 Make sure -odir/foo.cc creates dir/location.hh etc.
10774 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10775 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10776 (spec_defines_file): Now const.
10777 (dir_prefix): New.
10778 (short_base_name): Remove.
10779 * src/files.c: Adjust.
10780 (dirname.h): Include.
10781 (base_name): Don't prototype it.
10782 (finput): Remove, duplicates gram_in.
10783 (full_base_name, short_base_name): Replace by...
10784 (all_but_ext, all_but_tab_ext): these.
10785 (compute_base_names): Rename as...
10786 (compute_file_name_parts): this.
10787 Update to compute the new variables, including dir_prefix.
10788 Adjust dependencies.
10789 * src/output.c (prepare): Output them.
10790 * src/reader.c: Adjust to use gram_in, not finput.
10791 * src/scan-skel.l (@dir_prefix@): New.
10792
10793 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10794
10795 * lib/subpipe.c: New function end_of_output_subpipe() added
10796 to allow support for non-posix systems. This is a no-op function
10797 for posix systems.
10798
10799 * lib/subpipe.h: New function end_of_output_subpipe() added
10800 to allow support for non-posix systems. This is a no-op function
10801 for posix systems.
10802
10803 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10804 handle the lack of pipe/fork functionality on non-posix systems.
10805
10806 * djgpp/Makefile.maint: DJGPP specific file.
10807
10808 * djgpp/README.in: DJGPP specific file.
10809
10810 * djgpp/config.bat: DJGPP specific configuration file.
10811
10812 * djgpp/config.sed: DJGPP specific configuration file.
10813
10814 * djgpp/config.site: DJGPP specific configuration file.
10815
10816 * djgpp/config_h.sed: DJGPP specific configuration file.
10817
10818 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10819
10820 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10821
10822 2005-10-02 Akim Demaille <akim@epita.fr>
10823
10824 * data/location.cc: New, extract from...
10825 * data/lalr1.cc: here.
10826 (location.hh): Include it after the user prologue, in case the
10827 filename type is defined by the user.
10828 Forward declation location and position before the pre-prologue.
10829 (yyresult_): Rename as...
10830 (yyresult): this, it's a local variable, not an attribute.
10831 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10832
10833 2005-10-01 Akim Demaille <akim@epita.fr>
10834
10835 * examples/extexi: Restore the #line generation.
10836
10837 2005-09-30 Akim Demaille <akim@epita.fr>,
10838 Alexandre Duret-Lutz <adl@gnu.org>
10839
10840 Move the token type and YYSTYPE in the parser class.
10841 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10842 (parser::token): New, from the moved free definition of tokens.
10843 (parser::semantic_value): Now a full definition instead of an
10844 indirection to YYSTYPE.
10845 (b4_post_prologue): No longer included in the header file, but
10846 in the implementation file.
10847 * doc/bison.texi (C+ Language Interface): Update.
10848 * src/parse-gram.y: Support unary %define.
10849 * tests/actions.at: Define global_tokens_and_yystype for backward
10850 compatibility until we update the tests.
10851 * tests/calc.at: Idem.
10852 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10853 to simplify the code.
10854
10855 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10856
10857 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10858 Ah, the good old days! Problem reported by Peter Klein.
10859 * bootstrap (gnulib_modules): Add strerror, strtoul.
10860 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10861 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10862
10863 2005-09-29 Akim Demaille <akim@epita.fr>
10864
10865 * data/c.m4 (b4_error_verbose_if): New.
10866 * data/lalr1.cc: Use it.
10867 (YYERROR_VERBOSE_IF): Remove.
10868 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10869 parser members, replaced by...
10870 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10871 local variables.
10872 (yysyntax_error_): Takes the state number as argument.
10873 (yyreduce_print_): Use the argument yyrule, not the former
10874 attribute yyn_.
10875
10876 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10877
10878 * bootstrap (gnulib_modules): Add verify.
10879 * lib/.cvsignore: Add verify.h.
10880 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10881 * src/system.h (verify): Remove.
10882 Include verify.h instead.
10883 * src/tables.c (tables_generate): Use new API for 'verify'.
10884
10885 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10886
10887 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10888 local variables whose names begin with 'yy'.
10889 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10890 Trivial changes from Joel E. Denny.
10891
10892 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10893 it itself.
10894 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10895 don't use alloca any more.
10896
10897 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10898 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
10899 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
10900 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10901 to match yacc.c, to test more hosts.
10902
10903 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10904
10905 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10906 doesn't affect behavior.
10907 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10908 Solaris, AIX, MSC.
10909 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10910 This works a bit better with glibc, if user code has already included
10911 stdlib.h.
10912 * doc/bison.texinfo (Bison Parser): Document that users can't
10913 arbitrarily use malloc and free for other purposes. Document
10914 that <alloca.h> and <malloc.h> might be included.
10915 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
10916 user must declare alloca.
10917
10918 * HACKING (release): Forwarn the Translation Project about
10919 stable releses.
10920
10921 2005-09-20 Akim Demaille <akim@epita.fr>
10922
10923 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
10924
10925 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
10926
10927 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
10928 (YYSTACK_ALLOC_MAXIMUM): Use it.
10929 (yysyntax_error): New function.
10930 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
10931 multiple syntax errors are reported, and alloca is being used.
10932 Instead, reallocate buffers twice as big each time, so that
10933 we waste at most half the allocated memory. Start with a small
10934 (128-byte) buffer that will suffice in most cases anyway.
10935 Use yysyntax_error to do most of the work.
10936
10937 * doc/bison.texinfo (Error Reporting, Table of Symbols):
10938 yynerrs is the number of errors reported, not the number of
10939 errors encountered.
10940
10941 * tests/glr-regression.at (Duplicated user destructor for lookahead):
10942 Mark it as expected to fail.
10943 Cast result of malloc; problem reported by twlevo@xs4all.nl.
10944 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
10945 Don't start user-code symbols with "yy", to avoid name space problems.
10946
10947 2005-09-19 Akim Demaille <akim@epita.fr>
10948
10949 Remove the traits, failed experiment.
10950 It never proved useful, and anyway because of the current
10951 definition, it was not possible to have several specialization of
10952 this traits, making it useless.
10953 * data/lalr1.cc (yy:traits): Remove.
10954 Inline its definitions in the parser class.
10955
10956 2005-09-19 Akim Demaille <akim@epita.fr>
10957
10958 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
10959 least Mac OSX with a /usr/local install of gettext.
10960
10961 2005-09-19 Akim Demaille <akim@epita.fr>
10962
10963 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
10964 and yytoken for similarity with the other skeletons.
10965
10966 2005-09-19 Akim Demaille <akim@epita.fr>
10967
10968 * NEWS, configure.ac: update version number to 2.1a.
10969
10970 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
10971
10972 * NEWS: Version 2.1.
10973
10974 * NEWS: Remove notice of yytname change, since it was never in an
10975 official release.
10976 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
10977 diagnostic.
10978 * src/output.c (prepare): Likewise.
10979 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
10980 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
10981 is not defined. This is an awful hack, but it's enough for now.
10982 All callers changed.
10983 * tests/glr-regression-at (make_value): Args are const pointers now,
10984 to avoid GCC warning.
10985 (Duplicated user destructor for lookahead): New test. Currently
10986 skipped. It fails on my host but I'm not sure it'll always fail.
10987
10988 2005-09-16 Akim Demaille <akim@epita.fr>
10989
10990 * src/symtab.h (struct symbol): Declare the printer and destructor
10991 as const, to avoid accidental calls to free.
10992 (symbol_destructor_set, symbol_printer_set): Adjust.
10993 * src/symtab.c: Adjust.
10994
10995 2005-09-16 Akim Demaille <akim@epita.fr>
10996
10997 * data/c.m4 (b4_token_enums): New.
10998 (b4_token_defines): Rename as...
10999 (b4_token_enums_defines): this.
11000 (b4_token_defines): New, output only the #defines.
11001 * data/yacc.c, data/glr.c: Adjust.
11002 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11003 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11004 as default values.
11005
11006 2005-09-16 Akim Demaille <akim@epita.fr>
11007
11008 * data/lalr1.cc (yylex_): Remove, inline its code.
11009 (yyreport_syntax_error_): Remove, replaced by...
11010 (yysyntax_error_): this which returns a string and leaves to the
11011 caller the call to the users' error function.
11012 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11013 Move from members of the parser object...
11014 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11015 to local variables of the parse function.
11016
11017 2005-09-16 Akim Demaille <akim@epita.fr>
11018
11019 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11020 since it's in Bison's name space.
11021
11022 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11023
11024 * data/glr.c (yyresolveValue): Add default case to pacify
11025 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11026
11027 * NEWS: Document when yyparse started to return 2.
11028 * doc/bison.texinfo (Parser Function): Document when yyparse
11029 returns 2.
11030
11031 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11032 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11033 changed.
11034 (class position): file_name -> filename (reverting). All uses changed.
11035
11036 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11037
11038 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11039 do anything if $@ exists. This reverts part of the 2005-07-07
11040 patch.
11041
11042 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11043
11044 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11045 contains obsolete information and isn't worth distributing as a
11046 separate file anyway.
11047 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11048 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11049 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11050 (yyparse): Abort if user code uses longjmp to throw an unexpected
11051 value.
11052
11053 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11054
11055 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11056 Suggested by twlevo@xs4all.nl.
11057
11058 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11059 This avoids a diagnostic from gcc -Wswitch-enum.
11060 Problem reported by twlevo@xs4all.nl.
11061
11062 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11063 standards. Use "file name" or "file" or "name", depending on
11064 the context.
11065 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11066 not to hack/foo.tab.c.
11067 (Calc++ Top Level): 2nd arg of main is not const.
11068 * data/glr.c: b4_filename -> b4_file_name.
11069 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11070 All uses changed.
11071 (class position): filename -> file_name. All uses changed.
11072 * data/yacc.c: b4_filename -> b4_file_name.
11073 * lib/bitset.h: filename -> file_name in local vars.
11074 * lib/bitset_stats.c: Likewise.
11075 * src/files.c: Likewise.
11076 * src/scan-skel.l ("@output ".*\n): Likewise.
11077 * src/files.c (file_name_split): Renamed from filename_split.
11078 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
11079
11080 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11081
11082 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11083 to accommodate latest gnulib.
11084
11085 * tests/glr-regression.at (Duplicate representation of merged trees):
11086 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11087
11088 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11089 needed.
11090
11091 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11092
11093 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11094 All uses changed. Invoke user destructor after an error during a
11095 split parse (trivial change from Joel E. Denny).
11096
11097 * tests/glr-regression.at
11098 (User destructor after an error during a split parse): New test case.
11099 Problem reported by Joel E. Denny in:
11100 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11101
11102 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11103
11104 * README-cvs: Give URLs for recommended tools.
11105 Mention Gzip version problem, and bootstrapping issues.
11106 Remove troubleshooting section, as it's somewhat obsolete.
11107
11108 * bootstrap (no_cache): New var, to accommodate different wget
11109 variants. Use it instead of '-C off'. Problem reported by
11110 twlevo@xs4all.nl.
11111
11112 * data/glr.c (yydestroyStackItem): New function.
11113 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11114 debugging information. Problem reported by Joel E. Denny.
11115
11116 2005-08-25 Akim Demaille <akim@epita.fr>
11117
11118 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11119
11120 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11121
11122 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11123 Don't invoke destructor on unresolved entries.
11124 * tests/glr-regression.at
11125 (User destructor for unresolved GLR semantic value): New test case.
11126 Problem reported by Joel E. Denny in:
11127 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11128
11129 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11130
11131 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11132 Add strnlen.c.
11133 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11134 lib-prefix.m4, po.m4.
11135
11136 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11137 in yydestruct diagnostic, since it might not be an error.
11138 Problem reported by Joel Denny near end of
11139 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11140 * data/lalr1.cc (yyerturn): Likewise.
11141 * data/yacc.c (yyreturn): Likewise.
11142 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11143
11144 * src/files.c: Remove obsolete FIXME comment.
11145
11146 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11147 with the other templates, and to fix bogus run-on messages such
11148 as the one reported at the end of
11149 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11150 All callers changed to avoid the newline.
11151 (yyprocessOneStack): Output two lines rather than one, to accommodate
11152 the above change. This changes the debug output format slightly.
11153
11154 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11155 reported by Joel E. Denny in
11156 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11157 (trivial change).
11158 * tests/glr-regression.at (Duplicate representation of merged trees):
11159 New test, from Joel E. Denny in:
11160 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11161 * THANKS: Add Joel E. Denny.
11162
11163 * configure.ac (AC_INIT): Bump to 2.0c.
11164
11165 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11166
11167 * NEWS: Version 2.0b.
11168
11169 * Makefile.am (SUBDIRS): Put examples before tests, so that
11170 "make check" doesn't finish with "All 1 tests passed".
11171
11172 * tests/regression.at (Token definitions): Don't rely on
11173 AT_PARSER_CHECK for data that contains backslashes. It currently
11174 uses 'echo', and 'echo' isn't portable if its argument contains
11175 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11176 that the byte '\0xff' is not printable in the C locale; it is,
11177 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11178 not printable, so use '\0x81' to test.
11179
11180 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11181 version of GCC, since the macro is used with non-GCC compilers.
11182
11183 Fix core dump reported by Pablo De Napoli in
11184 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11185 * tests/regression.at (Invalid inputs with {}): New test.
11186 * src/parse-gram.y (token_name): Translate type before using
11187 it as an index.
11188
11189 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11190 the user's name space. All uses changed to __attribute__
11191 ((__unused__)).
11192 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11193 Add __attribute__ ((__noreturn__)).
11194
11195 * etc/clcommit: Remove. We weren't using it, and it failed
11196 "make maintainer-distcheck".
11197 * Makefile.maint: Merge from coreutils.
11198 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11199 (syntax-check-rules): Change list of rules as described below.
11200 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11201 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11202 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11203 (sc_trailing_space): New rules.
11204 (sc_xalloc_h_in_src): Remove.
11205 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11206 (sc_space_tab, sc_error_exit_success, sc_changelog):
11207 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11208 (makefile-check, po-check, author_mark_check):
11209 (makefile_path_separator_check, copyright-check):
11210 Use grep -n, to make it easier to find violations.
11211 Use CVS_LIST and CVS_LIST_EXCEPT.
11212 (header_regexp, h_re): Remove.
11213 (dd_c): New macro.
11214 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11215 (my-distcheck): Use more-modern GCC flags.
11216 (signatures, %.asc): Remove.
11217 (rel-files, announcement): Remove signatures.
11218 Restore old updating code, even though we don't use it, so
11219 that we're the same as coreutils.
11220 (alpha, beta, major): Depend on news-date-check.
11221 Make the upload commands.
11222
11223 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11224 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11225 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11226 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11227 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11228 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11229 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11230 * tests/sets.at: Likewise.
11231
11232 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11233 we comment out the Autoconf version number.
11234 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11235 it's error-prone and "make maintainer-distcheck" rejects it.
11236
11237 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11238 Indent calls to "error" to pacify "make maintainer-distcheck",
11239 when the calls are not intended to be translated.
11240 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11241
11242 * src/Makefile.am (DEFS): Use +=, to pacify
11243 "make maintainer-distcheck".
11244 (bison_SOURCES): Add scan-skel.h.
11245 (sc_tight_scope): New rule, from coreutils.
11246
11247 * src/files.c (src_extension, header_extension):
11248 Now static, not extern.
11249 * src/getargs.c (short_options): Likewise.
11250 * src/muscle_tab.c (muscle_table): Likewise.
11251 * src/parse-gram.y (current_class, current_type, current_prec):
11252 Likewise.
11253 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11254 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11255 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11256 void, to avoid warning when NLS is disabled.
11257 * src/output.c: Include scan-skel.h.
11258 (scan_skel): Remove decl, since scan-skel.h does this.
11259 (output_skeleton):
11260 Indent calls to "error" to pacify "make maintainer-distcheck".
11261 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11262 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11263 "make maintainer-distcheck".
11264 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11265 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11266 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11267 (skel_lex_destroy, scan_skel): Move these decls to...
11268 * src/scan-skel.h: New file.
11269 * src/uniqstr.c (uniqstr_assert):
11270 Indent calls to "error" to pacify "make maintainer-distcheck".
11271
11272 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11273 not @VAR@.
11274
11275 * tests/torture.at: Revamp to avoid misuse of atoi that
11276 "make maintainer-distcheck" complained about.
11277
11278 * examples/extexi (message): Don't print a message more than once,
11279 and omit line-number decoration that makes Emacs compile think
11280 that informative messages are worth worrying about.
11281
11282 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11283
11284 * configure.ac: Update version number.
11285
11286 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11287 accidentally.
11288 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11289 autogenerated by the maintainer.
11290 * examples/calc++/.cvsignore: Add *.yy.
11291
11292 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11293 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11294 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11295
11296 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11297
11298 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11299 from maintainer-distcheck about casting the argument of 'free'.
11300
11301 * NEWS: Mention recent yytname changes.
11302 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11303
11304 * bootstrap: For translations that have not yet been upgraded to
11305 the new runtime-po domain, prime the pump by extracting the
11306 relevant strings from the obsolete translations. This code can be
11307 removed once the bison-runtime domain has been translated by each
11308 team.
11309
11310 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11311 now that token names are already quoted.
11312
11313 Fix problem reported by Anthony Heading.
11314 * data/glr.c (YYTOKEN_TABLE): New macro.
11315 (yytname): Define if YYTOKEN_TABLE.
11316 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11317 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11318 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11319 * src/output.c (prepare_symbols): Output token_table_flag.
11320
11321 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11322
11323 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11324 again if the first call fails.
11325
11326 * data/glr.c (yytnamerr): New function.
11327 (yyreportSyntaxError): Use it to dequote most string literals.
11328 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11329 with other skeletons. All uses changed.
11330 (yytnameerr_): New function.
11331 (yyreport_syntax_error): Use it to dequote most string literals.
11332 * data/yacc.c (yytnamerr): New function.
11333 (yyerrlab): Use it to decode most string literals.
11334 * doc/bison.texinfo (Decl Summary, Calling Convention):
11335 Clarify quoting convention of yytname.
11336 * src/output.c (prepare_symbols): Quote all names. This undoes
11337 the 2005-04-17 change, which is now accomplished (mostly) via
11338 changes in the parsers as described above.
11339 * tests/regression.at (Token definitions, Web2c Actions):
11340 Undo most 2005-04-17 change here, too.
11341
11342 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11343
11344 Fix more problems reported by twlevo@xs4all.nl.
11345 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11346 remove trailing spaces. This loses the exit status of ./types,
11347 and isn't needed since ./types shouldn't be emitting trailing
11348 spaces.
11349 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11350 as the stack isn't valid in that case.
11351
11352 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11353 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11354 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11355 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11356 is used.
11357 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11358 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11359 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11360 Likewise.
11361
11362 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11363 overly-picky compilers that reject 'char *foo = "bar";'.
11364
11365 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11366 to FILE * parameter, not to stderr. This fixes a typo introduced
11367 in the 2005-07-12 change.
11368
11369 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11370 warnings from GCC 4.
11371
11372 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11373 (yyglrShiftDefer, yysplitStack):
11374 Remove unused parameters b4_pure_formals. All uses changed.
11375 (yyglrShift): Remove unused parameters b4_user_formals.
11376 All uses changed.
11377 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11378
11379 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11380
11381 Destructor cleanups and regularization among the three skeletons.
11382 * NEWS: Document the behavior changes.
11383 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11384 stack before failing, as the cleanup code will do it for us now.
11385 * data/lalr1.cc (yyerrlab): Likewise.
11386 * data/glr.c (yyparse): Pop everything off the stack before
11387 freeing it, so that destructors get called properly.
11388 * data/lalr1.cc (yyreturn): Likewise.
11389 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11390 This is more consistent.
11391 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11392 why destructors might be called. 1.875 -> 2.1.
11393 (Destructor Decl, Decl Summary, Table of Symbols):
11394 Some English-language cleanups for %destructor.
11395 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11396 Add output line for destructor of start symbol.
11397 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11398 because of that same extra output line.
11399
11400 * NEWS: Document minor wording changes in diagnostics of
11401 Bison-generated parsers.
11402 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11403 Remove unused formals. All uses changed.
11404 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11405 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11406 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11407 Rename yyoverflowab to yyexhaustedlab.
11408 When memory exhaustion occurs during syntax-error reporting,
11409 report it separately rather than in a single diagnostic; this
11410 eases translation.
11411 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11412 (Memory Exhausted): Renamed from Parser Stack Overflow.
11413 Revamp wording slightly to prefer "memory exhaustion".
11414 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11415
11416 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11417
11418 Add i18n support to the GLR skeleton. Partially fix the C++
11419 skeleton; a C++ expert needs to finish this. Remove debugging
11420 msgids; there's little point to having them translated, since they
11421 can be understood only by someone who can read the
11422 (English-language) source code.
11423
11424 Generate runtime-po/bison-runtime.pot automatically, so that we
11425 don't have to worry about garbage getting in that file. We'll
11426 make sure after the next official release that old msgids don't
11427 get lost. See
11428 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11429
11430 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11431 Now auto-generated.
11432 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11433 Fix typos in explanations of the runtime file.
11434 * bootstrap: Change gettext keyword from YYI18N to YY_.
11435 Use standard Makefile.in.in in runtime-po, since we'll arrange
11436 for backward-compatible bison-runtime.po files in a different way.
11437 * data/glr.c (YY_): New macro, from yacc.c.
11438 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11439 Translate messages intended for users.
11440 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11441 the wording in the other skeletons. We don't know that the memory
11442 is virtual.
11443 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11444 Use same method that yacc.c uses.
11445 Don't translate debugging messages.
11446 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11447 it doesn't work (yet), and requires C++ expertise to fix.
11448 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11449 Move defn to a more logical place, to be consistent with other
11450 skeletons.
11451 Don't translate debugging messages.
11452 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11453 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11454 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11455 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11456
11457 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11458 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11459 void, not int.
11460 * tests/glr-regression.at (Badly Collapsed GLR States):
11461 Likewise.
11462 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11463 yylex should return 0 at EOF rather than aborting.
11464
11465 Improve tests for stack overflow in GLR parser.
11466 Problem reported by twlevo@xs4all.nl.
11467 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11468 All uses removed.
11469 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11470 can handle the problem.
11471 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11472 (yyparse): New local variable yyresult to record the result.
11473 Use result of setjmp to set it, rather than storing itinto
11474 struct.
11475 (yyDone): Remove label.
11476 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11477 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11478 if YYABORT is used).
11479 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11480 yyparse status; put status > 1 into diagnostic.
11481 Check that status==2 works.
11482 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11483 Use exit status 3 for failure to open (which shouldn't happen).
11484
11485 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11486
11487 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11488 1 on syntax error; just let yyparse do its thing.
11489 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11490 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11491 (Exploding the Stack Size with Alloca):
11492 (Exploding the Stack Size with Malloc):
11493 Expect exit status 2, not 1, since the parser is supposed to blow
11494 its stack. Problem reported by twlevo@xs4all.nl.
11495
11496 * data/glr.c (yyparse): Don't assume that the initial calls
11497 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11498 Print a stack-overflow message and fail instead.
11499 Initialize the line-number information before creating the stack,
11500 so that the stack-overflow message can report line zero safely.
11501
11502 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11503
11504 Fix problems reported by twlevo@xs4all.nl.
11505 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11506 (yyuserMerge): Provide a default case if b4_mergers is empty.
11507 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11508 * tests/glr-regression.at
11509 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11510 Add casts to pacify C++ compilers.
11511 * tests/glr-regression.at (Improper merging of GLR delayed action
11512 sets): Declare yylex before using it.
11513 * tests/Makefile.am (maintainer-check-g++): Fix a stray
11514 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11515 test for valgrind; valgrind is independent of g++.
11516 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11517 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11518 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11519 Use a destructor, so that we can expand the stack. Change
11520 YYSTYPE to char * so that we can free it. Cast result of malloc.
11521
11522 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11523
11524 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11525 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11526
11527 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11528
11529 * PACKAGING: New file, suggested by Bruno Haible and taken from
11530 similar wording in gettext's PACKAGING file.
11531 * NEWS: Mention PACKAGING.
11532 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11533
11534 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11535
11536 * NEWS: Document recent i18n improvements.
11537 * bootstrap: Get runtime translations into runtime-po.
11538 Create runtime-po files automatically, if possible.
11539 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11540 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11541 does not infringe on the user's name space.
11542 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11543 * doc/bison.texinfo (Internationalization): Revamp the English
11544 and Texinfo syntax a bit, to try to make it clearer.
11545 (Bison Options, Option Cross Key): Mention --print-localedir.
11546 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11547 YYENABLE_NLS. Quote a bit more.
11548 * runtime-po/.cvsignore: New file.
11549 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11550 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11551 * runtime-po/quot.sed: Likewise.
11552 * runtime-po/boldquot.sed: Likewise.
11553 * runtime-po/en@quot.header: Likewise.
11554 * runtime-po/en@boldquot.header: Likewise.
11555 * runtime-po/insert-header.sin: Likewise.
11556 * runtime-po/remove-potcdate.sin: Likewise.
11557 * runtime-po/Makevars: Likewise.
11558 * runtime-po/LINGUAS: Likewise.
11559 * runtime-po/de.po: Likewise; we will rely on the translation project
11560 to maintain this, so "bootstrap" should get it.
11561 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
11562 its value.
11563 * src/main.c (main): Bind the bison-runtime domain, too.
11564
11565 2005-07-12 Bruno Haible <bruno@clisp.org>
11566
11567 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11568 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11569 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11570 * runtime-po: New directory.
11571 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11572 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11573 * runtime-po/Rules-quot: New file, copied from po/.
11574 * runtime-po/quot.sed: Likewise.
11575 * runtime-po/boldquot.sed: Likewise.
11576 * runtime-po/en@quot.header: Likewise.
11577 * runtime-po/en@boldquot.header: Likewise.
11578 * runtime-po/insert-header.sin: Likewise.
11579 * runtime-po/remove-potcdate.sin: Likewise.
11580 * runtime-po/Makevars: New file.
11581 * runtime-po/POTFILES.in: New file.
11582 * runtime-po/LINGUAS: New file.
11583 * runtime-po/bison-runtime.pot: New file.
11584 * runtime-po/de.po: New file.
11585 * m4/bison.m4: New file.
11586 * Makefile.am (SUBDIRS): Add runtime-po.
11587 (aclocaldir, aclocal_DATA): New variables.
11588 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11589 Define aclocaldir.
11590 * src/getargs.c (usage): Document --print-localedir option.
11591 (PRINT_LOCALEDIR_OPTION): New enum item.
11592 (long_options): Add --print-localedir option.
11593 (getargs): Handle --print-localedir option.
11594 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11595 (Internationalization): New section.
11596
11597 2005-07-12 Akim Demaille <akim@epita.fr>
11598
11599 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11600 for consistency with the rest of the code.
11601 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11602 Add separators.
11603
11604 2005-07-12 Akim Demaille <akim@epita.fr>
11605
11606 * src/parse-gram.y: Use %printer instead of YYPRINT.
11607
11608 2005-07-12 Akim Demaille <akim@epita.fr>
11609
11610 * src/symtab.h, src/symtab.c (symbol_print): New.
11611 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11612 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11613
11614 2005-07-12 Akim Demaille <akim@epita.fr>
11615
11616 * data/glr.c (b4_syncline): Fix (swap) the definitions of
11617 b4_at_dollar and b4_dollar_dollar.
11618
11619 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11620
11621 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11622 and Pennello's paper.
11623
11624 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11625
11626 * data/yacc.c (yyparse): Undo previous patch. Instead,
11627 set yylsp[0] and yyvsp[0] only if the initial action
11628 sets yylloc and yylval, respectively.
11629
11630 * data/yacc.c (yyparse): In the initial action, set
11631 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11632 This avoids the use of undefined variables if the initial
11633 action does not set yylloc and/or yylval.
11634
11635 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11636
11637 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11638 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11639 Remove from CVS. These files are automatically generated.
11640 * examples/extexi: Clarify that this file is now part of Bison,
11641 not GNU M4, and that it works with any POSIX-compatible Awk.
11642 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11643 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11644 so that we also get calc++-parser.yy. Geneate it.
11645 Use $(AWK), not gawk, since any conforming Awk will do.
11646 Put comment before action, since older 'make' can't handle comment
11647 in action.
11648 $(BUILT_SOURCES): List all built sources, not just some of them.
11649 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11650 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11651 $($(calc_sources_generated)): Remove unnecessary test for existence
11652 of target. (This had a shell syntax error anyway; a stray "x".)
11653 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11654 calc++-parser.yy.
11655 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11656
11657 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11658 implied by the other modules.
11659
11660 2005-07-06 Akim Demaille <akim@epita.fr>
11661
11662 Bind examples/calc++ to the package.
11663 * examples/calc++/Makefile: Remove, replaced by...
11664 * examples/calc++/Makefile.am: ... this new file.
11665 * examples/calc++/test: Remove input.
11666 * examples/calc++/compile: Remove.
11667 * examples/Makefile.am: New.
11668 * configure.ac, Makefile.am: Adjust.
11669 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11670
11671 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11672
11673 * data/glr.c (yyFail): Drastically simplify; since the format argument
11674 never had any % directives, we can simply pass it to yyerror.
11675 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11676 be modified later, as that is the usual style in glr.c.
11677 Problems reported by Paul Hilfinger.
11678
11679 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11680 and size overflow errors.
11681 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11682 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11683 (YYSIZEMAX): New macro.
11684 (yystpcpy): New function, taken from yacc.c.
11685 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11686 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11687 so that we don't have to maintain their signatures.
11688 (yyFail): Check for buffer overflow, by using vsnprintf rather
11689 than vsprintf. Allocate a bigger buffer if possible.
11690 Report an error if buffer allocation fails.
11691 (yyStackOverflow): New function.
11692 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11693 the initialization was successful. It might fail if storage was
11694 exhausted.
11695 (yyexpandGLRStack): Add more checks for storage allocation failure.
11696 Use yyStackOverflow to report failures.
11697 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11698 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11699 Don't assume stack number fits in int.
11700 (yysplitStack): Check for storage allocation failure.
11701 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11702 can print diagnostics on storage allocation failure. All callers
11703 changed.
11704 (yyresolveValue): Use yybool for boolean.
11705 (yyreportSyntaxError): Check for size-calculation overflow.
11706 This code is taken from yacc.c.
11707 (yyparse): Check for storage allocation errors when allocating
11708 the initial stack.
11709
11710 2005-07-05 Akim Demaille <akim@epita.fr>
11711
11712 Extract calc++ from the documentation.
11713 * doc/bison.texinfo (Calc++): Add the extraction marks.
11714 * examples/extexi: New, from the aborted GNU Programming 2E.
11715 Separate the different paragraph of a file with empty lines.
11716 * examples/Makefile: Use it to extract the whole calc++ example.
11717
11718 2005-06-24 Akim Demaille <akim@epita.fr>
11719
11720 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11721 class typedefs.
11722
11723 2005-06-22 Akim Demaille <akim@epita.fr>
11724
11725 * doc/bison.texinfo (C++ Language Interface): First stab.
11726 (C++ Parsers): Remove.
11727
11728 2005-06-22 Akim Demaille <akim@epita.fr>
11729
11730 * data/lalr1.cc (yylex_): Honor %lex-param.
11731
11732 2005-06-22 Akim Demaille <akim@epita.fr>
11733
11734 Start a set of simple examples.
11735 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11736 * examples/calc++/calc++-driver.hh,
11737 * examples/calc++/calc++-parser.yy,
11738 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11739 * examples/calc++/compile, examples/calc++/test: New.
11740
11741 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11742
11743 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11744 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11745 which stems from the 2005-05-27 patch.
11746
11747 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11748
11749 * data/glr.c: Modify treatment of unused parameters to permit use
11750 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11751
11752 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11753
11754 Fix infringement on user name space reported by Janos Zoltan Szabo.
11755 * data/yacc.c (yyparse): strlen -> yystrlen.
11756
11757 2005-05-30 Akim Demaille <akim@epita.fr>
11758
11759 * data/lalr1.cc (_): New.
11760 Translate the various messages.
11761
11762 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11763
11764 Fix infringement on user name space reported by Bruno Haible.
11765 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11766 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11767 the user's name space.
11768 (alloca): Include <stdlib.h> to get it, if it's not built in.
11769 (YYMALLOC, YYFREE): Define only if needed.
11770 (malloc, free): Declare, but only if needed, as this infringes on
11771 the user name space.
11772
11773 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11774
11775 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11776 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11777 with %d format.
11778 * lib/ebitset.c (min, max): Undef before defining.
11779 * lib/vbitset.c (min, max): Likewise.
11780 * lib/subpipe.c (create_subpipe): Save local variables in case
11781 vfork clobbers them.
11782
11783 2005-05-24 Bruno Haible <bruno@clisp.org>
11784
11785 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11786 error message syntax used by gcc-4.0.
11787
11788 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11789
11790 * README: Mention m4 1.4.3. Remove obsolete advice about
11791 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11792
11793 * bootstrap: Remove workaround for problem I encountered with
11794 gettext 0.14.1; it seems to be fixed now.
11795
11796 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11797
11798 * NEWS: Version 2.0a.
11799
11800 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11801 the previous change.
11802
11803 Various maintainer cleanups.
11804 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11805 conftest*, for benefit of CVS commands run at the same time as
11806 "configure". Add build-aux, since "bootstrap" now creates it and
11807 its subfiles.
11808 * Makefile.cfg (move_if_change): Remove.
11809 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11810 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11811 (po_repo, do-po-update, po-update, wget_files, get-targets):
11812 (config.guess-url_prefix, config.sub-url_prefix):
11813 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11814 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11815 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11816 Remove.
11817 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11818 this is now the recommended name.
11819 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11820 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11821 ylwrap. These files now go into build-aux.
11822 * config/move-if-change: Remove.
11823 * config/prev-version.txt: Bump from 1.75 to 2.0.
11824
11825 * bootstrap: Add stdio-safer, unistd-safer modules.
11826 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11827 we don't need it).
11828 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11829 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11830 * lib/subpipe.c: Include "unistd-safer.h".
11831 (create_subpipe): Make sure all the newly-created
11832 file descriptors are > 2, so that diagnostics don't
11833 get sent down them (which might cause Bison to hang, in theory).
11834 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11835 * src/files.c (xfopen): Use fopen_safer, not fopen.
11836
11837 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11838 yesterday's yacc.c fix.
11839
11840 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11841
11842 * data/glr.c, data/lalr1.cc: Update copyright date.
11843
11844 Fix a destructor bug reported by Wolfgang Spraul in
11845 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11846 * data/yacc.c (yyabortlab): Don't call destructor, and
11847 don't set yychar to EMPTY.
11848 (yyoverflowlab): Don't call destructor.
11849 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11850 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11851 since we no longer output the message "discarding lookahead token
11852 end of input ()".
11853
11854 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11855
11856 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11857 fix a small glitch in debugging output.
11858 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11859 after YY_SYMBOL_PRINT where needed.
11860
11861 (struct yyGLRState): Add some comments.
11862 (struct yySemanticOption): Add some comments.
11863 (union yyGLRStackItem): Add comment.
11864
11865 (yymergeOptionSets): Correct this to properly perform the union,
11866 avoiding infinite reported by Michael Rosien.
11867 Update comment.
11868
11869 * tests/glr-regression.at: Add test for GLR merging error reported
11870 by M. Rosien.
11871
11872 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11873
11874 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11875 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11876 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11877 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11878 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11879 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11880 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11881 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11882 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11883 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11884 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11885 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11886 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11887 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11888 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11889 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11890 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11891 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11892 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11893 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11894 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11895 src/output.h, src/parse-gram.c, src/parse-gram.h,
11896 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11897 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11898 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11899 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11900 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11901 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11902 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11903 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11904 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11905 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11906 tests/reduce.at, tests/regression.at, tests/sets.at,
11907 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11908 Update FSF postal mail address.
11909
11910 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11911
11912 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11913 Problem reported by Ralf Menzel.
11914
11915 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
11916
11917 * tests/actions.at: Test that stack overflow invokes destructors.
11918 From Marcus Holland-Moritz.
11919 * data/yacc.c (yyerrlab): Move the code that destroys the stack
11920 from here....
11921 (yyreturn): to here. That way, destructors are called properly
11922 even if the stack overflows, or the user calls YYACCEPT or
11923 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
11924 (yyoverflowlab): Destroy the lookahead.
11925
11926 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
11927
11928 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
11929
11930 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
11931
11932 * NEWS: Bison-generated C parsers no longer quote literal strings
11933 associated with tokens.
11934 * src/output.c (prepare_symbols): Don't escape strings,
11935 since users don't want to see C escapes.
11936 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
11937 in diagnostics.
11938 * tests/input.at (Torturing the Scanner): Likewise.
11939 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
11940
11941 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
11942
11943 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
11944 the data size is known to be too small and we can't increase it.
11945 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
11946
11947 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
11948
11949 * src/parse-gram.y: Include quotearg.h.
11950 (string_as_id): Quote $1 before using it as a key, since the
11951 lexer no longer quotes it for us.
11952 (string_content): Don't strip quotes, since lexer no longer
11953 quotes it for us.
11954 * src/scan-gram.l: Include quotearg.h.
11955 ("\""): Omit quote.
11956 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
11957 a key, since the rest of the lexer doesn't quote it.
11958 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
11959 * tests/regression.at (Token definitions): Check for backslashes
11960 in token strings.
11961
11962 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
11963 (YYSIZE_T): Define to unsigned long int when using an older compiler.
11964 (yyparse): Revamp code to generate long syntax error message, to
11965 make it easier to translate, and to avoid problems with arithmetic
11966 overflow. Change "virtual memory" to "memory" in diagnostic, since
11967 we don't know whether the memory is virtual.
11968
11969 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
11970
11971 * NEWS: Bison-generated C parsers now use the _ macro to
11972 translate strings.
11973 * data/yacc.c (_) [!defined _]: New macro.
11974 All English strings wrapped inside this macro.
11975 * doc/bison.texinfo (Bison Parser): Document _.
11976 * po/POTFILES.in: Include src/parse-gram.c, since it now
11977 includes translateable strings that parse-gram.y doesn't.
11978
11979 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
11980
11981 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
11982 reverting the 2004-10-11 change to this function.
11983 (symbol_check_alias_consistency): Don't call symbol_type_set
11984 if the type name is already correct.
11985 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
11986
11987 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
11988
11989 * tests/regression.at (Token definitions): Don't use a token named
11990 c, as that generates a "#define c ..." that runs afoul of buggy
11991 stdlib.h that uses the identifier c as a member of struct
11992 drand48_data. Problem reported by Horst Wente.
11993
11994 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
11995
11996 * bootstrap: Change translation URL from
11997 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
11998 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
11999 redirection glitches. Problem reported by twlevo@xs4all.nl.
12000
12001 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12002
12003 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12004 after operands; POSIX says this isn't portable for the c99 command.
12005
12006 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12007
12008 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12009 immediately if a data overrun has occurred; this may help us track
12010 down what may be a spurious failure on MacOS.
12011
12012 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12013
12014 Respond to problems reported by twlevo@xs4all.nl.
12015
12016 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12017
12018 * src/vcg.h: Comment fix.
12019 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12020 (G_CMAX): Change to -1 instead of INT_MAX.
12021
12022 * data/yacc.c (yyparse): Omit spaces before #line.
12023
12024 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12025
12026 * src/tables.c (state_number_to_vector_number): Put it inside an
12027 "#if 0", since it's not currently used. Problem reported by
12028 Roland McGrath.
12029
12030 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12031
12032 * src/output.c (escaped_output): Renamed from
12033 escaped_file_name_output, since we now use it for symbol tags as
12034 well. All uses changed.
12035 (symbol_destructors_output, symbol_printers_output):
12036 Escape symbol tags too.
12037 Problem reported by Matyas Forstner in
12038 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12039
12040 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12041 not needed.
12042 * src/output.c (user_actions_output, token_definitions_output,
12043 symbol_destructors_output, symbol_printers_output): Likewise.
12044 * src/reader.c (prologue_augment): Likewise.
12045 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12046
12047 * src/vcg.c (output_edge): Don't quote linestyle arg.
12048 Problem reported by twlevo@xs4all.nl.
12049
12050 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12051
12052 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12053 example, reported by Derek M Jones. Also, make the example even
12054 more outrageous, to better illustrate how bad the problem is.
12055
12056 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12057
12058 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12059 putsym. Typo reported by Sebastian Piping.
12060
12061 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12062
12063 * doc/bison.texinfo (Language and Grammar): some -> same
12064 (Epilogue): int he -> in the
12065 Typos reported by Sebastian Piping via Justin Pence.
12066
12067 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12068
12069 * tests/glr-regression.at (Improper handling of embedded actions
12070 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12071 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12072 with dollar signs in test names.
12073 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12074 for a similar reason.
12075
12076 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12077
12078 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12079 wants to redefine G_VIEW.
12080
12081 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12082
12083 * src/vcg.c (get_view_str): Remove case for normal_view.
12084 Problem reported by twlevo@xs4all.nl.
12085
12086 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12087
12088 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12089 Problem reported by twlevo@xs4all.nl.
12090
12091 * doc/bison.texinfo: Change @dircategory from "GNU programming
12092 tools" to "Software development". Requested by Richard Stallman
12093 via Karl Berry.
12094
12095 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12096
12097 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12098 Problem reported by twlevo@xs4all.nl.
12099
12100 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12101
12102 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12103 keyword; it's not needed with modern compilers, and it doesn't
12104 affect correctness with older compilers. Suggested by
12105 twlevo@xs4all.nl.
12106
12107 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12108
12109 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12110 gcc -Wswitch-default.
12111 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12112 * data/yacc.c (yyparse): Likewise.
12113
12114 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12115
12116 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12117 already. Let config.h define any nonstandard values.
12118
12119 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12120
12121 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12122 for the benefit of slower hosts. Problem reported by
12123 Nelson H. F. Beebe.
12124
12125 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12126
12127 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12128 being defined and not used.
12129 * data/lalr1.cc (yyparse): Likewise.
12130 Use "if (false)" rather than "if (0)".
12131
12132 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12133
12134 * TODO: Mention that we should allow NUL bytes in tokens.
12135
12136 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12137
12138 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12139 Problem reported by Hans Aberg.
12140
12141 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12142
12143 * src/getargs.c (version): Happy new year; update overall
12144 program copyright date from 2004 to 2005.
12145
12146 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12147 Problem reported by Hans Aberg.
12148 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12149 (Output file names.): Add a test for the case when standard output
12150 is closed.
12151
12152 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12153
12154 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12155 to fix an oversight in the Bison 2.0 manual.
12156
12157 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12158
12159 * NEWS: Version 2.0. Reformat the existing news items since
12160 1.875, so that related items are grouped together.
12161 * configure.ac (AC_INIT): Bump version to 2.0.
12162 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12163
12164 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12165 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12166 otherwise, we're not testing alloca. Unfortunately there's no
12167 simple way to consult HAVE_ALLOCA here.
12168
12169 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12170 for yymsg, too.
12171
12172 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12173 hand. This avoids a warning about comparing int to size_t when
12174 GCC warnings are enabled.
12175
12176 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12177
12178 * NEWS: Bison-generated parsers no longer default to using the
12179 alloca function (when available) to extend the parser stack, due
12180 to widespread problems in unchecked stack-overflow detection.
12181 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12182 responsibility to set it to a positive value. This lets the user
12183 specify a value that is not a preprocessor constant.
12184 * data/yacc.c (YYMAXDEPTH): Likewise.
12185 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12186 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12187 to be a compile-time constant. However, explain the constraints on it.
12188 Also, explain the constraints on YYINITDEPTH.
12189 (Table of Symbols): Explain that alloca is no longer the default.
12190 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12191 to 1.
12192
12193 * doc/bison.texinfo (Location Default Action): Mention that n must
12194 be zero when k is zero. Suggested by Frank Heckenbach.
12195
12196 2004-12-22 Akim Demaille <akim@epita.fr>
12197
12198 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12199 (parser::state_type, parser::semantic_type, parser::location_type):
12200 Private, not public.
12201 (parser::parse): Return ints, not bool.
12202 Returning a bool introduces a problem: 0 corresponds to false, and
12203 it seems weird to return false on success. Returning true changes
12204 the conventions for yyparse.
12205 Alternatively we could return void and send an exception.
12206 There is no clear consensus (yet?).
12207 (state_stack, semantic_stack, location_stack): Rename as...
12208 (state_stack_type, semantic_stack_type, location_stack_type): these.
12209 Private, not public.
12210 * tests/c++.at: New.
12211 * tests/testsuite.at, tests/Makefile.am: Adjust.
12212
12213 2004-12-21 Akim Demaille <akim@epita.fr>
12214
12215 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12216
12217 2004-12-21 Akim Demaille <akim@epita.fr>
12218
12219 Don't impose std::string for filenames.
12220
12221 * data/lalr1.cc (b4_filename_type): New.
12222 (position::filename): Use it.
12223 (parser.hh): Move the inclusion of stack.hh and location.hh below
12224 the user code, so that needed headers for the filename type can be
12225 included first.
12226 Forward declare them before the user code.
12227 * tests/Makefile.am (check-local, installcheck-local): Pass
12228 TESTSUITEFLAGS to the TESTSUITE.
12229
12230 2004-12-20 Akim Demaille <akim@epita.fr>
12231
12232 Use more STL like names: my_class instead of MyClass.
12233
12234 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12235 (SemanticStack, SemanticType, StateStack, StateType)
12236 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12237 (Parser::value): Rename as...
12238 (location_stack, location_type, rhs_number_type, semantic_stack)
12239 (semantic_type, state_stack, state_type, token_number_type, stack)
12240 (slice, traits, parser::yylloc, parser::yylval): these.
12241
12242 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12243
12244 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12245
12246 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12247 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12248
12249 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12250
12251 Remove uses of 'short int' and 'unsigned short int'. This raises
12252 some arbitrary limits. It uses more memory but nowadays that's
12253 not much of an issue.
12254
12255 This change does not affect the generated parsers; that's a different
12256 task, as some users will want to conserve memory there.
12257
12258 Ideally we should use size_t to represent all object counts, and
12259 something like ptrdiff_t to represent signed differences of object
12260 counts; but that will require more code-cleanup than I have the
12261 time to do right now.
12262
12263 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12264 Use size_t, not int or short int, to count objects.
12265 * src/closure.c (nritemset, closure): Likewise.
12266 * src/closure.h (nritemset, closure): Likewise.
12267 * src/nullable.c (nullable_compute): Likewise.
12268 * src/print.c (print_core): Likewise.
12269 * src/print_graph.c (print_core): Likewise.
12270 * src/state.c (state_compare, state_hash): Likewise.
12271 * src/state.h (struct state): Likewise.
12272 * src/tables.c (default_goto, goto_actions): Likewise.
12273
12274 * src/gram.h (rule_number, rule): Use int, not short int.
12275 * src/output.c (prepare_rules): Likewise.
12276 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12277 errs, reductions): Likewise.
12278 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12279 Likewise.
12280 * src/tables.c (vector_number, tally, action_number,
12281 ACTION_NUMBER_MINIMUM): Likewise.
12282 * src/output.c (muscle_insert_short_int_table): Remove.
12283
12284 2004-12-17 Akim Demaille <akim@epita.fr>
12285
12286 * data/lalr1.cc: Extensive Doxygenation.
12287 (error_): Rename as...
12288 (error): this, since it is visible to the user.
12289 Adjust callers.
12290 (Parser::message): Now an automatic variable from...
12291 (Parser::yyreport_syntax_error_): here.
12292 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12293 Parser::error.
12294 * tests/input.at: Escape $.
12295
12296 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12297
12298 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12299 Parenthesize rhs to avoid obscure problems with mistakes like
12300 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12301 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12302 b4_rhs_location): Likewise.
12303 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12304 b4_rhs_location): Likewise.
12305
12306 2004-12-16 Akim Demaille <akim@epita.fr>
12307
12308 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12309 yacc.c: be sure to stay within yycheck_.
12310 * tests/actions.at: Re-enable C++ tests.
12311
12312 2004-12-16 Akim Demaille <akim@epita.fr>
12313
12314 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12315 real.
12316
12317 2004-12-16 Akim Demaille <akim@epita.fr>
12318
12319 Use #define to handle the %name-prefix.
12320
12321 * data/glr.c, data/yacc.c: Comment changes.
12322 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12323 so that one can refer to yylex in the parser file, and have it
12324 renamed, as is the case with other skeletons.
12325
12326 2004-12-16 Akim Demaille <akim@epita.fr>
12327
12328 Move lalr1.cc internals into yy*.
12329
12330 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12331 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12332 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12333 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12334 (empty_, final_, terror_, errcode_, ntokens_)
12335 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12336 (looka_, ilooka_, error_range_, nerrs_):
12337 Rename as...
12338 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12339 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12340 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12341 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12342 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12343 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12344 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12345 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12346 these.
12347
12348 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12349
12350 Fix some problems reported by twlevo at xs4all.
12351 * src/symtab.c (symbol_new): Report an error if the input grammar
12352 contains too many symbols. This is better than calling abort() later.
12353 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12354 (struct node, struct graph):
12355 Rename member expand to stretch. All uses changed.
12356 (struct graph): Remove member layoutalgorithm. All uses removed.
12357 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12358 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12359 All uses changed.
12360 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12361
12362 2004-12-15 Akim Demaille <akim@epita.fr>
12363
12364 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12365 Add more Doxygen comments.
12366 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12367 (report_syntax_error_, translate_): Rename as...
12368 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12369 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12370
12371 2004-12-15 Akim Demaille <akim@epita.fr>
12372
12373 * data/lalr1.cc (lex_): Rename as...
12374 (yylex_): this.
12375 Move the trace here.
12376 Take the %name-prefix into account.
12377 Reported by Alexandre Duret-Lutz.
12378
12379 2004-12-15 Akim Demaille <akim@epita.fr>
12380
12381 Simplify the C++ parser constructor.
12382
12383 * data/lalr1.cc (debug_): Rename as...
12384 (yydebug_): so that the parser's internals are always in the yy*
12385 pseudo namespace.
12386 Adjust uses.
12387 (b4_parse_param_decl): Remove the leading comma as it is now only
12388 called as unique argument list.
12389 (Parser::Parser): Remove the constructor accepting a location and
12390 an initial debugging level.
12391 Remove from the other ctor the argument for the debugging level.
12392 (debug_level_type, debug_level, set_debug_level): New.
12393
12394 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12395 constructor calls.
12396
12397 2004-12-15 Akim Demaille <akim@epita.fr>
12398
12399 Remove b4_root related material: failure experiment
12400 (which goal was to allow to derive from a class).
12401
12402 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12403 definitions and uses.
12404
12405 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12406
12407 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12408 not 2, since it's not portable to subtract 1 from the start of an
12409 array. The new item 0 is never set or used. All uses changed.
12410
12411 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12412 the default definition of YYLLOC_DEFAULT. Problem reported
12413 by Frank Heckenbach.
12414
12415 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12416
12417 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12418 the normal case and one for the error case. Just use the
12419 first one uniformly. Problem reported by Frank Heckenbach.
12420 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12421 use exactly the same macro in both places.
12422 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12423 so that the normal-case YYRHSLOC works for the error case too.
12424 All uses changed.
12425 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12426 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12427 * doc/bison.texinfo (Location Default Action): Don't claim that
12428 we have an array of locations. Use the same macro for both glr
12429 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12430 the index is 0.
12431
12432 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12433
12434 * HACKING: Update email addresses to send announcements to.
12435
12436 * configure.ac (AC_INIT): Bump version to 1.875f.
12437
12438 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12439
12440 * NEWS: Version 1.875e.
12441 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12442
12443 * src/scan-skel.l: Include "complain.h", for "fatal".
12444
12445 * src/relation.h (relation_print, relation_digraph):
12446 Relation sizes are of type relation_node, not size_t (this is
12447 merely a doc fix, since the two types are equivalent).
12448 (relation_transpose): Relation sizes are of type relation_node,
12449 not int.
12450 * src/relation.c: Likewise.
12451 (top, infinity): Now of type relation_node, not int.
12452 (traverse, relation_transpose): Use relation_node, not int.
12453
12454 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12455 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12456 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12457
12458 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
12459 specifying whether the test should be skipped. Use it tp
12460 specify that the [%defines %skeleton "lalr1.cc"] tests currently
12461 fail on some hosts, and should be skipped.
12462
12463 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12464
12465 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12466 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12467 unless otherwise specified below.
12468
12469 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12470 to allocate kernel_base, kernel_items, kernel_size, since
12471 they needn't be initialized to 0.
12472 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12473 * src/closure.c (new_closure): Likewise, for itemset.
12474 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12475 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12476 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12477 (build_relations): Likewise for edge, states1, includes.
12478 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12479 * src/reader.c (packgram): Likewise, for ritem, rules.
12480 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12481 * src/relation.c (relation_digraph): Likewise for VERTICES.
12482 (relation_transpose): Likewise for new_R, end_R.
12483 * src/symtab.c (symbols_token_translations_init): Likewise for
12484 token_translations.
12485 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12486 (token_actions): Likewise for yydefact, actrow, conflrow,
12487 conflict_list.
12488 (save_column): Likewise for froms[symno], tos[symno].
12489 (goto_actions): Likewise for state_count.
12490 (pack_table): Likewise for base, pos, check.
12491 (tables_generate): Likewise for width.
12492
12493 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12494 for initial core. Just have a separate core, so we needn't worry
12495 about whether kernel_size and kernel_base are initialized.
12496
12497 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12498 kernel_size, kernel_items): Remove unnecessary initialization.
12499 * src/conflicts.c (conflicts): Likewise.
12500 * src/derives.c (derives): Likewise.
12501 * src/muscle_tablc (muscle_insert): Likewise.
12502 * src/relation.c (relation_digraph): Likewise.
12503 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12504 conflrow, conflict_table, conflict_list, table, check):
12505 Likewise.
12506
12507 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12508 This is because all callers pass unsigned int.
12509 * src/closure.h (new_closure): Likewise.
12510
12511 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12512 (build_relations): Initialize includes[i] in all cases.
12513 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12514 and rules[ruleno].precsym. Initialize members in order.
12515 * src/relation.c (relation_transpose): Always initialize new_R[i]
12516 and end_R[i].
12517 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12518
12519 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12520 conflict_list[0] was always 0, but now it isn't initialized.
12521
12522 * src/table.c (table_grow): When conflict_table grew, the grown
12523 area wasn't cleared. Fix this.
12524
12525 * lib/.cvsignore: Add strdup.c, strdup.h.
12526 * m4/.cvsignore: Add strdup.m4.
12527
12528 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12529
12530 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12531 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12532 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12533 ngotos + 1 without checking for overflow.
12534 (build_relations): Use END_NODE, not -1, to denote end of edges.
12535 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12536 build_relations): Use goto_number, not int, for goto numbers.
12537 * src/tables.c (save_column, default_goto): Likewise.
12538
12539 2004-11-23 Akim Demaille <akim@epita.fr>
12540
12541 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12542 of #defining from yystype.
12543 Don't typedef yystype, C++ does not need it.
12544 This lets it possible to forward declare it as union.
12545
12546 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12547
12548 * bootstrap (gnulib_modules): Add extensions.
12549 Problem reported by Jim Meyering.
12550
12551 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12552
12553 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12554 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12555 src/system.h, src/tables.c: XFREE -> free, to accommodate
12556 recent change to gnulib xalloc.h.
12557 Problem reported by Jim Meyering.
12558
12559 2004-11-17 Akim Demaille <akim@epita.fr>
12560
12561 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12562
12563 2004-11-17 Akim Demaille <akim@epita.fr>,
12564 Alexandre Duret-Lutz <adl@gnu.org>
12565
12566 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12567 changes.
12568 (YYCDEBUG): Adjust.
12569 Use it instead of cdebug_.
12570 (Parser::debug_stream, Parser::set_debug_stream): New.
12571 (Parser::symprint_): Define cdebug_ for temporary backward
12572 compatibility.
12573 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12574 debug_stream ().
12575
12576 2004-11-17 Akim Demaille <akim@epita.fr>
12577
12578 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12579 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12580 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12581 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12582
12583 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12584
12585 * data/glr.c (yyloc_default): Remove; not used.
12586 Problem reported by Frank Heckenbach.
12587
12588 2004-10-25 Akim Demaille <akim@epita.fr>
12589
12590 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12591 Introduce another definition to address simple location arrays.
12592 (yyGLRStack): New member: yyerror_range.
12593 (yyrecoverSyntaxError, yyparse): Update it.
12594 (yyrecoverSyntaxError): Use it when shifting the error token to
12595 have an accurate range, equivalent to the one computed by both
12596 yacc.c and lalr1.cc.
12597 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12598 that column numbers start at column 0, as per GNU Coding
12599 Standards, the others tests, and the doc.
12600 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12601 Adjust to the above change (first column is 0).
12602 And adjust the location of the "<error>", now covering the whole
12603 line.
12604
12605 2004-10-22 Akim Demaille <akim@epita.fr>
12606 and Paul Eggert <eggert@cs.ucla.edu>
12607
12608 Remove some arbitrary limits on goto numbers and relations.
12609 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12610 initial values, since they're never used.
12611 (set_goto_map): ngotos is now unsigned, so test for overflow
12612 by seeing whether it wraps around to zero.
12613 * src/lalr.h (goto_number): Now size_t, not short int.
12614 (GOTO_NUMBER_MAXIMUM): Remove.
12615 * src/relation.c (relation_print, traverse, relation_transpose):
12616 Check for END_NODE rather than looking at sign.
12617 * src/relation.h (END_NODE): New macro.
12618 (relation_node): Now size_t, not short int.
12619
12620 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12621
12622 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12623 keyword, not an identifier. Problem reported by Baron Schwartz in
12624 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12625
12626 2004-10-11 Akim Demaille <akim@epita.fr>
12627
12628 * src/symtab.c (symbol_check_alias_consistency): Also check
12629 type names, destructors, and printers.
12630 Reported by Alexandre Duret-Lutz.
12631 Recode the handling of associativity and precedence in terms
12632 of symbol_precedence_set.
12633 Accept no redeclaration at all, not even equal to the previous
12634 value.
12635 (redeclaration): New.
12636 Use it to factor redeclaration complaints.
12637 (symbol_make_alias): Don't set the type of the alias, let
12638 symbol_check_alias_consistency do it as for other features.
12639 * src/symtab.h (symbol): Add new member prec_location, and
12640 type_location.
12641 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12642 * tests/input.at (Incompatible Aliases): New.
12643
12644 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12645
12646 .cvsignore fixes to accommodate gnulib changes,
12647 and the practice of naming build directories "_build".
12648 * .cvsignore: Add "_*". Sort.
12649 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12650 * m4/.cvsignore: Add "*_gl.m4".
12651
12652 2004-10-06 Akim Demaille <akim@epita.fr>
12653
12654 * src/parse-gram.y (add_param): Fix the truncation of trailing
12655 spaces.
12656
12657 2004-10-05 Akim Demaille <akim@epita.fr>
12658
12659 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12660 whether the reducion was empty or not. This leaves room to
12661 improve the use of YYLLOC_DEFAULT in such a case.
12662 lalr1.cc is still experimental, so changing this is acceptable.
12663 And finally, there are probably not many users who changed the
12664 handling of locations in GLR, so changing is admissible too.
12665
12666 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12667 empty reduction, set @$ to an empty location ending the previously
12668 stacked symbol.
12669 Adjust uses to make sure the code is triggered on empty
12670 reductions.
12671 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12672 expected output: empty reductions have empty locations.
12673
12674 2004-09-29 Akim Demaille <akim@epita.fr>
12675
12676 * data/lalr1.cc: Move towards a more standard C++ coding style
12677 for templates: Class < T > -> Class<T>.
12678
12679 2004-09-29 Akim Demaille <akim@epita.fr>
12680
12681 * data/lalr1.cc: Reinstall the former ctor, for sake of
12682 compatibility, but warn it will be removed.
12683 Move towards a more standard C++ coding style (i.e., type *var ->
12684 type* var).
12685
12686 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12687
12688 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12689 since it's less likely to work if NULs are involved in the future.
12690
12691 2004-09-27 Akim Demaille <akim@epita.fr>
12692
12693 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12694
12695 2004-09-27 Akim Demaille <akim@epita.fr>
12696
12697 * data/lalr1.cc (b4_parse_param_decl_1): New.
12698 (b4_parse_param_decl): Use it to have different names between attribute
12699 and argument names.
12700 (b4_cc_constructor_call): Likewise.
12701
12702 2004-09-24 Akim Demaille <akim@epita.fr>
12703
12704 * src/parse-gram.y (add_param): Strip the leading and trailing
12705 blanks from a formal argument declaration.
12706 (YY_LOCATION_PRINT): New.
12707
12708 2004-09-24 Akim Demaille <akim@epita.fr>
12709
12710 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12711 after the location.
12712
12713 2004-09-24 Akim Demaille <akim@epita.fr>
12714
12715 * doc/bison.texinfo (Table of Symbols): Sort.
12716
12717 2004-09-21 Akim Demaille <akim@epita.fr>
12718
12719 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12720 the useless parentheses.
12721 Suggested by Paul Eggert.
12722
12723 2004-09-20 Akim Demaille <akim@epita.fr>
12724
12725 Let the initial-action act on the look-ahead, and use it for the
12726 "initial push" (corresponding to an hypothetical beginning-of-file).
12727 And let lalr1.cc honor %initial-action.
12728
12729 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12730 example.
12731 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12732 (Parser::Parser): Remove the ctor that used to initialize it.
12733 (Parser::parse): Like in the other skeletons, issue the "starting
12734 parse" message before any action.
12735 Honor %initial-action.
12736 Initialize the stacks with the lookahead.
12737 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12738 look-ahead.
12739 Push them in the stacks.
12740 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12741
12742 2004-09-20 Akim Demaille <akim@epita.fr>
12743
12744 * doc/bison.texinfo (Initial Action Decl): New.
12745
12746 2004-09-20 Akim Demaille <akim@epita.fr>
12747
12748 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12749 clearer criterion to define it.
12750 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12751 When reducing on an empty RHS, use the latest stacked location as
12752 location.
12753 yylloc is not always available.
12754 * data/glr.c: Likewise.
12755 Also, honor initial-actions.
12756
12757 2004-09-20 Akim Demaille <akim@epita.fr>
12758
12759 * data/yacc.c (YY_LOCATION_PRINT): New.
12760 Define when we know YYLTYPE's structure, i.e., when the default
12761 YYLLOC_DEFAULT is used.
12762 * data/c.m4 (b4_yysymprint_generate): Use it.
12763 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12764 value of the result.
12765 (error_start_): Replace with...
12766 (error_range_): this location array.
12767 This allows to replace code relying on the implementation of
12768 locations by portable code.
12769 * data/yacc.c (yylerrsp): Replace with...
12770 (yyerror_range): this.
12771 Every time a token is popped, update yyerror_range[0], to have an
12772 accurate location for the error token.
12773 * data/glr.c (YY_LOCATION_PRINT): New.
12774 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12775 deference a pointer.
12776 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12777 report the location in %printers.
12778
12779 * src/scan-skel.l: Instead of abort, report error messages to ease
12780 understanding skeleton scanning failures.
12781
12782 2004-09-16 Akim Demaille <akim@epita.fr>
12783
12784 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12785 (iterator, const_iterator): these, to be more in the C++ spirit.
12786 Also, return reverse iterators so that when displaying the stack
12787 we display its bottom first.
12788 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12789 from yacc.c.
12790 We should probably use vector here though.
12791
12792 2004-09-16 Akim Demaille <akim@epita.fr>
12793
12794 Have more complete shift traces.
12795
12796 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12797 to report Shifts instead of ad hoc YYDPRINTF invocations,
12798 including for the error token.
12799 * data/lalr1.cc (symprint_): Output the location.
12800 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12801 output the location within the %printer.
12802 Activate GLR tests, at least to make sure they compile properly.
12803 They still don't pass though.
12804 * tests/calc.at: Adjust expect verbose output, since now "Entering
12805 state..." is on a different line than the "Shifting" message.
12806
12807 2004-09-08 Akim Demaille <akim@epita.fr>
12808
12809 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12810 Bison directive from the Bison file to the invocation of this
12811 macro, so that these directives are passed to
12812 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12813 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12814 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12815 the extra Bison directives instead of the whole series.
12816 Change the grammar so that there are recoverable errors, and
12817 unrecoverable errors. Now we can have the parser give up before
12818 consuming the whole input. As a result we now can observe that
12819 the lookahead is freed when needed.
12820 Change the parser source to parse argv[1] instead of a hard coded
12821 string.
12822 Simplify yylex, and give a value and location to EOF.
12823 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12824 passed directives already coded in the file.
12825 Add some tests to check the location of "error".
12826 For some tests, the C++ parser is correct, and not yacc.c.
12827 For other tests, they provide different, but unsatisfying, values,
12828 so keep the C++ value so that at least one parser is "correct"
12829 according to the test suite.
12830 (Actions after errors): Remove, this is subsumed by the
12831 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12832
12833 2004-09-06 Akim Demaille <akim@epita.fr>
12834
12835 * data/lalr1.cc: Adjust the indentation of the labels.
12836 (Parser::pop): New.
12837 Use it.
12838
12839 2004-09-06 Akim Demaille <akim@epita.fr>
12840
12841 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12842 argument, an informative message.
12843 Call YY_SYMBOL_PRINT.
12844 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12845 * data/lalr1.cc (destruct_): Likewise.
12846 In addition, no longer depend on b4_yysymprint_generate and
12847 b4_yydestruct_generate to generate these functions, do it "by
12848 hand".
12849
12850 2004-09-03 Akim Demaille <akim@epita.fr>
12851
12852 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12853 invoked, yydestruct the lookahead.
12854 * tests/calc.at (Calculator $1): Update the expected lengths of
12855 traces: there is an added line for the discarded lookahead.
12856 * doc/bison.texinfo (Destructor Decl): Some rewording.
12857 Define "discarded" symbols.
12858
12859 2004-09-02 Akim Demaille <akim@epita.fr>
12860
12861 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12862
12863 2004-09-02 Akim Demaille <akim@epita.fr>
12864
12865 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12866 (YYDSYMPRINTF): Rename as...
12867 (YY_SYMBOL_PRINT): this.
12868 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12869 two.
12870 Use it instead of direct symprint_ calls.
12871 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12872 one.
12873
12874 2004-09-02 Akim Demaille <akim@epita.fr>
12875
12876 * data/lalr1.cc (b4_yysymprint_generate): New.
12877 (symprint_): New member function, defined when YYDEBUG.
12878 Use it consistently instead of token/nterm debugging output by
12879 hand.
12880 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12881 %printer calls to use cdebug_ when using lalr1.cc.
12882
12883 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12884
12885 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12886 with #ifdef YYDEBUG.
12887
12888 2004-08-26 Akim Demaille <akim@epita.fr>
12889
12890 * doc/bison.texinfo (Implementing Loops): Rename as...
12891 (Implementing Gotos/Loops): this.
12892
12893 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12894
12895 Adjust to latest gnulib.
12896 * bootstrap (gnulib_modules): Add xalloc-die.
12897 Set LC_ALL=C so that file names sort consistently.
12898 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12899 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12900 uintmax_t.m4, ulonglong.m4.
12901 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12902 po.m4 since we are now using _gl.m4 instead.
12903
12904 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12905
12906 * src/scan-action.l: Remove. Scanning of semantic actions is
12907 handled in scan-gram.l.
12908
12909 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12910
12911 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12912
12913 * src/location.h (struct): The file member is a uniqstr.
12914 (equal_boundaries): Use UNIQSTR_EQ for comparison.
12915
12916 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
12917
12918 Fix bug with non-%union parsers that have printers or destructors,
12919 which led to a Bison core dump. Reported by Peter Fales in
12920 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
12921
12922 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
12923 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
12924 not to our own type.
12925 * src/output.c (symbol_destructors_output, symbol_printers_output):
12926 Don't assume %union.
12927 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
12928 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
12929 UNION-FLAG. All callers changed.
12930 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
12931 Use type char, not unsigned int, when declaring an array of char;
12932 this lets us remove a cast.
12933 (Printers and Destructors): Add non-%union test cases.
12934
12935 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12936
12937 * doc/bison.texinfo: Minor editorial changes, mostly to the new
12938 GLR writeups. E.g., avoid frenchspacing and the future tense,
12939 change "lookahead" to "look-ahead", and change "wrt" to "with
12940 respect to".
12941
12942 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12943
12944 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
12945 New sections, split off from the GLR Parsers section. Put the new
12946 Simple GLR Parser near the start of the GLR section, for clarity.
12947 Rewrite connective text.
12948
12949 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
12950
12951 * doc/bison.texinfo (Simple GLR Parsers): New section.
12952
12953 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12954
12955 * NEWS, TODO, doc/bison.texinfo:
12956 Use "look-ahead" instead of "lookahead", to be consistent.
12957 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
12958 while we're fixing "look-ahead".
12959 * src/conflicts.c (shift_set): Renamed from shiftset.
12960 (look_ahead_set): Renamed from lookaheadset.
12961 * src/print.c: Likewise.
12962 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
12963 name for "lookahead".
12964 (report_types, usage): Likewise.
12965 * src/getargs.h (report_look_ahead_tokens): Renamed from
12966 report_lookaheads.
12967 * src/lalr.c (compute_look_ahead_tokens): Renamed from
12968 compute_lookaheads.
12969 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
12970 (look_ahead_tokens_print): Renamed from lookaheads_print.
12971 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
12972 state_rule_lookaheads_print.
12973 * src/state.h: Likewise.
12974 (reductions.look_ahead_tokens): Renamed from lookaheads.
12975 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
12976 AT_DATA_LOOKAHEADS_GRAMMAR.
12977
12978 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
12979
12980 * README: Update location of patched M4 distribution.
12981
12982 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
12983
12984 Don't assume the C++ compiler takes the same arguments as the C compiler
12985 (trivial change).
12986 * configure.ac (O0CXXFLAGS): New var.
12987 * tests/atlocal.in (CXXFLAGS): Use it.
12988
12989 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
12990
12991 Fix some "make check" problems with C++ reported by
12992 Albert Chin-A-Young for Tru64 C++ in this thread:
12993 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
12994
12995 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
12996 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12997 Output to a .cc file for C++, not to a .c file.
12998 * tests/calc.at (AT_CHECK_CALC): Likewise.
12999 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13000 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13001
13002 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13003
13004 * tests/calc.at, tests/actions.at: Workaround for SGI
13005 C++ compiler. (trivial change)
13006
13007 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13008
13009 Spent a few hours checking out which prerequisite versions the
13010 current sources actually require. I went all the way back to
13011 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13012 a seemingly endless set of combinations of versions more recent
13013 than that. The bottom line is that the current sources require
13014 fairly recent versions of the build tools, and it'll be some work
13015 to change this.
13016 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13017 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13018 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13019 Add comments explaining why those particular versions are
13020 currently needed.
13021
13022 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13023 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
13024 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
13025
13026 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13027 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13028
13029 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13030
13031 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13032 0.11.5. Suggested by Bruno Haible.
13033 * bootstrap: Remove gettext version checking.
13034
13035 * doc/bison.texinfo (Decl Summary): Also mention that %union
13036 can depend on prerequisite types. Problem reported by Tim
13037 Van Holder.
13038
13039 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13040
13041 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13042 * README-alpha: Don't tell people not to package this.
13043
13044 * bootstrap: Don't assume $(...) works; use `...` instead.
13045 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13046 gettext better.
13047
13048 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13049 put into the -d output file, and mention what to do if YYSTYPE is
13050 defined as a macro.
13051
13052 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13053
13054 Undo change made earlier today: it caused autopoint to not bring
13055 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13056 autopoint's.
13057
13058 * bootstrap: Check that gettext version matches what's in
13059 configure.ac. Warn users to ignore robots.txt ERROR 404.
13060 * bootstrap: Undo today's earlier change (logged below).
13061 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
13062
13063 The gettext version checking is causing more trouble than it's
13064 curing; remove it. Problem reported by Paul Hilfinger.
13065
13066 * bootstrap: Issue a warning that one can expect a message
13067 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13068 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13069
13070 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13071
13072 Ensure that the C++ compiler used for testing actually works on a
13073 simple test program; if not, skip the C++-related tests. Problem
13074 reported by Vin Shelton in:
13075 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
13076
13077 * m4/cxx.m4: New file.
13078 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13079 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13080 * tests/local.at (AT_COMPILE_CXX): Use it.
13081
13082 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13083
13084 * data/glr.c (yylloc): Output this macro even if locations are not
13085 being generated, as the GLR parser needs it even in that case.
13086 Problem reported by Troy A. Johnson
13087 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13088
13089 * configure.ac (AC_INIT): Update to 1.875e.
13090
13091 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13092
13093 * NEWS: Version 1.875d.
13094 * configure.ac (AC_INIT): Likewise.
13095 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13096
13097 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13098 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13099 lalr1.cc runs afoul of the first, and the last two are no longer
13100 supported by GCC 3.4.0.
13101 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13102 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13103
13104 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13105
13106 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13107 unsigned int, for compatibility with latest gnulib hash module.
13108 * src/state.c (state_hash, state_hasher): Likewise.
13109 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13110 * src/uniqstr.c (hash_uniqstr): Likewise.
13111
13112 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13113
13114 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13115
13116 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13117 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13118 character and string literals.
13119 (unexpected_end): New function.
13120 (unexpected_eof): Use it.
13121 (unexpected_newline): New function.
13122 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13123 actions.
13124
13125 * NEWS: Document %expect-rr.
13126
13127 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13128 Fix typo by replacing $1 with $option.
13129 Remove more 'intl'-related files.
13130 Don't DEFUN AM_INTL_SUBDIR twice.
13131
13132 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13133 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13134 strtoul.c.
13135 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13136 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13137 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13138 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13139 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13140 * src/.cvsignore: Add *.output.
13141
13142 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13143 gets copied to the output file.
13144
13145 2004-04-28 Paul Eggert <eggert@twinsun.com>
13146
13147 Get files from the gnulib and po repositories, instead of relying
13148 on them being in our CVS. Upgrade to latest versions of gnulib
13149 and Automake.
13150
13151 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13152 * bootstrap: Bootstrap from gnulib and po repositories.
13153 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13154 * README-cvs: Document these changes. Remove version numbers from
13155 mentions of build tools, since they change so often. Mention Flex.
13156
13157 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13158 (gl_USE_SYSTEM_EXTENSIONS): Add.
13159 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13160 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
13161 does this for us.
13162 (AC_ISC_POSIX): Remove; we no longer support this
13163 ancient OS, as it gets in the way of latest Autoconf & gnulib.
13164 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13165 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13166 Do not check for C89 headers, except for locale.h which is used
13167 by the Yacc library and must port to K&R hosts.
13168 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13169 Do not check for C89 functions, except for setlocale which is
13170 used by the Yacc library.
13171 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13172 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13173 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13174 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13175 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13176 AM_GNU_GETTEXT): Remove; now done by:
13177 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13178 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13179 for us.
13180
13181 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13182 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13183 Define to empty, as gnulib.mk will do the rest for us.
13184 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13185 for us.
13186 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13187 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13188
13189 * src/files.c: Include gnulib's xstrndup.h.
13190
13191 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13192 (REALLOC): Use xnrealloc, for likewise.
13193 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13194 (strnlen, memrchr): Remove decls; functions no longer used.
13195 Include <stpcpy.h>.
13196
13197 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13198 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13199 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13200 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13201 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13202 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13203 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13204 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13205 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13206 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13207 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13208 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13209 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13210 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13211 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13212 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13213 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13214 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13215 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13216 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13217 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13218 Remove, as these files are now generated automatically
13219 by bootstrap or automake.
13220
13221 * po/ChangeLog: Remove: all but one entry was a duplicate
13222 of this file, and I moved that 2000-11-02 entry here.
13223
13224 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13225 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13226 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13227 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13228 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13229 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13230 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13231 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13232 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13233 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13234 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13235 xstrndup.h.
13236 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13237 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13238 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13239 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13240 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13241 * src/.cvsignore: Remove *_.c.
13242
13243
13244 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13245 support it. (The latest stable gzip doesn't.)
13246
13247 2004-04-27 Paul Eggert <eggert@twinsun.com>
13248
13249 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13250 case, as stos_ is now used by destructors due to the 2004-02-09
13251 change.
13252
13253 Remove more K&R C support.
13254 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13255 * lib/subpipe.c (errno): Remove decl.
13256 Include <stdlib.h> unconditionally.
13257 (EXIT_FAILURE): Remove macro.
13258 * src/complain.c (vfprintf, strerror): Remove.
13259 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13260 unconditionally.
13261 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13262 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13263 (strchr, strspn, memchr): Remove decls.
13264 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13265 unconditionally. Do not declare perror.
13266 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13267 unconditionally.
13268
13269 * src/complain.c (_): Remove useless defn, as system.h defines this.
13270
13271 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13272 with latest obstack.h.
13273 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13274 to procedure types, as obstack.h now does that for us.
13275 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13276
13277 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13278 so that this include file can stand alone.
13279 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13280 does this now. Include subpipe.h first after config.h, to
13281 test whether it can stand alone.
13282
13283 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13284 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13285 unused declaration.
13286
13287 * tests/synclines.at (%union synch line): Put a dummy member in
13288 the union, because empty unions aren't allowed in C. Caught
13289 by GCC 3.4.0.
13290
13291 2004-04-13 Jim Meyering <jim@meyering.net>
13292
13293 * src/conflicts.c (conflicts_print): Correct format string typo:
13294 use `%%' to produce literal `%'. (trivial change)
13295
13296 2004-03-30 Paul Eggert <eggert@twinsun.com>
13297
13298 * src/getargs.c (version): Update copyright year to 2004.
13299
13300 * data/c.m4 (b4_int_type): Use 'short int' rather than
13301 'short', and similarly for 'long', 'unsigned', etc.
13302 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13303 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13304 yy_yypstack, yydumpstack): Likewise.
13305 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13306 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13307 Likewise.
13308 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13309 yy_stack_print, yyparse): Likewise.
13310 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13311 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13312 * lib/bitset.c (bitset_print): Likewise.
13313 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13314 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13315 * lib/bitsetv.c (bitsetv_dump): Likewise.
13316 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13317 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13318 Likewise.
13319 * src/LR0.c (allocate_itemsets): Likewise.
13320 * src/gram.h (rule_number, rule): Likewise.
13321 * src/lalr.h (goto_number): Likewise.
13322 * src/nullable.c (nullable_compute): Likewise.
13323 * src/output.c (prepare_rules): Likewise.
13324 * src/relation.c (relation_print, relation_digraph): Likewise.
13325 * src/relation.h (relation_node): Likewise.
13326 * src/state.h (state_number, transitions, errs, reductions,
13327 struct state): Likewise.
13328 * src/symtab.h (symbol_number, struct symbol): Likewise.
13329 * src/tables.c (vector_number, tally, action_number,
13330 default_goto, goto_actions): Likewise.
13331 * tests/existing.at (GNU Cim Grammar): Likewise.
13332 * tests/regression.at (Web2c Actions): Likewise.
13333
13334 * src/output.c (muscle_insert_short_int_table): Renamed from
13335 muscle_insert_short_table. All uses changed.
13336
13337 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13338
13339 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13340 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13341 Add %expect-rr rule.
13342
13343 * src/scan-gram.l: Recognize %expect-rr.
13344
13345 * src/conflicts.h (expected_sr_conflicts): Rename from
13346 expected_conflicts.
13347 (expected_rr_conflicts): Declare.
13348
13349 * src/conflicts.c (expected_sr_conflicts): Rename from
13350 expected_conflicts.
13351 (expected_rr_conflicts): Define.
13352 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13353 for GLR parsers.
13354 Use expected_sr_conflicts in place of expected_conflicts.
13355 Warn if expected_rr_conflicts used in non-GLR parser.
13356
13357 * doc/bison.texinfo: Add documentation for %expect-rr.
13358
13359 2004-03-08 Paul Eggert <eggert@gnu.org>
13360
13361 Add support for hex token numbers. Suggested by Odd Arild Olsen in
13362 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
13363
13364 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13365 in lalr1.cc.
13366 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13367 * src/scan-gram.l (scan_integer): New function.
13368 ({int}): Use it.
13369 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13370 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13371 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13372 Say "long int", not "long", for uniformity with GNU style.
13373
13374 2004-02-25 Paul Eggert <eggert@twinsun.com>
13375
13376 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13377 compilers. This fixes a problem with Intel's C++ compiler being
13378 chatty, reported by Guido Trentalancia in
13379 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
13380
13381 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13382
13383 Support %destructor and merge error locations in lalr1.cc.
13384
13385 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13386 (Parser::stos_): Define unconditionally.
13387 (Parser::destruct_): New method. Generate its body with
13388 b4_yydestruct_generate.
13389 (Parser::error_start_): New attribute.
13390 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13391 token which are discarded.
13392 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13393 error_start_ when erroneous token are discarded.
13394 (Parser::parse) <yyerrlab1>: Compute the location of the error
13395 token so that it covers all the discarded tokens.
13396 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13397 it can be called with `%skeleton "lalr1.cc"', and do that.
13398
13399 2004-02-02 Paul Eggert <eggert@twinsun.com>
13400
13401 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13402 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13403 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13404 There's no need to mention top_builddir since Automake does that
13405 for us.
13406 (INCLUDES): Remove, as Automake says it's obsolescent.
13407 Contents migrated into AM_CPPFLAGS as described above.
13408 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13409
13410 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13411
13412 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13413 (yyreportSyntaxError): Handle case where lookahead token is
13414 YYEMPTY.
13415
13416 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13417
13418 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13419 resulting parsers are compilable with C++.
13420
13421 2003-12-23 Paul Eggert <eggert@twinsun.com>
13422
13423 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13424 * src/output.c (output_skeleton): Rename local var.
13425 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13426 Bison tokens, as this runs afoul of the 2003-10-07 change that
13427 disallowed NUL bytes in character constants or string literals.
13428
13429 * tests/local.at: Require Autoconf 2.59's Autotest.
13430 * tests/testsuite.at: Don't include local.at, since we now assume
13431 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13432 including it.
13433 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13434 multiple inclusion warnings.
13435
13436 2003-12-02 Akim Demaille <akim@epita.fr>
13437
13438 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13439 conditions.
13440 From Bruno Haible.
13441
13442 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13443
13444 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13445
13446 2003-10-07 Paul Eggert <eggert@twinsun.com>
13447
13448 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13449 if testsuite doesn't exist.
13450
13451 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13452 literals, unfortunately.
13453 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13454 Complain about NUL bytes in character constants or string literals.
13455
13456 2003-10-05 Paul Eggert <eggert@twinsun.com>
13457
13458 * NEWS: Don't document %no-default-prec, as it's still
13459 too experimental.
13460 * doc/bison.texinfo: Document %no-default-prec only if
13461 the defaultprec flag is set. Normally it's not.
13462
13463 2003-10-04 Paul Eggert <eggert@twinsun.com>
13464
13465 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13466 non-modifiable lvalue, instead of a modifiable one.
13467 * doc/bison.texinfo (Actions): Document that $$ can
13468 be assigned to. Do not claim that $$ and $N are
13469 array element references: user code should not rely on this.
13470
13471 2003-10-01 Paul Eggert <eggert@twinsun.com>
13472
13473 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13474 (grammar_declaration): Use it.
13475 * src/scan-gram.l: New token %no-default-prec.
13476 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13477 * NEWS, doc/bison.texinfo: Document the above.
13478
13479 2003-10-01 Akim Demaille <akim@epita.fr>
13480
13481 VCG no longer supports long_straight_phase.
13482
13483 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13484 * src/print_graph.c (print_graph): Adjust.
13485
13486 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
13487 and Paul Eggert <eggert@twinsun.com>
13488
13489 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13490 Table of Symbols): Document %default-prec.
13491 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13492 (grammar_declaration): Set default_prec on %default-prec.
13493 * src/scan-gram.l (%default-prec): New token.
13494 * src/reader.h (default_prec): New flag.
13495 * src/reader.c: Likewise.
13496 (packgram): Handle it.
13497 * tests/conflicts.at (%default-prec without %prec,
13498 %default-prec with %prec, %default-prec 1): New tests.
13499
13500 2003-09-30 Paul Eggert <eggert@twinsun.com>
13501
13502 * tests/testsuite.at: Include local.at, not input.at, fixing
13503 a typo in the 2003-08-25 patch.
13504
13505 2003-08-27 Akim Demaille <akim@epita.fr>
13506
13507 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13508 GCC warnings.
13509
13510 2003-08-26 Akim Demaille <akim@epita.fr>
13511
13512 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13513 "<\#" to avoid magic from Gnus when posting parts of this script.
13514
13515 2003-08-26 Akim Demaille <akim@epita.fr>
13516
13517 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13518 (Parser::parse): here.
13519 Adjust: nerrs and errstatus is now replaced by...
13520 (Parser::nerrs_, Parser::errstatus_): New.
13521
13522 2003-08-25 Akim Demaille <akim@epita.fr>
13523
13524 * config/announce-gen, Makefile.cfg: New.
13525 * Makefile.am: Adjust.
13526 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13527 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13528
13529 2003-08-25 Akim Demaille <akim@epita.fr>
13530
13531 When reducing initial empty rules, Bison parser read an initial
13532 location that is not defined. This results in garbage, and that
13533 affects Bison's own parser. Therefore we need (i) to extend Bison
13534 to support a means to initialize this location, and (ii) to use
13535 this CVS Bison to fix CVS Bison's parser.
13536
13537 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13538 with...
13539 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13540 * src/parse-gram.y: Adjust.
13541 (%initial-action): New.
13542 (%error-verbose): Since we require CVS Bison, there is no reason
13543 not to use it.
13544 * src/scan-gram.l: Adjust.
13545 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13546 * data/yacc.c (yyparse): Use b4_initial_action.
13547
13548 2003-08-25 Akim Demaille <akim@epita.fr>
13549
13550 * doc/bison.texinfo: Don't promote stdout for error messages.
13551
13552 2003-08-25 Akim Demaille <akim@epita.fr>
13553
13554 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13555 From Alexandre Duret-Lutz.
13556
13557 2003-08-25 Akim Demaille <akim@epita.fr>
13558
13559 Version 1.875c.
13560
13561 2003-08-25 Akim Demaille <akim@epita.fr>
13562
13563 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13564 Use them.
13565
13566 2003-08-25 Akim Demaille <akim@epita.fr>
13567
13568 * data/lalr1.cc (Parser::reduce_print_): New.
13569 Use it.
13570
13571 2003-08-25 Akim Demaille <akim@epita.fr>
13572
13573 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13574 error recovery loops. This patch is based on
13575 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
13576 Also, augment the similarity between lalr1.cc and yacc.c.
13577 Note: the locations of error recovery rules are not correct yet.
13578
13579 * data/lalr1.cc: Comment changes to augment the similarity between
13580 lalr1.cc and yacc.c.
13581 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13582 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13583 yyerrlab), when hitting EOF, pop the whole stack here instead of
13584 merely falling thru the default error handling mechanism.
13585 (yyerrorlab): New label, with the old contents of YYERROR,
13586 plus the following change: pop the stack of rhs corresponding
13587 to the production that invoked YYERROR. That is how Yacc
13588 behaves (required by POSIX).
13589 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13590 fail.
13591
13592 2003-08-25 Akim Demaille <akim@epita.fr>
13593
13594 Tune local.at so that people can "autom4te -l autotest calc.at -o
13595 calc" for instance, to extract a sub test suite.
13596
13597 * tests/testsuite.at: Move the initialization, Autotest version
13598 requirement, and AT_TESTED invocation into...
13599 * tests/local.at: here.
13600 * tests/testsuite.at: Include it for compatibility with Autoconf
13601 2.57.
13602 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13603 be ignore.
13604
13605 2003-08-04 Paul Eggert <eggert@twinsun.com>
13606
13607 Rework code slightly to avoid gcc -Wtraditional warnings.
13608 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13609 The returned value is now stored in *YY0. All callers changed.
13610 * src/output.c (merge_output): Adjust to the above change.
13611
13612 2003-07-26 Paul Eggert <eggert@twinsun.com>
13613
13614 * data/glr.c (YYASSERT): New macro.
13615 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13616 yyresolveStates, yyprocessOneStack):
13617 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13618 Derived from a suggestion by Frank Heckenbach.
13619
13620 2003-07-25 Paul Eggert <eggert@twinsun.com>
13621
13622 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13623 for portability to K&R C (after ansi2knr, presumably). See
13624 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
13625 by Frank Heckenbach, though I have omitted the structure-initialization
13626 part of his glr-knr.diff patch since I recall that the Portable
13627 C Compiler didn't require that change.
13628
13629 Let the user specify how to allocate and free memory.
13630 Derived from a suggestion by Frank Heckenbach in
13631 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
13632 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13633 All uses of free, malloc, realloc changed to use these macros,
13634 and unnecessary casts removed.
13635 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13636
13637 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13638
13639 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13640 use s.empty() rather than s == "" to test for empty string; see
13641 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
13642 (trivial change)
13643
13644 2003-06-25 Akim Demaille <akim@epita.fr>
13645
13646 * config/depcomp, config/install-sh: Update from masters.
13647
13648 2003-06-20 Paul Eggert <eggert@twinsun.com>
13649
13650 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13651 and return properly parenthesized result.
13652 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13653 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13654 Remove unnecessary parentheses from uses.
13655 * doc/bison.texinfo (Location Default Action): Describe the
13656 conventions for parentheses.
13657
13658 2003-06-19 Paul Eggert <eggert@twinsun.com>
13659
13660 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13661 yyreportTree): Do not assume that size_t is the same width as int,
13662 when printing sizes. Print sizes using an unsigned format.
13663 Problem reported by Frank Heckenbach in
13664 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
13665
13666 Port to Forte Developer 7 C compiler.
13667 * data/glr.c (struct YYLTYPE): If locations are not being used,
13668 declare a single dummy member, as empty structs do not conform
13669 to the C standard.
13670 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13671 the Forte Developer 7 C compiler complains that end-of-loop
13672 code is not reached.
13673
13674 2003-06-17 Paul Eggert <eggert@twinsun.com>
13675
13676 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13677 avoid warnings from picky compilers about redefinition of PARAMS.
13678
13679 2003-06-17 Paul Eggert <eggert@twinsun.com>
13680
13681 Version 1.875b.
13682
13683 * NEWS: Document 1.875b.
13684
13685 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13686 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13687 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13688 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13689 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13690 per recent gettext manual's suggestion.
13691 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13692 Use prototypes, not old-style definitions.
13693 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13694 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13695 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13696 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13697 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13698 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13699 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13700 vbitset_or_and_cmp, vbitset_copy): Likewise.
13701
13702 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13703 Do not include <stdlib.h>.
13704 (PARAMS): Define unconditionally for C89.
13705 (ATTRIBUTE_NORETURN): Remove.
13706 (ATTRIBUTE_UNUSED): Define unconditionally.
13707
13708 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
13709 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
13710 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13711 * lib/vbitset.c, lib/vbitset.h: New files.
13712 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13713 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13714 from libbitset.
13715
13716 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13717 `How Can I Reset @code{yyparse}', since texinfo does not allow
13718 arbitrary @ in node names.
13719
13720 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13721 shouldn't be needed according to the gettext 0.12.1 documentation
13722 but which seem to be needed anyway: codeset.m4 glibc21.m4
13723 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
13724 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
13725 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
13726
13727 * lib/.cvsignore: Add stdbool.h.
13728 * m4/.cvsignore: Add nls.m4, po.m4.
13729
13730 Upgrade to CVS gnulib.
13731 * stdbool_.h: File renamed from stdbool.h.in.
13732 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13733 AC_HEADER_STDBOOL.
13734 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13735 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13736 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13737 (MOSTLYCLEANFILES): New var.
13738 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13739 (stdbool.h): New rule.
13740 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13741 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13742 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13743 m4/quote.m4: Upgrade to today's gnulib.
13744
13745 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13746 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13747 the tests right now.
13748 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13749 yyerror are declared before use; C99 requires this.
13750
13751 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13752
13753 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13754 first.
13755 (yyrecoverSyntaxError): Correct the logic for setting and testing
13756 yyerrState.
13757 Correct comment on handling EOF.
13758 Allow states with only a default reduction, rather than failing
13759 (I can't quite reconstruct why these were not allowed before).
13760
13761 Fixes to avoid problem that $-N rules in GLR parsers can cause
13762 buffer overruns, corrupting state.
13763
13764 * src/output.c (prepare_rules): Output max_left_semantic_context
13765 definition.
13766 * src/reader.h (max_left_semantic_context): New variable declaration.
13767 * src/scan-gram.l (max_left_semantic_context): Define.
13768 (handle_action_dollar): Update max_left_semantic_context.
13769 * data/glr.c (YYMAXLEFT): New definition.
13770 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13771 (yyresolveAction): Ditto.
13772
13773 Fixes to problems with location handling in GLR parsers reported by
13774 Frank Heckenbach (2003/06/05).
13775
13776 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13777 (YYRHSLOC): Add parentheses, and define only if locations used.
13778 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13779 locations not used.
13780 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13781 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
13782
13783 * tests/cxx-type.at: Exercise location information; update tests
13784 to differentiate output with and without locations.
13785 Remove forward declarations of yylex and yyerror---caused errors
13786 because default YYLTYPE not yet defined.
13787 Change semantic actions to compute strings, rather than printing
13788 them directly (to test proper passing of semantics values). Change
13789 output to prefix notation and update test data and expected results.
13790 (yylex): Track locations.
13791 (stmtMerge): Return value rather than printing, and include arguments
13792 in value.
13793
13794 2003-06-03 Paul Eggert <eggert@twinsun.com>
13795
13796 Avoid warnings generated by GCC 2.95.4 when Bison is
13797 configured with --enable-gcc-warnings.
13798 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13799 yy::]b4_parser_class_name[::translate_,
13800 yy::Stack::operator[] (unsigned),
13801 yy::Stack::operator[] (unsigned) const,
13802 yy::Slice::operator[] (unsigned),
13803 yy::Slice::operator[] (unsigned) const):
13804 Rename local vars to avoid warnings.
13805 * tests/glr-regression.at (Improper handling of embedded actions
13806 and $-N in GLR parsers): Remove unused local variable from yylex.
13807 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13808 (void) as arg when not pure, since we now assume C89 when building
13809 Bison. Pacify GCC by using parameter.
13810
13811 2003-06-02 Paul Eggert <eggert@twinsun.com>
13812
13813 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13814 yy::Location::lines, yy::Location::columns): Rename arguments
13815 to avoid shadowing; this removes a warning generated by GCC 3.3.
13816
13817 2003-06-01 Paul Eggert <eggert@twinsun.com>
13818
13819 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13820 to g++, as GCC 3.3 complains if you do it.
13821 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13822 everything that WARNING_CFLAGS has, except omit warnings
13823 not suitable for C++.
13824 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13825 * tests/atlocal.in (CXXFLAGS): New var.
13826 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13827
13828 Fix a GLR parser bug I reported in February; see
13829 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
13830 The problem was that GLR parsers did not conform to the C standard,
13831 because actions like { $1 = $2 + $3; } expanded to expressions
13832 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13833 to a local variable. The C standard says that expressions
13834 like (var = f ()) + (var = f ()) have undefined behavior.
13835 Another problem was that GCC sometimes issues warnings that
13836 yyfill and its parameters are unused.
13837
13838 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13839 as possibly unused.
13840 (yyfill): New function.
13841 (YYFILL): Use it.
13842 (yyuserAction): Change type of yynormal to bool, so that it matches
13843 the new yyfill signature. Mark it as possibly unused.
13844
13845
13846 Follow up on a bug I reported in February, where a Bison-generated
13847 parser can loop. Provide a test case and a fix for yacc.c. I
13848 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13849 The original bug report is in:
13850 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
13851
13852 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13853 macro's size was becoming unwieldy.
13854 (yyerrlab): Do not discard an empty lookahead symbol, as this
13855 might destroy garbage.
13856 (yyerrorlab): New label, with the old contents of YYERROR,
13857 plus the following change: pop the stack of rhs corresponding
13858 to the production that invoked YYERROR. That is how Yacc
13859 behaves, and POSIX requires this behavior.
13860 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13861 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13862 Define 'alarm' to do nothing if unistd.h is not available.
13863 Add a new rule "exp: '-' error;" to test the above change to
13864 data/yacc.c. Use 'alarm' to abort any test taking longer than
13865 10 seconds, as it's probably looping.
13866 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13867 Also, the new yacc.c generates two fewer diagnostics for an
13868 existing test.
13869
13870 2003-05-24 Paul Eggert <eggert@twinsun.com>
13871
13872 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13873 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13874 This fixes a problem reported by John Bowman when the Compaq/HP
13875 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13876 -ansi -Wall -gall).
13877 * data/yacc.c (union yyalloc): Likewise.
13878 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
13879
13880 Switch from 'int' to 'bool' where that makes sense.
13881
13882 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13883 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13884 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13885 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13886 Return or accept bool, not int. All callers changed.
13887 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13888 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13889 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13890 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13891 bitset_or_and_cmp_): Likewise.
13892 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13893 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13894 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13895 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13896 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13897 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13898 bitset_stats_or_and_cmp): Likewise.
13899 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13900 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13901 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13902 ebitset_xor_cmp): Likewise.
13903 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13904 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13905 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13906 lbitset_xor_cmp): Likewise.
13907 * lib/bbitset.h: Include <stdbool.h>.
13908 (struct bitset_vtable): The following members now return bool, not
13909 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13910 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13911 or_and_cmp).
13912 * src/conflicts.c (count_rr_conflicts): Likewise.
13913 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
13914 All uses changed.
13915 * lib/ebitset.c (ebitset_obstack_init): Likewise.
13916 * lib/lbitset.c (lbitset_obstack_init): Likewise.
13917 * src/getargs.c (debug_flag, defines_flag, locations_flag,
13918 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13919 graph_flag): Likewise.
13920 * src/getargs.h (debug_flag, defines_flag, locations_flag,
13921 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13922 graph_flag): Likewise.
13923 * src/output.c (error_verbose): Likewise.
13924 * src/output.h (error_verbose): Likewise.
13925 * src/reader.c (start_flag, typed): Likewise.
13926 * src/reader.h (typed): Likewise.
13927 * src/getargs.c (LOCATIONS_OPTION): New constant.
13928 (long_options, getargs): Use it.
13929 * src/lalr.c (build_relations): Use bool, not int.
13930 * src/nullable.c (nullable_compute): Likewise.
13931 * src/print.c (print_reductions): Likewise.
13932 * src/tables.c (action_row, pack_vector): Likewise.
13933 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
13934 * src/output.c (prepare): Use it.
13935 * src/output.c (token_definitions_output,
13936 symbol_destructors_output, symbol_destructors_output): Use string,
13937 not boolean integer, to keep track of whether to output separator.
13938 * src/print_graph.c (print_core): Likewise.
13939 * src/state.c (state_rule_lookaheads_print): Likewise.
13940
13941 * config/install-sh: Sync from automake 1.7.5.
13942
13943 2003-05-14 Paul Eggert <eggert@twinsun.com>
13944
13945 * src/parse-gram.y (rules_or_grammar_declaration): Require a
13946 semicolon after a grammar declaration, in the interest of possible
13947 future changes to the Bison input language.
13948 Do not allow a stray semicolon at the start of the grammar.
13949 (rhses.1): Allow one or more semicolons after any rule, including
13950 just before "|" as required by POSIX.
13951 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
13952 grammar.
13953
13954 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
13955
13956 %parse-param support for lalr1.cc.
13957
13958 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
13959 b4_cc_constructor_calls, b4_cc_constructor_call,
13960 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
13961 definitions.
13962 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
13963 parse-param arguments.
13964 (yy::b4_parser_class_name): Declare instance variables to
13965 hold parse-param arguments.
13966 * tests/calc.at: s/value/semantic_value/ because value clashes
13967 with a member of yy::b4_parser_class_name. Adjust C++ code
13968 to handle %parse-param. Enable %parse-param test in C++.
13969
13970 2003-05-12 Paul Eggert <eggert@twinsun.com>
13971
13972 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
13973 English a bit. Fix fclose typo. Change "const char" to "char
13974 const", and use ANSI C rather than K&R for "main". Suggest
13975 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
13976 and suggest yy_switch_to_buffer.
13977
13978 2003-05-05 Paul Eggert <eggert@twinsun.com>
13979
13980 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
13981 C89. This avoids a diagnostic on compilers that define __STDC__
13982 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
13983 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
13984
13985 2003-05-03 Paul Eggert <eggert@twinsun.com>
13986
13987 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
13988 Do not overrun array bounds.
13989 This should fix a bug reported today by Olatunji Oluwabukunmi in
13990 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
13991
13992 2003-04-29 Akim Demaille <akim@epita.fr>
13993
13994 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
13995 * src/getargs.c, src/getargs.h: here, as bool, not int.
13996 (nondeterministic_parser): New.
13997 * src/parse-gram.y, src/scan-gram.l: Support
13998 %nondeterministic-parser.
13999 * src/output.c (prepare): Use nondeterministic_parser instead
14000 of glr_parser where appropriate.
14001 * src/tables.c (conflict_row, action_row, save_row)
14002 (token_actions, token_actions, pack_vector): Ditto.
14003
14004 2003-04-29 Akim Demaille <akim@epita.fr>
14005
14006 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14007
14008 2003-04-29 Akim Demaille <akim@epita.fr>
14009
14010 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14011 with %pure-parser and %locations to exercise the patch from Yakov
14012 Markovitch below.
14013
14014 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14015
14016 * data/yacc.c: (b4_lex_param): Corrected for the case where
14017 %lex-param is provided and %pure-parser isn't.
14018
14019 2003-04-27 Paul Eggert <eggert@twinsun.com>
14020
14021 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
14022 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
14023 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14024 if it is not defined.
14025 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14026
14027 2003-04-26 Paul Eggert <eggert@twinsun.com>
14028
14029 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14030 Declare to be of type suitable for the ninf value itself, not of
14031 type suitable for the corresponding table, since the latter might
14032 be unsigned but the ninf value might be negative. This fixes a
14033 bug reported by Alexandre Duret-Lutz in
14034 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
14035
14036 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14037 invokes it. We shouldn't invoke it twice because it will attempt
14038 to put error.o in the archive twice. This fixes a glitch reported
14039 by Martin Mokrejs in
14040 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14041
14042 2003-04-21 Paul Eggert <eggert@twinsun.com>
14043
14044 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14045 to gnulib.
14046
14047 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14048
14049 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14050 Fix obvious typo that results in uncompilable GLR parsers
14051 when both %pure-parser and %locations are used. (trivial change)
14052
14053 2003-04-17 Paul Eggert <eggert@twinsun.com>
14054
14055 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14056 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14057 Do not insert the expected token via unput, as this runs afoul
14058 of a POSIX-compatibility bug in flex 2.5.31.
14059 All uses changed to BEGIN the parent state,
14060 since we no longer insert the expected token via unput.
14061 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14062 that is no longer emitted after the above change.
14063
14064 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14065 the first one. This change is from Paul Hilfinger, and it fixes
14066 regression reported by Werner Lemberg in
14067 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
14068
14069 (resolve_sr_conflict): Don't invoke state_errs_set
14070 unless one or more tokens have been explicitly made errors.
14071 Otherwise, the above change causes Bison to abort.
14072
14073 * tests/existing.at (GNU pic Grammar): New test case, taken from
14074 Lemberg's email.
14075
14076 2003-03-31 Akim Demaille <akim@epita.fr>
14077
14078 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14079
14080 2003-03-31 Akim Demaille <akim@epita.fr>
14081
14082 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14083 output.
14084
14085 2003-03-31 Akim Demaille <akim@epita.fr>
14086
14087 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14088 From Paul Hilfinger.
14089
14090 2003-03-29 Akim Demaille <akim@epita.fr>
14091
14092 * m4/error.m4: Do not put under dynamic conditions some code which
14093 expansion is under static control.
14094
14095 2003-03-29 Akim Demaille <akim@epita.fr>
14096
14097 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14098
14099 2003-03-29 Akim Demaille <akim@epita.fr>
14100
14101 * doc/bison.texinfo (Strings are Destroyed): New.
14102
14103 2003-03-13 Paul Eggert <eggert@twinsun.com>
14104
14105 * .cvsignore: Add configure.lineno.
14106 * src/.cvsignore: Add yacc.
14107 * tests/.cvsignore: Add testsuite.log.
14108 * doc/fdl.texi: Sync with latest FSF version.
14109
14110 2003-03-12 Paul Eggert <eggert@twinsun.com>
14111
14112 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14113 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14114 cursor, instead of leaving it undefined. This fixes a bug
14115 reported by Tim Van Holder in
14116 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
14117 * tests/input.at (Torturing the Scanner): Test the scanner on
14118 an empty input file, which was Tim Van Holder's test case.
14119
14120 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14121 <sys/resource.h> can be included, include sys/time.h and
14122 sys/times.h first, if available. This works around the SunOS
14123 4.1.4 porting bug reported by Bruce Becker in
14124 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
14125
14126 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14127 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14128 AC_HEADER_SYS_WAIT.
14129
14130 Merge changes from gnulib. This was prompted because the CVS
14131 snapshot didn't build on Solaris 7 due to strnlen problems.
14132
14133 These changes need to be merged back into gnulib:
14134 * lib/hash.c: Include <stdbool.h> unconditionally.
14135 * m4/onceonly.m4 (m4_quote): New macro.
14136 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14137 Quote AC_FOREACH variable-expansions properly.
14138 The 2003-01-03 obstack.h change also needs merging.
14139 {end of changes requiring merging}
14140
14141 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14142 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14143 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14144 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14145 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14146 New files, imported from gnulib.
14147 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14148 above.
14149
14150 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14151 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14152 gnulib sources.
14153
14154 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14155 Add.
14156 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14157 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14158 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14159 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14160 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14161 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14162 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14163 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14164 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14165 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14166 (jm_PREREQ_ARGMATCH): Remove.
14167 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14168 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14169
14170 * src/system.h: Include <stdbool.h> unconditionally.
14171
14172 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14173 assuming at least C89 in the bitset code for some time now.
14174
14175 2003-03-03 Akim Demaille <akim@epita.fr>
14176
14177 * ro.po: New.
14178
14179 2003-03-02 Akim Demaille <akim@epita.fr>
14180
14181 * doc/bison.texinfo (Table of Symbols): Reactivate the
14182 documentation for %lex-param, and %parse-param.
14183
14184 2003-03-02 Akim Demaille <akim@epita.fr>
14185
14186 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14187 generate verbose error messages.
14188 Use the number of tokens as an upper bound in yytname, as it
14189 cannot be a non terminal.
14190
14191 2003-03-02 Akim Demaille <akim@epita.fr>
14192
14193 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14194 message.
14195
14196 2003-03-02 Akim Demaille <akim@epita.fr>
14197
14198 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14199 Use them to exercise yycheck overrun.
14200 Based on Andrew Suffield's grammar.
14201
14202 2003-03-02 Akim Demaille <akim@epita.fr>
14203
14204 Create tests/local.at for Bison generic testing macros.
14205
14206 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14207 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14208 This new file.
14209 * tests/calc.at (AT_CHECK_CALC): Adjust.
14210 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14211 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14212 * tests/local.at: here.
14213 (AT_COMPILE_CXX): Tags the tests using it as c++.
14214 Ignore the test if CXX is not functional.
14215
14216 2003-03-01 Paul Eggert <eggert@twinsun.com>
14217
14218 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14219 not loc->end, since loc->end might contain garbage and this leads
14220 to undefined behavior on some platforms.
14221 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14222 depend on *loc, so that the reader doesn't give the the false
14223 impression that *loc is initialized.
14224 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14225 does not survive the return.
14226
14227 2003-03-01 Akim Demaille <akim@epita.fr>
14228
14229 * src/scan-gram.l (code_start): Always initialize it when entering
14230 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14231 yylex invocation. An alternative would be making it static, but
14232 then it starts with the second %%'s beginning, instead of its end.
14233
14234 2003-02-28 Paul Eggert <eggert@twinsun.com>
14235
14236 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14237 around a UnixWare 7.1.1 porting bug reported by John Hughes in
14238 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
14239
14240 2003-02-26 Paul Eggert <eggert@twinsun.com>
14241
14242 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14243 Remove Sequent/Pyramid discussion (nobody uses them any more).
14244 Merge VMS and MS-DOS discussion; these ports may well be dead
14245 but let's keep mentioning them for now. Put <> around email
14246 addresses. Add copyright notice.
14247
14248 2003-02-24 Paul Eggert <eggert@twinsun.com>
14249
14250 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14251 to avoid collision with flex use of yylineno.
14252 Problem reported by Bruce Lilly in
14253 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
14254 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14255 * data/yacc.c (yy_reduce_print): Likewise.
14256
14257 * config/depcomp: Sync with Automake 1.7.3.
14258
14259 2003-02-21 Akim Demaille <akim@epita.fr>
14260
14261 * data/lalr1.cc: Use temporary variables instead of casts to
14262 change integer types.
14263 Suggested by Paul Eggert.
14264
14265 2003-02-21 Akim Demaille <akim@epita.fr>
14266
14267 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14268 to avoid confusions with lalr1.cc's notion of Position.
14269 Suggested by Paul Eggert.
14270
14271 2003-02-20 Akim Demaille <akim@epita.fr>
14272
14273 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14274 before initial_columns.
14275 (location.hh): Use consistent variable names when defining the
14276 operator<<.
14277 Use "last" so that we subtract from Positions, not from unsigned.
14278
14279 2003-02-20 Akim Demaille <akim@epita.fr>
14280
14281 * data/lalr1.cc (position.hh): New subfile, including the extended
14282 and Doxygen'ed documentation of class Position.
14283 (location.hh): Use it.
14284 Document a` la Doxygen.
14285 With the help of Benoit Perrot.
14286
14287 2003-02-20 Akim Demaille <akim@epita.fr>
14288
14289 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14290 AT_YACC_IF.
14291 Redefine AT_YYERROR_SEES_LOC_IF using it.
14292 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14293 not defined.
14294 Don't use the location in yy::Parser::error_ and
14295 yy::Parser::print_ when not %locations.
14296 Activate more lalr1.cc tests.
14297
14298 2003-02-19 Akim Demaille <akim@epita.fr>
14299
14300 * data/lalr1.cc: When displaying a line number, be sure to make it
14301 an int.
14302
14303 2003-02-19 Akim Demaille <akim@epita.fr>
14304
14305 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14306 Remove, useless.
14307 (YYABORT, YYACCEPT, YYERROR): New.
14308 * tests/calc.at: Renable the lalr1.cc test.
14309
14310 2003-02-19 Akim Demaille <akim@epita.fr>
14311
14312 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14313 error recovery, mixing with/without pops and discarding of the
14314 lookahead.
14315 Exercise YYERROR.
14316 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14317
14318 2003-02-17 Paul Eggert <eggert@twinsun.com>
14319
14320 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14321 * tests/testsuite.at (AT_COMPILE): Use them.
14322 This fixes the testsuite problem reported by Robert Lentz in
14323 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
14324
14325 2003-02-12 Paul Eggert <eggert@twinsun.com>
14326
14327 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14328 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
14329 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
14330 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14331 Check for malloc failure, for consistency with yacc.c.
14332 (yytname_size): Remove, for consistency with yacc.c.
14333
14334 The bug still remains in data/lalr1.cc, as I didn't have time
14335 to fix it there.
14336
14337 2003-02-06 Akim Demaille <akim@epita.fr>
14338
14339 * configure.ac (GXX): Rename as...
14340 (CXX): this, to keep the original Autoconf semantics.
14341 Require 2.57.
14342 * data/lalr1.cc: Fix b4_copyright invocations.
14343 If YYDEBUG is not defined, don't depend upon name_ being defined.
14344 (location.hh): Include string and iostream.
14345 (Position::filename): New member.
14346 (Position::Position ()): New.
14347 (operator<< (Position)): New.
14348 (operator- (Position, int)): New.
14349 (Location::first, Location::last): Rename as...
14350 (Location::begin, Location::end): these, to mock the conventional
14351 iterator names.
14352 (operator<< (Location)): New.
14353 * tests/atlocal.in (CXX): New.
14354 * tests/testsuite.at (AT_COMPILE_CXX): New.
14355 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14356 locations in a more synthetic way.
14357 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14358 lalr1.cc is used.
14359 Adjust the C locations to match those from Emacs: first column is
14360 column 0.
14361 Change all the expected results.
14362 Conform to the GCS: simplify the locations when applicable.
14363 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14364 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14365 these CPP macros with the m4 macros new defined by...
14366 (AT_CHECK_PUSHDEFS): this, i.e.:
14367 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
14368 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
14369 New macros.
14370 (AT_CHECK_POPDEFS): Undefine them.
14371 (AT_CHECK_CALC_LALR1_CC): New.
14372 Use it for the first lalr1.cc test.
14373
14374 2003-02-04 Akim Demaille <akim@epita.fr>
14375
14376 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14377 Location as is defined.
14378
14379 2003-02-04 Akim Demaille <akim@epita.fr>
14380
14381 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14382 name_ being defined.
14383
14384 2003-02-03 Paul Eggert <eggert@twinsun.com>
14385
14386 * src/gram.h (start_symbol): Remove unused decl.
14387
14388 Use more-consistent naming conventions for local vars.
14389
14390 * src/derives.c (derives_compute): Change type of local var from
14391 int to rule_number.
14392 * src/gram.c (grammar_rules_partial_print): Likewise.
14393 * src/print.c (print_core): Likewise.
14394 * src/reduce.c (reduce_grammar_tables): Likewise.
14395
14396 * src/gram.c (grammar_dump): Change name of item_number *
14397 local var from r to rp.
14398 * src/nullable.c (nullable_compute): Likewise.
14399
14400 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14401
14402 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14403 for symbol or symbol_number var.
14404 * src/reader.c (grammar_start_symbol_set): Likewise.
14405 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14406 Likewise.
14407 * src/state.c (transitions_to): Likewise.
14408 * src/state.h: Likewise.
14409 * src/tables.c (symbol_number_to_vector_number): Likewise.
14410
14411 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14412 char * var.
14413
14414 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14415 var.
14416
14417 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14418 var.
14419
14420 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14421 Use str, not s, for char * var. Use ch, not c, for character var.
14422 Use size for size var.
14423
14424 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14425 char * var.
14426 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14427 uniqstr var.
14428 * src/uniqstr.h: Likewise.
14429
14430 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14431 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14432 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14433 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14434 param to have same name as that of enum, so that we don't use
14435 "s" to stand for a non-state.
14436
14437 2003-02-02 Akim Demaille <akim@epita.fr>
14438
14439 * src/scan-skel.l: Scan more than one inert character per yylex
14440 invocation.
14441
14442 2003-02-01 Paul Eggert <eggert@twinsun.com>
14443
14444 Version 1.875a.
14445
14446 * po/LINGUAS: Add ms.
14447
14448 2003-01-30 Akim Demaille <akim@epita.fr>
14449
14450 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14451
14452 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14453
14454 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14455 of $1.
14456
14457 Changes in response to error report by S. Eken: GLR mode does not
14458 handle negative $ indices or $ indices in embedded rules correctly.
14459 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
14460
14461 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14462 (b4_rhs_location): Ditto.
14463 (yyfill): New function to copy from stack tree into array
14464 incrementally.
14465 (yyuserAction): Modify to allow incremental move of semantic values
14466 to rhs array when in GLR mode.
14467 Define YYFILL to use in user-defined actions to fill semantic array
14468 as needed.
14469 Remove dummy use of yystack, as there is now a guaranteed use.
14470 (yydoAction): Modify to allow incremental move of semantic values
14471 to rhs array when in GLR mode.
14472 (yyresolveAction): Ditto.
14473 (yyglrShiftDefer): Update comment.
14474 (yyresolveStates): Use X == NULL for pointers, not !X.
14475 (yyglrReduce): Ditto.
14476 (yydoAction): Ditto
14477
14478 * tests/glr-regr1.at: Rename to ...
14479 * tests/glr-regression.at: Add new regression test for the problems
14480 described above (adapted from S. Eken).
14481 Update copyright notice.
14482 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14483 * tests/Makefile.am: Ditto.
14484
14485 2003-01-28 Paul Eggert <eggert@twinsun.com>
14486
14487 * data/lalr1.cc: Do not use @output_header_name@ unless
14488 b4_defines_flag is set. This fixes two bugs reported by
14489 Tim Van Holder in
14490 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14491 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
14492
14493 2003-01-21 Paul Eggert <eggert@twinsun.com>
14494
14495 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14496 we don't need to worry about yyerrlab1 being reported as an
14497 "unused label" by non-GCC C compilers. The downside is that if
14498 locations are used then a couple of statements are duplicated each
14499 time YYERROR is invoked, but the upside is that the warnings
14500 should vanish.
14501 (yyerrlab1): Move code to YERROR.
14502 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14503 This reverts some of the 2002-12-27 change.
14504
14505 2003-01-17 Paul Eggert <eggert@twinsun.com>
14506
14507 * src/output.c (symbol_printers_output): Fix typo that led
14508 to core dump. Problem reported by Antonio Rus in
14509 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
14510
14511 2003-01-13 Akim Demaille <akim@epita.fr>,
14512 Quoc Peyrot <chojin@lrde.epita.fr>,
14513 Robert Anisko <anisko_r@lrde.epita.fr>
14514
14515 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14516 when the stacks contain one element, as the loop would otherwise
14517 free the last state, and then use the top state (the one we just
14518 popped). This means that the initial elements will not be freed
14519 explicitly, as is the case in yacc.c; it is not a problem, as
14520 these elements have fake values.
14521
14522 2003-01-11 Paul Eggert <eggert@twinsun.com>
14523
14524 * NEWS: %expect-violations are now just warnings, reverting
14525 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14526 bootstrapping problem reported by Matthias Klose; see
14527 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
14528 * src/conflicts.c (conflicts_print): Likewise.
14529 * tests/conflicts.at (%expect not enough, %expect too much,
14530 %expect with reduce conflicts): Likewise.
14531 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14532 that the warning is enabled if the number of conflicts changes
14533 (not necessarily increases).
14534
14535 * src/getargs.c (version): Update copyright year.
14536
14537 2003-01-09 Akim Demaille <akim@epita.fr>
14538
14539 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14540
14541 2003-01-08 Paul Eggert <eggert@twinsun.com>
14542
14543 * Makefile.maint (WGETFLAGS):
14544 New macro, containing "-C off" to disable proxy caches.
14545 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14546 (rel-check): Use $(WGET) instead of wget.
14547
14548 2003-01-06 Paul Eggert <eggert@twinsun.com>
14549
14550 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14551 the GLR paper of Scott, Johnstone and Hussain.
14552
14553 2003-01-04 Paul Eggert <eggert@twinsun.com>
14554
14555 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14556 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14557 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14558 (EXTRA_LIBRARIES): New var, for liby.a.
14559 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14560 (EXTRA_SCRIPTS): New var, for yacc.
14561
14562 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14563 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14564 Problem reported by Nelson H. F. Beebe.
14565
14566 2003-01-03 Paul Eggert <eggert@twinsun.com>
14567
14568 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14569 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14570 when compiling Bison 1.875's `bitset bset = obstack_alloc
14571 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14572
14573 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14574 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14575 grow to a huge size with typical invocation.
14576
14577 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14578 Use the pattern recommended by Autoconf 2.57, except also protect
14579 against double-definition.
14580 * src/system.h: Likewise.
14581 Portability issues reported by Nelson H. F. Beebe.
14582
14583 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14584 All uses changed. Provide a definition in both C and C++.
14585 (yytrue, yyfalse): Define even if defined (__cplusplus).
14586
14587 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14588 Reported by Nelson H. F. Beebe.
14589
14590 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14591
14592 2003-01-02 Paul Eggert <eggert@twinsun.com>
14593
14594 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14595 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14596 Bug reported by Nelson H. F. Beebe.
14597
14598 2003-01-01 Paul Eggert <eggert@twinsun.com>
14599
14600 * Version 1.875.
14601
14602 2002-12-30 Paul Eggert <eggert@twinsun.com>
14603
14604 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14605 Moved here from...
14606 (<INITIAL>","): Here. This causes stray "," to be treated
14607 more uniformly.
14608
14609 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
14610 last brace in braced code when not in Yacc mode, for compatibility
14611 with Bison 1.35. This resurrects the 2001-12-15 patch to
14612 src/reader.c.
14613
14614 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14615 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14616
14617 2002-12-28 Paul Eggert <eggert@twinsun.com>
14618
14619 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14620 that of SYM's type. This fixes Debian bug 168069, reported by
14621 Thomas Olsson.
14622
14623 2002-12-28 Paul Eggert <eggert@twinsun.com>
14624
14625 Version 1.75f.
14626
14627 Switch back to the Yacc style of conflict reports, undoing some
14628 of the 2002-07-30 change.
14629 * doc/bison.texinfo (Understanding): Use Yacc style for
14630 conflict reports. Also, use new way of locating rules.
14631 * src/conflicts.c (conflict_report):
14632 Renamed from conflict_report_yacc, removing the old
14633 'conflict_report'. Translate the entire conflict report at once,
14634 so that we don't assume that "," has the same interpretation in
14635 all languages.
14636 (conflicts_output): Use Yacc-style conflict report for each state,
14637 instead of our more-complicated style.
14638 (conflicts_print): Use Yacc-style conflict report, except print
14639 the input file name when not emulating Yacc.
14640 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14641 Conflicted Reduction, %expect not enough, %expect too much,
14642 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14643 * tests/existing.at (GNU Cim Grammar): Likewise.
14644 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14645
14646 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14647 fatal): Don't invoke fflush; it's not needed and it might even be
14648 harmful for stdout, as stdout might not be open.
14649 * src/reduce.c (reduce_print): Likewise.
14650
14651 2002-12-27 Paul Eggert <eggert@twinsun.com>
14652
14653 Fix a bug where error locations were not being recorded correctly.
14654 This problem was originally reported by Paul Hilfinger in
14655 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
14656
14657 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14658 top of the location stack's error locations.
14659 (yyerrlab): Set it. When discarding a token, push its location
14660 onto yylerrsp so that we don't lose track of the error's end.
14661 (yyerrlab1): Now is only the target of YYERROR, so that we can
14662 properly record the location of the action that failed. For GCC
14663 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14664 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14665 (yyerrlab2): New label, which yyerrlab now falls through to.
14666 Compute the error's location by applying YYLLOC_DEFAULT to
14667 the locations of all the symbols that went into the error.
14668 * doc/bison.texinfo (Location Default Action): Mention that
14669 YYLLOC_DEFAULT is also invoked for syntax errors.
14670 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14671 Error locations include the locations of all the tokens that were
14672 discarded, not just the last token.
14673
14674 2002-12-26 Paul Eggert <eggert@twinsun.com>
14675
14676 * src/files.c: Include quote.h.
14677 (compute_output_file_names): Warn if we detect conflicting
14678 outputs to the same file. This should catch the misunderstanding
14679 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14680
14681 * src/conflicts.c (conflicts_print): If the user specifies
14682 "%expect N", report an error if there are any reduce/reduce
14683 conflicts. This is what the manual says should happen.
14684 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14685 * tests/conflicts.at (%expect with reduce conflicts): New test.
14686
14687 Don't use m4_include on relative file names, as it doesn't work as
14688 desired if there happens to be a file with that name under ".".
14689
14690 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14691 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14692 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14693 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14694 * src/output.c (output_skeleton): Use full path names when
14695 specifying a file to include; don't rely on include path, as
14696 it's unreliable when the working file contains a file with
14697 that name.
14698
14699 2002-12-25 Paul Eggert <eggert@twinsun.com>
14700
14701 Remove obsolete references to bison.simple and bison.hairy.
14702 Problem mentioned by Aubin Mahe in
14703 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
14704 * data/glr.c: Comment fix.
14705 * doc/bison.1: Remove references. Also, mention "yacc".
14706
14707 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14708 with -g option.
14709
14710 * src/parse-gram.y (declaration): Use enum "report_states" rather
14711 than its numeric value 1.
14712
14713 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14714 opening a new one. This fixes Debian bug 165349, reported by
14715 Bruce Stephens.
14716
14717 2002-12-24 Paul Eggert <eggert@twinsun.com>
14718
14719 Version 1.75e.
14720
14721 * Makefile.maint (cvs-update): Don't assume that the shell
14722 supports $(...), as Solaris sh doesn't.
14723
14724 * src/parse-gram.y (lloc_default): Remove test for empty
14725 nonterminals at the end, since it didn't change the result.
14726
14727 2002-12-24 Paul Eggert <eggert@twinsun.com>
14728
14729 If the user does not define YYSTYPE as a macro, Bison now declares it
14730 using typedef instead of defining it as a macro. POSIX requires this.
14731 For consistency, YYLTYPE is also declared instead of defined.
14732
14733 %union directives can now have a tag before the `{', e.g., the
14734 directive `%union foo {...}' now generates the C code
14735 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14736 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14737 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14738 instead of `yyltype'.
14739
14740 `yystype' and `yyltype' are now obsolescent macros instead of being
14741 typedefs or tags; they are no longer documented and will be
14742 withdrawn in a future release.
14743
14744 * data/glr.c (b4_location_type): Remove.
14745 (YYSTYPE): Renamed from yystype.
14746 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14747 (struct YYLTYPE): Renamed from struct yyltype.
14748 (YYLTYPE): Renamed from yyltype.
14749 (yyltype, yystype): New (and obsolescent) macros,
14750 for backward compatibility.
14751 * data/yacc.c: Likewise.
14752
14753 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14754 does not specify a union tag. This is for compatibility with
14755 Solaris 9 yacc.
14756
14757 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14758 const *, since it is now modified by stripping surrounding { }.
14759 (current_braced_code): Remove.
14760 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14761 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14762 trailing " {...}". Now of type <chars>.
14763 (grammar_declaration): Adjust to bundled tokens.
14764 (code_content): Remove; stripping is now done by add_param.
14765 (print_token_value): Print contents of bundled tokens.
14766 (token_name): New function.
14767
14768 * src/reader.h (braced_code, current_braced_code): Remove.
14769 (token_name): New decl.
14770
14771 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14772 token_type, not braced_code code_kind. All uses changed.
14773 (SC_PRE_CODE): New state, for scanning after a keyword that
14774 has (or usually has) an immediately-following braced code.
14775 (token_type): New local var, to keep track of which token type
14776 to return when scanning braced code.
14777 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
14778 <INITIAL>"%parse-param", <INITIAL>"%printer",
14779 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14780 instead of returning a token type immediately.
14781 (<INITIAL>"{"): Set token type.
14782 (<SC_BRACED_CODE>"}"): Use it.
14783 (handle_action_dollar, handle_action_at): Now returns bool
14784 indicating success. Fail if ! current_rule; this prevents a core dump.
14785 (handle_symbol_code_dollar, handle_symbol_code_at):
14786 Remove; merge body into caller.
14787 (handle_dollar, handle_at): Complain in invalid contexts.
14788
14789 * NEWS, doc/bison.texinfo: Document the above.
14790 * NEWS: Fix years and program names in copyright notice.
14791
14792 2002-12-17 Paul Eggert <eggert@twinsun.com>
14793
14794 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14795 Reporting, Table of Symbols): Omit mentions of %lex-param and
14796 %parse-param from the documentation for now.
14797
14798 2002-12-15 Paul Eggert <eggert@twinsun.com>
14799
14800 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14801 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14802 lookahead symbol, and which sets yychar in parser actions) and it
14803 disagreed with the Bison documentation. Bug
14804 reported by Andrew Walrond.
14805
14806 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14807 as the caller now does that.
14808 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14809 (YYEMPTY): Parenthesize right hand side, since others use it.
14810 (yyparse): Don't assume that our generated code is the only code
14811 that sets yychar.
14812
14813 2002-12-13 Paul Eggert <eggert@twinsun.com>
14814
14815 Version 1.75d.
14816
14817 POSIX requires a "yacc" command.
14818 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14819 (MOSTLYCLEANFILES): Add yacc.
14820 (yacc): New rule.
14821 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
14822 as an alias for bison y.
14823
14824 * po/LINGUAS: Add da.
14825
14826 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14827 problem with latest <getopt.h>.
14828 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14829
14830 * doc/fdl.texi: Upgrade to 1.2.
14831 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14832 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14833 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14834 gnulib.
14835 * config/install-sh: Sync with autotools.
14836
14837 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
14838 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14839 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14840 locations are requested.
14841 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14842 locations are requested.
14843
14844 2002-12-12 Paul Eggert <eggert@twinsun.com>
14845
14846 Remove unportable casts and storage allocation tricks.
14847 While we're at it, remove almost all casts, since they
14848 usually aren't needed and are a sign of trouble.
14849
14850 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14851
14852 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14853 the pointer DSET returned by malloc; this isn't portable.
14854 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14855 Similarly for DERIVES.
14856 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14857 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14858 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14859
14860 * src/derives.c (derives_compute): Do not bother invoking
14861 int_of_rule_number, since rule numbers are integers.
14862
14863 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14864 rather than XMALLOC (char, N).
14865
14866 * src/files.c (filename_split): Rewrite to avoid cast.
14867
14868 * src/gram.h (symbol_number_as_item_number,
14869 item_number_as_symbol_number, rule_number_as_item_number,
14870 item_number_as_rule_number):
14871 Now inline functions rather than macros, to avoid casts.
14872 * src/state.h (state_number_as_int): Likewise.
14873 * src/tables.c (state_number_to_vector_number,
14874 symbol_number_to_vector_number): Likewise.
14875
14876 * src/gram.h (int_of_rule_number): Remove; no longer used.
14877
14878 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14879 since the resulting storage is always stored into.
14880
14881 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14882 where it's needed.
14883
14884 * src/muscle_tab.c (muscle_m4_output):
14885 Now inline. Return bool, not int.
14886 * src/state.c (state_compare): Likewise.
14887 * src/symtab.c (symbol_check_defined,
14888 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14889 hash_compare_symbol, hash_symbol):
14890 Likewise.
14891 * src/uniqstr.c (uniqstr_print): Likewise.
14892 * src/muscle_tab.c (muscle_m4_output_processor):
14893 New function, to avoid casts.
14894 * src/state.c (state_comparator, stage_hasher): Likewise.
14895 * src/symtab.c (symbol_check_defined_processor,
14896 symbol_check_alias_consistency_processor, symbol_pack_processor,
14897 symbol_translation_processor, hash_symbol_comparator,
14898 hash_symbol_hasher): Likewise.
14899 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14900 * src/muscle_tab.c (muscles_m4_output):
14901 Use new functions instead of casting old functions unportably.
14902 * src/state.c (state_hash_new): Likewise.
14903 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14904 symbols_token_translations_init):
14905 Likewise.
14906 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14907
14908 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14909 var instead of casting to long, to avoid casts.
14910 (prepare_states): Use MALLOC rather than alloca, so that we don't
14911 have to worry about alloca.
14912 * src/state.c (state_hash_lookup): Likewise.
14913
14914 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
14915 local var instead of casting to unsigned char, to avoid casts.
14916
14917 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
14918 STATE_ALLOC): Remove.
14919 (transitions_new, errs_new, reductions_new, state_new): Use malloc
14920 rather than calloc, and use offsetof to avoid allocating slightly
14921 too much storage.
14922 (state_new): Initialize all members.
14923
14924 * src/state.c (state_hash): Use unsigned accumulator, not signed.
14925
14926 * src/symtab.c (symbol_free): Remove; unused.
14927 (symbol_get): Remove cast in lhs of assignment.
14928 (symbols_do): Now static. Accept generic arguments, not
14929 hashing-related ones.
14930
14931 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
14932 (symbol_processor): Remove.
14933 (symbols_do): Remove decl; now static.
14934
14935 * src/system.h (alloca): Remove; decl no longer needed.
14936 (<stddef.h>): Include, for offsetof.
14937 (<inttypes.>, <stdint.h>): Include if available.
14938 (uintptr_t): New type, if system lacks it.
14939 (CALLOC, MALLOC, REALLOC): New macros.
14940 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
14941 new macros.
14942
14943 * src/tables.c (table_size): Now int, to pacify GCC.
14944 (table_grow, table_ninf_remap): Use signed table size.
14945 (save_row): Don't bother initializing locals when not needed.
14946 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
14947 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
14948
14949 * src/vcg.h: Correct misspellings.
14950
14951 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
14952
14953
14954 * src/getargs.c (getargs): Don't assume EOF == -1.
14955
14956 2002-12-09 Paul Eggert <eggert@twinsun.com>
14957
14958 Change identifier spellings to avoid collisions with names
14959 that are reserved by POSIX.
14960
14961 Don't use names ending in _t, since POSIX reserves them.
14962 For consistency, remove _e and _s endings -- they're weren't
14963 needed to remove ambiguity. All uses changed.
14964 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
14965 turn was just renamed from struniq_t.
14966 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
14967 which in turn was just renamed from struniq_processor_t.
14968 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
14969 in turn was renamed from hash_compare_struniq_t.
14970 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
14971 (state_list): Renamed from state_list_t.
14972 * src/assoc.h (assoc): Renamed from assoc_t.
14973 * src/conflicts.c (enum conflict_resolution): Renamed from
14974 enum conflict_resolution_e.
14975 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
14976 (rule_list): Renamed from rule_list_t.
14977 * src/getargs.h (enum trace): Renamed from enum trace_e.
14978 (enum report): Renamed from enum report_e.
14979 * src/gram.h (item_number): Renamed from item_number_t.
14980 (rule_number): Renamed from rule_number_t.
14981 (struct rule_s): Remove the "rule_s" part; not used.
14982 (rule): Renamed from rule_t.
14983 (rule_filter): Renamed from rule_filter_t.
14984 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
14985 (goto_list): Renamed from goto_list_t.
14986 * src/lalr.h (goto_number): Renamed from goto_number_t.
14987 * src/location.h (location): Renamed from location_t.
14988 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
14989 and moved here from:
14990 * src/muscle_tab.h (muscle_entry_t): here.
14991 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
14992 (rule_list): Renamed from rule_list_t.
14993 * src/print_graph.c (static_graph): Renamed from graph.
14994 * src/reader.h (braced_code): Renamed from braced_code_t.
14995 Remove brace_code_e tag.
14996 * src/relation.h (relation_node): Renamed from relation_node_t.
14997 (relation_nodes): Renamed from relation_nodes_t.
14998 (relation): Renamed from relation_t.
14999 * src/state.h (state_number): Renamed from state_number_t.
15000 (struct state): Renamed from struct state_s.
15001 (state): Renamed from state_t.
15002 (transitions): Renamed from transitions_t. Unused (and
15003 misspelled) transtion_s tag removed.
15004 (errs): Renamed from errs_t. Unused errs_s tag removed.
15005 (reductions): Renamed from reductions_t. Unused tag
15006 reductions_s removed.
15007 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15008 (struct symbol_list): Renamed from struct symbol_list_s.
15009 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15010 (struct symbol): Renamed from struct symbol_s.
15011 (symbol): Renamed from symbol_t.
15012 * src/tables.c (vector_number): Renamed from vector_number_t.
15013 (action_number): Renamed from action_t.
15014 * src/tables.h (base_number): Renamed from base_t.
15015 * src/vcg.h (enum color): Renamed from enum color_e.
15016 (enum textmode): Renamed from enum textmode_e.
15017 (enum shape): Renamed from enum shape_e.
15018 (struct colorentry): Renamed from struct colorentry_s.
15019 (struct classname): Renamed from struct classname_s.
15020 (struct infoname): Renamed from struct infoname_s.
15021 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15022 (enum decision): Renamed from enum decision_e.
15023 (enum orientation): Renamed from enum orientation_e.
15024 (enum alignment): Renamed from enum alignment_e.
15025 (enum arrow_mode): Renamed from enum arrow_mode_e.
15026 (enum crossing_type): Renamed from enum crossing_type_e.
15027 (enum view): Renamed from enum view_e.
15028 (struct node): Renamed from struct node_s.
15029 (node): Renamed from node_t.
15030 (enum linestyle): Renamed from enum linestyle_e.
15031 (enum arrowstyle): Renamed from enum arrowstyle_e.
15032 (struct edge): Renamed from struct edge.
15033 (edge): Renamed from edge_t.
15034 (struct graph): Renamed from struct graph_s.
15035 (graph): Renamed from graph_t.
15036 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15037 Rename value_t -> value.
15038 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15039 value_t_as_yystype -> value_as_yystype.
15040
15041 Don't include <errno.h> in the mainstream code, since it
15042 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15043 * lib/get-errno.c, lib/get-errno.h: New files.
15044 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15045 get-errno.c.
15046 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15047 * src/output.c (output_skeleton): Likewise.
15048 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15049 instead of errno.
15050 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15051 Likewise.
15052 (handle_action_dollar, handle_action_at): Likewise.
15053 * src/system.h: Do not include <errno.h>.
15054 (TAB_EXT): Renamed from EXT_TAB.
15055 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15056
15057 Avoid str[a-z]*, since <string.h> reserves that name space.
15058 Change all instances of "struniq" in names to "uniqstr", and
15059 likewise for "STRUNIQ" and "UNIQSTR".
15060 * src/uniqstr.c: Renamed from src/struniq.c.
15061 * src/uniqstr.h: Renamed from src/struniq.h.
15062 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15063 * src/files.c (strsuffix): Remove; unused.
15064 (concat2): Renamed from stringappend. Now static.
15065 * src/files.h (strsuffix, stringappend): Remove; unused.
15066 * src/parse-gram.y (<chars>): Renamed from <string>.
15067 (<uniqstr>): Renamed from <struniq>.
15068 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15069 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15070 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15071 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15072 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15073 (N_EXPAND): Renamed from N_STRETCH.
15074
15075 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15076 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15077 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15078 Remove; unused.
15079 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15080 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15081 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15082 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15083 (BASE_MAXIMUM): Renamed from BASE_MAX.
15084 (BASE_MINIMUM): Renamed from BASE_MIN.
15085 (ACTION_MAX): Remove; unused.
15086 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15087 Unnecessary casts removed from above defines.
15088
15089
15090 Fix misspelling in names.
15091 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15092 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15093 G_NODE_ALIGNEMENT.
15094
15095
15096 * lib/timevar.c (timevar_report): Renamed from time_report,
15097 for consistency with other names.
15098 * lib/timevar.h (timevar_report): New decl.
15099 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15100
15101
15102 Sort include-file uses.
15103
15104 Reorder all include files under src to be in the order "system.h".
15105 then the ../lib include files in angle brackets (alphabetized),
15106 then the . include files in double-quotes (alphabetized). Fix
15107 dependency breakages encountered in this process, as follows:
15108 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15109 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15110 * src/state.h: Include "symtab.h".
15111
15112 2002-12-08 Paul Eggert <eggert@twinsun.com>
15113
15114 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15115 since this causes problems when __file__ contains character
15116 sequences like "@" that are treated specially by src/scan-skel.l.
15117 Instead, just use the file's basename. This fixes the bug
15118 reported by Martin Mokrejs in
15119 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
15120
15121 2002-12-06 Paul Eggert <eggert@twinsun.com>
15122
15123 Add support for rules that do not have trailing semicolons, as
15124 POSIX requires. Improve the quality of locations in Bison
15125 diagnostics.
15126
15127 * src/location.c: Include <quotearg.h>.
15128 (empty_location): Now const.
15129 (location_print): New function. Follow the recommendation of the
15130 GNU Coding Standards for locations that span file boundaries.
15131 * src/location.h: Do not include <quotearg.h>; no longer needed.
15132 (boundary): New type.
15133 (location_t): Use it. This allows locations to span file boundaries.
15134 All member uses changed: file -> start.file or end.file (as needed),
15135 first_line -> start.line, first_column -> start.column,
15136 last_line -> end.line, last_column -> end.column.
15137 (equal_boundaries): New function.
15138 (LOCATION_RESET, LOCATION_STEP): Remove.
15139 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15140 (empty_location): Now const.
15141 (location_print): New decl.
15142 * src/parse-gram.y (lloc_default): New function, which handles
15143 empty locations more accurately.
15144 (YYLLOC_DEFAULT): Use it.
15145 (%token COLON): Remove.
15146 (%token ID_COLON): New token.
15147 (rules): Use it.
15148 (declarations, rules): Remove trailing semicolon.
15149 (declaration, rules_or_grammar_declaration):
15150 Allow empty (";") declaration.
15151 (symbol_def): Remove empty actions; no longer needed.
15152 (rules_or_grammar_declaration): Remove trailing semicolon.
15153 (semi_colon.opt): Remove.
15154 * src/reader.h: Include location.h.
15155 (scanner_cursor): New decl.
15156 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15157 rolling our own.
15158 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15159 of *loc.
15160 (STEP): Remove. No longer needed, now that adjust_location does
15161 the work. All uses removed.
15162 (scanner_cursor): New var.
15163 (adjust_location): Renamed from extend_location. It now sets
15164 *loc and adjusts the scanner cursor. All uses changed.
15165 Don't bother testing for CR.
15166 (handle_syncline): Remove location arg; now updates scanner cursor.
15167 All callers changed.
15168 (unexpected_end_of_file): Now accepts start boundary of token or
15169 comment, not location. All callers changed. Update scanner cursor,
15170 not the location.
15171 (SC_AFTER_IDENTIFIER): New state.
15172 (context_state): Renamed from c_context. All uses changed.
15173 (id_loc, code_start, token_start): New local vars.
15174 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15175 processing of Yacc white space and equivalents here.
15176 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15177 instead of returning ID immediately, since we need to search for
15178 a subsequent colon.
15179 (<INITIAL>"'", "\""): Save token_start.
15180 (<INITIAL>"%{", "{", "%%"): Save code_start.
15181 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15182 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15183 BEGIN context_state at end, not INITIAL.
15184 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15185 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15186 Return correct token start.
15187 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15188 the start of a character, string or multiline comment is found.
15189 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15190 Reduction): Adjust reported locations to match the more-precise
15191 results now expected.
15192 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15193 * tests/reduce.at (Useless Rules, Reduced Automaton,
15194 Underivable Rules): Likewise.
15195 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15196 or "|"' now that so many other tokens are allowed by the new grammar.
15197
15198 * src/complain.h (current_file): Remove duplicate decl;
15199 current_file is now owned by files.h.
15200 * src/complain.c, src/scan-gram.l: Include files.h.
15201
15202 2002-12-06 Paul Eggert <eggert@twinsun.com>
15203
15204 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15205 promotes to int; it might be unsigned int.
15206 * data/yacc.c (yy_reduce_print): Likewise.
15207
15208 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15209 be #defined in the prologue, not in the Bison declarations.
15210 This fixes Debian Bug 102878, reported by Shaul Karl.
15211
15212 2002-12-02 Paul Eggert <eggert@twinsun.com>
15213
15214 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15215 * lib/strtoul.c: New file, from gnulib.
15216 This fixes a porting bug reported by Peter Klein in
15217 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
15218
15219 2002-11-30 Paul Eggert <eggert@twinsun.com>
15220
15221 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15222 and put only a forward declaration in the prologue. This is for
15223 consistency with the other scanner helper functions.
15224
15225 Type clashes now generate warnings, not errors, since it
15226 appears that POSIX may allow some grammars with type clashes.
15227 * src/reader.c (grammar_current_rule_check): Warn about
15228 type clashes instead of complaining.
15229 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15230
15231 Add Yacc library, since POSIX requires it.
15232 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15233 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15234 * lib/main.c, lib/yyerror.c: New files.
15235
15236 gram_error can be static; it need not be extern.
15237 * src/reader.h (gram_error): Remove decl.
15238 * src/parse-gram.y (gram_error): Now static. Add static decl.
15239 (print_token_value): Omit parameter names from forward decl,
15240 for consistency.
15241
15242 2002-11-29 Paul Eggert <eggert@twinsun.com>
15243
15244 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15245 be declared before being used. E.g., one should typically
15246 declare them in the prologue. Use GNU coding style in examples.
15247 Put "const" consistently after the type it modifies. Mention
15248 that C99 supports "inline". Mention that yyerror traditionally
15249 returns "int".
15250
15251 %parse-param and %lex-param now take just one argument, the
15252 declaration; the argument name is deduced from the declaration.
15253
15254 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15255 Reporting, Table of Symbols): Document this.
15256 * src/parse-gram.y (add_param): New function.
15257 (COMMA): Remove.
15258 (declaration): Implement new rule for %parse-param and %lex-param.
15259 * src/scan-gram.l: "," now elicits a warning, rather than being
15260 a token; this is more compatible with byacc.
15261 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15262
15263 2002-11-27 Paul Eggert <eggert@twinsun.com>
15264
15265 Rename identifiers to avoid real and potential collisions.
15266
15267 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15268 to avoid collision with lex macro described by Bruce Lilly in
15269 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15270 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15271 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15272 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15273 All uses changed.
15274 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15275 The name "yycontrol" violates the name space rules, and this stuff
15276 wasn't being used anyway.
15277 (input): Remove action; this stuff wasn't being used.
15278 (gram_error): Rename local variable yylloc -> loc.
15279 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15280 (YY_DECL): Don't use "yy" at start of local variables.
15281 All uses changed, e.g., yylloc -> loc.
15282 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15283 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15284 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15285 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15286
15287 * src/parse-gram.y (gram_error): loc is now const *.
15288 * src/reader.h (gram_error): Likewise.
15289
15290 2002-11-24 Paul Eggert <eggert@twinsun.com>
15291
15292 Version 1.75c.
15293
15294 * tests/actions.at (Actions after errors): Use an output format
15295 more similar to that of the Printers and Destructors test.
15296 Test the position of the ';' token too.
15297 (Printers and Destructors): Likewise.
15298 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15299 unnecessarily alarming people when the test fails.
15300
15301 * data/yacc.c (yyerrlab1): Move this label down, so that the
15302 parser does not discard the lookahead token if the user code
15303 invokes YYERROR. This change is required for POSIX conformance.
15304
15305 * lib/error.c: Sync with gnulib.
15306
15307 2002-11-22 Paul Eggert <eggert@twinsun.com>
15308
15309 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15310 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15311 * lib/xmalloc.c: Likewise.
15312
15313 2002-11-20 Paul Eggert <eggert@twinsun.com>
15314
15315 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15316
15317 2002-11-20 Paul Eggert <eggert@twinsun.com>
15318
15319 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15320 should use `if (! x) abort ();' rather than `assert (x);', and
15321 anyway it's one less thing to worry about configuring.
15322
15323 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15324 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15325 and replace all instances of assert with abort.
15326 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15327 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15328
15329 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15330 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15331 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15332 hash_find_entry, hash_rehash, hash_insert): Likewise.
15333 * src/conflicts.c (resolve_sr_conflict): Likewise.
15334 * src/lalr.c (set_goto_map, map_goto): Likewise.
15335 * src/nullable.c (nullable_compute): Likewise.
15336 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15337 * src/reader.c (packgram, reader): Likewise.
15338 * src/state.c (state_new, state_free, state_transitions_set,
15339 state_reduction_find): Likewise.
15340 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15341 symbol_pack): Likewise.
15342 * src/tables.c (conflict_row, pack_vector): Likewise.
15343 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15344 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15345 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15346 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15347
15348 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15349 (ARGMATCH_CONSTRAINT): New macro.
15350 (ARGMATCH_ASSERT): Use it.
15351
15352 * src/system.h (verify): New macro.
15353 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15354 rather than assert.
15355 * src/tables.c (tables_generate): Likewise.
15356
15357 * src/struniq.c (struniq_assert): Now returns void, and aborts
15358 if the assertion is false.
15359 (struniq_assert_p): Remove.
15360 * src/struniq.h: Likewise.
15361
15362 2002-11-18 Paul Eggert <eggert@twinsun.com>
15363
15364 * data/glr.c (yygetLRActions): Replace `yyindex' with
15365 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15366 This fixes the regression with Sun ONE Studio 7 cc that I reported in
15367 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
15368
15369 2002-11-18 Akim Demaille <akim@epita.fr>
15370
15371 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15372 space.
15373 From Tim Van Holder.
15374
15375 2002-11-17 Paul Eggert <eggert@twinsun.com>
15376
15377 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15378 to "SyntaxError" for consistency with my 2002-11-15 change.
15379
15380 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15381 not define to {}, since this breaks the common use of `YYDPRINTF
15382 ((...));' if a single statement is desired (e.g. before `else').
15383 Work around GCC warnings by surrounding corresponding calls with
15384 {} if needed.
15385 (yyhasResolvedValue): Remove unused function.
15386 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15387 loop body.
15388 (yyreportSyntaxError): Renamed from yyreportParseError.
15389 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15390 All uses changed.
15391 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15392 extern when possible. Remove unused initializations.
15393
15394 2002-11-16 Akim Demaille <akim@epita.fr>
15395
15396 Augment the similarity between GLR and LALR traces.
15397
15398 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15399 (YY_REDUCE_PRINT): New.
15400 (yyparse): Use them.
15401 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15402 YYDPRINT here.
15403 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15404 state reached after the reduction/recovery, since...
15405 (yyparse, yyprocessOneStack): Report the state we are entering in.
15406
15407 2002-11-16 Akim Demaille <akim@epita.fr>
15408
15409 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15410 Add support for --trace=skeleton.
15411 * src/scan-skel.l: %option debug.
15412 Scan strings of non-@ or \n instead of character by character.
15413 (scan_skel): Handle trace_skeleton.
15414 (QPUTS): New.
15415 (@output_parser_name@, @output_header_name@): ``Restore'' their
15416 support (used to be M4 macros).
15417 * data/yacc.c: Quote larger chunks, a la glr.c.
15418 * data/lalr1.cc: Likewise.
15419 The header guards are no longer available, so use some other
15420 string than `YYLSP_NEEDED'.
15421
15422 2002-11-16 Akim Demaille <akim@epita.fr>
15423
15424 Make the ``Printers and Destructors'' test more verbose, taking
15425 `yacc.c''s behavior as (possibly wrong) reference.
15426
15427 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15428 instead of fprint on stdout.
15429 Set and report the last_line of the symbols.
15430 Consistently display values and locations.
15431
15432 2002-11-16 Paul Eggert <eggert@twinsun.com>
15433
15434 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15435
15436 2002-11-15 Paul Eggert <eggert@twinsun.com>
15437
15438 * tests/actions.at (Actions after errors): New test case.
15439
15440 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15441 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15442 tests/action.at, tests/calc.at, tests/conflicts.at,
15443 tests/cxx-type.at, tests/regression.at:
15444 "parse error" -> "syntax error" for POSIX compatibility.
15445 "parsing stack overflow..." -> "parser stack overflow" so
15446 that code matches Bison documentation.
15447
15448 2002-11-15 Akim Demaille <akim@epita.fr>
15449
15450 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15451 take two BRACED_CODE, not two string_content.
15452 Free the scanner's obstack when we are done.
15453 (code_content): New.
15454 * tests/calc.at: Adjust.
15455 * doc/bison.texinfo: Adjust.
15456 Also, make sure to include the `,' for these declarations.
15457
15458 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15459
15460 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15461 definition; avoids potential autoreconf problems.
15462
15463 2002-11-15 Akim Demaille <akim@epita.fr>
15464
15465 Always check the value returned by yyparse.
15466
15467 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15468 returned by yyparse.
15469 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15470 Adjust calls.
15471 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15472 returned by yyparse.
15473
15474 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15475
15476 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15477 on input.at test.
15478
15479 2002-11-14 Paul Eggert <eggert@twinsun.com>
15480
15481 * src/output.c (output_skeleton): Call xfopen instead of
15482 duplicating xfopen's body.
15483
15484 Fix bugs reported by Nelson H. F. Beebe in
15485 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
15486
15487 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15488 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15489 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15490 file twice in the grammar, as an extra check.
15491
15492 * tests/input.at (Torturing the Scanner): Surround the
15493 backslash-newline tests with "#if 0", to make it less likely that
15494 we'll run into compiler bugs. Bring back solitary \ inside
15495 comment, but add a closing comment to work around HP C bug. Don't
15496 test backslash-newline in C character constant.
15497
15498 2002-11-14 Akim Demaille <akim@epita.fr>
15499
15500 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15501 status of the compiler.
15502 Calling `exit 1' is no longer needed.
15503 Reported by Nelson H. F. Beebe.
15504
15505 2002-11-14 Akim Demaille <akim@epita.fr>
15506
15507 * tests/atlocal.in (CPPFLAGS): We have config.h.
15508 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15509 New.
15510 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15511 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15512 * tests/regression.at, tests/torture.at: Use them for all the
15513 grammars that are to be compiled.
15514 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15515 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15516 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15517
15518 2002-11-14 Akim Demaille <akim@epita.fr>
15519
15520 * doc/bison.texinfo: Various formatting changes (alignments in
15521 samples, additional @group/@end group, GCS in samples.
15522 Use @deffn instead of simple @table to define the directives,
15523 macros, variables etc.
15524
15525 2002-11-13 Paul Eggert <eggert@twinsun.com>
15526
15527 Fix some bugs reported by Albert Chin-A-Young in
15528 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
15529
15530 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
15531 -o c"; the HP C compiler chatters during compilation.
15532 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15533 * tests/headers.at (export YYLTYPE): Likewise.
15534
15535 * tests/input.at (Torturing the Scanner): Remove lines containing
15536 solitary backslashes, as they tickle a bug in the HP C compiler.
15537
15538 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15539 comments, since they're not portable. Use GNU coding style.
15540
15541 2002-11-13 Akim Demaille <akim@epita.fr>
15542
15543 * data/yacc.c: Leave bigger chunks of quoted text.
15544 (YYDSYMPRINTF): New.
15545 Use it to report symbol activities.
15546 * data/glr.c (YYDSYMPRINTF): New.
15547 Use it.
15548
15549 2002-11-12 Paul Eggert <eggert@twinsun.com>
15550
15551 Version 1.75b.
15552
15553 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15554 (yyglrReduce): Return yyok, not 0.
15555 This should avoid the enumerated-type warnings reported
15556 by Nelson H. F. Beebe in
15557 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
15558
15559 * lib/bbitset.h (BITSET_INLINE): Remove.
15560 * lib/bitset.h [! BITSET_INLINE]: Remove.
15561 (bitset_set, bitset_reset, bitset_test): Rename local vars
15562 to avoid shadowing warnings by GCC.
15563
15564 * data/glr.c (inline): Remove #define. It's the user's
15565 responsibility to #define it away, just like 'const'.
15566 This fixes one of the bugs reported by Nelson H. F. Beebe in
15567 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
15568
15569 * Makefile.maint (po-check): Scan .l and .y files instead of the
15570 .c and the .h files that they generate. This fixes the bug
15571 reported by Tim Van Holder in:
15572 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
15573 Look for N_ as well as for _. Try to avoid matching #define for
15574 N_ and _.
15575 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15576 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15577 * src/scan-gram.l: Revamp regular expressions so that " and '
15578 do not confuse xgettext.
15579
15580 * src/struniq.h (struniq_new): Do not declare the return type
15581 to be 'const'; this violates the C standard.
15582 * src/struniq.c (struniq_new): Likewise.
15583
15584 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15585
15586 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15587 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15588 linker.
15589
15590 2002-11-12 Akim Demaille <akim@epita.fr>
15591
15592 * Makefile.maint: Sync with Autoconf:
15593 (local_updates): New.
15594
15595 2002-11-12 Akim Demaille <akim@epita.fr>
15596
15597 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15598
15599 2002-11-12 Akim Demaille <akim@epita.fr>
15600
15601 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15602 locations.
15603
15604 2002-11-12 Akim Demaille <akim@epita.fr>
15605
15606 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15607 not yyvalue.
15608
15609 2002-11-12 Akim Demaille <akim@epita.fr>
15610
15611 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15612 Use it to test the GLR parser.
15613
15614 2002-11-12 Akim Demaille <akim@epita.fr>
15615
15616 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15617 defines it.
15618 * data/glr.c (yystos): New.
15619 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15620 (YYDSYMPRINT): New.
15621 (yyval): Don't define it, it is handled via M4.
15622 (yyrecoverParseError): Free verbosely the discarded symbols.
15623 * data/yacc.c (yysymprint): Remove, rather...
15624 (b4_yysymprint_generate): invoke.
15625 * data/c.m4 (b4_yysymprint_generate): New.
15626 Accept pointers as arguments, as opposed to the version from
15627 yacc.c.
15628 (b4_yydestruct_generate): Likewise.
15629 * tests/cations.at (Printers and Destructors): Use Bison directives
15630 instead of CPP macros.
15631 Don't rely on internal details.
15632
15633 2002-11-12 Akim Demaille <akim@epita.fr>
15634
15635 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15636 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15637 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15638 it against YYEMPTY and so forth), work on yytoken (i.e., set
15639 it to YYEMPTY etc.).
15640 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15641 (b4_symbol_actions): Remove.
15642 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15643 for 0, end-of-input.
15644
15645 2002-11-12 Akim Demaille <akim@epita.fr>
15646
15647 * doc/bison.texinfo (Destructor Decl): New.
15648
15649 2002-11-12 Akim Demaille <akim@epita.fr>
15650
15651 * src/tables.c (tables_generate): Use free for pointers that
15652 cannot be NULL, not XFREE.
15653 (pack_vector): Use assert, not fatal, for bound violations.
15654 * src/state.c (state_new): Likewise.
15655 * src/reader.c (reader): Likewise.
15656 * src/lalr.c (set_goto_map): Likewise.
15657 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
15658 the file name.
15659
15660 2002-11-12 Akim Demaille <akim@epita.fr>
15661
15662 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15663 Restore.
15664 * src/scan-gram.l (last_string): Is global to the file, not to
15665 yylex.
15666 * src/parse-gram.y (input): Don't append the epilogue here,
15667 (epilogue.opt): do it here, and free the scanner's obstack.
15668 * src/reader.c (epilogue_set): Rename as...
15669 (epilogue_augment): this.
15670 * data/c.m4 (b4_epilogue): Defaults to empty.
15671
15672 2002-11-12 Akim Demaille <akim@epita.fr>
15673
15674 * src/getargs.c (long_options): Remove duplicates.
15675 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15676 Remove.
15677 * doc/bison.rnh: Remove.
15678 * doc/bison.texinfo (VMS Invocation): Remove.
15679
15680 2002-11-12 Akim Demaille <akim@epita.fr>
15681
15682 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15683 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15684
15685 Use struniq for symbols.
15686
15687 * src/symtab.h (symbol_t): The tag member is a struniq.
15688 (symbol_type_set): Adjust.
15689 * src/symtab.c (symbol_new): Takes a struniq.
15690 (symbol_free): Don't free the tag member.
15691 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15692 (hash_compare_symbol, hash_symbol): these.
15693 Use the fact that tags as struniqs.
15694 (symbol_get): Use struniq_new.
15695 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15696 Returns a strniq.
15697 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15698 and type members are struniqs.
15699 * src/reader.c (get_merge_function)
15700 (grammar_current_rule_merge_set): Adjust.
15701 (TYPE, current_type): Are struniq.
15702
15703 Use struniq for file names.
15704
15705 * src/files.h, src/files.c (infile): Split into...
15706 (grammar_file, current_file): these.
15707 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15708 * src/reduce.c (reduce_print): Likewise.
15709 * src/getargs.c (getargs): Likewise.
15710 * src/complain.h, src/complain.c: Likewise.
15711 * src/main.c (main): Call struniqs_new early enough to use it for
15712 file names.
15713 Don't free the input file name.
15714
15715 2002-11-12 Akim Demaille <akim@epita.fr>
15716
15717 * src/symtab.c (symbol_free): Remove dead deactivated code:
15718 type_name are properly removed.
15719 Don't use XFREE to free items that cannot be NULL.
15720 * src/struniq.h, src/struniq.c: New.
15721 * src/main.c (main): Initialize/free struniqs.
15722 * src/parse-gram.y (%union): Add astruniq member.
15723 (yyprint): Adjust.
15724 * src/scan-gram.l (<{tag}>): Return a struniq.
15725 Free the obstack bit that used to store it.
15726 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15727
15728 2002-11-11 Paul Eggert <eggert@twinsun.com>
15729
15730 Revamp to fix many (but not all) of the C- and M4-related quoting
15731 problems. Among other things, this fixes the Bison bug reported
15732 by Jan Hubicka when processing the Bash grammar; see:
15733 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
15734
15735 Use new @ escapes consistently. Represent brackets with @{ and @}
15736 rather than @<:@ and @:>@, since this works a bit better with dumb
15737 editors like vi. Represent @ with @@, since @ is now consistently
15738 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15739 __ofile__, to avoid unexpected expansions. Similarly, use @output
15740 rather than #output.
15741
15742 * data/c.m4 (b4_copyright): Omit file name from comment, since
15743 the file name could contain "*/".
15744 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15745 be quoted. All uses changed.
15746
15747 * data/glr.c: Use new @ escapes consistently.
15748 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15749 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15750 Remove, since they couldn't handle arbitrary characters in file
15751 names.
15752 * data/lalr1.cc: Likewise.
15753 * data/yacc.c: Likewise.
15754
15755 * src/files.c (output_infix): Remove; all uses removed.
15756 * src/files.h: Likewise.
15757
15758 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15759 mishandled funny characters in file names, and anyway it isn't
15760 needed any more.
15761 * data/yacc.c: Likewise.
15762 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15763
15764 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15765 * data/yacc.c: Likewise.
15766
15767 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15768 strings now.
15769 (muscle_init): Quote filename as a C string.
15770 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15771 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15772 * src/output.c (escaped_file_name_output): New function.
15773 (prepare_symbols): Quote tokens for M4.
15774 (prepare): Don't insert output_infix, output_prefix,
15775 output_parser_name, output_header_name; this is now down by scan-skel.
15776 Insert skeleton as a C string.
15777
15778 * src/output.c (user_actions_output, symbol_destructors_output,
15779 symbol_printers_output): Quote filenames for C and M4.
15780 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15781
15782 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15783 escapes other than \\ and \'; this simplifies the code.
15784 (<SC_STRING>): Likewise, for \\ and \".
15785 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15786 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15787 Use new escapes @{ and @} for [ and ].
15788
15789 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15790 them with auto vars.
15791 Switch to new escape scheme, where @ is the escape character uniformly.
15792 Abort if a stray escape character is found. Avoid unbounded input
15793 buffer when parsing non-escaped text.
15794
15795 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15796 __oline__, #output, $@, and @{ do not have unintended meanings.
15797
15798 2002-11-09 Paul Eggert <eggert@twinsun.com>
15799
15800 Fix the test failure due to GCC warnings described in
15801 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
15802 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15803 evaluate to 0 if it's impossible for NINF to be in the respective
15804 table.
15805 (yygetLRActions, yyrecoverParseError): Use them.
15806
15807 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15808 counted in the token inserted at end of file. Now takes
15809 location_t *, not location_t, so that the location can be
15810 adjusted. All uses changed.
15811
15812 * tests/regression.at (Invalid inputs): Adjust wording in
15813 diagnostic to match the new behavior.
15814
15815 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15816 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15817 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15818 abort ();'. This reduces the runtime of the "Many lookaheads"
15819 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15820 GCC 3.2.
15821
15822 2002-11-07 Paul Eggert <eggert@twinsun.com>
15823
15824 * src/parse-gram.y (CHARACTER): Remove unused token.
15825 All uses removed.
15826
15827 * src/scan-gram.l: Remove stack option. We no longer use the
15828 stack, since the stack was never deeper than 1; instead, use the
15829 new auto var c_context to record the stacked value.
15830
15831 Remove nounput option. At an unexpected end of file, we now unput
15832 the minimal input necessary to end cleanly; this simplifies the
15833 code.
15834
15835 Avoid unbounded token sizes where this is easy.
15836
15837 (unexpected_end_of_file): New function.
15838 Use it to systematize the error message on unexpected EOF.
15839 (last-string): Now auto, not static.
15840 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15841 (scanner_last_string_free): Remove; not used.
15842 (percent_percent_count): Move decl to just before use.
15843 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15844 not the (never otherwised-used) CHARACTER.
15845
15846 2002-11-07 Akim Demaille <akim@epita.fr>
15847
15848 Let yyerror always receive the msg as last argument, so that
15849 yyerror can be variadic.
15850
15851 * data/yacc.c (b4_yyerror_args): New.
15852 Use it when calling yyerror.
15853 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15854 Use it when calling yyerror.
15855 * doc/bison.texinfo (Error Reporting): Adjust.
15856 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15857 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15858
15859 2002-11-06 Akim Demaille <akim@epita.fr>
15860
15861 #line should have quoted strings.
15862 Ideally, this should be done by m4_quotearg.
15863
15864 * src/scan-skel.l: Include quotearg.h.
15865 Quote __ofile__.
15866 * src/output.c (symbol_printers_output)
15867 (symbol_destructors_output): Quote the file name.
15868
15869 2002-11-06 Akim Demaille <akim@epita.fr>
15870
15871 * tests/regression.at (Invalid inputs): Adjust to the recent
15872 messages.
15873
15874 2002-11-06 Akim Demaille <akim@epita.fr>
15875
15876 Restore --no-lines.
15877 Reported by Jim Kent.
15878
15879 * data/c.m4 (b4_syncline): New.
15880 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15881 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15882 * src/output.c (user_actions_output): Likewise.
15883 (prepare): Define 'b4_synclines_flag'.
15884 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
15885
15886 2002-11-06 Akim Demaille <akim@epita.fr>
15887
15888 * src/main.c (main): Free `infile'.
15889 * src/scan-gram.l (handle_syncline): New.
15890 Recognize `#line'.
15891 * src/output.c (user_actions_output, symbol_destructors_output)
15892 (symbol_printers_output): Use the location's file name, not
15893 infile.
15894 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15895
15896 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15897
15898 * src/tables.c (matching_state): Don't allow states to match if
15899 either has GLR conflict entries.
15900
15901 2002-11-05 Paul Eggert <eggert@twinsun.com>
15902
15903 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15904 "integer out of range" rather than "invalid value".
15905 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15906 accordingly.
15907
15908 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15909 Also, remove one static variable in the scanner.
15910
15911 * src/scan-gram.l (braces_level): Now auto, not static.
15912 Initialize to zero if the compiler is being picky.
15913 (INITIAL): Clear braces_level instead of incrementing it.
15914 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
15915 as POSIX 1003.1-2001 requires.
15916 * src/system.h (IF_LINT): New macro, taken from coreutils.
15917 * configure.ac: Define "lint" if --enable-gcc-warnings.
15918
15919 2002-11-05 Akim Demaille <akim@epita.fr>
15920
15921 * src/scan-gram.l: When it starts with `%', complain about the
15922 whole directive, not just that `invalid character: %'.
15923
15924 2002-11-04 Akim Demaille <akim@epita.fr>
15925
15926 * Makefile.maint: Update from Autoconf.
15927 (update, cvs-update, po-update, do-po-update): New.
15928
15929 2002-11-04 Akim Demaille <akim@epita.fr>
15930
15931 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
15932 and yyerror.
15933 Have yyerror `use' its arguments.
15934 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
15935 returns true when location & yacc & pure & parse-param.
15936 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
15937
15938 2002-11-04 Akim Demaille <akim@epita.fr>
15939
15940 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
15941 clashes.
15942 * src/scan-gram.l: Use [\'] instead of ['] to pacify
15943 font-lock-mode.
15944 Use complain_at.
15945 Use quote, not quote_n since LOCATION_PRINT no longer uses the
15946 slot 0.
15947
15948 2002-11-03 Paul Eggert <eggert@twinsun.com>
15949
15950 * src/reader.c (get_merge_function, grammar_current_rule_check):
15951 Use consistent diagnostics for reporting type name clashes.
15952 Quote the types with <>, for consistency with Yacc.
15953 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
15954
15955 2002-11-03 Akim Demaille <akim@epita.fr>
15956
15957 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
15958 New.
15959 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
15960 (b4_parse_param): Remove.
15961 Use b4_identification.
15962 Propagate b4_pure_args where needed to pass them to yyerror.
15963 * data/glr.m4 (b4_parse_param): Remove.
15964 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
15965 (b4_lpure_formals): New.
15966 Use b4_identification.
15967 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
15968 b4_user_formals and b4_user_args.
15969 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
15970 (yyreportAmbiguity): When using a pure parser, also need
15971 the location, and the parse-params.
15972 Adjust callers.
15973 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
15974 When using a pure parser, also need the parse-params.
15975 Adjust callers.
15976 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
15977 (%pure-parser + %parse-param) LALR and GLR parsers.
15978 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
15979 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
15980 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
15981 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
15982 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
15983 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
15984 * doc/bison.texinfo: Untabify the whole file.
15985 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
15986 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
15987 (Error Reporting): Adjust to these new directives.
15988 Document %error-verbose, deprecate YYERROR_VERBOSE.
15989
15990 2002-11-03 Akim Demaille <akim@epita.fr>
15991
15992 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
15993 AT_CHECK_CALC_GLR invocations to use % directives, instead of
15994 command line options.
15995 * tests/cxx-type.at: Formatting changes.
15996
15997 2002-11-03 Paul Eggert <eggert@twinsun.com>
15998
15999 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16000 to count columns correctly, and to check for invalid inputs.
16001
16002 Use mbsnwidth to count columns correctly. Account for tabs, too.
16003 Include mbswidth.h.
16004 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16005 (extend_location): New function.
16006 (YY_LINES): Remove.
16007
16008 Handle CRLF in C code rather than in Lex code.
16009 (YY_INPUT): New macro.
16010 (no_cr_read): New function.
16011
16012 Scan UCNs, even though we don't fully handle them yet.
16013 (convert_ucn_to_byte): New function.
16014
16015 Handle backslash-newline correctly in C code.
16016 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16017 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16018 all uses changed.
16019 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16020 Use {splice} wherever C allows backslash-newline.
16021 YY_STEP after space, newline, vertical-tab.
16022 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
16023
16024 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16025
16026 ({int}, handle_action_dollar, handle_action_at): Check for integer
16027 overflow.
16028
16029 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16030
16031 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16032 as well as \000. Check for UCHAR_MAX, not 255.
16033 Allow \x with an arbitrary positive number of digits, as in C.
16034 Check for overflow here.
16035 Allow \? and UCNs, for compatibility with C.
16036
16037 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16038 with quote slot used by complain_at.
16039
16040 * tests/input.at: Add tests for backslash-newline, m4 quotes
16041 in symbols, long literals, and funny escapes in strings.
16042
16043 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16044 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16045 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16046 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16047 * m4/mbswidth.m4: New file, from GNU coreutils.
16048
16049 * doc/bison.texinfo (Grammar Outline): Document // comments.
16050 (Symbols): Document that trigraphs have no special meaning in Bison,
16051 nor is backslash-newline allowed.
16052 (Actions): Document that trigraphs have no special meaning.
16053
16054 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16055 no longer used.
16056
16057 2002-11-02 Paul Eggert <eggert@twinsun.com>
16058
16059 * src/reader.c: Don't include quote.h; not needed.
16060 (get_merge_function): Reword warning to be consistent with
16061 type clash diagnostic in grammar_current_rule_check.
16062
16063 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16064 bug in trigraph handling.
16065
16066 * src/output.c (prepare_symbols): When printing token names,
16067 escape "[" as "@<:@" and likewise for "]".
16068
16069 * src/system.h (errno): Remove declaration, as we are now
16070 assuming C89 or better, and C89 guarantees errno.
16071
16072 2002-10-30 Paul Eggert <eggert@twinsun.com>
16073
16074 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16075 Check for close failures.
16076 * src/files.h (xfclose): Return void, not int, since it always
16077 returned zero.
16078 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16079 indicates one.
16080 * src/output.c (output_skeleton): Use xfclose rather than fclose
16081 and ferror. xfclose now checks ferror.
16082
16083 * data/glr.c (YYLEFTMOST_STATE): Remove.
16084 (yyreportTree): Use a stack-based leftmost state. This avoids
16085 our continuing battles with bogus warnings about initializers.
16086
16087 2002-10-30 Akim Demaille <akim@epita.fr>
16088
16089 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16090 #if.
16091
16092 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16093
16094 * tests/glr-regr1.at: New test for reported regressions.
16095 * tests/testsuite.at: Add glr-regr1.at test.
16096 * tests/Makefile.am: Add glr-regr1.at test.
16097
16098 2002-10-24 Paul Eggert <eggert@twinsun.com>
16099
16100 Version 1.75a.
16101
16102 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16103 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16104 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16105 Don't assume strdup exists; POSIX says its an XSI extension.
16106 Check for buffer overflow on input.
16107
16108 2002-10-24 Akim Demaille <akim@epita.fr>
16109
16110 * src/output.c (output_skeleton): Don't disable M4sugar comments
16111 too soon: it results in comments being expanded.
16112 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16113 first output.
16114
16115 2002-10-24 Akim Demaille <akim@epita.fr>
16116
16117 * data/yacc.c (m4_int_type): New.
16118 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16119 char' as only yacc.c wants K&R portability.
16120 * data/glr.c (yysigned_char): Remove.
16121 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16122 Reported by Quoc Peyrot.
16123
16124 2002-10-23 Paul Eggert <eggert@twinsun.com>
16125
16126 * src/main.c (main): With --trace=time, report times even if a
16127 non-fatal error occurs. Formerly, the times were reported in some
16128 such cases but not in others.
16129 * src/reader.c (reader): Just return if a complaint has been issued,
16130 instead of exiting, so that 'main' can report times.
16131
16132 2002-10-22 Akim Demaille <akim@epita.fr>
16133
16134 * src/system.h: Include sys/types.
16135 Reported by Bert Deknuydt.
16136
16137 2002-10-23 Paul Eggert <eggert@twinsun.com>
16138
16139 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16140 Suggested by Art Haas.
16141
16142 2002-10-22 Paul Eggert <eggert@twinsun.com>
16143
16144 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16145 decl; not needed any more.
16146 * src/main.c (main): Use return to exit, undoing yesterday's change.
16147 The last OS that we could find where this wouldn't work is
16148 SunOS 3.5, and that's too old to worry about now.
16149
16150 * data/glr.c (struct yyltype): Define members even when not
16151 doing locations. This is more consistent with yacc.c, and it
16152 works around the following bug reports:
16153 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16154 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
16155
16156 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16157 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16158 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16159
16160 2002-10-22 Akim Demaille <akim@epita.fr>
16161
16162 * data/README: New.
16163
16164 2002-10-21 Paul Eggert <eggert@twinsun.com>
16165
16166 Be consistent about 'bool'; the old code used an enum in one
16167 module and an int in another, and this violates the C standard.
16168 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16169 * configure.ac (AC_HEADER_STDBOOL): Add.
16170 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16171 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16172 * src/symtab.c (hash_compare_symbol_t): Likewise.
16173 * src/system.h (bool, false, true): Use a definition consistent
16174 with ../lib/hash.c. All uses changed.
16175
16176 * src/complain.c (warning_issued): Renamed from warn_message_count,
16177 so that we needn't worry about integer overflow (!).
16178 Now of type bool. All uses changed.
16179 (complaint_issued): Renamed from complain_message_count; likewise.
16180
16181 * src/main.c (main): Use exit to exit with failure.
16182
16183 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16184 rather than 1 and 0.
16185 * src/main.c (main): Likewise.
16186 * src/getargs.c (getargs): Likewise.
16187 * src/reader.c (reader): Likewise.
16188
16189 * src/getarg.c (getargs): Remove duplicate code for
16190 "Try `bison --help'".
16191
16192 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16193 What was that "2" for?
16194
16195 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16196 * src/getargs.c (usage): Likewise.
16197
16198 * src/getargs.c (getargs): When there are too few operands, report
16199 the last one. When there are too many, report the first extra
16200 one. This is how diffutils does it.
16201
16202 2002-10-20 Paul Eggert <eggert@twinsun.com>
16203
16204 Remove K&R vestiges.
16205 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16206 * src/complain.c (VA_START): Remove. Assume prototypes.
16207 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16208 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16209 fatal): Assume prototypes.
16210 * src/complain.h: Assume prototypes.
16211 * src/system.h (PARAMS): Remove.
16212 Include <limits.h> unconditionally, since it's guaranteeed even
16213 for a freestanding C89 compiler.
16214 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16215 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
16216
16217 2002-10-20 Akim Demaille <akim@epita.fr>
16218
16219 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16220 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16221 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16222 (yyresolveStates, yyresolveAction, yyresolveStack)
16223 (yyprocessOneStack): Use them.
16224 (yy_reduce_print): New.
16225 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16226
16227 2002-10-20 Akim Demaille <akim@epita.fr>
16228
16229 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16230 arguments and output `void'.
16231 (b4_c_function): Rename as...
16232 (b4_c_function_def): this.
16233 (b4_c_function_decl, b4_c_ansi_function_def)
16234 (b4_c_ansi_function_decl): New.
16235 Change the interpretation of the arguments: before `int, foo', now
16236 `int foo, foo'.
16237 * data/yacc.c (yyparse): Prototype and define thanks to these.
16238 Adjust b4_c_function_def uses.
16239 * data/glr.c (yyparse): Likewise, but ANSI only.
16240
16241 2002-10-20 Akim Demaille <akim@epita.fr>
16242
16243 * src/output.c (prepare): Move the definition of `tokens_number',
16244 `nterms_number', `undef_token_number', `user_token_number_max'
16245 to...
16246 (prepare_tokens): Here.
16247 (prepare_tokens): Rename as...
16248 (prepare_symbols): this.
16249 (prepare): Move the definition of `rules_number' to...
16250 (prepare_rules): here.
16251 (prepare): Move the definition of `last', `final_state_number',
16252 `states_number' to...
16253 (prepare_states): here.
16254 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16255
16256 2002-10-20 Akim Demaille <akim@epita.fr>
16257
16258 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16259
16260 2002-10-20 Akim Demaille <akim@epita.fr>
16261
16262 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16263 * data/c.m4: here.
16264
16265 2002-10-20 Akim Demaille <akim@epita.fr>
16266
16267 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16268 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16269 `pair'.
16270 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16271 `name' to...
16272 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16273 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16274 These.
16275
16276 2002-10-19 Paul Eggert <eggert@twinsun.com>
16277
16278 Do not create a temporary file, as that involves security and
16279 cleanup headaches. Instead, use a pair of pipes.
16280 Derived from a suggestion by Florian Krohm.
16281 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16282 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16283 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16284 (BISON_PREREQ_SUBPIPE): Add.
16285 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16286 Add subpipe.h, subpipe.c.
16287 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16288 * po/POTFILES.in: Add lib/subpipe.c.
16289 * src/output.c: Include "subpipe.h".
16290 (m4_invoke): Remove decl.
16291 (scan_skel): New decl.
16292 (output_skeleton): Use pipe rather than temporary file for m4 input.
16293 Check that m4sugar.m4 is readable, to avoid deadlock.
16294 Check for pipe I/O error.
16295 * src/scan-skel.l (readpipe): Remove decl.
16296 (scan_skel): New function, to be used in place of m4_invoke.
16297 Read from stream rather than file.
16298
16299 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16300 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16301 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16302 this generates a more-accurate value anyway.
16303
16304 * lib/timevar.c (timervar_accumulate): Rename locals to
16305 avoid confusion with similarly-named more-global.
16306 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16307
16308 * src/output.c (prepare): Use xstrdup to convert char const *
16309 to char *, to avoid GCC warning.
16310
16311 2002-10-19 Akim Demaille <akim@epita.fr>
16312
16313 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16314 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16315 Use them to have `calc.y' ready for %pure-parser.
16316 * data/yacc.c (YYLEX): Pass a yylex return type to
16317 b4_c_function_call.
16318
16319 2002-10-19 Akim Demaille <akim@epita.fr>
16320
16321 Prototype support of %lex-param and %parse-param.
16322
16323 * src/parse-gram.y: Add the definition of the %lex-param and
16324 %parse-param tokens, plus their rules.
16325 Drop the `_' version of %glr-parser.
16326 Add the "," token.
16327 * src/scan-gram.l (INITIAL): Scan them.
16328 * src/muscle_tab.c: Comment changes.
16329 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16330 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16331 (muscle_entry_s): The `value' member is no longer const.
16332 Adjust all dependencies.
16333 * src/muscle_tab.c (muscle_init): Adjust: use
16334 MUSCLE_INSERT_STRING.
16335 Initialize the obstack earlier.
16336 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16337 (muscle_pair_list_grow): New.
16338 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16339 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16340 * tests/calc.at: Use %locations, not --locations.
16341 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16342
16343 2002-10-19 Akim Demaille <akim@epita.fr>
16344
16345 * src/getargs.c (usage): Take status as argument and exit
16346 accordingly.
16347 Report the traditional `Try ... --help' message when status != 0.
16348 (usage, version): Don't take a FILE * as arg, it is pointless.
16349 (getargs): When there is an incorrect number of arguments, make it
16350 an error, and report it GNUlically thanks to `usage ()'.
16351
16352 2002-10-18 Paul Eggert <eggert@twinsun.com>
16353
16354 * data/glr.c (yyreportParseError): Don't assume that sprintf
16355 yields the length of the printed string, as this is not true
16356 on SunOS 4.1.4. Reported by Peter Klein.
16357
16358 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16359 * tests/conflicts.at (%nonassoc and eof): Likewise.
16360 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16361
16362 2002-10-17 Akim Demaille <akim@epita.fr>
16363
16364 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16365 * src/getargs.c (trace_types, trace_args): Adjust.
16366 * src/reader.c (grammar_current_rule_prec_set)
16367 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16368 Standardize error messages.
16369 And s/@prec/%prec/!
16370 (reader): Use trace_flag to enable scanner/parser debugging,
16371 instead of an adhoc scheme.
16372 * src/scan-gram.l: Remove trailing debugging code.
16373
16374 2002-10-16 Paul Eggert <eggert@twinsun.com>
16375
16376 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16377 MUSCLE_TAB_H.
16378
16379 * NEWS: Officially drop support for building Bison with K&R C,
16380 since it didn't work anyway and it's not worth worrying about.
16381 * Makefile.maint (wget_files): Remove ansi2knr.c.
16382 (ansi2knr.c-url_prefix): Remove.
16383 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16384 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16385 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16386
16387 2002-10-15 Paul Eggert <eggert@twinsun.com>
16388
16389 Stop using the "enum_" trick for K&R-style function definitions;
16390 it confused me, and I was the author! Instead, assume that people
16391 who want to use K&R C compilers (when using these modules in GCC,
16392 perhaps?) will run ansi2knr.
16393
16394 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16395 All uses of "enum_" changed to "enum ".
16396 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16397 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16398
16399 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16400 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16401 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16402 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16403 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16404 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16405 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16406 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16407 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16408 Use function prototypes; this removes the need for declaring
16409 static functions simply to provide their prototypes.
16410 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16411 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16412 bitset_count_, bitset_create, bitset_dump, bitset_first,
16413 bitset_free, bitset_init, bitset_last, bitset_next,
16414 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16415 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16416 bitset_print, bitset_release_memory, bitset_toggle_,
16417 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16418 debug_bitset): Likewise.
16419 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16420 * lib/bitset_stats.c (bitset_log_histogram_print,
16421 bitset_percent_histogram_print, bitset_stats_and,
16422 bitset_stats_and_cmp, bitset_stats_and_or,
16423 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16424 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16425 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16426 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16427 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16428 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16429 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16430 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16431 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16432 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16433 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16434 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16435 bitset_stats_zero): Likewise.
16436 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16437 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16438 bitsetv_dump, debug_bitsetv): Likewise.
16439 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16440 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16441 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16442 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16443 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16444 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16445 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16446 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16447 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16448 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16449 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16450 Likewise.
16451 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16452 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16453 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16454 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16455 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16456 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16457 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16458 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16459 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16460 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16461 lbitset_xor_cmp, lbitset_zero): Likewise.
16462
16463 2002-10-14 Akim Demaille <akim@epita.fr>
16464
16465 Version 1.75.
16466
16467 2002-10-14 Akim Demaille <akim@epita.fr>
16468
16469 * tests/Makefile.am (maintainer-check-posix): New.
16470
16471 2002-10-14 Akim Demaille <akim@epita.fr>
16472
16473 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16474 member.
16475
16476 2002-10-14 Akim Demaille <akim@epita.fr>
16477
16478 * src/tables.c (table_ninf_remap): base -> tab.
16479 Reported by Matt Rosing.
16480
16481 2002-10-14 Paul Eggert <eggert@twinsun.com>
16482
16483 * tests/action.at, tests/calc.at, tests/conflicts.at,
16484 tests/cxx-type.at, tests/headers.at, tests/input.at,
16485 tests/regression.at, tests/synclines.at, tests/torture.at:
16486 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16487 so that the tests still work even if POSIXLY_CORRECT is set.
16488 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
16489
16490 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16491 for portability to K&R hosts. Fix typo: signed char is guaranteed
16492 only to 127, not to 128.
16493 * data/glr.c (yysigned_char): New type.
16494 * data/yacc.c (yysigned_char): Likewise.
16495 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16496
16497 2002-10-13 Paul Eggert <eggert@twinsun.com>
16498
16499 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16500 true due to limited range of data type" warning from GCC.
16501
16502 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16503 by wrapping enum yytokentype's definition inside #ifndef
16504 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16505
16506 2002-10-13 Akim Demaille <akim@epita.fr>
16507
16508 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16509 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16510
16511 2002-10-13 Akim Demaille <akim@epita.fr>
16512
16513 * Makefile.maint: Update from Autoconf 2.54.
16514 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16515
16516 2002-10-13 Akim Demaille <akim@epita.fr>
16517
16518 * src/print.c (print_state): Separate the list of solved conflicts
16519 from the other items.
16520 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16521
16522 2002-10-13 Akim Demaille <akim@epita.fr>
16523
16524 Let nondeterministic skeletons be usable with deterministic
16525 tables.
16526
16527 With the patch, GAWK compiled by GCC without -O2 passes its test
16528 suite using a GLR parser driven by LALR tables. It fails with -O2
16529 because `struct stat' gives two different answers on my machine:
16530 88 (definition of an auto var) and later 96 (memset on this var).
16531 Hence the stack is badly corrumpted. The headers inclusion is to
16532 blame: if I move the awk.h inclusion before GLR's system header
16533 inclusion, the two struct stat have the same size.
16534
16535 * src/tables.c (pack_table): Always create conflict_table.
16536 (token_actions): Always create conflict_list.
16537 * data/glr.c (YYFLAG): Remove, unused.
16538
16539 2002-10-13 Akim Demaille <akim@epita.fr>
16540
16541 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16542 (O0FLAGS): New.
16543 (VALGRIND, GXX): New.
16544 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16545 * tests/bison.in: Run $PREBISON a pre-command.
16546 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16547 (maintainer-check-g++): New.
16548 * Makefile.am (maintainer-check): New.
16549
16550 2002-10-13 Akim Demaille <akim@epita.fr>
16551
16552 * data/glr.c: Formatting changes.
16553 Tweak some trace messages to match yacc.c's.
16554
16555 2002-10-13 Akim Demaille <akim@epita.fr>
16556
16557 GLR parsers sometimes raise parse errors instead of performing the
16558 default reduction.
16559 Reported by Charles-Henry de Boysson.
16560
16561 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
16562 check the length of the traces when %glr.
16563 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16564 GLR's traces.
16565 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16566 Test GLR parsers.
16567 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16568 (yyltype): Remove the yy prefix from the member names.
16569 (yytable): Complete its comment.
16570 (yygetLRActions): Map error action number from YYTABLE from
16571 YYTABLE_NINF to 0.
16572 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16573 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16574 not satisfying as we could compare an YYACTION computed from
16575 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16576 only value for error actions.
16577 (yyreportParseError): In verbose parse error messages, don't issue
16578 `error' in the list of expected tokens.
16579 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16580 next action to perform to match glr.c's decoding.
16581 (yytable): Complete its comment.
16582
16583 2002-10-13 Paul Eggert <eggert@twinsun.com>
16584
16585 Fix problem reported by Henrik Grubbstroem in
16586 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
16587 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16588 because the Bison parser reads the second action before reducing
16589 the first one.
16590 * src/scan-gram.l (rule_length): New static var.
16591 Use it to keep track of the rule length in the scanner, since
16592 we can't expect the parser to be in lock-step sync with the scanner.
16593 (handle_action_dollar, handle_action_at): Use this var.
16594 * tests/actions.at (Exotic Dollars): Test for the problem.
16595
16596 2002-10-12 Paul Eggert <eggert@twinsun.com>
16597
16598 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16599 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16600 Include <sys/time.h> when checking for clock_t and struct tms.
16601 Use same include order as source.
16602 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
16603 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
16604
16605 * lib/timevar.c: Update copyright date and clarify comments.
16606 (get_time) [IN_GCC]: Keep the GCC version for reference.
16607
16608 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16609 GCC version as of today, then merge Bison's changes.
16610 Change "GCC" to "Bison" in copyright notice. timevar.def's
16611 author is Akim, so change that too.
16612
16613 * src/reader.c (grammar_current_rule_check):
16614 Don't worry about the default action if $$ is untyped.
16615 Prevents bogus warnings reported by Jim Gifford in
16616 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
16617
16618 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16619 * data/glr.c, data/lalr1.cc, data/yacc.c:
16620 Output token definitions before the first part of user declarations.
16621 Fixes compatibility problem reported by Jim Gifford for kbd in
16622 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
16623
16624 2002-10-11 Paul Eggert <eggert@twinsun.com>
16625
16626 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16627 (yyparse): here. This undoes some of the 2002-07-25 change.
16628 Compatibility problem reported by Ralf S. Engelschall with
16629 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16630
16631 2002-10-11 Akim Demaille <akim@epita.fr>
16632
16633 * tests/regression.at Characters Escapes): New.
16634 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16635 characters.
16636 Reported by Jan Nieuwenhuizen.
16637
16638 2002-10-11 Akim Demaille <akim@epita.fr>
16639
16640 * po/id.po: New.
16641
16642 2002-10-10 Paul Eggert <eggert@twinsun.com>
16643
16644 Portability fixes for bitsets; this also avoids several GCC
16645 warnings.
16646
16647 * lib/abitset.c: Include <stddef.h>, for offsetof.
16648 * lib/lbitset.c: Likewise.
16649
16650 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16651 properly for vectors of objects. Do not assume that adding a
16652 header size to a multiple of a word size yields a value that is
16653 properly aligned for the whole union.
16654 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16655
16656 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16657 unique names for structures.
16658 * lib/ebitset.c (ebitset_bytes): Likewise.
16659 * lib/lbitset.c (lbitset_bytes): Likewise.
16660
16661 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16662 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16663 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16664 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16665 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16666 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16667 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16668 to improve the type-checking that GCC can do.
16669 * lib/bitset.c (bitset_op4_cmp): Likewise.
16670 * lib/bitset_stats.c (bitset_stats_count,
16671 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16672 bitset_stats_copy, bitset_stats_disjoint_p,
16673 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16674 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16675 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16676 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16677 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16678 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16679 bitset_stats_or_and_cmp): Likewise.
16680 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16681 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16682 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16683 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16684
16685 * lib/abitset.h: Include bitset.h, not bbitset.h.
16686 * lib/ebitset.h: Likewise.
16687 * lib/lbitset.h: Likewise.
16688
16689 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16690 All instances of parameters of type enum bitset_opts are now of
16691 type enum_bitset_opts, to conform to the C Standard, and similarly
16692 for enum_bitset_type.
16693 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16694 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16695
16696 Do not use "struct bitset_struct" to mean different things in
16697 different modules. Not only is this confusing, it violates
16698 the C Standard, which requires that structure types in different
16699 modules must be compatible if one is to be passed to the other.
16700 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16701 All instances of "struct bitset_struct *" replaced with "bitset".
16702 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16703 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16704 struct lbitset_struct, struct bitset_stats_struct): New types.
16705 All uses of struct bitset_struct changed to union bitset_union,
16706 etc.
16707 * lib/abitset.c (struct abitset_struct, abitset,
16708 struct bitset_struct): Remove.
16709 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16710 struct bitset_struct): Remove.
16711 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16712 bitset_struct): Remove.
16713 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16714 Likewise.
16715
16716 Do not call a function of type T using a call that assumes the
16717 function is of a different type U. Standard C requires that a
16718 function must be called with a type that is compatible with its
16719 definition.
16720 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16721 New decls.
16722 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16723 New functions.
16724 * lib/ebitset.c (PFV): Remove.
16725 * lib/lbitset.c (PFV): Likewise.
16726 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16727 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16728 decls.
16729 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16730 (ebitset_vtable): Use them.
16731 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16732 lbitset_xor): New functions.
16733 (lbitset_vtable): Use them.
16734
16735 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16736 Declare.
16737
16738 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16739 GCC warning.
16740 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16741 Use offsetof, for simplicity.
16742
16743 2002-10-06 Paul Eggert <eggert@twinsun.com>
16744
16745 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16746 the same width as int. This reapplies a hunk of the 2002-08-12 patch
16747 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
16748 which was inadvertently undone by the 2002-09-30 patch.
16749 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16750 the same width as int.
16751
16752 2002-10-04 Paul Eggert <eggert@twinsun.com>
16753
16754 Version 1.50.
16755
16756 * configure.ac (AC_INIT), NEWS: Increment version number.
16757
16758 * doc/bison.texinfo: Minor spelling, grammar, and white space
16759 fixes.
16760 (Symbols): Mention that any negative value returned from yylex
16761 signifies end-of-input. Warn about negative chars. Mention
16762 the portable Standard C character set.
16763
16764 The GNU coding standard says CFLAGS and YFLAGS are reserved
16765 for the installer to set.
16766 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16767 * src/Makefile.am (AM_CFLAGS): Likewise.
16768 (AM_YFLAGS): Renamed from YFLAGS.
16769
16770 Fix some MAX and MIN problems.
16771 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16772 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16773 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16774 * src/reader.c (reader): Use it.
16775
16776 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16777 POSIX 1003.1-2001 has removed fgrep.
16778
16779 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16780
16781 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16782 interpreted as signed.
16783 * lib/ebitset.c (ebitset_list): Fix bug.
16784
16785 2002-10-01 Paul Eggert <eggert@twinsun.com>
16786
16787 More fixes for 64-bit hosts and large bitsets.
16788
16789 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16790 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16791 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16792 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16793 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16794 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16795 bitset_count_): Likewise.
16796 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16797 bitset_first, bitset_last): Likewise.
16798 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16799 bitset_stats_list_reverse, bitset_stats_size,
16800 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16801 Likewise.
16802 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16803 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16804 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16805 bitsetv_reflexive_transitive_closure): Likewise.
16806 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16807 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16808 Likewise.
16809 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16810 Likewise.
16811
16812 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16813 Use size_t, not unsigned int, to count bytes.
16814 * lib/abitset.h (abitset_bytes): Likewise.
16815 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16816 Likewise.
16817 * lib/bitset.h (bitset_bytes): Likewise.
16818 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16819 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16820 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16821 * lib/ebitset.c (ebitset_bytes): Likewise.
16822 * lib/ebitset.h (ebitset_bytes): Likewise.
16823 * lib/lbitset.c (lbitset_bytes): Likewise.
16824 * lib/lbitset.h (lbitset_bytes): Likewise.
16825
16826 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16827 abitset_subset_p, abitset_disjoint_p, abitset_and,
16828 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16829 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16830 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16831 abitset_or_and, abitset_or_and_cmp):
16832 Use bitset_windex instead of unsigned int.
16833 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16834 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16835 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16836 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16837 Likewise.
16838 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
16839
16840 * lib/bitset.c (bitset_print):
16841 Use proper printf formats for widths of integer types.
16842 * lib/bitset_stats.c (bitset_percent_histogram_print,
16843 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16844 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16845 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16846 * lib/lbitset.c (lbitset_bytes): Likewise.
16847
16848 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16849 BITSET_SIZE_MAX): New macros.
16850 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16851 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16852 to BITSET_WINDEX_MAX.
16853
16854 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16855 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16856 since we now return the bitset_bindex type (not int).
16857
16858 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16859 when computing sizes.
16860 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16861
16862 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16863 and avoid cast to unsigned.
16864
16865 2002-09-30 Akim Demaille <akim@epita.fr>
16866
16867 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16868 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16869 Updates from Michael Hayes.
16870
16871 2002-09-30 Art Haas <ahaas@neosoft.com>
16872
16873 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16874 invocations.
16875 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16876 defined.
16877
16878 2002-09-27 Akim Demaille <akim@epita.fr>
16879
16880 Version 1.49c.
16881
16882 2002-09-27 Akim Demaille <akim@epita.fr>
16883
16884 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16885 (Because of AC_LIBSOURCE).
16886
16887 2002-09-27 Akim Demaille <akim@epita.fr>
16888
16889 Playing with Autoscan.
16890
16891 * configure.ac: Remove the old LIBOBJ tweaks.
16892 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16893 * lib/strrchr.c: New.
16894 * lib/strtol.c: New, from the Coreutils 4.5.1.
16895
16896 2002-09-27 Akim Demaille <akim@epita.fr>
16897
16898 Playing with Autoscan.
16899
16900 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16901 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16902 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16903 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16904 Coreutils 4.5.1.
16905
16906 2002-09-24 Akim Demaille <akim@epita.fr>
16907
16908 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16909 (Frequently Asked Questions, Parser Stack Overflow): New.
16910
16911 2002-09-13 Akim Demaille <akim@epita.fr>
16912
16913 Playing with autoscan.
16914
16915 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
16916 * src/files.c (skeleton_find): Remove, unused.
16917 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
16918 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
16919
16920 2002-09-13 Akim Demaille <akim@epita.fr>
16921
16922 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
16923 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
16924
16925 2002-09-13 Akim Demaille <akim@epita.fr>
16926
16927 * configure.ac: Require 2.54.
16928 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
16929 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
16930 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
16931 Remove, provided by Autoconf macros.
16932
16933 2002-09-12 Akim Demaille <akim@epita.fr>
16934
16935 * m4/prereq.m4: Update, from Coreutils 4.5.1.
16936
16937 2002-09-12 Akim Demaille <akim@epita.fr>
16938
16939 * m4/prereq.m4: Update, from Fileutils 4.1.5.
16940 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
16941 Reported by Martin Mokrejs.
16942
16943 2002-09-10 Akim Demaille <akim@epita.fr>
16944
16945 * src/parse-gram.y: Associate a human readable string to each
16946 token type.
16947 * tests/regression.at (Invalid inputs): Adjust.
16948
16949 2002-09-10 Gary V. Vaughan <gary@gnu.org>
16950
16951 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
16952 with an Autoconf-2.5x style configure.ac.
16953
16954 2002-09-06 Paul Eggert <eggert@twinsun.com>
16955
16956 * doc/bison.texinfo (Conditions): Make explicit that the GPL
16957 exception applies only to yacc.c. This is a modification of a
16958 patch originally suggested by Akim Demaille.
16959
16960 2002-09-06 Akim Demaille <akim@epita.fr>
16961
16962 * data/c.m4 (b4_copyright): Move the GPL exception comment from
16963 here to...
16964 * data/yacc.c: here.
16965
16966 * data/lalr1.cc (struct yyltype): Don't define it, since we use
16967 LocationType.
16968 (b4_ltype): Default to yy::Location from location.hh.
16969
16970 2002-09-04 Jim Meyering <jim@meyering.net>
16971
16972 * data/yacc.c: Guard the declaration of yytoknum also with
16973 `#ifdef YYPRINT', so it is declared only when used.
16974
16975 2002-09-04 Akim Demaille <akim@epita.fr>
16976
16977 * configure.in: Rename as...
16978 * configure.ac: this.
16979 Bump to 1.49c.
16980
16981 2002-09-04 Akim Demaille <akim@epita.fr>
16982
16983 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
16984 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
16985 translate maintainer only messages.
16986
16987 2002-08-12 Paul Eggert <eggert@twinsun.com>
16988
16989 Version 1.49b.
16990
16991 * Makefile.am (SUBDIRS): Remove intl.
16992 (DISTCLEANFILES): Remove.
16993 * NEWS: Mention that GNU M4 is now required. Clarify what is
16994 meant by "larger grammars". Mention the pt_BR translation.
16995 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
16996 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
16997 Bump version from 0.11.2 to 0.11.5.
16998 (BISON_PREREQ_STAGE): Remove.
16999 (AM_GNU_GETTEXT): Use external gettext.
17000 (AC_OUTPUT): Remove intl/Makefile.
17001
17002 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17003
17004 * data/glr.c: Include string.h, for strlen.
17005 (yyreportParseError): Use size_t for yysize.
17006 (yy_yypstack): No longer nested inside yypstates, as nested
17007 functions are not portable. Do not assume size_t is the
17008 same width as int.
17009 (yypstates): Do not assume that ptrdiff_t is the same width
17010 as int, and similarly for yyposn and YYINDEX.
17011
17012 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17013
17014 * lib/Makefile.am (INCLUDES): Do not include from the intl
17015 directory, which has been removed.
17016 * src/Makefile.am (INCLUDES): Likewise.
17017
17018 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17019 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17020 New vars.
17021
17022 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17023 * tests/Makefile.am (EXTRA_DIST): Likewise.
17024
17025 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17026 Do not assume that bitset_windex is the same width as unsigned.
17027
17028 * lib/abitset.c (abitset_unused_clear): Do not assume that
17029 bitset_word is the same width as int.
17030 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17031 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17032 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17033 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17034 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17035
17036 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17037 portability to one's complement hosts!).
17038 * lib/ebitset.c (ebitset_op1): Likewise.
17039 * lib/lbitset.c (lbitset_op1): Likewise.
17040
17041 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17042 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17043 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17044 Sync with fileutils.
17045 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17046 lib/gettext.h: Sync with diffutils.
17047
17048 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17049 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17050
17051 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17052 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17053 check for void *.
17054
17055 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17056 size_t; the old version tried to do this but casted improperly.
17057 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17058 (bitset_test): Now returns int, not unsigned long.
17059
17060 * lib/bitset_stats.c: Include "gettext.h".
17061 (_): New macro.
17062 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17063 name locals "index", as it generates unnecessary warnings on some
17064 hosts that have an "index" function.
17065
17066 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17067 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17068 they need translation.
17069 * src/LR0.c (state_list_append, new_itemsets, get_state,
17070 append_states, generate_states): Likewise.
17071 * src/assoc.c (assoc_to_string): Likewise.
17072 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17073 * src/gram.c (grammar_dump): Likewise.
17074 * src/injections.c (injections_compute): Likewise.
17075 * src/lalr.c (lookaheads_print): Likewise.
17076 * src/relation.c (relation_transpose): Likewise.
17077 * src/scan-gram.l: Likewise.
17078 * src/tables.c (table_grow, pack_vector): Likewise.
17079
17080 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17081 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17082 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17083 * m4/mbstate_t.m4: Sync with fileutils.
17084 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17085
17086 * po/LINGUAS: Add pt_BR.
17087 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17088 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17089 lib/timevar.c.
17090 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17091 manual recommends.
17092 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17093
17094 * src/complain.c (strerror_r): Remove decl; not needed.
17095 (strerror): Use same pattern as ../lib/error.c.
17096
17097 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17098
17099 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17100
17101 * src/main.c (main): Cast result of bindtextdomain and textdomain
17102 to void, to avoid a GCC warning when --disable-nls is in effect.
17103
17104 * src/scan-gram.l: Use strings rather than escapes when possible,
17105 to minimize the number of warnings from xgettext.
17106 (handle_action_dollar, handle_action_at): Don't use isdigit,
17107 as it mishandles negative chars and it may not work as expected
17108 outside the C locale.
17109
17110 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17111 this is a GCC extension and is not portable to other compilers.
17112
17113 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17114 Do not include <ctype.h>; no longer needed.
17115 Do not include <malloc.h>; no longer needed (and generates
17116 warnings on OpenBSD 3.0).
17117
17118 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17119 it's not portable.
17120
17121 * tests/regression.at: Do not use 'cc -c input.c -o input';
17122 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17123
17124 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17125 exit status as failure, not just exit status 1. Sun C exits
17126 with status 2 sometimes.
17127
17128 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17129 Use it for the two large tests.
17130
17131 2002-08-02 Akim Demaille <akim@epita.fr>
17132
17133 * src/conflicts.c (conflicts_output): Don't output rules never
17134 reduced here, since anyway that computation doesn't work.
17135 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17136 (rule_useless_p, rule_never_reduced_p): New.
17137 (grammar_rules_partial_print): Use a filter instead of a range.
17138 Display the title only if needed.
17139 (grammar_rules_print): Adjust.
17140 (grammar_rules_never_reduced_report): New.
17141 * src/tables.c (action_row): Move the computation of rules never
17142 reduced to...
17143 (token_actions): here.
17144 * src/main.c (main): Make the parser before making the report, so
17145 that rules never reduced are computed.
17146 Call grammar_rules_never_reduced_report.
17147 * src/print.c (print_results): Report rules never reduced.
17148 * tests/conflicts.at, tests/reduce.at: Adjust.
17149
17150 2002-08-01 Akim Demaille <akim@epita.fr>
17151
17152 Instead of attaching lookaheads and duplicating the rules being
17153 reduced by a state, attach the lookaheads to the reductions.
17154
17155 * src/state.h (state_t): Remove the `lookaheads',
17156 `lookaheads_rule' member.
17157 (reductions_t): Add a `lookaheads' member.
17158 Use a regular array for the `rules'.
17159 * src/state.c (reductions_new): Initialize the lookaheads member
17160 to 0.
17161 (state_rule_lookaheads_print): Adjust.
17162 * src/state.h, src/state.c (state_reductions_find): New.
17163 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17164 (count_rr_conflicts): Adjust.
17165 * src/lalr.c (LArule): Remove.
17166 (add_lookback_edge): Adjust.
17167 (state_lookaheads_count): New.
17168 (states_lookaheads_initialize): Merge into...
17169 (initialize_LA): this.
17170 (lalr_free): Adjust.
17171 * src/main.c (main): Don't free nullable and derives too early: it
17172 is used by --verbose.
17173 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17174
17175 2002-08-01 Akim Demaille <akim@epita.fr>
17176
17177 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17178 `rule_number_t**'.
17179 (set_derives, free_derives): Rename as...
17180 (derives_compute, derives_free): this.
17181 Adjust all dependencies.
17182 * src/nullable.c (set_nullable, free_nullable): Rename as...
17183 (nullable_compute, nullable_free): these.
17184 (rule_list_t): Store rule_t *, not rule_number_t.
17185 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17186 pointers, instead of their numbers.
17187 * src/main.c (main): Call nullable_free, and derives_free earlier,
17188 as they were lo longer used.
17189
17190 2002-08-01 Akim Demaille <akim@epita.fr>
17191
17192 * lib/timevar.c (get_time): Include children time.
17193 * src/lalr.h (LA, LArule): Don't export them: used with the
17194 state_t.
17195 * src/lalr.c (LA, LArule): Static.
17196 * src/lalr.h, src/lalr.c (lalr_free): New.
17197 * src/main.c (main): Call it.
17198 * src/tables.c (pack_vector): Check whether loc is >= to the
17199 table_size, not >.
17200 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17201 (tables_generate): do it, since that's also it which allocates
17202 them.
17203 Don't free LA and LArule, main does.
17204
17205 2002-07-31 Akim Demaille <akim@epita.fr>
17206
17207 Separate parser tables computation and output.
17208
17209 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17210 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17211 (yydefgoto, yydefact, high): Move to...
17212 * src/tables.h, src/tables.c: here.
17213 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17214 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17215 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17216 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17217 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17218 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17219 (action_row, save_row, token_actions, save_column, default_goto)
17220 (goto_actions, sort_actions, matching_state, pack_vector)
17221 (table_ninf_remap, pack_table, prepare_actions): Move to...
17222 * src/tables.c: here.
17223 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17224 * src/output.c (token_actions, output_base, output_conflicts)
17225 (output_check): Merge into...
17226 (prepare_actions): this.
17227 (actions_output): Rename as...
17228 (user_actions_output): this.
17229 * src/main.c (main): Call tables_generate and tables_free.
17230
17231 2002-07-31 Akim Demaille <akim@epita.fr>
17232
17233 Steal GCC's --time-report support.
17234
17235 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17236 stolen/adjusted from GCC.
17237 * m4/stage.m4: Remove time related checks.
17238 * m4/timevar.m4: New.
17239 * configure.in: Adjust.
17240 * src/system.h: Adjust to using timevar.h.
17241 * src/getargs.h, src/getargs.c: Support trace_time for
17242 --trace=time.
17243 * src/main.c (stage): Remove.
17244 (main): Replace `stage' invocations with timevar calls.
17245 * src/output.c: Insert pertinent timevar calls.
17246
17247 2002-07-31 Akim Demaille <akim@epita.fr>
17248
17249 Let --trace have arguments.
17250
17251 * src/getargs.h (enum trace_e): New.
17252 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17253 (long_options, short_options): --trace/-T takes an optional
17254 argument.
17255 Change all the uses of trace_flag to reflect the new flags.
17256 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17257
17258 Strengthen `stage' portability.
17259
17260 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17261 * configure.in: Use it.
17262 Don't check for malloc.h and sys/times.h.
17263 * src/system.h: Include them when appropriate.
17264 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17265 times and struct tms are available.
17266
17267 2002-07-30 Akim Demaille <akim@epita.fr>
17268
17269 In verbose parse error message, don't report `error' as an
17270 expected token.
17271 * tests/actions.at (Printers and Destructors): Adjust.
17272 * tests/calc.at (Calculator $1): Adjust.
17273 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17274 error message, do not report the parser accepts the error token in
17275 that state.
17276
17277 2002-07-30 Akim Demaille <akim@epita.fr>
17278
17279 Normalize conflict related messages.
17280
17281 * src/complain.h, src/complain.c (warn, complain): New.
17282 * src/conflicts.c (conflicts_print): Use them.
17283 (conflict_report_yacc): New, extracted from...
17284 (conflicts_print): here.
17285 * tests/conflicts.at, tests/existing.at: Adjust.
17286
17287 2002-07-30 Akim Demaille <akim@epita.fr>
17288
17289 Report rules which are never reduced by the parser: those hidden
17290 by conflicts.
17291
17292 * src/LR0.c (save_reductions): Don't make the final state too
17293 different: save its reduction (accept) instead of having a state
17294 without any action (no shift or goto, no reduce).
17295 Note: the final state is now a ``regular'' state, i.e., the
17296 parsers now contain `reduce 0' as default reduction.
17297 Nevertheless, since they decide to `accept' when yystate =
17298 final_state, they still will not reduce rule 0.
17299 * src/print.c (print_actions, print_reduction): Adjust.
17300 * src/output.c (action_row): Track reduced rules.
17301 (token_actions): Report rules never reduced.
17302 * tests/conflicts.at, tests/regression.at: Adjust.
17303
17304 2002-07-30 Akim Demaille <akim@epita.fr>
17305
17306 `stage' was accidently included in a previous patch.
17307 Initiate its autoconfiscation.
17308
17309 * configure.in: Look for malloc.h and sys/times.h.
17310 * src/main.c (stage): Adjust.
17311 Report only when trace_flag.
17312
17313 2002-07-29 Akim Demaille <akim@epita.fr>
17314
17315 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17316 state_number_t.
17317 (errs_t): symbol_t*, not symbol_number_t.
17318 (reductions_t): rule_t*, not rule_number_t.
17319 (FOR_EACH_SHIFT): New.
17320 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17321 * src/print.c, src/print_graph.c: Adjust.
17322
17323 2002-07-29 Akim Demaille <akim@epita.fr>
17324
17325 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17326
17327 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17328 (endtoken, accept): these.
17329 * src/reader.c (reader): Set endtoken's default tag to "$end".
17330 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17331 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17332 Adjust.
17333
17334 2002-07-29 Akim Demaille <akim@epita.fr>
17335
17336 * src/reduce.c (reduce_grammar): When the language is empty,
17337 complain about the start symbol, not the axiom.
17338 Use its location.
17339 * tests/reduce.at (Empty Language): New.
17340
17341 2002-07-26 Akim Demaille <akim@epita.fr>
17342
17343 * src/reader.h, src/reader.c (gram_error): ... can't get
17344 yycontrol without making too strong assumptions on the parser
17345 itself.
17346 * src/output.c (prepare_tokens): Use the real 0th value of
17347 token_translations instead of `0'.
17348 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17349 visible here.
17350 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17351 for the time being: %locations ought to provide it to yyerror.
17352
17353 2002-07-25 Akim Demaille <akim@epita.fr>
17354
17355 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17356 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17357 * tests/regression.at (Web2c Actions): Adjust.
17358
17359 2002-07-25 Akim Demaille <akim@epita.fr>
17360
17361 Stop storing rules from 1 to nrules + 1.
17362
17363 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17364 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17365 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17366 Iterate from 0 to nrules.
17367 Use rule_number_as_item_number and item_number_as_rule_number.
17368 Adjust to `derive' now containing possibly 0.
17369 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17370 Handle the `- 1' part in rule numbers from/to item numbers.
17371 * src/conflicts.c (log_resolution): Fix the message which reversed
17372 shift and reduce.
17373 * src/output.c (action_row): Initialize default_rule to -1.
17374 (token_actions): Adjust.
17375 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17376 expected output.
17377 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17378
17379 2002-07-25 Akim Demaille <akim@epita.fr>
17380
17381 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17382 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17383 (b4_c_knr_arg_decl): New.
17384 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17385 yyreport_parse_error.
17386
17387 2002-07-25 Akim Demaille <akim@epita.fr>
17388
17389 * data/yacc.c (yyreport_parse_error): New, extracted from...
17390 (yyparse): here.
17391 (yydestruct, yysymprint): Move above yyparse.
17392 Be K&R compliant.
17393
17394 2002-07-25 Akim Demaille <akim@epita.fr>
17395
17396 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17397 replace...
17398 (b4_sint_type, b4_uint_type): these.
17399 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17400 * tests/regression.at (Web2c Actions): Adjust.
17401
17402 2002-07-25 Akim Demaille <akim@epita.fr>
17403
17404 * src/gram.h (TIEM_NUMBER_MAX): New.
17405 (item_number_of_rule_number, rule_number_of_item_number): Rename
17406 as...
17407 (rule_number_as_item_number, item_number_as_rule_number): these.
17408 Adjust dependencies.
17409 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17410 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17411 (symbol_number_to_vector_number): New.
17412 (order): Of vector_number_t* type.
17413 (base_t, BASE_MAX, BASE_MIN): New.
17414 (froms, tos, width, pos, check): Of base_t type.
17415 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17416 (actrow): Of action_number_t type.
17417 (conflrow): Of unsigned int type.
17418 (table_ninf, base_ninf): New.
17419 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17420 (muscle_insert_int_table, muscle_insert_base_table)
17421 (muscle_insert_rule_number_table): New.
17422 (prepare_tokens): Output `toknum' as int_table.
17423 (action_row): Returns a rule_number_t.
17424 Use ACTION_MIN, not SHRT_MIN.
17425 (token_actions): yydefact is rule_number_t*.
17426 (table_ninf_remap): New.
17427 (pack_table): Use it for `base' and `table'.
17428 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17429 replaced with...
17430 (YYPACT_NINF, YYTABLE_NINF): these.
17431 (yypact, yytable): Compute their types instead of hard-coded
17432 `short'.
17433 * tests/regression.at (Web2c Actions): Adjust.
17434
17435 2002-07-19 Akim Demaille <akim@epita.fr>
17436
17437 * src/scan-gram.l (id): Can start with an underscore.
17438
17439 2002-07-16 Akim Demaille <akim@epita.fr>
17440
17441 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17442 Adjust all former `associativity' dependencies.
17443 * src/symtab.c (symbol_new): Default associativity is `undef', not
17444 `right'.
17445 (symbol_check_alias_consistence): Adjust.
17446
17447 2002-07-09 Akim Demaille <akim@epita.fr>
17448
17449 * doc/bison.texinfo: Properly set the ``header'' part.
17450 Use @dircategory ``GNU programming tools'' as per Texinfo's
17451 documentation.
17452 Use @copying.
17453
17454 2002-07-09 Akim Demaille <akim@epita.fr>
17455
17456 * lib/quotearg.h: Protect against multiple inclusions.
17457 * src/location.h (location_t): Add a `file' member.
17458 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17459 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17460 `error_one_per_line' support.
17461
17462 2002-07-09 Akim Demaille <akim@epita.fr>
17463
17464 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17465 * src/reader.c (lineno): Remove.
17466 Adjust all dependencies.
17467 (get_merge_function): Take a location and use complain_at.
17468 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17469 * tests/regression.at (Invalid inputs, Mixing %token styles):
17470 Adjust.
17471
17472 2002-07-09 Akim Demaille <akim@epita.fr>
17473
17474 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17475 recovery rule, and forbid extensions when --yacc.
17476 (gram_error): Use complain_at.
17477 * src/reader.c (reader): Exit if there were parse errors.
17478
17479 2002-07-09 Akim Demaille <akim@epita.fr>
17480
17481 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17482 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17483 Reported by R Blake <blakers@mac.com>.
17484
17485 2002-07-09 Akim Demaille <akim@epita.fr>
17486
17487 * data/yacc.c: Output the copyright notive in the header.
17488
17489 2002-07-03 Akim Demaille <akim@epita.fr>
17490
17491 * src/output.c (froms, tos): Are state_number_t.
17492 (save_column): sp, sp1, and sp2 are state_number_t.
17493 (prepare): Rename `final' as `final_state_number', `nnts' as
17494 `nterms_number', `nrules' as `rules_number', `nstates' as
17495 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17496 unused.
17497 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17498 * data/lalr1.cc (nsym_): Remove, unused.
17499
17500 2002-07-03 Akim Demaille <akim@epita.fr>
17501
17502 * src/lalr.h, src/lalr.c (goto_number_t): New.
17503 * src/lalr.c (goto_list_t): New.
17504 Propagate them.
17505 * src/nullable.c (rule_list_t): New.
17506 Propagate.
17507 * src/types.h: Remove.
17508
17509 2002-07-03 Akim Demaille <akim@epita.fr>
17510
17511 * src/closure.c (print_fderives): Use rule_rhs_print.
17512 * src/derives.c (print_derives): Use rule_rhs_print.
17513 (rule_list_t): New, replaces `shorts'.
17514 (set_derives): Add comments.
17515 * tests/sets.at (Nullable, Firsts): Adjust.
17516
17517 2002-07-03 Akim Demaille <akim@epita.fr>
17518
17519 * src/output.c (prepare_actions): Free `tally' and `width'.
17520 (prepare_actions): Allocate and free `order'.
17521 * src/symtab.c (symbols_free): Free `symbols'.
17522 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17523 * src/output.c (m4_invoke): Move to...
17524 * src/scan-skel.l: here.
17525 (<<EOF>>): Close yyout, and free its name.
17526
17527 2002-07-03 Akim Demaille <akim@epita.fr>
17528
17529 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17530
17531 * src/LR0.c (new_state): Merge into...
17532 (state_list_append): this.
17533 (new_states): Merge into...
17534 (generate_states): here.
17535 (set_states): Don't ensure a proper `errs' state member here, do it...
17536 * src/conflicts.c (conflicts_solve): here.
17537 * src/state.h, src/state.c: Comment changes.
17538 (state_t): Rename member `shifts' as `transitions'.
17539 Adjust all dependencies.
17540 (errs_new): For consistency, also take the values as argument.
17541 (errs_dup): Remove.
17542 (state_errs_set): New.
17543 (state_reductions_set, state_transitions_set): Assert that no
17544 previous value was assigned.
17545 (state_free): New.
17546 (states_free): Use it.
17547 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17548 temporary storage: use `errs' and `nerrs' as elsewhere.
17549 (set_conflicts): Allocate and free this `errs'.
17550
17551 2002-07-02 Akim Demaille <akim@epita.fr>
17552
17553 * lib/libiberty.h: New.
17554 * lib: Update the bitset implementation from upstream.
17555 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17556 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17557 * src/main.c: Adjust bitset stats calls.
17558
17559 2002-07-01 Paul Eggert <eggert@twinsun.com>
17560
17561 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17562 char, so that negative chars don't collide with $.
17563
17564 2002-06-30 Akim Demaille <akim@epita.fr>
17565
17566 Have the GLR tests be `warning' checked, and fix the warnings.
17567
17568 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17569 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17570 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17571 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17572 (yyaddDeferredAction): static.
17573 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17574 (yyreportParseError): yyprefix is const.
17575 yytokenp is used only when verbose.
17576 (yy__GNUC__): Replace with __GNUC__.
17577 (yypdumpstack): yyi is size_t.
17578 (yypreference): Un-yy local variables and arguments, to avoid
17579 clashes with `yyr1'. Anyway, we are not in the user name space.
17580 (yytname_size): be an int, as is compared with ints.
17581 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17582 Use them.
17583 * tests/cxx-gram.at: Use quotation to protect $1.
17584 Use AT_COMPILE to enable warnings hunts.
17585 Prototype yylex and yyerror.
17586 `Use' argc.
17587 Include `string.h', not `strings.h'.
17588 Produce and prototype stmtMerge only when used.
17589 yylex takes a location.
17590
17591 2002-06-30 Akim Demaille <akim@epita.fr>
17592
17593 We spend a lot of time in quotearg, in particular when --verbose.
17594
17595 * src/symtab.c (symbol_get): Store a quoted version of the key.
17596 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17597 Adjust all callers.
17598
17599 2002-06-30 Akim Demaille <akim@epita.fr>
17600
17601 * src/state.h (reductions_t): Rename member `nreds' as num.
17602 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17603 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17604
17605 2002-06-30 Akim Demaille <akim@epita.fr>
17606
17607 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17608 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17609 (shifts_to): Rename as...
17610 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17611 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17612 (TRANSITION_IS_DISABLED, transitions_to): these.
17613
17614 2002-06-30 Akim Demaille <akim@epita.fr>
17615
17616 * src/print.c (print_shifts, print_gotos): Merge into...
17617 (print_transitions): this.
17618 (print_transitions, print_errs, print_reductions): Align the
17619 lookaheads columns.
17620 (print_core, print_transitions, print_errs, print_state,
17621 print_grammar): Output empty lines separator before, not after.
17622 (state_default_rule_compute): Rename as...
17623 (state_default_rule): this.
17624 * tests/conflicts.at (Defaulted Conflicted Reduction),
17625 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17626 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17627
17628 2002-06-30 Akim Demaille <akim@epita.fr>
17629
17630 Display items as we display rules.
17631
17632 * src/gram.h, src/gram.c (rule_lhs_print): New.
17633 * src/gram.c (grammar_rules_partial_print): Use it.
17634 * src/print.c (print_core): Likewise.
17635 * tests/conflicts.at (Defaulted Conflicted Reduction),
17636 (Unresolved SR Conflicts): Adjust.
17637 (Unresolved SR Conflicts): Adjust and rename as...
17638 (Resolved SR Conflicts): this, as was meant.
17639 * tests/regression.at (Web2c Report): Adjust.
17640
17641 2002-06-30 Akim Demaille <akim@epita.fr>
17642
17643 * src/print.c (state_default_rule_compute): New, extracted from...
17644 (print_reductions): here.
17645 Pessimize, but clarify the code.
17646 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17647
17648 2002-06-30 Akim Demaille <akim@epita.fr>
17649
17650 * src/output.c (action_row): Let default_rule be always a rule
17651 number.
17652
17653 2002-06-30 Akim Demaille <akim@epita.fr>
17654
17655 * src/closure.c (print_firsts, print_fderives, closure):
17656 Use BITSET_EXECUTE.
17657 * src/lalr.c (lookaheads_print): Likewise.
17658 * src/state.c (state_rule_lookaheads_print): Likewise.
17659 * src/print_graph.c (print_core): Likewise.
17660 * src/print.c (print_reductions): Likewise.
17661 * src/output.c (action_row): Likewise.
17662 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17663
17664 2002-06-30 Akim Demaille <akim@epita.fr>
17665
17666 * src/print_graph.c: Use report_flag.
17667
17668 2002-06-30 Akim Demaille <akim@epita.fr>
17669
17670 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17671 to...
17672 * src/relation.h, src/relation.c (traverse, relation_digraph)
17673 (relation_print, relation_transpose): New.
17674
17675 2002-06-30 Akim Demaille <akim@epita.fr>
17676
17677 * src/state.h, src/state.c (shifts_to): New.
17678 * src/lalr.c (build_relations): Use it.
17679
17680 2002-06-30 Akim Demaille <akim@epita.fr>
17681
17682 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17683 (item_number_of_rule_number, rule_number_of_item_number): New.
17684 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17685 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17686 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17687 Propagate their use.
17688 Much remains to be done, in particular wrt `shorts' from types.h.
17689
17690 2002-06-30 Akim Demaille <akim@epita.fr>
17691
17692 * src/symtab.c (symbol_new): Initialize the `printer' member.
17693
17694 2002-06-30 Akim Demaille <akim@epita.fr>
17695
17696 * src/LR0.c (save_reductions): Remove, replaced by...
17697 * src/state.h, src/state.c (state_reductions_set): New.
17698 (reductions, errs): Rename as...
17699 (reductions_t, errs_t): these.
17700 Adjust all dependencies.
17701
17702 2002-06-30 Akim Demaille <akim@epita.fr>
17703
17704 * src/LR0.c (state_list_t, state_list_append): New.
17705 (first_state, last_state): Now symbol_list_t.
17706 (this_state): Remove.
17707 (new_itemsets, append_states, save_reductions): Take a state_t as
17708 argument.
17709 (set_states, generate_states): Adjust.
17710 (save_shifts): Remove, replaced by...
17711 * src/state.h, src/state.c (state_shifts_set): New.
17712 (shifts): Rename as...
17713 (shifts_t): this.
17714 Adjust all dependencies.
17715 * src/state.h (state_t): Remove the `next' member.
17716
17717 2002-06-30 Akim Demaille <akim@epita.fr>
17718
17719 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17720 escaped in slot 0.
17721
17722 2002-06-30 Akim Demaille <akim@epita.fr>
17723
17724 Use hash.h for the state hash table.
17725
17726 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17727 (allocate_storage): Use state_hash_new.
17728 (free_storage): Use state_hash_free.
17729 (new_state, get_state): Adjust.
17730 * src/lalr.h, src/lalr.c (states): Move to...
17731 * src/states.h (state_t): Remove the `link' member, no longer
17732 used.
17733 * src/states.h, src/states.c: here.
17734 (state_hash_new, state_hash_free, state_hash_lookup)
17735 (state_hash_insert, states_free): New.
17736 * src/states.c (state_table, state_compare, state_hash): New.
17737 * src/output.c (output_actions): Do not free states now, since we
17738 still need to know the final_state number in `prepare', called
17739 afterwards. Do it...
17740 * src/main.c (main): here: call states_free after `output'.
17741
17742 2002-06-30 Akim Demaille <akim@epita.fr>
17743
17744 * src/state.h, src/state.c (state_new): New, extracted from...
17745 * src/LR0.c (new_state): here.
17746 * src/state.h (STATE_ALLOC): Move to...
17747 * src/state.c: here.
17748 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17749 * src/state.h, src/state.c: here.
17750
17751 2002-06-30 Akim Demaille <akim@epita.fr>
17752
17753 * src/reader.c (gensym): Rename as...
17754 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17755 (getsym): Rename as...
17756 (symbol_get): this.
17757
17758 2002-06-30 Akim Demaille <akim@epita.fr>
17759
17760 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17761 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17762 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17763 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17764
17765 2002-06-30 Akim Demaille <akim@epita.fr>
17766
17767 Make the test suite pass with warnings checked.
17768
17769 * tests/actions.at (Printers and Destructors): Improve.
17770 Avoid unsigned vs. signed issues.
17771 * tests/calc.at: Don't exercise the scanner here, do it...
17772 * tests/input.at (Torturing the Scanner): here.
17773
17774 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17775
17776 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
17777 reorganize first lines parallel to yacc.c.
17778
17779 2002-06-28 Akim Demaille <akim@epita.fr>
17780
17781 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17782 (b4_token_enum, b4_token_defines): New, factored from...
17783 * data/lalr1.cc, data/yacc.c, glr.c: here.
17784
17785 2002-06-28 Akim Demaille <akim@epita.fr>
17786
17787 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17788 unused variables.
17789 * src/output.c (merger_output): static.
17790
17791 2002-06-28 Akim Demaille <akim@epita.fr>
17792
17793 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
17794 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17795 pacify GCC.
17796 * src/output.c (save_row): Initialize all the variables to pacify GCC.
17797
17798 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17799
17800 Accumulated changelog for new GLR parsing features.
17801
17802 * src/conflicts.c (count_total_conflicts): Change name to
17803 conflicts_total_count.
17804 * src/conflicts.h: Ditto.
17805 * src/output.c (token_actions): Use the new name.
17806 (output_conflicts): Change conflp => conflict_list_heads, and
17807 confl => conflict_list for better readability.
17808 * data/glr.c: Use the new names.
17809 * NEWS: Add self to GLR announcement.
17810
17811 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17812
17813 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17814 Akim Demaille.
17815
17816 * data/bison.glr: Change name to glr.c
17817 * data/glr.c: Renamed from bison.glr.
17818 * data/Makefile.am: Add glr.c
17819
17820 * src/getargs.c:
17821
17822 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
17823 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
17824
17825 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17826
17827 * data/bison.glr: Be sure to restore the
17828 current #line when returning to the skeleton contents after having
17829 exposed the input file's #line.
17830
17831 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17832
17833 * data/bison.glr: Bring up to date with changes to bison.simple.
17834
17835 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17836
17837 * data/bison.glr: Correct definitions that use b4_prefix.
17838 Various reformatting.
17839 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17840 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17841 yytokenp argument; now part of stack.
17842 (yychar): Define to behave as documented.
17843 (yyclearin): Ditto.
17844
17845 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17846
17847 * src/reader.h: Add declaration for free_merger_functions.
17848
17849 * src/reader.c (merge_functions): New variable.
17850 (get_merge_function): New function.
17851 (free_merger_functions): New function.
17852 (readgram): Check for %prec that is not followed by a symbol.
17853 Handle %dprec and %merge declarations.
17854 (packgram): Initialize dprec and merger fields in rules array.
17855
17856 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17857 conflict_list_cnt, conflict_list_free): New variables.
17858 (table_grow): Also grow conflict_table.
17859 (prepare_rules): Output dprec and merger tables.
17860 (conflict_row): New function.
17861 (action_row): Output conflict lists for GLR parser. Don't use
17862 default reduction in conflicted states for GLR parser so that there
17863 are spaces for the conflict lists.
17864 (save_row): Also save conflict information.
17865 (token_actions): Allocate conflict list.
17866 (merger_output): New function.
17867 (pack_vector): Pack conflict table, too.
17868 (output_conflicts): New function to output yyconflp and yyconfl.
17869 (output_check): Allocate conflict_tos.
17870 (output_actions): Output conflict tables, also.
17871 (output_skeleton): Output b4_mergers definition.
17872 (prepare): Output b4_max_rhs_length definition.
17873 Use 'bison.glr' as default skeleton for GLR parsers.
17874
17875 * src/gram.c (glr_parser): New flag.
17876 (grammar_free): Call free_merger_functions.
17877
17878 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17879 all pairs of conflicting reductions, rather than just all tokens
17880 causing conflicts. Needed to size conflict tables.
17881 (conflicts_output): Modify call to count_rr_conflicts for new
17882 interface.
17883 (conflicts_print): Ditto.
17884 (count_total_conflicts): New function.
17885
17886 * src/reader.h (merger_list): New type.
17887 (merge_functions): New variable.
17888
17889 * src/lex.h (tok_dprec, tok_merge): New token types.
17890
17891 * src/gram.h (rule_s): Add dprec and merger fields.
17892 (glr_parser): New flag.
17893
17894 * src/conflicts.h (count_total_conflicts): New function.
17895
17896 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17897
17898 * doc/bison.texinfo (Generalized LR Parsing): New section.
17899 (GLR Parsers): New section.
17900 (Language and Grammar): Mention GLR parsing.
17901 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17902 Correct typo ("tge" -> "the").
17903
17904 * data/bison.glr: New skeleton for GLR parsing.
17905
17906 * tests/cxx-gram.at: New tests for GLR parsing.
17907
17908 * tests/testsuite.at: Include cxx-gram.at.
17909
17910 * tests/Makefile.am: Add cxx-gram.at.
17911
17912 * src/parse-gram.y:
17913
17914 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
17915
17916 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
17917
17918 2002-06-27 Akim Demaille <akim@epita.fr>
17919
17920 * src/options.h, src/options.c: Remove.
17921 * src/getargs.c (short_options, long_options): New.
17922
17923 2002-06-27 Akim Demaille <akim@epita.fr>
17924
17925 * data/bison.simple, data/bison.c++: Rename as...
17926 * data/yacc.c, data/lalr1.cc: these.
17927 * doc/bison.texinfo (Environment Variables): Remove.
17928
17929 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
17930
17931 * src/getargs.c (report_argmatch): Initialize strtok().
17932
17933 2002-06-20 Akim Demaille <akim@epita.fr>
17934
17935 * data/bison.simple (b4_symbol_actions): New, replaces...
17936 (b4_symbol_destructor, b4_symbol_printer): these.
17937 (yysymprint): Be sure to call YYPRINT only for tokens, and using
17938 user token numbers.
17939
17940 2002-06-20 Akim Demaille <akim@epita.fr>
17941
17942 * data/bison.simple (yydestructor): Rename as...
17943 (yydestruct): this.
17944
17945 2002-06-20 Akim Demaille <akim@epita.fr>
17946
17947 * src/symtab.h, src/symtab.c (symbol_type_set)
17948 (symbol_destructor_set, symbol_precedence_set): The location is
17949 the last argument.
17950 Adjust all callers.
17951
17952 2002-06-20 Akim Demaille <akim@epita.fr>
17953
17954 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
17955 internals.
17956 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
17957 Takes a location.
17958 * src/symtab.h, src/symtab.c (symbol_class_set)
17959 (symbol_user_token_number_set): Likewise.
17960 Adjust all callers.
17961 Promote complain_at.
17962 * tests/input.at (Type Clashes): Adjust.
17963
17964 2002-06-20 Akim Demaille <akim@epita.fr>
17965
17966 * data/bison.simple (YYLEX): Fix the declaration when
17967 %pure-parser.
17968
17969 2002-06-20 Akim Demaille <akim@epita.fr>
17970
17971 * data/bison.simple (yysymprint): Don't print the token number,
17972 just its name.
17973 * tests/actions.at (Destructors): Rename as...
17974 (Printers and Destructors): this.
17975 Also exercise %printer.
17976
17977 2002-06-20 Akim Demaille <akim@epita.fr>
17978
17979 * data/bison.simple (YYDSYMPRINT): New.
17980 Use it to remove many of the #if YYDEBUG/if (yydebug).
17981
17982 2002-06-20 Akim Demaille <akim@epita.fr>
17983
17984 * src/symtab.h, src/symtab.c (symbol_t): printer and
17985 printer_location are new members.
17986 (symbol_printer_set): New.
17987 * src/parse-gram.y (PERCENT_PRINTER): New token.
17988 Handle its associated rule.
17989 * src/scan-gram.l: Adjust.
17990 (handle_destructor_at, handle_destructor_dollar): Rename as...
17991 (handle_symbol_code_at, handle_symbol_code_dollar): these.
17992 * src/output.c (symbol_printers_output): New.
17993 (output_skeleton): Call it.
17994 * data/bison.simple (yysymprint): New. Cannot be named yyprint
17995 since there are already many grammar files with a user `yyprint'.
17996 Replace the calls to YYPRINT to calls to yysymprint.
17997 * tests/calc.at: Adjust.
17998 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
17999 taking advantage of parser very internal details (stack size!).
18000
18001 2002-06-20 Akim Demaille <akim@epita.fr>
18002
18003 * src/scan-gram.l: Complete the scanner with the missing patterns
18004 to pacify Flex.
18005 Use `quote' and `symbol_tag_get' where appropriate.
18006
18007 2002-06-19 Akim Demaille <akim@epita.fr>
18008
18009 * tests/actions.at (Destructors): Augment to test locations.
18010 * data/bison.simple (yydestructor): Pass it the current location
18011 if locations are enabled.
18012 Prototype only when __STDC__ or C++.
18013 Change the argument names to move into the yy name space: there is
18014 user code here.
18015
18016 2002-06-19 Akim Demaille <akim@epita.fr>
18017
18018 * data/bison.simple (b4_pure_if): New.
18019 Use it instead of #ifdef YYPURE.
18020
18021 2002-06-19 Akim Demaille <akim@epita.fr>
18022
18023 * data/bison.simple (b4_location_if): New.
18024 Use it instead of #ifdef YYLSP_NEEDED.
18025
18026 2002-06-19 Akim Demaille <akim@epita.fr>
18027
18028 Prepare @$ in %destructor, but currently don't bind it in the
18029 skeleton, as %location use is not cleaned up yet.
18030
18031 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18032 (handle_action_at): New.
18033 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18034 a braced_code_t and a location as additional arguments.
18035 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18036 unquote one when outputting `b4_dollar_dollar'.
18037 Adjust callers.
18038 * data/bison.simple (b4_eval): Remove.
18039 (b4_symbol_destructor): Adjust.
18040 * tests/input.at (Invalid @n): Adjust.
18041
18042 2002-06-19 Zack Weinberg <zack@codesourcery.com>
18043
18044 * doc/bison.texinfo: Document ability to have multiple
18045 prologue sections.
18046
18047 2002-06-18 Akim Demaille <akim@epita.fr>
18048
18049 * src/files.c (compute_base_names): When computing the output file
18050 names from the input file name, strip the directory part.
18051
18052 2002-06-18 Akim Demaille <akim@epita.fr>
18053
18054 * data/bison.simple.new: Comment changes.
18055 Reported by Andreas Schwab.
18056
18057 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18058
18059 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18060 there are no `label `yyoverflowlab' defined but not used' warnings
18061 when yyoverflow is defined.
18062
18063 2002-06-18 Akim Demaille <akim@epita.fr>
18064
18065 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18066 new member.
18067 (symbol_destructor_set): Adjust.
18068 * src/output.c (symbol_destructors_output): Output the destructor
18069 locations.
18070 Output the symbol name.
18071 * data/bison.simple (b4_symbol_destructor): Adjust.
18072
18073 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18074 and Akim Demaille <akim@epita.fr>
18075
18076 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18077 what's left on the stack when the error recovery hits EOF.
18078 * tests/actions.at (Destructors): Complete to exercise this case.
18079
18080 2002-06-17 Akim Demaille <akim@epita.fr>
18081
18082 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18083 arguments is really empty, not only equal to `[]'.
18084 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18085 member.
18086 (symbol_destructor_set): New.
18087 * src/output.c (symbol_destructors_output): New.
18088 * src/reader.h (brace_code_t, current_braced_code): New.
18089 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18090 (handle_dollar): Rename as...
18091 (handle_action_dollar): this.
18092 (handle_destructor_dollar): New.
18093 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18094 (grammar_declaration): Use it.
18095 * data/bison.simple (yystos): Is always defined.
18096 (yydestructor): New.
18097 * tests/actions.at (Destructors): New.
18098 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18099
18100 2002-06-17 Akim Demaille <akim@epita.fr>
18101
18102 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18103 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18104 rule_length only when needed.
18105 * src/output.c (actions_output, token_definitions_output): Output
18106 the full M4 block.
18107 * src/symtab.c: Don't access directly to the symbol tag, use
18108 symbol_tag_get.
18109 * src/parse-gram.y: Use symbol_list_free.
18110
18111 2002-06-17 Akim Demaille <akim@epita.fr>
18112
18113 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18114 (symbol_list_prepend, get_type_name): Move to...
18115 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18116 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18117 Adjust all callers.
18118 (symbol_list_free): New.
18119 * src/scan-gram.l (handle_dollar): Takes a location.
18120 * tests/input.at (Invalid $n): Adjust.
18121
18122 2002-06-17 Akim Demaille <akim@epita.fr>
18123
18124 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18125 (symbol_list_prepend): New.
18126 * src/parse-gram.y (%union): `list' is a new member.
18127 (symbols.1): New, replaces...
18128 (terms_to_prec.1, nterms_to_type.1): these.
18129 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18130 Take a location as additional argument.
18131 Adjust all callers.
18132
18133 2002-06-15 Akim Demaille <akim@epita.fr>
18134
18135 * src/parse-gram.y: Move %token in the declaration section so that
18136 we don't depend upon CVS Bison.
18137
18138 2002-06-15 Akim Demaille <akim@epita.fr>
18139
18140 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18141 * src/print.c (print_core): Use it.
18142
18143 2002-06-15 Akim Demaille <akim@epita.fr>
18144
18145 * src/conflicts.c (log_resolution): Accept the rule involved in
18146 the sr conflicts instead of the lookahead number that points to
18147 that rule.
18148 (flush_reduce): Accept the current lookahead vector as argument,
18149 instead of the index in LA.
18150 (resolve_sr_conflict): Accept the current number of lookahead
18151 bitset to consider for the STATE, instead of the index in LA.
18152 (set_conflicts): Adjust.
18153 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18154
18155 2002-06-15 Akim Demaille <akim@epita.fr>
18156
18157 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18158 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18159 Adjust all dependencies.
18160 * src/lalr.c (initialize_lookaheads): Split into...
18161 (states_lookaheads_count, states_lookaheads_initialize): these.
18162 (lalr): Adjust.
18163
18164 2002-06-15 Akim Demaille <akim@epita.fr>
18165
18166 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18167 out of...
18168 (grammar_rules_print): here.
18169 * src/reduce.c (reduce_output): Use it.
18170 * tests/reduce.at (Useless Rules, Reduced Automaton)
18171 (Underivable Rules): Adjust.
18172
18173 2002-06-15 Akim Demaille <akim@epita.fr>
18174
18175 Copy BYacc's nice way to report the grammar.
18176
18177 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18178 New.
18179 Don't print the rules' location, it is confusing and useless.
18180 (rule_print): Use grammar_rhs_print.
18181 * src/print.c (print_grammar): Use grammar_rules_print.
18182
18183 2002-06-15 Akim Demaille <akim@epita.fr>
18184
18185 Complete and rationalize `useless thing' warnings.
18186
18187 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18188 (symbol_tag_print): New.
18189 Use them everywhere in place of accessing directly the tag member.
18190 * src/gram.h, src/gram.c (rule_print): New.
18191 Use it where a rule used to be printed `by hand'.
18192 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18193 (reduce_grammar_tables): Report the useless rules.
18194 (reduce_print): Useless things are a warning, not an error.
18195 Report it as such.
18196 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18197 (Reduced Automaton, Underivable Rules): Adjust.
18198 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18199 * tests/conflicts.at (Unresolved SR Conflicts)
18200 (Solved SR Conflicts): Adjust.
18201
18202 2002-06-15 Akim Demaille <akim@epita.fr>
18203
18204 Let symbols have a location.
18205
18206 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18207 (getsym): Adjust.
18208 Adjust all callers.
18209 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18210 Use location_t, not int.
18211 * src/symtab.c (symbol_check_defined): Take advantage of the
18212 location.
18213 * tests/regression.at (Invalid inputs): Adjust.
18214
18215 2002-06-15 Akim Demaille <akim@epita.fr>
18216
18217 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18218 (input): Don't try to initialize yylloc here, do it in the
18219 scanner.
18220 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18221 * src/gram.h (rule_t): Change line and action_line into location
18222 and action_location, of location_t type.
18223 Adjust all dependencies.
18224 * src/location.h, src/location.c (empty_location): New.
18225 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18226 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18227 (grammar_current_rule_symbol_append)
18228 (grammar_current_rule_action_append): Expect a location as argument.
18229 * src/reader.c (grammar_midrule_action): Adjust to attach an
18230 action's location as dummy symbol location.
18231 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18232 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18233 the line numbers.
18234
18235 2002-06-14 Akim Demaille <akim@epita.fr>
18236
18237 Grammar declarations may be found in the grammar section.
18238
18239 * src/parse-gram.y (rules_or_grammar_declaration): New.
18240 (declarations): Each declaration may end with a semicolon, not
18241 just...
18242 (grammar_declaration): `"%union"'.
18243 (grammar): Branch to rules_or_grammar_declaration.
18244
18245 2002-06-14 Akim Demaille <akim@epita.fr>
18246
18247 * src/main.c (main): Invoke scanner_free.
18248
18249 2002-06-14 Akim Demaille <akim@epita.fr>
18250
18251 * src/output.c (m4_invoke): Extracted from...
18252 (output_skeleton): here.
18253 Free tempfile.
18254
18255 2002-06-14 Akim Demaille <akim@epita.fr>
18256
18257 * src/parse-gram.y (directives, directive, gram)
18258 (grammar_directives, precedence_directives, precedence_directive):
18259 Rename as...
18260 (declarations, declaration, grammar, grammar_declaration)
18261 (precedence_declaration, precedence_declarator): these.
18262 (symbol_declaration): New.
18263
18264 2002-06-14 Akim Demaille <akim@epita.fr>
18265
18266 * src/files.c (action_obstack): Remove, unused.
18267 (output_obstack): Remove it, and all its dependencies, as it is no
18268 longer needed.
18269 * src/reader.c (epilogue_set): Build the epilogue in the
18270 muscle_obstack.
18271 * src/output.h, src/output.c (muscle_obstack): Move to...
18272 * src/muscle_tab.h, src/muscle_tab.h: here.
18273 (muscle_init): Initialize muscle_obstack.
18274 (muscle_free): New.
18275 * src/main.c (main): Call it.
18276
18277 2002-06-14 Akim Demaille <akim@epita.fr>
18278
18279 * src/location.h: New, extracted from...
18280 * src/reader.h: here.
18281 * src/Makefile.am (noinst_HEADERS): Merge into
18282 (bison_SOURCES): this.
18283 Add location.h.
18284 * src/parse-gram.y: Use location_t instead of Bison's.
18285 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18286 Use location_t instead of ints.
18287
18288 2002-06-14 Akim Demaille <akim@epita.fr>
18289
18290 * data/bison.simple, data/bison.c++: Be sure to restore the
18291 current #line when returning to the skeleton contents after having
18292 exposed the input file's #line.
18293
18294 2002-06-12 Akim Demaille <akim@epita.fr>
18295
18296 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18297 eager.
18298 * tests/actions.at (Exotic Dollars): New.
18299
18300 2002-06-12 Akim Demaille <akim@epita.fr>
18301
18302 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18303 ['"/] too eagerly.
18304 * tests/input.at (Torturing the Scanner): New.
18305
18306 2002-06-11 Akim Demaille <akim@epita.fr>
18307
18308 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18309 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18310 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18311 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18312 * src/reader.c (reader): Use it.
18313
18314 2002-06-11 Akim Demaille <akim@epita.fr>
18315
18316 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18317 Adjust all callers.
18318 (scanner_last_string_free): New.
18319
18320 2002-06-11 Akim Demaille <akim@epita.fr>
18321
18322 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18323 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18324 (last_string, YY_OBS_FREE): New.
18325 Use them when returning an ID.
18326
18327 2002-06-11 Akim Demaille <akim@epita.fr>
18328
18329 Have Bison grammars parsed by a Bison grammar.
18330
18331 * src/reader.c, src/reader.h (prologue_augment): New.
18332 * src/reader.c (copy_definition): Remove.
18333
18334 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18335 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18336 (grammar_current_rule_prec_set, grammar_current_rule_check)
18337 (grammar_current_rule_symbol_append)
18338 (grammar_current_rule_action_append): Export.
18339 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18340 (symbol_list_action_append): Remove.
18341 Hook the routines from reader.
18342 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18343 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18344
18345 * src/reader.c (read_declarations): Remove, unused.
18346
18347 * src/parse-gram.y: Handle the epilogue.
18348 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18349 (grammar_start_symbol_set): this.
18350 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18351 * src/reader.c (readgram): Remove, unused.
18352 (reader): Adjust to insert eoftoken and axiom where appropriate.
18353
18354 * src/reader.c (copy_dollar): Replace with...
18355 * src/scan-gram.h (handle_dollar): this.
18356 * src/parse-gram.y: Remove `%thong'.
18357
18358 * src/reader.c (copy_at): Replace with...
18359 * src/scan-gram.h (handle_at): this.
18360
18361 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18362 New.
18363
18364 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18365 time being.
18366
18367 * src/reader.h, src/reader.c (grammar_rule_end): New.
18368
18369 * src/parse.y (current_type, current_class): New.
18370 Implement `%nterm', `%token' support.
18371 Merge `%term' into `%token'.
18372 (string_as_id): New.
18373 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18374 type name.
18375
18376 * src/parse-gram.y: Be sure to handle properly the beginning of
18377 rules.
18378
18379 * src/parse-gram.y: Handle %type.
18380 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18381
18382 * src/parse-gram.y: More directives support.
18383 * src/options.c: No longer handle source directives.
18384
18385 * src/parse-gram.y: Fix %output.
18386
18387 * src/parse-gram.y: Handle %union.
18388 Use the prologue locations.
18389 * src/reader.c (parse_union_decl): Remove.
18390
18391 * src/reader.h, src/reader.c (epilogue_set): New.
18392 * src/parse-gram.y: Use it.
18393
18394 * data/bison.simple, data/bison.c++: b4_stype is now either not
18395 defined, then default to int, or to the contents of %union,
18396 without `union' itself.
18397 Adjust.
18398 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18399
18400 * src/output.c (actions_output): Don't output braces, as they are
18401 already handled by the scanner.
18402
18403 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18404 characters to themselves.
18405
18406 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18407 that the epilogue has a proper #line.
18408
18409 * src/parse-gram.y: Handle precedence/associativity.
18410
18411 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18412 a terminal.
18413 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18414 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18415 at all to define terminals that cannot be emitted.
18416
18417 * src/scan-gram.l: Escape M4 characters.
18418
18419 * src/scan-gram.l: Working properly with escapes in user
18420 strings/characters.
18421
18422 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18423 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18424 grammar.
18425 Use more modest sizes, as for the time being the parser does not
18426 release memory, and therefore the process swallows a huge amount
18427 of memory.
18428
18429 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18430 stricter %token grammar.
18431
18432 * src/symtab.h (associativity): Add `undef_assoc'.
18433 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18434 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18435
18436 * tests/regression.at (Invalid %directive): Remove, as it is now
18437 meaningless.
18438 (Invalid inputs): Adjust to the new error messages.
18439 (Token definitions): The new grammar doesn't allow too many
18440 eccentricities.
18441
18442 * src/lex.h, src/lex.c: Remove.
18443 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18444 (copy_character, copy_string2, copy_string, copy_identifier)
18445 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18446 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18447 (parse_action): Remove.
18448 * po/POTFILES.in: Adjust.
18449
18450 2002-06-11 Akim Demaille <akim@epita.fr>
18451
18452 * src/reader.c (parse_action): Don't store directly into the
18453 rule's action member: return the action as a string.
18454 Don't require `rule_length' as an argument: compute it.
18455 (grammar_current_rule_symbol_append)
18456 (grammar_current_rule_action_append): New, eved out from
18457 (readgram): here.
18458 Remove `action_flag', `rulelength', unused now.
18459
18460 2002-06-11 Akim Demaille <akim@epita.fr>
18461
18462 * src/reader.c (grammar_current_rule_prec_set).
18463 (grammar_current_rule_check): New, eved out from...
18464 (readgram): here.
18465 Remove `xaction', `first_rhs': useless.
18466 * tests/input.at (Type clashes): New.
18467 * tests/existing.at (GNU Cim Grammar): Adjust.
18468
18469 2002-06-11 Akim Demaille <akim@epita.fr>
18470
18471 * src/reader.c (grammar_midrule_action): New, Eved out from
18472 (readgram): here.
18473
18474 2002-06-11 Akim Demaille <akim@epita.fr>
18475
18476 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18477 New.
18478 (readgram): Use them as replacement of inlined code, crule and
18479 crule1.
18480
18481 2002-06-11 Akim Demaille <akim@epita.fr>
18482
18483 * src/reader.c (grammar_end, grammar_symbol_append): New.
18484 (readgram): Use them.
18485 Make the use of `p' as local as possible.
18486
18487 2002-06-10 Akim Demaille <akim@epita.fr>
18488
18489 GCJ's parser requires the tokens to be defined before the prologue.
18490
18491 * data/bison.simple: Output the token definition before the user's
18492 prologue.
18493 * tests/regression.at (Braces parsing, Duplicate string)
18494 (Mixing %token styles): Check the output from bison.
18495 (Early token definitions): New.
18496
18497 2002-06-10 Akim Demaille <akim@epita.fr>
18498
18499 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18500 assigning twice the same user number to a token, so that we can
18501 use it in...
18502 * src/lex.c (lex): here.
18503 Also use `symbol_class_set' instead of hand written code.
18504 * src/reader.c (parse_assoc_decl): Likewise.
18505
18506 2002-06-10 Akim Demaille <akim@epita.fr>
18507
18508 * src/symtab.c, src/symtab.c (symbol_class_set)
18509 (symbol_user_token_number_set): New.
18510 * src/reader.c (parse_token_decl): Use them.
18511 Use a switch instead of ifs.
18512 Use a single argument.
18513
18514 2002-06-10 Akim Demaille <akim@epita.fr>
18515
18516 Remove `%thong' support as it is undocumented, unused, duplicates
18517 `%token's job, and creates useless e-mail traffic with people who
18518 want to know what it is, why it is undocumented, unused, and
18519 duplicates `%token's job.
18520
18521 * src/reader.c (parse_thong_decl): Remove.
18522 * src/options.c (option_table): Remove "thong".
18523 * src/lex.h (tok_thong): Remove.
18524
18525 2002-06-10 Akim Demaille <akim@epita.fr>
18526
18527 * src/symtab.c, src/symtab.c (symbol_type_set)
18528 (symbol_precedence_set): New.
18529 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18530 (value_components_used): Remove, unused.
18531
18532 2002-06-09 Akim Demaille <akim@epita.fr>
18533
18534 Move symbols handling code out of the reader.
18535
18536 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18537 (axiom): Move to...
18538 * src/symtab.h, src/symtab.c: here.
18539
18540 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18541 * src/reader.c (startval): Rename as...
18542 * src/symtab.h, src/symtab.c (startsymbol): this.
18543 * src/reader.c: Adjust.
18544
18545 * src/reader.c (symbol_check_defined, symbol_make_alias)
18546 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18547 (token_translations_init)
18548 Move to...
18549 * src/symtab.c: here.
18550 * src/reader.c (packsymbols): Move to...
18551 * src/symtab.h, src/symtab.c (symbols_pack): here.
18552 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18553 argument.
18554
18555 2002-06-03 Akim Demaille <akim@epita.fr>
18556
18557 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18558 then statements.
18559
18560 2002-06-03 Akim Demaille <akim@epita.fr>
18561
18562 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18563 structs with non literals.
18564 * src/scan-skel.l: never-interactive.
18565 * src/conflicts.c (enum conflict_resolution_e): No trailing
18566 comma.
18567 * src/getargs.c (usage): Split long literal strings.
18568 Reported by Hans Aberg.
18569
18570 2002-05-28 Akim Demaille <akim@epita.fr>
18571
18572 * data/bison.c++: Use C++ ostreams.
18573 (cdebug_): New member.
18574
18575 2002-05-28 Akim Demaille <akim@epita.fr>
18576
18577 * src/output.c (output_skeleton): Be sure to allocate enough room
18578 for `/' _and_ for `\0' in full_skeleton.
18579
18580 2002-05-28 Akim Demaille <akim@epita.fr>
18581
18582 * data/bison.c++: Catch up with bison.simple:
18583 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18584 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18585 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18586 and popping traces.
18587
18588 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18589
18590 * src/output.c (output_skeleton): Put an explicit path in front of
18591 the skeleton file name, rather than relying on the -I directory,
18592 to partially alleviate effects of having a skeleton file lying around
18593 in the current directory.
18594
18595 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18596
18597 * src/conflicts.c (log_resolution): Correct typo:
18598 obstack_printf should be obstack_fgrow1.
18599
18600 2002-05-26 Akim Demaille <akim@epita.fr>
18601
18602 * src/state.h (state_t): `solved_conflicts' is a new member.
18603 * src/LR0.c (new_state): Set it to 0.
18604 * src/conflicts.h, src/conflicts.c (print_conflicts)
18605 (free_conflicts, solve_conflicts): Rename as...
18606 (conflicts_print, conflicts_free, conflicts_solve): these.
18607 Adjust callers.
18608 * src/conflicts.c (enum conflict_resolution_e)
18609 (solved_conflicts_obstack): New, used by...
18610 (log_resolution): this.
18611 Adjust to attach the conflict resolution to each state.
18612 Complete the description with the precedence/associativity
18613 information.
18614 (resolve_sr_conflict): Adjust.
18615 * src/print.c (print_state): Output its solved_conflicts.
18616 * tests/conflicts.at (Unresolved SR Conflicts)
18617 (Solved SR Conflicts): Exercise --report=all.
18618
18619 2002-05-26 Akim Demaille <akim@epita.fr>
18620
18621 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18622 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18623 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18624 (token_number_t, item_number_as_token_number)
18625 (token_number_as_item_number, muscle_insert_token_number_table):
18626 Rename as...
18627 (symbol_number_t, item_number_as_symbol_number)
18628 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18629 these, since it is more appropriate.
18630
18631 2002-05-26 Akim Demaille <akim@epita.fr>
18632
18633 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18634 `Error:' lines.
18635 * data/bison.simple (yystos) [YYDEBUG]: New.
18636 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18637 error recovery.
18638 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18639
18640 2002-05-25 Akim Demaille <akim@epita.fr>
18641
18642 * doc/bison.texinfo (Debugging): Split into...
18643 (Tracing): this new section, its former contents, and...
18644 (Understanding): this new section.
18645 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18646 by...
18647 (report_flag): this.
18648 Adjust all dependencies.
18649 (report_args, report_types, report_argmatch): New.
18650 (usage, getargs): Report/support -r, --report.
18651 * src/options.h
18652 (struct option_table_struct): Rename as..,
18653 (struct option_table_s): this.
18654 Rename the `set_flag' member to `flag' to match with getopt_long's
18655 struct.
18656 * src/options.c (option_table): Split verbose into an entry for
18657 %verbose, and another for --verbose.
18658 Support --report/-r, so remove -r from the obsolete --raw.
18659 * src/print.c: Attach full item sets and lookaheads reports to
18660 report_flag instead of trace_flag.
18661 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18662
18663 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18664 and Paul Eggert <eggert@twinsun.com>
18665
18666 * data/bison.simple (yyparse): Correct error handling to conform to
18667 POSIX and yacc. Specifically, after syntax error is discovered,
18668 do not reduce further before shifting the error token.
18669 Clean up the code a bit by removing the labels yyerrdefault,
18670 yyerrhandle, yyerrpop.
18671 * NEWS: Document the above.
18672
18673 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18674
18675 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18676 type; it isn't always big enough, since it doesn't necessarily
18677 include non-terminals.
18678 (yytranslate): Expand definition of yy_token_number_type, so that
18679 the latter can be removed.
18680 (yy_token_number_type): Remove, only one use.
18681 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18682 don't use TokenNumberType as element type.
18683
18684 * tests/regression.at: Modify expected output to agree with change
18685 to yyr1 and yytranslate.
18686
18687 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18688
18689 * src/reader.c (parse_action): Use copy_character instead of
18690 obstack_1grow.
18691
18692 2002-05-13 Akim Demaille <akim@epita.fr>
18693
18694 * tests/regression.at (Token definitions): Prototype yylex and
18695 yyerror.
18696
18697 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18698
18699 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
18700 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18701 32-bit arithmetic.
18702 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18703
18704 2002-05-07 Akim Demaille <akim@epita.fr>
18705
18706 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18707 avoid GCC warnings.
18708
18709 2002-05-07 Akim Demaille <akim@epita.fr>
18710
18711 Kill GCC warnings.
18712
18713 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18714 over the RHS of each rule.
18715 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18716 * src/state.h (state_t): Member `nitems' is unsigned short.
18717 * src/LR0.c (get_state): Adjust.
18718 * src/reader.c (packgram): Likewise.
18719 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18720 `Type'.
18721 (muscle_insert_int_table): Remove, unused.
18722 (prepare_rules): Remove `max'.
18723
18724 2002-05-06 Akim Demaille <akim@epita.fr>
18725
18726 * src/closure.c (print_firsts): Display of the symbol tags.
18727 (bitmatrix_print): Move to...
18728 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18729 here.
18730 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18731
18732 2002-05-06 Akim Demaille <akim@epita.fr>
18733
18734 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18735 hash_do_for_each.
18736
18737 2002-05-06 Akim Demaille <akim@epita.fr>
18738
18739 * src/LR0.c (new_state, get_state): Instead of using the global
18740 `kernel_size' and `kernel_base', have two new arguments:
18741 `core_size' and `core'.
18742 Adjust callers.
18743
18744 2002-05-06 Akim Demaille <akim@epita.fr>
18745
18746 * src/reader.c (packgram): No longer end `ritem' with a 0
18747 sentinel: it is not used.
18748
18749 2002-05-05 Akim Demaille <akim@epita.fr>
18750
18751 New experimental feature: display the lookaheads in the report and
18752 graph.
18753
18754 * src/print (print_core): When --trace-flag, display the rules
18755 lookaheads.
18756 * src/print_graph.c (print_core): Likewise.
18757 Swap the arguments.
18758 Adjust caller.
18759
18760 2002-05-05 Akim Demaille <akim@epita.fr>
18761
18762 * tests/torture.at (Many lookaheads): New test.
18763
18764 2002-05-05 Akim Demaille <akim@epita.fr>
18765
18766 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18767 (GENERATE_MUSCLE_INSERT_TABLE): this.
18768 (output_int_table, output_unsigned_int_table, output_short_table)
18769 (output_token_number_table, output_item_number_table): Replace with...
18770 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18771 (muscle_insert_short_table, muscle_insert_token_number_table)
18772 (muscle_insert_item_number_table): these.
18773 Adjust all callers.
18774 (prepare_tokens): Don't free `translations', since...
18775 * src/reader.h, src/reader.c (grammar_free): do it.
18776 Move to...
18777 * src/gram.h, src/gram.c (grammar_free): here.
18778 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18779 b4_translate_max.
18780
18781 2002-05-05 Akim Demaille <akim@epita.fr>
18782
18783 * src/output.c (output_unsigned_int_table): New.
18784 (prepare_rules): `i' is unsigned.
18785 `prhs', `rline', `r2' are unsigned int.
18786 Rename muscle `rhs_number_max' as `rhs_max'.
18787 Output muscles `prhs_max', `rline_max', and `r2_max'.
18788 Free rline and r1.
18789 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18790 to compute types instead of constant types.
18791 * tests/regression.at (Web2c Actions): Adjust.
18792
18793 2002-05-04 Akim Demaille <akim@epita.fr>
18794
18795 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18796 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18797 Adjust dependencies.
18798 * src/output.c (token_definitions_output): Be sure not to output a
18799 `#define 'a'' when fed with `%token 'a' "a"'.
18800 * tests/regression.at (Token definitions): New.
18801
18802 2002-05-03 Paul Eggert <eggert@twinsun.com>
18803
18804 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18805 for K&R C.
18806
18807 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18808
18809 * Makefile.am (SUBDIRS): Remove intl.
18810 (EXTRA_DIST): Add config/config.rpath.
18811
18812 2002-05-03 Akim Demaille <akim@epita.fr>
18813
18814 * data/bison.simple (m4_if): Don't output empty enums.
18815 And actually, output valid enum definitions :(.
18816
18817 2002-05-03 Akim Demaille <akim@epita.fr>
18818
18819 * configure.bat: Remove, completely obsolete.
18820 * Makefile.am (EXTRA_DIST): Adjust.
18821 Don't distribute config.rpath...
18822 * config/Makefile.am (EXTRA_DIST): Do it.
18823
18824 2002-05-03 Akim Demaille <akim@epita.fr>
18825
18826 * configure.in (GETTEXT_VERSION): New.
18827 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18828
18829 2002-05-03 Akim Demaille <akim@epita.fr>
18830
18831 * data/bison.simple (b4_token_enum): New.
18832 (b4_token_defines): Use it to output tokens both as #define and
18833 enums.
18834 Suggested by Paul Eggert.
18835 * src/output.c (token_definitions_output): Don't output spurious
18836 white spaces.
18837
18838 2002-05-03 Akim Demaille <akim@epita.fr>
18839
18840 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18841
18842 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
18843
18844 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18845 Update the stack class, give a try to deque as the default container.
18846
18847 2002-05-02 Akim Demaille <akim@epita.fr>
18848
18849 * data/bison.simple (yyparse): Do not implement @$ = @1.
18850 (YYLLOC_DEFAULT): Adjust to do it.
18851 * doc/bison.texinfo (Location Default Action): Fix.
18852
18853 2002-05-02 Akim Demaille <akim@epita.fr>
18854
18855 * src/reader.c (parse_braces): Merge into...
18856 (parse_action): this.
18857
18858 2002-05-02 Akim Demaille <akim@epita.fr>
18859
18860 * configure.in (ALL_LINGUAS): Remove.
18861 * po/LINGUAS, hr.po: New.
18862
18863 2002-05-02 Akim Demaille <akim@epita.fr>
18864
18865 Remove the so called hairy (semantic) parsers.
18866
18867 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18868 * src/gram.h, src/gram.c (semantic_parser): Remove.
18869 (rule_t): Remove the guard and guard_line members.
18870 * src/lex.h (token_t): remove tok_guard.
18871 * src/options.c (option_table): Remove %guard and %semantic_parser
18872 support.
18873 * src/output.c, src/output.h (guards_output): Remove.
18874 (prepare): Adjust.
18875 (token_definitions_output): Don't output the `T'
18876 tokens (???).
18877 (output_skeleton): Don't output the guards.
18878 * src/files.c, src/files.c (attrsfile): Remove.
18879 * src/reader.c (symbol_list): Remove the guard and guard_line
18880 members.
18881 Adjust dependencies.
18882 (parse_guard): Remove.
18883 * data/bison.hairy: Remove.
18884 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18885 BISON_HAIRY.
18886
18887 2002-05-02 Akim Demaille <akim@epita.fr>
18888
18889 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18890 (parse_guard): Rename the formal argument `stack_offset' as
18891 `rule_length', which is more readable.
18892 Adjust callers.
18893 (copy_at, copy_dollar): Instead of outputting the hard coded
18894 values of $$, $n and so forth, output invocation to b4_lhs_value,
18895 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
18896 Note: this patch partially drops `semantic-parser' support: it
18897 always does `rule_length - n', where semantic parsers ought to
18898 always use `-n'.
18899 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18900 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18901
18902 2002-05-02 Akim Demaille <akim@epita.fr>
18903
18904 * configure.in (AC_INIT): Bump to 1.49b.
18905 (AM_INIT_AUTOMAKE): Short invocation.
18906
18907 2002-05-02 Akim Demaille <akim@epita.fr>
18908
18909 Version 1.49a.
18910
18911 2002-05-01 Akim Demaille <akim@epita.fr>
18912
18913 * src/skeleton.h: Remove.
18914
18915 2002-05-01 Akim Demaille <akim@epita.fr>
18916
18917 * src/skeleton.h: Fix the #endif.
18918 Reported by Magnus Fromreide.
18919
18920 2002-04-26 Paul Eggert <eggert@twinsun.com>
18921
18922 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
18923 Define if we define YYSTYPE and YYLTYPE, respectively.
18924 (YYCOPY): Fix [] quoting problem in the non-GCC case.
18925
18926 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
18927
18928 * src/scan-skel.l: Postprocess quadrigraphs.
18929
18930 * src/reader.c (copy_character): New function, used to output
18931 single characters while replacing `[' and `]' with quadrigraphs, to
18932 avoid troubles with M4 quotes.
18933 (copy_comment): Output characters with copy_character.
18934 (read_additionnal_code): Likewise.
18935 (copy_string2): Likewise.
18936 (copy_definition): Likewise.
18937
18938 * tests/calc.at: Exercise M4 quoting.
18939
18940 2002-04-25 Akim Demaille <akim@epita.fr>
18941
18942 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
18943 between `!' and the command.
18944 Reported by Paul Eggert.
18945
18946 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
18947
18948 * tests/calc.at: Exercise prologue splitting.
18949
18950 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
18951 `b4_post_prologue' instead of `b4_prologue'.
18952
18953 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
18954 muscles.
18955 (output): Free pre_prologue_obstack and post_prologue_obstack.
18956 * src/files.h, src/files.c (attrs_obstack): Remove.
18957 (pre_prologue_obstack, post_prologue_obstack): New.
18958 * src/reader.c (copy_definition): Add a parameter to specify the
18959 obstack to fill, instead of using attrs_obstack unconditionally.
18960 (read_declarations): Pass pre_prologue_obstack to copy_definition if
18961 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
18962
18963 2002-04-23 Paul Eggert <eggert@twinsun.com>
18964
18965 * data/bison.simple: Remove unnecessary commentary and white
18966 space differences from 1_29-branch.
18967 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
18968
18969 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
18970 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
18971 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
18972 constructors or destructors.
18973
18974 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
18975
18976 2002-04-23 Akim Demaille <akim@epita.fr>
18977
18978 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
18979 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
18980 location with columns.
18981 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
18982 All reported by Paul Eggert.
18983
18984 2002-04-22 Akim Demaille <akim@epita.fr>
18985
18986 * src/reduce.c (dump_grammar): Move to...
18987 * src/gram.h, src/gram.c (grammar_dump): here.
18988 Be sure to separate long item numbers.
18989 Don't read the members of a rule's prec if its nil.
18990
18991 2002-04-22 Akim Demaille <akim@epita.fr>
18992
18993 * src/output.c (table_size, table_grow): New.
18994 (MAXTABLE): Remove, replace uses with table_size.
18995 (pack_vector): Instead of dying when the table is too big, grow it.
18996
18997 2002-04-22 Akim Demaille <akim@epita.fr>
18998
18999 * data/bison.simple (yyr1): Its type is that of a token number.
19000 * data/bison.c++ (r1_): Likewise.
19001 * tests/regression.at (Web2c Actions): Adjust.
19002
19003 2002-04-22 Akim Demaille <akim@epita.fr>
19004
19005 * src/reader.c (token_translations_init): 256 is now the default
19006 value for the error token, i.e., it will be assigned another
19007 number if the user assigned 256 to one of her tokens.
19008 (reader): Don't force 256 to error.
19009 * doc/bison.texinfo (Symbols): Adjust.
19010 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19011 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19012 etc. instead of 10, 20, 30 (which was used to `jump' over error
19013 (256) and undefined (2)).
19014
19015 2002-04-22 Akim Demaille <akim@epita.fr>
19016
19017 Propagate more token_number_t.
19018
19019 * src/gram.h (token_number_as_item_number)
19020 (item_number_as_token_number): New.
19021 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19022 Use it to create output_item_number_table and
19023 output_token_number_table.
19024 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19025 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19026 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19027 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19028
19029 2002-04-22 Akim Demaille <akim@epita.fr>
19030
19031 * src/output.h, src/output.c (get_lines_number): Remove.
19032
19033 2002-04-19 Akim Demaille <akim@epita.fr>
19034
19035 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19036 as Lex/Flex'.
19037 (Debugging): More details about enabling the debugging features.
19038 (Table of Symbols): Describe $$, $n, @$, and @n.
19039 Suggested by Tim Josling.
19040
19041 2002-04-19 Akim Demaille <akim@epita.fr>
19042
19043 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19044
19045 2002-04-10 Akim Demaille <akim@epita.fr>
19046
19047 * src/system.h: Rely on HAVE_LIMITS_H.
19048 Suggested by Paul Eggert.
19049
19050 2002-04-09 Akim Demaille <akim@epita.fr>
19051
19052 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19053 full stderr, and strip it according to the bison options, instead
19054 of composing the error message from different bits.
19055 This makes it easier to check for several error messages.
19056 Adjust all the invocations.
19057 Add an invocation exercising the error token.
19058 Add an invocation demonstrating a stupid error message.
19059 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19060 Adjust the tests.
19061 Error message are for stderr, not stdout.
19062
19063 2002-04-09 Akim Demaille <akim@epita.fr>
19064
19065 * src/gram.h, src/gram.c (error_token_number): Remove, use
19066 errtoken->number.
19067 * src/reader.c (reader): Don't specify the user token number (2)
19068 for $undefined, as it uselessly prevents using it.
19069 * src/gram.h (token_number_t): Move to...
19070 * src/symtab.h: here.
19071 (state_t.number): Is a token_number_t.
19072 * src/print.c, src/reader.c: Use undeftoken->number instead of
19073 hard coded 2.
19074 (Even though this 2 is not the same as above: the number of the
19075 undeftoken remains being 2, it is its user token number which
19076 might not be 2).
19077 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19078 `user_token_number_max'.
19079 Output `undef_token_number'.
19080 * data/bison.simple, data/bison.c++: Use them.
19081 Be sure to map invalid yylex return values to
19082 `undef_token_number'. This saves us from gratuitous SEGV.
19083
19084 * tests/conflicts.at (Solved SR Conflicts)
19085 (Unresolved SR Conflicts): Adjust.
19086 * tests/regression.at (Web2c Actions): Adjust.
19087
19088 2002-04-08 Akim Demaille <akim@epita.fr>
19089
19090 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19091 Adding #line.
19092 Remove the duplicate `typedefs'.
19093 (RhsNumberType): Fix the declaration and various other typos.
19094 Use __ofile__.
19095 * data/bison.simple: Use __ofile__.
19096 * src/scan-skel.l: Handle __ofile__.
19097
19098 2002-04-08 Akim Demaille <akim@epita.fr>
19099
19100 * src/gram.h (item_number_t): New, the type of item numbers in
19101 RITEM. Note that it must be able to code symbol numbers as
19102 positive number, and the negation of rule numbers as negative
19103 numbers.
19104 Adjust all dependencies (pretty many).
19105 * src/reduce.c (rule): Remove this `short *' pointer: use
19106 item_number_t.
19107 * src/system.h (MINSHORT, MAXSHORT): Remove.
19108 Include `limits.h'.
19109 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19110 (shortcpy): Remove.
19111 (MAXTABLE): Move to...
19112 * src/output.c (MAXTABLE): here.
19113 (prepare_rules): Use output_int_table to output rhs.
19114 * data/bison.simple, data/bison.c++: Adjust.
19115 * tests/torture.at (Big triangle): Move the limit from 254 to
19116 500.
19117 * tests/regression.at (Web2c Actions): Ajust.
19118
19119 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19120 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19121 passes, but produces negative #line number, once fixed, GCC is
19122 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19123 C), it passes.
19124 * src/state.h (state_h): Code input lines on ints, not shorts.
19125
19126 2002-04-08 Akim Demaille <akim@epita.fr>
19127
19128 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19129 and then the grammar.
19130
19131 2002-04-08 Akim Demaille <akim@epita.fr>
19132
19133 * src/system.h: No longer using strndup.
19134
19135 2002-04-07 Akim Demaille <akim@epita.fr>
19136
19137 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19138 * src/output.c (output_table_data): Return the longest number.
19139 (prepare_tokens): Output `token_number_max').
19140 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19141 New.
19142 Use them to define yy_token_number_type/TokenNumberType.
19143 Use this type for yytranslate.
19144 * tests/torture.at (Big triangle): Push the limit from 124 to
19145 253.
19146 * tests/regression.at (Web2c Actions): Adjust.
19147
19148 2002-04-07 Akim Demaille <akim@epita.fr>
19149
19150 * tests/torture.at (Big triangle): New.
19151 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19152 * tests/existing.at: here.
19153
19154 2002-04-07 Akim Demaille <akim@epita.fr>
19155
19156 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19157 nritems.
19158 Adjust dependencies.
19159
19160 2002-04-07 Akim Demaille <akim@epita.fr>
19161
19162 * src/reader.c: Normalize increments to prefix form.
19163
19164 2002-04-07 Akim Demaille <akim@epita.fr>
19165
19166 * src/reader.c, symtab.c: Remove debugging code.
19167
19168 2002-04-07 Akim Demaille <akim@epita.fr>
19169
19170 Rename all the `bucket's as `symbol_t'.
19171
19172 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19173 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19174 * src/symtab.c, src/symtab.h (bucket): Rename as...
19175 (symbol_t): this.
19176 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19177 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19178 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19179 (buckets_new, buckets_free, buckets_do): Rename as...
19180 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19181 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19182 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19183 (symbols_new, symbols_free, symbols_do): these.
19184
19185 2002-04-07 Akim Demaille <akim@epita.fr>
19186
19187 Use lib/hash for the symbol table.
19188
19189 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19190 EOF.
19191 * src/lex.c (lex): Set the `number' member of new terminals.
19192 * src/reader.c (bucket_check_defined, bucket_make_alias)
19193 (bucket_check_alias_consistence, bucket_translation): New.
19194 (reader, grammar_free, readgram, token_translations_init)
19195 (packsymbols): Adjust.
19196 (reader): Number the predefined tokens.
19197 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19198 for predefined tokens.
19199 * src/symtab.h (bucket): Remove all the hash table related
19200 members.
19201 * src/symtab.c (symtab): Replace by...
19202 (bucket_table): this.
19203 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19204 (buckets_new, buckets_do): New.
19205
19206 2002-04-07 Akim Demaille <akim@epita.fr>
19207
19208 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19209 (start_symbol, max_user_token_number, semantic_parser)
19210 (error_token_number): Initialize.
19211 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19212 Initialize.
19213 (reader): Don't.
19214 (errtoken, eoftoken, undeftoken, axiom): Extern.
19215
19216 2002-04-07 Akim Demaille <akim@epita.fr>
19217
19218 * src/gram.h (rule_s): prec and precsym are now pointers
19219 to the bucket giving the priority/associativity.
19220 Member `associativity' removed: useless.
19221 * src/reduce.c, src/conflicts.c: Adjust.
19222
19223 2002-04-07 Akim Demaille <akim@epita.fr>
19224
19225 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19226 Properly escape the symbols' TAG when outputting them.
19227
19228 2002-04-07 Akim Demaille <akim@epita.fr>
19229
19230 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19231
19232 2002-04-07 Akim Demaille <akim@epita.fr>
19233
19234 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19235 (LArule): this, which is an array to rule_t*.
19236 * src/print.c, src/conflicts.c: Adjust.
19237
19238 2002-04-07 Akim Demaille <akim@epita.fr>
19239
19240 * src/gram.h (rule_t): Rename `number' as `user_number'.
19241 `number' is a new member.
19242 Adjust dependencies.
19243 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19244
19245 2002-04-07 Akim Demaille <akim@epita.fr>
19246
19247 As a result of the previous patch, it is no longer needed
19248 to reorder ritem itself.
19249
19250 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19251
19252 2002-04-07 Akim Demaille <akim@epita.fr>
19253
19254 Be sure never to walk through RITEMS, but use only data related to
19255 the rules themselves. RITEMS should be banished.
19256
19257 * src/output.c (output_token_translations): Rename as...
19258 (prepare_tokens): this.
19259 In addition to `translate', prepare the muscles `tname' and
19260 `toknum', which were handled by...
19261 (output_rule_data): this.
19262 Remove, and move the remainder of its outputs into...
19263 (prepare_rules): this new routines, which also merges content from
19264 (output_gram): this.
19265 (prepare_rules): Be sure never to walk through RITEMS.
19266 (output_stos): Rename as...
19267 (prepare_stos): this.
19268 (output): Always invoke prepare_states, after all, just don't use it
19269 in the output if you don't need it.
19270
19271 2002-04-07 Akim Demaille <akim@epita.fr>
19272
19273 * src/LR0.c (new_state): Display `nstates' as the name of the
19274 newly created state.
19275 Adjust to initialize first_state and last_state if needed.
19276 Be sure to distinguish the initial from the final state.
19277 (new_states): Create the itemset of the initial state, and use
19278 new_state.
19279 * src/closure.c (closure): Now that the initial state has its
19280 items properly set, there is no need for a special case when
19281 creating `ruleset'.
19282
19283 As a result, now the rule 0, reducing to $axiom, is visible in the
19284 outputs. Adjust the test suite.
19285
19286 * tests/conflicts.at (Solved SR Conflicts)
19287 (Unresolved SR Conflicts): Adjust.
19288 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19289 * tests/conflicts.at (S/R in initial): New.
19290
19291 2002-04-07 Akim Demaille <akim@epita.fr>
19292
19293 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19294 the RHS of the rules.
19295 * src/output.c (output_gram): Likewise.
19296
19297 2002-04-07 Akim Demaille <akim@epita.fr>
19298
19299 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19300 bucket.
19301 Adjust all dependencies.
19302 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19303 `number' of the buckets too.
19304 * src/gram.h: Include `symtab.h'.
19305 (associativity): Move to...
19306 * src/symtab.h: here.
19307 No longer include `gram.h'.
19308
19309 2002-04-07 Akim Demaille <akim@epita.fr>
19310
19311 * src/gram.h, src/gram.c (rules_rhs_length): New.
19312 (ritem_longest_rhs): Use it.
19313 * src/gram.h (rule_t): `number' is a new member.
19314 * src/reader.c (packgram): Set it.
19315 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19316 the end of `rules', and count them out of `nrules'.
19317 (reduce_output, dump_grammar): Adjust.
19318 * src/print.c (print_grammar): It is no longer needed to check for
19319 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19320 * tests/reduce.at (Reduced Automaton): New test.
19321
19322 2002-04-07 Akim Demaille <akim@epita.fr>
19323
19324 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19325 lacking `+ 1' to nrules, Bison reported as useless a token if it
19326 was used solely to set the precedence of the last rule...
19327
19328 2002-04-07 Akim Demaille <akim@epita.fr>
19329
19330 * data/bison.c++, data/bison.simple: Don't output the current file
19331 name in #line, to avoid useless diffs between two identical
19332 outputs under different names.
19333
19334 2002-04-07 Akim Demaille <akim@epita.fr>
19335
19336 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19337 Normalize loops to using `< nrules + 1', not `<= nrules'.
19338
19339 2002-04-07 Akim Demaille <akim@epita.fr>
19340
19341 * TODO: Update.
19342
19343 2002-04-07 Akim Demaille <akim@epita.fr>
19344
19345 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19346 bucket.value as bucket.number.
19347
19348 2002-04-07 Akim Demaille <akim@epita.fr>
19349
19350 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19351 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19352 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19353 RHS, instead of being an index in RITEMS.
19354
19355 2002-04-04 Paul Eggert <eggert@twinsun.com>
19356
19357 * doc/bison.texinfo: Update copyright date.
19358 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19359 (Symbols): Warn about running Bison in one character set,
19360 but compiling and/or running in an incompatible one.
19361 Warn about character code 256, too.
19362
19363 2002-04-03 Paul Eggert <eggert@twinsun.com>
19364
19365 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19366 YYERROR_VERBOSE is nonzero, not whether it is defined.
19367
19368 Merge changes from bison-1_29-branch.
19369
19370 2002-03-20 Paul Eggert <eggert@twinsun.com>
19371
19372 Merge fixes from Debian bison_1.34-1.diff.
19373
19374 * configure.in (AC_PREREQ): 2.53.
19375
19376 2002-03-20 Akim Demaille <akim@epita.fr>
19377
19378 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19379
19380 2002-03-19 Paul Eggert <eggert@twinsun.com>
19381
19382 * src/bison.simple (YYCOPY): New macro.
19383 (YYSTACK_RELOCATE): Use it.
19384 Remove Type arg; no longer needed. All callers changed.
19385 (yymemcpy): Remove; no longer needed.
19386
19387 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19388 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19389
19390 2002-03-19 Akim Demaille <akim@epita.fr>
19391
19392 Test and fix the #line outputs.
19393
19394 * tests/atlocal.at (GCC): New.
19395 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
19396 (Prologue synch line, %union synch line, Postprologue synch line)
19397 (Action synch line, Epilogue synch line): New tests.
19398 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19399 * data/bison.simple, data/bison.c++: Use it.
19400
19401 2002-03-19 Akim Demaille <akim@epita.fr>
19402
19403 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19404 (Solved SR Conflicts, %expect not enough, %expect right)
19405 (%expect too much): Move to...
19406 * tests/conflicts.at: this new file.
19407
19408 2002-03-19 Akim Demaille <akim@epita.fr>
19409
19410 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19411 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19412 that we can move to enums for instance.
19413 * src/output.c (token_definitions_output): Output a list of
19414 `token-name, token-number' instead of the #define.
19415 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19416
19417 2002-03-14 Akim Demaille <akim@epita.fr>
19418
19419 Use Gettext 0.11.1.
19420
19421 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
19422
19423 * data/bison.c++: Make the user able to add members to the generated
19424 parser by subclassing.
19425
19426 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
19427
19428 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19429 a character.
19430 Reported by Nicolas Tisserand and Nicolas Burrus.
19431
19432 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19433
19434 * src/reader.c: Warn about lacking semi-colons, do not complain.
19435
19436 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19437
19438 * data/bison.c++: Remove a debug line.
19439
19440 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19441
19442 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19443 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19444 provide a default implementation.
19445
19446 2002-03-04 Akim Demaille <akim@epita.fr>
19447
19448 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19449 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19450 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19451 * tests/semantic.at (Parsing Guards): Similarly.
19452 * src/reader.at (readgram): Complain if the last rule is not ended
19453 with a semi-colon.
19454
19455 2002-03-04 Akim Demaille <akim@epita.fr>
19456
19457 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19458 * src/closure.c: here.
19459 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19460 RTC.
19461 * src/warshall.h, src/warshall.c: Remove.
19462 * tests/sets.at (Broken Closure): Adjust.
19463
19464 2002-03-04 Akim Demaille <akim@epita.fr>
19465
19466 * src/output.c (output_skeleton): tempdir is const.
19467 bytes_read is unused.
19468
19469 2002-03-04 Akim Demaille <akim@epita.fr>
19470
19471 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19472 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19473 Update.
19474 From Michael Hayes.
19475
19476 2002-03-04 Akim Demaille <akim@epita.fr>
19477
19478 * src/closure.c (closure): `r' is unused.
19479
19480 2002-03-04 Akim Demaille <akim@epita.fr>
19481
19482 * tests/sets.at (Broken Closure): Add the ending `;'.
19483 * src/reader.at (readgram): Complain if a rule is not ended with a
19484 semi-colon.
19485
19486 2002-03-04 Akim Demaille <akim@epita.fr>
19487
19488 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19489 (count_sr_conflicts): Use bitset_count.
19490 * src/reduce.c (inaccessable_symbols): Ditto.
19491 (bits_size): Remove.
19492 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19493
19494 2002-03-04 Akim Demaille <akim@epita.fr>
19495
19496 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19497 * src/reduce.c: Remove the `bitset_zero's following the
19498 `bitset_create's, as now it is performed by the latter.
19499
19500 2002-03-04 Akim Demaille <akim@epita.fr>
19501
19502 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19503 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19504 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19505 latest sources from Michael.
19506
19507 2002-03-04 Akim Demaille <akim@epita.fr>
19508
19509 * src/output.c (output): Don't free the grammar.
19510 * src/reader.c (grammar_free): New.
19511 * src/main.c (main): Call it and don't free symtab here.
19512
19513 2002-03-04 Akim Demaille <akim@epita.fr>
19514
19515 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19516 before returning.
19517 Reported by Benoit Perrot.
19518
19519 2002-03-04 Akim Demaille <akim@epita.fr>
19520
19521 Use bitset operations when possible, not loops over bits.
19522
19523 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19524 bitset_or.
19525 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19526 * src/reduce.c (useless_nonterminals): Formatting changes.
19527 * src/warshall.c (TC): Use bitset_or.
19528
19529 2002-03-04 Akim Demaille <akim@epita.fr>
19530
19531 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19532 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19533 Ditto.
19534
19535 2002-03-04 Akim Demaille <akim@epita.fr>
19536
19537 * src/lalr.c (F): Now a bitset*.
19538 Adjust all dependencies.
19539
19540 2002-03-04 Akim Demaille <akim@epita.fr>
19541
19542 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19543 Adjust all dependencies.
19544
19545 2002-03-04 Akim Demaille <akim@epita.fr>
19546
19547 * src/L0.c, src/LR0.h (nstates): Be size_t.
19548 Adjust comparisons (signed vs unsigned).
19549 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19550 bitset*.
19551 Adjust all dependencies.
19552
19553 2002-03-04 Akim Demaille <akim@epita.fr>
19554
19555 * src/closure.c (firsts): Now, also a bitset.
19556 Adjust all dependencies.
19557 (varsetsize): Remove, now unused.
19558 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19559
19560 2002-03-04 Akim Demaille <akim@epita.fr>
19561
19562 * src/print.c: Convert to use bitset.h, not hand coded iterations
19563 over ints.
19564
19565 2002-03-04 Akim Demaille <akim@epita.fr>
19566
19567 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19568
19569 2002-03-04 Akim Demaille <akim@epita.fr>
19570
19571 * src/closure.c (ruleset): Be a bitset.
19572 (rulesetsize): Remove.
19573
19574 2002-03-04 Akim Demaille <akim@epita.fr>
19575
19576 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19577 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19578 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19579 * src/closure.c (fderives): Be an array of bitsets.
19580
19581 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
19582
19583 * data/bison.c++: Merge the two generated headers. Insert a copyright
19584 notice in each output file.
19585
19586 2002-02-28 Akim Demaille <akim@epita.fr>
19587
19588 * data/bison.c++: Copy the prologue of bison.simple to fetch
19589 useful M4 definitions, such as b4_header_guard.
19590
19591 2002-02-25 Akim Demaille <akim@epita.fr>
19592
19593 * src/getargs.c (version): Give the name of the authors, and use a
19594 translator friendly scheme for the bgr
19595 copyright notice.
19596
19597 2002-02-25 Akim Demaille <akim@epita.fr>
19598
19599 * src/output.c (header_output): Remove, now handled completely via
19600 M4.
19601
19602 2002-02-25 Akim Demaille <akim@epita.fr>
19603
19604 * m4/m4.m4: New, from CVS Autoconf.
19605 * configure.in: Invoke it.
19606 * src/output.c (output_skeleton): Use its result instead of the
19607 hard coded name.
19608
19609 2002-02-25 Akim Demaille <akim@epita.fr>
19610
19611 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19612 Fileutils 4.1.5.
19613 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19614 * src/output.c (output_skeleton): Use mkstemp to create a real
19615 temporary file.
19616 Move the filling of `skeleton' and its muscle to...
19617 (prepare): here.
19618 (output): Move the definition of the prologue muscle to...
19619 (prepare): here.
19620 * src/system.h (DEFAULT_TMPDIR): New.
19621
19622 2002-02-14 Paul Eggert <eggert@twinsun.com>
19623
19624 Remove the support for C++ namespace cleanliness; it was
19625 causing more problems than it was curing, since it didn't work
19626 properly on some nonstandard C++ compilers. This can wait
19627 for a proper C++ parser.
19628
19629 * NEWS: Document this.
19630 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19631 of C++, as it's treated like C now.
19632 * src/bison.simple (YYSTD): Remove.
19633 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19634 Treat C++ just like Standard C instead of trying to support
19635 namespace cleanliness.
19636
19637 2002-02-14 Akim Demaille <akim@epita.fr>
19638
19639 * tests/regression.at (else): Adjust to Andreas' change.
19640
19641 2002-02-14 Akim Demaille <akim@epita.fr>
19642
19643 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19644
19645 2002-02-13 Andreas Schwab <schwab@suse.de>
19646
19647 * src/output.c (output_rule_data): Don't output NULL, it might
19648 not be defined yet.
19649
19650 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
19651
19652 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19653 (Copyright notice): Update.
19654
19655 2002-02-11 Akim Demaille <akim@epita.fr>
19656
19657 * tests/regression.at (%nonassoc and eof): Don't include
19658 nonportable headers.
19659
19660 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
19661
19662 * data/bison.c++: Correct error recovery. Make the user able to
19663 initialize the starting location.
19664
19665 2002-02-07 Akim Demaille <akim@epita.fr>
19666
19667 * tests/input.at: New.
19668
19669 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19670
19671 * data/bison.c++: Replace some direct m4 expansions by constants. Be
19672 more consistent when naming methods and variables. Put preprocessor
19673 directives around tables only needed for debugging.
19674
19675 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19676
19677 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19678 C++ parsers.
19679 (yy::b4_name::parse): Use print_.
19680
19681 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19682
19683 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19684
19685 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19686
19687 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19688 C++ parsers.
19689 (yy::b4_name::parse): Build verbose error messages, and use error_.
19690
19691 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19692
19693 * data/bison.c++: Fix m4 quoting in comments.
19694
19695 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19696
19697 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19698 not expanded by m4.
19699
19700 2002-02-05 Akim Demaille <akim@epita.fr>
19701
19702 * data/bison.c++: Adjust to the M4 back end.
19703 More is certainly needed.
19704
19705 2002-02-05 Akim Demaille <akim@epita.fr>
19706
19707 Give a try to M4 as a back end.
19708
19709 * lib/readpipe.c: New, from wdiff.
19710 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19711 BISON_HAIRY.
19712 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19713 specific values. Now it is m4 that performs the lookup.
19714 * src/parse-skel.y: Remove.
19715 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19716 * src/output.c (actions_output, guards_output)
19717 (token_definitions_output): No longer keeps track of the output
19718 line number, hence remove the second argument.
19719 (guards_output): Check against the guard member of a rule, not the
19720 action member.
19721 Adjust callers.
19722 (output_skeleton): Don't look for the skeleton location, let m4 do
19723 that.
19724 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19725 file will be used.
19726 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19727 (prepare): Given that for the time being changesyntax is not
19728 usable in M4, rename the muscles using `-' to `_'.
19729 Define `defines_flag', `output_parser_name' and `output_header_name'.
19730 * src/output.h (actions_output, guards_output)
19731 (token_definitions_output): Adjust prototypes.
19732 * src/scan-skel.l: Instead of scanning the skeletons, it now
19733 processes the output of m4: `__oline__' and `#output'.
19734 * data/bison.simple: Adjust to be used by M4(sugar).
19735 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19736 to date.
19737 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19738 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19739 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19740 shamelessly stolen from CVS Autoconf.
19741
19742 2002-02-05 Akim Demaille <akim@epita.fr>
19743
19744 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19745 * configure.in: Check for the declarations of free and malloc.
19746 * src/muscle_tab.c: Adjust.
19747
19748 2002-02-05 Akim Demaille <akim@epita.fr>
19749
19750 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19751 which have no values.
19752
19753 2002-02-05 Akim Demaille <akim@epita.fr>
19754
19755 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19756 * data/: here.
19757
19758 2002-01-29 Paul Eggert <eggert@twinsun.com>
19759
19760 * src/bison.simple (YYSIZE_T): Do not define merely because
19761 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19762 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19763
19764 2002-01-27 Akim Demaille <akim@epita.fr>
19765
19766 Fix `%nonassoc and eof'.
19767
19768 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19769 which were not properly copied! Replace
19770 memcpy (res->errs, src->errs, src->nerrs);
19771 with
19772 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19773 !!!
19774 * tests/regression.at (%nonassoc and eof): Adjust to newest
19775 Autotest: `.' is not in the PATH.
19776
19777 2002-01-27 Akim Demaille <akim@epita.fr>
19778
19779 * tests/sets.at (AT_EXTRACT_SETS): New.
19780 (Nullable): Use it.
19781 (Firsts): New.
19782
19783 2002-01-26 Akim Demaille <akim@epita.fr>
19784
19785 * tests/actions.at, tests/calc.at, tests/headers.at,
19786 * tests/torture.at: Adjust to the newest Autotest which no longer
19787 forces `.' in the PATH.
19788
19789 2002-01-25 Akim Demaille <akim@epita.fr>
19790
19791 * tests/regression.at (%nonassoc and eof): New.
19792 Suggested by Robert Anisko.
19793
19794 2002-01-24 Akim Demaille <akim@epita.fr>
19795
19796 Bison dumps core when trying to complain about broken input files.
19797 Reported by Cris van Pelt.
19798
19799 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19800 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19801 into...
19802 (Invalid inputs): Strengthen: exercise parse_percent_token.
19803
19804 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
19805
19806 * src/Makefile.am: Add bison.c++.
19807 * src/bison.c++: New skeleton.
19808
19809 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
19810
19811 * po/it.po: New.
19812
19813 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19814
19815 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19816
19817 2002-01-20 Marc Autret <marc@gnu.org>
19818
19819 * src/files.c (compute_output_file_names): Fix
19820
19821 2002-01-20 Marc Autret <marc@gnu.org>
19822
19823 * tests/output.at: New test.
19824 * src/files.c (compute_base_names): Don't map extensions when
19825 the YACC flag is set, use defaults.
19826 Reported by Evgeny Stambulchik.
19827
19828 2002-01-20 Marc Autret <marc@gnu.org>
19829
19830 * src/system.h: Need to define __attribute__ away for non-GCC
19831 compilers as well (i.e., the vendor C compiler).
19832 Suggested by Albert Chin-A-Young.
19833
19834 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19835
19836 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19837 canonical definition.
19838 * src/system.h: Use the canonical definition for PARAMS (avoids
19839 a conflict with the macro from lib/hash.h).
19840
19841 2002-01-11 Akim Demaille <akim@epita.fr>
19842
19843 * configure.in: Use AC_FUNC_STRNLEN.
19844 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
19845
19846 2002-01-09 Akim Demaille <akim@epita.fr>
19847
19848 * src/files.c, src/files.h (output_infix): New.
19849 (tab_extension): Remove.
19850 (compute_base_names): Compute the former, drop the latter.
19851 * src/output.c (prepare): Insert the muscles `output-infix', and
19852 `output-suffix'.
19853 * src/parse-skel.y (string, string.1): New.
19854 (section.header): Use it.
19855 (section.yacc): Remove.
19856 (prefix): Remove too.
19857 * src/scan-skel.l: Adjust.
19858 * src/bison.simple, src/bison.hairy: Adjust.
19859
19860 2002-01-09 Akim Demaille <akim@epita.fr>
19861
19862 * configure.in (WERROR_CFLAGS): Compute it.
19863 * src/Makefile.am (CFLAGS): Pass it.
19864 * tests/atlocal.in (CFLAGS): Idem.
19865 * src/files.c: Fix a few warnings.
19866 (get_extension_index): Remove, unused.
19867
19868 2002-01-08 Akim Demaille <akim@epita.fr>
19869
19870 * src/getargs.c (AS_FILE_NAME): New.
19871 (getargs): Use it to convert DOSish file names.
19872 * src/files.c (base_name): Rename as full_base_name to avoid
19873 clashes with `base_name ()'.
19874 (filename_split): New.
19875 (compute_base_names): N-th rewrite, using filename_split.
19876
19877 2002-01-08 Akim Demaille <akim@epita.fr>
19878
19879 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19880 New, stolen from the Fileutils 4.1.
19881 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19882 * configure.in: Check for the presence of memrchr, and of its
19883 prototype.
19884
19885 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19886
19887 * lib/hash.h (__P): Added definition for this macro.
19888 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19889 BUILT_SOURCES, to ensure they are generated first.
19890 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19891 %error-verbose to allow bootstrapping with bison 1.30x.
19892
19893 2002-01-06 Akim Demaille <akim@epita.fr>
19894
19895 * src/reader.c (parse_braces): Don't fetch the next char, the
19896 convention is to fetch on entry.
19897 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19898 'switch' without a following semicolon.
19899 * tests/regression.at (braces parsing): New.
19900
19901 2002-01-06 Akim Demaille <akim@epita.fr>
19902
19903 Bison is dead wrong in its RR conflict reports.
19904
19905 * tests/torture.at (GNU Cim Grammar): New.
19906 * src/conflicts.c (count_rr_conflicts): Fix.
19907
19908 2002-01-06 Akim Demaille <akim@epita.fr>
19909
19910 Creating package.m4 from configure.ac causes too many problems.
19911
19912 * tests/Makefile.am (package.m4): Create it by hand,
19913 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
19914
19915 2002-01-06 Akim Demaille <akim@epita.fr>
19916
19917 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
19918 skeleton.h.
19919
19920 2002-01-04 Paul Eggert <eggert@twinsun.com>
19921
19922 * doc/bison.texinfo (Debugging):
19923 Remove YYSTDERR; it's no longer defined or used.
19924 Also, s/cstdio.h/cstdio/.
19925
19926 2002-01-03 Akim Demaille <akim@epita.fr>
19927
19928 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
19929
19930 2002-01-03 Akim Demaille <akim@epita.fr>
19931
19932 * src/parse-skel.y (process_skeleton): Don't bind the parser's
19933 tracing code to --trace, wait for a better --trace option, with
19934 args.
19935
19936 2002-01-03 Akim Demaille <akim@epita.fr>
19937
19938 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
19939 The ISO C++ standard is extremely clear about it: stderr is
19940 considered a macro, not a regular symbol (see table 94 `Header
19941 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
19942 Therefore std:: does not apply to it. It still does with fprintf.
19943 Also, s/cstdio.h/cstdio/.
19944
19945 2002-01-03 Akim Demaille <akim@epita.fr>
19946
19947 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
19948 for non system headers.
19949
19950 2002-01-02 Akim Demaille <akim@epita.fr>
19951
19952 Equip the skeleton chain with location tracking, runtime trace,
19953 pure parser and scanner.
19954
19955 * src/parse-skel.y: Request a pure parser, locations, and prefix
19956 renaming.
19957 (%union): Having several members with the same type does not help
19958 type mismatches, simplify.
19959 (YYPRINT, yyprint): New.
19960 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
19961 (skel_error): this.
19962 Handle locations.
19963 * src/scan-skel.l: Adjust to these changes.
19964 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
19965 (LOCATION_PRINT, skel_control_t): New.
19966
19967 2001-12-30 Akim Demaille <akim@epita.fr>
19968
19969 * src/parse-skel.y: Get rid of the shift/reduce conflict:
19970 replace `gb' with BLANKS.
19971 * src/scan-skel.l: Adjust.
19972
19973 2001-12-30 Akim Demaille <akim@epita.fr>
19974
19975 * src/system.h: We don't need nor want bcopy.
19976 Throw away MS-DOS crap: we don't need getpid.
19977 * configure.in: We don't need strndup. It was even causing
19978 problems: because Flex includes the headers *before* us,
19979 _GNU_SOURCE is not defined by config.h, and therefore strndup was
19980 not visible.
19981 * lib/xstrndup.c: New.
19982 * src/scan-skel.l: Use it.
19983 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
19984 * src/parse-skel.y: Use %directives instead of #defines.
19985
19986 2001-12-30 Akim Demaille <akim@epita.fr>
19987
19988 * src/skeleton.h: New.
19989 * src/output.c (output_parser, output_master_parser): Remove, dead
19990 code.
19991 * src/output.h (get_lines_number, actions_output, guards_output)
19992 (token_definitions_output): Prototype them.
19993 * src/parse-skel.y: Add the license notice.
19994 Include output.h and skeleton.h.
19995 (process_skeleton): Returns void, and takes a single parameter.
19996 * src/scan-skel.l: Add the license notice.
19997 Include skeleton.h.
19998 Don't use %option yylineno: it seems that then Flex imagines
19999 REJECT has been used, and therefore it won't reallocate its
20000 buffers (which makes no other sense to me than a bug). It results
20001 in warnings for `unused: yy_flex_realloc'.
20002
20003 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
20004
20005 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20006 (MUSCLE_INSERT_PREFIX): ...to there.
20007 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20008 (MUSCLE_INSERT_PREFIX): Move from here...
20009
20010 * src/bison.hairy: Add a section directive. Put braces around muscle
20011 names. This parser skeleton is still broken, but Bison should not
20012 choke on a bad muscle 'syntax'.
20013 * src/bison.simple: Add a section directive. Put braces around muscle
20014 names.
20015
20016 * src/files.h (strsuffix, stringappend): Add declarations.
20017 (tab_extension): Add declaration.
20018 (short_base_name): Add declaration.
20019
20020 * src/files.c (strsuffix, stringappend): No longer static. These
20021 functions are used in the skeleton parser.
20022 (tab_extension): New.
20023 (compute_base_names): Use the computations done in this function
20024 to guess if the generated parsers should have '.tab' in their
20025 names.
20026 (short_base_name): No longer static.
20027
20028 * src/output.c (output_skeleton): New.
20029 (output): Disable call to output_master_parser, and give a try to
20030 a new skeleton handling system.
20031 (guards_output, actions_output): No longer static.
20032 (token_definitions_output, get_lines_number): No longer static.
20033
20034 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20035
20036 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
20037 parse-skel.y.
20038
20039 * src/parse-skel.y: New file.
20040 * src/scan-skel.l: New file.
20041
20042 2001-12-29 Akim Demaille <akim@epita.fr>
20043
20044 %name-prefix is broken.
20045
20046 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20047 Adjust all dependencies.
20048 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20049 %name-prefix.
20050
20051 Renaming yylval but not yylloc is not consistent. Now we do.
20052
20053 * src/bison.simple: Prefix yylloc if used.
20054 * doc/bison.texinfo (Decl Summary): Document that.
20055
20056 2001-12-29 Akim Demaille <akim@epita.fr>
20057
20058 * doc/bison.texinfo: Promote `%long-directive' over
20059 `%long_directive'.
20060 Remove all references to fixed-output-files, yacc is enough.
20061
20062 2001-12-29 Akim Demaille <akim@epita.fr>
20063
20064 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20065 user prologue. These are defaults.
20066 * tests/actions.at (Mid-rule actions): Make sure the user can
20067 define YYDEBUG and YYERROR_VERBOSE.
20068
20069 2001-12-29 Akim Demaille <akim@epita.fr>
20070
20071 * src/output.c (header_output): Don't forget to export YYLTYPE and
20072 yylloc.
20073 * tests/headers.at (export YYLTYPE): New, make sure it does.
20074 * tests/regression.at (%union and --defines, Invalid CPP headers):
20075 Move to...
20076 * tests/headers.at: here.
20077
20078 2001-12-29 Akim Demaille <akim@epita.fr>
20079
20080 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20081
20082 2001-12-29 Akim Demaille <akim@epita.fr>
20083
20084 * tests/actions.at (Mid-rule actions): Output on a single line
20085 instead of several.
20086
20087 2001-12-29 Akim Demaille <akim@epita.fr>
20088
20089 * doc/bison.texinfo: Formatting changes.
20090
20091 2001-12-29 Akim Demaille <akim@epita.fr>
20092
20093 Don't store the token defs in a muscle, just be ready to output it
20094 on command. Now possible via `symbols'. Fixes a memory leak.
20095
20096 * src/output.c (token_definitions_output): New.
20097 (output_parser, header_output): Use it.
20098 * src/reader.c (symbols_save): Remove.
20099
20100 2001-12-29 Akim Demaille <akim@epita.fr>
20101
20102 * src/bison.simple: Do not provide a default for YYSTYPE and
20103 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20104 default.
20105
20106 2001-12-29 Akim Demaille <akim@epita.fr>
20107
20108 Mid-rule actions are simply... ignored!
20109
20110 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20111 the empty-rule associated to the dummy symbol, not to the host
20112 rule.
20113 * tests/actions.at (Mid-rule actions): New.
20114
20115 2001-12-29 Akim Demaille <akim@epita.fr>
20116
20117 Memory leak.
20118
20119 * src/reader.c (reader): Free grammar.
20120
20121 2001-12-29 Akim Demaille <akim@epita.fr>
20122
20123 Memory leak.
20124
20125 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20126 since it allocates it for each state, although only one is needed.
20127 (allocate_storage): Do it here.
20128
20129 2001-12-29 Akim Demaille <akim@epita.fr>
20130
20131 * src/options.h, src/options.c (create_long_option_table): Rename
20132 as...
20133 (long_option_table_new): this, with a clearer prototype.
20134 (percent_table): Remove, unused,
20135 * src/getargs.c (getargs): Adjust.
20136
20137 2001-12-29 Akim Demaille <akim@epita.fr>
20138
20139 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20140 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20141 as states.
20142
20143 2001-12-29 Akim Demaille <akim@epita.fr>
20144
20145 * src/lalr.c (build_relations): Rename `states' as `states1'.
20146 Sorry, I don't understand exactly what it is, no better name...
20147
20148 2001-12-29 Akim Demaille <akim@epita.fr>
20149
20150 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20151 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20152 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20153 as rules.
20154
20155 2001-12-29 Akim Demaille <akim@epita.fr>
20156
20157 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20158 ago.
20159
20160 2001-12-29 Akim Demaille <akim@epita.fr>
20161
20162 * src/reader.c, src/reader.h (user_toknums): Remove.
20163 Adjust all users to use symbols[i]->user_token_number.
20164
20165 2001-12-29 Akim Demaille <akim@epita.fr>
20166
20167 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20168 Adjust all users to use symbols[i]->prec or ->assoc.
20169
20170 2001-12-29 Akim Demaille <akim@epita.fr>
20171
20172 * src/reader.c, src/reader.h (tags): Remove.
20173 Adjust all users to use symbols[i]->tag.
20174
20175 2001-12-29 Akim Demaille <akim@epita.fr>
20176
20177 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20178 and rule_table.
20179 * src/reader.c (packsymbols): Fill this table.
20180 Drop sprec.
20181 * src/conflicts.c (resolve_sr_conflict): Adjust.
20182 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20183 single table.
20184 Use symbols[i]->tag instead of tags[i].
20185
20186 2001-12-29 Akim Demaille <akim@epita.fr>
20187
20188 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20189 In addition, put a comment in there, to replace...
20190 * tests/regression.at (%union and C comments): Remove.
20191
20192 2001-12-29 Akim Demaille <akim@epita.fr>
20193
20194 * tests/regression.at (Web2c Actions): Blindly move the actual
20195 output as expected output. The contents *seem* right to me, but I
20196 can't pretend reading perfectly parser tables... Nonetheless, all
20197 the other tests pass correctly, the table look OK, even though the
20198 presence of `$axiom' is to be noted: AFAICS it is useless (but
20199 harmless).
20200
20201 2001-12-29 Akim Demaille <akim@epita.fr>
20202
20203 * src/reader.c (readgram): Don't add the rule 0 if there were no
20204 rules read. In other words, add it _after_ having performed
20205 grammar sanity checks.
20206 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20207
20208 2001-12-29 Akim Demaille <akim@epita.fr>
20209
20210 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20211 visible, and some states have now a different number.
20212
20213 2001-12-29 Akim Demaille <akim@epita.fr>
20214
20215 * src/reader.c (readgram): Bind the initial rule's lineno to that
20216 of the first rule.
20217 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20218 (Solved SR Conflicts): Adjust rule 0's line number.
20219
20220 2001-12-29 Akim Demaille <akim@epita.fr>
20221
20222 Fix the `GAWK Grammar' failure.
20223
20224 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20225 the reductions of the first state which was mistakenly confused
20226 with the final state because precisely final_state was initialized
20227 to 0.
20228 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20229 now noticed by Bison.
20230 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20231 have a reduction on $default.
20232
20233 2001-12-29 Akim Demaille <akim@epita.fr>
20234
20235 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20236 rule line numbers.
20237 * src/closure.c (print_closure): Likewise.
20238 * src/derives.c (print_derives): Likewise.
20239 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20240 now.
20241
20242 2001-12-29 Akim Demaille <akim@epita.fr>
20243
20244 * src/lalr.c (lookaheads_print): New.
20245 (lalr): Call it when --trace-flag.
20246 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20247 are dumped.
20248
20249 2001-12-29 Akim Demaille <akim@epita.fr>
20250
20251 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20252 when walking through ritem, even via rule->rhs.
20253 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20254 (useful_production, useless_nonterminals): Likewise.
20255 (reduce_grammar_tables): Likewise, plus update nritems.
20256 * src/nullable.c (set_nullable): Likewise.
20257 * src/lalr.c (build_relations): Likewise.
20258 * tests/sets.at (Nullable): Adjust.
20259 Fortunately, now, the $axiom is no longer nullable.
20260
20261 2001-12-29 Akim Demaille <akim@epita.fr>
20262
20263 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20264 the 0-sentinel.
20265 * src/gram.c (ritem_longest_rhs): Likewise.
20266 * src/reduce.c (nonterminals_reduce): Likewise.
20267 * src/print_graph.c (print_graph): Likewise.
20268 * src/output.c (output_rule_data): Likewise.
20269 * src/nullable.c (set_nullable): Likewise.
20270
20271 2001-12-29 Akim Demaille <akim@epita.fr>
20272
20273 * src/output.c: Comment changes.
20274
20275 2001-12-27 Paul Eggert <eggert@twinsun.com>
20276
20277 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20278 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20279 Sparc, as they were causing more porting problems than the
20280 (minor) performance improvement was worth.
20281
20282 Also, catch up with 1.31's YYSTD.
20283
20284 2001-12-27 Akim Demaille <akim@epita.fr>
20285
20286 * src/output.c (output_gram): Rely on nritems, not the
20287 0-sentinel. See below.
20288 Use -1 as separator, not 0.
20289 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20290 Rely on -1 as separator in yyrhs, instead of 0.
20291 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20292 twice `Now at end of input', therefore there are two lines less to
20293 expect.
20294
20295 2001-12-27 Akim Demaille <akim@epita.fr>
20296
20297 * tests/regression.at (Unresolved SR Conflicts):
20298 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20299 below.
20300
20301 2001-12-27 Akim Demaille <akim@epita.fr>
20302
20303 * src/LR0.c (new_state): Recognize the final state by the fact it
20304 is reached by eoftoken.
20305 (insert_start_shifting_state, insert_eof_shifting_state)
20306 (insert_accepting_state, augment_automaton): Remove, since now
20307 these states are automatically computed from the initial state.
20308 (generate_states): Adjust.
20309 * src/print.c: When reporting a rule number to the user, substract
20310 1, so that the axiom rule is rule 0, and the first user rule is 1.
20311 * src/reduce.c: Likewise.
20312 * src/print_graph.c (print_core): For the time being, just as for
20313 the report, depend upon --trace-flags to dump the full set of
20314 items.
20315 * src/reader.c (readgram): Once the grammar read, insert the rule
20316 0: `$axiom: START-SYMBOL $'.
20317 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20318 number of the states has changed (the final state is no longer
20319 necessarily the last), catch up.
20320
20321 2001-12-27 Akim Demaille <akim@epita.fr>
20322
20323 Try to make the use of the eoftoken valid. Given that its value
20324 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20325 is used instead of > 0 where appropriate, (ii), depend upon nritems
20326 instead of the 0-sentinel.
20327
20328 * src/gram.h, src/gram.c (nritems): New.
20329 Expected to be duplication of nitems, but for the time being...
20330 * src/reader.c (packgram): Assert nritems and nitems are equal.
20331 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20332 * src/closure.c (print_closure, print_fderives): Likewise.
20333 * src/gram.c (ritem_print): Likewise.
20334 * src/print.c (print_core, print_grammar): Likewise.
20335 * src/print_graph.c: Likewise.
20336
20337 2001-12-27 Akim Demaille <akim@epita.fr>
20338
20339 * src/main.c (main): If there are complains after grammar
20340 reductions, then output the report anyway if requested, then die.
20341 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20342 * src/reader.c (eoftoken): New.
20343 (parse_token_decl): If the token being defined has value `0', it
20344 is the eoftoken.
20345 (packsymbols): No longer hack `tags' to insert `$' by hand.
20346 Be sure to preserve the value of the eoftoken.
20347 (reader): Make sure eoftoken is defined.
20348 Initialize nsyms to 0: now eoftoken is created just like the others.
20349 * src/print.c (print_grammar): Don't special case the eof token.
20350 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20351 lie anyway, albeit pleasant.
20352 * tests/calc.at: Exercise error messages with eoftoken.
20353 Change the grammar so that empty input is invalid.
20354 Adjust expectations.
20355 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20356
20357 2001-12-27 Akim Demaille <akim@epita.fr>
20358
20359 * configure.in: Check the protos of strchr ans strspn.
20360 Replace strchr if needed.
20361 * src/system.h: Provide the protos of strchr, strspn and memchr if
20362 missing.
20363 * lib/strchr.c: New.
20364 * src/reader.c (symbols_save): Use strchr.
20365
20366 2001-12-27 Akim Demaille <akim@epita.fr>
20367
20368 * src/print.c, src/print_graph.c (escape): New.
20369 Use it to quote the TAGS outputs.
20370 * src/print_graph.c (print_state): Now errors are in red, and
20371 reductions in green.
20372 Prefer high to wide: output the state number on a line of its own.
20373
20374 2001-12-27 Akim Demaille <akim@epita.fr>
20375
20376 * src/state.h, src/state.c (reductions_new): New.
20377 * src/LR0.c (set_state_table): Let all the states have a
20378 `reductions', even if reduced to 0.
20379 (save_reductions): Adjust.
20380 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20381 * src/print.c (print_reductions, print_actions): Adjust.
20382 * src/output.c (action_row): Adjust.
20383
20384 2001-12-27 Akim Demaille <akim@epita.fr>
20385
20386 * src/state.h, src/state.c (errs_new, errs_dup): New.
20387 * src/LR0.c (set_state_table): Let all the states have an errs,
20388 even if reduced to 0.
20389 * src/print.c (print_errs, print_reductions): Adjust.
20390 * src/output.c (output_actions, action_row): Adjust.
20391 * src/conflicts.c (resolve_sr_conflict): Adjust.
20392
20393 2001-12-27 Akim Demaille <akim@epita.fr>
20394
20395 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20396
20397 2001-12-27 Akim Demaille <akim@epita.fr>
20398
20399 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20400 * src/print.c: here.
20401 (lookaheadset, shiftset): New, used as additional storage by
20402 print_reductions.
20403 (print_results): Adjust.
20404 (print_shifts, print_gotos, print_errs): New, extracted from...
20405 (print_actions): here.
20406 * src/print_graph.c (print_actions): Remove dead code.
20407
20408 2001-12-27 Akim Demaille <akim@epita.fr>
20409
20410 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20411 `$n' and `@n'.
20412
20413 2001-12-27 Akim Demaille <akim@epita.fr>
20414
20415 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20416 (build_relations): Adjust.
20417
20418 2001-12-27 Akim Demaille <akim@epita.fr>
20419
20420 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20421 duplication.
20422
20423 2001-12-27 Akim Demaille <akim@epita.fr>
20424
20425 * src/reader.c (packgram): Catch nitems overflows.
20426
20427 2001-12-27 Akim Demaille <akim@epita.fr>
20428
20429 * src/files.c, src/files.h (guard_obstack): Remove.
20430 * src/output.c (output): Adjust.
20431 * src/reader.c (parse_braces): New, factoring...
20432 (copy_action, copy_guard): these two which are renamed as...
20433 (parse_action, parse_guard): these.
20434 As a voluntary consequence, using braces around guards is now
20435 mandatory.
20436
20437 2001-12-27 Akim Demaille <akim@epita.fr>
20438
20439 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20440 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20441 members.
20442 (symbol_list_new): Adjust.
20443 (copy_action): action_line is the first line, not the last.
20444 (copy_guard): Just as for actions, store the `action' only, not
20445 the switch/case/break flesh.
20446 Don't parse the user action that might follow the guard, let...
20447 (readgram): do it, i.e., now, there can be an action after a
20448 guard.
20449 In other words the guard is just explicitly optional.
20450 (packgram): Adjust.
20451 * src/output.c (guards_output): New.
20452 (output_parser): Call it when needed.
20453 (output): Also free the guard and attrs obstacks.
20454 * src/files.c, src/files.h (obstack_save): Remove.
20455 (output_files): Remove.
20456 As a result, if one needs the former `.act' file, using an
20457 appropriate skeleton which requires actions and guards is now
20458 required.
20459 * src/main.c (main): Adjust.
20460 * tests/semantic.at: New.
20461 * tests/regression.at: Use `input.y' as input file name.
20462 Avoid 8+3 problems by requiring input.c when the test needs the
20463 parser.
20464
20465 2001-12-27 Akim Demaille <akim@epita.fr>
20466
20467 * src/reader.c (symbol_list_new): Be sure to initialize all the
20468 fields.
20469
20470 2001-12-27 Akim Demaille <akim@epita.fr>
20471
20472 All the hacks using a final pseudo state are now useless.
20473
20474 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20475 * src/lalr.c (nLA): New.
20476 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20477 instead of lookaheadsp from the pseudo state (nstate + 1).
20478
20479 2001-12-27 Akim Demaille <akim@epita.fr>
20480
20481 * src/output.c (action_row, token_actions): Use a state_t instead
20482 of a integer, and nlookaheads instead of the following state's
20483 lookaheadsp.
20484
20485 2001-12-27 Akim Demaille <akim@epita.fr>
20486
20487 * src/conflicts.c (log_resolution, flush_shift)
20488 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20489 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20490 (conflicts_print, print_reductions): Use a state_t instead of an
20491 integer when referring to a state.
20492 As much as possible, depend upon nlookaheads, instead of the
20493 `lookaheadsp' member of the following state (since lookaheads of
20494 successive states are successive, the difference between state n + 1
20495 and n served as the number of lookaheads for state n).
20496 * src/lalr.c (add_lookback_edge): Likewise.
20497 * src/print.c (print_core, print_actions, print_state)
20498 (print_results): Likewise.
20499 * src/print_graph.c (print_core, print_actions, print_state)
20500 (print_graph): Likewise.
20501 * src/conflicts.h: Adjust.
20502
20503 2001-12-27 Akim Demaille <akim@epita.fr>
20504
20505 * src/bison.hairy: Formatting/comment changes.
20506 ANSIfy.
20507 Remove `register' indications.
20508 Add plenty of `static'.
20509
20510 2001-12-27 Akim Demaille <akim@epita.fr>
20511
20512 * src/output.c (prepare): Drop the muscle `ntbase' which
20513 duplicates ntokens.
20514 * src/bison.simple: Formatting/comment changes.
20515 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20516 is an undocumented synonym.
20517
20518 2001-12-22 Akim Demaille <akim@epita.fr>
20519
20520 * src/output.c (output_table_data): Change the prototype to use
20521 `int' for array ranges: some invocations do pass an int, not a
20522 short.
20523 Reported by Wayne Green.
20524
20525 2001-12-22 Akim Demaille <akim@epita.fr>
20526
20527 Some actions of web2c.y are improperly triggered.
20528 Reported by Mike Castle.
20529
20530 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20531 * tests/regression.at (Web2c): Rename as...
20532 (Web2c Report): this.
20533 (Web2c Actions): New.
20534
20535 2001-12-22 Akim Demaille <akim@epita.fr>
20536
20537 Reductions in web2c.y are improperly reported.
20538 Reported by Mike Castle.
20539
20540 * src/conflicts.c (print_reductions): Fix.
20541 * tests/regression.at (Web2c): New.
20542
20543 2001-12-18 Akim Demaille <akim@epita.fr>
20544
20545 Some host fail on `assert (!"foo")', which expands to
20546 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20547 Reported by Nelson Beebee.
20548
20549 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20550 `#define it_succeeded 0' and `assert (it_succeeded)'.
20551
20552 2001-12-17 Marc Autret <autret_m@epita.fr>
20553
20554 * src/bison.simple: Don't hard code the skeleton line and filename.
20555 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20556 New line counter 'skeleton_line' (skeleton-line muscle).
20557
20558 2001-12-17 Paul Eggert <eggert@twinsun.com>
20559
20560 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20561 YYDEBUG must be defined to a nonzero value.
20562
20563 * src/bison.simple (yytname): Do not assume that the user defines
20564 YYDEBUG to a properly parenthesized expression.
20565
20566 2001-12-17 Akim Demaille <akim@epita.fr>
20567
20568 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20569 nlookaheads is a new member.
20570 Adjust all users.
20571 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20572 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20573 state.
20574
20575 2001-12-17 Akim Demaille <akim@epita.fr>
20576
20577 * src/files.h, src/files.c (open_files, close_files): Remove.
20578 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20579 let...
20580 * src/reader.c (reader): Do it.
20581
20582 2001-12-17 Akim Demaille <akim@epita.fr>
20583
20584 * src/conflicts.c (print_reductions): Formatting changes.
20585
20586 2001-12-17 Akim Demaille <akim@epita.fr>
20587
20588 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20589 (flush_reduce): New.
20590 (resolve_sr_conflict): Adjust.
20591
20592 2001-12-17 Akim Demaille <akim@epita.fr>
20593
20594 * src/output.c (output_obstack): Be static and rename as...
20595 (format_obstack): this, to avoid any confusion with files.c's
20596 output_obstack.
20597 * src/reader.h (muscle_obstack): Move to...
20598 * src/output.h: here, since it's defined in output.c.
20599
20600 2001-12-17 Akim Demaille <akim@epita.fr>
20601
20602 * src/output.c (action_row, save_column, default_goto)
20603 (sort_actions, matching_state, pack_vector): Better variable
20604 locality.
20605
20606 2001-12-17 Akim Demaille <akim@epita.fr>
20607
20608 * src/output.c: Various formatting changes.
20609
20610 2001-12-17 Akim Demaille <akim@epita.fr>
20611
20612 * src/files.c (output_files): Free the output_obstack.
20613 * src/main.c (main): Call print and print_graph conditionally.
20614 * src/print.c (print): Work unconditionally.
20615 * src/print_graph.c (print_graph): Work unconditionally.
20616 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20617
20618 2001-12-16 Marc Autret <autret_m@epita.fr>
20619
20620 * src/output.c (actions_output): Fix. When we use %no-lines,
20621 there is one less line per action.
20622
20623 2001-12-16 Marc Autret <autret_m@epita.fr>
20624
20625 * src/bison.simple: Remove a useless #line directive.
20626 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20627 * src/output.c (get_lines_number): New.
20628 (output_parser): Adjust, now takes care about the lines of a
20629 output muscles.
20630 Fix line numbering.
20631 (actions_output): Computes the number of lines taken by actions.
20632 (output_master_parser): Insert new skeleton which is the name of
20633 the output parser file name.
20634
20635 2001-12-15 Marc Autret <autret_m@epita.fr>
20636
20637 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20638
20639 2001-12-15 Marc Autret <autret_m@epita.fr>
20640
20641 * src/output.c (output_gram): Keep track of the hairy one.
20642
20643 2001-12-15 Akim Demaille <akim@epita.fr>
20644
20645 Make `make distcheck' work.
20646
20647 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20648 system.h which uses libgettext.h.
20649
20650 2001-12-15 Akim Demaille <akim@epita.fr>
20651
20652 * src/nullable.c (set_nullable): Useless rules must be skipped,
20653 otherwise, since we range over their symbols, we might look at a
20654 nonterminal which no longer ``exists'', i.e., it is not counted in
20655 `nvars', hence we overflow our arrays.
20656
20657 2001-12-15 Akim Demaille <akim@epita.fr>
20658
20659 The header can also be produced directly, without any obstack!
20660 Yahoo!
20661
20662 * src/files.c, src/files.h (defines_obstack): Remove.
20663 (compute_header_macro): Global.
20664 (defines_obstack_save): Remove.
20665 * src/reader.c (parse_union_decl): No longer output to
20666 defines_obstack: its content can be found in the `stype' muscle
20667 anyway.
20668 (output_token_translations): Merge into...
20669 (symbols_output): this.
20670 Rename as...
20671 (symbols_save): this.
20672 (reader): Adjust.
20673 * src/output.c (header_output): New.
20674 (output): Call it.
20675
20676 2001-12-15 Akim Demaille <akim@epita.fr>
20677
20678 * src/reader.c (parse_union_decl): Instead of handling two obstack
20679 simultaneously, use one to define the `stype' muscle, and use the
20680 value of the latter to fill defines_obstack.
20681 (copy_comment): Remove.
20682 (copy_comment2): Work for a single obstack.
20683 Rename as...
20684 (copy_comment): this.
20685
20686 2001-12-15 Akim Demaille <akim@epita.fr>
20687
20688 * src/lex.c, src/lex.h (xgetc): No longer static.
20689 * src/reader.c (parse_union_decl): Revamp.
20690
20691 2001-12-15 Akim Demaille <akim@epita.fr>
20692
20693 Still making progress in separating Bison into (i) input, (ii)
20694 process, (iii) output: now we can directly output the parser file
20695 without using table_obstack at all.
20696
20697 * src/files.c, src/files.h (table_obstack): Bye bye.
20698 (parser_file_name): New.
20699 * src/files.c (compute_output_file_names): Compute it.
20700 * src/output.c (actions_output, output_parser)
20701 (output_master_parser): To a file instead of an obstack.
20702
20703 2001-12-15 Akim Demaille <akim@epita.fr>
20704
20705 Attach actions to rules, instead of pre-outputting them to
20706 actions_obstack.
20707
20708 * src/gram.h (rule_t): action and action_line are new members.
20709 * src/reader.c (symbol_list): Likewise.
20710 (copy_action): Save the actions within the rule.
20711 (packgram): Save them in rule_table.
20712 * src/output.c (actions_output): New.
20713 (output_parser): Use it on `%%actions'.
20714 (output_rule_data): Don't free rule_table.
20715 (output): Do it.
20716 (prepare): Don't save the `action' muscle.
20717 * src/bison.simple: s/%%action/%%actions/.
20718
20719 2001-12-15 Akim Demaille <akim@epita.fr>
20720
20721 * src/reader.c (copy_action): When --yacc, don't append a `;'
20722 to the user action: let it fail if lacking.
20723 Suggested by Arnold Robbins and Tom Tromey.
20724
20725 2001-12-14 Akim Demaille <akim@epita.fr>
20726
20727 * src/lex.c (literalchar): Simply return the char you decoded, non
20728 longer mess around with obstacks and int pointers.
20729 Adjust all callers.
20730
20731 2001-12-14 Akim Demaille <akim@epita.fr>
20732
20733 * src/lex.c (literalchar): Don't escape the special characters,
20734 just decode them, and keep them as char (before, eol was output as
20735 the 2 char string `\n' etc.).
20736 * src/output.c (output_rule_data): Use quotearg to output the
20737 token strings.
20738
20739 2001-12-13 Paul Eggert <eggert@twinsun.com>
20740
20741 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20742 Do not infringe on the global user namespace when using C++.
20743 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20744 All uses of `fprintf' and `stderr' changed.
20745
20746 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20747
20748 2001-12-13 Akim Demaille <akim@epita.fr>
20749
20750 The computation of nullable is broken: it doesn't handle empty
20751 RHS's properly.
20752
20753 * tests/torture.at (GNU AWK Grammar): New.
20754 * tests/sets.at (Nullable): New.
20755 * src/nullable.c (set_nullable): Instead of blindly looping over
20756 `ritems', loop over the rules, and then over their rhs's.
20757
20758 Work around Autotest bugs.
20759
20760 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20761 frame, because Autotest understand lines starting with a `+' as
20762 traces from the shell. Then, they are not processed properly.
20763 Admittedly an Autotest bug, but we don't have time to wait for
20764 Autotest to catch up.
20765 * tests/regression.at (Broken Closure): Adjust to the new table
20766 frames.
20767 Move to...
20768 * tests/sets.at: here.
20769
20770 2001-12-13 Akim Demaille <akim@epita.fr>
20771
20772 * src/closure.c (closure): Use nrules instead of playing tricks
20773 with BITS_PER_WORD.
20774
20775 2001-12-13 Akim Demaille <akim@epita.fr>
20776
20777 * src/print.c (print_actions): Output the handling of `$' as the
20778 traces do: shifting the token EOF. Before EOF was treated as a
20779 nonterminal.
20780 * tests/regression.at: Adjust some tests.
20781 * src/print_graph.c (print_core): Complete the set of items via
20782 closure. The next-to-final and final states are still unsatisfying,
20783 but that's to be addressed elsewhere.
20784 No longer output the rule numbers, but do output the state number.
20785 A single loop for the shifts + gotos is enough, but picked a
20786 distinct color for each.
20787 (print_graph): Initialize and finalize closure.
20788
20789 2001-12-13 Akim Demaille <akim@epita.fr>
20790
20791 * src/reader.c (readgram): Remove dead code, an strip useless
20792 braces.
20793 (get_type): Remove, unused.
20794
20795 2001-12-12 Akim Demaille <akim@epita.fr>
20796
20797 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20798 on that of lib/error.c.
20799
20800 2001-12-12 Akim Demaille <akim@epita.fr>
20801
20802 Some hosts don't like `/' in includes.
20803
20804 * src/system.h: Include libgettext.h without qualifying the path.
20805 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20806 $(top_srcdir).
20807
20808 2001-12-11 Marc Autret <autret_m@epita.fr>
20809
20810 * src/output.c (output_parser): Remove useless muscle.
20811
20812 2001-12-11 Marc Autret <autret_m@epita.fr>
20813
20814 * src/bison.simple: Remove #line just before %%epilogue. It
20815 is now handled in ...
20816 * src/reader.c (read_additionnal_code): Add the output of a
20817 #line for the epilogue.
20818
20819 2001-12-10 Marc Autret <autret_m@epita.fr>
20820
20821 * src/reader.c (copy_definition): Re-use CPP-outed code which
20822 replace precedent remove.
20823 * src/bison.simple: Remove #line before %%prologue because
20824 %%input-line is wrong at this time.
20825
20826 2001-12-10 Marc Autret <autret_m@epita.fr>
20827
20828 * src/reader.c (symbols_output): Clean up.
20829 * src/output.c (output_gram, output): Clean up.
20830
20831 2001-12-10 Akim Demaille <akim@epita.fr>
20832
20833 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20834 * src/LR0.c (set_state_table): here.
20835 * src/lalr.c (lalr): Call it.
20836
20837 2001-12-10 Akim Demaille <akim@epita.fr>
20838
20839 * src/state.h (shifts): Remove the `number' member: shifts are
20840 attached to state, hence no longer need to be labelled with a
20841 state number.
20842
20843 2001-12-10 Akim Demaille <akim@epita.fr>
20844
20845 Now that states have a complete set of members, the linked list of
20846 shifts is useless: just fill directly the state's shifts member.
20847
20848 * src/state.h (shifts): Remove the `next' member.
20849 * src/LR0.c (first_state, last_state): Remove.
20850 Adjust the callers.
20851 (augment_automaton): Don't look for the shifts that must be added
20852 a shift on EOF: it is those of the state we looked for! But now,
20853 since shifts are attached, it is no longer needed to looking
20854 merely by its id: its number.
20855
20856 2001-12-10 Akim Demaille <akim@epita.fr>
20857
20858 * src/LR0.c (augment_automaton): Better variable locality.
20859 Remove an impossible branch: if there is a state corresponding to
20860 the start symbol being shifted, then there is shift for the start
20861 symbol from the initial state.
20862
20863 2001-12-10 Akim Demaille <akim@epita.fr>
20864
20865 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20866 only when appropriate: when insert_start_shifting_state' is not
20867 invoked.
20868 * tests/regression.at (Rule Line Numbers): Adjust.
20869
20870 2001-12-10 Akim Demaille <akim@epita.fr>
20871
20872 * src/LR0.c (augment_automaton): Now that all states have shifts,
20873 merge the two cases addition shifts to the initial state.
20874
20875 2001-12-10 Akim Demaille <akim@epita.fr>
20876
20877 * src/lalr.c (set_state_table): Move to...
20878 * src/LR0.c: here.
20879 * src/lalr.c (lalr): Don't call it...
20880 * src/LR0.c (generate_states): do it.
20881 * src/LR0.h (first_state): Remove, only the table is used.
20882
20883 2001-12-10 Akim Demaille <akim@epita.fr>
20884
20885 * src/LR0.h (first_shift, first_reduction): Remove.
20886 * src/lalr.c: Don't use first_shift: find shifts through the
20887 states.
20888
20889 2001-12-10 Akim Demaille <akim@epita.fr>
20890
20891 * src/LR0.c: Attach shifts to states as soon as they are
20892 computed.
20893 * src/lalr.c (set_state_table): Instead of assigning shifts to
20894 state, just assert that the mapping was properly done.
20895
20896 2001-12-10 Akim Demaille <akim@epita.fr>
20897
20898 * src/LR0.c (insert_start_shift): Rename as...
20899 (insert_start_shifting_state): this.
20900 (insert_eof_shifting_state, insert_accepting_state): New.
20901 (augment_automaton): Adjust.
20902 Better locality of the variables.
20903 When looking if the start_symbol is shifted from the initial
20904 state, using `while (... symbol != start_symbol ...)' sounds
20905 better than `while (... symbol < start_symbol ...)': If fail
20906 to see how the order between symbols could be relevant!
20907
20908 2001-12-10 Akim Demaille <akim@epita.fr>
20909
20910 * src/getargs.h: Don't declare `spec_name_prefix' and
20911 `spec_file_prefix', declared by src/files.h.
20912 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20913 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
20914 * src/output.c (prepare): Adjust.
20915 * src/reader.c (symbols_output): Likewise.
20916 * src/vmsgetargs.c: Vaguely adjust, but who cares?
20917
20918 2001-12-10 Akim Demaille <akim@epita.fr>
20919
20920 * src/muscle_tab.c (muscle_init): NULL is a better default than
20921 `"0"'.
20922
20923 2001-12-10 Akim Demaille <akim@epita.fr>
20924
20925 * src/reader.c (reader): Calling symbols_output once is enough.
20926
20927 2001-12-10 Akim Demaille <akim@epita.fr>
20928
20929 Now that states have a complete set of members, the linked list of
20930 reductions is useless: just fill directly the state's reductions
20931 member.
20932
20933 * src/state.h (struct reductions): Remove member `number' and
20934 `next'.
20935 * src/LR0.c (first_reduction, last_reduction): Remove.
20936 (save_reductions): Don't link the new reductions, store them in
20937 this_state.
20938 * src/lalr.c (set_state_table): No need to attach reductions to
20939 states, it's already done.
20940 * src/output.c (output_actions): No longer free the shifts, then
20941 the reductions, then the states: free all the states and their
20942 members.
20943
20944 2001-12-10 Akim Demaille <akim@epita.fr>
20945
20946 * src/options.c (OPTN, DRTV, BOTH): New.
20947 (option_table): Use them.
20948
20949 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
20950 the job of system.h.
20951 * src/options.c: Don't include stdio.h and xalloc.h for the same
20952 reasons.
20953
20954 2001-12-10 Akim Demaille <akim@epita.fr>
20955
20956 * src/output.c (output, prepare): Make sure the values of the
20957 muscles `action' and `prologue' are 0-terminated.
20958
20959 2001-12-10 Akim Demaille <akim@epita.fr>
20960
20961 Clean up GCC warnings.
20962
20963 * src/reader.c (copy_action): `buf' is not used.
20964 (parse_skel_decl): Be static.
20965 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
20966 * src/options.h (create_long_option_table): Have a real prototype.
20967 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
20968 (hash_delete_at): Return const void *.
20969 Adjust casts to preserve the const.
20970
20971 2001-12-10 Akim Demaille <akim@epita.fr>
20972
20973 * configure.in: Require 2.52g.
20974 M4 is not needed, but AUTOM4TE is.
20975 * m4/m4.m4: Remove.
20976 * tests/Makefile.am: Adjust.
20977
20978 2001-12-10 Akim Demaille <akim@epita.fr>
20979
20980 One structure for states is enough, even though theoretically
20981 there are LR(0) states and LALR(1) states.
20982
20983 * src/lalr.h (state_t): Remove.
20984 (state_table): Be state_t **, not state_t *.
20985 * src/state.h (core, CORE_ALLOC): Rename as...
20986 (state_t, STATE_ALLOC): this.
20987 Add the LALR(1) members: shifts, reductions, errs.
20988 * src/LR0.c (state_table): Rename as...
20989 (state_hash): this, to avoid name clashes with the global
20990 `state_table'.
20991 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
20992 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
20993
20994 2001-12-10 Akim Demaille <akim@epita.fr>
20995
20996 Bison dumps core on bash.y.
20997 Reported by Pascal Bart.
20998
20999 * src/warshall.c (bitmatrix_print): New.
21000 (TC): Use it.
21001 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
21002 j must be the outer loop.
21003 * tests/regression.at (Broken Closure): New.
21004
21005 2001-12-05 Akim Demaille <akim@epita.fr>
21006
21007 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21008 its argument.
21009 Reported by Peter Hamorsky.
21010
21011 2001-12-05 Akim Demaille <akim@epita.fr>
21012
21013 * src/conflicts.c (err_table): Remove.
21014 (resolve_sr_conflict): Adjust.
21015 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21016 Rename as...
21017 (state_t.reductions, state_t.shifts): this.
21018
21019 2001-12-05 Akim Demaille <akim@epita.fr>
21020
21021 * src/reduce.c (reduce_grammar_tables): No longer disable the
21022 removal of useless rules via CPP but via `if (0)', so that the
21023 compiler still check the code is valid.
21024 For instance, it should have noticed `rline' no longer exists: use
21025 the `line' member of rule_t.
21026 * src/gram.c (dummy, rline): Remove, unused.
21027
21028 2001-12-05 Akim Demaille <akim@epita.fr>
21029
21030 * src/output.c (pack_vector): Use assert, not berror.
21031 * src/main.c (berror): Remove, unused.
21032
21033 2001-12-05 Akim Demaille <akim@epita.fr>
21034
21035 New experimental feature: if --verbose --trace output all the
21036 items of a state, not only its kernel.
21037
21038 * src/print.c (print_core): If `trace_flag', then invoke closure
21039 before outputting the items of the state (print_core is no longer
21040 a correct name them).
21041 (print_results): Invoke new_closure/free_closure if needed.
21042
21043 2001-12-05 Akim Demaille <akim@epita.fr>
21044
21045 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21046 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21047 (nitemset): for consistency with the rest of the project.
21048
21049 2001-12-05 Akim Demaille <akim@epita.fr>
21050
21051 * src/closure.c (print_closure): Improve.
21052 (closure): Use it for printing input and output.
21053
21054 2001-12-05 Akim Demaille <akim@epita.fr>
21055
21056 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21057 indexed by nonterminals.
21058
21059 2001-12-05 Akim Demaille <akim@epita.fr>
21060
21061 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21062 what it was!).
21063 * src/warshall.h: Remove accidental duplication of the content.
21064
21065 2001-12-05 Akim Demaille <akim@epita.fr>
21066
21067 * src/closure.c (set_fderives): De-obfuscate.
21068
21069 2001-12-05 Akim Demaille <akim@epita.fr>
21070
21071 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21072
21073 2001-12-05 Akim Demaille <akim@epita.fr>
21074
21075 * src/closure.c (set_firsts): De-obfuscate.
21076
21077 2001-12-05 Akim Demaille <akim@epita.fr>
21078
21079 * src/output.c (action_row): De-obfuscate
21080 using the good o' techniques: arrays not pointers, variable
21081 locality, BITISSET, RESETBIT etc.
21082
21083 2001-12-05 Akim Demaille <akim@epita.fr>
21084
21085 Pessimize the code to simplify it: from now on, all the states
21086 have a valid SHIFTS, which NSHIFTS is possibly 0.
21087
21088 * src/LR0.c (shifts_new): Be global and move to..
21089 * src/state.c, src/state.h: here.
21090 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21091 * src/print_graph: Adjust.
21092
21093 2001-12-05 Akim Demaille <akim@epita.fr>
21094
21095 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21096 * src/conflicts.c: Use it.
21097 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21098 incorrectly ``simplified''.
21099
21100 2001-12-05 Akim Demaille <akim@epita.fr>
21101
21102 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21103 using the good o' techniques: arrays not pointers, variable
21104 locality, BITISSET, RESETBIT etc.
21105
21106 2001-12-05 Akim Demaille <akim@epita.fr>
21107
21108 * src/state.h (SHIFT_SYMBOL): New.
21109 * src/conflicts.c: Use it to deobfuscate.
21110
21111 2001-12-05 Akim Demaille <akim@epita.fr>
21112
21113 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21114 (print_reductions): De-obfuscate using the good o' techniques:
21115 arrays not pointers, variable locality, BITISSET.
21116
21117 2001-12-05 Akim Demaille <akim@epita.fr>
21118
21119 * src/conflicts.c (print_reductions): Arrays, not pointers.
21120 Use BITISSET.
21121
21122 2001-12-05 Akim Demaille <akim@epita.fr>
21123
21124 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21125
21126 2001-12-05 Akim Demaille <akim@epita.fr>
21127
21128 * src/conflicts.c (print_reductions): Improve variable locality.
21129
21130 2001-12-05 Akim Demaille <akim@epita.fr>
21131
21132 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21133
21134 2001-12-05 Akim Demaille <akim@epita.fr>
21135
21136 * src/conflicts.c (print_reductions): Improve variable locality.
21137
21138 2001-12-05 Akim Demaille <akim@epita.fr>
21139
21140 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21141 * src/lalr.c: Use them.
21142
21143 2001-12-05 Akim Demaille <akim@epita.fr>
21144
21145 * src/LR0.c (augment_automaton): Formatting changes.
21146 Better variable locality.
21147
21148 2001-12-05 Akim Demaille <akim@epita.fr>
21149
21150 * src/lalr.c (matrix_print): New.
21151 (transpose): Use it.
21152 Use arrays instead of pointers.
21153
21154 2001-12-05 Akim Demaille <akim@epita.fr>
21155
21156 * src/lalr.c (maxrhs): Move to...
21157 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21158 * src/lalr.c (build_relations): Adjust.
21159
21160 2001-12-05 Akim Demaille <akim@epita.fr>
21161
21162 * src/lalr.c (transpose): Free the memory allocated to the
21163 argument, as it is replaced by the results by the unique caller.
21164 (build_relations): Merely invoke transpose: it handles the memory
21165 deallocation.
21166 Improve variable locality.
21167 Avoid variables used as mere abbreviations.
21168 (compute_lookaheads): Use arrays instead of pointers.
21169
21170 2001-12-05 Akim Demaille <akim@epita.fr>
21171
21172 * src/lalr.c (initialize_F): Improve variable locality.
21173 Avoid variables used as mere abbreviations.
21174
21175 2001-12-05 Akim Demaille <akim@epita.fr>
21176
21177 * src/derives.c (print_derives): Display the ruleno.
21178 * src/lalr.c (initialize_F, transpose): Better variable locality
21179 to improve readability.
21180 Avoid variables used as mere abbreviations.
21181
21182 2001-12-05 Akim Demaille <akim@epita.fr>
21183
21184 * src/lalr.c (traverse): Use arrays instead of pointers.
21185
21186 2001-12-05 Akim Demaille <akim@epita.fr>
21187
21188 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21189 the handling of squeue.
21190 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21191
21192 2001-12-05 Akim Demaille <akim@epita.fr>
21193
21194 Because useless nonterminals are now kept alive (instead of being
21195 `destroyed'), we now sometimes examine them, and store information
21196 related to them. Hence we need to know their number, and adjust
21197 memory allocations.
21198
21199 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21200 static.
21201 * src/LR0.c (allocate_itemsets): The memory allocated to
21202 `symbol_count' was used for two different purpose: once to count
21203 the number of occurrences of each symbol, and later reassigned to
21204 `shift_symbol', containing the symbol that can be shifted from a
21205 given state.
21206 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21207 only, and...
21208 (new_itemsets): Allocate `shift_symbol' here.
21209 (allocate_itemsets): symbol_count includes useless nonterminals.
21210 Make room for them.
21211 (free_storage): Use `free', not `XFREE', for pointers that cannot
21212 be null.
21213
21214 2001-12-05 Akim Demaille <akim@epita.fr>
21215
21216 * src/nullable.c (set_nullable): Deobfuscate the handling of
21217 ritem.
21218 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21219
21220 2001-12-05 Akim Demaille <akim@epita.fr>
21221
21222 * src/gram.c, src/gram.h (ritem_print): New.
21223 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21224 (This useless function was defined only to work around VMS linkers
21225 that can't handle compilation units with variables only).
21226 * src/reduce.c (dump_grammar): Use it to trace the construction of
21227 ritem.
21228
21229 2001-12-04 Paul Eggert <eggert@twinsun.com>
21230
21231 * src/bison.simple (union yyalloc): Change member names
21232 to be the same as the stack names.
21233 (yyparse): yyptr is now union yyalloc *, not char *.
21234 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21235 and may generate better code on some machines.
21236 (yystpcpy): Use prototype if __STDC__ is defined, not just
21237 if __cplusplus is defined.
21238
21239 2001-11-30 Akim Demaille <akim@epita.fr>
21240
21241 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21242 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21243 Gettext doesn't compile cleanly, and dies with -Werror.
21244 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21245 Include WARNING_CFLAGS here.
21246 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21247 before being defined.
21248
21249 2001-11-27 Paul Eggert <eggert@twinsun.com>
21250
21251 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21252 First arg is int, not unsigned.
21253 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21254 (SIZE_MAX, UINT_MAX): New macros.
21255 (quotearg_n_options): Abort if N is negative.
21256 Avoid overflow check on hosts where size_t is 64 bits and int
21257 is 32 bits, as overflow is impossible there.
21258 Fix off-by-one typo that caused unnecessary reallocation.
21259
21260 2001-11-29 Paul Eggert <eggert@twinsun.com>
21261
21262 Name space cleanup in generated parser.
21263
21264 * doc/bison.texinfo (Bison Parser): Discuss system headers
21265 and their effect on the user name space.
21266
21267 * src/bison.simple:
21268 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21269 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21270 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21271
21272 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21273 on user names when possible.
21274
21275 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21276 Simplify test for whather <alloca.h> exists.
21277
21278 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21279
21280 (<stdio.h>): Include if YYDEBUG.
21281
21282 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21283 ! defined (yyoverflow) && ! defined (yymemcpy).
21284
21285 (yymemcpy, yyparse): Rename local variables as needed so that
21286 they all begin with 'yy'.
21287
21288 (yystrlen, yystpcpy): New functions.
21289
21290 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21291 All uses changed.
21292
21293 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21294 instead of relying on string.h functions. Use YYSTACK_ALLOC
21295 and YYSTACK_FREE instead of malloc and free.
21296
21297 2001-11-30 Akim Demaille <akim@epita.fr>
21298
21299 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21300 before their first uses.
21301 (YYBISON, YYPURE): Move to the top of the output.
21302
21303 2001-11-30 Akim Demaille <akim@epita.fr>
21304
21305 * tests/reduce.at (Useless Nonterminals): Fix.
21306
21307 2001-11-30 Akim Demaille <akim@epita.fr>
21308
21309 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21310 if body instead of `;' to pacify GCC's warnings.
21311
21312 2001-11-30 Akim Demaille <akim@epita.fr>
21313
21314 Instead of mapping the LHS of unused rules to -1, keep the LHS
21315 valid, but flag the rules as invalid.
21316
21317 * src/gram.h (rule_t): `useful' is a new member.
21318 * src/print.c (print_grammar): Adjust.
21319 * src/derives.c (set_derives): Likewise.
21320 * src/reader.c (packgram, reduce_output): Likewise.
21321 * src/reduce.c (reduce_grammar_tables): Likewise.
21322 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21323
21324 2001-11-30 Akim Demaille <akim@epita.fr>
21325
21326 * src/reduce.c (reduce_output): Formatting changes.
21327 * src/print.c (print_results, print_grammar): Likewise.
21328 * tests/regression.at (Rule Line Numbers)
21329 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21330
21331 2001-11-30 Akim Demaille <akim@epita.fr>
21332
21333 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21334 useless nonterminals, move them at the end of the symbol arrays.
21335 (reduce_output): Adjust.
21336 * tests/reduce.at (Useless Nonterminals): Adjust.
21337
21338 2001-11-30 Akim Demaille <akim@epita.fr>
21339
21340 * src/reduce.c: Various comment/formatting changes.
21341 (nonterminals_reduce): New, extracted from...
21342 (reduce_grammar_tables): here.
21343 (reduce_grammar): Call nonterminals_reduce.
21344
21345 2001-11-29 Paul Eggert <eggert@twinsun.com>
21346
21347 * src/bison.simple (YYSTACK_REALLOC): Remove.
21348 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21349 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21350 New macros.
21351 (union yyalloc): New type.
21352 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21353 an arbitrary restriction on hosts where size_t is wider than int.
21354
21355 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21356 a parser stack overflow. Allocate just one block of memory for all
21357 three stacks, instead of allocating three blocks; this typically is
21358 faster and reduces fragmentation.
21359
21360 Do not limit the number of items in the stack to a value that fits
21361 in 'int', as this is an arbitrary limit on hosts with 64-bit
21362 size_t and 32-bit int.
21363
21364 2001-11-29 Marc Autret <autret_m@epita.fr>
21365
21366 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21367 of defining YYERROR_VERBOSE.
21368 [AT_DATA]: $4 is now out of C declarations in the prologue.
21369
21370 2001-11-28 Marc Autret <autret_m@epita.fr>
21371
21372 * src/reader.c (parse_dquoted_param): New.
21373 (parse_skel_decl): Use it.
21374 * src/lex.h: Add its prototype.
21375 * src/lex.c (literalchar): Become not static.
21376
21377 2001-11-28 Marc Autret <autret_m@epita.fr>
21378
21379 * src/output.h: And put its extern declaration here.
21380 * src/output.c (error_verbose): Define here.
21381 (prepare): Echo name modification.
21382 * src/getargs.h: Clean its extern declaration.
21383 * src/getargs.c (error_verbose_flag): Remove.
21384 (getargs): Remove case 'e'.
21385 * src/options.c (option_table): 'error-verbose' is now seen as simple
21386 percent option.
21387 Include output.h.
21388
21389 * src/reader.c (read_declarations): Remove case tok_include.
21390 (parse_include_decl): Remove.
21391 * src/lex.h (token_t): Remove tok_include.
21392 * src/options.c (option_table): 'include' is now a simple command line
21393 option.
21394
21395 2001-11-28 Marc Autret <autret_m@epita.fr>
21396
21397 * src/bison.simple: Adjust muscle names.
21398 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21399 * src/output.c (prepare): s/_/-/ for the muscles names.
21400 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21401
21402 2001-11-28 Marc Autret <autret_m@epita.fr>
21403
21404 * src/bison.simple: Fix debug.
21405 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21406
21407 2001-11-28 Akim Demaille <akim@epita.fr>
21408
21409 * src/LR0.c (shifts_new): New.
21410 (save_shifts, insert_start_shift, augment_automaton): Use it.
21411
21412 2001-11-28 Akim Demaille <akim@epita.fr>
21413
21414 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21415 keep ruleno only.
21416
21417 2001-11-28 Akim Demaille <akim@epita.fr>
21418
21419 * src/closure.c (closure): Instead of looping over word in array
21420 then bits in words, loop over bits in array.
21421
21422 2001-11-28 Akim Demaille <akim@epita.fr>
21423
21424 * src/closure.c (closure): No longer optimize the special case
21425 where all the bits of `ruleset[r]' are set to 0, to make the code
21426 clearer.
21427
21428 2001-11-28 Akim Demaille <akim@epita.fr>
21429
21430 * src/closure.c (closure): `r' and `c' are new variables, used to
21431 de-obfuscate accesses to RULESET and CORE.
21432
21433 2001-11-28 Akim Demaille <akim@epita.fr>
21434
21435 * src/reduce.c (reduce_print): Use ngettext.
21436 (dump_grammar): Improve the trace accuracy.
21437
21438 2001-11-28 Akim Demaille <akim@epita.fr>
21439
21440 * src/reduce.c (dump_grammar): Don't translate trace messages.
21441
21442 2001-11-28 Akim Demaille <akim@epita.fr>
21443
21444 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21445 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21446 as all tags are free'ed afterwards.
21447 From Enrico Scholz.
21448
21449 2001-11-27 Paul Eggert <eggert@twinsun.com>
21450
21451 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21452 use alloca when we didn't want to, and vice versa.
21453
21454 2001-11-27 Marc Autret <autret_m@epita.fr>
21455
21456 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21457 initialization.
21458 * src/output.c (prepare): Remove its update.
21459
21460 2001-11-27 Marc Autret <autret_m@epita.fr>
21461
21462 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21463 Use %error-verbose.
21464
21465 2001-11-27 Marc Autret <autret_m@epita.fr>
21466
21467 * src/bison.simple: Remove YYERROR_VERBOSE using.
21468 Use %%error_verbose.
21469 (yyparse): Likewise.
21470 * src/output.c (prepare): Give its final value.
21471 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21472 * src/getargs.h: Add its extern declaration.
21473 * src/getargs.c (error_verbose_flag): New int.
21474 (getargs): Update to catch new case.
21475 * src/options.c (option_table): 'error-verbose' is a new option.
21476 (shortopts): Update.
21477
21478 2001-11-27 Akim Demaille <akim@epita.fr>
21479
21480 * src/system.h: Use intl/libgettext.h.
21481 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21482
21483 2001-11-27 Akim Demaille <akim@epita.fr>
21484
21485 * tests/torture.at (Exploding the Stack Size with Malloc):
21486 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21487
21488 2001-11-27 Akim Demaille <akim@epita.fr>
21489
21490 * src/files.c: Include error.h.
21491 Reported by Hans Aberg.
21492
21493 2001-11-26 Marc Autret <autret_m@epita.fr>
21494
21495 * src/reader.c (parse_include_decl): New, not yet implemented.
21496 (read_declarations): Add case tok_include.
21497 * src/getargs.h (include): Add its extern definition.
21498 * src/getargs.c (include): New const char *.
21499 (getargs): Add case '-I'.
21500 * src/options.c (option_table): Add include as command line and
21501 percent option.
21502 * src/lex.h (token_t): Add tok_include.
21503
21504 2001-11-26 Akim Demaille <akim@epita.fr>
21505
21506 * src/reader.c (readgram): Make sure rules for mid-rule actions
21507 have a lineno equal to that of their host rule.
21508 Reported by Hans Aberg.
21509 * tests/regression.at (Rule Line Numbers): New.
21510
21511 2001-11-26 Akim Demaille <akim@epita.fr>
21512
21513 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21514 size_ts.
21515
21516 2001-11-26 Akim Demaille <akim@epita.fr>
21517
21518 * src/complain.c, src/complain.h (error): Remove, provided by
21519 lib/error.[ch].
21520
21521 2001-11-26 Akim Demaille <akim@epita.fr>
21522
21523 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21524 issue an error message.
21525 * tests/regression.at (Invalid %directive): New.
21526 Reported by Hans Aberg.
21527
21528 2001-11-26 Akim Demaille <akim@epita.fr>
21529
21530 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21531 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21532
21533 2001-11-26 Akim Demaille <akim@epita.fr>
21534
21535 * src/conflicts.c (conflicts_print): Don't complain at all when
21536 there are no reduce/reduce conflicts, and as many shift/reduce
21537 conflicts as expected.
21538 * tests/regression.at (%expect right): Adjust.
21539
21540 2001-11-23 Akim Demaille <akim@epita.fr>
21541
21542 * lib/alloca.c: Update, from fileutils.
21543
21544 2001-11-23 Akim Demaille <akim@epita.fr>
21545
21546 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21547
21548 2001-11-23 Akim Demaille <akim@epita.fr>
21549
21550 * src/system.h: Include alloca.h.
21551 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21552
21553 2001-11-23 Akim Demaille <akim@epita.fr>
21554
21555 * src/print_graph.c (print_actions): Remove `rule', unused.
21556 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21557 pacify GCC's signed < unsigned warnings.
21558 * src/closure.c (itemsetsize): Likewise.
21559 * src/reader.c (symbol_list_new): Static.
21560
21561 2001-11-23 Akim Demaille <akim@epita.fr>
21562
21563 Attaching lineno to buckets is stupid, since only one copy of each
21564 symbol is kept, only the line of the first occurrence is kept too.
21565
21566 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21567 * src/reader.c (rline_allocated): Remove, unused.
21568 (symbol_list): Have a `line' member.
21569 (symbol_list_new): New.
21570 (readgram): Use it.
21571 * src/print.c (print_grammar): Output the rule line numbers.
21572 * tests/regression.at (Solved SR Conflicts)
21573 (Unresolved SR Conflicts): Adjust.
21574 Reported by Hans Aberg.
21575
21576 2001-11-22 Marc Autret <autret_m@epita.fr>
21577
21578 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21579
21580 2001-11-22 Marc Autret <autret_m@epita.fr>
21581
21582 * src/muscle_tab.c (muscle_init): Remove initialization of
21583 skeleton muscle.
21584 * src/output.c (output_master_parser): Do it here.
21585
21586 2001-11-20 Akim Demaille <akim@epita.fr>
21587
21588 * po/sv.po: New.
21589 * configure.in (ALL_LINGUAS): Adjust.
21590 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21591 longer contains strings to translate.
21592
21593 2001-11-19 Akim Demaille <akim@epita.fr>
21594
21595 * src/conflicts.c (conflicts_print): Add a missing \n.
21596
21597 2001-11-19 Akim Demaille <akim@epita.fr>
21598
21599 * src/nullable.c (nullable_print): New.
21600 (set_nullable): Call it when tracing.
21601 Better locality of variables.
21602
21603 2001-11-19 Akim Demaille <akim@epita.fr>
21604
21605 * src/print.c (print_actions): Better locality of variables.
21606
21607 2001-11-19 Akim Demaille <akim@epita.fr>
21608
21609 * src/derives.c (print_derives): Fix and enrich.
21610 * src/closure.c (print_fderives): Likewise.
21611
21612 2001-11-19 Akim Demaille <akim@epita.fr>
21613
21614 * src/closure.c (itemsetend): Remove, replaced with...
21615 (itemsetsize): new.
21616
21617 2001-11-19 Akim Demaille <akim@epita.fr>
21618
21619 * src/LR0.c (kernel_end): Remove, replaced with...
21620 (kernel_size): new.
21621
21622 2001-11-19 Akim Demaille <akim@epita.fr>
21623
21624 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21625 to clarify.
21626
21627 2001-11-19 Akim Demaille <akim@epita.fr>
21628
21629 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21630
21631 2001-11-19 Akim Demaille <akim@epita.fr>
21632
21633 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21634 trace messages.
21635 * src/LR0.c: Likewise.
21636 (allocate_itemsets): Use arrays instead of pointers to clarify.
21637
21638 2001-11-19 Akim Demaille <akim@epita.fr>
21639
21640 * src/getargs.c (statistics_flag): Replace with...
21641 (trace_flag): New.
21642 (longopts): Accept --trace instead of --statistics.
21643 * src/getargs.h, src/options.c: Adjust.
21644 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21645 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21646
21647 2001-11-19 Akim Demaille <akim@epita.fr>
21648
21649 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
21650 pointers to clarify the code.
21651 (save_reductions, save_shifts): Factor common parts of alternatives.
21652
21653 2001-11-19 Akim Demaille <akim@epita.fr>
21654
21655 * src/LR0.c (new_state, get_state): Complete TRACE code.
21656 * src/closure.c: Include `reader.h' to get `tags', needed by the
21657 trace code.
21658 Rename the conditional DEBUG as TRACE.
21659 Output consistently TRACEs to stderr, not stdout.
21660 * src/derives.c: Likewise.
21661 * src/reduce.c: (inaccessable_symbols): Using if is better style
21662 than goto.
21663 Use `#if TRACE' instead of `#if 0' for tracing code.
21664
21665 2001-11-19 Akim Demaille <akim@epita.fr>
21666
21667 * src/system.h (LIST_FREE, shortcpy): New.
21668 * src/LR0.c: Use them.
21669 * src/output.c (free_itemsets, free_reductions, free_shifts):
21670 Remove, replaced by LIST_FREE.
21671
21672 2001-11-19 Akim Demaille <akim@epita.fr>
21673
21674 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21675 (REDUCTIONS_ALLOC): New.
21676 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21677 allocation.
21678
21679 2001-11-19 Akim Demaille <akim@epita.fr>
21680
21681 * src/LR0.c (new_state): Complete trace code.
21682 * src/nullable.c (set_nullable): Don't translate traces.
21683
21684 2001-11-19 Akim Demaille <akim@epita.fr>
21685
21686 * src/print_graph.c (print_core): Better locality of variables.
21687 * src/print.c (print_core): Likewise.
21688
21689 2001-11-19 Akim Demaille <akim@epita.fr>
21690
21691 * src/vcg.c: You do the output, so you are responsible of the
21692 handling of VCG syntax, in particular: use quotearg.
21693 * src/print_graph.c: Don't.
21694 (print_actions): Don't output the actions as part of the nodes,
21695 since that's the job of the edges.
21696 (print_state): Don't output by hand: fill the node description,
21697 and ask for its output.
21698
21699 2001-11-19 Akim Demaille <akim@epita.fr>
21700
21701 * src/bison.simple (yyparse): When verbosely reporting an error,
21702 no longer put additional quotes around token names.
21703 * tests/calc.at: Adjust.
21704
21705 2001-11-19 Akim Demaille <akim@epita.fr>
21706
21707 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21708 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21709 * src/output.c: Adjust.
21710
21711 2001-11-19 Akim Demaille <akim@epita.fr>
21712
21713 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21714 (rule_t): this.
21715 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21716
21717 2001-11-19 Akim Demaille <akim@epita.fr>
21718
21719 * src/gram.h (rule_t): New.
21720 (rule_table): New.
21721 (rrhs, rlhs): Remove, part of state_t.
21722 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21723 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21724 * src/reader.c, src/reduce.c: Adjust.
21725
21726 2001-11-19 Akim Demaille <akim@epita.fr>
21727
21728 * src/reader.c (symbols_output): New, extracted from...
21729 (packsymbols): Here.
21730 (reader): Call it.
21731
21732 2001-11-19 Akim Demaille <akim@epita.fr>
21733
21734 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21735 (maxrhs): this new function.
21736
21737 2001-11-19 Akim Demaille <akim@epita.fr>
21738
21739 * src/lalr.c (F): New macro to access the variable F.
21740 Adjust.
21741
21742 2001-11-19 Akim Demaille <akim@epita.fr>
21743
21744 * src/lalr.h (LA): New macro to access the variable LA.
21745 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21746 * src/lalr.c: Adjust.
21747
21748 2001-11-19 Akim Demaille <akim@epita.fr>
21749
21750 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21751 (set_state_table): handle the `lookaheads' members.
21752
21753 2001-11-19 Akim Demaille <akim@epita.fr>
21754
21755 * src/lalr.h (lookaheads): Removed array, whose contents is now
21756 a member of...
21757 (state_t): this structure.
21758 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21759 Adjust.
21760
21761 2001-11-19 Akim Demaille <akim@epita.fr>
21762
21763 * src/lalr.h (consistent): Removed array, whose contents is now
21764 a member of...
21765 (state_t): this structure.
21766 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21767 Adjust.
21768
21769 2001-11-19 Akim Demaille <akim@epita.fr>
21770
21771 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21772 contents are now members of...
21773 (state_t): this structure.
21774 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21775 Adjust.
21776
21777 2001-11-19 Akim Demaille <akim@epita.fr>
21778
21779 * src/lalr.h (state_t): New.
21780 (state_table): Be a state_t * instead of a core **.
21781 (accessing_symbol): Remove, part of state_t.
21782 * src/lalr.c: Adjust.
21783 (set_accessing_symbol): Merge into...
21784 (set_state_table): this.
21785 * src/print_graph.c, src/conflicts.c: Adjust.
21786
21787 2001-11-14 Akim Demaille <akim@epita.fr>
21788
21789 * tests/calc.at, tests/output.at, tests/regression.at,
21790 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21791 now the tests are run in private dirs, therefore AC_CLEANUP and
21792 family can be simplified to 0-ary.
21793 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21794 use abs. path to find config.h.
21795 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21796 stderr, there can be way too much random noise.
21797 Instead pass -Werror to GCC and rely on the exit status.
21798 Reported by Wolfram Wagner.
21799
21800 2001-11-14 Akim Demaille <akim@epita.fr>
21801
21802 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21803 defined only if yyoverflow is defined, to avoid `warning: unused
21804 variable `yyvs1''.
21805 Reported by The Test Suite.
21806
21807 2001-11-14 Akim Demaille <akim@epita.fr>
21808
21809 * src/print.c: Include reduce.h.
21810 Reported by Hans Aberg.
21811
21812 2001-11-14 Akim Demaille <akim@epita.fr>
21813
21814 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21815 Revert a previous patch: these are really const.
21816 * src/conflicts.c (conflict_report): Additional useless pair of
21817 braces to pacify GCC's warnings for `if () if () {} else {}'.
21818 * src/lex.c (parse_percent_token): Replace equal_offset with
21819 arg_offset.
21820 arg is const.
21821 Be sure to strdup `arg' when used, since there is no reason for
21822 token_buffer not to change.
21823
21824 2001-11-14 Akim Demaille <akim@epita.fr>
21825
21826 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21827 definition.
21828 * src/main.c (main): Use them.
21829 Suggested by Hans Aberg.
21830
21831 2001-11-12 Akim Demaille <akim@epita.fr>
21832
21833 * src/system.h (ngettext): Now that we use ngettext, be sure to
21834 provide a default definition when NLS are not used.
21835
21836 2001-11-12 Akim Demaille <akim@epita.fr>
21837
21838 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21839 Use @kbd to denote user input.
21840 (Language and Grammar): ANSIfy the example.
21841 Adjust its layout for info/notinfo.
21842 (Location Tracking Calc): Output error messages to stderr.
21843 Output locations in a more GNUtically correct way.
21844 Fix a couple of Englishos.
21845 Adjust @group/@end group pairs.
21846
21847 2001-11-12 Akim Demaille <akim@epita.fr>
21848
21849 %expect was not functioning at all.
21850
21851 * src/conflicts.c (expected_conflicts): Set to -1.
21852 (conflict_report): Use ngettext.
21853 (conflicts_print): Check %expect and make its violation an error.
21854 * doc/bison.texinfo (Expect Decl): Adjust.
21855 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21856 * tests/regression.at (%expect not enough, %expect right)
21857 (%expect too much): New.
21858
21859 2001-11-12 Akim Demaille <akim@epita.fr>
21860
21861 * tests/regression.at (Conflicts): Rename as...
21862 (Unresolved SR Conflicts): this.
21863 (Solved SR Conflicts): New.
21864
21865 2001-11-12 Akim Demaille <akim@epita.fr>
21866
21867 * src/reduce.c (print_results): Rename as...
21868 (reduce_output): This.
21869 Output to OUT, passed as argument, instead of output_obstack.
21870 (dump_grammar): Likewise.
21871 (reduce_free): New.
21872 Also free V1.
21873 (reduce_grammar): No longer call reduce_output, since...
21874 * src/print.c (print_results): do it.
21875 * src/main.c (main): Call reduce_free;
21876
21877 2001-11-12 Akim Demaille <akim@epita.fr>
21878
21879 * src/conflicts.c (print_reductions): Accept OUT as argument.
21880 Output to it, not to output_obstack.
21881 * src/print.c (print_actions): Adjust.
21882
21883 2001-11-12 Akim Demaille <akim@epita.fr>
21884
21885 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21886 the result instead of using...
21887 (src_total, rrc_total, src_count, rrc_count): Remove.
21888 (any_conflicts): Remove.
21889 (print_conflicts): Split into...
21890 (conflicts_print, conflicts_output): New.
21891 * src/conflicts.h: Adjust.
21892 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
21893 * src/print.c (print_grammar): Issue `\n' between two rules.
21894 * tests/regression.at (Conflicts): New.
21895 Reported by Tom Lane.
21896
21897 2001-11-12 Akim Demaille <akim@epita.fr>
21898
21899 * tests/regression.at (Invalid input): Remove, duplicate with
21900 ``Invalid input: 1''.
21901
21902 2001-11-12 Akim Demaille <akim@epita.fr>
21903
21904 * tests/torture.at (AT_DATA_STACK_TORTURE)
21905 (Exploding the Stack Size with Alloca)
21906 (Exploding the Stack Size with Malloc): New.
21907
21908 2001-11-12 Akim Demaille <akim@epita.fr>
21909
21910 * src/bison.simple (YYSTACK_REALLOC): New.
21911 (yyparse) [!yyoverflow]: Use it and free the old stack.
21912 Reported by Per Allansson.
21913
21914 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
21915
21916 * src/bison.simple: Define type yystype instead of YYSTYPE, and
21917 define CPP macro, which substitute YYSTYPE by yystype.
21918 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
21919 with yyltype/YYLTYPE. This allows inclusion of the generated
21920 header within the parser if the compiler, such as GGC, accepts
21921 multiple equivalent #defines.
21922 From Akim.
21923
21924 2001-11-05 Akim Demaille <akim@epita.fr>
21925
21926 * src/reader.c (symbols_output): New, extracted from...
21927 (packsymbols): here.
21928 (reader): Adjust.
21929
21930 2001-11-05 Akim Demaille <akim@epita.fr>
21931
21932 * src/lex.c (parse_percent_token): s/quotearg/quote/.
21933
21934 2001-11-05 Akim Demaille <akim@epita.fr>
21935
21936 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
21937 pattern.
21938
21939 2001-11-05 Akim Demaille <akim@epita.fr>
21940
21941 * src/options.h (struct option_table_struct): set_flags is void*.
21942 * src/options.c (longopts): Support `--output' and `%output'.
21943 (usage): Adjust.
21944 * src/lex.h (tok_setopt): Remove, replaced with...
21945 (tok_intopt, tok_stropt): these new guys.
21946 * src/lex.c (getopt.h): Not needed.
21947 (token_buffer, unlexed_token_buffer): Not const.
21948 (percent_table): Promote `-' over `_' in directive names.
21949 Active `%name-prefix', `file-prefix', and `output'.
21950 (parse_percent_token): Accept possible arguments to directives.
21951 Promote `-' over `_' in directive names.
21952
21953 2001-11-04 Akim Demaille <akim@epita.fr>
21954
21955 * doc/bison.texinfo (Decl Summary): Split the list into
21956 `directives for grammars' and `directives for bison'.
21957 Sort'em.
21958 Add description of `%name-prefix', `file-prefix', and `output'.
21959 Promote `-' over `_' in directive names.
21960 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
21961 Simplify the description of `--name-prefix'.
21962 Promote `-' over `_' in directive names.
21963 Promote `--output' over `--output-file'.
21964 Fix the description of `--defines'.
21965 * tests/output.at: Exercise %file-prefix and %output.
21966
21967 2001-11-02 Akim Demaille <akim@epita.fr>
21968
21969 * doc/refcard.tex: Update.
21970
21971 2001-11-02 Akim Demaille <akim@epita.fr>
21972
21973 * src/symtab.h (SUNDEF): New.
21974 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
21975 stand for `uninitialized', instead of 0.
21976 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
21977 * src/lex.c (lex): Adjust.
21978
21979 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
21980 Number it 0.
21981 Let yylex return it instead of a plain 0.
21982 Reported by Dick Streefland.
21983
21984 2001-11-02 Akim Demaille <akim@epita.fr>
21985
21986 * tests/regression.at (Mixing %token styles): New test.
21987
21988 2001-11-02 Akim Demaille <akim@epita.fr>
21989
21990 * src/reader.c (parse_thong_decl): Formatting changes.
21991 (token_translations_init): New, extracted from...
21992 (packsymbols): Here.
21993 Adjust.
21994
21995 2001-11-01 Akim Demaille <akim@epita.fr>
21996
21997 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
21998 Check that `9foo.y' produces correct cpp guards.
21999 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22000 guards.
22001 Reported by Wwp.
22002
22003 2001-11-01 Akim Demaille <akim@epita.fr>
22004
22005 * tests/regression.at (Invalid input: 2): New.
22006 * src/lex.c (unlexed_token_buffer): New.
22007 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22008 too.
22009 Reported by Wwp.
22010
22011 2001-11-01 Akim Demaille <akim@epita.fr>
22012
22013 * tests/calc.at: Catch up with 1.30.
22014 * configure.in: Bump to 1.49a.
22015 Adjust to newer Autotest.
22016
22017 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
22018
22019 * src/conflicts.c: Move global variables rrc_total and src_total ...
22020 (print_conflicts): here.
22021 * src/output.c (output): Free global variable user_toknums.
22022 * src/lex.c (token_obstack): Become static.
22023
22024 2001-10-18 Akim Demaille <akim@epita.fr>
22025
22026 * tests/atlocal.in (GCC): Add.
22027 * tests/calc.at: s/m4_match/m4_bmatch/.
22028 s/m4_patsubst/m4_bpatsubst/.
22029 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22030 * configure.in: AC_SUBST(GCC).
22031
22032 2001-10-14 Marc Autret <autret_m@epita.fr>
22033
22034 * src/options.c (create_long_option_table): Fix.
22035
22036 2001-10-10 Akim Demaille <akim@epita.fr>
22037
22038 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22039
22040 2001-10-04 Akim Demaille <akim@epita.fr>
22041
22042 * src/reader.c (parse_union_decl): Push the caracters in
22043 union_obstack, not attrs_obstack.
22044
22045 2001-10-04 Akim Demaille <akim@epita.fr>
22046
22047 Merge in the branch 1.29.
22048
22049 * src/reader.c (packsymbols): Use a temporary obstack for
22050 `%%tokendef', since output_stack is already used elsewhere.
22051
22052 2001-10-02 Akim Demaille <akim@epita.fr>
22053
22054 Bump 1.29d.
22055
22056 2001-10-02 Akim Demaille <akim@epita.fr>
22057
22058 Version 1.29c.
22059
22060 2001-10-02 Akim Demaille <akim@epita.fr>
22061
22062 * tests/regression.at (Invalid CPP headers): New.
22063 From Alexander Belopolsky.
22064 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22065
22066 2001-10-02 Akim Demaille <akim@epita.fr>
22067
22068 * tests/regression.at (Invalid input): New.
22069 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22070 Reported by Shura.
22071
22072 2001-10-02 Akim Demaille <akim@epita.fr>
22073
22074 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22075
22076 2001-10-02 Akim Demaille <akim@epita.fr>
22077
22078 * src/output.c (output_parser): Assert `skeleton'.
22079 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22080 systems.
22081 From Shura.
22082
22083 2001-10-01 Marc Autret <autret_m@epita.fr>
22084
22085 * src/lex.h: Echo modifications.
22086 * src/lex.c (unlex): Parameter is now token_t.
22087 From Hans Aberg.
22088
22089 2001-10-01 Marc Autret <autret_m@epita.fr>
22090
22091 * src/main.c: Include lex.h.
22092 From Hans Aberg.
22093
22094 2001-09-29 Akim Demaille <akim@epita.fr>
22095
22096 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22097
22098 2001-09-28 Akim Demaille <akim@epita.fr>
22099
22100 * tests/testsuite.at: Update to newer Autotest.
22101 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22102
22103 2001-09-27 Akim Demaille <akim@epita.fr>
22104
22105 Position independent wrapper.
22106
22107 * tests/bison: Remove.
22108 * tests/bison.in: New.
22109 * configure.in: Adjust.
22110
22111 2001-09-27 Paul Eggert <eggert@twinsun.com>
22112
22113 Port quotearg fixes from tar 1.13.24.
22114
22115 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22116 tm to be declared.
22117 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22118 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22119
22120 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22121 * m4/mbrtowc.m4: New file.
22122 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22123 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22124
22125 2001-09-27 Akim Demaille <akim@epita.fr>
22126
22127 Bump to 1.29c.
22128
22129 2001-09-27 Akim Demaille <akim@epita.fr>
22130
22131 Version 1.29b.
22132
22133 2001-09-25 Akim Demaille <akim@epita.fr>
22134
22135 * src/system.h: Include `xalloc.h'.
22136 Remove it from the C files.
22137 * src/files.c (output_files): Free the obstacks.
22138 * src/lex.c (init_lex): Rename as...
22139 (lex_init): this.
22140 (lex_free): New.
22141 * src/main.c (main): Use it.
22142
22143 2001-09-24 Marc Autret <autret_m@epita.fr>
22144
22145 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22146 to output informations in fout (FILE*).
22147 (open_graph, close_graph): Likewise.
22148 (output_graph, output_edge, output_node): Likewise.
22149 * src/vcg.h: Update function prototypes.
22150 * src/print_graph.c (print_graph): Open output graph file.
22151 (print_actions): Adjust.
22152 * src/files.h: Remove extern declaration.
22153 * src/files.c: Remove graph_obstack declaration.
22154 (open_files): Remove graph_obstack initialization.
22155 (output_files): Remove graph_obstack saving.
22156
22157 2001-09-24 Marc Autret <autret_m@epita.fr>
22158
22159 * src/files.c (compute_output_file_names): Fix.
22160
22161 2001-09-24 Marc Autret <autret_m@epita.fr>,
22162 Akim Demaille <akim@epita.fr>
22163
22164 * src/reader.c (reader): Remove call to free_symtab ().
22165 * src/main.c (main): Call it here.
22166 Include symtab.h.
22167 * src/conflicts.c (initialize_conflicts): Rename as...
22168 (solve_conflicts): this.
22169 * src/print.c (print_core, print_actions, print_state)
22170 (print_grammar): Dump to a file instead a `output_obstack'.
22171 (print_results): Dump `output_obstack', and then proceed with the
22172 FILE *.
22173 * src/files.c (compute_output_file_names, close_files): New.
22174 (output_files): Adjust.
22175 * src/main.c (main): Adjust.
22176
22177 2001-09-23 Marc Autret <autret_m@epita.fr>
22178
22179 * src/files.c (compute_header_macro): Computes header macro name
22180 from spec_defines_file when given.
22181
22182 2001-09-23 Marc Autret <autret_m@epita.fr>
22183
22184 * src/files.c (output_files): Add default extensions.
22185
22186 2001-09-22 Akim Demaille <akim@epita.fr>
22187
22188 * src/conflicts.c (finalize_conflicts): Rename as...
22189 (free_conflicts): this.
22190
22191 2001-09-22 Akim Demaille <akim@epita.fr>
22192
22193 * src/gram.c (gram_free): Rename back as...
22194 (dummy): this.
22195 (output_token_translations): Free `token_translations'.
22196 * src/symtab.c (free_symtab): Free the tag field.
22197
22198 2001-09-22 Akim Demaille <akim@epita.fr>
22199
22200 Remove `translations' as it is always set to true.
22201
22202 * src/gram.h: Adjust.
22203 * src/reader.c (packsymbols, parse_token_decl): Adjust
22204 * src/print.c (print_grammar): Adjust.
22205 * src/output.c (output_token_translations): Adjust.
22206 * src/lex.c (lex): Adjust.
22207 * src/gram.c: Be sure the set pointers to NULL.
22208 (dummy): Rename as...
22209 (gram_free): this.
22210
22211 2001-09-22 Akim Demaille <akim@epita.fr>
22212
22213 * configure.in: Invoke AM_LIB_DMALLOC.
22214 * src/system.h: Use dmalloc.
22215 * src/LR0.c: Be sure to have pointers initialized to NULL.
22216 (allocate_itemsets): Allocate kernel_items only if needed.
22217
22218 2001-09-22 Akim Demaille <akim@epita.fr>
22219
22220 * configure.in: Bump to 1.29b.
22221 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22222 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22223 need xmalloc.c in calc.y.
22224 From Pascal Bart.
22225
22226 2001-09-21 Akim Demaille <akim@epita.fr>
22227
22228 Version 1.29a.
22229 * Makefile.maint, config/config.guess, config/config.sub,
22230 * config/missing: Update from masters.
22231 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22232 upon package.m4.
22233 * configure.in (ALL_LINGUAS): Add `tr'.
22234
22235 2001-09-21 Akim Demaille <akim@epita.fr>
22236
22237 * tests/Makefile.am (package.m4): Move to...
22238 ($(srcdir)/$(TESTSUITE)): here.
22239
22240 2001-09-20 Akim Demaille <akim@epita.fr>
22241
22242 * src/complain.c: No longer try to be standalone: use system.h.
22243 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22244 * src/complain.h: Likewise.
22245 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22246 Remove the unused variable `n'.
22247 From Albert Chin-A-Young.
22248
22249 2001-09-18 Marc Autret <autret_m@epita.fr>
22250
22251 * doc/bison.1: Update.
22252 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22253 descriptions.
22254 (Option Cross Key): Update.
22255 Add --graph.
22256
22257 2001-09-18 Marc Autret <autret_m@epita.fr>
22258
22259 * tests/regression.at: New test (comment in %union).
22260
22261 2001-09-18 Marc Autret <autret_m@epita.fr>
22262
22263 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22264 do that.
22265 Reported by Keith Browne.
22266
22267 2001-09-18 Marc Autret <autret_m@epita.fr>
22268
22269 * tests/output.at: Add tests for --defines and --graph.
22270
22271 2001-09-18 Marc Autret <autret_m@epita.fr>
22272
22273 * tests/output.at: Removes tests of %{header,src}_extension features.
22274
22275 2001-09-18 Akim Demaille <akim@epita.fr>
22276
22277 * tests/Makefile.am (package.m4): New.
22278 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22279 (_AT_CHECK_CALC_ERROR): Likewise.
22280 Factor the `, ' part of verbose error messages.
22281
22282 2001-09-18 Marc Autret <autret_m@epita.fr>
22283
22284 * src/getargs.c (longopts): Declare --defines and --graph as options
22285 with optional arguments.
22286 * src/files.h: Add extern declarations.
22287 * src/files.c (spec_graph_file, spec_defines_file): New.
22288 (output_files): Update.
22289 Remove CPP-outed code.
22290
22291 2001-09-18 Marc Autret <autret_m@epita.fr>
22292
22293 Turn off %{source,header}_extension feature.
22294
22295 * src/files.c (compute_exts_from_gf): Update.
22296 (compute_exts_from_src): Update.
22297 (output_files): CPP-out useless code.
22298 * src/files.h: Remove {header,source}_extension extern declarations.
22299 * src/reader.c (parse_dquoted_param): CPP-out.
22300 (parse_header_extension_decl): Remove.
22301 (parse_source_extension_decl): Remove.
22302 (read_declarations): Remove cases tok_{hdrext,srcext}.
22303 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22304 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22305
22306 2001-09-10 Akim Demaille <akim@epita.fr>
22307
22308 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22309 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22310 (AT_CHECK_OUTPUT): this.
22311 Merely check ls' exit status, its output is useless.
22312
22313 2001-09-10 Akim Demaille <akim@epita.fr>
22314
22315 * tests/calc.at: Use m4_match.
22316 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22317
22318 2001-09-10 Marc Autret <autret_m@epita.fr>,
22319 Akim Demaille <akim@epita.fr>
22320
22321 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22322 enum color_e.
22323 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22324 to `normal'.
22325 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22326 * src/lex.h: Adjust prototype.
22327 (token_t): Add `tok_undef'.
22328 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22329 (parse_percent_token): Now returns token_t.
22330 Add default statement in switch.
22331 (lex): Separate `c' as an input variable, from the token_t result
22332 part.
22333 (unlexed): Is a token_t.
22334
22335 2001-09-10 Akim Demaille <akim@epita.fr>
22336
22337 * configure.in: Bump to 1.29a.
22338
22339 2001-09-07 Akim Demaille <akim@epita.fr>
22340
22341 Version 1.29.
22342
22343 2001-08-30 Akim Demaille <akim@epita.fr>
22344
22345 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22346 * m4/atconfig.m4: Remove.
22347 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22348 * tests/bison: New.
22349 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22350 m4_if, m4_patsubst, and m4_regexp.
22351 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22352 `input' file instead of echo.
22353
22354 2001-08-29 Akim Demaille <akim@epita.fr>
22355
22356 Bump to 1.28e.
22357
22358 2001-08-29 Akim Demaille <akim@epita.fr>
22359
22360 Version 1.28d.
22361
22362 2001-08-29 Paul Eggert <eggert@twinsun.com>
22363
22364 * src/bison.simple (yyparse): Don't take the address of an
22365 item before the start of an array, as that doesn't conform to
22366 the C Standard.
22367
22368 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22369
22370 * doc/bison.texinfo (Location Tracking Calc): New node.
22371
22372 2001-08-29 Paul Eggert <eggert@twinsun.com>
22373
22374 * src/output.c (output): Do not define const, as this now
22375 causes more problems than it cures.
22376
22377 2001-08-29 Akim Demaille <akim@epita.fr>
22378
22379 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22380 the nodes.
22381 Be sure to tag the `detailmenu'.
22382
22383 2001-08-29 Akim Demaille <akim@epita.fr>
22384
22385 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22386 download in a tmp dir.
22387
22388 2001-08-28 Marc Autret <autret_m@epita.fr>
22389
22390 * config/depcomp: New file.
22391
22392 2001-08-28 Marc Autret <autret_m@epita.fr>
22393
22394 * doc/bison.1 (mandoc): Adjust.
22395 From Juan Manuel Guerrero.
22396
22397 2001-08-28 Marc Autret <autret_m@epita.fr>
22398
22399 * src/print_graph.c (print_state): Fix.
22400
22401 2001-08-27 Marc Autret <autret_m@epita.fr>
22402
22403 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22404 char * members.
22405 Echo modifications to the functions prototypes.
22406 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22407
22408 2001-08-27 Marc Autret <autret_m@epita.fr>
22409
22410 * src/vcg.c: Include `xalloc.h'.
22411 (add_colorentry): New.
22412 (add_classname): New.
22413 (add_infoname): New.
22414 * src/vcg.h: Add new prototypes.
22415
22416 2001-08-27 Akim Demaille <akim@epita.fr>
22417
22418 * Makefile.maint: Sync. again with CVS Autoconf.
22419
22420 2001-08-27 Akim Demaille <akim@epita.fr>
22421
22422 * Makefile.maint: Formatting changes.
22423 (po-update, cvs-update, update): New targets.
22424 (AMTAR): Remove.
22425
22426 2001-08-27 Akim Demaille <akim@epita.fr>
22427
22428 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22429 * Makefile.maint: Sync. with CVS Autoconf.
22430
22431 2001-08-27 Marc Autret <autret_m@epita.fr>
22432
22433 * src/vcg.h (struct infoname_s): New.
22434 (struct colorentry_s): New.
22435 (graph_s): New fields {vertical,horizontal}_order in structure.
22436 Add `infoname' field.
22437 Add `colorentry' field;
22438 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22439 (G_HORIZONTAL_ORDER): New.
22440 (G_INFONAME): New.
22441 (G_COLORENTRY): New.
22442 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22443 Add output of `infoname'.
22444 Add output of `colorentry'.
22445
22446 2001-08-27 Marc Autret <autret_m@epita.fr>
22447
22448 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22449 This one shadowed a global parameter.
22450
22451 2001-08-24 Marc Autret <autret_m@epita.fr>
22452
22453 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22454 instead of `unsigned'.
22455 (print_state): Do not call obstack_object_size () in obstack_grow ()
22456 to avoid macro variables shadowing.
22457
22458 2001-08-23 Marc Autret <autret_m@epita.fr>
22459
22460 * src/lex.c (percent_table): Typo: s/naem/name/.
22461 Add graph option.
22462 Normalize new options declarations.
22463
22464 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22465
22466 * tests/suite.at: Exercise %header_extension and %source_extension.
22467
22468 2001-08-16 Marc Autret <autret_m@epita.fr>
22469
22470 * src/reader.c (parse_dquoted_param): New.
22471 (parse_header_extension_decl): Use it.
22472 (parse_source_extension_decl): Likewise.
22473
22474 2001-08-16 Marc Autret <autret_m@epita.fr>
22475
22476 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22477 (get_xxxx_str): Use assert () instead of complain ().
22478 Remove return invokations in default cases.
22479 (get_decision_str): Modify default behaviour. Remove second argument.
22480 Echo modifications on calls.
22481 (output_graph): Fix.
22482
22483 2001-08-16 Marc Autret <autret_m@epita.fr>
22484
22485 * src/getargs.c (usage): Update with ``-g, --graph''.
22486
22487 2001-08-16 Marc Autret <autret_m@epita.fr>
22488
22489 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22490 (Option Cross Key): Likewise.
22491 * doc/bison.1: Update.
22492
22493 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
22494
22495 * src/output.c (output_master_parser): Don't finish action_obstack.
22496 (output_parser): Don't care about the muscle action, here.
22497 (prepare): Copy the action_obstack in the action muscle.
22498 (output): Free action_obstack.
22499
22500 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22501
22502 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22503 will contain `%union' declaration.
22504 (parse_union_decl): Delete #line directive output.
22505 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22506 informations about %union.
22507 (parse_union_decl): Copy the union_obstack in the muscle stype.
22508 * src/bison.simple: Add new #line directive.
22509 Add typdef %%stype YYSTYPE.
22510
22511 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22512
22513 * src/bison.simple: Add new `#line' directive.
22514
22515 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
22516
22517 * src/bison.simple: New `#line' directive.
22518 * src/output.c (output_parser): Support new dynamic muscle input_line.
22519
22520 2001-09-22 Marc Autret <autret_m@epita.fr>
22521
22522 * src/output.c (output_master_parser): New.
22523 (output_parser): Be more re-entrant.
22524
22525 2001-09-21 Marc Autret <autret_m@epita.fr>
22526
22527 * src/reader.c (copy_definition, parse_union_decl): Update and use
22528 `linef' muscle.
22529 (copy_action): Likewise.
22530 Use obstack_1grow ().
22531 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22532
22533 2001-09-21 Marc Autret <autret_m@epita.fr>
22534
22535 * src/options.c (option_table): Adjust.
22536 * src/lex.c (parse_percent_token): Fix.
22537
22538 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22539
22540 * src/options.c (symtab.h): Include it, need by lex.h.
22541
22542 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22543
22544 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22545 is now an option_table_struct*.
22546 (option_strcmp): New function option_strcmp.
22547 (parse_percent_token): Call option_strcmp.
22548 * src/getargs.c (xalloc.h, options.h): Include it.
22549 (getargs): Call create_long_option_table.
22550 (getargs): Free longopts at the end of the function.
22551 (shortopts): Move in options.c.
22552 * src/options.c (create_long_option_table): New function. Convert
22553 information from option_table to option structure.
22554 * src/reader.c (options.h): Include it.
22555
22556 * src/Makefile.am: Adjust.
22557 * src/options.c (option_table): Create from longopts and percent_table.
22558 * src/getargs.c (longopts): Delete.
22559 * src/lex.c (struct percent_table_struct): Delete.
22560 (percent_table): Delete.
22561 (options.h): Include it.
22562 * src/options.c: Create.
22563 * src/options.h: Create.
22564 Declare enum opt_access_e.
22565 Define struct option_table_struct.
22566
22567 2001-09-20 Marc Autret <autret_m@epita.fr>
22568
22569 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22570 sections of Bison.
22571
22572 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
22573
22574 * src/bison.simple: s/%%filename/%%skeleton.
22575 * src/muscle_tab.c (getargs.h): Include it.
22576 (muscle_init): Insert new muscle skeleton.
22577
22578 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
22579
22580 * src/output.c (output_parser): Delete unused variable actions_dumped.
22581
22582 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
22583
22584 * src/output.c (output): Delete call to reader_output_yylsp.
22585 * src/reader.c (reader): Likewise.
22586 * src/reader.h: Delete declaration of reader_output_yylsp.
22587
22588 2001-09-02 Marc Autret <autret_m@epita.fr>
22589
22590 * src/reader.c: Include muscle_tab.h.
22591 (parse_union_decl): Update.
22592 (parse_macro_decl): Rename parse_muscle_decl.
22593 Update to use renamed functions and variable.
22594 (read_declarations, copy_action, read_additionnal_code, : Updated
22595 with correct variables and functions names.
22596 (packsymbols, reader): Likewise.
22597
22598 * src/reader.h (muscle_obstack): Extern declaration update.
22599
22600 * src/output.c: Include muscle_tab.h
22601 In all functions using macro_insert, change by using muscle_insert ().
22602 (macro_obstack): Rename muscle_obstack.
22603 Echo modifications in the whole file.
22604 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22605 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22606 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22607
22608 * src/muscle_tab.h: Update double inclusion macros.
22609 (macro_entry_s): Rename muscle_entry_s.
22610 Update prototypes.
22611
22612 * src/muscle_tab.c: Include muscle_tab.h.
22613 Rename macro_tabble to muscle_table.
22614 (mhash1, mhash2, mcmp): Use muscle_entry.
22615 (macro_init): Rename muscle_init. Update.
22616 (macro_insert): Rename muscle_insert. Update.
22617 (macro_find): Rename muscle_find. Update.
22618
22619 * src/main.c: Include muscle_tab.h.
22620 (main): Call muscle_init ().
22621 * src/Makefile.am (bison_SOURCES): Echo modifications.
22622
22623 2001-09-02 Marc Autret <autret_m@epita.fr>
22624
22625 Now the files macro_tab.[ch] are named muscle_tab.[ch].
22626
22627 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22628
22629 2001-09-02 Marc Autret <autret_m@epita.fr>
22630
22631 * src/macrotab.c, src/macrotab.h: Remove.
22632
22633 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
22634
22635 * src/reader.c (copy_guard): Use muscle to specify the `#line'
22636 filename.
22637
22638 2001-09-01 Marc Autret <autret_m@epita.fr>
22639
22640 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22641 to an explicit value to activate the feature. We do it here.
22642
22643 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22644
22645 * src/output.c (prepare): Delete the `filename' muscule insertion.
22646 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22647 (parse_union_decl): Likewise.
22648 * src/macrotab.c (macro_init): Initialize filename by infile.
22649
22650 2001-08-31 Marc Autret <autret_m@epita.fr>
22651
22652 * src/bison.simple (YYLSP_NEEDED): New definition.
22653 * src/output.c (prepare): Add macro insertion of `locations_flag'
22654
22655 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22656
22657 * src/output.c (prepare): Delete insertion of previous muscles,
22658 and insert the `prefix' muscles.
22659 * src/macrotab.c (macro_init): Likewise.
22660 (macro_init): Initialization prefix directive by `yy'.
22661 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
22662 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22663 yylval, yydebug, yyerror, yynerrs and yyparse.
22664 New directive `#define' to substitute yydebug, ... with option
22665 name_prefix.
22666
22667 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22668
22669 * src/main.c (main): Standardize.
22670 * src/output.c (output_table_data, output_parser): Likewise.
22671 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22672
22673 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22674
22675 * src/reader.c (read_additionnal_code): Rename %%user_code to
22676 %%epilogue.
22677 * src/output.c (output): Rename %%declarations to %%prologue.
22678 * src/bison.simple: Echo modifications.
22679
22680 2001-08-31 Marc Autret <autret_m@epita.fr>
22681
22682 * src/reader.c (readgram): CleanUp.
22683 (output_token_defines): Likewise.
22684 (packsymbols): Likewise.
22685 (reader): Likewise.
22686 * src/output.c (output): CPP-out useless code.
22687
22688 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22689
22690 * src/reader.c (reader): Delete obsolete call to function
22691 output_trailers and output_headers.
22692 * src/output.h: Remove obsolete functions prototypes of output_headers
22693 and output_trailers.
22694
22695 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
22696
22697 * src/main.c: Include macrotab.h.
22698 * src/macrotab.h (macro_entry_s): Constify fields.
22699 Adjust functions prototypes.
22700 * src/macrotab.c (macro_insert): Constify key and value.
22701 (macro_find): Constify key.
22702 (macro_insert): Include 'xalloc.h'
22703 (macro_insert): Use XMALLOC.
22704 (macro_find): Constify return value.
22705 * src/output.c (output_table_data): Rename table to table_data.
22706 (output_parser): Constify macro_key, macro_value.
22707
22708 2001-08-30 Marc Autret <autret_m@epita.fr>
22709
22710 * src/reader.c (parse_skel_decl): New.
22711 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
22712 * src/lex.h (token_t): New token `tok_skel'.
22713 * src/lex.c (percent_table): Add skeleton option entry.
22714 Standardize.
22715
22716 2001-08-29 Marc Autret <autret_m@epita.fr>
22717
22718 * src/bison.simple: Add %%user_code directive at the end.
22719 * src/reader.c (read_additionnal_code): New.
22720 (reader): Use it.
22721 * src/output.c (output_program): Remove.
22722 (output): Update.
22723
22724 2001-08-28 Marc Autret <autret_m@epita.fr>
22725
22726 * src/output.c (output_actions): Clean up.
22727 (output_gram): CPP-out useless code.
22728 * src/reader.c (reader): Clean up, CPP-out useless code.
22729
22730 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
22731
22732 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
22733 directive.
22734 * src/bison.simple: Add `%%definitions'.
22735
22736 2001-08-28 Marc Autret <autret_m@epita.fr>
22737
22738 * config/depcomp: New file.
22739
22740 2001-08-27 Paul Eggert <eggert@twinsun.com>
22741
22742 * src/bison.simple (yyparse): Don't take the address of an
22743 item before the start of an array, as that doesn't conform to
22744 the C Standard.
22745
22746 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22747
22748 * src/output.c (output): Remove the initialization of the macro
22749 obstack. It was done too late here.
22750
22751 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22752 completely wrong.
22753 (reader): Initialize the macro obstack here, since we need it to grow
22754 '%define' directives.
22755
22756 * src/reader.h: Declare the macro obstack as extern.
22757
22758 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22759
22760 * src/output.c (output_parser): Fix. Store single '%' characters in
22761 the output obstack instead of throwing them away.
22762
22763 2001-08-27 Akim Demaille <akim@epita.fr>
22764
22765 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22766
22767 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22768
22769 * lib/Makefile.am: Adjust.
22770
22771 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22772
22773 * src/bison.simple: Update and add '%%' directives.
22774
22775 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22776
22777 * src/reader.c (reader): Remove calls to 'output_headers' and
22778 'output_trailers'. Remove some C output.
22779 (readgram): Disable a piece of code that was writing a default
22780 definition for 'YYSTYPE'.
22781 (reader_output_yylsp): Remove.
22782 (packsymbols): Output token defintions to a macro.
22783 (copy_definition): Disable C output.
22784
22785 * src/reader.c (parse_macro_decl): New function used to parse macro
22786 declarations.
22787 (copy_string2): Put the body of copy_string into this new function.
22788 Add a parameter to let the caller choose whether he wants to copy the
22789 string delimiters or not.
22790 (copy_string): Be a simple call to copy_string2 with the last argument
22791 bound to true.
22792 (read_declarations): Add case for macro definition.
22793 (copy_identifier): New.
22794 (parse_macro_decl): Read macro identifiers using copy_identifier
22795 rather than lex.
22796
22797 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22798
22799 * src/output.c (prepare): Add prefixed names.
22800 (output_parser): Output semantic actions.
22801 (output_parser): Fix bug on '%%line' directives.
22802
22803 * src/output.c (output_headers): Remove. The C code printed by this
22804 function should now be in the skeletons.
22805 (output_trailers): Remove.
22806 (output): Disable call to 'reader_output_yylsp'.
22807 (output_rule_data): Do not output tables to the table obstack.
22808
22809 * src/output.c: Remove some C dedicated output.
22810 Improve the use of macro and output obstacks.
22811 (output_defines): Remove.
22812
22813 * src/output.c (output_token_translations): Associate 'translate'
22814 table with a macro. No output to the table obstack.
22815 (output_gram): Same for 'rhs' and 'prhs'.
22816 (output_stos): Same for 'stos'.
22817 (output_rule_data): Same for 'r1' and 'r2'.
22818 (token_actions): Same for 'defact'.
22819 (goto_actions): Same for 'defgoto'.
22820 (output_base): Same for 'pact' and 'pgoto'.
22821 (output_table): Same for 'table'.
22822 (output_check): Same for 'check'.
22823
22824 * src/output.c (output_table_data): New function.
22825 (output_short_table): Remove.
22826 (output_short_or_char_table): Remove.
22827
22828 * src/output.c (output_parser): Replace most of the skeleton copy code
22829 with something new. Skeletons are now processed character by character
22830 rather than line by line, and Bison looks for '%%' macros. This is the
22831 first step in making Bison's output process (a lot) more flexible.
22832 (output_parser): Use the macro table.
22833
22834 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22835
22836 * src/main.c (main): Initialize the macro table.
22837
22838 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22839
22840 * src/lex.c (percent_table): Add tok_define.
22841 * src/lex.h: Add tok_define.
22842
22843 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22844
22845 * src/macrotab.c: New file.
22846 * src/macrotab.h: New file.
22847 * src/Makefile.am: Update.
22848
22849 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22850
22851 * lib/hash.c: New file.
22852 * lib/hash.h: New file.
22853 * lib/Makefile.am: Update.
22854
22855 2001-08-15 Akim Demaille <akim@epita.fr>
22856
22857 Version 1.28c.
22858
22859 2001-08-15 Marc Autret <autret_m@epita.fr>
22860
22861 * src/reader.c (readgram): Indent output macro YYSTYPE.
22862 (packsymbols): Likewise.
22863 (output_token_defines): Likewise.
22864 * src/files.c: Standardize.
22865 (compute_header_macro): New.
22866 (defines_obstack_save): New. Use compute_header_macro.
22867 (output_files): Update. Use defines_obstack_save.
22868
22869 2001-08-15 Akim Demaille <akim@epita.fr>
22870
22871 * doc/bison.texinfo (Table of Symbols): Document
22872 YYSTACK_USE_ALLOCA.
22873
22874 2001-08-15 Akim Demaille <akim@epita.fr>
22875
22876 * missing: Update from CVS Automake.
22877 * config/config.guess, config/config.sub, config/texinfo.tex:
22878 Update from gnu.org.
22879
22880 2001-08-15 Akim Demaille <akim@epita.fr>
22881
22882 * Makefile.maint: Sync with CVS Autoconf.
22883
22884 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
22885
22886 * doc/bison.texinfo: Include GNU Free Documentation License from
22887 `fdl.texi'.
22888 * doc/fdl.texi: Add to package.
22889
22890 2001-08-14 Marc Autret <autret_m@epita.fr>
22891
22892 Turn on %{source,header}_extension features.
22893
22894 * src/lex.c (percent_table): Un-CPP out header_extension and
22895 source_extension.
22896 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
22897 (compute_exts_from_src): Remove conditions. It restores priorities
22898 between options.
22899
22900 2001-08-14 Marc Autret <autret_m@epita.fr>
22901
22902 * src/files.c (compute_base_names): Add extensions computing when
22903 `--file-prefix' used.
22904 Standardize function calls.
22905
22906 2001-08-13 Marc Autret <autret_m@epita.fr>
22907
22908 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
22909 defining it (defined but null disables alloca).
22910
22911 2001-08-13 Marc Autret <autret_m@epita.fr>
22912
22913 * src/bison.simple (_yy_memcpy): CPP reformat.
22914
22915 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
22916
22917 * tests/atconfig.in (CPPFLAGS): Fix.
22918
22919 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
22920
22921 * doc/bison.texinfo: Include GNU General Public License from
22922 `gpl.texi'.
22923 * doc/gpl.texi: Add to package.
22924
22925 2001-08-10 Marc Autret <autret_m@epita.fr>
22926
22927 * src/print_graph.h: Fix.
22928 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
22929
22930 2001-08-10 Akim Demaille <akim@epita.fr>
22931
22932 * src/system.h: Provide default declarations for stpcpy, strndup,
22933 and strnlen.
22934
22935 2001-08-10 Robert Anisko <anisko_r@epita.fr>
22936
22937 * doc/bison.texinfo (Locations): Update @$ stuff.
22938
22939 2001-08-09 Robert Anisko <anisko_r@epita.fr>
22940
22941 * src/bison.simple (YYLLOC_DEFAULT): Update.
22942 (yyparse): Adjust.
22943
22944 2001-08-08 Marc Autret <autret_m@epita.fr>
22945
22946 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
22947 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
22948 Reported by Fabrice Bauzac.
22949
22950 2001-08-08 Marc Autret <autret_m@epita.fr>
22951
22952 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
22953 * src/vcg.c (output_node): Fix.
22954 * src/vcg.h: Cleanup.
22955 * src/print_graph.c: Add comments.
22956 (node_output_size): New global variable. Simplify the formatting of
22957 the VCG graph output.
22958 (print_actions): Unused code is now used. It notifies the final state
22959 and no action states in the VCG graph. It also give the reduce actions.
22960 The `shift and goto' edges are red and the `go to state' edges are
22961 blue.
22962 Get the current node name and node_obstack by argument.
22963 (node_obstack): New variable.
22964 (print_state): Manage node_obstack.
22965 (print_core): Use node_obstack given by argument.
22966 A node is not only computed here but in print_actions also.
22967 (print_graph): CPP out useless code instead of commenting it.
22968
22969 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
22970
22971 * tests/atconfig.in (CPPFLAGS): Fix.
22972
22973 2001-08-07 Akim Demaille <akim@epita.fr>
22974
22975 * src/print_graph.c (quote): New.
22976 (print_core): Use it.
22977
22978 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
22979
22980 * src/vcg.c (complain.h): Include it.
22981 Unepitaize `return' invocations.
22982 [NDEBUG] (main): Remove.
22983 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
22984 * src/files.c (open_files): Initialize graph_obstack.
22985 * src/print_graph.c (print_actions): CPP out useless code.
22986 (print_core): Don't output the last `\n' in labels.
22987 Use `quote'.
22988 * src/files.c (output_files): Output the VCG file.
22989 * src/main.c (main): Invoke print_graph ();
22990
22991 2001-08-06 Marc Autret <autret_m@epita.fr>
22992
22993 Automaton VCG graph output.
22994 Using option ``-g'' or long option ``--graph'', you can generate
22995 a gram_filename.vcg file containing a VCG description of the LALR (1)
22996 automaton of your grammar.
22997
22998 * src/main.c: Call to print_graph() function.
22999 * src/getargs.h: Update.
23000 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23001 (graph_flag): New flag.
23002 (longopts): Update.
23003 (getargs): Add case `g'.
23004 * src/files.c (graph_obstack): New obstack struct.
23005 (open_files): Initialize new obstack.
23006 (output_files): Saves graph_obstack if required.
23007 * src/files.h (graph_obstack): New extern declaration.
23008 * src/Makefile.am: Add new source files.
23009
23010 2001-08-06 Marc Autret <autret_m@epita.fr>
23011
23012 * src/print_graph.c, src/print_graph.h (graph): New.
23013 * src/vcg.h: New file.
23014 * src/vcg.c: New file, VCG graph handling.
23015
23016 2001-08-06 Marc Autret <autret_m@epita.fr>
23017
23018 Add of %source_extension and %header_extension which specify
23019 the source or/and the header output file extension.
23020
23021 * src/files.c (compute_base_names): Remove initialisation of
23022 src_extension and header_extension.
23023 (compute_exts_from_gf): Update.
23024 (compute_exts_from_src): Update.
23025 (output_files): Update.
23026 * src/reader.c (parse_header_extension_decl): New.
23027 (parse_source_extension_decl): New.
23028 (read_declarations): New case statements for the new tokens.
23029 * src/lex.c (percent_table): Add entries for %source_extension
23030 and %header_extension.
23031 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23032
23033 2001-08-06 Marc Autret <autret_m@epita.fr>
23034
23035 * configure.in: Bump to 1.28c.
23036 * doc/bison.texinfo: Texinfo thingies.
23037
23038 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
23039
23040 * tests/atconfig.in (CPPFLAGS): Add.
23041 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23042
23043 2001-08-03 Akim Demaille <akim@epita.fr>
23044
23045 Version 1.28b.
23046
23047 2001-08-03 Akim Demaille <akim@epita.fr>
23048
23049 * tests/Makefile.am (check-local): Ship testsuite.
23050 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23051 Include `string.h'.
23052
23053 2001-08-03 Akim Demaille <akim@epita.fr>
23054
23055 * configure.in: Try using -Wformat when compiling.
23056
23057 2001-08-03 Akim Demaille <akim@epita.fr>
23058
23059 * configure.in: Bump to 1.28b.
23060
23061 2001-08-03 Akim Demaille <akim@epita.fr>
23062
23063 * src/complain.c: Adjust strerror_r portability issues.
23064
23065 2001-08-03 Akim Demaille <akim@epita.fr>
23066
23067 Version 1.28a.
23068
23069 2001-08-03 Akim Demaille <akim@epita.fr>
23070
23071 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23072 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23073 * src/getargs.c: Include complain.h.
23074 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23075 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23076
23077 2001-08-03 Akim Demaille <akim@epita.fr>
23078
23079 * src/reader.c (readgram): Display hidden chars in error messages.
23080
23081 2001-08-03 Akim Demaille <akim@epita.fr>
23082
23083 Update to gettext 0.10.39.
23084
23085 2001-08-03 Akim Demaille <akim@epita.fr>
23086
23087 * lib/strspn.c: New.
23088
23089 2001-08-01 Marc Autret <autret_m@epita.fr>
23090
23091 * doc/bison.texinfo: Update.
23092 * doc/bison.1 (mandoc): Update.
23093 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23094 * src/files.c: Support output files extensions computing.
23095 (src_extension): New static variable.
23096 (header_extension): New static variable.
23097 (tr): New function.
23098 (get_extension_index): New function, gets the index of an extension
23099 filename in a string.
23100 (compute_exts_from_gf): New function, computes extensions from the
23101 grammar file extension.
23102 (compute_exts_from_src): New functions, computes extensions from the
23103 C source file extension, file given by ``-o'' option.
23104 (compute_base_names): Update.
23105 (output_files): Update.
23106
23107 2001-08-01 Robert Anisko <anisko_r@epita.fr>
23108
23109 * doc/bison.texi: Document @$.
23110 (Locations): New section.
23111
23112 2001-07-18 Akim Demaille <akim@epita.fr>
23113
23114 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23115 * config/prev-version.txt, config/move-if-change: New.
23116 * Makefile.am: Adjust.
23117
23118 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
23119
23120 * src/bison.simple (yyparse): Suppress warning `comparaison
23121 between signed and unsigned'.
23122
23123 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
23124
23125 * src/getargs.h (raw_flag): Remove.
23126 * src/getargs.c: Die on `-r'/`--raw'.
23127 * src/lex.c (parse_percent_token): Die on `%raw'.
23128 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23129 * tests/calc.at: Suppress test with option `--raw'.
23130
23131 2001-07-14 Akim Demaille <akim@epita.fr>
23132
23133 * config/: New.
23134 * configure.in: Require Autoconf 2.50.
23135 Update to gettext 0.10.38.
23136
23137 2001-03-16 Akim Demaille <akim@epita.fr>
23138
23139 * doc/bison.texinfo: ANSIfy the examples.
23140
23141 2001-03-16 Akim Demaille <akim@epita.fr>
23142
23143 * getargs.c (skeleton): New variable.
23144 (longopts): --skeleton is a new option.
23145 (shortopts, getargs): -S is a new option.
23146 * getargs.h: Declare skeleton.
23147 * output.c (output_parser): Use it.
23148
23149 2001-03-16 Akim Demaille <akim@epita.fr>
23150
23151 * m4/strerror_r.m4: New.
23152 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23153 * lib/error.h, lib/error.c: Update.
23154
23155 2001-03-16 Akim Demaille <akim@epita.fr>
23156
23157 * src/getargs.c (longopts): Clean up.
23158
23159 2001-02-21 Akim Demaille <akim@epita.fr>
23160
23161 * src/reader.c (gensym): `gensym_count' is your own.
23162 Use a static buf to create the symbol name, as token_buffer is no
23163 longer a buffer.
23164
23165 2001-02-08 Akim Demaille <akim@epita.fr>
23166
23167 * src/conflicts.c (conflict_report): Be sure not to append to res
23168 between two calls, which could happen if both first sprintf were
23169 skipped, but not the first cp += strlen.
23170
23171 2001-02-08 Akim Demaille <akim@epita.fr>
23172
23173 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23174 New, from fileutils 4.0.37.
23175 * configure.in: Require Autoconf 2.49c. I took some time before
23176 making this decision. This is the only way out for portability
23177 issues in Bison, it would mean way too much duplicate effort to
23178 import in Bison features implemented in 2.49c since 2.13.
23179 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23180
23181 2001-02-02 Akim Demaille <akim@epita.fr>
23182
23183 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
23184 * lib/xalloc.h, lib/xmalloc.c: Update.
23185
23186 2001-01-19 Akim Demaille <akim@epita.fr>
23187
23188 Get rid of the ad hoc handling of token_buffer in the scanner: use
23189 the obstacks.
23190
23191 * src/lex.c (token_obstack): New.
23192 (init_lex): Initialize it. No longer call...
23193 (grow_token_buffer): this. Remove it.
23194 Adjust all the places which used it to use the obstack.
23195
23196 2001-01-19 Akim Demaille <akim@epita.fr>
23197
23198 * src/lex.h: Rename all the tokens:
23199 s/\bENDFILE\b/tok_eof/g;
23200 s/\bIDENTIFIER\b/tok_identifier/g;
23201 etc.
23202 Let them be enums, not #define, to ease debugging.
23203 Adjust all the code.
23204
23205 2001-01-18 Akim Demaille <akim@epita.fr>
23206
23207 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23208 * src/lex.c (maxtoken, grow_token_buffer): Static.
23209
23210 2001-01-18 Akim Demaille <akim@epita.fr>
23211
23212 Since we now use obstacks, more % directives can be enabled.
23213
23214 * src/lex.c (percent_table): Also accept `%yacc',
23215 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23216 `%debug'.
23217 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23218 instead of returning a token.
23219 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23220 * src/reader.c (read_declarations): Adjust.
23221 * src/files.c (open_files): Don't call `compute_base_names', don't
23222 compute `attrsfile' since they depend upon data which might be
23223 *in* the input file now.
23224 (output_files): Do it here.
23225 * src/output.c (output_headers): Document the fact that this patch
23226 introduces a guaranteed SEGV for semantic parsers.
23227 * doc/bison.texinfo: Document them.
23228 * tests/suite.at: Exercise these %options.
23229
23230 2000-12-20 Akim Demaille <akim@epita.fr>
23231
23232 Also handle the output file (--verbose) with obstacks.
23233
23234 * files.c (foutput): Remove.
23235 (output_obstack): New.
23236 Adjust all dependencies.
23237 * src/conflicts.c: Return a string.
23238 * src/system.h (obstack_grow_string): Rename as...
23239 (obstack_sgrow): this. Be ready to work with non literals.
23240 (obstack_fgrow4): New.
23241
23242 2000-12-20 Akim Demaille <akim@epita.fr>
23243
23244 * src/files.c (open_files): Fix the computation of short_base_name
23245 in the case of `-o foo.tab.c'.
23246
23247 2000-12-20 Akim Demaille <akim@epita.fr>
23248
23249 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23250 (copy_dollar): Now that everything uses obstacks, get rid of the
23251 FILE * parameters.
23252
23253 2000-12-20 Akim Demaille <akim@epita.fr>
23254
23255 * src/files.c (open_files): Actually the `.output' file is based
23256 on the short_base_name, not base_name.
23257 * tests/suite.at (Checking output file names): Adjust.
23258
23259 2000-12-20 Akim Demaille <akim@epita.fr>
23260
23261 * src/bison.s1: Remove, we now use directly...
23262 * src/bison.simple: this.
23263 * src/Makefile.am: Use pkgdata instead of data.
23264
23265 2000-12-20 Akim Demaille <akim@epita.fr>
23266
23267 * src/files.c (guard_obstack): New.
23268 (open_files): Initialize it.
23269 (output_files): Dump it...
23270 * src/files.h: Export it.
23271 * src/reader.c (copy_guard): Use it.
23272
23273 2000-12-19 Akim Demaille <akim@epita.fr>
23274
23275 * src/files.c (outfile, defsfile, actfile): Removed as global
23276 vars.
23277 (open_files): Don't compute them.
23278 (output_files): Adjust.
23279 (base_name, short_base_name): Be global.
23280 Adjust dependencies.
23281
23282 2000-12-19 Akim Demaille <akim@epita.fr>
23283
23284 * src/files.c (strsuffix): New.
23285 (stringappend): Be just like strcat but allocate.
23286 (base_names): Eve out from open_files.
23287 Try to simplify the rather hairy computation of base_name and
23288 short_base_name.
23289 (open_files): Use it.
23290 * tests/suite.at (Checking output file names): New test.
23291
23292 2000-12-19 Akim Demaille <akim@epita.fr>
23293
23294 * src/system.h (obstack_grow_literal_string): Rename as...
23295 (obstack_grow_string): this.
23296 * src/output.c (output_parser): Recognize `%% actions' instead of
23297 `$'.
23298 * src/bison.s1: s/$/%% actions/.
23299 * src/bison.hairy: Likewise.
23300
23301 2000-12-19 Akim Demaille <akim@epita.fr>
23302
23303 * src/output.c (output_parser): Compute the `#line' lines when
23304 there are.
23305 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23306 Suggested by Hans Aberg.
23307
23308 2000-12-19 Akim Demaille <akim@epita.fr>
23309
23310 Let the handling of the skeleton files be local to the procedures
23311 that use it.
23312
23313 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23314 longer static.
23315 (fparser, open_extra_files): Remove.
23316 (open_files, output_files): Don't take care of fparser.
23317 * src/files.h: Adjust.
23318 * src/output.c (output_parser): Open and close the file to the
23319 skeleton.
23320 * src/reader.c (read_declarations): When %semantic_parser, open
23321 fguard.
23322
23323 2000-12-19 Akim Demaille <akim@epita.fr>
23324
23325 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23326 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23327
23328 2000-12-19 Akim Demaille <akim@epita.fr>
23329
23330 * src/files.c (open_files): Yipee! We no longer need all the code
23331 looking for `/tmp' since we have no tmp file.
23332
23333 2000-12-19 Akim Demaille <akim@epita.fr>
23334
23335 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23336 New macros.
23337 * src/files.c (open_files): Less dependency on MSDOS etc.
23338
23339 2000-12-14 Akim Demaille <akim@epita.fr>
23340
23341 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23342 Provide a default definition.
23343 Use it when executing the default @ action.
23344 * src/reader.c (reader_output_yylsp): No longer include
23345 `timestamp' and `text' in the default YYLTYPE.
23346
23347 2000-12-12 Akim Demaille <akim@epita.fr>
23348
23349 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23350 (copy_guard): Quote the file names.
23351 Reported by Laurent Mascherpa.
23352
23353 2000-12-12 Akim Demaille <akim@epita.fr>
23354
23355 * src/output.c (output_headers, output_program, output): Be sure
23356 to escape special characters when outputting filenames.
23357 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23358 (output_headers): Don't depend on them, Use ACTSTR.
23359
23360 2000-11-17 Akim Demaille <akim@epita.fr>
23361
23362 * lib/obstack.h: Formatting changes.
23363 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23364 prevents type checking.
23365 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23366 cast the value to (void *): assigning a `foo *' to a `void *'
23367 variable is valid.
23368 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23369 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23370 append characters.
23371
23372 2000-11-17 Akim Demaille <akim@epita.fr>
23373
23374 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23375 as...
23376 (suite.m4, regression.m4, calc.m4): these.
23377 * tests/atgeneral.m4: Update from CVS Autoconf.
23378
23379 2000-11-17 Akim Demaille <akim@epita.fr>
23380
23381 * tests/regression.m4 (%union and --defines): New test,
23382 demonstrating a current bug in the obstack implementation.
23383
23384 2000-11-17 Akim Demaille <akim@epita.fr>
23385
23386 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23387 macros.
23388 Use them to declare the variables which are global or local to
23389 `yyparse'.
23390
23391 2000-11-17 Akim Demaille <akim@epita.fr>
23392
23393 * acconfig.h: Remove, no longer used.
23394
23395 2000-11-07 Akim Demaille <akim@epita.fr>
23396
23397 * src: s/Copyright (C)/Copyright/g.
23398
23399 2000-11-07 Akim Demaille <akim@epita.fr>
23400
23401 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23402 defining.
23403 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23404
23405 2000-11-07 Akim Demaille <akim@epita.fr>
23406
23407 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23408 Merge in a single CPP if/else.
23409
23410 2000-11-07 Akim Demaille <akim@epita.fr>
23411
23412 * src/output.c (output): Remove useless variables.
23413 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23414 argument `data' for consistency with the prototypes.
23415 Qualify it `const'.
23416 (obstack_copy, obstack_copy0): Rename the second argument as
23417 `address' for consistency. Qualify it `const'.
23418 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23419 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23420 `const' their input argument (`data' or `address').
23421 Adjust the corresponding macros to include `const' in casts.
23422
23423 2000-11-03 Akim Demaille <akim@epita.fr>
23424
23425 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23426 s/PFILE1/BISON_HAIRY/.
23427 Adjust dependencies.
23428
23429 2000-11-03 Akim Demaille <akim@epita.fr>
23430
23431 For some reason, this was not applied.
23432
23433 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23434 `unlink': it's no longer used.
23435
23436 2000-11-03 Akim Demaille <akim@epita.fr>
23437
23438 * src/files.c (skeleton_find): New function, eved out of...
23439 (open_files, open_extra_files): here.
23440
23441 2000-11-03 Akim Demaille <akim@epita.fr>
23442
23443 Don't use `atexit'.
23444
23445 * src/files.c (obstack_save): New function.
23446 (done): Rename as...
23447 (output_files): this.
23448 Use `obstack_save'.
23449 * src/main.c (main): Don't use `atexit' to register `done', since
23450 it no longer has to remove tmp files, just call `output_files'
23451 when there are no errors.
23452
23453 2000-11-02 Akim Demaille <akim@epita.fr>
23454
23455 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23456 `unlink': it's no longer used.
23457 * src/files.h: Formatting changes.
23458
23459 2000-11-02 Akim Demaille <akim@epita.fr>
23460
23461 Remove the last uses of mktemp and unlink/delete.
23462
23463 * src/files.c (fdefines, ftable): Removed.
23464 (defines_ostack, table_obstack): New.
23465 Adjust dependencies of the former into uses of the latter.
23466 * src/output.c (output_short_or_char_table, output_short_table):
23467 Convert to using obstacks.
23468 * src/reader.c (copy_comment2): Accept one FILE * and two
23469 obstacks.
23470 (output_token_defines, reader_output_yylsp): Use obstacks.
23471 * src/system.h (obstack_fgrow3): New.
23472 * po/POTFILES.in: Adjust.
23473
23474 2000-11-01 Akim Demaille <akim@epita.fr>
23475
23476 Change each use of `fattrs' into a use of `attrs_obstack'.
23477
23478 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23479 * src/files.c (fattrs): Remove.
23480 (attrs_obstack): New.
23481 Adjust all dependencies.
23482 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23483
23484 2000-11-01 Akim Demaille <akim@epita.fr>
23485
23486 Introduce obstacks.
23487 Change each use of `faction' into a use of `action_obstack'.
23488
23489 * lib/obstack.h, lib/obstack.c: New files.
23490 * src/files.c (faction): Remove.
23491 (action_obstack): New.
23492 Adjust all dependencies.
23493
23494 2000-10-20 Akim Demaille <akim@epita.fr>
23495
23496 * lib/quote.h (PARAMS): New macro. Use it.
23497
23498 2000-10-16 Akim Demaille <akim@epita.fr>
23499
23500 * src/output.c (output_short_or_char_table): New function.
23501 (output_short_table, output_token_translations): Use it.
23502 (goto_actions): Use output_short_table.
23503
23504 2000-10-16 Akim Demaille <akim@epita.fr>
23505
23506 * src/symtab.c (bucket_new): New function.
23507 (getsym): Use it.
23508
23509 * src/output.c (output_short_table): New argument to display the
23510 comment associated with the table.
23511 Adjust dependencies.
23512 (output_gram): Use it.
23513 (output_rule_data): Nicer output layout for YYTNAME.
23514
23515 2000-10-16 Akim Demaille <akim@epita.fr>
23516
23517 * src/lex.c (read_typename): New function.
23518 (lex): Use it.
23519 * src/reader.c (copy_dollar): Likewise.
23520
23521 2000-10-16 Akim Demaille <akim@epita.fr>
23522
23523 * src/reader.c (copy_comment2): Expect the input stream to be on
23524 the `/' which is suspected to open a comment, instead of being
23525 called after `//' or `/*' was read.
23526 (copy_comment, copy_definition, parse_union_decl, copy_action)
23527 (copy_guard): Adjust.
23528
23529 2000-10-16 Akim Demaille <akim@epita.fr>
23530
23531 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23532 `read_signed_integer'.
23533
23534 2000-10-16 Akim Demaille <akim@epita.fr>
23535
23536 * src/reader.c (copy_dollar): New function.
23537 (copy_guard, copy_action): Use it.
23538
23539 2000-10-16 Akim Demaille <akim@epita.fr>
23540
23541 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23542 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23543 New files, from Fileutils 4.0.27.
23544 * src/main.c (printable_version): Remove.
23545 * src/lex.c, src/reader.c: Use `quote'.
23546
23547 2000-10-04 Akim Demaille <akim@epita.fr>
23548
23549 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23550
23551 2000-10-04 Akim Demaille <akim@epita.fr>
23552
23553 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23554
23555 2000-10-04 Akim Demaille <akim@epita.fr>
23556
23557 When a literal string is used to define two different tokens,
23558 `bison -v' segfaults.
23559 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23560
23561 * tests/regression.m4: New file.
23562 Include the core of the sample provided by Piotr Gackiewicz.
23563 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23564 properly.
23565
23566 2000-10-04 Akim Demaille <akim@epita.fr>
23567
23568 * src/reader.c (parse_expect_decl): Keep `count' within the size
23569 of `buffer'.
23570 From Neil Booth.
23571
23572 2000-10-02 Paul Eggert <eggert@twinsun.com>
23573
23574 * bison.s1 (yyparse): Assign the default value
23575 unconditionally, to avoid a GCC warning and make the parser a
23576 tad smaller.
23577
23578 2000-10-02 Akim Demaille <akim@epita.fr>
23579
23580 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23581 options.
23582
23583 2000-10-02 Akim Demaille <akim@epita.fr>
23584
23585 * src/derives.c, src/print.c, src/reduce.c: To ease the
23586 translation, move some `\n' out of the translated strings.
23587
23588 2000-10-02 Akim Demaille <akim@epita.fr>
23589
23590 The location tracking mechanism is precious for parse error
23591 messages. Nevertheless, it is enabled only when `@n' is used in
23592 the grammar, which is a different issue (you can use it in error
23593 message, but not in the grammar per se). Therefore, there should
23594 be another means to enable it.
23595
23596 * src/getargs.c (getargs): Support `--locations'.
23597 (usage): Report it.
23598 * src/getargs.h (locationsflag): Export it.
23599 * src/lex.c (percent_table): Support `%locations'.
23600 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23601 with `locationsflag'.
23602 * doc/bison.texinfo: Document `--locations' and `%locations'.
23603 Sort the options.
23604 * tests/calc.m4: Test it.
23605
23606 For regularity of the names, replace each
23607 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23608 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23609 In addition replace each `flag' with `_flag'.
23610
23611 2000-10-02 Akim Demaille <akim@epita.fr>
23612
23613 Also test parse error messages, including with YYERROR_VERBOSE.
23614
23615 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23616 associative).
23617 Use it to check the computations.
23618 Use it to check `nonassoc' is honored.
23619 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23620 `--yyerror-verbose'.
23621 (_AT_CHECK_CALC): Adjust to this option.
23622 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23623
23624 2000-10-02 Akim Demaille <akim@epita.fr>
23625
23626 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23627 the latter demonstrates a flaw in the handling of non debugging
23628 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23629 was used in order to simplify:
23630
23631 #if YYDEBUG
23632 if (yydebug)
23633 {
23634 ...
23635 }
23636 #endif
23637
23638 into
23639
23640 if (yydebug)
23641 {
23642 ...
23643 }
23644
23645 unfortunately this leads to a CPP conflict when
23646 `--name-prefix=foo' is used since it produces `#define yydebug
23647 foodebug'.
23648
23649 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23650 (YYDPRINTF): New macro.
23651 Spread its use.
23652 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23653 the bison options.
23654 Also test `--verbose', `--defines' and `--name-prefix'.
23655
23656 2000-10-02 Akim Demaille <akim@epita.fr>
23657
23658 Improve the readability of the produced parsers.
23659
23660 * src/bison.s1: Formatting changes.
23661 Improve the comment related to the `$' mark.
23662 (yydefault): Don't fall through to `yyresume': `goto' there.
23663 * src/output.c (output_parser): When the `$' is met, skip the end
23664 of its line.
23665 New variable, `number_of_dollar_signs', to check there's exactly
23666 one `$' in the parser skeleton.
23667
23668 2000-10-02 Akim Demaille <akim@epita.fr>
23669
23670 * lib/xstrdup.c: New file, from the fileutils.
23671 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23672 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23673 instead of strlen + xmalloc + strcpy.
23674 * src/symtab.c (copys): Remove, use xstrdup instead.
23675
23676 2000-10-02 Akim Demaille <akim@epita.fr>
23677
23678 * src/gram.h (associativity): New enum type which replaces the
23679 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23680 `right_assoc', `left_assoc' and `non_assoc'.
23681 Adjust all dependencies.
23682 * src/reader.c: Formatting changes.
23683 (LTYPESTR): Don't define it, use it as a literal in
23684 `reader_output_yylsp'.
23685 * src/symtab.h (symbol_class): New enum type which replaces the
23686 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23687 `sunknown', `stoken and `snterm'.
23688
23689 2000-10-02 Akim Demaille <akim@epita.fr>
23690
23691 * src/getargs.c (fixed_outfiles): Rename as...
23692 (yaccflag): for consistency and accuracy.
23693 Adjust dependencies.
23694
23695 2000-10-02 Akim Demaille <akim@epita.fr>
23696
23697 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23698 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23699 difficult and introduced a lot of core dump. It turns out that
23700 Bison used an implementation of `xmalloc' based on `calloc', and
23701 at various places it does depend upon the initialization to 0. I
23702 have not tried to isolate the pertinent places, and all the former
23703 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23704 someone should address this issue.
23705
23706 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23707 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23708 files.
23709 Adjust dependencies.
23710 * src/warshall.h: New file.
23711 Propagate.
23712
23713 2000-10-02 Akim Demaille <akim@epita.fr>
23714
23715 Various anti-`extern in *.c' changes.
23716
23717 * src/system.h: Include `assert.h'.
23718
23719 2000-10-02 Akim Demaille <akim@epita.fr>
23720
23721 * src/state.h (nstates, final_state, first_state, first_shift)
23722 (first_reduction): Move their exportation from here...
23723 * src/LR0.h: to here.
23724 Adjust dependencies.
23725 * src/getargs.c (statisticsflag): New variable.
23726 Add support for `--statistics'.
23727 Adjust dependencies.
23728
23729 Remove a lot of now useless `extern' statements in most files.
23730
23731 2000-10-02 Akim Demaille <akim@epita.fr>
23732
23733 * src/LR0.h: New file.
23734 Propagate its use.
23735
23736 2000-10-02 Akim Demaille <akim@epita.fr>
23737
23738 * src/print.h: New file.
23739 Propagate its use.
23740 * src/print.c: Formatting and ordering changes.
23741 (verbose, terse): Replace with...
23742 (print_results): this new function.
23743 Adjust dependencies.
23744
23745 2000-10-02 Akim Demaille <akim@epita.fr>
23746
23747 * src/conflicts.c (conflict_report): New function.
23748 (conflict_log, verbose_conflict_log): Replace with...
23749 (print_conflicts): this function.
23750 Adjust dependencies.
23751 * src/conflicts.h: New file.
23752 Propagate its inclusion.
23753
23754 2000-10-02 Akim Demaille <akim@epita.fr>
23755
23756 * src/nullable.h: New file.
23757 Propagate its inclusion.
23758 * src/nullable.c: Formatting changes.
23759
23760 2000-10-02 Akim Demaille <akim@epita.fr>
23761
23762 * src/reduce.h: New file.
23763 Propagate its inclusion.
23764 * src/reduce.c: Topological sort and other formatting changes.
23765 (bool, TRUE, FALSE): Move their definition to...
23766 * src/system.h: here.
23767
23768 2000-10-02 Akim Demaille <akim@epita.fr>
23769
23770 * src/files.c: Formatting changes.
23771 (tryopen, tryclose, openfiles): Rename as...
23772 (xfopen, xfclose, open_files): this.
23773 (stringappend): static.
23774 * src/files.h: Complete the list of exported symbols.
23775 Propagate its use.
23776
23777 2000-10-02 Akim Demaille <akim@epita.fr>
23778
23779 * src/reader.h: New file.
23780 Propagate its use instead of tedious list of `extern' and
23781 prototypes.
23782 * src/reader.c: Formatting changes, topological sort,
23783 s/register//.
23784
23785 2000-10-02 Akim Demaille <akim@epita.fr>
23786
23787 * src/lex.h: Prototype `lex.c' exported functions.
23788 * src/reader.c: Adjust.
23789 * src/lex.c: Formatting changes.
23790 (safegetc): Rename as...
23791 (xgetc): this.
23792
23793 2000-10-02 Akim Demaille <akim@epita.fr>
23794
23795 * src/lalr.h: New file.
23796 Propagate its inclusion instead of prototypes and `extern'.
23797 * src/lalr.c: Formatting changes, topological sorting etc.
23798
23799 2000-10-02 Akim Demaille <akim@epita.fr>
23800
23801 * src/output.c (token_actions): Introduce a temporary array,
23802 YYDEFACT, that makes it possible for this function to use
23803 output_short_table.
23804
23805 2000-10-02 Akim Demaille <akim@epita.fr>
23806
23807 `user_toknums' is output as a `short[]' in `output.c', while it is
23808 defined as a `int[]' in `reader.c'. For consistency with the
23809 other output tables, `user_toknums' is now defined as a table of
23810 shorts.
23811
23812 * src/reader.c (user_toknums): Be a short table instead of an int
23813 table.
23814 Adjust dependencies.
23815
23816 Factor the short table outputs.
23817
23818 * src/output.c (output_short_table): New function.
23819 * src/output.c (output_gram, output_stos, output_rule_data)
23820 (output_base, output_table, output_check): Use it.
23821
23822 2000-10-02 Akim Demaille <akim@epita.fr>
23823
23824 * src/output.c (output): Topological sort of the functions, in
23825 order to get rid of the `static' prototypes.
23826 No longer use `register'.
23827 * src/output.h: New file.
23828 Propagate its inclusion in files explicitly prototyping functions
23829 from output.c.
23830
23831 2000-09-21 Akim Demaille <akim@epita.fr>
23832
23833 * src/atgeneral.m4: Update from Autoconf.
23834
23835 2000-09-21 Akim Demaille <akim@epita.fr>
23836
23837 * src/closure.h: New file.
23838 * src/closure.c: Formatting changes, topological sort over the
23839 functions, use of closure.h.
23840 (initialize_closure, finalize_closure): Rename as...
23841 (new_closure, free_closure): these. Adjust dependencies.
23842 * src/LR0.c: Formatting changes, topological sort, use of
23843 cloture.h.
23844 (initialize_states): Rename as...
23845 (new_states): this.
23846 * src/Makefile.am (noinst_HEADERS): Adjust.
23847
23848 2000-09-20 Akim Demaille <akim@epita.fr>
23849
23850 * src/acconfig.h: Don't protect config.h against multiple
23851 inclusion.
23852 Don't define PARAMS.
23853 * src/system.h: Define PARAMS.
23854 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23855 purpose of config.h. system.h must not try to fix wrong
23856 definitions in config.h.
23857
23858 2000-09-20 Akim Demaille <akim@epita.fr>
23859
23860 * src/derives.h: New file.
23861 * src/main.c, src/derives.h: Use it.
23862 Formatting changes.
23863 * src/Makefile.am (noinst_HEADERS): Adjust.
23864
23865 2000-09-20 Akim Demaille <akim@epita.fr>
23866
23867 * tests/atgeneral.m4: Update from Autoconf.
23868 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23869 (AT_CHECK_CALC): New macros.
23870 Use these macros to test bison with options `', `--raw',
23871 `--debug', `--yacc', `--yacc --debug'.
23872
23873 2000-09-19 Akim Demaille <akim@epita.fr>
23874
23875 * src/output.c: Formatting changes.
23876 * src/machine.h: Remove, leaving its contents in...
23877 * src/system.h: here.
23878 Include stdio.h.
23879 Adjust all dependencies on stdio.h and machine.h.
23880 * src/getargs.h: New file.
23881 Let all `extern' declarations about getargs.c be replaced with
23882 inclusion of `getargs.h'.
23883 * src/Makefile.am (noinst_HEADERS): Adjust.
23884
23885 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23886 scope.
23887 (yyerror): Returns void, not int.
23888 * doc/bison.texinfo: Formatting changes.
23889
23890 2000-09-19 Akim Demaille <akim@epita.fr>
23891
23892 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23893 portable.
23894
23895 2000-09-18 Akim Demaille <akim@epita.fr>
23896
23897 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23898 * src/Makefile.am (INCLUDES): Don't.
23899 Be ready to fetch headers in lib/.
23900
23901 2000-09-18 Akim Demaille <akim@epita.fr>
23902
23903 * doc/bison.texinfo: Update the copyright.
23904 ANSIfy and GNUify the examples.
23905 Remove the old menu.
23906
23907 2000-09-18 Akim Demaille <akim@epita.fr>
23908
23909 First set of tests: use the `calc' example from the documentation.
23910
23911 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23912 is defined only when YYDEBUG is.
23913 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
23914 * src/files.c (tryopen, tryclose): Formatting changes.
23915 Move to the top and be static.
23916 * src/reader.c (read_signed_integer): Likewise.
23917 * tests/calc.m4: New file.
23918 * Makefile.am, suite.m4: Adjust.
23919 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
23920
23921 2000-09-18 Akim Demaille <akim@epita.fr>
23922
23923 Add support for an Autotest test suite for Bison.
23924
23925 * m4/m4.m4, m4/atconfig.m4: New files.
23926 * m4/Makefile.am (EXTRA_DIST): Adjust.
23927 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
23928 files.
23929 * src/getargs.c: Display a more standard --version message.
23930 * src/reader.c (reader): Formatting changes.
23931 No longer depend upon VERSION_STRING.
23932 * configure.in: No longer use `dnl'.
23933 Set up the test suite and the new directory `tests/.
23934 (VERSION_STRING): Remove.
23935
23936 2000-04-14 Akim Demaille <akim@epita.fr>
23937
23938 * src/reader.c (copy_comment2): New function, same as former
23939 `copy_comment', but outputs into two FILE *.
23940 (copy_comment): Use it.
23941 (parse_union_decl): Use it.
23942 (get_type, parse_start_decl): Use the same `invalid' message.
23943 (parse_start_decl, parse_union_decl): Use the same `multiple'
23944 message.
23945 (parse_union_decl, copy_guard, copy_action): Use the same
23946 `unmatched' message.
23947 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
23948
23949 2000-03-31 Akim Demaille <akim@epita.fr>
23950
23951 * src/files.c (tryopen, tryclose): Move to the top.
23952 Be static.
23953
23954 2000-03-31 Akim Demaille <akim@epita.fr>
23955
23956 * src/main.c (main): Don't call `done', exit does it.
23957
23958 2000-03-31 Akim Demaille <akim@epita.fr>
23959
23960 * allocate.c: s/return (foo)/return foo/.
23961 * lalr.c: Likewise.
23962 * LR0.c: Likewise.
23963 * output.c: Likewise.
23964 * reader.c: Likewise.
23965 * symtab.c: Likewise.
23966 * vmsgetargs.c: Likewise.
23967
23968 2000-03-31 Akim Demaille <akim@epita.fr>
23969
23970 Clean up the error reporting functions.
23971
23972 * src/report.c: New file.
23973 * src/report.h: Likewise.
23974 * src/Makefile.am: Adjust.
23975 * m4/error.m4: New file.
23976 * m4/Makefile.am: Adjust.
23977 * configure.in (jm_PREREQ_ERROR): Call it.
23978 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
23979 Remove.
23980 (fatal, fatals): Remove. All callers use complain.c::fatal.
23981 (warn, warni, warns, warnss, warnss): Remove. All callers use
23982 complain.c::complain.
23983 (toomany): Remove, use fatal instead.
23984 * src/files.c (done): No argument, use complain_message_count.
23985 * src/main.c (main): Register `done' to `atexit'.
23986
23987 * src/getargs.c (usage): More `fputs', less `fprintf'.
23988
23989 2000-03-28 Akim Demaille <akim@epita.fr>
23990
23991 * lib/: New directory.
23992 * Makefile.am (SUBDIRS): Adjust.
23993 * configure.in: Adjust.
23994 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
23995 useless.
23996 * src/alloca.c: Moved to lib/.
23997 * src/getopt.c: Likewise.
23998 * src/getopt1.c: Likewise.
23999 * src/getopt.h: Likewise.
24000 * src/ansi2knr.c: Likewise.
24001 * src/ansi2knr.1: Likewise.
24002 * src/Makefile.am: Adjust.
24003 * lib/Makefile.am: New file.
24004
24005 2000-03-28 Akim Demaille <akim@epita.fr>
24006
24007 * src/getargs.c (usage): Refresh the help message.
24008
24009 2000-03-17 Akim Demaille <akim@epita.fr>
24010
24011 * src/getopt1.c: Updated from textutils 2.0e
24012 * src/getopt.c: Likewise.
24013 * src/getopt.h: Likewise.
24014
24015 2000-03-17 Akim Demaille <akim@epita.fr>
24016
24017 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24018 the file name, not the whole `#line LINE FILE'.
24019
24020 2000-03-17 Akim Demaille <akim@epita.fr>
24021
24022 On syntax errors, report the token on which we choked.
24023
24024 * src/bison.s1 (yyparse): In the label yyerrlab, when
24025 YYERROR_VERBOSE, add yychar in msg.
24026
24027 2000-03-17 Akim Demaille <akim@epita.fr>
24028
24029 * src/reader.c (copy_at): New function.
24030 (copy_guard): Use it.
24031 (copy_action): Use it.
24032
24033 2000-03-17 Akim Demaille <akim@epita.fr>
24034
24035 Be kind to translators, save some useless translations.
24036
24037 * src/main.c (banner): New function.
24038 (fatal_banner): Use it.
24039 (warn_banner): Use it.
24040
24041 2000-03-17 Akim Demaille <akim@epita.fr>
24042
24043 * src/reader.c (copy_definition): Use copy_string and
24044 copy_comment. Removed now unused `match', `ended',
24045 `cplus_comment'.
24046 (copy_comment, copy_string): Moved, to be visible from
24047 copy_definition.
24048
24049 2000-03-17 Akim Demaille <akim@epita.fr>
24050
24051 * src/reader.c (copy_string): Declare `static inline'. No
24052 problems with inline, since it is checked by configure.
24053 (copy_comment): Likewise.
24054
24055 2000-03-17 Akim Demaille <akim@epita.fr>
24056
24057 * src/reader.c (packsymbols): Formatting changes.
24058
24059 2000-03-17 Akim Demaille <akim@epita.fr>
24060
24061 * src/reader.c (copy_comment): New function, factored out from:
24062 (copy_action): Use it. Removed now unused `match', `ended',
24063 `cplus_comment'.
24064 (copy_guard): Likewise.
24065
24066 2000-03-17 Akim Demaille <akim@epita.fr>
24067
24068 * src/reader.c (copy_string): New function, factored out from:
24069 (copy_action): Use it.
24070 (copy_guard): Likewise.
24071
24072 2000-03-17 Akim Demaille <akim@epita.fr>
24073
24074 Change the handling of @s so that they behave exactly like $s.
24075 There is now a pseudo variable @$ (readble and writable), location
24076 of the lhs of the rule (by default ranging from the location of
24077 the first symbol of the rhs, to the location of the last symbol,
24078 or, if the rhs is empty, YYLLOC).
24079
24080 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24081 yyval.
24082 (yyparse): When providing a default semantic action, provide a
24083 default location action.
24084 (after the $): No longer change `*YYLSP', just stack YYLOC the
24085 same way you stack YYVAL.
24086 * src/reader.c (read_declarations): Use warns.
24087 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24088 (copy_action, case '@'): Likewise.
24089 Use a standard error message, to save useless work from
24090 translators.
24091
24092 2000-03-17 Akim Demaille <akim@epita.fr>
24093
24094 * src/bison.s1: Formatting and cosmetics changes.
24095 * src/reader.c: Likewise.
24096 Update the Copyright notice.
24097
24098 2000-03-17 Akim Demaille <akim@epita.fr>
24099
24100 * src/bison.s1 (#line): All set to `#line' only, since the
24101 Makefile now handles them.
24102
24103 2000-03-16 Akim Demaille <akim@epita.fr>
24104
24105 * src/output.c (output_rule_data): Output the documentation of
24106 some of the tables.
24107 (Copyright notice): Update.
24108 Formatting changes.
24109
24110 2000-03-16 Akim Demaille <akim@epita.fr>
24111
24112 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24113 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24114 One `#if YYDEBUG' remains, since it uses variables which are
24115 defined only if `YYDEBUG != 0'.
24116
24117 2000-03-16 Akim Demaille <akim@epita.fr>
24118
24119 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24120 and related variables so that the similarities are highlighted.
24121
24122 2000-03-16 Akim Demaille <akim@epita.fr>
24123
24124 * src/bison.s1: Properly indent CPP directives.
24125
24126 2000-03-16 Akim Demaille <akim@epita.fr>
24127
24128 * src/bison.s1: Properly indent the `alloca' CPP section.
24129
24130 2000-03-16 Akim Demaille <akim@epita.fr>
24131
24132 Do not hard code values of directories in `configure.in'.
24133 Update the `configure' tool chain.
24134
24135 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24136 src/makefile.am.
24137 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24138 (AC_OUTPUT): Add m4/Makefile.
24139 Bump to bison 1.28a, 1.29 has never been released.
24140 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24141 handled via src/Makefile.am.
24142 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24143 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24144 autoheader.
24145 * Makefile.am (SUBDIRS): Add m4.
24146 (ACLOCAL_AM_FLAGS): New variable.
24147 (AUTOMAKE_OPTIONS): Add check-news.
24148 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24149 the proper line number and file name.
24150 (DEFS): Propagate the location of bison library files and of the
24151 locale files.
24152 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24153 builddir.
24154 * acinclude.m4: Remove, replaced by the directory m4.
24155 * m4/Makefile.am (EXTRA_DIST): New variable.
24156 * m4/gettext.m4: New file, from the fileutils.
24157 * m4/lcmessage.m4: Likewise
24158 * m4/progtest.m4: Likewise.
24159 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24160
24161 2000-03-10 Akim Demaille <akim@epita.fr>
24162
24163 * src/closure.c:
24164 Formatting changes of various comments.
24165 Respect the GNU coding standards at various places.
24166 Don't use `_()' when no translation is needed.
24167
24168 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24169
24170 * src/files.c:
24171 OS/2 honors TMPDIR environment variable.
24172
24173 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24174
24175 * doc/bison.texinfo: Tweaked spelling and grammar.
24176 Updated ISBN.
24177 Removed reference to price of printed copy.
24178 Mention BISON_SIMPLE and BISON_HAIRY.
24179
24180 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24181
24182 * configure.in, NEWS:
24183 Bison 1.29 released.
24184
24185 1999-10-27 Jesse Thilo <jthilo@gnu.org>
24186
24187 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24188 Added reference card.
24189
24190 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24191
24192 * po/ru.po: Added Russian translation.
24193
24194 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24195
24196 * configure.in: Added Russian translation.
24197
24198 1999-07-06 Jesse Thilo <jthilo@gnu.org>
24199
24200 * configure.in, NEWS, README:
24201 Released version 1.28.
24202
24203 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24204
24205 * src/system.h:
24206 Squashed redefinition warning on some systems.
24207
24208 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24209 Have configure build version string instead of relying on ANSI string
24210 concatentation.
24211
24212 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24213
24214 * po/POTFILES.in: Got rid of version.c.
24215
24216 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24217
24218 * acconfig.h, configure.in:
24219 Have configure build version string instead of relying on ANSI string
24220 concatentation.
24221
24222 1999-06-08 Jesse Thilo <jthilo@gnu.org>
24223
24224 * doc/bison.1:
24225 Dropped mention of `+' for long-named options.
24226
24227 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24228
24229 * src/files.c: Added <unistd.h> for unlink().
24230
24231 * src/Makefile.am, src/system.h:
24232 I18n fixes.
24233
24234 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24235
24236 * README: Added a FAQ list.
24237
24238 * configure.in, acconfig.h:
24239 I18n fixes.
24240
24241 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24242
24243 * doc/FAQ, doc/Makefile.am:
24244 Added a FAQ list.
24245
24246 1999-05-19 Jesse Thilo <jthilo@gnu.org>
24247
24248 * src/alloc.h, src/symtab.h, src/version.c:
24249 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24250
24251 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24252
24253 * src/.cvsignore, src/Makefile.am:
24254 Reorganized: sources in `src', documentation in `doc'.
24255
24256 * src/lex.c (literalchar):
24257 fixed the code for escaping double quotes (thanks
24258 Jonathan Czisny.)
24259
24260 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24261
24262 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24263 Adjusted paths to reflect directory reorganization.
24264
24265 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24266
24267 * doc/.cvsignore, doc/Makefile.am:
24268 Reorganized: sources in `src', documentation in `doc'.
24269
24270 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24271
24272 * configure.in:
24273 Updated AC_INIT file to reflect directory reorganization.
24274
24275 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24276 Reorganized: sources in `src', documentation in `doc'.
24277
24278 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24279
24280 * src/allocate.c:
24281 Don't declare calloc() and realloc() if not necessary.
24282
24283 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24284
24285 * configure.in, acconfig.h, acinclude.m4:
24286 Don't declare calloc() and realloc() if not necessary.
24287
24288 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24289
24290 * po/.cvsignore: Added i18n support.
24291
24292 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24293
24294 * acconfig.h, configure.in, Makefile.am:
24295 Added i18n support.
24296
24297 1999-03-22 Jesse Thilo <jthilo@gnu.org>
24298
24299 * src/bison.s1: Fixed #line numbers.
24300
24301 1999-03-15 Jesse Thilo <jthilo@gnu.org>
24302
24303 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24304 Added PO files from Translation Project.
24305
24306 1999-03-03 Jesse Thilo <jthilo@gnu.org>
24307
24308 * Makefile.am:
24309 Added support for non-ANSI compilers (ansi2knr).
24310
24311 1999-02-16 Jesse Thilo <jthilo@gnu.org>
24312
24313 * configure.in: Bumped version number to 1.27.
24314
24315 * Makefile.am:
24316 Added `bison.simple' to list of files removed by `make distclean'.
24317
24318 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24319
24320 * src/files.c, src/files.h:
24321 Defined locations of parser files in config.h instead of Makefile.
24322
24323 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24324
24325 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24326 Defined locations of parser files in config.h instead of Makefile.
24327
24328 1999-02-09 Jesse Thilo <jthilo@gnu.org>
24329
24330 * Makefile.am:
24331 Removed inappropriate use of $< macro.
24332
24333 1999-02-05 Jesse Thilo <jthilo@gnu.org>
24334
24335 * po/Makefile.in.in, po/POTFILES.in:
24336 Add `po' directory skeleton.
24337
24338 1999-01-27 Jesse Thilo <jthilo@gnu.org>
24339
24340 * README: Document help-bison list.
24341
24342 * configure.in: Add check for mkstemp().
24343
24344 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24345
24346 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24347 Hush a few compiler warnings.
24348
24349 * src/files.c:
24350 Add tryclose(), which verifies that fclose was successful.
24351 Hush a couple of compiler warnings.
24352
24353 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24354
24355 * Makefile.am, OChangeLog:
24356 ChangeLog is now automatically generated. Include the old version as
24357 OChangeLog.
24358
24359 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24360
24361 * 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:
24362 Update FSF address.
24363
24364 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24365
24366 * doc/bison.texinfo: Fix formatting glitch.
24367
24368 * doc/bison.texinfo: Update FSF address.
24369
24370 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24371
24372 * acconfig.h: Update FSF address.
24373
24374 1999-01-08 Jesse Thilo <jthilo@gnu.org>
24375
24376 * src/system.h:
24377 Don't define PACKAGE here, since config.h defines it.
24378
24379 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24380
24381 * src/reader.c: Update copyright date.
24382
24383 * src/main.c:
24384 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24385 favor of output directly to stderr (avoids buffer overruns).
24386
24387 * src/reader.c: Some checks for premature EOF.
24388
24389 * 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:
24390 Use prototypes if the compiler understands them.
24391
24392 * src/files.c: Honor TMPDIR on Unix hosts.
24393 Use prototypes if the compiler understands them.
24394
24395 * src/reader.c:
24396 Fix a couple of buffer overrun bugs.
24397 Use prototypes if the compiler understands them.
24398
24399 * src/system.h: Include unistd.h and ctype.h.
24400 Use #ifdef instead of #if for NLS symbols.
24401
24402 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24403
24404 * doc/bison.texinfo:
24405 Delete comment "consider using @set for edition number, etc..." since
24406 we now are doing so.
24407
24408 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24409
24410 * configure.in:
24411 Use prototypes if the compiler understands them.
24412
24413 * NEWS: Document 1.26 highlights.
24414
24415 * Makefile.am: Require Automake 1.3 or later.
24416
24417 * acconfig.h:
24418 Use prototypes if the compiler understands them.
24419
24420 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24421
24422 * src/version.c:
24423 Use VERSION symbol from automake for version number.
24424
24425 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24426
24427 * acconfig.h, configure.in, version.cin:
24428 Use VERSION symbol from automake for version number.
24429
24430 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24431
24432 * Makefile.am:
24433 Distribute original version of simple parser (bison.s1), not built
24434 version (bison.simple).
24435
24436 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24437
24438 * doc/bison.texinfo: Add info dir entry.
24439
24440 * doc/bison.texinfo:
24441 Let automake put version number into documentation.
24442
24443 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24444
24445 * src/bison.cld, src/build.com, src/vmshlp.mar:
24446 Add non-RCS files from /gd/gnu/bison.
24447
24448 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24449
24450 * doc/bison.1:
24451 Document the BISON_HAIRY and BISON_SIMPLE variables.
24452
24453 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24454
24455 * src/version.c: Build version.c automatically.
24456
24457 * src/reader.c:
24458 Fix token numbering (used to start at 258, not 257).
24459
24460 * src/system.h: Include config.h.
24461
24462 * src/getargs.c: Update bug report address.
24463
24464 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24465 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24466
24467 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24468
24469 * Makefile.am:
24470 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24471
24472 * configure.in, version.cin:
24473 Build version.c automatically.
24474
24475 * AUTHORS: Add AUTHORS file.
24476
24477 * README: Update bug report address.
24478
24479 * bison.simple:
24480 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24481
24482 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24483 Add automake stuff.
24484
24485 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24486
24487 * doc/bison.texinfo: Clean up some formatting.
24488
24489 1998-05-05 Richard Stallman <rms@gnu.org>
24490
24491 * doc/bison.texinfo:
24492 Explain better why to make a pure parser.
24493
24494 1998-01-05 Richard Stallman <rms@gnu.org>
24495
24496 * src/files.c (openfiles):
24497 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24498 find a temporary directory, if possible. Do not unlink files while
24499 they are open.
24500
24501 1997-08-25 Richard Stallman <rms@gnu.org>
24502
24503 * src/reader.c (stack_offset;):
24504 Change some warni to warns.
24505
24506 * src/lex.c (literalchar): Use warns, not warni.
24507
24508 1997-06-28 Richard Stallman <rms@gnu.org>
24509
24510 * src/bison.s1: Add a Bison version comment.
24511
24512 * src/main.c (fatal, warn, berror):
24513 Use program_name.
24514
24515 1997-06-28 Richard Stallman <rms@gnu.org>
24516
24517 * Makefile.in (bison_version): New variable.
24518 (dist): Use that variable.
24519 (bison.s1): Substitute the Bison version into bison.simple.
24520
24521 * bison.simple: Add a Bison version comment.
24522
24523 1997-06-18 Richard Stallman <rms@gnu.org>
24524
24525 * src/main.c (fatal, warn, berror):
24526 Make error messages standard.
24527 (toomany): Improve error message text.
24528
24529 * 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:
24530 new.h renamed to alloc.h.
24531
24532 1997-06-18 Richard Stallman <rms@gnu.org>
24533
24534 * Makefile.in: new.h renamed to alloc.h.
24535
24536 1997-05-24 Richard Stallman <rms@gnu.org>
24537
24538 * src/lex.c (literalchar):
24539 Fix the code for escaping \, " and '.
24540
24541 (lex): Avoid trouble when there are many chars
24542 to discard in a char literal with just several chars in it.
24543
24544 1997-05-17 Richard Stallman <rms@gnu.org>
24545
24546 * src/bison.s1:
24547 Use malloc, if using alloca is troublesome.
24548 (YYSTACK_USE_ALLOCA): New flag macro.
24549 Define it for some systems and compilers.
24550 (YYSTACK_ALLOC): New macro.
24551 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24552 If it was malloc'd, free it.
24553
24554 1997-05-17 Richard Stallman <rms@gnu.org>
24555
24556 * bison.simple:
24557 Use malloc, if using alloca is troublesome.
24558 (YYSTACK_USE_ALLOCA): New flag macro.
24559 Define it for some systems and compilers.
24560 (YYSTACK_ALLOC): New macro.
24561 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24562 If it was malloc'd, free it.
24563
24564 1997-04-23 Richard Stallman <rms@gnu.org>
24565
24566 * src/bison.s1:
24567 (alloca) [__hpux]: Always define as __builtin_alloca.
24568
24569 1997-04-23 Richard Stallman <rms@gnu.org>
24570
24571 * bison.simple:
24572 (alloca) [__hpux]: Always define as __builtin_alloca.
24573
24574 1997-04-22 Richard Stallman <rms@gnu.org>
24575
24576 * src/bison.s1:
24577 [__hpux]: Include alloca.h (right for HPUX 10)
24578 instead of declaring alloca (right for HPUX 9).
24579
24580 * src/bison.s1 (__yy_memcpy):
24581 Declare arg `count' as unsigned int.
24582 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24583
24584 1997-04-22 Richard Stallman <rms@gnu.org>
24585
24586 * bison.simple:
24587 [__hpux]: Include alloca.h (right for HPUX 10)
24588 instead of declaring alloca (right for HPUX 9).
24589
24590 * bison.simple (__yy_memcpy):
24591 Declare arg `count' as unsigned int.
24592 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24593
24594 1997-01-03 Richard Stallman <rms@gnu.org>
24595
24596 * src/allocate.c: [__STDC__ or _MSC_VER]:
24597 Declare calloc and realloc to return void *.
24598
24599 1997-01-02 Richard Stallman <rms@gnu.org>
24600
24601 * src/system.h:
24602 [_MSC_VER]: Include stdlib.h and process.h.
24603 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24604
24605 * src/main.c (main): Return FAILURE as a value.
24606 (printable_version): Declare arg as int, not char.
24607
24608 1997-01-02 Richard Stallman <rms@gnu.org>
24609
24610 * Makefile.in (dist):
24611 Explicitly check for symlinks, and copy them.
24612
24613 1996-12-19 Richard Stallman <rms@gnu.org>
24614
24615 * src/files.c:
24616 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24617
24618 1996-12-18 Paul Eggert <eggert@gnu.org>
24619
24620 * src/bison.s1 (yyparse):
24621 If __GNUC__ and YYPARSE_PARAM are both defined,
24622 declare yyparse to have a void * argument.
24623
24624 1996-12-18 Paul Eggert <eggert@gnu.org>
24625
24626 * bison.simple (yyparse):
24627 If __GNUC__ and YYPARSE_PARAM are both defined,
24628 declare yyparse to have a void * argument.
24629
24630 1996-12-17 Richard Stallman <rms@gnu.org>
24631
24632 * src/reduce.c (nbits): Add some casts.
24633
24634 1996-08-12 Richard Stallman <rms@gnu.org>
24635
24636 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24637
24638 1996-08-12 Richard Stallman <rms@gnu.org>
24639
24640 * bison.simple: Test _MSDOS as well as _MSDOS_.
24641
24642 1996-07-31 Richard Stallman <rms@gnu.org>
24643
24644 * src/bison.s1:
24645 [__sun && __i386]: Include alloca.h.
24646
24647 1996-07-31 Richard Stallman <rms@gnu.org>
24648
24649 * bison.simple:
24650 [__sun && __i386]: Include alloca.h.
24651
24652 1996-07-30 Richard Stallman <rms@gnu.org>
24653
24654 * src/bison.s1: Comment change.
24655
24656 * src/bison.s1: Test _MSDOS_, not MSDOS.
24657
24658 1996-07-30 Richard Stallman <rms@gnu.org>
24659
24660 * bison.simple: Comment change.
24661
24662 * bison.simple: Test _MSDOS_, not MSDOS.
24663
24664 1996-06-01 Richard Stallman <rms@gnu.org>
24665
24666 * 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:
24667 Insert `_' macro around many string constants.
24668
24669 * src/main.c:
24670 Insert `_' macro around many string constants.
24671
24672 (main): Call setlocale, bindtextdomain and textdomain.
24673
24674 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24675 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24676 [ENABLE_NLS]: Include libintl.h.
24677 [ENABLE_NLS] (gettext): Define.
24678 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24679 (N_, PACKAGE, LOCALEDIR): New macros.
24680
24681 1996-06-01 Richard Stallman <rms@gnu.org>
24682
24683 * POTFILES.in: New file.
24684
24685 * Makefile.in (allocate.o):
24686 Define target explicitly.
24687
24688 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24689 (LDFLAGS): Set to @LDFLAGS@.
24690 (configure): Run autoconf only if preceding `cd' succeeds.
24691 (bison.s1): Redirect output to temporary file then move the
24692 temporary to the target, rather than redirecting directly to bison.s1.
24693 (clean): Remove config.status and config.log.
24694 (distclean): Don't remove config.status here.
24695
24696 1996-05-12 Richard Stallman <rms@gnu.org>
24697
24698 * src/bison.s1:
24699 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24700
24701 1996-05-12 Richard Stallman <rms@gnu.org>
24702
24703 * bison.simple:
24704 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24705
24706 1996-05-11 Richard Stallman <rms@gnu.org>
24707
24708 * src/bison.s1 (__yy_memcpy):
24709 Really reorder the args, as was supposedly done on Feb 14 1995.
24710 (yyparse): Calls changed accordingly.
24711
24712 1996-05-11 Richard Stallman <rms@gnu.org>
24713
24714 * Makefile.in (dist): Don't use $(srcdir).
24715
24716 * bison.simple (__yy_memcpy):
24717 Really reorder the args, as was supposedly done on Feb 14 1995.
24718 (yyparse): Calls changed accordingly.
24719
24720 1996-01-27 Richard Stallman <rms@gnu.org>
24721
24722 * src/output.c (output_rule_data):
24723 Test YYERROR_VERBOSE in the conditional
24724 around the definition of ttyname.
24725
24726 1995-12-29 Richard Stallman <rms@gnu.org>
24727
24728 * src/bison.s1:
24729 Fix line numbers in #line commands.
24730
24731 1995-12-29 Richard Stallman <rms@gnu.org>
24732
24733 * bison.simple:
24734 Fix line numbers in #line commands.
24735
24736 1995-12-27 Richard Stallman <rms@gnu.org>
24737
24738 * src/bison.s1 (YYPARSE_PARAM_DECL):
24739 In C++, make it always null.
24740 (YYPARSE_PARAM_ARG): New macro.
24741 (yyparse): Use YYPARSE_PARAM_ARG.
24742
24743 1995-12-27 Richard Stallman <rms@gnu.org>
24744
24745 * bison.simple (YYPARSE_PARAM_DECL):
24746 In C++, make it always null.
24747 (YYPARSE_PARAM_ARG): New macro.
24748 (yyparse): Use YYPARSE_PARAM_ARG.
24749
24750 1995-11-29 Richard Stallman <rms@gnu.org>
24751
24752 * doc/bison.texinfo:
24753 Describe literal string tokens, %raw, %no_lines, %token_table.
24754
24755 1995-11-29 Daniel Hagerty <hag@gnu.org>
24756
24757 * doc/bison.texinfo: Fixed update date
24758
24759 1995-10-16 Richard Stallman <rms@gnu.org>
24760
24761 * src/version.c: Version 1.25.
24762
24763 1995-10-16 Richard Stallman <rms@gnu.org>
24764
24765 * NEWS: *** empty log message ***
24766
24767 1995-10-16 Richard Stallman <rms@gnu.org>
24768
24769 * doc/bison.1, doc/bison.rnh:
24770 Add new options.
24771
24772 1995-10-15 Richard Stallman <rms@gnu.org>
24773
24774 * src/vmsgetargs.c, src/getargs.c:
24775 Added -n, -k, and -raw switches.
24776 (noparserflag, toknumflag, rawtoknumflag): New variables.
24777
24778 * src/symtab.h (SALIAS):
24779 New #define for adding aliases to %token.
24780 (struct bucket): Added `alias' field.
24781
24782 * src/reduce.c (reduce_grammar):
24783 Revise error message.
24784 (print_notices): Remove final `.' from error message.
24785
24786 * src/reader.c (reader_output_yylsp):
24787 New function.
24788 (readgram): Use `#if 0' around code that accepted %command
24789 inside grammar rules: The documentation doesn't allow it,
24790 and it will fail since the %command processors scan for the next %.
24791 (parse_token_decl): Extended the %token
24792 declaration to allow a multi-character symbol as an alias.
24793 (parse_thong_decl): New function.
24794 (read_declarations): Added %thong declarations.
24795 (read_declarations): Handle NOOP to deal with allowing
24796 % declarations as another means to specify the flags.
24797 (readgram): Allow %prec prior to semantics embedded in a rule.
24798 (skip_to_char, read_declarations, copy_definition)
24799 (parse_token_decl, parse_start_decl, parse_type_decl)
24800 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24801 (get_type_name, copy_guard, copy_action, readgram)
24802 (get_type, packsymbols): Revised most error messages.
24803 Changed `fatal' to `warnxxx' to avoid aborting for error.
24804 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24805 (read_declarations): Improve the error message for
24806 an invalid character. Do not abort.
24807 (read_declarations, copy_guard, copy_action): Use
24808 printable_version to avoid unprintable characters in printed output.
24809 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24810 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24811 Allow the type of a non-terminal can be given
24812 more than once, as long as all specifications give the same type.
24813
24814 * src/output.c:
24815 (output_headers, output_trailers, output, output_gram)
24816 (output_rule_data): Implement noparserflag variable.
24817 Implement toknumflag variable.
24818 (output): Call reader_output_yylsp to output LTYPESTR.
24819
24820 * src/main.c (main):
24821 If reader sees an error, don't process the grammar.
24822 (fatals): Updated to not use VARARGS1.
24823 (printable_version, int_to_string, warn, warni, warns, warnss)
24824 (warnsss): New error reporting functions. Avoid abort for error.
24825
24826 * src/lex.h:
24827 Added THONG and NOOP for alias processing.
24828 Added SETOPT for the new code that allows setting options with %flags.
24829
24830 * src/lex.c:
24831 Include getopt.h. Add some extern decls.
24832 (safegetc): New function to deal with EOF gracefully.
24833 (literalchar); new function to deal with reading \ escapes.
24834 (lex): Use literalchar.
24835 (lex): Implemented "..." tokens.
24836 (literalchar, lex, parse_percent_token): Made tokenbuffer
24837 always contain the token. This includes growing the token
24838 buffer while reading an integer.
24839 (parse_percent_token): Replaced if-else statement with percent_table.
24840 (parse_percent_token): Added % declarations as another
24841 way to specify the flags -n, -l, and -r. Also added hooks for
24842 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24843 major changes to files.c.
24844 (lex) Retain in the incoming stream a character following
24845 an incorrect '/'.
24846 (skip_white_space, lex): Revised most error messages
24847 and changed fatal to warn to avoid aborting.
24848 (percent_table): Added %thong declarations.
24849
24850 * src/gram.h: Comment changes.
24851
24852 * src/files.c (openfiles, open_extra_files, done):
24853 Add faction flag
24854 and actfile file. Handle noparserflag. Both for -n switch.
24855
24856 * src/conflicts.c (resolve_sr_conflict):
24857 Remove use of alloca.
24858
24859 1995-06-01 Jim Meyering <meyering@gnu.org>
24860
24861 * doc/bison.texinfo: *** empty log message ***
24862
24863 1995-05-06 Richard Stallman <rms@gnu.org>
24864
24865 * src/bison.s1: Comment change.
24866
24867 1995-05-06 Richard Stallman <rms@gnu.org>
24868
24869 * bison.simple: Comment change.
24870
24871 1995-05-03 Richard Stallman <rms@gnu.org>
24872
24873 * src/version.c: Version now 1.24.
24874
24875 * src/bison.s1: Change distribution terms.
24876
24877 * src/version.c: Version now 1.23.
24878
24879 1995-05-03 Richard Stallman <rms@gnu.org>
24880
24881 * doc/bison.texinfo:
24882 Rewrite "Conditions for Using Bison".
24883 Update version to 1.24.
24884
24885 1995-05-03 Richard Stallman <rms@gnu.org>
24886
24887 * bison.simple: Change distribution terms.
24888
24889 1995-02-23 Richard Stallman <rms@gnu.org>
24890
24891 * src/files.c: Test __VMS_POSIX as well as VMS.
24892
24893 1995-02-14 Jim Meyering <meyering@gnu.org>
24894
24895 * src/bison.s1 (__yy_memcpy):
24896 Renamed from __yy_bcopy to avoid
24897 confusion. Reverse FROM and TO arguments to be consistent with
24898 those of memcpy.
24899
24900 1995-02-14 Jim Meyering <meyering@gnu.org>
24901
24902 * bison.simple (__yy_memcpy):
24903 Renamed from __yy_bcopy to avoid
24904 confusion. Reverse FROM and TO arguments to be consistent with
24905 those of memcpy.
24906
24907 1994-11-10 David J. MacKenzie <djm@gnu.org>
24908
24909 * NEWS: reformat
24910
24911 * NEWS: New file.
24912
24913 * Makefile.in (DISTFILES): Include NEWS.
24914
24915 * Makefile.in (DISTFILES):
24916 Include install-sh, not install.sh.
24917
24918 * configure.in: Update to Autoconf v2 macro names.
24919
24920 1994-10-05 David J. MacKenzie <djm@gnu.org>
24921
24922 * Makefile.in: fix typo
24923
24924 * Makefile.in (prefix, exec_prefix):
24925 Let configure set them.
24926
24927 1994-09-28 David J. MacKenzie <djm@gnu.org>
24928
24929 * Makefile.in: Set datadir to $(prefix)/share.
24930
24931 1994-09-15 Richard Stallman <rms@gnu.org>
24932
24933 * src/bison.s1:
24934 Update copyright notice and GPL version.
24935
24936 1994-09-15 Richard Stallman <rms@gnu.org>
24937
24938 * bison.simple:
24939 Update copyright notice and GPL version.
24940
24941 1994-07-12 Richard Stallman <rms@gnu.org>
24942
24943 * src/reduce.c, src/reader.c:
24944 entered into RCS
24945
24946 1994-05-05 David J. MacKenzie <djm@gnu.org>
24947
24948 * Makefile.in: entered into RCS
24949
24950 1994-03-26 Richard Stallman <rms@gnu.org>
24951
24952 * src/bison.s1: entered into RCS
24953
24954 1994-03-26 Richard Stallman <rms@gnu.org>
24955
24956 * bison.simple: entered into RCS
24957
24958 1994-03-25 Richard Stallman <rms@gnu.org>
24959
24960 * src/main.c: entered into RCS
24961
24962 1994-03-24 Richard Stallman <rms@gnu.org>
24963
24964 * src/conflicts.c: entered into RCS
24965
24966 1994-01-02 Richard Stallman <rms@gnu.org>
24967
24968 * Makefile.in: *** empty log message ***
24969
24970 1993-11-21 Richard Stallman <rms@gnu.org>
24971
24972 * src/bison.s1: *** empty log message ***
24973
24974 1993-11-21 Richard Stallman <rms@gnu.org>
24975
24976 * doc/bison.texinfo: entered into RCS
24977
24978 * doc/bison.texinfo: *** empty log message ***
24979
24980 1993-11-21 Richard Stallman <rms@gnu.org>
24981
24982 * bison.simple: *** empty log message ***
24983
24984 1993-10-25 David J. MacKenzie <djm@gnu.org>
24985
24986 * doc/bison.texinfo: *** empty log message ***
24987
24988 1993-10-19 Richard Stallman <rms@gnu.org>
24989
24990 * src/bison.s1: *** empty log message ***
24991
24992 1993-10-19 Richard Stallman <rms@gnu.org>
24993
24994 * bison.simple: *** empty log message ***
24995
24996 1993-10-14 Richard Stallman <rms@gnu.org>
24997
24998 * src/bison.s1: *** empty log message ***
24999
25000 1993-10-14 Richard Stallman <rms@gnu.org>
25001
25002 * bison.simple: *** empty log message ***
25003
25004 1993-09-14 David J. MacKenzie <djm@gnu.org>
25005
25006 * doc/bison.texinfo: *** empty log message ***
25007
25008 1993-09-13 Noah Friedman <friedman@gnu.org>
25009
25010 * Makefile.in: *** empty log message ***
25011
25012 1993-09-10 Richard Stallman <rms@gnu.org>
25013
25014 * src/conflicts.c: *** empty log message ***
25015
25016 * src/system.h: entered into RCS
25017
25018 1993-09-10 Richard Stallman <rms@gnu.org>
25019
25020 * doc/bison.1: entered into RCS
25021
25022 1993-09-06 Noah Friedman <friedman@gnu.org>
25023
25024 * src/version.c: entered into RCS
25025
25026 1993-09-06 Noah Friedman <friedman@gnu.org>
25027
25028 * Makefile.in: *** empty log message ***
25029
25030 1993-07-30 David J. MacKenzie <djm@gnu.org>
25031
25032 * Makefile.in: *** empty log message ***
25033
25034 1993-07-24 Richard Stallman <rms@gnu.org>
25035
25036 * src/bison.s1: *** empty log message ***
25037
25038 1993-07-24 Richard Stallman <rms@gnu.org>
25039
25040 * bison.simple: *** empty log message ***
25041
25042 1993-07-08 David J. MacKenzie <djm@gnu.org>
25043
25044 * Makefile.in: *** empty log message ***
25045
25046 1993-07-04 Richard Stallman <rms@gnu.org>
25047
25048 * src/bison.s1: *** empty log message ***
25049
25050 1993-07-04 Richard Stallman <rms@gnu.org>
25051
25052 * bison.simple: *** empty log message ***
25053
25054 1993-06-26 David J. MacKenzie <djm@gnu.org>
25055
25056 * src/getargs.c: entered into RCS
25057
25058 1993-06-26 David J. MacKenzie <djm@gnu.org>
25059
25060 * doc/bison.texinfo: *** empty log message ***
25061
25062 * doc/bison.1: New file.
25063
25064 1993-06-25 Richard Stallman <rms@gnu.org>
25065
25066 * src/getargs.c: New file.
25067
25068 1993-06-16 Richard Stallman <rms@gnu.org>
25069
25070 * src/bison.s1: *** empty log message ***
25071
25072 1993-06-16 Richard Stallman <rms@gnu.org>
25073
25074 * bison.simple: *** empty log message ***
25075
25076 1993-06-03 Richard Stallman <rms@gnu.org>
25077
25078 * src/bison.s1: New file.
25079
25080 1993-06-03 Richard Stallman <rms@gnu.org>
25081
25082 * doc/bison.texinfo: *** empty log message ***
25083
25084 1993-06-03 Richard Stallman <rms@gnu.org>
25085
25086 * bison.simple: New file.
25087
25088 1993-05-19 Richard Stallman <rms@gnu.org>
25089
25090 * doc/bison.texinfo: New file.
25091
25092 1993-05-07 Noah Friedman <friedman@gnu.org>
25093
25094 * Makefile.in: *** empty log message ***
25095
25096 1993-04-28 Noah Friedman <friedman@gnu.org>
25097
25098 * src/reader.c: *** empty log message ***
25099
25100 1993-04-23 Noah Friedman <friedman@gnu.org>
25101
25102 * src/alloc.h: entered into RCS
25103
25104 1993-04-20 David J. MacKenzie <djm@gnu.org>
25105
25106 * src/version.c: *** empty log message ***
25107
25108 * src/files.c, src/allocate.c:
25109 entered into RCS
25110
25111 * src/reader.c: *** empty log message ***
25112
25113 * src/lex.c: entered into RCS
25114
25115 * src/conflicts.c: New file.
25116
25117 * src/symtab.c: entered into RCS
25118
25119 * src/alloc.h: New file.
25120
25121 * src/LR0.c: entered into RCS
25122
25123 1993-04-18 Noah Friedman <friedman@gnu.org>
25124
25125 * src/reader.c: New file.
25126
25127 * src/version.c: *** empty log message ***
25128
25129 1993-04-18 Noah Friedman <friedman@gnu.org>
25130
25131 * Makefile.in: *** empty log message ***
25132
25133 1993-04-17 Noah Friedman <friedman@gnu.org>
25134
25135 * Makefile.in: *** empty log message ***
25136
25137 1993-04-15 Richard Stallman <rms@gnu.org>
25138
25139 * src/main.c, src/files.c:
25140 New file.
25141
25142 1993-04-15 Noah Friedman <friedman@gnu.org>
25143
25144 * configure.in: entered into RCS
25145
25146 * configure.in: *** empty log message ***
25147
25148 * configure.in: New file.
25149
25150 1993-04-14 Richard Stallman <rms@gnu.org>
25151
25152 * Makefile.in: New file.
25153
25154 1993-04-13 Richard Stallman <rms@gnu.org>
25155
25156 * src/version.c: New file.
25157
25158 1993-03-25 Richard Stallman <rms@gnu.org>
25159
25160 * src/output.c: entered into RCS
25161
25162 1992-09-25 Richard Stallman <rms@gnu.org>
25163
25164 * configure.bat: entered into RCS
25165
25166 1992-06-22 Richard Stallman <rms@gnu.org>
25167
25168 * src/vmsgetargs.c: entered into RCS
25169
25170 1992-06-22 Richard Stallman <rms@gnu.org>
25171
25172 * doc/bison.rnh: entered into RCS
25173
25174 1992-04-20 David J. MacKenzie <djm@gnu.org>
25175
25176 * README: entered into RCS
25177
25178 1992-01-22 Richard Stallman <rms@gnu.org>
25179
25180 * src/machine.h: entered into RCS
25181
25182 1991-12-21 Richard Stallman <rms@gnu.org>
25183
25184 * src/lalr.c, src/closure.c:
25185 entered into RCS
25186
25187 1991-12-20 Richard Stallman <rms@gnu.org>
25188
25189 * src/state.h: entered into RCS
25190
25191 1991-12-18 Richard Stallman <rms@gnu.org>
25192
25193 * src/print.c, src/nullable.c, src/derives.c:
25194 entered into RCS
25195
25196 1991-11-03 David J. MacKenzie <djm@gnu.org>
25197
25198 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25199 entered into RCS
25200
25201 1988-09-09 Richard Stallman <rms@gnu.org>
25202
25203 * src/bison.hairy: entered into RCS
25204
25205 1987-12-16 Richard Stallman <rms@gnu.org>
25206
25207 * REFERENCES: entered into RCS
25208
25209
25210 -----
25211
25212 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
25213 Inc.
25214
25215 Copying and distribution of this file, with or without
25216 modification, are permitted provided the copyright notice and this
25217 notice are preserved.