]> git.saurik.com Git - bison.git/blame - ChangeLog
tests: fix 250: parse.error=verbose overflow.
[bison.git] / ChangeLog
CommitLineData
d6b347e4
AD
12010-03-25 Akim Demaille <demaille@gostai.com>
2
3 tests: fix 250: parse.error=verbose overflow.
4 * tests/regression.at (parse.error=verbose overflow): Avoid the
5 double inclusion of stdlib.h as it triggers hard errors.
6
b8675840
JD
72010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
8
9 portability: fix for BSD make.
10 Reported by Johan van Selst at
11 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
12 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
13 this dependency list as in package.m4's target rule.
14
8b9e021f
JD
152010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
16
17 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
18 Reported by Johan van Selst at
19 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
20 * NEWS (2.4.3): New.
21 * THANKS (Johan van Selst): Add.
22 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
23 targets so that gnulib's new c++defs.h is matched.
24 * gnulib: Update to latest.
25
96a381c5
JD
262010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
27
28 maint: update for changes to gnulib's announce-gen.
29 * HACKING (Announce): RELEASE_TYPE=major must now be written
30 RELEASE_TYPE=stable.
31
e19a049c
JD
322010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
33
34 Version 2.4.2.
35 * NEWS (2.4.2): Set version and date. For the recent test suite
36 portability fixes, don't be so optimistic about their success
37 given the lack of feedback on the affected platforms.
38
890aeb28
JD
392010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
40
41 tests: fix maintainer-xml-check for recent changes.
42 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
43 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
44 output file whose name conflicts with a previous output file
45 is now never generated.
46
f39ab286
JD
472010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
48
49 portability: fix several issues with M4 subprocess.
50
51 M4's output pipe was not being drained upon fatal errors during
52 scan_skel. As a result, broken-pipe messages from M4 were seen
53 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
54 failure in the test suite. The problem was that, on platforms
55 where the default disposition for SIGPIPE is ignore instead of
56 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
57 then reported it. However, there's some sort of race condition,
58 because the new test group occasionally succeeded.
59 Reported by Albert Chin at
60 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
61
62 There were also problems with the test suite livelocking on
63 Tru64 5.1b. Reported by Didier Godefroy at
64 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
65 Switching to create_pipe_bidi suggested by Akim Demaille.
66
67 To attempt to solve both of these problems, switch to gnulib's
68 create_pipe_bidi and register M4 process as a slave. Along the
69 way, clean up file name conflict handling, which was affected by
70 the broken-pipe problem before the switch.
71 * NEWS (2.4.2): Document.
72 * THANKS (Didier Godefroy): Add.
73 * bootstrap.conf (gnulib_modules): Add pipe.
74 * gnulib: Update to latest to make sure we have all the latest
75 fixes.
76 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
77 subpipe.c.
78 * po/POTFILES.in (lib/subpipe.c): Remove.
79 * src/files.c (compute_output_file_names): Update invocations
80 of output_file_name_check.
81 (output_file_name_check): In the case that the grammar file
82 would be overwritten, use complain instead of fatal, but replace
83 the output file name with /dev/null. Use the /dev/null solution
84 for the case of two conflicting output files as well because it
85 seems safer in case Bison one day tries to open both files at
86 the same time.
87 * src/files.h (output_file_name_check): Update prototype.
88 * src/output.c (output_skeleton): Use create_pipe_bidi and
89 wait_subprocess. Assert that scan_skel completely drains the
90 pipe.
91 * src/scan-skel.l (at_directive_perform): Update
92 output_file_name_check invocation.
93 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
94 grammar file actually isn't overwritten.
95 (Conflicting output files: -o foo.y): Update expected output.
96 * tests/skeletons.at (Fatal errors but M4 continues producing
97 output): New test group.
98
e32050b0
JD
992010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
100
101 Update POTFILES.
102 * HACKING (Release Procedure): Add reminder about keeping
103 POTFILES files up-to-date.
104 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
105
efc4ed4a
JD
1062010-02-01 Joel E. Denny <jdenny@clemson.edu>
107
108 Code cleanup.
109 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
110 which is already defined in atconfig.
111
95611b56
JD
1122010-01-22 Joel E. Denny <jdenny@clemson.edu>
113
114 tests: fix missing include caught by g++ 4.4.1.
115 Reported by Tys Lefering.
116 * HACKING (Release checks): Add note about trying a recent GCC.
117 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
118 cstdlib for abort.
119 (_AT_DATA_EXPECT2_Y): Likewise.
120
d6e40cba
JD
1212010-01-21 Joel E. Denny <jdenny@clemson.edu>
122
123 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
124
80b70223
JD
1252010-01-21 Joel E. Denny <jdenny@clemson.edu>
126
127 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
128 * HACKING (Release Procedure): Update notes on copyright years.
129 * Makefile.am (update-package-copyright-year): New target rule.
130 * build-aux/update-package-copyright-year: New file.
131 * cfg.mk (update-copyright): Add update-package-copyright-year
132 as a dependency.
133
3320a276
JD
1342010-01-19 Joel E. Denny <jdenny@clemson.edu>
135
136 * bootstrap: Import improvements from latest gnulib.
137
e30c0477
JD
1382010-01-19 Joel E. Denny <jdenny@clemson.edu>
139
140 build: require Automake 1.11.1 to avoid a security flaw.
141 * HACKING (Release Procedure): Don't document Automake security
142 flaw here.
143 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
144 why here.
145
a538eeb1
JD
1462010-01-19 Joel E. Denny <jdenny@clemson.edu>
147
148 gnulib: update to latest.
149
d6bdb90a
JD
1502010-01-19 Joel E. Denny <jdenny@clemson.edu>
151
152 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
153
326e5cf8
JD
1542010-01-15 Joel E. Denny <jdenny@clemson.edu>
155
156 Thank the developer of the initial push parser implementation.
157 This unfortunate oversight is several years old.
158 * THANKS (Odd Arild Olsen): Add.
159
fca9c5ef
JD
1602010-01-04 Joel E. Denny <jdenny@clemson.edu>
161
162 Fix some comments concerning LR(0) versus LALR(1).
163
164 Stop equating LR(0) with nondeterminism and LALR(1) with
165 determinism. That is, if all states are consistent, then LR(0)
166 tables are deterministic. On the other hand, LALR(1) tables
167 might be nondeterministic before conflict resolution, and GLR
168 permits LALR(1) tables to remain nondeterministic.
169 * src/LR0.c, src/LR0.h: Here.
170 * src/lalr.c, src/lalr.h: Here.
171 * src/main.c (main): Here.
172 * src/state.c, src/state.h: Here.
173
174 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
175 parser tables.
176
e141f4d4
JD
1772010-01-04 Joel E. Denny <jdenny@clemson.edu>
178
179 maint: run "make update-copyright"
180
882be728
JD
1812009-12-30 Joel E. Denny <jdenny@clemson.edu>
182
183 POSIX: complain if %prec's token was not defined.
184 * NEWS (2.5): Document.
185 * src/reader.c (grammar_rule_check): Convert warning to
186 complaint.
187 * tests/input.at (%prec's token must be defined): Update.
188
8bb3a2e7
JD
1892009-12-30 Joel E. Denny <jdenny@clemson.edu>
190
191 POSIX: warn if %prec's token was not defined.
192 Reported by Florian Krohm at
193 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
194 * NEWS (2.4.2): Document.
195 * src/reader.c (grammar_rule_check): Implement.
196 (grammar_current_rule_prec_set): Add comments explaining that we
197 here assume a %prec identifier is a token, but we still manage
198 to support POSIX.
199 * tests/input.at (%prec's token must be defined): New test
200 group.
201
505e1551
JD
2022009-12-31 Joel E. Denny <jdenny@clemson.edu>
203
204 * HACKING (Release Procedure): Recommend a secure automake.
205
b8d19cf8
JD
2062009-12-29 Joel E. Denny <jdenny@clemson.edu>
207
208 portability: `<' and `>' are not always defined on addresses.
209 Specifically, don't sort objects by their memory addresses when
210 they're not allocated in the same array or other object. Though
211 I haven't found a test case where that fails on my platform, C
212 says the behavior is undefined.
213 * src/AnnotationList.c (AnnotationList__insertInto): Remove
214 FIXME. Use new id field of InadequacyList nodes rather than
215 their memory addresses when sorting.
216 (AnnotationList__compute_from_inadequacies): Add
217 inadequacy_list_node_count argument to pass to
218 InadequacyList__new_conflict.
219 * src/AnnotationList.h
220 (AnnotationList__compute_from_inadequacies): Update prototype
221 and documentation for new argument.
222 * src/InadequacyList.c (InadequacyList__new_conflict): Add
223 node_count argument and use it to assign a unique ID.
224 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
225 (InadequacyList): Add id field.
226 (InadequacyList__new_conflict): Update prototype and
227 documentation for new argument.
228 * src/ielr.c (ielr_compute_annotation_lists): Update
229 AnnotationList__compute_from_inadequacies invocation.
230
df222dfa
JD
2312009-12-20 Joel E. Denny <jdenny@clemson.edu>
232
233 Fix handling of yychar manipulation in user semantic actions.
234 The problem was that yacc.c didn't always update the yychar
235 translation afterwards. However, other skeletons appear to be
236 fine. glr.c appears to already translate yychar before every
237 use. lalr1.cc does not define yychar and does not document its
238 replacement, yyla, for users. It does provide yyclearin, but
239 that does not manipulate yyla and thus requires no translation
240 update. In lalr1.java, yychar is out of scope during semantic
241 actions.
242 * NEWS (2.5): Document.
243 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
244 yytoken here.
245 (yyparse, yypush_parse): Instead, translate before every use of
246 yytoken, and add comments explaining this approach.
247 * tests/actions.at (Destroying lookahead assigned by semantic
248 action): New test group checking that translation happens before
249 lookahead destructor calls at parser return. Previously,
250 incorrect destructors were called.
251 * tests/conflicts.at (parse.error=verbose and consistent
252 errors): New test group checking that translation happens at
253 syntax error detection before the associated verbose error
254 message and the associated lookahead destructor calls. While
255 the destructor call is fixed by this patch, the verbose error
256 message is currently incorrect due to another bug (see
257 comments in test group), so this is an expected failure for now.
258
4395a9ff
JD
2592009-12-21 Joel E. Denny <jdenny@clemson.edu>
260
261 YYFAIL: warn about uses and remove from lalr1.java.
262 * NEWS (2.5): Document.
263 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
264 and make it private. Update all uses.
265 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
266
1625df5b
JD
2672009-12-21 Joel E. Denny <jdenny@clemson.edu>
268
269 YYFAIL: deprecate.
270 * NEWS (2.4.2): Document deprecation and the phase-out plan.
271 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
272 deprecation.
273 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
274 YYFAIL from GCC cpp's -Wunused-macros.
275 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
276 documentation.
277 (LocalWords): Remove YYFAIL.
278
5335b65a
JD
2792009-12-20 Joel E. Denny <jdenny@clemson.edu>
280
281 tests: cleanup.
282 * tests/c++.at (Syntax error discarding no lookahead): Don't
283 ignore stderr. Instead, eliminate remaining warnings.
284
d59beda0
JD
2852009-12-18 Joel E. Denny <jdenny@clemson.edu>
286
287 lalr1.cc: don't discard non-existent lookahead on syntax error.
288 * data/lalr1.cc (parser::parse): Check yyempty first.
289 * tests/c++.at (Syntax error discarding no lookahead): New test
290 group.
291
387b4d50
JD
2922009-12-17 Joel E. Denny <jdenny@clemson.edu>
293
294 Code cleanup.
295 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
296 function, which is no longer used.
297
a603c6e0
JD
2982009-12-16 Joel E. Denny <jdenny@clemson.edu>
299
300 Add gcc's -Wundef to test suite and fix another warning from it.
301 * NEWS (2.4.2): Update description of -Wundef fix.
302 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
303 (WARN_CFLAGS_TEST): New substitution.
304 * data/glr.c: Avoid warning about __STRICT_ANSI__.
305 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
306 WARN_CFLAGS.
307 (NO_WERROR_CFLAGS): Likewise.
308 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
309
19750d31
JD
3102009-12-16 Joel E. Denny <jdenny@clemson.edu>
311
312 * data/yacc.c: Reformat m4 a little.
313
c938d650
JD
3142009-12-16 Joel E. Denny <jdenny@clemson.edu>
315
316 Document gcc -Wundef fix.
317 * NEWS (2.4.2): Here.
318 * THANKS (Jonathan Nieder): Add.
319
fcd32abd
JN
3202009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
321
322 Simplify y.tab.c when location tracking is disabled.
323 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
324 tracking is not enabled. Instead, unconditionally define
325 YY_LOCATION_PRINT as a no-op for backward compatibility.
326
ae93128c
JN
3272009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
328
329 Avoid warnings from gcc -Wundef y.tab.c.
330 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
331 defined before using them.
332 * data/lalr1.cc: Likewise.
333 * data/yacc.c: Likewise.
334
c843aaab
JD
3352009-12-15 Joel E. Denny <jdenny@clemson.edu>
336
337 autoconf: update to latest for fix of M4 detection.
338 Reported by Eric Blake.
339 * submodules/autoconf: Update.
340
5c99151a
JD
3412009-12-15 Joel E. Denny <jdenny@clemson.edu>
342
343 portability: use -DGNULIB_POSIXCHECK.
344 Reported by Eric Blake. See discussions at
345 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
346 and
347 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
348 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
349 * bootstrap.conf (gnulib_modules): Add all the printf modules
350 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
351 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
352 (excluded_files): Remove m4/printf-posix.m4.
353 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
354 lib/libbison.a so gnulib libraries can be linked.
355
75f94c6d
JD
3562009-12-15 Joel E. Denny <jdenny@clemson.edu>
357
358 gnulib: update for fix of fprintf-posix, which we'll use soon.
359 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
360 targets so that gnulib's new arg-nonnull.h and link-warning.h
361 are matched.
362 * gnulib: Update.
363
ca01f454
JD
3642009-12-14 Joel E. Denny <jdenny@clemson.edu>
365
366 Enable assertion output and --disable-assert for configure.
367 * bootstrap.conf (gnulib_modules): Add assert module.
368 * src/system.h (aver): Define as assert, and summarize the
369 discussion on this issue.
370
9dc3ee6d
JD
3712009-12-14 Joel E. Denny <jdenny@clemson.edu>
372
373 Expand GLR acronym in summary of Bison.
374 Based on discussion with Akim Demaille starting at
375 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
376 * doc/bison.texinfo (Introduction): Here.
377 * src/getargs.c (usage): Here.
378
d013372c
AR
3792009-10-03 Alex Rozenman <rozenman@gmail.com>
380
381 Document named references.
382 * doc/bison.texinfo (Actions): Add new example and xref to
383 Using Named References node.
384 (Using Named References): New node.
385
5297ebb3
JD
3862009-10-16 Joel E. Denny <jdenny@clemson.edu>
387
388 cleanup.
389 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
390 of char*.
391 (Sbitset__isEmpty): Use Sbitset instead of char*.
392 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
393 instead of char. This helps to avoid casting errors.
394 (Sbitset__or): Use Sbitset instead of char*.
395
175620d3
JD
3962009-10-16 Joel E. Denny <jdenny@clemson.edu>
397
398 portability: don't assume 8-bit bytes.
399 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
400 * src/Sbitset.h (Sbitset__nbytes): Here.
401 (Sbitset__byteAddress): Here.
402 (Sbitset__bit_mask): Here.
403 (Sbitset__last_byte_mask): Here.
404 (Sbitset__ones): Here.
405 (SBITSET__FOR_EACH): Here.
406
786578e3
JD
4072009-10-11 Joel E. Denny <jdenny@clemson.edu>
408
409 portability: use va_start and va_end in the same function.
410 * src/complain.c (error_message): Move va_end from here...
411 (ERROR_MESSAGE): ... to here.
412
416a9da6
JD
4132009-10-08 Joel E. Denny <jdenny@clemson.edu>
414
415 * data/bison.m4: Update comments for rename to muscle-tab.h.
416
10659d0e
JD
4172009-10-07 Joel E. Denny <jdenny@clemson.edu>
418
419 Minor code cleanup.
420 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
421 replace all uses with UNIQSTR_CONCAT.
422 * src/uniqstr.c (uniqstr_vsprintf): New function.
423 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
424 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
425 macros.
426
3c5362b8
JD
4272009-10-06 Joel E. Denny <jdenny@clemson.edu>
428
429 * TODO (Complaint submessage indentation): New.
430
b143f404
JD
4312009-10-04 Joel E. Denny <jdenny@clemson.edu>
432
433 Minor code cleanup.
434 * src/parse-gram.y: Clean up sorting of declarations.
435 Use types to simplify %printer declarations where possible.
436 Provide %printer for BRACKETED_ID and symbol.prec.
437 * src/symtab.c: Whitespace change.
438
7439c5c0
JD
4392009-10-04 Joel E. Denny <jdenny@clemson.edu>
440
441 tests: skip tests of file names that platform does not support.
442 Reported by Michael Raskin at
443 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
444 * THANKS (Michael Raskin): Add.
445 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
446 to fail at least for file names containing ":" or "\".
447
45319f13
JD
4482009-09-23 Joel E. Denny <jdenny@clemson.edu>
449
450 yysyntax_error: avoid duplicate lookahead collection.
451 Except when memory reallocation is required, this change
452 eliminates the need to invoke yysyntax_error twice and thus to
453 repeat the collection of lookaheads. It also prepares for
454 future extensions that will make those repetitions more
455 expensive and that will require additional memory management in
456 yysyntax_error. Finally, it fixes an obscure bug already
457 exercised in the test suite.
458 * data/yacc.c (yysyntax_error): Add arguments for message
459 buffer variables stored in the parser. Instead of size, return
460 status similar to yyparse status but indicating success of
461 message creation. Other than the actual reallocation of the
462 message buffer, import and clean up memory management code
463 from...
464 (yyparse, yypush_parse): ... here.
465 * tests/regression.at (parse.error=verbose overflow): No longer
466 an expected failure.
467
52cea04a
JD
4682009-09-23 Joel E. Denny <jdenny@clemson.edu>
469
470 yysyntax_error: test memory management more.
471 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
472 * tests/regression.at (parse.error=verbose and
473 YYSTACK_USE_ALLOCA): New test group.
474 (parse.error=verbose overflow): New test group that reveals an
475 obscure bug. Expected fail for now.
476
37318e2f
JD
4772009-10-04 Joel E. Denny <jdenny@clemson.edu>
478
479 benchmarks: use %debug consistently among grammars.
480 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
481 %debug by default. It can affect the timings even if yydebug=0.
482 (generate_grammar_calc): For consistency with other grammars,
483 use YYDEBUG environment variable to set yydebug.
484
f74d6d25
JD
4852009-10-03 Joel E. Denny <jdenny@clemson.edu>
486
487 Remove dead code.
488 * src/symtab.c (symbol_pack): Here because every symbol's number
489 is always defined by this time.
490
5b1ff423
AR
4912009-10-03 Alex Rozenman <rozenman@gmail.com>
492
493 Add additional space after periods in NEWS.
494 * NEWS (2.5): here.
495
47eced30
JD
4962009-09-29 Joel E. Denny <jdenny@clemson.edu>
497
498 Use the correct conversion specifier for size_t.
499 Reported by Jim Meyering.
500 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
501 because Sbitset__Index is size_t.
502 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
503
d8f68fc2
JD
5042009-09-27 Joel E. Denny <jdenny@clemson.edu>
505
506 tests: don't abuse AT_BISON_CHECK.
507 * tests/regression.at (parse-gram.y: LALR = IELR): Move
508 additional shell commands outside of AT_BISON_CHECK.
509
43aabb70
JD
5102009-09-26 Joel E. Denny <jdenny@clemson.edu>
511
512 tests: check that parse-gram.y's IELR and LALR are identical.
513 * tests/atlocal.in (abs_top_srcdir): New shell variable.
514 * tests/regression.at (parse-gram.y: LALR = IELR): New test
515 group.
516
66381412
AR
5172009-09-19 Alex Rozenman <rozenman@gmail.com>
518
519 Keep sub-messages aligned. Fix strings for translation.
5b1ff423
AR
520 * src/location.h (location_print): Add return value.
521 * src/location.c (location_print): Return number of printed
66381412 522 characters.
5b1ff423
AR
523 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
524 new functions.
525 * src/complain.cpp (indent_ptr): New static variable.
526 (error_message, complain_at_indent, warn_at_indent): Implement
527 the alignment mechanism.
528 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
529 for translations. Use new alignment mechanism.
530 * tests/named-ref.at: Adjust test-cases.
66381412
AR
531 * NEWS (2.5): Add an announcement about named references.
532
a6ca4ce2
AD
5332009-09-17 Akim Demaille <demaille@gostai.com>
534
535 doc: fixes.
536 * doc/bison.texinfo: here.
537 Reported by Alex Rozenman.
538
3cdc21cf
AD
5392009-09-16 Akim Demaille <demaille@gostai.com>
540
541 doc: lalr1.cc and variants.
542 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
543 "variant" %define variables.
544 (C++ Semantic Values): Split into...
545 (C++ Unions, C++ Variants): these.
546 The latter is new.
547 (C++ Parser Interface): Fix type names.
548 Document parser::syntax_error.
549 Document the fact that locations are not mandatory.
550 (C++ Scanner Interface): Split into...
551 (Split Symbols, Complete Symbols): these.
552 The later is new.
553 (Calc++ Parsing Driver): Use variants.
554 Add more comments.
555 Adjust style.
556 (Calc++ Parser): Declare all the tokens, no
557 longer accept raw characters.
558 Remove %union.
559 Adjust types and printers.
560 Remove destructors.
561 (Calc++ Scanner): Use make_<SYMBOL> functions.
562 Use strerror in error message.
563
f50bfcd6
AD
5642009-09-16 Akim Demaille <demaille@gostai.com>
565
566 doc: spell checking.
567 * doc/bison.texinfo: here.
568
6b5a0de9
AD
5692009-09-16 Akim Demaille <demaille@gostai.com>
570
571 doc: comment changes.
572 * doc/bison.texinfo: Comment changes.
573
2b08bceb
AD
5742009-09-16 Akim Demaille <demaille@gostai.com>
575
576 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
577 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
578 constructor to take a token_type instead of the (internal) symbol
579 number.
580 Call yytranslate_.
581 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
582 don't call yytranslate_ here.
583
c981ce9b
AD
5842009-09-16 Akim Demaille <demaille@gostai.com>
585
586 TODO: statistics.
587 * TODO (Figures): New.
588
00d80a9c
JD
5892009-09-13 Joel E. Denny <jdenny@clemson.edu>
590
591 tests: clean up push.at test group titles.
592 * tests/push.at: Remove "Push Parsing: " from test group titles
593 because these are already under the banner "Push Parsing Tests".
594
f64e406b
AR
5952009-09-12 Alex Rozenman <rozenman@gmail.com>
596
597 Provide an additional sub-message for clarity.
598 Add "symbol not found in production" error message when
599 an "invalid reference" is detected in named references
600 resolution.
601 * src/scan-code.l: Update "invalid reference" case.
602 * tests/named-ref.at: Adjust test-cases.
603
bb31eb56
JD
6042009-09-10 Joel E. Denny <jdenny@clemson.edu>
605
606 Clean up yacc.c a little.
607 * data/yacc.c: Clean up M4 for readability, and make output
608 whitespace more consistent. For the main parse function
609 comment, instead of saying "yyparse or yypush_parse", say either
610 "yyparse" or "yypush_parse" depending on which it actually is.
611
2d399888
JD
6122009-09-10 Joel E. Denny <jdenny@clemson.edu>
613
614 Fix --enable-gcc-warnings.
615 * src/parse-gram.y (%printer <param>): Handle param_none.
616
ff601366
AD
6172009-09-09 Akim Demaille <demaille@gostai.com>
618
619 lalr1.cc: syntax_error as exceptions.
620 It is common to use sort of factories in the user actions. These
621 factories may check some "syntactic" constraints that are not
622 enforced by the grammar itself. This is possible using YYERROR
623 within the action itself. Provide the user with a means to throw
624 a syntax_error exception.
625
626 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
627 Declare and define yy::parser::syntax_error.
628 * data/lalr1.cc: Include stdexcept.
629 (yy::parser::parse): Wrap the user action within a try/catch.
630 * data/glr.cc: Include stdexcept.
631
29660062
AD
6322009-09-09 Akim Demaille <demaille@gostai.com>
633
634 lalr1.cc: add missing "inline".
635 * data/c++.m4 (b4_public_types_define): Add missing inline to
636 implementations provided in headers.
637
2055a44e
AD
6382009-09-09 Akim Demaille <demaille@gostai.com>
639
640 %param: documentation.
641 * NEWS (2.6): Document %param, %lex-param, and %parse-param
642 changes.
643 * doc/bison.texinfo: Document that %lex-param and %parse-param
644 are n-ary.
645 Changes some examples to demonstrate it.
646 (Calc++ Parser): Use %param.
647
dd875058
AD
6482009-09-09 Akim Demaille <demaille@gostai.com>
649
650 Regen.
651
f71db70b
AD
6522009-09-09 Akim Demaille <demaille@gostai.com>
653
654 style changes.
655 * src/parse-gram.y (add_param): Scope changes.
656
eaca4c11
AD
6572009-09-09 Akim Demaille <demaille@gostai.com>
658
659 %parse: support several arguments.
660 * src/parse-gram.y (current_param): New.
661 (param_type): Add param_none.
662 (params): New nonterminal.
663 Use it.
664
b18cdd91
AD
6652009-09-09 Akim Demaille <demaille@gostai.com>
666
667 Regen.
668
a7706735
AD
6692009-09-09 Akim Demaille <demaille@gostai.com>
670
671 %param.
672 Provide a means to factor lex-param and parse-param common
673 declarations.
674
675 * src/parse-gram.y (param_type): New.
676 Define a %printer for it.
677 (add_param): Use it.
678 (%parse-param, %lex-param): Merge into...
679 (%parse): this new token.
680 Adjust the grammar to use it.
681 * src/scan-gram.l (RETURN_VALUE): New.
682 (RETURN_PERCENT_FLAG): Use it.
683 (RETURN_PERCENT_PARAM): New.
684 Use it to support %parse-param, %lex-param and %param.
685
9789acf0
JD
6862009-09-03 Joel E. Denny <jdenny@clemson.edu>
687
688 Use aver not assert.
689 * src/output.c: Don't include assert.h.
690 (output_skeleton): Use aver not assert.
691 * src/system.h (aver): In documentation of why, add links to
692 Paul Eggert's explanations in the mailing lists.
693
61bc57e5
AR
6942009-09-05 Alex Rozenman <rozenman@gmail.com>
695
696 Use "Unresolved reference" error message when no symbols were found
697 in a symbolic reference resolution. Remove .expr and -expr from
698 the shown reference when the reference is unresolved.
699 * src/scan-code.l: Change the error message, adjust location columns,
700 rename variable "exact_mode" to "explicit_bracketing".
701 * tests/named-ref.at: Adjust existing tests and add a new one.
702
f4c75eaf
AD
7032009-09-04 Akim Demaille <demaille@gostai.com>
704
705 Adjust synclines in src/parse-gram.[ch].
706 * tests/bison.in: Do some magic (including working around issues
707 with ylwrap) when this wrapper is used to compile
708 src/parse-gram.y.
709
c6abeab1
JD
7102009-09-03 Joel E. Denny <jdenny@clemson.edu>
711
712 Complain about unused %define variables and %code qualifiers.
713 * NEWS (2.5): Document.
714 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
715 * doc/bison.texinfo (Decl Summary): Document complaint, and
716 improve %define documentation a little otherwise.
717 * tests/input.at (Reject unused %code qualifiers): Update.
718 (%define errors): Update.
719 (%define, --define, --force-define): Update.
720 (%define backward compatibility): Update.
721 (Unused %define api.pure): Update.
722 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
723
82db7cdb
JD
7242009-09-03 Joel E. Denny <jdenny@clemson.edu>
725
726 Don't suppress warnings about unused parse.error.
727 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
728 %define variable parse.error unless b4_error_verbose_flag is
729 actually expanded in a skeleton.
730
2755de8f
AD
7312009-09-03 Akim Demaille <demaille@gostai.com>
732
733 * NEWS (2.4.2): Add "Internationalization" item.
734
1deef26d
AD
7352009-09-03 Akim Demaille <demaille@gostai.com>
736
737 bootstrap: fix/improve find_tool.
738 * bootstrap (find_tool): Improve error messages.
739 Fix typo about find_tool_names.
740
2646cd54
JD
7412009-08-29 Joel E. Denny <jdenny@clemson.edu>
742
743 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
744 See
745 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
746 * src/scan-code.h (code_props_rule_action_init): Rename
747 named_ref arg to name so it doesn't shadow named_ref type. This
748 makes it consistent with the function definition in scan-code.l
749 anyway.
750
cf499cff
JD
7512009-08-28 Joel E. Denny <jdenny@clemson.edu>
752
753 %define: accept unquoted values.
754 * NEWS (2.5): Group all %define changes together, and document
755 this one. Remove quotes in IELR and canonical LR entry.
756 * doc/bison.texinfo: Remove quotes in most examples throughout.
757 (Decl Summary): Update %define documentation.
758 (Table of Symbols): Likewise.
759 * src/ielr.c (LrType): Update documentation.
760 * src/parse-gram.y (content.opt): Add production for ID.
761 * tests/actions.at: Remove quotes in most tests.
762 * tests/calc.at: Likewise.
763 * tests/existing.at: Likewise.
764 * tests/input.at: Likewise.
765 * tests/local.at: Likewise.
766 * tests/push.at: Likewise.
767 * tests/reduce.at: Likewise.
768 * tests/torture.at: Likewise.
769
6ba96404
JD
7702009-08-28 Joel E. Denny <jdenny@clemson.edu>
771
772 %define lr.type: make values lowercase IDs.
773 That is, "LALR" => "lalr", "IELR" => "ielr", and
774 "canonical LR" => "canonical-lr".
775 * NEWS (2.5): Update documentation.
776 * doc/bison.texinfo (Decl Summary): Likewise.
777 * src/ielr.c (ielr): Use new values.
778 * src/ielr.h (ielr): Update documentation.
779 * src/reader.c (prepare_percent_define_front_end_variables): Use
780 and validate new values.
781 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
782 grammars.
783 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
784
4413bbd3
EB
7852009-08-27 Eric Blake <ebb9@byu.net>
786
787 scan-gram: avoid portability trap with ctype usage.
788 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
789 Avoid compiler warning.
790
b70c7fb4
JD
7912009-08-27 Joel E. Denny <jdenny@clemson.edu>
792
793 tests: use perl for printing special sequences to files.
794 And skip tests if perl is not available. This is better than
795 playing tricks with shell portability. Suggested by Akim
796 Demaille.
797 * tests/input.at (Bad character literals): Use it here for
798 omitting final newlines.
799 (Bad escapes in literals): Use it here for special characters.
800
d1cc31c5
JD
8012009-08-26 Joel E. Denny <jdenny@clemson.edu>
802
803 tests: show a use of %define lr.default-reductions "consistent"
804 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
805 prevents the omission of expected tokens for %error-verbose.
806
3bed3a75
AD
8072009-08-26 Akim Demaille <demaille@gostai.com>
808
809 tests: portability fix.
810 * tests/input.at (Bad escapes in literals): Don't expect "echo
811 '\0'" to output \ then 0.
812
aa0cb40d
JD
8132009-08-26 Joel E. Denny <jdenny@clemson.edu>
814
815 Actually handle the yytable zero value correctly this time.
816 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
817 zero values in the YYTABLE comments.
818 * data/glr.c (yytable_value_is_error): Don't check for zero
819 value.
820 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
821 * data/yacc.c (yytable_value_is_error): Likewise.
822 * data/lalr1.java (yy_table_value_is_error_): Likewise.
823 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
824 * src/tables.h: In header comments, explain why it's useless to
825 check for a zero value in yytable.
826
f2b30bdf
JD
8272009-08-25 Joel E. Denny <jdenny@clemson.edu>
828
829 More fixes related to last two patches.
830 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
831 comments: zero indicates syntax error not default action.
832 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
833 defined.
834 * data/glr.c (yyis_pact_ninf): Rename to...
835 (yypact_value_is_default): ... this.
836 (yyisDefaultedState): Update for rename.
837 (yyis_table_ninf): Rename to...
838 (yytable_value_is_error): ... this, and check for value zero
839 besides just YYTABLE_NINF.
840 (yygetLRActions): Check for default value from yypact. It
841 appears that this check is always performed before this function
842 is invoked, and so adding the check here is probably redundant.
843 However, the code may evolve after this subtlety is forgotten.
844 Also, update for rename to yytable_value_is_error. Because that
845 macro now checks for zero, a different but equivalent branch of
846 the if-then-else here is evaluated.
847 (yyreportSyntaxError): Update for rename to
848 yytable_value_is_error. The zero condition was mishandled
849 before.
850 (yyrecoverSyntaxError): Update for renames. No behavioral
851 changes.
852 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
853 New function.
854 (yy_table_value_is_error_): New function.
855 (parse): Use new functions where possible. No behavioral
856 changes.
857 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
858 The zero condition was mishandled before.
859 * data/yacc.c (yyis_pact_ninf): Rename to...
860 (yypact_value_is_default): ... this.
861 (yyis_table_ninf): Rename to...
862 (yytable_value_is_error): ... this, and check for value zero
863 besides just YYTABLE_NINF.
864 (yysyntax_error): Update for rename to yytable_value_is_error.
865 The zero condition was mishandled before.
866 (yyparse): Update for renames. No behavioral changes.
867 * src/tables.h: Improve comments about yypact, yytable, etc.
868 more. Most importantly, say yytable value of zero means syntax
869 error not default action.
870
53f036ce
JD
8712009-08-25 Joel E. Denny <jdenny@clemson.edu>
872
873 Fix %error-verbose for conflicts resolved by %nonassoc.
874 * NEWS (2.5): Document.
875 * data/glr.c (yyreportSyntaxError): Fix this by checking
876 yyis_table_ninf.
877 * data/yacc.c (yysyntax_error): Likewise.
878 * data/lalr1.cc (yysyntax_error_): Fix this by checking
879 yytable_ninf_.
880 * data/lalr1.java (yysyntax_error): Likewise.
881 * tests/conflicts.at (%nonassoc and eof): Update expected output
882 and remove FIXME.
883
87412882
JD
8842009-08-25 Joel E. Denny <jdenny@clemson.edu>
885
886 Some code and documentation improvements.
887 * data/c.m4 (b4_table_value_equals): New macro to capture
888 some repeated code.
889 * data/glr.c (yyis_pact_ninf): Use it here.
890 (yyis_table_ninf): Likewise.
891 (yyreportSyntaxError): Improve internal comments.
892 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
893 Use it everywhere possible.
894 (yyis_table_ninf): Likewise.
895 (yysyntax_error): Improve internal comments.
896 * data/lalr1.cc (yysyntax_error_): Likewise.
897 * data/lalr1.java (yysyntax_error): Likewise.
898 * src/tables.h: Improve comments about yypact, yytable, etc.
899
e6c849d8
JD
9002009-08-21 Joel E. Denny <jdenny@clemson.edu>
901
902 Use locale when quoting.
903 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
904 quote rather than implementing quoting here.
905
d8911864
EB
9062009-08-20 Eric Blake <ebb9@byu.net>
907
b0778bdd
EB
908 Make previous patch more robust.
909 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
910 argmatch.h.
911 (output_skeleton): Use it.
912 Suggested by Akim Demaille.
913
d8911864
EB
914 Import latest m4/m4.m4.
915 * submodules/autoconf: Update to autoconf 2.64.
916 * configure.ac (M4_GNU_OPTION): New define.
917 * src/output.c (output_skeleton): Use it to resolve FIXME.
918 * NEWS: Mention this.
919
c2724603
JD
9202009-08-19 Joel E. Denny <jdenny@clemson.edu>
921
922 Fix complaints about escape sequences.
923 Discussed starting at
924 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
925 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
926 For a \0 and similar escape sequences meaning the null
927 character, report an invalid escape sequence instead of an
928 invalid null character because the latter does not actually
929 appear in the user's input.
930 In all escape sequence complaints, don't escape the initial
931 backslash, and don't quote when the sequence appears at the end
932 of the complaint line unless there's whitespace that quotearg
933 won't escape.
934 Consistently say "invalid" not "unrecognized".
935 Consistently prefer "empty character literal" over "extra
936 characters in character literal" warning for invalid escape
937 sequences; that is, consistently discard those sequences.
938 * tests/input.at (Bad escapes in literals): New.
939
17aed602
AD
9402009-08-19 Akim Demaille <demaille@gostai.com>
941
942 doc: fixes.
943 * doc/bison.texinfo: Fix minor Texinfo errors.
944
9142239a
AD
9452009-08-19 Akim Demaille <demaille@gostai.com>
946
947 tests: distcc compliance.
948 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
949 error messages from the output.
950
171ad99d
AD
9512009-08-19 Akim Demaille <demaille@gostai.com>
952
953 variables: simplify the upgrade of namespace into api.namespace.
954
955 This patch simplifies "variables: rename namespace as
956 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
957 Suggested by Joel E. Denny in
958 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
959
960 * src/muscle-tab.c (muscle_percent_variable_update): New.
961 (muscle_percent_define_insert): Use it in replacement of the
962 previous tr invocation.
963 Remove variable_tr, no longer needed.
964 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
965 Remove.
966 * data/c++.m4: No longer handle namespace -> api.namespace.
967 * tests/input.at (%define backward compatibility): Check that
968 namespace is treated as api.namespace.
969
d59e456d
AD
9702009-08-19 Akim Demaille <demaille@gostai.com>
971
972 doc: %initial-action to initialize yylloc.
973 Reported by Bill Allombert.
974 * doc/bison.texinfo: Set fill-column to 76.
975 (Location Type): Document the use of %initial-action to initialize
976 yylloc.
977
ceb8b8e6
AD
9782009-08-19 Akim Demaille <demaille@gostai.com>
979
980 lalr1.cc: use state_type.
981 * data/lalr1.cc (yysyntax_error_): Use state_type.
982 Move argument names into yy*.
983
7580c379
AD
9842009-08-19 Akim Demaille <demaille@gostai.com>
985
986 lalr1.cc: get rid of yyparse's yystate.
987 yystate and yystack_[0].state are equal, keep only the latter.
988 The former was also used as a temporary variable to compute the
989 post-reduction state. Move this computation into an auxiliary
990 function.
991
992 * data/glr.c (yyLRgotoState): Fuse variable definition and first
993 assignment.
994 * data/lalr1.cc (yy_lr_goto_state_): New.
995 (yyparse): Use it.
996 Replace remaining uses of yystate by yystate_[0].state.
997 Remove the former.
998
c4dc4c46
AD
9992009-08-19 Akim Demaille <demaille@gostai.com>
1000
1001 lalr1.cc: destroy $$ when YYERROR is called.
1002 * data/lalr1.cc (yyreduce): Compute the resulting state before
1003 running the user action so that yylhs is a valid symbol.
1004 (yyerrorlab): Since yylhs is complete (it knows its type), we can
1005 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
1006 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
1007
c67e466f
JD
10082009-08-18 Joel E. Denny <jdenny@clemson.edu>
1009
1010 maint: update for gnulib's recent update-copyright changes
1011 * gnulib: Update.
1012 * .x-update-copyright (COPYING): Add as it's no longer implied
1013 when .x-update-copyright is present.
1014 * cfg.mk (update-copyright-local): Remove, now ignored.
1015 (update-copyright): Declare update-b4-copyright as a dependency.
1016
af6d2358
AD
10172009-08-17 Akim Demaille <demaille@gostai.com>
1018
1019 build: require gettext 0.17.
1020
1021 Suggested by Bruno Haible.
1022 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1023 * configure.ac: require gettext 0.17 to ensure compatibility with
1024 gnulib.
1025
91a2b9b1
AD
10262009-08-17 Akim Demaille <demaille@gostai.com>
1027
1028 build: lower gettext requirements.
1029
1030 Bison was uselessly requiring the formatstring macros from
1031 gettext, which resulted in mo files not being installed on systems
1032 that perfectly supported Bison mo files. Lower the requirement.
1033 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1034
b0778bdd
EB
1035 * configure.ac: Require need-ngettext instead of
1036 need-formatstring-macros.
1037 Reported by Martin Jabocs.
1038 Suggested by Bruno Haible.
1039 * INSTALL: Restructure.
1040 (Internationalization): New.
91a2b9b1 1041
585935e8
JD
10422009-08-14 Joel E. Denny <jdenny@clemson.edu>
1043
1044 maint: fix use of copyright year intervals.
1045 * gnulib: Update.
1046 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1047 as now recommended in gnulib/NEWS.
1048 * build-aux/update-b4-copyright: Fix.
1049 * cfg.mk (update-copyright-env): Configure update-copyright.
1050
83b60c97
JD
10512009-08-13 Joel E. Denny <jdenny@clemson.edu>
1052
1053 Make it easier to write deterministic tests.
1054 Continues Akim's work from his 2009-06-10 commits.
1055 * src/reader.c (check_and_convert_grammar): Don't add any
1056 symbols after the first symbols_do invocation.
1057 * src/symtab.c (symbols_sorted): New static global.
1058 (user_token_number_redeclaration): Update comments.
1059 (symbol_from_uniqstr): If a new symbol is being created, assert
1060 that symbols_sorted hasn't been allocated yet.
1061 (symbols_free): Free symbols_sorted.
1062 (symbols_cmp, symbols_cmp_qsort): New functions.
1063 (symbols_do): Sort symbol_table into symbols_sorted on first
1064 invocation.
1065 * tests/input.at (Numbered tokens): Recombine tests now that the
1066 output should be deterministic across multiple numbers.
1067
28169bab
AD
10682009-08-12 Akim Demaille <demaille@gostai.com>
1069
1070 tests: GCC 4.5 compliance.
1071 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1072 messages about #error.
1073
9f14e187
AD
10742009-08-12 Akim Demaille <demaille@gostai.com>
1075
1076 build: fix the generation of the documentation.
1077 Some of our targets use "bison --help", but they can't depend on
1078 "bison" itself (to avoid additional requirements on the user), so
1079 they used to call "make src/bison" in the commands. Then
1080 concurrent builds may fail: one make might be aiming one of its
1081 jobs at compiling src/bison, and another job at generating the man
1082 page. If the latter is faster than the former, then we have two
1083 makes that concurrently try to compile src/bison.
1084
1085 This might also be a more convincing explanation for the failure
1086 described in the patch "build: fix paths".
1087
1088 * Makefile.am (SUFFIXES): Initialize.
1089 * build-aux/move-if-change: New, symlink to gnulib's.
1090 * build-aux/local.mk: Ship it.
1091 * doc/common.x: Remove, merged into...
1092 * doc/bison.x: here.
1093 * doc/local.mk (doc/bison.help): New.
1094 ($(CROSS_OPTIONS_TEXI)): Depend on it.
1095 Use src/bison.
1096 (.x.1): Replace with...
1097 (doc/bison.1): this explicit, simpler, target.
1098 (common_dep): Remove, inlined where appropriate.
1099 (SUFFIXES, PREPATH): Remove, unused.
1100
d1b55e81
AD
11012009-08-12 Akim Demaille <demaille@gostai.com>
1102
1103 gnulib: improve prefixing.
1104 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
1105 change the value of...
1106 (gl_LIBOBJS): this.
1107 Adjust more variables.
1108 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
1109 gl_LIBOBJS.
1110 (prefix): Also transform rules whose targets have slashes.
1111 Use $prefix liberally.
1112 Map @MKDIR_P@ to $(MKDIR_P).
1113 Prefix directories that are mkdir'd.
1114
838205d5
AD
11152009-08-12 Akim Demaille <demaille@gostai.com>
1116
1117 build: fix paths.
1118 When using $(top_builddir) inconsistently, Make (including GNU
1119 Make) is sometimes confused. As a result it may want to build
1120 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1121 file, different names) concurrently, which, amusingly enough,
1122 might end with:
1123
1124 ranlib lib/libbison.a
1125 ranlib lib/libbison.a
1126 make[2]: *** [lib/libbison.a] Segmentation fault
1127
1128 on OS X.
1129
1130 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1131 needed.
1132
67af7198
AD
11332009-08-12 Akim Demaille <demaille@gostai.com>
1134
1135 distcheck: fix.
1136
b0778bdd 1137 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67af7198 1138
c467dc42
JD
11392009-08-10 Joel E. Denny <jdenny@clemson.edu>
1140
1141 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1142
dfaa4860
JD
11432009-08-10 Joel E. Denny <jdenny@clemson.edu>
1144
1145 Miscellaneous code readability improvements.
1146
1147 * src/reader.c (reader): Move %define front-end variable
1148 defaults and checking into...
1149 (prepare_percent_define_front_end_variables): ... this new
1150 function.
1151
1152 * src/scan-gram.l (INITIAL): For consistency with string
1153 literals, don't store open quote on character literal. It's
1154 discarded before returning anyway.
1155 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1156 Make length test more readable, and make the character stored
1157 for an empty literal more obvious while consistent with the
1158 previous behavior.
1159
1160 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1161 USER_NUMBER_HAS_STRING_ALIAS throughout.
1162 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1163 that is repeated in symtab.h. Improve argument names to make it
1164 clear which side of the symbol-string alias pair is which.
1165 (symbol_check_alias_consistency): Improve local variable names
1166 for the same purpose.
1167 * src/symtab.h (struct symbol): Make comments about aliases
1168 clearer.
1169 (symbol_make_alias): Improve comments and argument name.
1170 * src/output.c (token_definitions_output): Update for rename to
1171 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1172
ce268795
AR
11732009-08-08 Alex Rozenman <rozenman@gmail.com>
1174
1175 Convert "misleading reference" messages to warnings.
1176 * src/scan-code.l: New function 'show_sub_messages', more
1177 factoring.
1178 * tests/named-ref.at: Adjust tests.
1179
401b73af
JD
11802009-08-06 Joel E. Denny <jdenny@clemson.edu>
1181
1182 maint: run "make update-copyright"
1183
a1a9422d
JD
11842009-08-06 Joel E. Denny <jdenny@clemson.edu>
1185
1186 maint: make update-b4-copyright easier to use
1187 * build-aux/update-b4-copyright: In warnings, report line
1188 numbers rather than character positions.
1189 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1190 that update-copyright runs it.
1191 * gnulib: Update.
1192
0b61a8ec
JD
11932009-08-05 Joel E. Denny <jdenny@clemson.edu>
1194
1195 maint: clean up update-b4-copyright code
1196 * build-aux/update-b4-copyright: Do not accept 2-digit
1197 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1198 Don't accept a `[' in a b4_copyright argument.
1199 Format code more consistently.
1200 Don't assume b4*copyright never occurs.
1201
269e222e
JD
12022009-08-04 Joel E. Denny <jdenny@clemson.edu>
1203
1204 maint: automate b4_copyright updates.
1205 * Makefile.am (update-b4-copyright): New target rule.
1206 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1207 * build-aux/update-b4-copyright: New.
1208 * data/yacc.c: Remove stray characters around b4_copyright
1209 invocations.
1210
35905f2b
JD
12112009-08-04 Joel E. Denny <jdenny@clemson.edu>
1212
1213 maint: automate annual package-wide copyright-year update.
1214 * .x-update-copyright: New.
1215 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1216 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1217 update-copyright. Remove gnumakefile, which is implied by
1218 maintainer-makefile.
1219 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1220 * gnulib: Update.
1221 * maint.mk: Remove, now copied from gnulib.
1222 * examples/extexi: Add missing "(C)" in copyright statement so
1223 update-copyright can recognize it.
1224 * src/LR0.h: Likewise.
1225 * src/print.h: Likewise.
1226 * src/print_graph.h: Likewise.
1227 * src/gram.c: Add missing comma in copyright statement.
1228 * src/gram.h: Likewise.
1229
b30e18dc
JD
12302009-08-04 Joel E. Denny <jdenny@clemson.edu>
1231
1232 Fix "make distcheck".
1233 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1234 of just calc.stamp.
1235
8d90395d
JD
12362009-08-01 Joel E. Denny <jdenny@clemson.edu>
1237
1238 Pacify "gcc -Wunused" for the input function from Flex.
1239 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1240 and later.
1241 * src/scan-code.l: Add "%option noinput", which I cannot find in
1242 the Flex manual, but which Flex has supported since at least as
1243 far back as 2.5.4. However, if any of our developers still use
1244 Flex 2.5.4, they'll need to stop configuring with
1245 --enable-gcc-warnings because "%option noinput" didn't work
1246 correctly until Flex 2.5.6.
1247 * src/scan-gram.l: Likewise.
1248 * src/scan-skel.l: Likewise.
1249
ba4184ec
AR
12502009-07-31 Alex Rozenman <rozenman@gmail.com>
1251
1252 Fix --enable-gcc-warnings problems.
1253 * src/reader.c: Adjust variable names.
1254 * src/scan-code.l: Fix prototypes and adjust names.
1255 * src/named-ref.c: Remove redundant "if".
1256
91a2af97
JD
12572009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1258
1259 Fix a --enable-gcc-warnings problem.
1260 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1261 variable.
1262
3208e3f4
JD
12632009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1264
1265 Warn about character literals not of length one.
1266 * NEWS (2.5): Document.
1267 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1268 the length.
1269 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1270 * tests/input.at (Bad character literals): New test group.
1271
5add20ab 12722009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
1273
1274 Fix some memory leaks.
1275 * src/named-ref.c: Add a pointer check (named_ref_free).
1276 * src/scan-code.l: New function (variant_table_free). Called in
1277 code_scanner_free.
1278 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1279
e459fb0e
JD
12802009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1281
1282 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1283
c4be5517
JD
12842009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1285
1286 Some M4 cleanup in the testsuite.
1287 Suggested by Eric Blake at
1288 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1289 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1290 complicate the code by distinguishing between a missing value
1291 and an empty string value for an optional argument. This fix is
1292 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1293 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1294 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1295 arguments are not needed because of the following changes.
1296 Fix stale comments.
1297 Bison developers should use GNU M4 and should not use
1298 POSIXLY_CORRECT when building the test suite, so do not
1299 complicate the code by avoiding $10 and above.
1300 Do not quote an empty string value for an optional argument, and
1301 do not distinguish between a missing value and an empty string
1302 value.
1303
feeb56cd
JD
13042009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1305
1306 Revert unnecessary column realignment in --help output.
1307 Reported by Akim Demaille at
1308 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1309 * src/getargs.c (usage): Here.
1310
5add20ab 13112009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
1312
1313 Alphabetical order in src/local.mk.
1314 * src/local.mk: Adjust.
1315
5add20ab 13162009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
1317
1318 Style changes and factoring.
1319 * src/named-ref.h: Add comments.
1320 * src/parse-gram.y: Readability and style changes.
1321 * src/reader.c: Factoring: assign_named_ref function.
1322 * src/scan-code.l: Factoring and style changes. Rename
1323 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1324 Use "unsigned" type for variant index. Improve readablity.
1325 * src/scan-gram.l: Change error messages and add comments.
1326 * src/symlist.h: symbol_list_null: New function decl.
1327 * src/symlist.c: symbol_list_null: Implement here.
1328 * tests/named-refs.at: Adjust for new error messages.
1329
83ea2423
EB
13302009-06-29 Eric Blake <ebb9@byu.net>
1331
1332 scan-code: avoid compiler warnings
1333 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1334
5ece73ea
AD
13352009-06-29 Akim Demaille <demaille@gostai.com>
1336
1337 build: avoid concurrent extraction of calc++.
1338 * examples/calc++/Makefile.am (calc.stamp): New.
1339 Depend on it to create the sources of calc++ so that concurrent
1340 builds don't launch several "extexi" in parallel.
1341 Not only this is inefficient, this also builds incorrect sources
1342 with several extractions mixed together.
1343
ad597a78
AD
13442009-06-29 Akim Demaille <demaille@gostai.com>
1345
1346 parse.error: fix.
1347 * data/bison.m4: Move code related to specific variables after the
1348 definition of the variable-maintaining macros so that we don't
1349 "invoke" b4_percent_define_check_values before it is defined.
1350
31b850d2
AD
13512009-06-29 Akim Demaille <demaille@gostai.com>
1352
1353 variables: parse.error
1354
1355 Implement, document, and test the replacement of %error-verbose
1356 by %define parse.error "verbose".
1357 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1358 values of the parse.error variable.
1359 Make "simple" its default value.
1360 Check the valid values.
1361 * src/parse-gram.y: Use %define parse.error.
1362 (PERCENT_ERROR_VERBOSE): New token.
1363 Support it.
1364 * src/scan-gram.l: Support %error-verbose.
1365
1366 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1367 %define error-verbose by that of %define parse.error.
1368 * NEWS: Document it.
1369
1370 * tests/actions.at, tests/calc.at: Use parse.error instead of
1371 %error-verbose.
1372
b9f1d9a4
AR
13732009-06-27 Alex Rozenman <rozenman@gmail.com>
1374
1375 Implement support for named symbol references.
1376 * src/parse-gram.y: Add new syntax (named_ref.opt).
1377 * src/reader.c: Store named refs in symbol lists.
1378 * src/reader.h: New argument for symbol_append and
1379 action_append functions.
1380 * src/scan-code.h: Add new field (named_ref) into
1381 code_props data structure. Keeps named ref of midrule
1382 actions.
1383 * src/scan-code.l: Support for named refs in semantic
1384 action code. New function 'parse_named_ref'.
1385 * src/scan-gram.l: Support bracketed id.
1386 * src/symlist.c: Store named refs in symbol lists.
1387 * src/symlist.h: New field in symbol list: named_ref.
1388 * src/named-ref.h: New file, a struct for named_ref.
1389 * src/named-ref.cp: New file, named_ref_new function.
1390 * src/local.mk: Add two new files.
1391 * tests/testsuite.at: Include new test group:
1392 * tests/named-refs.at: this new file.
1393
b5c212b6
AD
13942009-06-25 Akim Demaille <demaille@gostai.com>
1395
1396 hash: check insertion for memory exhaustion.
1397 * src/uniqstr.c (uniqstr_new): New.
1398
67501061
AD
13992009-06-24 Akim Demaille <demaille@gostai.com>
1400
1401 variables: rename namespace as api.namespace.
1402 Discussed in
1403 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1404
1405 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1406 New.
1407 (b4_percent_define_use): New.
1408 Use it where applicable.
1409 * data/c++.m4: Replace uses of the variable "namespace" by
1410 "api.namespace".
1411 Default the latter to the former.
1412 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1413 obsolete.
1414 Document api.namespace.
1415 Use @samp to document %define uses, keep @code for identifiers.
1416 * NEWS: Likewise.
1417 * tests/c++.at, tests/input.at: Test api.namespace instead of
1418 namespace. (The tests passed with namespace.)
1419
41976786
AD
14202009-06-11 Akim Demaille <demaille@gostai.com>
1421
1422 style changes.
1423 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1424 * src/print-xml.c: Style changes.
1425 * tests/conflicts.at: Comment changes.
1426
44bb9084
AD
14272009-06-11 Akim Demaille <demaille@gostai.com>
1428
1429 xml: beware of user strings used to give a %prec to rules.
1430 * tests/conflicts.at (%prec with user strings): New.
1431 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1432 XML output.
1433
04d1e39d
AD
14342009-06-11 Akim Demaille <demaille@gostai.com>
1435
1436 hash: check insertion for memory exhaustion.
1437 * src/muscle-tab.c (muscle_insert, muscle_grow)
1438 * src/state.c (state_hash_insert): Check the return value of
1439 hash_insert.
1440
a8873669
AD
14412009-06-11 Akim Demaille <demaille@gostai.com>
1442
1443 tests: honor TESTSUITEFLAGS in every check target.
1444 * tests/local.mk (RUN_TESTSUITE): New.
1445 (check-local, installcheck-local, maintainer-check-g++)
1446 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1447
8893145a
AD
14482009-06-10 Akim Demaille <demaille@gostai.com>
1449
1450 deterministic test suite.
1451 Some consistency checks on symbols are performed after all the
1452 symbols were read, by an iteration over the symbol table. This
1453 traversal is nondeterministic, which can be a problem for test
1454 cases.
1455 Avoid this.
1456 Addresses another form of nondeterminism reported by Joel E. Denny.
1457 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1458
1459 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1460 test in two.
1461 Use different file names for the three tests to make the
1462 maintenance easier.
1463
92d7a23a
AD
14642009-06-10 Akim Demaille <demaille@gostai.com>
1465
1466 gnulib: update.
b0778bdd
EB
1467 * gnulib: Update to latest.
1468 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1469 * m4/.gitignore: Regen.
1470 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1471 Call xalloc_die on hash_insert failures.
1472 Requested by the new __warn_unused_result__ attribute of
1473 hash_insert.
92d7a23a 1474
12cf133f
AD
14752009-06-10 Akim Demaille <demaille@gostai.com>
1476
1477 deterministic user-token-number redeclaration errors.
1478 Address nondeterminism reported by Joel E. Denny.
1479 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1480
1481 * src/uniqstr.h: Comment changes.
1482 * src/location.h (boundary_cmp, location_cmp): New.
1483 * src/symtab.c (user_token_number_redeclaration): New.
1484 (symbol_translation): Use it.
1485 * tests/input.at (Numbered tokens): Adjust the expected output.
1486
796a2b0a
AD
14872009-05-25 Akim Demaille <demaille@gostai.com>
1488
1489 build: avoid ignored errors.
1490 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1491 errors, they pollute the output.
1492
0b6d43c5
JD
14932009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1494
1495 Convert multiple variable definition warnings to complaints.
1496 * NEWS (2.5): Add a new entry for that change.
1497 * doc/bison.texinfo (Decl Summary): Update %define entry.
1498 (Bison Options): Update -D/--define/-F/--force-define entry.
1499 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1500 * src/muscle-tab.h (muscle_percent_define_insert): Update
1501 comments.
1502 * tests/input.at (`%define errors'): Update.
1503 (`%define, --define, --force-define'): Update.
1504
de5ab940
JD
15052009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1506
1507 -F/--force-define and relative %define/-D/--define priorities.
1508 * NEWS (2.5): Add documentation to -D/--define entry.
1509 * build-aux/cross-options.pl: Hard-code association of
1510 --force-define with %define.
1511 * doc/bison.texinfo (Decl Summary): In %define entry,
1512 cross-reference command-line options.
1513 (Bison Options): Add documentation to -D/--define entry.
1514 (Option Cross Key): Widen column for --force-define row.
1515 * src/getargs.c (usage): Document -F/--force-define. Realign
1516 options in output.
1517 (short_options, long_options, getargs): Parse -F/--force-define,
1518 and update muscle_percent_define_insert invocations.
1519 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1520 (muscle_percent_define_insert): Add argument with that type.
1521 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1522 -F/--force-define behavior and priorities.
1523 (muscle_percent_define_ensure): Update
1524 muscle_percent_define_insert invocation.
1525 * src/parse-gram.y (prologue_declaration): Update
1526 muscle_percent_define_insert invocations.
1527 * tests/input.at (`%define, --define'): Rename to...
1528 (`%define, --define, --force-define'): ... this and extend.
1529
f8e7258f
JD
15302009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1531
1532 Update some comments to make sense for -D.
1533 * data/bison.m4 (b4_check_user_names): In header comments, say
1534 "user occurrence" instead of "grammar occurrence".
1535 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1536 (muscle_percent_code_grow): Likewise just for consistency.
1537
b987342b
JD
15382009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1539
1540 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1541
4977e0a7
JD
15422009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1543
1544 Handle a trailing `:' in a user-supplied C++ namespace better.
1545 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1546 among the closing braces here. This fix might make the
1547 generated code easier to debug, but otherwise it should be
1548 insignificant because a trailing `:' is a C++ error already.
1549
9b04dad7
AD
15502009-05-19 Akim Demaille <demaille@gostai.com>
1551
1552 remove useless variable.
1553 * src/getargs.c (skeleton_arg): Remove now useless variable.
1554 Should help the compiler see that this printf-like call is sane.
1555
4c6622c2
AD
15562009-05-15 Akim Demaille <demaille@gostai.com>
1557
1558 Rename token.prefix as api.tokens.prefix.
1559 Discussed here.
1560 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1561
1562 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1563 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1564 (token.prefix): Rename as...
1565 (api.tokens.prefix): this.
1566
3c248d70
AD
15672009-05-11 Akim Demaille <demaille@gostai.com>
1568
1569 doc: use C++ headers.
1570 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1571 headers.
1572
99c08fb6
AD
15732009-05-11 Akim Demaille <demaille@gostai.com>
1574
1575 doc: token.prefix
1576 * doc/bison.simple (Decl Summary): Document token.prefix.
1577 (Calc++ Parser): Various fixes.
1578 Formatting changes.
1579 Use token.prefix.
1580 Introduce a macro TOKEN to shorten the code and make it more
1581 readable.
1582 (Calc++ Scanner): Adjust.
1583 * NEWS (Variable token.prefix): New.
1584
84a1cb5a
AD
15852009-05-04 Akim Demaille <demaille@gostai.com>
1586
1587 bison: catch bad symbol names.
1588 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1589 * tests/input.at: Adjust.
1590
cdf3f113
AD
15912009-05-04 Akim Demaille <demaille@gostai.com>
1592
1593 identifiers: dashes are letters.
1594 Dashes can now start identifiers (symbols and directives).
84a1cb5a 1595
cdf3f113
AD
1596 * src/scan-gram.l ({letter}): Add dash.
1597 ({id}): Remove it.
1598 * tests/input.at (Symbols): Adjust.
1599 Remove stray comment.
1600 * tests/regression.at (Invalid inputs): Adjust error message.
1601 * doc/bison.texinfo (Symbols): Update.
1602
98a345a2
JD
16032009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1604
1605 Declare %code to be a permanent feature.
1606 * NEWS (2.4.2): Here.
1607 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1608 experimental.
1609 (Decl Summary): Likewise.
1610
67212941
JD
16112009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1612
1613 Convert underscores to dashes in some %define variable names.
1614 For now, just api.push-pull and lr.keep-unreachable-states.
1615 Maintain old names for backward compatibility.
1616 * NEWS (2.5): Document.
1617 * data/c.m4 (b4_identification): Update comment.
1618 * data/yacc.c: Update access.
1619 * doc/bison.texinfo: Update.
1620 * etc/bench.pl.in (bench_push_parser): Update use.
1621 * src/files.c (tr): Move to...
1622 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1623 think of a better place to expose it. My logic is that, for all
1624 uses of tr so far, command-line arguments can be involved, and
1625 getargs.h is already included.
1626 * src/main.c (main): Update access.
1627 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1628 variable names to new variable names before assigning value.
1629 * src/reader.c (reader): Update setting default.
1630 * tests/calc.at: Update uses.
1631 * tests/conflicts.at (Unreachable States After Conflict
1632 Resolution): Update use.
1633 * tests/input.at (%define enum variables): Update use.
1634 (%define backward compatibility): New test group.
1635 * tests/push.at: Update uses.
1636 * tests/reduce.at: Update uses.
1637 * tests/torture.at: Update uses.
1638
ba5c6d94
JD
16392009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1640
1641 Set all front-end %define defaults in one place.
1642 * src/main.c (main): Move lr.keep_unreachable_states default...
1643 * src/reader.c (reader): ... to here.
1644
5bab9d08
JD
16452009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1646
1647 Rename lr.default_reductions to lr.default-reductions.
1648 * NEWS (2.5): Here.
1649 * doc/bison.texinfo: Here.
1650 * src/lalr.c (initialize_LA): Here.
1651 * src/print.c (print_reductions): Here.
1652 * src/reader.c (reader): Here.
1653 * src/tables.c (action_row): Here.
1654 * tests/input.at (%define enum variables): Here.
1655 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1656
d521ee19
JD
16572009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1658
1659 Pacify ./configure --enable-gcc-warnings.
1660 * tests/input.at (Symbols): Prototype yyerror and yylex.
1661
16622009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
1663
1664 Document how `%define "var" "value"' is not M4-friendly.
1665 * src/parse-gram.y (variable): In comments here.
1666
8f0d265e
JD
16672009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1668
1669 Clean up recent patches a little.
1670 Reported by Akim Demaille.
1671 * doc/bison.texinfo (Understanding): Fix typos.
1672 * src/print.c (print_reductions): Don't use negated variable.
1673
f4909773
JD
16742009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1675
1676 List accepted values for a %define enum variable with an invalid value.
1677 Suggested by Akim Demaille at
1678 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1679 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1680 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1681 * tests/input.at (%define lr.default_reductions invalid values): Merge
1682 into...
1683 (%define enum variables): ... here, and update output.
1684
110ef36a
JD
16852009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1686
1687 Rename "default rule" to "default reduction".
1688 This includes changing variable names in code, changing
1689 comments, and renaming %define lr.default_rules to %define
1690 lr.default_reductions.
1691 * NEWS (2.5): Update IELR documentation.
1692 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1693 documentation.
1694 * data/glr.c, data/lalr1.java: Sync copyright dates.
1695 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1696 and lr.type documentation. Make some other wording
1697 improvements.
1698 (Glossary): Adjust cross-references and Default Reduction
1699 definition.
1700 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1701 Remove a confusing comment pointed out by Akim Demaille.
1702 (initialize_LA): Adjust code.
1703 * src/print-xml.c (print_reductions): Adjust code.
1704 * src/print.c (print_reductions): Adjust code.
1705 * src/reader.c (reader): Adjust code.
1706 * src/tables.c (action_row): Adjust code.
1707 (token_actions): Adjust code.
1708 * src/tables.h: Adjust YYDEFACT documentation.
1709 * tests/input.at (%define lr.default_rules invalid values):
1710 Rename test group to...
1711 (%define lr.default_reductions invalid values): ... this, and
1712 update grammar file and expected output.
1713 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1714 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1715
746ee38c
AD
17162009-04-21 Akim Demaille <demaille@gostai.com>
1717
1718 tests: check the use of dashes and periods in symbols.
1719 * tests/input.at (Symbol): New test group.
1720
eb45ef3b
JD
17212009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1722
1723 Document %define lr.type and lr.default_rules.
1724 * NEWS (2.5): Add an entry.
1725 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1726 besides just LALR(1) and GLR(1).
1727 * doc/bison.texinfo (Introduction): Likewise.
1728 (Language and Grammar): Bison is no longer limited to LALR(1)
1729 restrictions.
1730 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1731 when trying to distinguish from GLR. Talk about LR(1) grammars
1732 rather than LALR(1) grammars.
1733 (Decl Summary): In %define api.push_pull entry, say it applies
1734 to deterministic parsers in C rather than LALR(1) parsers in C.
1735 Add lr.default_rules entry.
1736 Add lr.type entry.
1737 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1738 restrictions.
1739 (Generalized LR Parsing): Same changes as for the previous GLR
1740 section.
1741 (Memory Management): Say deterministic rather than LALR(1).
1742 (Understanding): Correct some bison output.
1743 Index discussion of "accepting state".
1744 Say deterministic rather than LALR(1).
1745 (Bison Options): In --yacc entry, say deterministic rather than
1746 LALR(1).
1747 In --report, --graph, and --xml entries, just don't mention
1748 LALR(1).
1749 (C++ Parsers): Say deterministic rather than LALR(1).
1750 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1751 (Glossary): Add Accepting State, Consistent State, Default Rule,
1752 and IELR(1) definitions.
1753 In Generalized LR (GLR) definition, make same changes as in
1754 previous GLR sections.
1755 In LALR(1) definition, say Bison uses LALR(1) by default rather
1756 than implying Bison is limited to LALR(1).
1757 (LocalWords): Add IELR.
1758
db34f798
JD
17592009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1760
1761 Finish implementing %define lr.type.
1762 Its value can be "LALR", "IELR", or "canonical LR".
1763 * lib/timevar.def (TV_IELR_PHASE1): New var.
1764 (TV_IELR_PHASE2): New var.
1765 (TV_IELR_PHASE3): New var.
1766 (TV_IELR_PHASE4): New var.
1767 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1768 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1769 Sbitset.h, ielr.h, and ielr.c.
1770 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1771 trace_types): Add trace_ielr.
1772 * src/lalr.h, src/lalr.c (ngotos): Export it.
1773 (F): Rename to...
1774 (goto_follows): ... this, update all uses, and export it.
1775 (set_goto_map): Export it.
1776 (map_goto): Export it.
1777 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1778 handled in ielr.
1779 (initialize_LA): Export it. Move lookback allocation to...
1780 (lalr): ... here because, for canonical LR, initialize_LA must
1781 be invoked but lookback and much of the rest of LALR isn't
1782 needed.
1783 * main.c (main): Instead of lalr, invoke ielr, which invokes
1784 lalr.
1785 * src/reader.c (reader): Default lr.type to "LALR".
1786 Default lr.default_rules to "accepting" if lr.type is "canonical
1787 LR". Leave the default as "all" otherwise.
1788 Check for a valid lr.type value.
1789 * src/state.h, src/state.c (struct state_list): Add state_list
1790 member.
1791 (state_new): Initialize state_list member to NULL.
1792 (state_new_isocore): New function, exported.
1793 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1794 exercises all values of lr.type.
1795 (GNU AWK Grammar): Rename test group to...
1796 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1797 AT_TEST_EXISTING_GRAMMAR.
1798 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1799 (GNU pic Grammar): Rename test group to...
1800 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1801 AT_TEST_EXISTING_GRAMMAR.
1802 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1803 all values of lr.type.
1804 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1805 (Lane Split): Likewise.
1806 (Complex Lane Split): Likewise.
1807 (Split During Added Lookahead Propagation): Likewise.
1808
7fe11bb5
JD
18092009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1810
1811 Add new files for IELR and canonical LR implementation.
1812 * src/AnnotationList.c: New.
1813 * src/AnnotationList.h: New.
1814 * src/InadequacyList.c: New.
1815 * src/InadequacyList.h: New.
1816 * src/Sbitset.c: New.
1817 * src/Sbitset.h: New.
1818 * src/ielr.c: New.
1819 * src/ielr.h: New.
1820
7254f6a8
JD
18212009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1822
1823 Implement %define lr.default_rules.
1824 Its value describes the states that are permitted to contain
1825 default rules: "all", "consistent", or "accepting".
1826 * src/reader.c (reader): Default lr.default_rules to "all".
1827 Check for a valid lr.default_rules value.
1828 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1829 is "accepting", then only mark the accepting state as
1830 consistent.
1831 (initialize_LA): Tell state_lookahead_tokens_count whether
1832 lr.default_rules is "accepting".
1833 * src/tables.c (action_row): If lr.default_rules is not "all",
1834 then disable default rules in inconsistent states.
1835 * src/print.c (print_reductions): Use this opportunity to
1836 perform some assertions about whether lr.default_rules was
1837 obeyed correctly.
1838 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1839 helps with checking the parser tables for a grammar.
1840 * tests/input.at (%define lr.default_rules invalid values): New
1841 test group.
1842 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1843 AT_TEST_TABLES_AND_PARSE.
1844 (`no %define lr.default_rules'): New test group generated by
1845 AT_TEST_LR_DEFAULT_RULES.
1846 (`%define lr.default_rules "all"'): Likewise.
1847 (`%define lr.default_rules "consistent"'): Likewise.
1848 (`%define lr.default_rules "accepting"'): Likewise.
1849
72e727f2
AD
18502009-04-20 Akim Demaille <demaille@gostai.com>
1851
1852 Formatting change.
1853
90462b8d
AD
18542009-04-20 Akim Demaille <demaille@gostai.com>
1855
1856 bison: factoring.
1857 * src/output.c (token_definitions_output): Use symbol_id_get
1858 instead of duplicating its logic.
1859 * TODO (YYERRCODE): Extend.
1860
4f646c37
AD
18612009-04-20 Akim Demaille <demaille@gostai.com>
1862
71b00ed8
AD
1863 variables: prefer error-verbose to error_verbose.
1864 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1865 instead of error_verbose.
1866 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1867 variable.
1868 * doc/bison.texinfo: Promote %define error-verbose instead of
1869 %error-verbose.
1870 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1871
18722009-04-15 Akim Demaille <demaille@gostai.com>
1873
4f646c37
AD
1874 variables: accept dashes.
1875 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1876 underscores.
1877 * src/scan-gram.l ({id}): Also accept dashes after the initial
1878 letter.
1879 ({directive}): Use {id}.
1880 * src/parse-gram.y: Comment and formatting changes.
1881 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1882 symbols.
1883 * src/complain.h, src/complain.c (yacc_at): New.
1884 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1885 symbol names.
1886 * src/output.c (token_definitions_output): Do not #define token
1887 names with dashes.
1888
184e3179
AD
18892009-04-20 Akim Demaille <demaille@gostai.com>
1890
1891 Consistently refer to Yacc, not YACC.
1892 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1893
41253c3a
JD
18942009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1895
1896 Pacify make maintainer-check-posix.
1897 * tests/input.at (%define, --define): Move bison command-line
1898 options before grammar file name.
1899
197b82ba
JD
19002009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1901
1902 Document semicolon warnings.
1903 * NEWS (2.5): Here.
1904
0c90a1f5
AD
19052009-04-14 Akim Demaille <demaille@gostai.com>
1906
1907 variables: use `parse.assert' instead of `assert'.
1908 * TODO (assert): Remove.
1909 * data/bison.m4 (b4_assert_if): Replace with...
1910 (b4_parse_assert_if): this.
1911 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1912 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1913
fa819509
AD
19142009-04-14 Akim Demaille <demaille@gostai.com>
1915
16dc0d90 1916 variables: use `parse.trace' instead of `debug'.
fa819509
AD
1917 * src/getargs.c (getargs): Map -t to %define trace.parse.
1918 * src/scan-gram.l (%debug): Map to %define trace.parse.
1919 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1920 names to `_' in macro names.
1921 (b4_debug_if): Replace with...
1922 (b4_parse_trace_if): this.
1923 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1924 * data/yacc.c: Adjust.
1925 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1926 Use @code to label the variable list.
1927 Document the variable parse.trace.
1928 (Tracing): Promote the parse.trace variable.
1929 * TODO: %printer is not documented.
1930
f7dae1ea
AD
19312009-04-14 Akim Demaille <demaille@gostai.com>
1932
1933 doc: minor fixes.
1934 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1935 (Table of Symbols): Remove duplicate entry for %debug.
1936
3535c071
EB
19372009-04-10 Eric Blake <ebb9@byu.net>
1938
1939 submodules: update to latest
1940 * submodules/autoconf: Use latest upstream Autoconf.
1941
cf48f675
EB
19422009-04-06 Eric Blake <ebb9@byu.net>
1943
1944 Work around autoconf 2.63b bug in testsuite.
1945 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1946 autoconf bug related to # in test.
1947
50cca368
JD
19482009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1949
1950 * NEWS (2.5): New section. Describe new -D/--define feature.
1951
3583d96b
AD
19522009-04-06 Akim Demaille <demaille@gostai.com>
1953
1954 Regen.
1955 * src/parse-gram.h, src/parse-gram.c: Regen.
1956
00f5d575
AD
19572009-04-06 Akim Demaille <demaille@gostai.com>
1958
1959 rename muscle_tab.* as muscle-tab.* for consistency.
1960 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1961 * src/muscle-tab.h, src/muscle-tab.c: these.
1962 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1963 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1964
76bf5102
AD
19652009-04-06 Akim Demaille <demaille@gostai.com>
1966
1967 Makefile: introduce $(BISON).
1968 * src/local.mk (BISON): New.
1969 (YACC): Use it.
1970
bc0f5737
AD
19712009-04-06 Akim Demaille <demaille@gostai.com>
1972
1973 parser: handle %locations as %define locations.
1974 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1975 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1976 to set "locations" to true.
1977 * src/output.c (prepare): Don't output "locations".
1978 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1979 * src/parse-gram.y: It's no longer a token.
1980 Don't handle it.
1981 * data/bison.m4 (b4_locations_if): Define it with
1982 b4_percent_define_if_define.
1983 * data/c.m4, data/glr.cc: Adjust.
1984
697c912f
AD
19852009-04-06 Akim Demaille <demaille@gostai.com>
1986
1987 Regen.
1988 * src/parse-gram.c: Regen.
1989
4920ae8b
AD
19902009-04-06 Akim Demaille <demaille@gostai.com>
1991
1992 muscle: factor the handling of obsolete of obsolete directives.
1993 Suggested by Joel E. Denny.
50cca368 1994
4920ae8b
AD
1995 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1996 New, extracted from...
1997 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1998 Remove it.
1999 (prologue_declaration: "%<flag>"): Use
2000 muscle_percent_define_ensure.
2001 (%error-verbose, %pure-parser): No longer tokens.
2002 * src/scan-gram.l (pure-parser): Return as a %<flag>.
2003
1d5b3c08
JD
20042009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2005
2006 Fix options documentation.
2007 * build-aux/cross-options.pl: As in --help output, write optional
2008 arguments as [=ARG] not =[ARG].
2009 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2010
62c99cf4
JD
20112009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2012
2013 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2014 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2015 requirements for a correct m4 are stricter.
2016 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
2017 * configure.ac: Update to use AC_PROG_GNU_M4.
2018 Reported by Eric Blake.
2019
1c93f35b
JD
20202009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2021
2022 Help with updating web manual.
2023 * HACKING: Incorporate instructions from gnulib/doc/README.
2024 * bootstrap.conf (gnulib_modules): Add gendocs.
2025
86cfae0a
AD
20262009-04-03 Akim Demaille <demaille@gostai.com>
2027
2028 Regen.
2029 * src/parse-gram.h, src/parse-gram.c: Regen.
2030
ba061fa6
AD
20312009-04-03 Akim Demaille <demaille@gostai.com>
2032
2033 Factor %FLAG at scan level.
2034 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2035 definitions and associated rules, replaced by....
2036 (PERCENT_FLAG): this new token type, and rule.
2037 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2038 Use it for %debug and %error-verbose.
2039
b19ebeb3
AD
20402009-04-03 Akim Demaille <demaille@gostai.com>
2041
2042 Regen.
2043 * src/parse-gram.h, src/parse-gram.c: Regen.
2044
001a16a9
AD
20452009-04-03 Akim Demaille <demaille@gostai.com>
2046
2047 Treat %debug as %define debug.
2048 * data/bison.m4 (b4_debug_if): New.
2049 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2050 * data/lalr1.java: Use it instead of b4_debug_flag.
2051 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2052 * src/output.c (prepare): Don't output it.
2053 * src/parse-gram.y: Treat %debug as %define debug.
2054
20552009-04-03 Akim Demaille <demaille@gostai.com>
2056
2057 Treat %error-verbose as %define error_verbose.
2058 This allows to pass -Derror_verbose on the command line. Better
2059 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2060 ERROR_VERBOSE being defined as false or true.
2061 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2062 on b4_percent_define_ifdef, for does not check the defined value,
2063 but only whether the symbol is defined, rely on
2064 b4_percent_define_flag_if, so that a value of "false" is processed
2065 as a false.
2066 If not defined, define the flag to "false".
2067 (b4_error_verbose_if): New.
2068 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2069 b4_error_verbose_flag.
2070 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2071 * src/output.c (prepare): Don't output it.
2072 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2073
92822aff
JD
20742009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2075
2076 Fix strange %define locations for default values.
2077 Reported by Akim Demaille at
2078 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2079 and discussed again starting at
2080 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2081 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2082 because location information is bogus.
2083 Use angle brackets to delimit fake file name because square brackets
2084 look like underexpanded m4. Choose a better fake file name.
2085 Use negative line numbers.
2086 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2087 * src/location.c (location_print): If line for a boundary is negative,
2088 only print that boundary's file name.
2089 * src/location.h: Document that.
2090 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2091 defaults): Update output.
2092
e021191b
JD
20932009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2094
2095 Pacify ./configure --enable-gcc-warnings.
2096 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
2097 in lib won't compile with it.
2098 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
2099
78f65418
AD
21002009-03-31 Akim Demaille <demaille@gostai.com>
2101
2102 bootstrap: --help to stdout.
2103 * bootstrap (usage): Don't send --help to stderr.
2104 Use a here doc instead of a long string.
2105
f7e241f4
AD
21062009-03-31 Akim Demaille <demaille@gostai.com>
2107
2108 bootstrap: README-hacking no longer exists
2109 * bootstrap (checkout_only_file): Set to HACKING.
2110
31d3e510
AD
21112009-03-26 Akim Demaille <demaille@gostai.com>
2112
2113 doc: merge HACKING and README-hacking.
2114 Two files is confusing.
2115 Reported by Alexandre Duret-Lutz.
1f9d8248 2116
31d3e510
AD
2117 * README-hacking: Merge into...
2118 * HACKING (Working from the repository): here.
2119
81535bfa
AD
21202009-03-26 Akim Demaille <demaille@gostai.com>
2121
2122 doc: update README-hacking.
2123 * README-hacking: We now use git and git submodules.
2124 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2125
56f772e9
AD
21262009-03-26 Akim Demaille <demaille@gostai.com>
2127
2128 lalr1.cc: avoid GCC 4.3 warnings.
2129 GCC 4.3 now warns about "a || b && c" and asks for explicit
2130 parentheses.
2131 Reported by Alexandre Duret-Lutz.
2132 * data/location.cc: Update copyright years.
2133 (Position::operator==): Use parens to make precedence explicit.
2134 Compare lines and columns first, as they are more likely to be
2135 different, and they are faster to compare.
2136
11c073b7
AD
21372009-03-26 Akim Demaille <demaille@gostai.com>
2138
2139 gnulib: update.
2140 * gnulib: Update to latest.
2141 * src/local.mk (AM_CFLAGS): Move to...
2142 * Makefile.am: here.
2143 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2144 AM_CFLAGS.
2145
91be6b28
AD
21462009-03-02 Akim Demaille <demaille@gostai.com>
2147
2148 Comment changes.
2149
cbf25ce7
AD
21502009-03-02 Akim Demaille <demaille@gostai.com>
2151
2152 Share b4_yytranslate_define.
2153 * data/lalr1.cc (b4_yytranslate_define): Move to...
2154 * data/c++.m4: here.
2155
882f02ed
AD
21562009-03-02 Akim Demaille <demaille@gostai.com>
2157
2158 Use locations in the variant example.
1f9d8248
AD
2159 Yes, this obfuscates the point of this example, variants only.
2160 But glr.cc cannot work (yet?) without locations. This change
2161 makes it easier to use this example with glr.cc.
11c073b7 2162
882f02ed
AD
2163 * examples/variant.yy (assert): %define it.
2164 (locations): Request them.
2165 (yylex): Bind the location to the stage.
2166
0623bacc
AD
21672009-03-02 Akim Demaille <demaille@gostai.com>
2168
2169 Dub make_TOKEN as a public type interface.
2170 * data/c++.m4 (b4_symbol_constructor_declare)
2171 (b4_symbol_constructor_define): New empty stubs.
2172 (b4_public_types_declare, b4_public_types_define): Use them.
2173 * data/lalr1.cc (b4_symbol_constructor_declare)
2174 (b4_symbol_constructor_declare_)
2175 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2176 Move to...
2177 * data/variant.hh: here.
2178 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2179 needed.
2180 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2181 b4_symbol_constructor_declare, as it is now done by
2182 b4_public_types_define and b4_public_types_declare.
2183
5f5a90df
AD
21842009-03-02 Akim Demaille <demaille@gostai.com>
2185
2186 Coding style changes.
2187 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2188 (b4_symbol_constructor_declarations)
2189 (b4_symbol_constructor_definition_)
2190 (b4_symbol_constructor_definitions)
2191 (b4_yytranslate_definition): Rename as...
2192 (b4_symbol_constructor_declare_)
2193 (b4_symbol_constructor_declare)
2194 (b4_symbol_constructor_define_)
2195 (b4_symbol_constructor_define)
2196 (b4_yytranslate_define): these.
2197 * data/variant.hh (b4_variant_definition): Rename as...
2198 (b4_variant_define): this.
2199
b47b6ff7
AD
22002009-03-02 Akim Demaille <demaille@gostai.com>
2201
2202 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2203 * data/bison.m4 (b4_percent_define_if_define): New.
2204 * data/c++.m4 (b4_variant_if): Move to...
2205 * data/bison.m4: Here, using b4_percent_define_if_define.
2206 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2207 * data/bison.m4: Here, using b4_percent_define_if_define.
2208
1d6b689b
AD
22092009-03-02 Akim Demaille <demaille@gostai.com>
2210
2211 Dub symbol_type_base as a public type.
2212 * data/c++.m4 (b4_public_types_declare): Now define
2213 symbol_type_base and symbol_type.
2214 (b4_public_types_define): New.
2215 In both cases, the definitions are taken verbatim from lalr1.cc.
2216 * data/lalr1.cc: Adjust.
2217
4f84717d
AD
22182009-03-02 Akim Demaille <demaille@gostai.com>
2219
2220 b4_public_types_declare.
2221 * data/c++.m4 (b4_public_types_declare): New.
2222 * data/glr.cc, data/lalr1.cc: Use it.
2223
b9e4eb5b
AD
22242009-03-02 Akim Demaille <demaille@gostai.com>
2225
2226 b4_semantic_type_declare.
2227 * data/c++.m4 (b4_semantic_type_declare): New.
2228 Factors and generalizes what was in glr.cc and lalr1.cc.
2229 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2230 variants.
2231 * data/lalr1.cc, data/glr.cc: Use it.
2232
6a6e7f0c
AD
22332009-02-26 Akim Demaille <demaille@gostai.com>
2234
2235 Upgrade gnulib.
2236 * gnulib: Upgrade from master.
2237 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2238 Regen.
2239
e9e61b00
AD
22402009-02-25 Akim Demaille <demaille@gostai.com>
2241
2242 Remove useless arguments.
2243 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2244 relevant.
2245
3eead995
AD
22462009-02-25 Akim Demaille <demaille@gostai.com>
2247
2248 Comment changes.
2249 * data/lalr1.cc: here.
2250
87f28efe
AD
22512009-02-25 Akim Demaille <demaille@gostai.com>
2252
2253 Fix glr.cc's debug level handling.
2254 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2255 glr.c which is used.
2256 (debug_level, set_debug_level): Adjust.
2257
9be2a009
AD
22582009-02-25 Akim Demaille <demaille@gostai.com>
2259
2260 Copyright years.
2261 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2262
07a6e87d
AD
22632009-02-25 Akim Demaille <demaille@gostai.com>
2264
2265 Style changes.
2266 * etc/bench.pl.in (generate_grammar_list): Consitently use
2267 location_type, not yy::location.
2268
33c78bd2
AD
22692009-02-25 Akim Demaille <demaille@gostai.com>
2270
2271 Comment change.
2272 * data/lalr1.cc: here.
2273
49572920
AD
22742009-02-19 Akim Demaille <demaille@gostai.com>
2275
2276 Make yyparser::error public.
2277 * data/lalr1.cc: here.
2278 There is no good reason to keep it private (and it is convenient
2279 to use it from the scanner for instance). It is already public in
2280 glr.cc.
2281
88654b47
AD
22822009-02-19 Akim Demaille <demaille@gostai.com>
2283
2284 Comment changes.
2285 * data/glr.cc: here.
2286
4524c55b
AD
22872009-02-19 Akim Demaille <demaille@gostai.com>
2288
2289 Remove trailing blanks.
6a6e7f0c
AD
2290 The epilogue has its own ending \n, no need to add another.
2291
4524c55b
AD
2292 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2293 epilogue.
2294 * data/glr.cc: dnl when extending the epilogue.
2295 Remove stray "private:".
2296
6ceccee8
AD
22972009-02-19 Akim Demaille <demaille@gostai.com>
2298
2299 Use b4_c_modern.
2300 * data/c.m4 (b4_c_function_decl): Here.
2301
9c6a8966
AD
23022009-02-19 Akim Demaille <demaille@gostai.com>
2303
2304 Comment changes.
2305 * data/lalr1.cc: here.
2306
507aa0e2
AD
23072009-02-19 Akim Demaille <demaille@gostai.com>
2308
2309 Extract variant.hh
2310 * data/variant.hh: New, extracted from...
2311 * data/lalr1.cc: here.
2312 Adjust.
2313 * data/local.mk: Adjust.
2314
51bacae6
AD
23152009-02-19 Akim Demaille <demaille@gostai.com>
2316
2317 Extract stack.hh from lalr1.cc.
2318 * data/stack.hh: New.
2319 * data/lalr1.cc: Extract from here.
2320 * data/local.mk: Adjust.
2321
06c3084f
JD
23222009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2323
2324 Add reminder about uploading public key to keys.gnupg.net.
2325 * HACKING (Release Procedure): Here.
2326
0ea583d2
AD
23272009-01-28 Akim Demaille <demaille@gostai.com>
2328
2329 * NEWS: Update information about 2.4.1 and 2.4.2.
2330
402b123d
AD
23312008-11-04 Akim Demaille <demaille@gostai.com>
2332
2333 Reformat NEWS.
2334 * NEWS: Use more outline-mode markup.
2335 Suggested by Jim Meyering.
2336
74553c98
AD
23372009-01-08 Akim Demaille <demaille@gostai.com>
2338
2339 Fix grep portability issues.
2340 Grep on Solaris does not support -q.
2341 Reported by Summum Bonum.
2342
2343 * NEWS: Add a stub for 2.4.2.
2344 * THANKS: Add Summum Bonum.
2345 * tests/atlocal.in (EGREP): New.
2346 (CC, CXX, XSLTPROC): Make it possible to override them via
2347 envvars.
2348 * tests/java.at: Use $EGREP instead of egrep.
2349 Use AT_CHECK's ignore instead of grep's -q.
2350
84eedf86
AD
23512008-12-11 Akim Demaille <demaille@gostai.com>
2352
2353 Pass the token type to yysyntax_error.
2354 * data/yacc.c (yysyntax_error): Take the transated token instead
2355 of the raw number.
2356 Adjust callers.
2357 * TODO: Update.
2358
5860cc8c
AD
23592008-12-11 Akim Demaille <demaille@gostai.com>
2360
2361 Formatting changes.
2362 * data/glr.c: Formatting changes.
2363
2b008529
AD
23642008-12-11 Akim Demaille <demaille@gostai.com>
2365
2366 Propagate i18n changes into glr.c.
2367 * TODO: Update.
2368 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2369 building the error message format dynamically.
2370 * data/lalr1.java: Formatting changes.
2371
2cd1af95
AD
23722008-12-11 Akim Demaille <demaille@gostai.com>
2373
2374 Use testsuite -C.
2375 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2376 Solves problems when top_srcdir is an absolute path.
2377 Suggested by Eric Blake.
2378 * configure.ac: Require Autoconf 2.62.
2379
eeb29422
AD
23802008-12-11 Akim Demaille <demaille@gostai.com>
2381
2382 Simplify the i18n of the error messages.
2383 * data/lalr1.cc: Comment changes.
2384 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2385 lalr1.cc instead of building dynamically the format string.
2386
6617622c
AD
23872008-12-08 Akim Demaille <demaille@gostai.com>
2388
2389 Fix portability issue in the test suite.
2390 * tests/local.at (AT_MATCHES_CHECK): New.
2391 Based on Perl instead of Sed. Sed has too many portability
2392 pitfalls, not ever Sed is GNU Sed.
2393 * tests/actions.at (Fix user actions without a trailing semicolon):
2394 Use it.
2395
2ca1136c
AD
23962008-12-08 Akim Demaille <demaille@gostai.com>
2397
2398 Update data/README.
2399 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2400
6c63b895
AD
24012008-12-08 Akim Demaille <demaille@gostai.com>
2402
2403 Install autoconf as a submodule to get m4sugar.
2404 * .gitmodules: Add submodules/autoconf.
2405 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2406 submodules/autoconf.
2407
417e31d2
AD
24082008-12-08 Akim Demaille <demaille@gostai.com>
2409
2410 Test token.prefix in all the skeletons.
2411 * data/java.m4 (b4_token_enum): Use the token.prefix.
2412 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2413 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2414 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2415 * tests/java.at: Comment changes.
2416 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2417 (Java parser class and package names): Add token.prefix check.
2418
97abf544
AD
24192008-12-08 Akim Demaille <demaille@gostai.com>
2420
2421 Fix regeneration of atconfig.
2422 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2423 remove it: now that there is no tests/Makefile.am, the top-level
2424 Makefile properly updates atconfig when needed.
2425
e8cd1ad6
DJ
24262008-12-07 Di-an Jan <dianj@freeshell.org>
2427
2428 Implement the FIXME that ends an user action with a semicolon
2429 if it seems necessary.
2430 * src/scan-code.l (flex rules section): Flag cpp directive from
2431 any `#' to the first unescaped end-of-line. Semicolon is not
2432 needed after `;', `{', '}', or cpp directives and is needed after
2433 any other token (whitespaces and comments have no effect).
2434 * tests/actions.at (Fix user actions without a trailing semicolon):
2435 New test.
2436 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2437 to make user actions complete statements.
2438 Adjust column numbers in error messages.
2439 * tests/regression.at (Fix user actions without a trailing semicolon):
2440 Remove. Covered by new test.
2441
ce9447fc
AD
24422008-12-07 Akim Demaille <demaille@gostai.com>
2443
2444 Update gnulib.
2445 * gnulib: Update from master.
2446
d333175f
EB
24472008-12-05 Eric Blake <ebb9@byu.net>
2448
2449 Avoid compiler warning.
2450 * src/output.c (muscle_insert_item_number_table): Delete unused
2451 function.
2452
215b40ac
EB
24532008-12-02 Eric Blake <ebb9@byu.net>
2454
2455 Build testsuite with newer autoconf.
2456 * tests/output.at (m4_expand): Don't override in newer autoconf,
2457 where the underlying implementation changed.
2458 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2459 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2460 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2461 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2462 since some of them contain unbalanced ')'.
2463
3bb21113
AD
24642008-12-01 Akim Demaille <demaille@gostai.com>
2465
2466 Use b4_symbol for printers and destructors everywhere.
2467 * data/bison.m4 (b4_symbol_action_location): New.
2468 * data/c.m4 (b4_symbol_actions): Remove.
2469 Adjust all callers to use by b4_symbol_foreach and the corresponding
2470 b4_symbol_printer/destructor macro.
2471 * data/glr.cc: Adjust.
2472 * data/lalr1.java: Adjust the %destructor sanity check.
2473 * src/output.c (symbol_code_props_output): Remove, we no longer
2474 need the b4_symbol_printers/destructors tables.
2475
fb7c5b1f
AD
24762008-12-01 Akim Demaille <demaille@gostai.com>
2477
2478 Use b4_symbol_case_.
2479 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2480 b4_symbol_case_.
2481
cf6fb222
AD
24822008-12-01 Akim Demaille <demaille@gostai.com>
2483
2484 Move b4_symbol based macro to bison.m4.
2485 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2486 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2487 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2488 (b4_type_foreach): Move to...
2489 * data/bison.m4: Here.
2490 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2491 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 2492
e3c52a63
AD
24932008-12-01 Akim Demaille <demaille@gostai.com>
2494
2495 b4_symbol/type_foreach.
2496 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2497 Use them.
2498
2bde9113
AD
24992008-12-01 Akim Demaille <demaille@gostai.com>
2500
2501 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
2502 Instead of defining complex list of tuples to define various
2503 properties of the symbols, we now prefer to define symbols as
2504 "structs" in m4: using the symbol key (its number), and the
2505 property name, b4_symbol gives it value. Use this to handle
2506 destructors and printers.
2507
2bde9113
AD
2508 * src/output.c (CODE_PROP): New.
2509 (prepare_symbol_definitions): Use it to define the printer and
2510 destructor related attributes of the symbols.
2511 * data/lalr1.cc (b4_symbol_actions): Rename as...
2512 (b4_symbol_action): this.
2513 Use b4_symbol instead of 6 arguments.
2514 (b4_symbol_printer, b4_symbol_destructor): New.
2515 Use them instead of b4_symbol_actions.
2516
44494bf6
AD
25172008-12-01 Akim Demaille <demaille@gostai.com>
2518
2519 Avoid capturing variables too easily.
2520 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2521 v__ and p__ instead of v and p.
2522
fad814bd
AD
25232008-12-01 Akim Demaille <demaille@gostai.com>
2524
2525 Remove spurious empty line before syncline.
2526 * data/bison.m4 (b4_syncline): Don't output an empty line before
2527 the output.
2528
feda5527
AD
25292008-11-26 Akim Demaille <demaille@gostai.com>
2530
2531 Convert lib/Makefile.am into lib/local.mk.
2532 The real problem is rather gnulib.mk, which itself is extracted
2533 from a Makefile.am that gnulib expects to the "recursive". The
2534 tool prefix-gnulib-mk converts such a gnulib.mk to be
2535 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2536
2537 * etc/prefix-gnulib-mk: New.
2538 * bootstrap (slurp): Use it to convert further gnulib.mk.
2539 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2540 are deeper.
2541 * lib/Makefile.am: Rename as...
2542 * lib/local.mk: this.
2543 Adjust to be prefixed.
2544 * Makefile.am, configure.ac: Adjust.
2545 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2546
56ddee7f
AD
25472008-11-26 Akim Demaille <demaille@gostai.com>
2548
2549 s/_FLAGS/FLAGS/.
2550 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2551 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2552 Reported by Eric Blake.
2553
728e89a0
AD
25542008-11-26 Akim Demaille <demaille@gostai.com>
2555
2556 Use b4_parser_tables_define in glr.cc.
2557 * data/glr.c: Use b4_parser_tables_define instead of defining the
2558 (deterministic integral) tables by hand.
2559
2c1bf9bd
AD
25602008-11-26 Akim Demaille <demaille@gostai.com>
2561
2562 Use b4_parser_tables_define in Java.
2563 * data/java.m4 (b4_typed_parser_table): Rename as...
2564 (b4_typed_parser_table_define): this, for consistency.
2565 Accept a comment as $4.
2566 Move $2 into yy*_.
2567 (b4_integral_parser_table): Rename as...
2568 (b4_integral_parser_table_define): this.
2569 * data/lalr1.java: Adjust all uses.
2570 Use b4_parser_tables_define instead of generation by hand.
2571
ba206cf4
AD
25722008-11-26 Akim Demaille <demaille@gostai.com>
2573
2574 Prepare the convergence bw C style and Java table generation.
2575 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2576 (b4_tables_define): Rename as...
2577 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2578 (b4_parser_tables_define): these.
2579 * data/c.m4 (b4_table_define): Rename as...
2580 (b4_integral_parser_table_define): this.
2581 * data/lalr1.cc: Adjust.
2582 (b4_table_define, b4_table_declare): Rename as...
2583 (b4_integral_parser_table_define)
2584 (b4_integral_parser_table_declare): these.
2585 (yyrline_): Move the comment where it is actually used.
2586 * data/yacc.c: Adjust.
2587 (yyrline): Use b4_integral_parser_table_define.
2588
d12f8e49
AD
25892008-11-26 Akim Demaille <demaille@gostai.com>
2590
2591 Regen.
2592 * src/parse-gram.h, src/parse-gram.c: Regen.
2593
0991e29b
AD
25942008-11-26 Akim Demaille <demaille@gostai.com>
2595
2596 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2597 * data/lalr1.cc (b4_tables_map): Move to...
2598 * data/bison.m4: here.
2599 Update the comment for yytable during the flight.
2600 (b4_tables_declare, b4_tables_define): New.
2601 * data/lalr1.cc: Use them.
2602 * data/c.m4 (b4_table_define): New.
2603 * data/yacc.c: Use b4_tables_define instead of output the tables
2604 by hand.
2605 * tests/regression.at (Web2c Actions): Adjust the expected output,
2606 the order of the tables changed.
2607
3d3bc1fe
AD
26082008-11-26 Akim Demaille <demaille@gostai.com>
2609
2610 Get rid of (yy)rhs and (yy)prhs.
2611 These tables are no longer needed in the parsers, and they don't seem to
2612 be useful. They are not documented either.
feda5527 2613
3d3bc1fe
AD
2614 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2615 Adjust the computation of (yy)r2.
2616
08c81469
AD
26172008-11-26 Akim Demaille <demaille@gostai.com>
2618
2619 Rule length is unsigned.
2620 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2621
932b0c96
AD
26222008-11-26 Akim Demaille <demaille@gostai.com>
2623
2624 Get rid of lalr1-split.cc.
2625 It was no longer maintainer.
feda5527 2626
932b0c96
AD
2627 * data/lalr1-split.cc: Remove.
2628 * etc/bench.pl.in (bench_fusion_parser): Remove.
2629 Adjust.
2630
8452c667
AD
26312008-11-26 Akim Demaille <demaille@gostai.com>
2632
2633 Use yy* consistently.
2634 * data/glr.c: Now that yyrhs no longer exists as a global
2635 variable, rename local "rhs" variables into "yyrhs" for
2636 consistency.
2637
783aa653
AD
26382008-11-25 Akim Demaille <demaille@gostai.com>
2639
2640 Get rid of yyrhs and yyprhs in glr.c.
2641 * data/glr.c (yyrhs, yyprhs): Remove.
2642 Instead, use the state stack and yystos.
2643
6130b755
AD
26442008-11-25 Akim Demaille <demaille@gostai.com>
2645
2646 Flag glr tests.
2647 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2648 as an Autotest keyword.
2649
95a7b1c9
AD
26502008-11-25 Akim Demaille <demaille@gostai.com>
2651
2652 Prefer TESTSUITE_FLAGS.
2653 TESTSUITEFLAGS is barely readable.
feda5527 2654
95a7b1c9
AD
2655 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2656 for backward compatibility.
2657 Use the former instead of the latter.
2658
b4f18401
AD
26592008-11-25 Akim Demaille <demaille@gostai.com>
2660
2661 Get rid of yyrhs and yyprhs in larl1.java.
2662 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2663 (yy_reduce_print): Rather, use yystos_ and the state stack.
2664
c265fd6b
AD
26652008-11-25 Akim Demaille <demaille@gostai.com>
2666
2667 Formatting changes.
2668
68dbdee8
AD
26692008-11-25 Akim Demaille <demaille@gostai.com>
2670
2671 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
2672 They were used to get the symbol types, given a rule number, when
2673 displaying the top of the stack before a reduction. But the
2674 symbol type is available from the state stack. This has two be
2675 benefits: two tables less in the parser (making it smaller), and a
2676 more consistent use of the three stacks which will help to fuse
2677 them.
feda5527 2678
68dbdee8
AD
2679 * data/yacc.c (yyprhs, yyrhs): Remove.
2680 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2681 (yy_reduce_print): Take yyssp as argument.
2682 Use it, together with yystos, to get the symbol type.
2683 * tests/regression.at (Web2c Report): Remove these tables from the
2684 expected output.
2685
6ab1adbe
AD
26862008-11-25 Akim Demaille <demaille@gostai.com>
2687
2688 b4_tables_map.
2689 The point is to factor the generation of the tables across skeletons.
2690 This is language dependant.
feda5527 2691
6ab1adbe
AD
2692 * data/c.m4 (b4_comment_): New.
2693 Should be usable to define how to generate tables independently of
2694 the language.
2695 (b4_c_comment): New.
2696 (b4_comment): Bounce to b4_c_comment.
2697 Now support $2 = [PREFIX] for indentation.
2698 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2699 there is no comment.
2700 Indent it properly when there is one.
2701 Output the ending semicolon.
2702 (b4_table_define): Space changes.
2703 Output the ending semicolon.
2704 (b4_tables_map): New.
2705 Use it twice instead of declaring and defining the (integral)
2706 tables by hand.
2707
0fddb3d5
AD
27082008-11-25 Akim Demaille <demaille@gostai.com>
2709
2710 b4_table_declare.
2711 * data/lalr1.cc (b4_table_declare): New.
2712 Use it to declare the tables defined with b4_table_define.
2713 (b4_table_define): Declare a third arg to match b4_table_declare
2714 signature.
2715 Move all the comments around invocations of b4_table_define into
2716 the invocations itselves.
2717 Move things around to have the order for declarations and
2718 definitions.
2719
c4ddc0fb
AD
27202008-11-25 Akim Demaille <demaille@gostai.com>
2721
2722 Formatting changes.
2723 * data/lalr1.java: here.
2724
e0c653e7
AD
27252008-11-25 Akim Demaille <demaille@gostai.com>
2726
2727 b4_args is more general than only C++.
2728 * data/lalr1.cc (b4_args, _b4_args): Move to...
2729 * data/bison.m4: here.
2730
4182a0a1
DJ
27312008-11-21 Di-an Jan <dianj@freeshell.org>
2732
2733 Implement no-XXX arguments for --warnings, --report, --trace.
2734 * src/getargs.c (flags_argmatch): Handles no-XXX.
2735 Fix typo in doxygen comment.
2736
01466c3e
AD
27372008-11-21 Akim Demaille <demaille@gostai.com>
2738
2739 Display the changes in cross-options.texi.
2740 * build-aux/cross-options.pl ($sep): New, to separate items.
2741 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2742 changes.
2743
a7c09cba
DJ
27442008-11-20 Di-an Jan <dianj@freeshell.org>
2745
2746 Improves options in the manual.
2747 * doc/bison.texinfo (-g, -x): Add space before argument.
2748 (Option Cross Key): Implement FIXME: listing directives also.
2749 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2750 (Short Option): Special case -d. Put arguments inside @option.
feda5527 2751 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
2752 src/scan-gram.l (actual name passed as the first argument)
2753 with special case for %define.
2754 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2755 to build-aux/cross-options.pl.
2756 * src/getargs.c (usage): Document limitations of cross-options.pl.
2757 * src/scan-gram.l: Likewise.
2758
6c88b51e
JD
27592008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2760
2761 Fix unexpanded macros in GLR defines file.
2762 Reported by Csaba Raduly at
2763 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2764 * THANKS (Csaba Raduly): Add.
2765 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2766 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2767 lexer in a separate module that includes the defines file.
2768 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2769 source.
2770 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2771 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2772 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2773 (AT_DATA_SOURCE_PROLOGUE): New.
2774 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2775 (AT_DATA_SOURCE): New.
2776 (AT_FULL_COMPILE): Extend to support an additional source file.
2777
1e034807
AD
27782008-11-18 Akim Demaille <demaille@gostai.com>
2779
2780 More TODO.
2781 * TODO: More short term issues.
2782
e3dda35c
AD
27832008-11-18 Akim Demaille <demaille@gostai.com>
2784
2785 Regen.
2786 * src/parse-gram.h, src/parse-gram.c: Regen.
2787
bd187d7b
AD
27882008-11-18 Akim Demaille <demaille@gostai.com>
2789
2790 Use b4_subtract where possible.
2791 * data/lalr1.cc (b4_subtract): Move to...
2792 * data/bison.m4: here.
2793 * data/glr.c (b4_rhs_data): Use it.
2794 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2795
6085ab0d
AD
27962008-11-18 Akim Demaille <demaille@gostai.com>
2797
2798 Remove incorrect mode specification.
2799 * data/glr.cc: Don't pretend it's C code.
2800
9ce405ce
JD
28012008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2802
2803 Simplify last patch slightly.
2804 * src/getargs.c (getargs): Here.
2805
a8beef7e
JD
28062008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2807
2808 Fix last warning from --enable-gcc-warnings.
2809 * src/getargs.c (getargs): Don't assign const address to non-const
2810 pointer.
2811
d50eea6d
JD
28122008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2813
2814 Don't let maintainer-*-check targets force a version update.
2815 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2816 handled.
2817
f5f419de
DJ
28182008-11-17 Di-an Jan <dianj@freeshell.org>
2819
2820 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2821 Align menus. Adjust word wrapping. Use node names for menu names.
2822 (Examples): Don't abbreviate node names.
2823 (LocalWords): Remove abbreviations.
2824 (Copying): Make description a sentence.
d50eea6d 2825 (Java Action Features): Remove period to match the rest of menu.
f5f419de 2826
d73e55e0
DJ
28272008-11-17 Di-an Jan <dianj@freeshell.org>
2828
2829 Handles several --enable-gcc-warnings.
2830 * src/getargs.c (command_line_location): Set parameters to void.
2831 * src/output.c (symbol_type_name_cmp): Make static.
2832 (symbols_by_type_name): Set parameters to void.
2833 (symbol_definitions_output): Remove unused parameter. Rename as...
2834 (prepare_symbol_definitions): this.
2835 (muscles_output): Move symbol_definitions_output to...
2836 (output): here as prepare_symbol_definitions.
2837 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 2838 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 2839
68c989de
DJ
28402008-11-17 Di-an Jan <dianj@freeshell.org>
2841
2842 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2843 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2844
23ce6f4c
AD
28452008-11-16 Akim Demaille <demaille@gostai.com>
2846
2847 Add missing $(EXEEXT).
2848 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2849 "src/bison$(EXEEXT)".
2850 Reported by Di-an Jan.
2851
dd704c35
AD
28522008-11-15 Akim Demaille <demaille@gostai.com>
2853
2854 * TODO: Update.
2855
dab244d5
AD
28562008-11-15 Akim Demaille <demaille@gostai.com>
2857
2858 Formatting changes.
2859 * tests/input.at: here.
2860
4b4da9fb
AD
28612008-11-15 Akim Demaille <demaille@gostai.com>
2862
2863 Remove duplicate header inclusion.
2864 * src/LR0.c: here.
2865
4ea3f53d
AD
28662008-11-15 Akim Demaille <demaille@gostai.com>
2867
2868 * src/parse-gram.h, src/parse-gram.c: Regen.
2869
cb823b6f
AD
28702008-11-15 Akim Demaille <demaille@gostai.com>
2871
2872 Support parametric types.
b06df3c2
AD
2873
2874 There are two issues to handle: first scanning nested angle
2875 bracket pairs to support types such as std::pair< std::string,
2876 std::list<std::string> > >.
2877
2878 Another issue is to address idiosyncracies of C++: do not glue two
2879 closing angle brackets together (otherwise it's operator>>), and
2880 avoid sticking blindly a TYPE to the opening <, as it can result
2881 in '<:' which is a digraph for '['.
2882
cb823b6f
AD
2883 * src/scan-gram.l (brace_level): Rename as...
2884 (nesting): this.
2885 (SC_TAG): New.
2886 Implement support for complex tags.
b06df3c2 2887 (tag): Accept
cb823b6f
AD
2888 , but not <.
2889 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2890 (b4_symbol_variant): Leave space around types as parameters.
2891 * examples/variant.yy: Use nested template types and leading ::.
2892 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2893 Rename as...
2894 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2895 * tests/c++.at: Test parametric types.
2896
7b6e6753
AD
28972008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2898
2899 Test token.prefix.
2900 This is not sufficient, but we test at least that the make_SYMBOL
2901 interface is not affected by token.prefix. A more general test
2902 will be implemented when the support of token.prefix is generalized
2903 to more skeletons.
b06df3c2 2904
7b6e6753
AD
2905 * tests/c++.at: One more variant test, using token.prefix.
2906
dddec537
AD
29072008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2908
2909 Test the make_TOKEN interface.
2910 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2911 Factor the common code in yylex.
2912 Use it to test "%define lex_symbol".
2913
7d3e21ba
AD
29142008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2915
2916 Formatting change.
2917
4fc55348
AD
29182008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2919
2920 Simplify code for variants bench marks.
2921 * etc/bench.pl.in (&generate_grammar_list): Define and use
2922 location_type.
2923 Factor the common code in yylex.
2924
070e6509
AD
29252008-11-15 Akim Demaille <demaille@gostai.com>
2926
2927 Better error message.
2928 * bootstrap (find_tool): Fix the error message.
2929
0078681b
AD
29302008-11-15 Akim Demaille <demaille@gostai.com>
2931
2932 Update variant.yy to newest interface.
2933 * examples/variant.yy: Define lex_symbol.
2934 Adjust.
2935
ff084799
AD
29362008-11-15 Akim Demaille <demaille@gostai.com>
2937
2938 Don't use locations in variant.yy.
2939 * examples/variant.yy: Adjust to not using locations.
2940
b0d79ec6
AD
29412008-11-15 Akim Demaille <demaille@gostai.com>
2942
2943 Comment changes.
2944 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2945 comments for the license.
2946
d4977ce3
AD
29472008-11-15 Akim Demaille <demaille@gostai.com>
2948
2949 Remove tests/Makefile.am.
2950 * tests/Makefile.am: Rename as...
2951 * tests/local.mk: this.
2952 * Makefile.am, configure.ac: Adjust.
2953 * Makefile.am (DISTCLEANFILES): Define.
2954 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2955 Remove, we no longer need to bounce to the real targets.
2956
87f1149a
AD
29572008-11-15 Akim Demaille <demaille@gostai.com>
2958
2959 Comment changes.
2960
36415906
AD
29612008-11-15 Akim Demaille <demaille@gostai.com>
2962
2963 djgpp/local.mk.
2964 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2965 * djgpp/local.mk: this new file.
2966
e2c2f696
AD
29672008-11-15 Akim Demaille <demaille@gostai.com>
2968
2969 Remove doc/Makefile.am.
2970 * doc/Makefile.am: Rename as...
2971 * doc/local.mk: this.
2972 Adjust paths
2973 * Makefile.am, configure.ac: Adjust.
2974 * Makefile.am (MOSTLYCLEANFILES): New.
2975 * src/local.mk: Adjust.
2976
2ead32e6
AD
29772008-11-15 Akim Demaille <demaille@gostai.com>
2978
2979 Move sc_tight_scope into maint.mk.
b06df3c2
AD
2980 It does not work, and I don't know how it was supposed to work: it
2981 seems to be looking for sources in the build tree. I just moved
2982 it at a better place, fixing it is still required.
2983
2ead32e6
AD
2984 * src/local.mk (echo): Remove.
2985 (sc_tight_scope): Move to...
2986 * maint.mk: here.
2987
2df9ec37
AD
29882008-11-15 Akim Demaille <demaille@gostai.com>
2989
2990 Regen.
2991 * src/parse-gram.h, src/parse-gram.h: Regen.
2992
0305d25e
AD
29932008-11-15 Akim Demaille <demaille@gostai.com>
2994
2995 Remove src/Makefile.am.
2996 * src/Makefile.am: Rename as...
2997 * src/local.mk: this.
2998 Prefix all the paths with src/.
2999 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
3000 (AM_CPPFLAGS): Find find in builddir/src.
3001 (YACC): Move the flags into...
3002 (AM_YFLAGS): here.
3003 * maint.mk (sc_tight_scope): Disable.
3004 It used to bounce to the version in src/Makefile.am which is now
3005 part of this very Makefile.
3006 * Makefile.am, configure.ac: Adjust.
3007 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
3008 include "..." to find files "here": we are no longer in src/, so
3009 qualify the includes with src/.
3010 * doc/Makefile.am (PREPATH): No longer include the top_builddir
3011 prefix.
3012 (.x.1): Adjust to be able to create src/foo from the top level
3013 Makefile, instead of going bounce to src/Makefile the creation of
3014 foo.
3015
5277c0a3
AD
30162008-11-15 Akim Demaille <demaille@gostai.com>
3017
3018 Remove useless variable.
3019 * doc/Makefile.am (srcsrcdir): Remove.
3020
6a5aa0cd
AD
30212008-11-15 Akim Demaille <demaille@gostai.com>
3022
3023 Remove data/Makefile.am.
3024 * data/Makefile.am: Rename as...
3025 * data/local.mk: this.
3026 Adjust paths.
3027 * Makefile.am, configure.ac: Adjust.
3028
7cb794dc
AD
30292008-11-15 Akim Demaille <demaille@gostai.com>
3030
3031 Remove etc/Makefile.am.
3032 * etc/Makefile.am: Rename as...
3033 * etc/local.mk: this.
3034 Adjust.
3035 * Makefile.am, configure.ac: Adjust.
3036
cd409e3b
AD
30372008-11-15 Akim Demaille <demaille@gostai.com>
3038
3039 Remove examples/local.mk.
3040 examples/calc++/Makefile.am might be interesting to keep as is, since
3041 it is an example in itself.
2df9ec37 3042
cd409e3b
AD
3043 * examples/Makefile.am: Rename as...
3044 * examples/local.mk: this.
3045 Adjust.
3046 * Makefile.am, configure.ac: Adjust.
3047
9a1e4214
AD
30482008-11-15 Akim Demaille <demaille@gostai.com>
3049
3050 Remove build-aux/Makefile.am.
3051 Recursive Makefiles are really way too slow, let's get rid of some of
3052 them.
2df9ec37 3053
9a1e4214
AD
3054 * build-aux/Makefile.am: Rename as...
3055 * build-aux/local.mk: this.
3056 Adjust paths.
3057 * Makefile.am, configure.ac: Adjust.
3058
0634493c
AD
30592008-11-15 Akim Demaille <demaille@gostai.com>
3060
3061 Provide convenience constructors for locations and positions.
3062 * data/location.cc (position::position): Accept file, line and
3063 column as arguments with default values.
3064 Always qualify initial line and column literals as unsigned.
3065 (location::location): Provide convenience constructors.
3066
fe1b448a
AD
30672008-11-15 Akim Demaille <demaille@gostai.com>
3068
b06df3c2
AD
3069 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3070 token type.
fe1b448a
AD
3071 Using template buys us nothing, and makes it uselessly complex to
3072 construct a symbol. Besides, it could not be generalized to other
3073 languages, while make_FOO would work in C/Java etc.
2df9ec37 3074
fe1b448a
AD
3075 * data/lalr1.cc (b4_symbol_): New.
3076 (b4_symbol): Use it.
3077 (b4_symbol_constructor_declaration_)
3078 (b4_symbol_constructor_definition_): Instead of generating
3079 specializations of an overloaded template function, just generate
3080 several functions whose names are forged from the token names
3081 without the token.prefix.
3082 (b4_symbol_constructor_declarations): Generate them for all the
3083 symbols, not just by class of symbol type, now that instead of
3084 specializing a function template by the token, we generate a
3085 function named after the token.
3086 (b4_symbol_constructor_specialization_)
3087 (b4_symbol_constructor_specializations): Remove.
3088 * etc/bench.pl.in: Adjust to this new API.
3089
5679f311
AD
30902008-11-13 Akim Demaille <demaille@gostai.com>
3091
3092 %define token.prefix.
b06df3c2
AD
3093 Provide a means to add a prefix to the name of the tokens as
3094 output in the generated files. Because of name clashes, it is
3095 good to have such a prefix such as TOK_ that protects from names
3096 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 3097
5679f311
AD
3098 * data/bison.m4 (token.prefix): Empty by default.
3099 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
3100 * data/lalr1.cc (b4_symbol): Ditto.
3101
3204049e
AD
31022008-11-13 Akim Demaille <demaille@gostai.com>
3103
3104 Compute at M4 time some of the subtractions.
90290ce5 3105 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
3106 (b4_rhs_data): Use it.
3107
202598d3
AD
31082008-11-13 Akim Demaille <demaille@gostai.com>
3109
3110 symbol::token.
b06df3c2 3111 This allows the user to get the type of a token returned by yylex.
2df9ec37 3112
202598d3
AD
3113 * data/lalr1.cc (symbol::token): New.
3114 (yytoknum_): Define when %define lex_symbol, independently of
3115 %debug.
3116 (yytoken_number_): Move into...
3117 (symbol::token): here, since that's the only use.
3118 The other one is YYPRINT which was not officially supported
3119 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3120 array under a different name (yytoknum).
3121
fc2476c7
AD
31222008-11-13 Akim Demaille <demaille@gostai.com>
3123
3124 YYERRCODE.
3125 * TODO (YYERRCODE): Mention the case of $undef.
3126
865f1e9f
AD
31272008-11-13 Akim Demaille <demaille@gostai.com>
3128
3129 TODO: YYPRINT.
3130 * TODO (YYPRINT): New.
3131
cb0b136a
AD
31322008-11-13 Akim Demaille <demaille@gostai.com>
3133
3134 Comment changes.
3135 * data/lalr1.cc, data/yacc.c: Fix the description of the
3136 yytranslate and yytoknum tables.
3137
2c086d29
AD
31382008-11-13 Akim Demaille <demaille@gostai.com>
3139
3140 Define make_symbol in the header.
b06df3c2
AD
3141 To reach good performances these functions should be inlined (yet
3142 this is to measure precisely). To this end they must be available
3143 to the caller.
2df9ec37 3144
2c086d29
AD
3145 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3146 location_type with the class name.
3147 Since will now be output in the header, declare "inline".
3148 No longer use b4_symbol_constructor_specializations, but
3149 b4_symbol_constructor_definitions in the header.
3150 Don't call it in the *.cc file.
3151
1c4af381
AD
31522008-11-13 Akim Demaille <demaille@gostai.com>
3153
3154 Define yytranslate in the header for lex_symbol.
3155 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3156 into the header file when using %define lex_symbol.
3157 (yytranslate_): Declare inline.
3158
e51b0a82
AD
31592008-11-13 Akim Demaille <demaille@gostai.com>
3160
b06df3c2
AD
3161 Define the constructors of symbol_type in
3162 b4_symbol_constructor_definitions.
e51b0a82 3163 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
3164 forthcoming patch will move elsewhere. Hence the interest of
3165 putting them together.
2df9ec37 3166
b06df3c2
AD
3167 The stack_symbol_type does not need to be moved, it is used only
3168 by the parser.
2df9ec37 3169
e51b0a82
AD
3170 * data/lalr1.cc: Move symbol_type and symbol_base_type
3171 constructors into...
3172 (b4_symbol_constructor_definitions): here.
3173 Adjust.
3174
78835571
AD
31752008-11-13 Akim Demaille <demaille@gostai.com>
3176
3177 Make it easier to move the definition of yytranslate_.
3178 Forthcoming changes will make it possible to use yytranslate_
3179 from outside the parser implementation file.
2df9ec37 3180
78835571
AD
3181 * data/lalr1.cc (b4_yytranslate_definition): New.
3182 Use it.
3183
c1e6c88c
AD
31842008-11-13 Akim Demaille <demaille@gostai.com>
3185
3186 Remove useless class specification.
3187 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3188 to refer to the class name to use a type defined by the class for
3189 arguments of member functions.
3190
4654b0c0
AD
31912008-11-13 Akim Demaille <demaille@gostai.com>
3192
3193 Finer input type for yytranslate.
3194 This patch is debatable: the tradition expects yylex to return an int
3195 which happens to correspond to token_number (which is an enum). This
3196 allows for instance to return characters (such as '*' etc.). But this
3197 goes against the stronger typing I am trying to have with the new
3198 lex interface which return a symbol_type. So in this case, feed
3199 yytranslate_ with a token_type.
2df9ec37 3200
4654b0c0
AD
3201 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3202 expect a token_type.
3203
dd735e4e
AD
32042008-11-13 Akim Demaille <demaille@gostai.com>
3205
3206 Honor lex-params in %define lex_symbol mode.
3207 * data/lalr1.cc: Use b4_lex_param.
3208
6659366c
AD
32092008-11-13 Akim Demaille <demaille@gostai.com>
3210
3211 Simplify names.
3212 * src/output.c (symbol_definitions_output): Rename symbol
3213 attributes type_name and has_type_name as type and has_type.
3214 * data/lalr1.cc: Adjust uses.
3215
e9805e57
AD
32162008-11-13 Akim Demaille <demaille@gostai.com>
3217
3218 Use b4_type_names for the union type.
b06df3c2
AD
3219 The union used to compute the size of the variant used to iterate
3220 over the type of all the symbols, with a lot of redundancy. Now
3221 iterate over the lists of symbols having the same type-name.
2df9ec37 3222
e9805e57
AD
3223 * data/lalr1.cc (b4_char_sizeof_): New.
3224 (b4_char_sizeof): Use it.
3225 Adjust to be called with a list of numbers instead of a single
3226 number.
3227 Adjust its caller for new-line issues.
3228
aea10ef4
AD
32292008-11-13 Akim Demaille <demaille@gostai.com>
3230
3231 Define the "identifier" of a symbol.
b06df3c2
AD
3232 Symbols may have several string representations, for instance if
3233 they have an alias. What I call its "id" is a string that can be
3234 used as an identifier. May not exist.
2df9ec37 3235
b06df3c2
AD
3236 Currently the symbols which have the "tag_is_id" flag set are
3237 those that don't have an alias. Look harder for the id.
2df9ec37 3238
aea10ef4
AD
3239 * src/output.c (is_identifier): Move to...
3240 * src/symtab.c (is_identifier): here.
3241 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3242 * src/output.c (symbol_definitions_output): Use it to define "id"
3243 and "has_id".
3244 Remove the definition of "tag_is_id".
3245 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3246 "tag_is_id" were used to produce code.
3247 We still use "tag" for documentation.
3248
2ea7730c
AD
32492008-11-11 Akim Demaille <demaille@gostai.com>
3250
3251 Locations are no longer required by lalr1.cc.
3252 * data/lalr1.cc (_b4_args, b4_args): New.
3253 Adjust all uses of locations to make them optional.
3254 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3255 (AT_CHECK_NAMESPACE): Check the use of locations.
3256 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3257 without locations with lalr1.cc.
3258 Test these cases.
3259 * tests/output.at: Check lalr1.cc with and without location
3260 support.
3261 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3262 Don't use locations.
3263
7ca2266a
AD
32642008-11-11 Akim Demaille <demaille@gostai.com>
3265
3266 AT_FULL_COMPILE.
3267 * tests/local.at (AT_FULL_COMPILE): New.
3268 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3269
1a7a65f9
AD
32702008-11-11 Akim Demaille <demaille@gostai.com>
3271
3272 Support parens in calc++.
3273 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3274 * examples/calc++/test (run): Check the expected output.
3275 Adjust callers.
3276 Check parens too.
3277
c944f7f2
AD
32782008-11-11 Akim Demaille <demaille@gostai.com>
3279
3280 Simplify lalr1.cc since %defines is mandatory.
3281 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3282
dada3cd1
AD
32832008-11-11 Akim Demaille <demaille@gostai.com>
3284
3285 TODO: yyfmt.
3286 * TODO (yysyntax_error): New item.
3287
422c18f4
AD
32882008-11-11 Akim Demaille <demaille@gostai.com>
3289
3290 Prefer M4 to CPP.
3291 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3292 YYERROR_VERBOSE.
3293
a0ffc175
AD
32942008-11-11 Akim Demaille <demaille@gostai.com>
3295
3296 Support i18n of the parse error messages.
3297 * TODO (lalr1.cc/I18n): Remove.
3298 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3299 error messages, as done in yacc.c.
3300 Stay within the yy* pseudo namespace.
3301
00a8a083
AD
33022008-11-11 Akim Demaille <demaille@gostai.com>
3303
3304 More TODO.
3305 * TODO (single stack, yysyntax_error): New.
3306
09277875
AD
33072008-11-11 Akim Demaille <demaille@gostai.com>
3308
3309 Make it possible to return a symbol_type from yylex.
3310 * data/lalr1.cc (b4_lex_symbol_if): New.
3311 (parse): When lex_symbol is defined, expected yylex to return the
3312 complete lookahead.
3313 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3314 yylex interface.
3315 (bench_variant_parser): Exercise it.
3316
64c1b92a
AD
33172008-11-11 Akim Demaille <demaille@gostai.com>
3318
3319 Remove useless bench case.
3320 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3321 no longer used.
3322
2722aa42
AD
33232008-11-11 Akim Demaille <demaille@gostai.com>
3324
3325 Improve display of directives.
3326 * etc/bench.pl.in (parse_term): Don't add useless eol.
3327
918eb7c5
AD
33282008-11-11 Akim Demaille <demaille@gostai.com>
3329
3330 Use string_cast in the bench.
3331 * etc/bench.pl.in (generate_grammar_list): Define and use
3332 string_cast.
3333
39be9022
AD
33342008-11-11 Akim Demaille <demaille@gostai.com>
3335
3336 Replace yychar with a Boolean.
3337 * data/lalr1.cc (parse::yychar): Replace by...
3338 (parse::yyempty): this.
3339
a2e3fa77
AD
33402008-11-11 Akim Demaille <demaille@gostai.com>
3341
3342 Factor the tables.
3343 * TODO: New item.
3344
aba12ad1
AD
33452008-11-11 Akim Demaille <demaille@gostai.com>
3346
3347 Let yytranslate handle the eof case.
3348 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3349 Adjust callers.
3350 No longer expect yychar to be equal to yyeof_, rather, test the
3351 lookahead's (translated) kind.
3352
27cb5b59
AD
33532008-11-11 Akim Demaille <demaille@gostai.com>
3354
3355 yychar cannot be empty in yyerrlab.
3356 * TODO (yychar == yyempty_): New.
3357 * data/lalr1.cc: Remove the handling of this case.
3358 This eases forthcoming changes related to yychar and yytranslate.
3359
fce629c0
AD
33602008-11-11 Akim Demaille <demaille@gostai.com>
3361
3362 Bench: syntactic sugar for %define/#define.
3363 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3364 (&bench_push_parser, bench_variant_parser): Use this feature.
3365 (&eat): New.
3366 Use it.
3367
ce671960
AD
33682008-11-11 Akim Demaille <demaille@gostai.com>
3369
3370 Less memory pressure on the "list" bench.
3371 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3372 the values, to limit memory pressure.
3373
2873fdf8
AD
33742008-11-11 Akim Demaille <demaille@gostai.com>
3375
3376 Introduce make_symbol.
b06df3c2
AD
3377 make_symbol provides a means to construct a full symbol (kind,
3378 value, location) in a single shot. It is meant to be a Symbol
3379 constructor, parameterized by the symbol kind so that overloading
3380 would prevent incorrect kind/value pairs. Unfortunately
3381 parameterized constructors do not work well in C++ (unless the
3382 parameter also appears as an argument, which is not acceptable),
3383 hence the use of a function instead of a constructor.
2df9ec37 3384
2873fdf8
AD
3385 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3386 (b4_symbol_constructor_declarations)
3387 (b4_symbol_constructor_specialization_)
3388 (b4_symbol_constructor_specializations)
3389 (b4_symbol_constructor_definition_)
3390 (b4_symbol_constructor_definitions): New.
3391 Use them where appropriate to generate declaration, declaration of
3392 the specializations, and implementations of the templated
3393 overloaded function "make_symbol".
3394 (variant::variant): Always define a default ctor.
3395 Also provide a copy ctor.
3396 (symbol_base_type, symbol_type): New ctor overloads for value-less
3397 symbols.
3398 (symbol_type): Now public, so that functions such as yylex can use
3399 it.
3400
8be046d7
AD
34012008-11-11 Akim Demaille <demaille@gostai.com>
3402
3403 Inform m4 whether a tag is a valid id.
3404 * src/output.c (is_identifier): New.
3405 (symbol_definitions_output): Use it to define tag_is_id.
3406 But maybe this should be done at m4 level?
3407
de62edee
AD
34082008-11-11 Akim Demaille <demaille@gostai.com>
3409
3410 Test 214 was failing: it greps with a pattern containing [ ]*
3411 which obviously meant to catch spaces and tabs, but contained only
3412 spaces. Tabulations in sources are a nuisance, so to simplify the
3413 matter, get rid of all the tabulations in the Java sources. The
3414 other skeletons will be treated equally later.
3415
3416 * data/java.m4, data/lalr1.java: Untabify.
3417 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3418 tabulations are no longer generated.
3419
905f0697
PB
34202008-11-11 Paolo Bonzini <bonzini@gnu.org>
3421
3422 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3423 * configure.ac: Adjust usage.
3424 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3425 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3426 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3427
09ccae9b
DJ
34282008-11-10 Di-an Jan <dianj@freeshell.org>
3429
3430 Workaround Java's ``code too large'' problem for parser tables
3431 in most cases, by using one function per initialization.
3432 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3433 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3434 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3435 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3436 (yytname_): Use b4_typed_parser_table.
3437 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3438 ``code too large'' error.
3439
1979121c
DJ
34402008-11-10 Di-an Jan <dianj@freeshell.org>
3441
3442 * NEWS: Document them.
de62edee 3443
1979121c
DJ
3444 General Java skeleton improvements.
3445 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3446 using gcj < 4.3 in the testsuite, according to comments in
3447 gnulib/m4/javacomp.m4.
3448 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3449 location_type, position_type): Remove extraneous brackets from
3450 b4_percent_define_default.
3451 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3452 m4_define and m4_define_default.
3453 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3454 which marks the end of user code with appropriate syncline, like all
3455 the other skeletons.
3456 (b4_user_post_prologue): Add. Don't silently drop.
3457 (yylex): Remove.
3458 (parse): Inline yylex.
3459 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3460 (%{...%}): Fix typo of %code imports.
3461 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3462
3463 Support annotations on parser class with %define annotations.
3464 * data/lalr1.java (annotations): Add to parser class modifier.
3465 * doc/bison.texinfo (Java Parser Interface): Document
3466 %define annotations.
3467 (Java Declarations Summary): Document %define annotations.
3468 * tests/java.at (Java parser class modifiers): Test annotations.
3469
3470 Do not generate code for %error-verbose unless requested.
3471 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3472 Make private. Make conditional on %error-verbose.
3473 (getErrorVerbose, setErrorVerbose): New.
3474 (yytnamerr_): Make conditional on %error-verbose.
3475 (yysyntax_error): Make some code conditional on %error-verbose.
3476 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3477 about %error-verbose having no effect.
3478 (getErrorVerbose, setErrorVerbose): Document.
3479
3480 Move constants for token names to Lexer interface.
3481 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3482 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3483 (parse): Qualify EOF to Lexer.EOF.
3484 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3485 EOF and token names to Java Lexer Interface.
3486 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3487
3488 Make yyerror public.
3489 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3490 (yyerror): Change to public. Add Javadoc comments. Use longer
3491 parameter names. Make the body rather than the declarator
3492 conditional on %locations.
3493 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3494
3495 Allow user to add code to the constructor with %code init.
3496 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3497 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3498 Add %code init to the front of the constructor body.
3499 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3500 and %define init_throws.
3501 (Java Declarations Summary): Document %code init and
3502 %define init_throws.
3503 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3504 (Java constructor init and init_throws): Add tests.
de62edee 3505
42f832d6
AD
35062008-11-10 Akim Demaille <demaille@gostai.com>
3507
3508 Update TODO.
3509 * TODO (-D): is implemented.
3510 (associativity): Same precedence must have the same associativity.
3511 For instance, how can a * b / c be parsed if * is %left and / is
3512 %right?
3513 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3514
247efe34
AD
35152008-11-10 Akim Demaille <demaille@gostai.com>
3516
3517 Formatting changes.
3518
5d731440
AD
35192008-11-10 Akim Demaille <demaille@gostai.com>
3520
3521 More information about the symbols.
3522 * src/output.c (type_names_output): Document all the symbols,
3523 including those that don't have a type-name.
3524 (symbol_definitions_output): Define "is_token" and
3525 "has_type_name".
3526 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3527 type-name, now that they are defined too in b4_type_names.
3528
21db118b
AD
35292008-11-10 Akim Demaille <demaille@gostai.com>
3530
3531 Regen.
3532
6ed15cde
AD
35332008-11-10 Akim Demaille <demaille@gostai.com>
3534
3535 Make parser::yytranslate static.
b06df3c2
AD
3536 Small speedup (1%) on the list grammar. And makes yytranslate_
3537 available in non member functions.
de62edee 3538
6ed15cde
AD
3539 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3540 function.
3541
30bb2edc
AD
35422008-11-10 Akim Demaille <demaille@gostai.com>
3543
3544 Avoid trailing spaces.
3545 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3546 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3547 they can be empty, and anyway this incorrectly indents the first
3548 action.
3549
b3a28fd4
AD
35502008-11-10 Akim Demaille <demaille@gostai.com>
3551
3552 Comment changes.
3553
914202bd
AD
35542008-11-10 Akim Demaille <demaille@gostai.com>
3555
3556 Use "enum" for integral constants.
3557 This is just nicer to read, I observed no speedup.
de62edee 3558
914202bd
AD
3559 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3560 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3561 (yyuser_token_number_max_, yyundef_token_): Move into...
3562 (yytranslate_): here.
3563
c17f9a4a
AD
35642008-11-10 Akim Demaille <demaille@gostai.com>
3565
3566 Shortcuts in bench directives.
3567 * etc/bench.pl.in (parse_dirs): New.
3568 Use it.
3569 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3570 Create the benches in "benches/".
3571
b9855ea5
AD
35722008-11-10 Akim Demaille <demaille@gostai.com>
3573
3574 Formatting changes.
3575 * data/lalr1.cc: here.
3576
6e097787
AD
35772008-11-10 Akim Demaille <demaille@gostai.com>
3578
3579 Adjust verbose message to using emacs.
3580 * etc/bench.pl.in: Inform compilation-mode when we change the
3581 directory.
3582 (generate_grammar_list): Recognize %define "variant" in addition
3583 to %define variant.
3584
4c3cc7da
AD
35852008-11-10 Akim Demaille <demaille@gostai.com>
3586
3587 Classify symbols by type-name.
3588 * src/uniqstr.h (UNIQSTR_CMP): New.
3589 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3590 (type_names_output): New.
3591 (muscles_output): Use it.
3592 * data/lalr1.cc (b4_symbol_action_): Remove.
3593 (b4_symbol_case_, b4_type_action_): New.
3594 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3595
d69c9694
AD
35962008-11-10 Akim Demaille <demaille@gostai.com>
3597
3598 Change the handling of the symbols in the skeletons.
3599 Before we were using tables which lines were the symbols and which
3600 columns were things like number, tag, type-name etc. It is was
3601 difficult to extend: each time a column was added, all the numbers had
3602 to be updated (you asked for colon $2, not for "tag"). Also, it was
3603 hard to filter these tables when only a subset of the symbols (say the
3604 tokens, or the nterms, or the tokens that have and external number
3605 *and* a type-name) was of interest.
de62edee 3606
d69c9694
AD
3607 Now instead of monolithic tables, we define one macro per cell. For
3608 instance "b4_symbol(0, tag)" is a macro name which contents is
3609 self-decriptive. The macro "b4_symbol" provides easier access to
3610 these cells.
de62edee 3611
d69c9694
AD
3612 * src/output.c (type_names_output): Remove.
3613 (symbol_numbers_output, symbol_definitions_output): New.
3614 (muscles_output): Call them.
3615 (prepare_symbols): Define b4_symbols_number.
3616
5263bea9
AD
36172008-11-10 Akim Demaille <demaille@gostai.com>
3618
3619 --trace=muscles
3620 * src/getargs.h, src/getargs.c (trace_muscle): New.
3621 (trace_types, trace_args): Support it.
3622 * src/output.c (output_skeleton): Use it.
3623
4175f6bb
AD
36242008-11-10 Akim Demaille <demaille@gostai.com>
3625
3626 muscles_output.
3627 * src/output.c (muscles_output): New, extracted from...
3628 (output_skeleton): here.
3629 Adjust.
3630
1de69d6a
AD
36312008-11-10 Akim Demaille <demaille@gostai.com>
3632
3633 Formatting changes.
3634
36db78a7
AD
36352008-11-10 Akim Demaille <demaille@gostai.com>
3636
3637 Update the variant example.
3638 * examples/variant.yy: Formatting changes.
3639 One stage build.
3640
e5eb92e7
AD
36412008-11-10 Akim Demaille <demaille@gostai.com>
3642
3643 Support constructor with an argument.
3644 This improves the "list" bench by 2%.
de62edee 3645
e5eb92e7
AD
3646 * data/lalr1.cc (variant::build): Add an overloaded version with
3647 an argument.
3648 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3649
76307410
AD
36502008-11-10 Akim Demaille <demaille@gostai.com>
3651
3652 Test variants.
3653 * tests/c++.at (AT_CHECK_VARIANTS): New.
3654 Use it with and without %define assert.
3655
d78f0ac9
AD
36562008-11-10 Akim Demaille <demaille@gostai.com>
3657
3658 Add %precedence support.
3659 Unfortunately it is not possible to reuse the %prec directive. This
3660 is because to please POSIX, we do not require to end the rules with a
3661 semicolon. As a result,
de62edee 3662
d78f0ac9 3663 foo: bar %prec baz
de62edee 3664
d78f0ac9
AD
3665 is ambiguous: either a rule which precedence is that of baz, or a rule,
3666 and then a declaration of the precedence of the token baz.
de62edee 3667
d78f0ac9
AD
3668 * doc/bison.texinfo: Document %precedence.
3669 (Precedence Only): New.
3670 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3671 * src/conflicts.c (resolve_sr_conflict): Support it.
3672 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3673 Parse it.
3674 * tests/calc.at: Use %precedence for NEG.
3675 * tests/conflicts.at (%precedence does not suffice)
3676 (%precedence suffices): New tests.
3677
c85be41a
AD
36782008-11-09 Akim Demaille <demaille@gostai.com>
3679
3680 Make benches in a sub dirs.
3681 * etc/bench.pl.in ($dir): New.
3682 Use it.
3683 Check the use of constructors with an argument.
3684 (bench_variant_parser): Fix.
3685
db65ca1f
AD
36862008-11-09 Akim Demaille <demaille@gostai.com>
3687
3688 fix eof condition
3689
9b0efa5b
AD
36902008-11-09 Akim Demaille <demaille@gostai.com>
3691
3692 Fix --help.
3693
432ac57a
AD
36942008-11-09 Akim Demaille <demaille@gostai.com>
3695
3696 Require the generation of parse-gram.output.
3697 * src/Makefile.am (YACC): Pass --report=all.
3698
deef2a0a
AD
36992008-11-09 Akim Demaille <demaille@gostai.com>
3700
3701 Formatting changes.
3702
df72984a
AD
37032008-11-09 Akim Demaille <demaille@gostai.com>
3704
3705 Update TODO.
3706 * TODO: Remove obsolete items.
3707 Update others.
3708
f10e19fd
AD
37092008-11-09 Akim Demaille <demaille@gostai.com>
3710
3711 Enhance bench.pl.
3712 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3713 (@token, $grammar, $bench): New.
3714 (generate_grammar_variant): Rename as...
3715 (generate_grammar_list): this.
3716 (generate_grammar): Adjust.
3717 (bench_grammar): Rename as...
3718 (bench): this.
3719 Use it in the various bench-marking routines.
3720 (-b, -g): New options.
3721
5de9c593
AD
37222008-11-09 Akim Demaille <demaille@gostai.com>
3723
3724 Use a static hierarchy for symbols in the C++ parser.
3725 * data/lalr1.cc (symbol_base_type, symbol_type)
3726 (stack_symbol_type): Make it a static hierarchy.
3727 Adjust dependencies.
3728
757f8f98
AD
37292008-11-09 Akim Demaille <demaille@gostai.com>
3730
3731 bench.pl -d, --directive.
3732 * etc/bench.pl.in (@directive): New.
3733 (&bench_grammar): Use it.
3734 (&bench_list_grammar): New, to provide access to the "variant"
3735 grammar.
3736 Use it.
3737 (getopts): Support -d, --directive.
3738
d3be4f6d
AD
37392008-11-09 Akim Demaille <demaille@gostai.com>
3740
3741 Use inline for small operations.
3742 * data/lalr1.cc (symbol_base_type, symbol_type)
3743 (stack_symbol_type): Declare constructor and other operations as
3744 inline.
3745 (yy_destroy_): Inline.
3746
1f7d007b
AD
37472008-11-09 Akim Demaille <demaille@gostai.com>
3748
3749 Introduce a hierarchy for symbols.
3750 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3751 (data_type): Rename as...
3752 (stack_symbol_type): this.
3753 Derive from symbol_base_type.
3754 (yy_symbol_value_print_): Merge into...
3755 (yy_symbol_print_): this.
3756 Rename as...
3757 (yy_print_): this.
3758 (yydestruct_): Rename as...
3759 (yy_destroy_): this.
3760 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3761 (parser::parse): yyla is now of symbol_type.
3762 Use its type member instead of yytoken.
3763
bc0b0477
AD
37642008-11-09 Akim Demaille <demaille@gostai.com>
3765
3766 Rename data_type and stack_symbol_type.
3767 * data/lalr1.cc (data_type): Rename as...
3768 (stack_symbol_type): this.
3769
57295d14
AD
37702008-11-09 Akim Demaille <demaille@gostai.com>
3771
3772 Handle semantic value and location together.
3773 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3774 yydata.value and yydata.location.
3775 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3776 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3777 single arg.
3778 Adjust all callers.
3779 (yydestruct_): New overload for a stack symbol.
3780
e9b0834e
AD
37812008-11-09 Akim Demaille <demaille@gostai.com>
3782
3783 Push a complete symbol, not connected parts.
3784 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3785 state, value and location.
3786 Adjust callers.
3787
6082531a
AD
37882008-11-09 Akim Demaille <demaille@gostai.com>
3789
3790 Agregate yylval and yylloc.
3791 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3792 (parser::yyla): this.
3793
33c195cc
AD
37942008-11-09 Akim Demaille <demaille@gostai.com>
3795
3796 Rely on the state stack to display reduction traces.
b06df3c2
AD
3797 To display rhs symbols before a reduction, we used information
3798 about the rule reduced, which required the tables yyrhs and
3799 yyprhs. Now use rely only on the state stack to get the same
3800 information.
de62edee 3801
33c195cc
AD
3802 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3803 Use them.
3804 (parser::yyrhs_, parser::yyprhs_): Remove.
3805 (parser::yy_reduce_print_): Use the state stack.
3806
e1f93869
AD
38072008-11-09 Akim Demaille <demaille@gostai.com>
3808
3809 Fuse yyval and yyloc into yylhs.
3810 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3811 yylhs.
3812 (parse): Replace yyval and yyloc with yylhs.value and
3813 yylhs.location.
3814 After a user action, compute yylhs.state earlier.
3815 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3816 fresh error_token.
3817
2935744b
DJ
38182008-11-09 Di-an Jan <dianj@freeshell.org>
3819
3820 Remove unused variable.
3821 * src/output.c (type_names_output): Remove unused variable sep.
3822
bbf9ca37
PB
38232008-11-09 Paolo Bonzini <bonzini@gnu.org>
3824
3825 Change tests/output.at quoting.
3826 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3827 expanding arguments.
3828
d9a9b96b
JD
38292008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3830
3831 Don't add a semicolon to actions for %skeleton or %language.
3832 It breaks Java test cases as reported by Akim Demaille.
3833 * src/scan-code.l: Implement.
3834
51365192
JD
38352008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3836
3837 Clean up %skeleton and %language priority implementation.
3838 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3839 remove static qualifier because others will soon need to see it.
3840 (language_prio): Likewise.
3841 (getargs): Use command_line_prio rather than 0.
3842 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3843 enum fields.
3844 (skeleton_prio): Extern it.
3845 (language_prio): Extern it.
3846 * src/parse-gram.y: Use grammar_prio rather than 1.
3847
9380cfd0
AD
38482008-11-07 Akim Demaille <demaille@gostai.com>
3849
3850 Moving push traces into yypush_.
3851 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3852 Adjust all uses.
3853
8901f32e
AD
38542008-11-07 Akim Demaille <demaille@gostai.com>
3855
3856 The single-stack C++ parser is now the standard one.
3857 * data/lalr1.cc: Rename as...
3858 * data/lalr1-split.cc: this.
3859 * data/lalr1-fusion.cc: Rename as...
3860 * data/lalr1.cc: this.
3861 * etc/bench.pl.in: Adjust.
3862
8cdabf02
AD
38632008-11-07 Akim Demaille <demaille@gostai.com>
3864
3865 Avoid empty-if warnings.
3866 Reported by Quentin Hocquet.
de62edee 3867
8cdabf02
AD
3868 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3869 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3870
5a893c2b
AD
38712008-11-07 Akim Demaille <demaille@gostai.com>
3872
3873 Pass command line location to skeleton_arg and language_argmatch.
3874 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3875 The location argument is now mandatory.
3876 Adjust all dependencies.
3877 (getargs): Use command_line_location.
3878
58697c6d
AD
38792008-11-07 Akim Demaille <demaille@gostai.com>
3880
3881 -D, --define.
3882 * src/getargs.c (usage): Document -D.
3883 Fix help string for --locations.
3884 (command_line_location): New.
3885 (short_options, long_options, getargs): Support -D, --define.
3886 (getargs): Move -d support at the right place.
3887 * doc/bison.texinfo (Bison Options): Update.
3888 * tests/input.at (%define, --define): New.
3889
9fe5a457
AD
38902008-11-07 Akim Demaille <demaille@gostai.com>
3891
3892 Initialize the muscle table before parsing the command line.
3893 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3894 (getargs): Define file_name.
3895 * src/main.c (main): Initialize muscle_tab before calling
3896 getargs.
3897 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3898 its value is not available yet.
3899
56c5eca9
AD
39002008-11-07 Akim Demaille <demaille@gostai.com>
3901
3902 Locations without columns for command line arguments.
3903 * src/location.c (location_print): Don't display negative columns.
3904 * src/location.h: Document this.
3905
9b9e0a7d
AD
39062008-11-07 Akim Demaille <demaille@gostai.com>
3907
3908 Fix --help.
3909 * src/getargs.c (usage): Fix help string for -W.
3910
74eae918
AD
39112008-11-07 Akim Demaille <demaille@gostai.com>
3912
3913 Handle more general types of option arguments.
3914 * build-aux/cross-options.pl: The argument ends at the first
3915 space, not the first non-symbol character.
3916 Use @var for each word appearing the argument description.
3917
a3d4c6fb
AD
39182008-11-07 Akim Demaille <demaille@gostai.com>
3919
3920 Destroy the variants that remain on the stack in case of error.
3921 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3922 destructor.
3923 Display the value only if yymsg is nonnull.
3924 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3925
2d32fc9f
AD
39262008-11-07 Akim Demaille <demaille@gostai.com>
3927
3928 Add "%define assert" to variants.
3929 This is used to help the user catch cases where some value gets
3930 ovewritten by a new one. This should not happen, as this will
3931 probably leak.
de62edee 3932
2d32fc9f
AD
3933 Unfortunately this uncovered a bug in the C++ parser itself: the
3934 lookahead value was not destroyed between two calls to yylex. For
3935 instance if the previous lookahead was a std::string, and then an int,
3936 then the value of the std::string was correctly taken (i.e., the
3937 lookahead was now an empty string), but std::string structure itself
3938 was not reclaimed.
de62edee 3939
2d32fc9f
AD
3940 This is now done in variant::build(other&) (which is used to take the
3941 value of the lookahead): other is not only stolen from its value, it
3942 is also destroyed. This incurs a new performance penalty of a few
3943 percent, and union becomes faster again.
de62edee 3944
2d32fc9f
AD
3945 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3946 (b4_variant_if): New.
3947 (variant::built): New.
3948 Use it whereever the status of the variant changes.
3949 * etc/bench.pl.in: Check the penalty of %define assert.
3950
f6038cb8
AD
39512008-11-07 Akim Demaille <demaille@gostai.com>
3952
3953 Use "%define variant" in bench.pl.
3954 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3955 just use %define variants.
3956
ccde1f98
AD
39572008-11-07 Akim Demaille <demaille@gostai.com>
3958
3959 Regen.
3960 * src/parse-gram.h, src/parse-gram.c: Regen.
3961
58bd33b7
JD
39622008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3963
3964 Fix user actions without a trailing semicolon.
3965 Reported by Sergei Steshenko at
3966 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3967 * THANKS (Sergei Steshenko): Add.
3968 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3969 * tests/regression.at (Fix user actions without a trailing semicolon):
3970 New test case.
3971
639867b5
AD
39722008-11-04 Akim Demaille <demaille@gostai.com>
3973
3974 Use b4_copyright_years.
3975 * data/yacc.c (b4_copyright_years): New.
3976 Fix its value according to the comments in the file.
3977 Use it and undefine it.
3978
3c262606
AD
39792008-11-04 Akim Demaille <demaille@gostai.com>
3980
3981 Formatting changes.
3982 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3983
a2b93d52
AD
39842008-11-04 Akim Demaille <demaille@gostai.com>
3985
3986 Formatting changes.
3987 * data/lalr1-fusion.cc: here.
3988
3a2803df
AD
39892008-11-04 Akim Demaille <demaille@gostai.com>
3990
3991 Use strict on bench.pl.
3992 * etc/bench.pl.in (&run, &generate_grammar): New.
3993 Rename the grammar generating functions for consistency.
3994 Change the interface so that the list of benches to run is passed
3995 as (optionless) arguments.
3996 (&compile): Use &run.
3997
a0d4650a
AD
39982008-11-04 Akim Demaille <demaille@gostai.com>
3999
4000 Remove spurious initial empty lines.
4001 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
4002 * data/yacc.c: End the @output lines with an @.
4003
cac9e09b
AD
40042008-11-04 Akim Demaille <demaille@gostai.com>
4005
4006 Improve the display of sizes.
4007 * etc/bench.p.in: Higher precision.
4008 Sort by decreasing size.
4009
4af4348a
AD
40102008-11-04 Akim Demaille <demaille@gostai.com>
4011
4012 Don't memcpy C++ structures.
4013 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
4014 arguments.
4015 (variant::build): New overload for
4016 copy-construction-that-destroys.
4017 (variant::swap): New.
4018 (parser::yypush_): Use it in variant mode.
4019
ef05c4d6
AD
40202008-11-04 Akim Demaille <demaille@gostai.com>
4021
4022 Better defaults for bench.pl.
4023 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4024 default values.
4025 Adjust &verbose uses.
4026 (-q, --quiet): New.
4027
9718cfa9
AD
40282008-11-04 Akim Demaille <demaille@gostai.com>
4029
4030 Make variant.yy more complex.
4031 std::list cannot be copied via memcpy, they are more demanding than
4032 std::string. Use one std::list to strengthen the test.
de62edee 4033
9718cfa9
AD
4034 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4035 Adjust.
4036 Create a list of strings, instead of a single large string.
4037
a6df593d
AD
40382008-11-04 Akim Demaille <demaille@gostai.com>
4039
4040 bench.pl --bench.
4041 * etc/bench.pl.in (--bench, $bench): New.
4042
006a0303
AD
40432008-11-04 Akim Demaille <demaille@gostai.com>
4044
4045 Sort methods.
4046 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4047 Define it after as().
4048
faef3466
AD
40492008-11-04 Akim Demaille <demaille@gostai.com>
4050
4051 Useless parens.
4052 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4053
2141aded
AD
40542008-11-04 Akim Demaille <demaille@gostai.com>
4055
4056 Issue missing synclines after user actions.
4057 * data/c.m4 (b4_case): Issue synclines on the output file.
4058
e426d17b
AD
40592008-11-04 Akim Demaille <demaille@gostai.com>
4060
4061 Remove trailing empty line.
4062 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4063 epilogue.
4064
a9ce3f54
AD
40652008-11-04 Akim Demaille <demaille@gostai.com>
4066
4067 Fix output of copyright years.
4068 * data/bison.m4 (b4_copyright): Fix the indentation of the
4069 copyright year paragraph.
4070 Use b4_copyright_years when no years are given.
4071 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4072 (b4_copyright_years): New.
4073 Use it.
4074
59c544c2
AD
40752008-11-04 Akim Demaille <demaille@gostai.com>
4076
4077 Avoid the spurious initial empty line.
4078 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4079 the end of @output request to suppress the empty line that
4080 results.
4081
96b15448
AD
40822008-11-04 Akim Demaille <demaille@gostai.com>
4083
4084 Remove parser::rhs_number_type.
4085 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4086 (yyrhs_): Use b4_table_define.
4087
f0633174
AD
40882008-11-04 Akim Demaille <demaille@gostai.com>
4089
4090 Fix iteration type.
4091 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4092
417b8004
AD
40932008-11-04 Akim Demaille <demaille@gostai.com>
4094
4095 Factor the declaration of the integer tables.
4096 * data/lalr1-fusion.cc (b4_table_define): New.
4097 Use it.
4098
1a5246c6
AD
40992008-11-03 Akim Demaille <demaille@gostai.com>
4100
4101 Fix indentation of tables in lalr1.cc
4102 * data/lalr1-fusion.cc: Fix the indentation.
4103
f8a95c9c
AD
41042008-11-03 Akim Demaille <demaille@gostai.com>
4105
4106 Destroy the lhs symbols after reduction.
4107 * data/lalr1-fusion.cc (parse): After the user action, when in
4108 variant mode, destroy the lhs symbols.
4109
d7f4d823
AD
41102008-11-03 Akim Demaille <demaille@gostai.com>
4111
4112 Simplify yysyntax_error_ use.
4113 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4114 type, but make it unnamed in the declaration when it is not used.
4115
8b9c89fb
AD
41162008-11-03 Akim Demaille <demaille@gostai.com>
4117
4118 Let yy::variant::build return an lvalue.
4119 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4120 object.
4121
83243c24
AD
41222008-11-03 Akim Demaille <demaille@gostai.com>
4123
4124 Define yy::variant only when needed.
4125 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4126 used.
4127
429b4848
AD
41282008-11-03 Akim Demaille <demaille@gostai.com>
4129
4130 Bench the three-stack lalr1.cc.
4131 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4132 one-stack one.
4133
414c76a4
AD
41342008-11-03 Akim Demaille <demaille@gostai.com>
4135
4136 Fail on parse error in calc++.
4137 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4138 status.
4139 * examples/calc++/test ($me, $number, $exit, run): New.
4140 Use them to propagate errors to the exit status.
4141
8a5783fd
AD
41422008-11-03 Akim Demaille <demaille@gostai.com>
4143
4144 Don't specify the skeleton twice in the example.
4145 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4146 file does what is needed.
4147
0cc5bead
AD
41482008-11-03 Akim Demaille <demaille@gostai.com>
4149
4150 bench: Improve output.
4151 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4152
5b421a4e
AD
41532008-11-03 Akim Demaille <demaille@gostai.com>
4154
4155 bench: check impact of %debug on variants.
4156 * etc/bench.pl.in (variant_grammar): Fix the computation of
4157 $variant.
4158 Generate a grammar file that can work with or without %debug.
4159 Do use the @directive.
4160 (bench_variant_parser): Check impact of %debug.
4161 (@directives): Rename all the occurrences to...
4162 (@directive): this, for consistency.
4163
d11ee647
AD
41642008-11-03 Akim Demaille <demaille@gostai.com>
4165
4166 bench: report the size too.
4167 * etc/bench.pl.in ($iterations): Defaults to -3.
4168 (&bench_grammar): Require hireswallclock.
4169 Compute and display the size of the result.
4170 More comments.
4171
e1b74b92
AD
41722008-11-03 Akim Demaille <demaille@gostai.com>
4173
4174 bench: More use of the verbosity level.
4175 * etc/bench.pl.in ($verbose, &verbose): New.
4176 Use them.
4177 More POD documentation.
4178
7e5f9c54
AD
41792008-11-03 Akim Demaille <demaille@gostai.com>
4180
4181 bench.pl: a command line interface
4182 * etc/bench.pl.in: More doc.
4183 Some fixes in the documentation.
4184 ($cflags, $iterations, &help, &getopt): New.
4185 Use them.
4186 (&variant_grammar): Let the number of stages be 10 times what is
4187 specified.
4188
7109a18d
AD
41892008-11-03 Akim Demaille <demaille@gostai.com>
4190
4191 Bench the use of Boost.Variants.
4192 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4193 New.
4194 (&compile): Be ready to compile C++ parsers.
4195 (&bench_push_parser): Move debug information to the outermost
4196 level.
4197 * THANKS: Add Michiel De Wilde.
4198
922730fe
AD
41992008-11-03 Akim Demaille <demaille@gostai.com>
4200
4201 bench.pl: Pass directives as a list instead of as a string.
4202 * etc/bench.pl.in (&directives): New.
4203 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4204 directives.
4205 (&triangular_grammar): Do use the directives (were ignored).
4206 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4207 directives.
4208
7484f1d4
AD
42092008-11-03 Akim Demaille <demaille@gostai.com>
4210
4211 Improve genericity of bench.pl.
4212 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4213 argument.
4214 (&bench_push_parser): New.
4215 Call it.
4216
15129f25
AD
42172008-11-03 Akim Demaille <demaille@gostai.com>
4218
4219 Add documentation to bench.pl.
4220 * etc/bench.pl.in: Comment changes.
4221
0e0ed236
AD
42222008-11-03 Akim Demaille <demaille@gostai.com>
4223
4224 Fuse the three stacks into a single one.
de62edee 4225
b06df3c2
AD
4226 In order to make it easy to perform benchmarks to ensure that
4227 there are no performance loss, lalr1.cc is forked into
4228 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4229 lalr1.cc.
4230
4231 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4232 exercized by the test suite, the user must install a symbolic link
4233 from lalr1.cc to it.
de62edee 4234
b06df3c2
AD
4235 Instead of having three stacks (state, value, location), use a
4236 stack of triples. This considerably simplifies the code (and it
4237 will be easier not to require locations as currently does the C++
4238 parser), and also gives a 10% speedup according to
4239 etc/bench (probably mainly since memory allocation is done once
4240 instead of three times).
de62edee 4241
0e0ed236
AD
4242 Another motivation is to make it easier to destruct properly
4243 semantic values: now that they are bound to their state (hence
4244 symbol type) it will be easier to call the appropriate destructor.
de62edee 4245
0e0ed236 4246 These changes should probably benefit the C parser too.
de62edee 4247
b06df3c2
AD
4248 * data/lalr1.cc: Copy as...
4249 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
4250 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4251 from c++.m4.
4252 (state_stack_type, semantic_stack_type, location_stack_type)
4253 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4254 (data_type, stack_type, yystack_): New.
4255 (YYLLOC_DEFAULT, yypush_): Adjust.
4256 (yyerror_range): Now based on data_type, not location_type.
4257
7dedf26e
AD
42582008-11-03 Akim Demaille <demaille@gostai.com>
4259
4260 Push the state, value, and location at the same time.
4261 This is needed to prepare a forthcoming patch that fuses the three
4262 stacks into one.
de62edee 4263
7dedf26e
AD
4264 * data/lalr1.cc (parser::yypush_): New.
4265 (parser::yynewstate): Change the semantics: instead of arriving to
4266 this label when value and location have been pushed, but yystate
4267 is to be pushed on the state stack, now the three of them must
4268 have been pushed before. yystate still must be the new state.
4269 This allows to use yypush_ everywhere instead of individual
4270 handling of the stacks.
4271
c4585f1e
AD
42722008-11-03 Akim Demaille <demaille@gostai.com>
4273
4274 Prefer references to pointers.
4275 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4276 definition to use references instead of pointers.
4277 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4278 Take the value and location as references.
4279 Adjust callers.
4280
56017c17
AD
42812008-11-03 Akim Demaille <demaille@gostai.com>
4282
4283 stack::size instead of stack::height.
4284 * data/lalr1.cc (stack::height): Rename as...
4285 (stack::size): this.
4286 Fix the output type.
4287 Comment changes.
4288
5ab8c47b
AD
42892008-11-03 Akim Demaille <demaille@gostai.com>
4290
4291 Use variants to support objects as semantic values.
b06df3c2
AD
4292 This patch was inspired by work by Michiel De Wilde. But he used
4293 Boost variants which (i) requires Boost on the user side, (ii) is
4294 slow, and (iii) has useless overhead (the parser knows the type of
4295 the semantic value there is no reason to duplicate this
4296 information as Boost.Variants do).
4297
4298 This implementation reserves a buffer large enough to store the
4299 largest objects. yy::variant implements this buffer. It was
4300 implemented with Quentin Hocquet.
de62edee 4301
5ab8c47b
AD
4302 * src/output.c (type_names_output): New.
4303 (output_skeleton): Invoke it.
4304 * data/c++.m4 (b4_variant_if): New.
4305 (b4_symbol_value): If needed, provide a definition for variants.
4306 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4307 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4308 (b4_char_sizeof, yy::variant): New.
4309 (parser::parse): If variants are requested, define
4310 parser::union_type, parser::variant, change the definition of
4311 semantic_type, construct $$ before running the user action instead
4312 of performing a default $$ = $1.
4313 * examples/variant.yy: New.
4314 Based on an example by Michiel De Wilde.
4315
1fa5d8bb
AD
43162008-11-03 Akim Demaille <demaille@gostai.com>
4317
4318 Parameterize the extraction of semantic values.
4319 To make future changes easier, no longer rely on ".TYPE" being the
4320 way to get a semantic value.
de62edee 4321
1fa5d8bb
AD
4322 * data/c.m4 (b4_symbol_value): New.
4323 Use it.
4324 * data/c++.m4, data/yacc.c: Use it.
4325 * data/glr.c: Use b4_symbol_value.
4326 (b4_rhs_data): New.
4327 Use it.
4328
91ba8a55
AD
43292008-11-03 Akim Demaille <demaille@gostai.com>
4330
4331 Prepare easier M4 changes.
4332 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4333 future changes.
4334
c9ba9e59
JD
43352008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4336
4337 Initiate further development.
4338 * NEWS: Create an empty section for new entries.
4339 * gnulib: Update submodule to HEAD.
4340
bfb40910
JD
43412008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4342
4343 * NEWS: Version 2.4.
4344
241fda7a
JD
43452008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4346
4347 Prepare for next release.
4348 * NEWS: Briefly mention changes since 2.3b.
4349 * README: Say GNU m4 1.4.6, which we've been requiring in release
4350 announcements already, not 1.4.3, which breaks the build.
4351
ed4d67dc
JD
43522008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4353
4354 Say %language is experimental.
4355 We're thinking of extending it's effect on output file naming. See the
4356 thread at
4357 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4358 * NEWS: Say it's experimental.
4359 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4360 recommend it over %skeleton for now.
4361 (Bison Options): Likewise.
4362 (C++ Bison Interface): Use %skeleton not %language.
4363 (Calc++ Parser): Use %skeleton not %language.
4364 * src/getargs.c (usage): Say it's experimental.
4365
e254a580
DJ
43662008-11-01 Di-an Jan <dianj@freeshell.org>
4367 Paolo Bonzini <bonzini@gnu.org>
4368
4369 Support all Java parser class modifiers.
4370 * data/java.m4 (b4_percent_define_get3): New.
4371 (b4_final_if, b4_strictfp_if): New.
4372 * data/lalr1.java (final, strictfp, extends, implements): Support.
4373 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4374 documentation.
4375 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4376 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4377 (AT_CHECK_JAVA_GREP): New.
4378 (Java parser class modifiers): New test.
4379 (Java parser class extends and implements): New test.
4380
4381 Model exception propagation better with throws and lex_throws.
4382 * data/java.m4 (b4_list2): New.
4383 (throws): Change default.
4384 * data/lalr1.java (yyaction): Add throws.
4385 (parse): Add lex_throws in addition to throws.
4386 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4387 * tests/java.at (Java throws specifications): New test.
4388
4389 Improve documentation for Java parsers.
4390 * doc/bison.texinfo (Java Parsers): Add subsections.
4391 Don't quote first argument of %define.
4392 (Java Bison Interface): Document output files. Move documentation
4393 of parser class and merge into Java Parser Interface. Document
4394 features that error out. Document directives with no effect.
4395 Move note about Javadoc higher.
4396 (Java Semantic Values): Explicitly mention stype.
4397 Document that generic types cannot be used.
4398 (Java Location Values): Use @deftypeivar. Document constructors.
4399 Correct return value for toString.
4400 (Java Parser Interface): List undocumented constants/fields.
4401 Move documentation of fields added by %parse-param closer to list
4402 of members. Document that token names are added as fields.
4403 Document constructors accurately. Remove error method.
4404 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4405 Interface. Describe %code lexer and yylex accutately.
4406 Remove documentation that does not match the code.
4407 (Java Action Features): New.
4408 (Java Differences): Add reference. Add item on semantic values.
4409 Add note about @{ ... @}. Clarify %% epilogue placement.
4410 (Java Declarations Summary): New.
4411
4412 Fix Java skeleton.
4413 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4414 (b4_remove_comma): Quote test argument.
4415 (b4_identification): Remove "bison" field.
4416 * tests/java.at (Java parser class and package names): New test.
4417 (Java %parse-param and %lex-param): New test.
4418 (Java stype, position_class and location_class): New test.
4419
f259e4e6
PB
44202008-10-31 Di-an Jan <dianj@freeshell.org>
4421
4422 * data/lalr1.jave: Update copyright years.
4423 (YYParser): Correct name of "generated from" file in Javadoc:
4424 use b4_file_name instead of @ofile@.
4425 (Location constructor): Correct Javadoc parameter name.
4426 (yylloc): Add missing opening m4 quote after b4_location_if.
4427 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4428 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4429 (YYParser constructor): Correct Javadoc parameter name.
4430
cae5057f
JD
44312008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4432
4433 Always put auxiliary code files in the same dir as other output files.
4434 * src/files.c (compute_file_name_parts): When the user specifies
4435 --output but not --file-prefix, extract the directory prefix from the
4436 file prefix not from the grammar file name. This affects the location
4437 of files like location.hh generated by the C++ skeleton. The includes
4438 in the other output files require this fix.
4439 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4440 for expected output files.
4441 (Output files): Add a test for the above.
4442
4af432ba
JD
44432008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4444
4445 * gnulib: Update submodule to HEAD.
4446
e26d4e43
JD
44472008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4448
4449 Update copyright year.
4450 * src/files.c: Here.
4451
c0ee9e21
DJ
44522008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4453
4454 Don't overwrite the input file.
4455 * src/files.c (output_file_name_check): Fatal error if using input file
4456 for output.
4457 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4458 argument.
4459 (Conflicting output files): Add test.
4460
482dc52f
AD
44612008-10-28 Akim Demaille <demaille@gostai.com>
4462
4463 Space changes.
4464 * data/lalr1.cc: Formatting changes.
4465
52cbbe84
AD
44662008-10-28 Akim Demaille <demaille@gostai.com>
4467
4468 Don't define debugging functions when !YYDEBUG.
4469 * data/lalr1.cc (debug_stream, set_debug_stream)
4470 (debug_level_type, debug_level, set_debug_level): Don't
4471 declare them when YYDEBUG is not defined.
4472 The implementation are already YYDEBUG-aware.
4473
0925d5bf
AD
44742008-10-28 Akim Demaille <demaille@gostai.com>
4475
4476 Prefer "continue" for empty loop bodies.
4477 * etc/bench.pl.in: Use "continue" instead of {}.
4478
cf98343c
AD
44792008-10-28 Akim Demaille <demaille@gostai.com>
4480
4481 Space and comments changes.
4482 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4483 * data/c.m4, data/lalr1.cc: Space changes.
4484
9f467b7d
AD
44852008-10-28 Akim Demaille <demaille@gostai.com>
4486
4487 Make gnulib a submodule.
4488 * gnulib: New.
4489 * .gitmodules (gnulib): New.
4490
0f0e1ace
JD
44912008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4492
4493 Fix yyerror_range for user-defined location type in C++. Reported by
4494 Georg Sauthoff at
4495 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4496 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4497 * THANKS (Georg Sauthoff): Add.
4498
548e2104
JD
44992008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4500
4501 Update several administrative files mainly to facilitate releasing.
4502 * HACKING (Administrivia): Make the git-merge-changelog notes more
4503 helpful.
4504 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4505 (Release Procedure): Update for git and add numerous details that were
4506 previously missing.
4507 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4508 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4509 that announcements don't claim we bootstrapped with whatever bison
4510 happened to be in PATH. Add flex as a bootstrap tool.
4511 * Makefile.maint: Remove, previously replaced by maint.mk.
4512 * Makefile.cfg: Remove, and migrate settings to...
4513 * cfg.mk: ... here for the sake of `make announcement'.
4514 * bootstrap.conf (gnulib_modules): Add announce-gen.
4515 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4516 Berry.
4517
ddf17a6e
PB
45182008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4519
4520 Small but important bugfixes for the Java skeleton.
4521 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4522 (yy_symbol_print): Call toString on yyvaluep.
4523
e1145ad8
AD
45242008-08-29 Akim Demaille <demaille@gostai.com>
4525
4526 Clarify UPDATED use.
215b40ac 4527 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 4528 not to the release date of Bison.
215b40ac 4529 Reported by Joel E. Denny.
e1145ad8 4530
0df72d78
AD
45312008-08-29 Akim Demaille <demaille@gostai.com>
4532
4533 * README: Update FAQ pointer.
4534 Reported by Joel E. Denny.
4535
9a90b6bb
EB
45362008-08-27 Eric Blake <ebb9@byu.net>
4537
4538 Resync m4sugar from autoconf.
4539 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4540 (m4_init): Adjust to latest m4.git changes.
4541 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4542 effects.
4543 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4544 (_m4_list_cmp): Reduce side effects.
4545
65015668
AD
45462008-08-27 Akim Demaille <demaille@gostai.com>
4547
4548 Check yyerrok in calc.at.
215b40ac
EB
4549 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4550 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4551 expected.
65015668 4552
98e26a92
AD
45532008-08-27 Akim Demaille <demaille@gostai.com>
4554
4555 Support yyerrok in lalr1.cc.
4556 YYBACKUP is still to import back into lalr1.cc.
215b40ac 4557 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 4558
86c0e784
JD
45592008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4560
4561 For maintainer-check*, don't recompile for a $(VERSION) update.
4562 * cfg.mk: New file.
4563 (_is-dist-target): Override the one in GNUmakefile.
4564 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4565
88511166
JD
45662008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4567
4568 Update for recent change to gnulib.
4569 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4570 string.h now.
4571
6bbb2ed5
EB
45722008-08-15 Eric Blake <ebb9@byu.net>
4573
d67c52e8
EB
4574 Remaining m4sugar merge from autoconf.
4575 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4576 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4577 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4578 * src/output.c (output_skeleton): Tell m4 how to find it.
4579
6bbb2ed5
EB
4580 Partial m4sugar merge from autoconf: m4_map.
4581 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4582 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4583 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4584 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4585 for empty list.
4586 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4587 Likewise.
4588 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4589 declares it.
4590
8dce3875
JD
45912008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4592
4593 Keep .version and PACKAGE_VERSION in sync.
4594 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4595 dependency, and add comments justifying this in more detail. Discussed
4596 starting at
4597 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4598
882a1fbf
EB
45992008-08-06 Eric Blake <ebb9@byu.net>
4600
a3764451
EB
4601 Partial m4sugar merge from autoconf: m4_shiftn.
4602 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4603 (m4_shift2, m4_shift3): New macros.
4604 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4605 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4606 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4607 * data/java.m4 (b4_remove_comma): Likewise.
4608
882a1fbf
EB
4609 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4610 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4611 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4612 (m4_init): Consolidate wrapped text into single m4_wrap.
4613 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4614 in wrapped text.
4615
a30e920d
EB
46162008-08-05 Eric Blake <ebb9@byu.net>
4617
dfcc5959
EB
4618 Partial m4sugar merge from autoconf: builtins, version.m4.
4619 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4620 (m4_prepend): Remove, as it is unused and inherently quadratic,
4621 whereas m4_append is linear in newer m4.
4622 (m4_mkstemp): New builtin.
4623 (m4_symbols): Make rename conditional.
4624 (m4_version_prereq): Ensure fatal error if used in bison, which
4625 intentionally lacks version.m4.
4626
a30e920d
EB
4627 Fix comments in m4sugar.
4628 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4629
445b7470
JD
46302008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4631
4632 Update for recent .gitignore fix in Gnulib.
4633 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4634 anchored .gitignore entries.
4635
a1e50014
JD
46362008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4637
4638 Set gnu or gnits strictness.
4639 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4640 development and gnits strictness for releases. Based on Eric Blake's
4641 suggestion at
4642 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4643
d43f77e7
PB
46442008-07-31 Paolo Bonzini <bonzini@gnu.org>
4645
4646 * NEWS: Clarify documentation of %language.
4647
fee2ed87
PB
46482008-07-31 Paolo Bonzini <bonzini@gnu.org>
4649
4650 Support usage of git-merge-changelog.
4651 * .gitattributes: New.
4652 * HACKING: Document usage of git-merge-changelog.
4653 * bootstrap: Install git-merge-changelog entries in .git/config
4654 if appropriate.
4655
78029cd5
JD
46562008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4657
4658 Remove remaining dependence on CVS Id keyword.
4659 * ChangeLog: For the sake of people still using CVS, don't use dollars
4660 when mentioning Id.
4661 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4662 unusual anyway.
4663 * data/xslt/xml2dot.xsl: Likewise.
4664 * data/xslt/xml2text.xsl: Likewise.
4665 * data/xslt/xml2xhtml.xsl: Likewise.
4666 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4667 * doc/Makefile.am (neutralize): Remove, no longer needed.
4668 (.x.1): Don't use neutralize.
4669 (edit): Don't substitute for ID.
4670 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4671
c53d18b1
JD
46722008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4673
4674 Fix dependence on computed configure variables.
4675 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4676 $(top_srcdir)/configure.ac so that changes to computed variables, such
4677 as PACKAGE_VERSION, are seen.
4678 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4679
5523ac79
JD
46802008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4681
4682 Update copyright dates for recent changes.
4683 * Makefile.am: Here.
4684 * src/Makefile.am: Here.
4685 * src/reduce.c: Here.
4686 * tests/reduce.at: Here.
4687
8fa36911
JD
46882008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4689
4690 Use git-version-gen for version names between releases.
4691 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4692 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4693 * .prev-version: New.
4694 * .version.in: Remove.
78029cd5 4695 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
4696 revision.
4697 * GNUmakefile: Remove, now copied from Gnulib.
4698 * Makefile.am: Add code suggested by comments in
4699 build-aux/git-version-gen.
4700 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4701 .prev-version, and .version.
4702 * NEWS (2.3b+): Rename to...
4703 (?.?): ... this because we're dropping the "+" version naming scheme,
4704 but, in general, we still can't be sure of our next release name.
4705 * bootstrap: Add a quick hack to remove from .gitignore the
4706 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4707 entry. This should really be fixed in gnulib instead.
4708 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4709 * configure.ac (AC_INIT): Set version name by invoking
4710 build-aux/git-version-gen.
4711 (AC_CONFIG_FILES): Remove .version, now generated by
4712 build-aux/git-version-gen.
4713 * maint.mk: New, copied from coreutils.
4714 * doc/.cvsignore (bison.1): Add.
4715 * doc/.gitignore (/bison.1): Add.
4716 * doc/bison.1: Remove, generated.
4717 * src/.cvsignore (revision.c): Remove.
4718 * src/.gitignore (/revision.c): Remove.
4719 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4720 (BUILT_SOURCES): Remove revision.c.
4721 (revision.c): Remove.
4722 * src/getargs.c (version): Don't print revision after the VERSION.
4723 * src/revision.h: Remove.
4724
bcf07cb7
JD
47252008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4726
4727 Fix untranslatable composition of sentences. Reported by Goran
4728 Uddeborg at
4729 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4730 * THANKS (Goran Uddeborg): Add.
4731 * src/reduce.c (reduce_print): Report the number of nonterminals and
4732 rules useless in the grammar in separate sentences.
4733 * tests/reduce.at (Useless Rules): Update output.
4734 (Reduced Automaton): Likewise.
4735 (Underivable Rules): Likewise.
4736 (Empty Language): Likewise.
4737
9aacab9a
JD
47382008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4739
4740 Fix some .gitignore and .cvsignore problems.
4741 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4742 (insert_vc_ignore): ... this new function, which prepends `/' to all
4743 .gitignore entries before passing them to insert_sorted_if_absent.
4744 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4745 .cvsignore files are maintained even though Bison developers run
4746 bootstrap while using Git.
4747 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4748 unneeded by Bison.
4749 (gnulib): Add.
4750 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4751 unneeded. Reported by Eric Blake.
4752 * lib/.gitignore (/*~): Add.
4753 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4754 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4755 Blake.
4756 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4757
a9fc7990
JD
47582008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4759
4760 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4761 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4762 * bootstrap.conf (gnulib_modules): Add unsetenv.
4763 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4764 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4765 (/setenv.m4): Add.
4766 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4767 the first argument because it may become position-dependent, and unset
4768 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4769 Add comments explaining these issues in more detail.
4770
0f1d6f10
JD
47712008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4772
4773 Add .gitignore everywhere based on .cvsignore.
4774 * .gitignore: New.
4775 * build-aux/.gitignore: New.
4776 * data/.gitignore: New.
4777 * doc/.gitignore: New.
4778 * etc/.gitignore: New.
4779 * examples/.gitignore: New.
4780 * examples/calc++/.gitignore: New.
4781 * lib/.gitignore: New.
4782 * m4/.gitignore: New.
4783 * po/.gitignore: New.
4784 * runtime-po/.gitignore: New.
4785 * src/.gitignore: New.
4786 * tests/.gitignore: New.
4787
7bd1665a
JD
47882008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4789
4790 * NEWS (2.3b+): New section, empty for now.
4791 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4792
72c5b982
JD
47932008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4794
4795 * NEWS (2.3b): Update release date since there has been a delay in
4796 getting the announcements and tarballs out.
4797
bd02cd5d
JD
47982008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4799
4800 * NEWS: Version 2.3b.
4801 * configure.ac (AC_INIT): Likewise.
4802 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4803
9126263e
JD
48042008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4805
4806 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4807 been doing it for years.
4808 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4809 (Release Procedure): Add FIXME about make alpha being unmaintained.
4810
fa6aa7b3
JD
48112008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4812
4813 * data/yacc.c: Reformat m4 a little for readability.
4814 * src/lalr.c (build_relations): Correct comment.
4815
d30b312d
JMG
48162008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4817
4818 DJGPP specific issue.
4819 * djgpp/config.sed: Fixes required to run configure scripts generated
4820 by autoconf 2.62.
4821
138d4cd9
JD
48222008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4823
4824 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4825 coordinator@translationproject.org.
4826
8f7e2e1f
JD
48272008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4828
4829 * THANKS: Add Eric Blake.
4830
f55efa38
JD
48312008-04-23 Eric Blake <ebb9@byu.net>
4832
4833 Revert prior patch, by working around autoconf regression.
4834 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4835 ("Output file name: ("): Uncomment test.
4836 ("Output file name: )"): Likewise.
4837 Based on an idea from Noah Misch.
4838
096c9f9d
JD
48392008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4840
4841 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4842 2.61. Reported by Juan Manuel Guerrero at
4843 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4844 * tests/output.at ("Output file name: ("): Comment out test case for
4845 now.
4846 ("Output file name: )"): Likewise.
4847
0f664b89
JD
48482008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4849
4850 * GNUmakefile: Update git-version-gen invocation so make dist
4851 succeeds.
4852
1cfe6375
JD
48532008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4854
4855 Update to the current gnulib CVS repository, and fix trigraph handling
4856 in Bison.
4857 * bootstrap: Update gnulib CVS repository URL.
4858 (symlink_to_dir): Encapsulate the code that guarantees the destination
4859 directory exists into...
4860 (check_dst_dir): ... this new function, and...
4861 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4862 fail when copying files into lib/uniwidth/.
4863 * src/output.c (prepare_symbols): When writing yytname muscles, where
4864 symbol names will be encoded in C-string literals, tell quotearg to
4865 escape trigraphs. This used to be the default in gnulib.
4866 * tests/regression.at (Token definitions): Because of the change in
4867 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4868 escapes trigraphs in symbol names. Thus, yytname no longer has
4869 trigraphs unnecessarily doubly escaped. Update test case output.
4870 Extend test case to be sure Bison's own error messages will no longer
4871 have trigraphs in symbol names unnecessarily escaped once.
4872
74c52fc8
JD
48732008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4874
4875 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4876 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4877 * .cvsignore: Add .version.
4878 * .version.in: New.
4879 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4880 * configure.ac (AC_CONFIG_FILES): Add .version.
4881 * build-aux/.cvsignore: Add git-version-gen.
4882
8e55b3aa
JD
48832008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4884
4885 * NEWS (2.3a+): Mention that -g now takes an argument.
4886 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4887 consistency. Update the -g and -x entries now that they take
4888 arguments. Use brackets to indicate optional arguments.
4889 * src/getargs.c (usage): Explain the relationship between arguments of
4890 long and short options more completely. Document --defines and -d
4891 separately since the former takes an argument but, for POSIX Yacc, the
4892 latter does not.
4893 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 4894 (getargs): Sort cases.
8e55b3aa 4895
59c5ac72
AD
48962008-02-28 Akim Demaille <demaille@gostai.com>
4897
4898 * doc/bison.texinfo: Fix a few typos.
4899
118d4978
AD
49002008-02-28 Akim Demaille <akim@epita.fr>
4901
4902 * doc/bison.texinfo (Bison Options): Document -W.
4903 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4904
7020f1e9
AD
49052008-02-28 Akim Demaille <akim@epita.fr>
4906
4907 * src/getargs.c (short_options): Split and sort for readability.
4908 -g and -x take optional arguments, just like their long options.
4909 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4910 understand.
4911 Fix the handling of $opt which resulted in all the argument to be
4912 considered as optional.
4913
59da312b
JD
49142008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4915
4916 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4917 say its interface is experimental.
4918 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4919 Java.
4920 (Bison Options): In the -L and --language entry, mention Java.
4921 (Java Bison Interface): Say the interface is experimental.
4922 * src/getargs.c (usage): Mention -L and --language.
4923
4924 * NEWS (2.3a+): Say the push parsing interface is experimental.
4925 * doc/bison.texinfo (Push Decl): Likewise.
4926 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4927 (Push Parser Function): Likewise.
4928 (Pull Parser Function): Likewise.
4929 (Parser Create Function): Likewise.
4930 (Parser Delete Function): Likewise.
4931 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4932 yypull_parse, and yypush_parse entries.
4933
4934 * NEWS (2.3a+): Mention XML support, and say the schema is
4935 experimental.
4936 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4937 * src/getargs.c (usage): Say the XML schema is experimental.
4938
4939 * NEWS (2.3a+): Say option instead of flag.
4940
2bb3ebec
WP
49412008-02-21 Wojciech Polak <polak@gnu.org>
4942
4943 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4944 text.
4945
333e670c
JD
49462008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4947
4948 Fix impure push parser compile error reported by Bob Rossi at
4949 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4950 * data/yacc.c: Clean up whitespace in the output a little.
4951 (yypstate_allocated): Define for impure push parsers regardless of
4952 whether the pull interface is also requested.
4953 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4954 check impure push parsers without the pull interface.
4955
4956 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4957 yyerror takes arguments specified by %parse-param while yypstate_new
4958 does not.
4959 * doc/bison.texinfo (Parser Create Function): Document that
4960 yypstate_new returns 0 for multiple impure parser instances.
4961 * tests/push.at (Push Parsing: Multiple impure instances): Update
4962 expected stderr output.
4963
798096e1
JD
49642008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4965
4966 * runtime-po/POTFILES.in (push.c): Remove.
4967
9ca7f077
JD
49682008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4969
4970 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4971 * data/push.c: Rename to...
4972 * data/yacc.c: ... this, overwriting it.
4973 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4974 `%push-pull-parser' -> `%define api.push_pull "both"'.
4975 Remove old yacc.c tests, and update push.c tests to yacc.c.
4976
42ee26bb
JD
49772008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4978
4979 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4980 `"%code top" blocks' instead of `%code "top" blocks'.
4981 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4982 Clean up whitespace in the output a little.
4983
b1cc23c4
JD
49842008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4985
4986 Fix documentation problems reported by Tim Josling at
4987 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4988 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4989 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4990 integers. Explain the effect of literal string aliases on error
4991 messages. Copy token 0 documentation from the C++ skeleton
4992 documentation.
4993
ab7f29f8
JD
49942008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4995
4996 Accept a token number in a %left, %right, or %nonassoc for POSIX
4997 conformance. Reported by Tim Josling at
4998 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4999 * NEWS (2.3a+): Mention.
5000 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
5001 and code numbers are treated by precedence declarations.
5002 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
5003 of symbols.1.
5004 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
5005 of symbol.
5006 (symbol.prec): New, just like symbol but allows INT.
5007 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
5008 longer holds.
5009 * tests/regression.at (Token number in precedence declaration): New
5010 test case.
5011
a924ef36
JMG
50122008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5013
5014 DJGPP specific issues.
5015 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
5016 be changed. Copyright timestamp adjusted.
5017 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
5018 be changed. Copyright timestamp adjusted.
5019 * djgpp/config.site: Copyright timestamp adjusted.
5020 * djgpp/config_h.sed: Copyright timestamp adjusted.
5021 * djgpp/djunpack.bat: Copyright timestamp adjusted.
5022 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
5023 filename translation list.
5024 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5025 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5026 files shall be created. Before trying to use the temp dir where the
5027 environment variable points to check that the dir really exists. If
5028 not default to the cwd as temp dir. Copyright timestamp adjusted.
5029 * djgpp/subpipe.h: Copyright timestamp adjusted.
5030 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5031
389c8cfd
PE
50322008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5033
5034 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5035
5d1cfef4
PE
50362008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5037
5038 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5039 Problem reported by Claudio Saavedra in
5040 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5041
e2dcf996
WP
50422008-01-05 Wojciech Polak <polak@gnu.org>
5043
5044 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5045 document's title with the input grammar file name.
5046
da730230
JD
50472007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5048
5049 Automate regression testing of the XML/XSLT implementation. Discussed
5050 starting at
5051 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5052 * configure.ac (XSLTPROC): New substitution.
5053 * Makefile.am (maintainer-xml-check): New phony target invoking...
5054 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5055 invoking make maintainer-check with BISON_TEST_XML=1.
5056 * tests/atlocal.in (XSLTPROC): New.
5057 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5058 not to report reachable memory when Bison is expected to have a
5059 non-zero exit status and (2) to compare XML/XSLT output with --graph
5060 and --report=all output for every working grammar when
5061 BISON_TEST_XML=1.
5062 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5063 (AT_BISON_CHECK_XML): New.
5064 (AT_QUELL_VALGRIND): New.
5065 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5066 (AT_CHECK): ... don't redefine this since this was the old way to
5067 quell Valgrind.
5068 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5069 AT_BISON_CHECK invocations.
5070 * tests/c++.at: Likewise.
5071 * tests/calc.at: Likewise.
5072 * tests/conflicts.at: Likewise.
5073 * tests/cxx-type.at: Likewise.
5074 * tests/existing.at: Likewise.
5075 * tests/glr-regression.at: Likewise.
5076 * tests/headers.at: Likewise.
5077 * tests/input.at: Likewise.
5078 * tests/java.at: Likewise.
5079 * tests/output.at: Likewise.
5080 * tests/push.at: Likewise.
5081 * tests/reduce.at: Likewise.
5082 * tests/regression.at: Likewise.
5083 * tests/sets.at: Likewise.
5084 * tests/skeletons.at: Likewise.
5085 * tests/synclines.at: Likewise.
5086 * tests/torture.at: Likewise.
5087 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5088 tends to hang xsltproc.
5089 (Big horizontal): Likewise.
5090
408476bc
JD
50912007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5092
5093 In XML output, remove redundant class attribute on symbol element.
5094 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
5095 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
5096 look up a symbol to determine whether it's a nonterminal or terminal.
5097 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
5098 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
5099
5100 Add prec/assoc information to XML output.
5101 * src/gram.c (grammar_rules_print_xml): For each rule that has a
5102 %prec, add a percent_prec attribute.
5103 * src/print-xml.c (print_grammar): For each terminal that has a
5104 precedence or associativity, add a prec or assoc attribute.
5105 (xml_indent): New.
5106 (xml_puts): Use xml_indent.
5107 (xml_printf): Use xml_indent.
5108 * src/print-xml.h (xml_indent): Prototype.
5109
5110 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5111 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5112
d4a26c48
JD
51132007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5114
5115 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5116 (bison:ruleByNumber): ... this for clarity.
5117 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5118 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5119 (xsl:template match="reduction"): Update.
5120 (xsl:template match="item"): Update.
5121 (xsl:template match="reduction"): Update.
5122
5123 In the XML output, don't print the list of rules where symbols appear.
5124 Compute it in XSLT instead. Discussed at
5125 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5126 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5127 (bison:ruleByRhs): New.
5128 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5129 bison:ruleByRhs.
5130 (xsl:template match="terminal/rule"): Remove.
5131 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5132 bison:ruleByRhs.
5133 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5134 Remove.
5135 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5136 bison:ruleByRhs and mode="number-link" for rule template.
5137 (xsl:template match="terminal/rule"): Remove.
5138 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5139 bison:ruleByRhs and mode="number-link" for rule template.
5140 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5141 Rewrite as...
5142 (xsl:template match="rule" mode="number-link"): ... this.
5143 * src/print-xml.c (print_grammar): Don't print the list of rules.
5144
ef1b4273
JD
51452007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5146
5147 Don't let --report affect XML output; always print all information.
5148 Discussed at
5149 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5150 * src/conflicts.c (log_resolution): Implement.
5151 * src/print-xml.c (print_core): Implement.
5152 (print_state): Implement.
5153 (print_xml): Implement.
5154
5155 * NEWS (2.3a+): Fix quotes.
5156 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5157 don't let %verbose clear the list specified by --report.
5158
0f6cd9e3
AD
51592007-11-26 Akim Demaille <akim@epita.fr>
5160
5161 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5162
d80fb37a
JD
51632007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5164
5165 In the XML output, list useless and unused symbols and rules with the
5166 useful ones and add a "usefulness" attribute. Discussed starting at
5167 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5168 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5169 (grammar_rules_print_xml): Print all rules instead of just those
5170 useful in the grammar, and add a "usefulness" attribute.
5171 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5172 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5173 (print_grammar): Print all nonterminals instead of just useful ones,
5174 and add a "usefulness" attribute to nonterminals and terminals.
5175 (print_xml): Don't print a separate "reductions" or
5176 "rules-useless-in-parser" element.
5177 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5178 (reduce_xml): Remove.
5179 (reduce_token_unused_in_grammar): New.
5180 (reduce_nonterminal_useless_in_grammar): New.
5181 * src/reduce.h (reduce_xml): Remove prototype.
5182 (reduce_token_unused_in_grammar): Add prototype.
5183 (reduce_nonterminal_useless_in_grammar): Add prototype.
5184 * data/xslt/xml2text.xsl: Update for XML changes.
5185 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5186 * tests/reduce.at (Useless Terminals): Update output.
5187 (Useless Rules): Update output.
5188 (Reduced Automaton): Update output.
5189
5190 Say "Terminals unused in grammar" instead of "Unused terminals".
5191 * NEWS (2.3a+): Update.
5192 * doc/bison.texinfo (Understanding): Update example output.
5193 * src/reduce.c (reduce_output): Implement.
5194 * data/xslt/xml2text.xsl: Implement.
5195 * data/xslt/xml2xhtml.xsl: Implement.
5196
1bb2bd75
JD
51972007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5198
5199 Accept --report-file=FILE to override the default `.output' filename.
5200 * NEWS (2.3a+): Mention.
5201 * doc/bison.texinfo (Bison Options): Add an entry.
5202 * src/files.c (compute_output_file_names): Don't override
5203 spec_verbose_file if already set.
5204 * src/getargs.c (usage): Document --report-file.
5205 (REPORT_FILE_OPTION): New anonymous enum member.
5206 (long_options): Add entry for it.
5207 (getargs): Add case for it setting spec_verbose_file.
5208
5209 * build-aux/cross-options.pl: Don't record a short option just because
5210 there's an arg.
5211 * doc/.cvsignore: Add yacc.1.
5212
a005a9c4
AD
52132007-11-14 Akim Demaille <akim@epita.fr>
5214
5215 * doc/yacc.1.in: New.
5216 * configure.ac, doc/Makefile.am: Adjust.
5217 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5218 config.h symbol.
5219 Use AC_SUBST for assignments too.
5220 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5221
cff03fb2
JD
52222007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5223
5224 * src/gram.c: Remove comments that duplicate comments in gram.h.
5225
5226 When reporting useless rules and nonterminals, say "useless in grammar"
5227 instead of "useless", and say "useless in parser" instead of "never
5228 reduced". Discussed starting at
5229 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5230 * NEWS (2.3a+): Mention this change.
5231 * data/xslt/xml2text.xsl: Update output text and expected input XML
5232 element names to match changes below.
5233 * data/xslt/xml2xhtml.xsl: Likewise.
5234 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5235 Contents: "Rules useless in parser due to conflicts".
5236 * doc/bison.texinfo (Decl Summary): Reword a little.
5237 (Understanding): Update example output for changes below.
5238 * src/gram.c: (rule_useful_p): Rename to...
5239 (rule_useful_in_grammar_p): ... this.
5240 (rule_useless_p): Rename to...
5241 (rule_useless_in_grammar_p): ... this.
5242 (rule_never_reduced_p): Rename to...
5243 (rule_useless_in_parser_p): ... this.
5244 (grammar_rules_print): Update for renames.
5245 (grammar_rules_print_xml): Update for renames.
5246 (grammar_rules_never_reduced_report): Rename to...
5247 (grammar_rules_useless_report): ... this since it is used for either
5248 kind of useless rule.
5249 * src/gram.h: Reword comments and update function names in prototypes.
5250 * src/main.c (main): Say "rule useless in parser due to conflicts".
5251 * src/print-xml.c (print_rules_never_reduced): Rename to...
5252 (print_rules_useless_in_parser): ... this, and rename output XML
5253 element "rules-never-reduced" to "rules-useless-in-parser".
5254 (print_xml): Update for rename.
5255 * src/print.c (print_results): Say "Rules useless in parser due to
5256 conflicts".
5257 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5258 (nonterminals_reduce): Say "nonterminal useless in grammar".
5259 (reduce_output): Say "Nonterminals useless in grammar".
5260 Say "Rules useless in grammar".
5261 (reduce_xml): Rename output XML element "useless" to
5262 "useless-in-grammar".
5263 (reduce_print): Don't report the count of grammatically useless rules
5264 as "rules never reduced" just because %yacc is specified.
5265 In the correct report of this count, say nonterminal(s) and rule(s)
5266 "useless in grammar".
5267 * tests/conflicts.at (S/R in initial): Update expected output.
5268 (Defaulted Conflicted Reduction): Likewise.
5269 (Unreachable States After Conflict Resolution): Likewise.
5270 * tests/existing.at (GNU pic Grammar): Likewise.
5271 * tests/reduce.at (Useless Nonterminals): Likewise.
5272 (Useless Rules): Likewise.
5273 (Reduced Automaton): Likewise.
5274 (Underivable Rules): Likewise.
5275 (Empty Language): Likewise.
5276
66f0441d
JD
52772007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5278
5279 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5280 here document and before the EOF so that BSD's implementation of Bourne
5281 shell doesn't parse the delimiter as part of the here document.
5282 * doc/.cvsignore: Add cross-options.texi.
5283 * src/getargs.c (usage): Add a blank line after the warning categories.
5284
d0ee4105
PB
52852007-11-08 Paolo Bonzini <bonzini@gnu.org>
5286
5287 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5288
e8b1fb9b
AD
52892007-11-05 Akim Demaille <akim@epita.fr>
5290
5291 Remove Id: from bison.1.
5292 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5293 (perl -0777 -pi -e 's/\.PP\nId): New.
5294 (.x.1): Use it to ignore the version control revision.
5295
2f7a96b5
AD
52962007-11-05 Akim Demaille <demaille@gostai.com>
5297
5298 * build-aux/Makefile.am: Ship cross-options.pl.
5299 * doc/Makefile.am: Always refer to cross-options.texi with
5300 $(srcdir).
5301 (MAINTAINERCLEANFILES): Add it.
5302
f4101aa6
AD
53032007-11-04 Akim Demaille <demaille@gostai.com>
5304
5305 Generate the long/short option cross-table.
5306 * build-aux/cross-options.pl: New.
5307 * doc/Makefile.am (cross-options.texi): New.
5308 * doc/bison.texinfo: Use it.
5309
727a1401
AD
53102007-11-04 Akim Demaille <demaille@gostai.com>
5311
5312 Generate bison.1 using help2man.
5313 * doc/common.x, doc/bison.x: New.
5314 * doc/Makefile.am (bison.1, .x.1): New.
5315 The code is taken from autoconf-2.61/man/Makefile.am.
5316 * configure.ac: Look for help2man.
5317
6aeb9c57
AD
53182007-11-04 Akim Demaille <demaille@gostai.com>
5319
5320 Complete --help.
5321 * src/getargs.c (usage): Document -W, make it clear that -d,
5322 -g and -x have optional arguments.
5323
d7be4085
AD
53242007-11-04 Akim Demaille <demaille@gostai.com>
5325
5326 Find sha1sum when named gsha1sum.
5327 * bootstrap (find_tool): New.
5328 ($SHA1SUM): New.
5329
d9df47b6
JD
53302007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5331
5332 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5333 at
5334 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5335 * NEWS (2.3a+): Mention.
5336 * data/bison.m4 (b4_pure_if): Don't define it here.
5337 * data/c.m4 (b4_identification): Depend on individual skeletons to
5338 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5339 values of the %define variables api.pure or api.push_pull. Define
5340 YYPURE, YYPUSH, and YYPULL accordingly.
5341 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5342 glr.cc has already defined b4_pure_flag.
5343 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5344 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 5345 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
5346 * doc/bison.texinfo (Pure Decl): Update.
5347 (Push Decl): Update.
5348 (Decl Summary): Add api.pure to %define entry.
5349 In %pure-parser entry, say it's deprecated and reference %define.
5350 (Pure Calling): Update.
5351 (Error Reporting): Update.
5352 (C++ Scanner Interface): Update.
5353 (How Can I Reset the Parser): Update.
5354 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5355 reference %define.
5356 * src/getargs.c (pure_parser): Remove global variable.
5357 * src/getargs.h (pure_parser): Remove extern.
5358 * src/output.c (prepare): Don't define pure_flag muscle.
5359 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5360 wrapper around `%define api.pure'.
5361 * tests/calc.at (Simple LALR Calculator): Update.
5362 (Simple GLR Calculator): Update.
5363 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5364 Update.
5365 (GLR: Resolve ambiguity, pure, locations): Update.
5366 (GLR: Merge conflicting parses, pure, no locations): Update.
5367 (GLR: Merge conflicting parses, pure, locations): Update.
5368 * tests/glr-regression.at (Uninitialized location when reporting
5369 ambiguity): Update
5370 * tests/input.at (Unused %define api.pure): New test case.
5371 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5372 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5373 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5374
c373bf8b
JD
53752007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5376
5377 %define push_pull -> %define api.push_pull. Discussed starting at
5378 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5379 * data/push.c: Expect the new name.
5380 * data/yacc.c: Likewise.
5381 * doc/bison.texinfo (Push Decl): Update.
5382 (Decl Summary): Update %define entry.
5383 (Push Parser Function): Update.
5384 (Pull Parser Function): Update.
5385 (Parser Create Function): Update.
5386 (Parser Delete Function): Update.
5387 * tests/calc.at (Simple LALR Calculator): Update.
5388 * tests/input.at (%define enum variables): Update.
5389 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5390 (Push Parsing: Multiple impure instances): Update.
5391 (Push Parsing: Unsupported Skeletons): Update.
5392 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5393 (Exploding the Stack Size with Malloc): Update.
5394
5395 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5396 other entries some.
5397
32f19b6b
JD
53982007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5399
5400 For the XML output's terminal element, rename @number to @token-number,
5401 and add @symbol-number. In the nonterminal element, rename @number to
5402 @symbol-number. Discussed starting at
5403 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5404 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5405 renames.
5406 (xsl:template match="nonterminal"): Likewise.
5407 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5408 (xsl:template match="nonterminal"): Likewise.
5409 * src/print-xml.c (print_grammar): Implement.
5410
255a6b90
JD
54112007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5412
5413 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5414 2007-10-11 change, the child elements here are items not rules.
408476bc 5415 (xsl:template match="item"): New.
255a6b90
JD
5416 (xsl:template match="rule"): Update for new reduced itemset.
5417 (xsl:template match="point"): Remove.
5418 (xsl:template match="empty"): For consistency with --graph, don't
5419 output "/* empty */".
5420 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5421 line-wrap, don't pass a negative value as first-line-length since this
5422 won't work with the following changes.
5423 (xsl:template name="line-wrap"): Simplify slightly.
5424 (xsl:template name="ws-search"): Eliminate recursion.
5425 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5426 set next to an item whose dot is not at the end of the RHS even if it
5427 happens to be associated with the same rule.
5428
88c78747
JD
54292007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5430
31984206
JD
5431 Add %define lr.keep_unreachable_states.
5432 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5433 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5434 * src/main.c (main): Implement it.
5435 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5436 Extend to test it, and fix a typo.
5437
54382007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5439
5440 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
5441 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5442 the example .output text.
5443 * tests/regression.at (Extra lookahead sets in report): Improve wording
5444 of comments.
5445
b7a70162
WP
54462007-10-17 Wojciech Polak <polak@gnu.org>
5447
5448 * src/print-xml.c (print_grammar): Renamed
5449 <terminal> and <nonterminal> attributes:
5450 "type" to "number" and "symbol" to "name".
5451 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5452 Use new attribute names.
5453 (xsl:template match="nonterminal"): Likewise.
5454 * data/xslt/xml2xhtml.xsl: Likewise.
5455
a0de5091
JD
54562007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5457
5458 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5459 (Option Cross Key): Likewise.
5460
5461 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5462 next to an item whose dot is not at the end of the RHS even if it
5463 happens to be associated with the same rule.
5464 * src/print.c (print_core): Likewise.
5465 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5466 (Resolved SR Conflicts): Update output.
5467 * tests/regression.at (Extra lookahead sets in report): New test case.
5468
4c20d18d
WP
54692007-10-11 Wojciech Polak <polak@gnu.org>
5470
5471 * src/print-xml.c (print_core): Remove item set
5472 redundancy.
5473 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5474 Improve processing time. Suggested by Joel E. Denny.
5475 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5476 Write xsl:param "required" attribute as comment.
5477 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5478 (xsl:template match="rule"): Support new reduced itemset.
5479 (xsl:template match="point"): Remove.
5480 * data/xslt/xml2xhtml.xsl: Likewise.
5481
f506ad1c
JD
54822007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5483
5484 * src/getargs.c (version): Update copyright year.
5485
21f1b063
JD
54862007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5487
5488 Make xml2dot.xsl and --graph produce the same output.
5489 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5490 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5491 escaped later.
5492 (xsl:template name="output-node"): Use the new escape template instead
5493 of the string-replace template directly.
5494 (xsl:template name="output-edge"): Likewise.
5495 (xsl:template name="escape"): New, escapes backslashes and newlines in
5496 addition to quotation marks.
5497 * src/graphviz.c (start_graph, output_node, output_edge): Add
5498 whitespace to output for legibility.
5499
5500 Make xml2text.xsl and --report produce the same output, and remove the
5501 XML "conflicts" element since a conflict summary is easily extracted
5502 from the automaton.
5503 * data/xslt/bison.xsl: New.
5504 (xsl:template match="state" mode="bison:count-conflicts): New.
5505 * data/xslt/xml2text.xsl: Import bison.xsl.
5506 (xsl:template match="bison-xml-report"): Instead of styling the
5507 "conflicts" element, style the "automaton" element with mode
5508 "conflicts". Unlike the former, the latter lists S/R and R/R
5509 conflicts for a state on the same line.
5510 (xsl:template match="conflicts"): Remove.
5511 (xsl:template match="conflict"): Remove.
5512 (xsl:template match="terminal"): Line-wrap the list of rules in which
5513 the terminal is used.
5514 (xsl:template match="nonterminal"): Likewise for nonterminals.
5515 (xsl:template match="automaton" mode="conflicts"): New.
5516 (xsl:template match="state" mode="conflicts"): New.
5517 (xsl:template name="line-wrap"): New.
5518 (xsl:template name="ws-search"): New.
5519 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5520 (xsl:template match="bison-xml-report"): Instead of styling the
5521 "conflicts" element, style the "automaton" element with mode
5522 "conflicts."
5523 (xsl:template match="conflicts"): Remove.
5524 (xsl:template match="conflict"): Remove.
5525 (xsl:template match="automaton" mode="conflicts"): New.
5526 (xsl:template match="state" mode="conflicts): New.
5527 * src/conflicts.c (conflicts_output_xml): Remove.
5528 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5529 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5530 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5531 the corresponding XSLT is easier. Also, never wrap between a word and
5532 the comma that follows it.
5533
793fbca5
JD
55342007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5535
5536 Improve C++ namespace support. Discussed starting at
5537 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5538 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5539 b4_namespace_close): New macros that interpret the %define variable
5540 "namespace" so its value can contain "::" to indicate nested
5541 namespaces.
5542 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5543 the above macros.
5544 * data/lalr1.cc (b4_namespace): Likewise.
5545 * data/location.cc (b4_namespace): Likewise.
5546 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5547 inside a new table in the general %define entry. Document `%define
5548 namespace' there as well. Point the %name-prefix entry to it since it
5549 explains it more completely in the case of C++.
5550 (C++ Bison Interface): Mention `%define namespace' instead of
5551 %name-prefix.
5552 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5553 entry suffices.
5554 * tests/c++.at (Relative namespace references): New test case.
5555 (Absolute namespace references): New test case.
5556 (Syntactically invalid namespace references): New test case.
5557 * tests/input.at (C++ namespace reference errors): New test case.
5558
35b8730d
JD
55592007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5560
5561 Add syncline support and location accessor to internal %define
5562 interfaces.
5563 * data/bison.m4 (b4_percent_define_get_loc): New.
5564 (b4_percent_define_get_syncline): New.
5565 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5566 (b4_percent_define_default): Record defining location as line 1 rather
5567 than 0 for the sake of synchronizing #line's, and define
5568 b4_percent_define_syncline(VARIABLE).
5569 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5570 * src/muscle_tab.c (muscle_syncline_grow): New.
5571 (muscle_code_grow): Use muscle_syncline_grow.
5572 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5573 define b4_percent_define_syncline(VARIABLE).
5574 (muscle_percent_define_get_loc): New.
5575 (muscle_percent_define_get_syncline): New.
5576 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5577 remove some unused variables.
5578 (muscle_percent_define_default): Record defining location as line 1
5579 rather than 0 for the sake of synchronizing #line's, and define
5580 b4_percent_define_syncline(VARIABLE).
5581 (muscle_percent_define_check_values): Use
5582 muscle_percent_define_get_loc.
5583 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5584 (muscle_percent_define_get_syncline): Prototype.
5585 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5586 defaults): Update output for location change.
5587 (Complaining during macro argument expansion): Extend to test
5588 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5589
7dc4a694
JD
55902007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5591
5592 Fix some error-reporting macro bugs.
5593 * data/bison.m4 (b4_cat): New.
5594 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5595 to stdout so they don't become arguments to other macros. Update
5596 comments and add examples.
5597 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5598 add examples.
5599 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5600 after printing the error directive so that M4 doesn't report subsequent
5601 problems that are induced by this problem.
5602 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5603 instead of just in them. Recognize @\n in both places. Both expand to
5604 the empty string. Needed by b4_cat.
5605 * tests/skeletons.at (Complaining during macro argument expansion):
5606 New test case.
5607 (Fatal errors make M4 exit immediately): New test case.
5608
d4bd2295
JD
56092007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5610
5611 Implement --print-datadir.
5612 * src/getargs.c (usage): Mention.
5613 (PRINT_DATADIR_OPTION): New anonymous enum member.
5614 (long_options): Add entry for it.
5615 (getargs): Add case for it calling compute_pkgdatadir.
5616 * src/output.c (output_skeleton): Encapsulate data directory
5617 computation from here...
5618 (prepare): ... and from here...
5619 (compute_pkgdatadir): ... into this new function.
5620 * src/output.h (compute_pkgdatadir): Prototype.
5621
34cdeddf
JD
56222007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5623
5624 * src/print-xml.c (escape_bufs): New static global variable
5625 replacing...
5626 (xml_escape_n): ... the static local variable buf here.
5627 (print_xml): Free memory for escape_bufs.
5628 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5629
d782395d
JD
56302007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5631
5632 Replace `%push-parser' and `%push-pull-parser' with
5633 `%define push_pull "push"' and `%define push_pull "both"'.
5634 `%define push_pull "pull"' is the default.
5635 * doc/bison.texinfo (Push Decl, Push Parser Function,
5636 Pull Parser Function, Parser Create Function, Parser Delete Function):
5637 Update declarations.
5638 (Decl Summary, Table of Symbols): Replace %push-parser and
5639 %push-pull-parser entries with a %define push_pull entry.
5640 * data/bison.m4 (b4_percent_define_check_values): New macro.
5641 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5642 definitions...
5643 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5644 definitions...
5645 * data/push.c: ... to here and compute them from the value of the
5646 %define variable push_pull.
5647 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5648 parsing requests here...
5649 * data/yacc.c: ... hack this to switch to push.c any time
5650 b4_use_push_pull_flag or the %define variable push_pull is set. This
5651 will go away when we mv push.c yacc.c.
5652 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5653 push parsing is not supported since unused %define variables are
5654 reported anyway.
5655 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5656 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5657 comments for consistency with b4_percent_define_check_values.
5658 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5659 muscles.
5660 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5661 Remove.
5662 (prologue_declaration): Remove %push-parser and %push-pull-parser
5663 rules.
5664 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5665 * tests/calc.at: Update declarations.
5666 * tests/input.at (%define enum variables): New test case.
5667 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5668 declaration.
5669 (Push Parsing: Multiple impure instances): Update declaration.
5670 (Push Parsing: Unsupported Skeletons): New test case.
5671 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5672 declaration.
5673 (Exploding the Stack Size with Malloc): Update declaration.
5674
3f999f78
WP
56752007-09-24 Wojciech Polak <polak@gnu.org>
5676
5677 Add XSLT transformations.
5678
5679 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5680 * data/xslt/xml2text.xsl: Transform XML into plain text.
5681 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5682 * data/Makefile.am (xsltdir): New variable.
5683 (dist_xslt_DATA): Add xslt/*.xsl files.
5684
a4f75309
PE
56852007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5686
5687 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5688 Problem reported by Wojciech Polak.
5689 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5690 (xml_printf): Undo change I made on 21 September; that is,
5691 indent 2 spaces, not 1.
5692
ad5feac4
JD
56932007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5694
5695 Pacify ./configure --enable-gcc-warnings.
5696 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5697 `char const *' instead of `char *'.
5698 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5699 local variable `sep'.
5700
41d7a5f2
PE
57012007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5702
5703 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5704 elsewhere.
5705 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5706 (xml_printf): Indent just 1 space for level.
5707 (e_char, xlate_char): Remove.
5708 (xml_escape_string): Rewrite to avoid undefined behavior (used
5709 storage that was freed from the stack).
5710 (xml_escape_n): Don't bother checking for subscript error.
5711
3f999f78
WP
57122007-09-21 Wojciech Polak <polak@gnu.org>
5713
5714 Add Bison XML Automaton Report.
41d7a5f2
PE
5715
5716 Add support for an -x option to generate an XML report.
5717 It is not documented yet.
5718 * src/print-xml.c: New file.
5719 * src/print-xml.h: Likewise.
5720 * lib/timevar.def (TV_XML): New var.
5721 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5722 * src/conflicts.c: Include print-xml.h.
5723 (solved_conflicts_xml_obstack): New var.
5724 (log_resolution, conflicts_solve, conflicts_free):
5725 Add support for XML report.
5726 (conflicts_output_val): New function.
5727 * src/conflicts.h (conflicts_output_val): New decl.
5728 * src/files.c (spec_xml_file): New var.
5729 (compute_output_file_names, output_file_names_free): Add XML support.
5730 * src/files.h (spec_xml_file): New decl.
5731 * src/getargs.c (xml_flag): New var.
5732 (usage, short_options, long_options, getargs): Add XML support.
5733 * src/getargs.h (xml_flag): New decl.
5734 * src/gram.c: Include print-xml.h.
5735 (rule_lhs_print_xml, rule_rhs_print_xml):
5736 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5737 New functions.
5738 * src/gram.h: Declare external ones.
5739 * src/main.c: Include print-xml.h.
5740 (main): Add XML support.
5741 * src/reduce.c: Include print-xml.h.
5742 (reduce_xml): New function.
5743 * src/reduce.h: Declare it.
5744 * src/state.c: Include print-xml.h.
5745 (state_new): Add XML support.
5746 (state_rule_lookahead_tokens_print_xml): New function.
5747 * src/state.h: Declare it.
5748 (struct state): New member solved_conflicts_xml.
5749 * src/symtab.c (symbol_class_get_string): New function.
5750 * src/symtab.h: Declare it.
5751
6d8e724d
PE
57522007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5753
5754 * GNUmakefile: Switch to coreutils's version.
5755 * bootstrap: Likewise.
5756 * Makefile.cfg: Adjust to new GNUmakefile.
5757 * README-hacking: Likewise.
5758
5759 Import from gnulib:
5760
5761 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5762 Bruno Haible <bruno@clisp.org>
5763
5764 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5765 and is a script that invokes bison. Tighten the code. Add comments.
5766
922bdd7f
JD
57672007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5768
5769 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5770 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5771 * doc/bison.texinfo (Decl Summary): Fix.
5772 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5773 * tests/input.at (Boolean %define variables): Update output.
5774 * tests/skeletons.at (%define boolean variables: invalid skeleton
5775 defaults): Rename to...
5776 (%define Boolean variables: invalid skeleton defaults): ... this and
5777 update output.
5778
1b17b01d
JD
57792007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5780
5781 In impure push mode, don't allow more than one yypstate to be allocated
5782 since multiple impure parsers would corrupt yynerrs.
5783 * data/push.c (yypstate_allocated): New static global variable
5784 initialized to 0.
5785 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5786 exhaustion if yypstate_allocated is 1, but still return 2.
5787 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5788 already 1. Otherwise, set it to 1.
5789 (yypstate_delete): Set it to 0.
5790 * tests/push.at (Push Parsing: Multiple impure instances): New test
5791 case.
5792
9987d1b3
JD
57932007-08-17 Bob Rossi <bob@brasko.net>
5794
5795 * doc/bison.texinfo (Push Decl): Document the push parser.
5796 (Table of Symbols): Ditto.
5797 (Pure Decl): Ditto.
5798 (Decl Summary): Ditto.
5799 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5800 Parser Create Function, Parser Delete Function):
5801 Add new push parser symbols.
5802 (Table of Symbols): Document push-parser, push-pull-parser,
5803 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5804
f16b0819
PE
58052007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5806
5807 Update to GPLv3.
5808 * doc/gpl-3.0.texi: New file.
5809 * doc/gpl.texi: Remove.
5810 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5811 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5812 * README-hacking, TODO, bootstrap, bootstrap.conf:
5813 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5814 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5815 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5816 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5817 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5818 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5819 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5820 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5821 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5822 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5823 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5824 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5825 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5826 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5827 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5828 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5829 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5830 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5831 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5832 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5833 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5834 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5835 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5836 * src/complain.c, src/complain.h, src/conflicts.c:
5837 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5838 * src/files.h, src/flex-scanner.h, src/getargs.c:
5839 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5840 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5841 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5842 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5843 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5844 * src/print.c, src/print.h, src/print_graph.c:
5845 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5846 * src/reduce.h, src/relation.c, src/relation.h:
5847 * src/revision.h, src/scan-code.h, src/scan-code.l:
5848 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5849 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5850 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5851 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5852 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5853 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5854 * tests/existing.at, tests/glr-regression.at:
5855 * tests/headers.at, tests/input.at, tests/java.at:
5856 * tests/local.at, tests/output.at, tests/push.at:
5857 * tests/reduce.at, tests/regression.at, tests/sets.at:
5858 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5859 * tests/torture.at:
5860 Update to GPLv3.
5861
728c4be2
JD
58622007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5863
5864 Get rid of broken %no-parser, -n, and --no-parser implementation and
5865 documentation.
5866 * TODO: Don't mention them.
5867 * doc/bison.1: Likewise.
5868 * doc/bison.texinfo (Decl Summary): Likewise.
5869 (Bison Options): Likewise.
5870 (Option Cross Key): Likewise.
5871 * src/getargs.c (no_parser_flag): Remove global variable.
5872 (usage): Don't print description of -n and --no-parser.
5873 (long_options): Remove --no-parser entry here.
5874 (getargs): Remove -n case in the switch here.
5875 * src/getargs.h (no_parser_flag): Remove extern.
5876 * tests/regression.at (Web2c Actions): Remove comment that mentions
5877 --no-parser.
5878
5d31a216
JD
58792007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5880
5881 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5882 name user variables starting with `yy'. Just pass NULL instead of a
5883 dummy local &yylval to yypush_parse.
5884 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5885 starting with `yy'.
5886
a2ea208d
JD
58872007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5888
5889 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5890 true since it's then always used regardless of whether yyoverflow is
5891 defined. Reported by Christian Burger at
5892 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5893 * THANKS: Add Christian Burger.
5894
91661ebb
JD
5895 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5896 node names: say "Decl Summary" not "Bison Declaration Summary".
5897
cbd50549
JD
58982007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5899
5900 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5901 determine whether this function has already complained about an invalid
5902 value for a %define boolean variable, don't check whether Bison has
5903 ever examined the value. As written, the check was a tautology.
5904 Instead, record and check for this complaint using a separate muscle.
5905
eb1b0740
JD
59062007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5907
5908 Fix push parsing memory leak reported by Brandon Lucia at
5909 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5910 * THANKS: Add Brandon Lucia.
5911 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5912 but the parse never completed and thus freed it.
5913 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5914 * tests/testsuite.at: Include push.at.
5915 * test/push.at: New.
5916 (Push Parsing: Memory Leak for Early Deletion): New test case.
5917
9d774aff
JD
59182007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5919
5920 Improve handling of multiple S/R conflicts in the same state and of S/R
5921 conflicts involving multiple reductions.
5922 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5923 set for a state here or Bison will abort if it is reassigned on a
5924 later conflicted reduction in the same state.
5925 Similarly, don't finalize and assign the solved conflicts report here
5926 or it will be lost if it is reassigned on a later conflicted reduction
5927 in the same state.
5928 (set_conflicts): Instead, assign them both here after all S/R conflicts
5929 in the state have been fully examined.
5930 * src/print.c (shift_set): Rename to...
5931 (no_reduce_set): ... this.
5932 (print_reductions): Update for rename, and add %nonassoc error action
5933 tokens to no_reduce_set so that, when printing the first remaining
5934 reduction on an error action token, the reduction is enclosed in
5935 brackets.
5936 (print_results): Update for rename.
5937 * tests/conflicts.at (Solved conflicts report for multiple reductions
5938 in a state): New test case.
5939 (%nonassoc error actions for multiple reductions in a state): New test
5940 case.
5941
5942 * src/main.c (main): Don't depend on C99 features.
5943
10159d2a
JD
59442007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5945
5946 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
5947 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5948 uniwidth.
10159d2a 5949
953b3935
JD
59502007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5951
5952 * bootstrap (slurp): Create target directories that don't exist.
5953 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5954
6ce2d93a
JD
59552007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5956
5957 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5958 than item number.
5959 * closure.c (closure): Likewise.
5960 * state.h (reductions): Comment sorting of rules.
5961 (state): Comment sorting of items.
5962
ce3448d5
JD
59632007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5964
5965 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5966 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5967 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5968 definition in order to avoid Gnulib headers since we don't use config.h
5969 here.
5970 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5971 rather than AT_DATA so that config.h is included.
5972
8a86eef0
JD
59732007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5974
5975 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5976 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5977 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5978 and so that YYFPRINTF is guaranteed to be defined here.
5979
b1a81613
JD
59802007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5981
5982 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5983 with...
5984 (muscle_percent_define_check_values): ... this more helpful function.
5985 Again, it's not used yet, but it will be.
5986 * src/muscle_tab.h: Likewise.
5987
71b61d4d
JD
5988 Improve some comments in parser table construction.
5989 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5990 (generate_states): Don't mention ruleset, which is internal to closure.
5991 * src/closure.c (closure): Explain sorting of core and itemset, which
5992 is required for this function to behave correctly.
5993 * src/closure.h (closure): Mention sorting.
5994
2a6b783d
JD
59952007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5996
5997 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5998 move the check for disabled transitions to an aver since conflict
5999 resolution hasn't happened yet.
6000
6001 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
6002 labels a state as inconsistent just because it has error transitions.
6003 The original form of this check appeared in revision 1.1 of lalr.c,
6004 which was committed on 1991-12-21. Now (at least), changing the
6005 consistency label on such a state appears to have no useful effect in
6006 any of the places it is examined, which I enumerate below. The key
6007 point to understanding each item in this enumeration is that a state
6008 with an error transition is labelled consistent in the first place only
6009 if it has no rules, so the check cannot matter for states that have
6010 rules. (1) Labelling a state as inconsistent will cause set_conflicts
6011 to try to identify its conflicts, and a state must have *rules* to have
6012 conflicts. (2) Labelling a state as inconsistent will affect how
6013 action_row sets the default *rule* for the state. (3) Labelling a
6014 state as inconsistent will cause build_relations to add lookback edges
6015 to *rules* in that state.
6016 * src/state.h (struct state): Word the comment for member consistent
6017 more carefully.
6018
14462c2b
JD
60192007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6020
6021 Don't depend on C99 features.
6022 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
6023 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
6024 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6025 * src/state.c (state_mark_reachable_states): Fix for-loop.
6026 (state_remove_unreachable_states): Fix for-loop.
6027
6028 Don't widen struct state with member reachable just to temporarily
6029 record reachability. Instead, use a local bitset.
6030 * src/state.h (struct state): Remove member.
6031 * src/state.c (state_new): Don't initialize it.
6032 (state_mark_reachable_states): Rename to...
6033 (state_record_reachable_states): ... this, and use bitset.
6034 (state_remove_unreachable_states): Use bitset.
6035
5a43d418
JD
60362007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6037
6038 * src/Makefile.am (yacc): Quote target action commands properly so
6039 that the yacc script isn't corrupt. Reported by Hans Aberg at
6040 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6041
0c650a20
JD
6042 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6043 the case of pure parsers. Reported by Frans Englich at
6044 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6045 * THANKS: Add Frans Englich.
6046
61fee93e
JD
6047 * NEWS (2.3a+): In the %code entry, reference section `Bison
6048 Declaration Summary' from the manual now since the %code summary has
6049 moved there.
6050 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6051 in the rules section must be terminated by semicolons.
6052
f124d423
JD
60532007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6054
6055 Extend the front-end API for %define variables to more completely
6056 mirror the back-end. This will be useful in the future.
6057 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6058 Update comments to mention the new front-end counterparts of these
6059 macros.
6060 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6061 for muscle_string_decode and muscle_location_decode.
6062 (muscle_string_decode): New static function.
6063 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6064 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6065 functions.
6066 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6067 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6068 implementation more closely.
6069 (muscle_percent_define_invalid_value): New function.
6070 * src/muscle_tab.h (muscle_percent_define_get,
6071 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6072 Prototype.
6073
75ad86ee
JD
60742007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6075
6076 * NEWS (2.3a+): Mention yesterday's state-removal change.
6077 (2.3a): Remove the %language entry, which was added after 2.3a.
6078 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6079 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6080 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6081 tests/existing.at: Update copyright date.
6082
5967f0cf
JD
60832007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6084
6085 If conflict resolution makes states unreachable, remove those states,
6086 report rules that are then unused, and don't report conflicts in those
6087 states.
6088 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6089 New global function.
6090 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6091 function.
6092 * src/main.c (main): After conflict resolution, remove the unreachable
6093 states and update all data structures that reference states by number.
6094 * src/state.c (state_new): Initialize each state's reachable member to
6095 false.
6096 (state_mark_reachable_states): New static function.
6097 (state_remove_unreachable_states): New global function.
6098 * src/state.h (struct state): Add member bool reachable.
6099 (state_remove_unreachable_states): Prototype.
6100 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6101 New test case.
6102 * tests/existing.at (GNU pic Grammar): Update test case output now that
6103 an unused rule is discovered.
6104
b09f4f48
JD
61052007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6106
6107 Minor code cleanup in parser table construction.
6108 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
6109 (new_itemsets, save_reductions): Update for rename to nitemset.
6110 * src/closure.c (nritemset): Rename to...
6111 (nitemset): ... this since the "r" appears to meaningless and isn't
6112 used in the comments.
6113 (closure): Update for rename.
6114 * src/closure.h (nritemset): Update extern to...
6115 (nitemset): ... this.
6116 * src/lalr.c (LA): Fix a typo in comments.
6117 * src/print.c (print_core): Update for rename to nitemset.
6118 * src/print_graph.c (print_graph): Likewise.
6119 * src/state.h: Fix some typos in header comments.
6120
bbb44d83
PE
61212007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6122
9b33de72
PE
6123 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6124 still sticks to ASCII. Sorry!
6125
bbb44d83
PE
6126 * README-hacking: New file, taken mostly from coreutils, with changes
6127 for Bison. Contains much of the contents of:
6128 * README-cvs: Remove.
6129 * bootstrap: Sync from gnulib.
6130 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6131 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6132
29553547
JD
61332007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6134
6135 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6136 Setzer.
6137 (Java Differences): Fix some typos.
6138 * THANKS: Add Sebastian Setzer.
6139
01b477c6
PB
61402007-03-07 Paolo Bonzini <bonzini@gnu.org>
6141
730739e4
AD
6142 * data/java.m4 (b4_single_class_if): Remove.
6143 (b4_abstract_if): Look at "%define abstract".
6144 (b4_lexer_if): New.
6145 (b4_union_name): Rename...
6146 (b4_yystype): ... to this. Map to "%define stype".
6147 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6148 b4_maybe_throws): Fix quoting.
6149 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6150 * data/lalr1.java (Lexer interface): Always define.
6151 (Lexer interface within parser class): Remove.
6152 (YYLexer class): New, used when "%code lexer" is present.
6153 (constructor): When "%code lexer" is used, pass %lex-param
6154 to the lexer constructor.
6155 (yylex, yyparse): Remove %lex-param from method invocations
6156 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6157
6158 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6159 abstract". Rename "%define union_name" to "%define stype".
6160 Rename method names according to previous patch.
6161 (Java Scanner Interface): Describe "%code lexer" instead of
6162 "%pure-parser" and "%define single_class".
6163 (Java Differences): Mention "%code lexer".
6164
6165 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6166 Include scanner here, using macros from tests/local.at.
6167 (AT_DATA_CALC_Y): Remove final argument.
6168 (_AT_CHECK_JAVA_CALC): Likewise.
6169 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6170 of %locations and %error-verbose.
6171 (main): Test with and without %lex-param.
6172 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6173 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 6174
122bea3a
JMG
61752007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6176
6177 DJGPP spefic issue. Inhibit the use of disallowed characters for
6178 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6179 and concern testsuite case 46.
6180 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6181 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6182 * djgpp/config.bat: Inhibit the use of disallowed characters.
6183
9611cfa2
JD
61842007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6185
6186 Miscellaneous %define and %code cleanup.
6187 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6188 values are interpreted.
6189 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6190 documentation a little more.
6191 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6192 muscle_percent_define_insert, muscle_percent_code_grow): New
6193 functions/macros.
6194 * src/muscle_tab.h (muscle_percent_define_insert,
6195 muscle_percent_code_grow): Prototype.
6196 * src/parse-gram.y (prologue_declaration): Use
6197 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6198 %define and %code directives.
6199
6200 Make it easy to share %define boolean variables between the front-end
6201 and back-end. Though not used yet, this will be useful in the future.
6202 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6203 Bison uses of names rather than just skeleton uses of names.
6204 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6205 b4_percent_define_skeleton_variables(VARIABLE) to
6206 b4_percent_define_bison_variables(VARIABLE).
6207 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6208 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6209 b4_percent_code_bison_qualifiers(QUALIFIER).
6210 (b4_check_user_names_wrap): Update for renames.
6211 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6212 muscle_percent_define_default): New functions mimicking
6213 b4_percent_define_flag_if and b4_percent_define_default.
6214
6215 For %define variables, report locations for invalid values and
bbb44d83 6216 redefinitions.
9611cfa2
JD
6217 * data/bison.m4 (b4_percent_define_flag_if): Read
6218 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6219 value for VARIABLE.
6220 (b4_percent_define_default): Save a special location in
6221 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6222 must later be reported as invalid.
6223 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6224 functions.
6225 (muscle_percent_define_insert): Record the location of VARIABLE in
6226 muscle percent_define_loc(VARIABLE), and use it to report the previous
6227 location for a redefinition.
6228 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6229 (muscle_percent_define_default): Update like b4_percent_define_default.
6230 (muscle_grow_user_name_list): Rename to...
6231 (muscle_user_name_list_grow): ... this for consistency and use
6232 muscle_location_grow.
6233 * src/muscle_tab.h (muscle_location_grow): Prototype.
6234 * tests/input.at (%define errors): Update expected output.
6235 * tests/skeletons.at (%define boolean variables: invalid skeleton
6236 defaults): New test case.
6237
0bf92491
JD
62382007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6239
6240 * src/print.c (lookahead_set, state_default_rule): Remove.
6241 (print_reductions): Replace state_default_rule invocation with
6242 equivalent use of yydefact, which was computed in token_actions in
6243 tables.c.
6244 (print_results): Don't allocate lookahead_set.
6245
d3b12988
PB
62462007-02-27 Paolo Bonzini <bonzini@gnu.org>
6247
6248 * data/lalr1.java: Prefix all private members with yy.
6249
f57a7536
JD
62502007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6251
6252 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 6253 Sebastien Fricker at
f57a7536 6254 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 6255 * THANKS: Add Sebastien Fricker.
f57a7536
JD
6256 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6257 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6258 accept a variable number of arguments.
6259
6404a5bf
JD
62602007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6261
6262 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6263
e4e09639
JMG
62642007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6265
6266 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6267 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6268 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6269
d7e0a1a7
PE
62702007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6271
6272 Undo my 2007-02-07 change, switching back to the c-strcase module
6273 introduced in the 2007-02-03 change. Bruno Haible reported that
6274 the 2007-02-07 change would be dangerous in Turkish if we add a
6275 language whose name contains "i", since "i" is not lowercase "I"
6276 in Turkish.
6277 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6278 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6279 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6280 * m4/.cvsignore: Remove strcase.m4.
6281 * src/getargs.c: Revert 2007-02-07 change, as follows.
6282 Include c-strcase.h.
6283 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6284
deee93a1
JD
62852007-02-11 Bruno Haible <bruno@clisp.org>
6286
6287 Enable the Java related testsuite tests when the only Java compiler
6288 found is a gcj < 4.3. Discussed at
6289 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6290 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6291
574add85
JD
62922007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6293
6294 * data/Makefile.am: Update copyright date.
6295 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6296 yypstate_new returns NULL.
6297 (yypstate_new): Return NULL if malloc does.
6298 * src/reader.c (packgram): Move translation of rule actions from the
6299 beginning of packgram to...
6300 (check_and_convert_grammar): ... here right before packgram is invoked
6301 so it's easier to write more complete comments, and remove redundant
6302 code.
6303
e785ccf7
JD
63042007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6305
6306 As in semantic actions, make @$ in %initial-action, %destructor, and
6307 %printer imply %locations.
6308 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6309 scanning @$.
6310 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6311 (@$ in %initial-action implies %locations,
6312 @$ in %destructor implies %locations,
6313 @$ in %printer implies %locations): ... these new test cases.
6314
1cfe1ed7
PE
63152007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6316
6317 Undo most of the 2007-02-03 change, switching to the strcase module
6318 now that gnulib strcase has been fixed.
6319 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6320 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6321 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6322 * m4/.cvsignore: Add strcase.m4.
6323 * src/getargs.c: Revert 2007-02-03 change, as follows.
6324 Don't include c-strcase.h.
6325 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6326 strcasecmp has "unspecified behavior" outside the POSIX locale,
6327 but it works fine in practice if at least one argument is ASCII,
6328 as is the case in Bison.
6329
0049ec86
PB
63302007-02-07 Paolo Bonzini <bonzini@gnu.org>
6331
6332 * tests/java.at: Skip tests if only one of javac/java is present.
6333 Reported by Joel E. Denny.
6334 * tests/atlocal.in: Adjust copyright years.
6335
63362007-02-05 Paolo Bonzini <bonzini@gnu.org>
6337
6338 * data/lalr1.java (Stack): Work around old verifiers that disallow
6339 access to the private fields of an inner class, from the outer class.
6340 We can make Stack's fields public because user code doesn't have access
6341 to the instance of Stack used by parse(). Reported by Paul Eggert.
6342
2c2b7220
PE
63432007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6344
6345 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6346 the right spot for these files?
6347 * bootstrap.conf (gnulib_modules): Add c-strcase.
6348 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6349 c-strncasecmp.c.
6350 * src/getargs.c: Include c-strcase.h.
6351 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6352 to avoid unspecified behavior.
6353
b2b81dae
JD
63542007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6355
6356 * doc/bison.texinfo (Decl Summary): Correct typo.
6357
c1d19e10
PB
63582007-01-30 Paolo Bonzini <bonzini@gnu.org>
6359
6360 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6361 Complain if the value does not match empty, "true" or "false".
6362 * data/c++.m4: Adjust default definitions of %define variables.
6363 * data/java.m4: Adjust default definitions of %define variables.
6364 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6365 to above behavior.
6366 * tests/input.at (Boolean %define variables): Test new behavior.
6367
8405b70c
PB
63682007-01-29 Paolo Bonzini <bonzini@gnu.org>
6369
6370 * NEWS: Mention java.
6371 * TODO: Remove things that are done.
6372 * bootstrap.conf: Add javacomp-script and javaexec-script.
6373 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6374
6375 * data/Makefile.am: Add new files.
6376 * data/java-skel.m4: New.
6377 * data/java.m4: New.
6378 * data/lalr1.java: New.
6379
6380 * doc/bison.texinfo: Put "A Complete C++ Example" under
6381 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6382 under Other Languages.
6383
6384 * src/getargs.c (valid_languages): Add Java.
6385 * src/getargs.h (struct bison_language): Update size of string fields.
6386
6387 * tests/Makefile.am: Add java.at.
6388 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6389 * tests/java.at: New.
6390 * tests/testsuite.at: Include it.
6391
3eb82471
JD
63922007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6393
6394 Clean up.
6395 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6396 at_directive_argv arguments so these no longer have to be global
6397 variables. Also, update the implementation for the following changes.
6398 (fail_for_at_directive_too_many_args,
6399 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6400 (at_directive_name): Remove as at_directive_argv[0] will be used for
6401 this now.
6402 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6403 for the directive name.
6404 (at_directive_argc, at_directive_argv): Make these local within
6405 skel_lex instead of global.
6406 (INITIAL): Update directive start action for above changes.
6407 (SC_AT_DIRECTIVE_ARG): Rename to...
6408 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6409 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6410 (scan_skel): Move yylex_destroy to...
6411 (skel_scanner_free): ... here.
6412 * tests/skeletons.at (installed skeleton file name): Rename to...
6413 (installed skeleton file names): ... this.
6414
148d66d8
JD
64152007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6416
6417 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6418 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6419 Summary" not "Directives".
6420 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6421 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6422 since the former is now the more complete one.
6423 (Prologue Alternatives): Likewise and do the same for %defines.
6424 (Table of Symbols): Add summary of %code, add summary of %define, and
6425 move full %code documentation to...
6426 (Decl Summary): ... here for consistency with other entries in these
6427 sections.
6428 Move %define entry in order to keep this list alphabetized.
6429 Reword %define entry a little to put less emphasis on the skeleton
6430 concept, which most users shouldn't have to think about.
6431
665f0c24
PE
64322007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6433
6434 Adjust to recent gnulib changes.
6435 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6436 Add string.h, string_.h, unistd_.h, wchar_.h.
6437 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6438 * src/system.h: Don't include <stpcpy.h>; this is now done by
6439 <string.h>.
6440
592d0b1e
PB
64412007-01-23 Paolo Bonzini <bonzini@gnu.org>
6442
6443 Simplify implementation of unqualified %code, implement macros for
6444 uniform treatment of boolean %define flags. Document %define.
6445 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6446 b4_percent_code_ifdef): New.
6447 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6448 * data/c++.m4: Define default value for global_tokens_and_yystype.
6449 * data/glr.cc: Likewise.
6450 * data/location.cc: Use b4_percent_define_flag_if.
6451
148d66d8 6452 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
6453
6454 * src/parse-gram.y (Unqualified %code): Change muscle name to
6455 b4_percent_code().
6456 (content.opt): Default to empty.
6457
a7867f53
JD
64582007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6459
6460 Implement support for relative and absolute skeleton file names.
6461 Discussed starting at
6462 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6463 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6464 (Bison Options): Document in --skeleton entry.
6465 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6466 full_skeleton can't necessarily hold all of pkgdatadir.
6467 If the specified skeleton file name contains a `/', don't prepend
6468 pkgdatadir.
6469 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6470 file name contains a `/', prepend the grammar file directory.
6471 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6472 * skeletons.at: New file.
6473 (relative skeleton file names): New test case.
6474 (installed skeleton file names): New test case.
6475 * tests/testsuite.at: Include skeletons.at.
6476
6477 * bootstrap: Update copyright to 2007.
6478
830c9b18
PB
64792007-01-17 Paolo Bonzini <bonzini@gnu.org>
6480
6481 * bootstrap: Remove occurrences of .#bootmp from the files.
6482
a8c2e813
AD
64832007-01-17 Akim Demaille <akim@epita.fr>
6484
6485 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6486 nonterminals.
6487 Use per-type %printer.
6488
279cabb6
JD
64892007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6490
6491 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6492 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6493 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6494 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6495 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6496 tests/glr-regression.at, tests/input.at, tests/local.at,
6497 tests/output.at, tests/torture.at: Update copyright to 2007.
6498
bb32f4f2
AD
64992007-01-16 Akim Demaille <akim@epita.fr>
6500
6501 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6502 error code.
6503 (Calc++ Scanner): Exit with failure if we can't open the input
6504 file.
6505 Accept "-" standing for stdin.
6506 (Calc++ Top Level): Print the result only if the parsing was
6507 successful.
6508
7cff04b5
AD
65092007-01-16 Akim Demaille <akim@epita.fr>
6510
6511 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6512
a4e25e1d
JD
65132007-01-15 Paolo Bonzini <bonzini@gnu.org>
6514 and Joel E. Denny <jdenny@ces.clemson.edu>
6515
6516 Clean up %define and %code implementation in M4 some. Most
6517 importantly, rename all related macros to be in the b4_percent_define
6518 and b4_percent_code namespaces. Also, complete support for `.' in
6519 %define variable names and %code qualifiers.
6520 * data/bison.m4 (b4_check_user_names): Check for special
6521 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6522 m4_foreach loops.
6523 (b4_get_percent_define, b4_get_percent_code): Rename to...
6524 (b4_percent_define_get, b4_percent_code_get): ... these.
6525 Extend documentation with examples.
6526 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6527 b4_percent_define_skeleton_variables and
6528 b4_percent_code_skeleton_qualifiers.
6529 Expect any value for the %define variable `foo' to be stored in the
6530 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6531 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6532 expect any unqualified %code blocks to be stored in a macro named
6533 `b4_percent_code_unqualified'.
6534 Use m4_indir so that %define variable names and %code qualifiers can
6535 contain `.', which is allowed by the grammar parser.
6536 (b4_percent_define_default): New macro to set a default value for a
6537 %define variable.
6538 (m4_wrap): Update wrapped code, and fix some underquoting.
6539 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6540 Expect grammar uses of %define variables and %code qualifiers to be
6541 defined in b4_percent_define_user_variables and
6542 b4_percent_code_user_qualifiers.
6543 * data/c++.m4: Use b4_percent_define_default rather than
6544 m4_define_default. Fix some underquoting. Skeleton usage of %define
6545 variable define_location_comparison now implies skeleton usage of
6546 %define variable filename_type.
6547 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6548 data/push.c, data/yacc.c: Update macro names.
6549 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6550 muscle names.
6551
e37c665c
JMG
65522007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6553
6554 DJGPP specific issues.
6555
6556 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6557 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6558
7d2d521f
JD
65592007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6560
6561 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6562 run parsers in all tests so that Valgrind is invoked during
6563 maintainer-check-valgrind.
6564 (Duplicate representation of merged trees): Free all semantic values.
6565 (Duplicated user destructor for lookahead): Likewise.
6566
e0ac9b4b
JD
65672007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6568
6569 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6570 command-line prefix.
6571 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6572 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6573 miss Valgrind messages.
6574 (Exploding the Stack Size with Malloc): Likewise.
6575
78143faa
JD
65762007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6577
6578 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6579 locals. Reported by Juan Manuel Guerrero at
6580 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6581 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6582 Fix some indentation also.
6583 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6584 explaining this issue.
6585
7ecec4dd
JD
65862007-01-09 Paolo Bonzini <bonzini@gnu.org>
6587 and Joel E. Denny <jdenny@ces.clemson.edu>
6588
6589 Simplify union and prologue handling, and escape union and lex/parse
6590 params with digraphs.
6591 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6592 values to the empty string since these are no longer guaranteed
6593 initialized by the front-end.
6594 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6595 braces around b4_user_stype since this is no longer done by the
6596 front-end.
6597 * src/files.c, src/files.h (pre_prologue_obstack,
6598 post_prologue_obstack): Remove.
6599 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6600 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6601 with digraphs. This fixes lex params and parse params.
6602 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6603 * src/output.c (prepare): Remove muscle insertion of the prologues.
6604 (output): Remove freeing of pre_prologue_obstack and
6605 post_prologue_obstack.
6606 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6607 than prologue_augment for prologue parsing so you don't need prologue
6608 obstacks.
5c80250c
JD
6609 (grammar_declaration): For %union RHS, use `braceless' instead of
6610 "{...}" so that braces are already stripped and code is escaped with
6611 digraphs.
7ecec4dd
JD
6612 * src/reader.c (prologue_augment): Remove.
6613 (reader): Remove initialization of pre_prologue_obstack and
6614 post_prologue_obstack.
6615 * src/reader.h (prologue_augment): Remove.
6616
6617 * data/c.m4: Remove stray parenthesis.
6618
16dc6a9e
JD
66192007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6620
6621 Remove quotes from variables names in %define directives and from
6622 qualifiers in %code directives, and restrict the characters that are
6623 allowed in them to M4-friendly ones. For %define, continue to support
6624 the quoted form as a deprecated feature. Discussed starting at
6625 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6626 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6627 %code.
6628 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
6629 (Decl Summary): In %defines entry, update mention of `%code requires'
6630 and `%code provides'.
16dc6a9e
JD
6631 (C++ Location Values): Update %define uses.
6632 (Calc++ Parser Interface): Likewise.
6633 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 6634 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
6635 * src/parse-gram.y (prologue_declaration): For %define variables, use
6636 `variable' instead of `STRING'.
6637 (grammar_declaration): For %code qualifiers, use `ID' instead of
6638 `STRING'.
6639 (variable): New nonterminal that takes an `ID' or a `STRING'.
6640 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6641 and %define uses.
6642 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6643 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6644 (%define errors): Update %define uses.
6645
e9813cd4
JD
66462007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6647
6648 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6649 instead of muscle_insert for %define values so that M4-special
6650 characters are replaced with digraphs.
6651 * tests/input.at (%define errors): Extend to check weird values.
6652
6afc30cc
JD
66532007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6654
6655 Instead of having skeletons declare all valid %define variables and
6656 %code qualifiers, provide macros that retrieve the associated values
6657 and build these lists automatically. Thus Bison will now warn when a
6658 variable or qualifier is not used by the skeleton in the current
6659 invocation regardless of whether it might sometimes be used by that
6660 skeleton in other invocations. Also, move all %define value macros to
6661 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6662 form, which is replaced by %code.
6663 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6664 (b4_check_user_names): ... this, and change the series of valid name
6665 arguments to a single list argument for names used in the skeleton
6666 similar to the existing list argument for names used in the grammar.
6667 Warn instead of complaining.
6668 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6669 values and %code code, to format %code code properly, and to build
6670 lists of all %define variables and %code qualifiers used in the
6671 skeleton: b4_skeleton_percent_define_variables and
6672 b4_skeleton_percent_code_qualifiers.
6673 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6674 Remove, and...
6675 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6676 the skeleton names lists can finish building first. In place of
6677 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6678 expect the lists b4_user_percent_define_variables and
6679 b4_user_percent_code_qualifiers.
6680 * data/c++.m4: Where setting default values for b4_parser_class_name,
6681 b4_location_type, b4_filename_type, b4_namespace, and
6682 b4_define_location_comparison, update their names to the
6683 b4_percent_define_ namespace.
6684 * data/glr.c: Don't use b4_check_percent_define_variables and
6685 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6686 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6687 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 6688 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
6689 * data/location.cc: Use b4_get_percent_define.
6690 * data/push.c: Don't use b4_check_percent_define_variables and
6691 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6692 * data/yacc.c: Likewise, and don't call m4_exit in
6693 b4_use_push_for_pull_if or m4_wrap code will never execute.
6694 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6695 Rename to...
6696 (muscle_grow_user_name_list): ... this for consistency with the
6697 terminology used in bison.m4.
6698 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6699 %define variable names, and rename muscle used_percent_define_variables
6700 to user_percent_define_variables.
6701 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6702 user_percent_code_qualifiers.
6703 (content): Remove.
6704 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6705 {CODE} form is no longer accepted.
6706 * tests/input.at (Reject bad %code qualifiers): Rename to...
6707 (Reject unused %code qualifiers): ... this, and update test output.
6708 (%define error): Update test output.
6709
7eb8a0bc
JD
67102007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6711
6712 Check for unrecognized %define variables similar to checking for
6713 unrecognized %code qualifiers. Check for redefined %define variables.
6714 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6715 generalizes...
6716 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6717 (b4_check_percent_define_variables): New, also wraps it.
6718 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6719 variables using b4_check_percent_define_variables.
6720 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6721 all those exercised in the test suite and all those listed in the
6722 `Default values' section of c++.m4. Are there others?
6723 * data/push.c, data/yacc.c: Declare no valid %define variables.
6724 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6725 similar to muscle_find, but it works even when the muscle stores a
6726 const value.
6727 (muscle_grow_used_name_list): New function for constructing the used
6728 name list muscles that b4_check_for_unrecognized_names requires.
6729 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6730 %define'd more than once. Define the b4_used_percent_define_variables
6731 muscle with muscle_grow_used_name_list.
6732 (grammar_declaration): Abbreviate %code code with
6733 muscle_grow_used_name_list.
6734 * tests/input.at (%define errors): New.
6735
3fc65ead
JD
67362007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6737
6738 Provide warn_at, complain_at, and fatal_at function callbacks to the
6739 skeletons, and use this for %code qualifier complaints.
6740 * data/bison.m4 (b4_error_at): New, invoked by...
6741 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6742 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6743 @fatal_at(...@) directives.
6744 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6745 qualifiers in b4_used_percent_code_qualifiers and to use
6746 b4_complain_at.
6747 * src/location.c, src/location.h (boundary_set_from_string): New global
6748 function.
6749 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6750 function.
6751 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6752 to b4_used_percent_code_qualifiers.
6753 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6754 function.
6755 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6756 (lineno): Rename to...
6757 (out_lineno): ... this so I don't misunderstand it again.
6758 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6759 here; these newlines are in the input but not the output file.
6760 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6761 (at_directive_perform): ... this new static function, and add handling
6762 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6763 directives.
6764 * tests/input.at (Reject bad %code qualifiers): Update test output with
6765 locations and extend.
6766
6767 * tests/output.at (Output file name: [, Output file name: ]): Remove
6768 bogus comment about these tests failing.
6769
1c7b7e1d
JD
67702007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6771
6772 Clean up b4_check_percent_code_qualifiers a little.
6773 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6774 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6775 documentation and add examples.
6776 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6777 qualifiers here.
6778
08af01c2
JD
67792007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6780
6781 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6782 unreliable -- especially when they're hidden inside another macro.
6783 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6784 data/c.m4: Remove m4_divert(-1).
6785 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6786 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6787 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 6788 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
6789 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6790 pushed and popped by m4sugar, should be first on the stack.
6791
6792 Provide warn, complain, and fatal function callbacks to the skeletons.
6793 This provides more flexibility than m4_fatal, improves the error
6794 message format, and captures messages for translation. Discussed
6795 starting at
6796 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6797 * data/bison.m4 (b4_error): New, invoked by...
6798 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6799 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6800 directives. Because these M4 macros might be called when the current
6801 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6802 the previous removal of uses of m4_divert, which caused trouble.
6803 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6804 m4_fatal to report unrecognized %code qualifiers.
6805 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6806 push parser requests.
6807 * data/glr.c: Use b4_complain instead of m4_fatal to report
6808 non-deterministic push parser requests.
6809 Update @output usage to @output(...@) form.
6810 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6811 report missing %defines. Update @output usage to @output(...@) form.
6812 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6813 @output(...@) form.
6814 * src/main.c (main): Invoke skel_scanner_free.
6815 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6816 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6817 obstack_for_string from flex-scanner.h.
6818 (YY_DECL): Use to declare skel_lex static.
6819 (decode_at_digraphs): Remove; now handled in the new
6820 SC_AT_DIRECTIVE_ARG start condition.
6821 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6822 functions.
6823 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6824 at_directive_argv): New static globals.
6825 (INITIAL): Use fail_for_invalid_at.
6826 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6827 recognize the start of a generalized `@directive(...@)' form and
6828 start...
6829 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6830 directive args (using the new obstack_for_string), to decode the
6831 contained @ diagraphs, and to perform the directive. It recognizes
6832 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6833 @output(...@).
6834 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6835 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6836 `@,'.
6837 (scan_skel): Initialize obstack_for_string on the first call.
6838 (skel_scanner_free): New function to free obstack_for_string.
6839 * tests/input.at (Reject bad %code qualifiers): Update test output.
6840
8e0a5e9e
JD
68412007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6842
6843 Consolidate the 4 prologue alternative directives (%code, %requires,
6844 %provides, and %code-top) into a single %code directive with an
6845 optional qualifier field. Discussed at
6846 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6847 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6848 alternatives.
6849 * doc/bison.texinfo (Prologue Alternatives): Update.
6850 (Decl Summary): Update to %code "requires" and %code "provides".
6851 (Calc++ Parser): Update to %code "requires".
148d66d8 6852 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
6853 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6854 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6855 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6856 which are skeleton-specific.
6857 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6858 declare what %code qualifiers it supports and to complain if any other
6859 qualifiers were used in the grammar.
6860 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6861 and b4_user_code([b4_percent_code_provides]) in place of
6862 b4_user_requires and b4_user_provides.
6863 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6864 Add b4_user_code([b4_percent_code_top]) and
6865 b4_user_code([b4_percent_code]).
6866 Invoke b4_check_percent_code_qualifiers.
6867 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6868 PERCENT_REQUIRES): Remove.
6869 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6870 %requires. Rewrite the %code RHS as the unqualified form defining the
6871 muscle b4_percent_code. Add another RHS for the qualified %code form,
6872 which defines muscles of the form b4_percent_code_QUALIFIER and the
6873 b4_used_percent_code_qualifiers muscle.
6874 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6875 PERCENT_REQUIRES): Remove.
6876 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6877 %code "requires" and %code "provides".
6878 * tests/input.at (Reject bad %code qualifiers): New.
6879
95021767
JD
68802007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6881
6882 Use the new code_props interface for destructors and printers.
6883 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6884 printer_location members, and change the type of the destructor and
6885 printer members to code_props.
6886 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6887 symbol_printer_get, semantic_type_destructor_set,
6888 semantic_type_printer_set, default_tagged_destructor_set,
6889 default_tagless_destructor_set, default_tagged_printer_set,
6890 default_tagless_printer_set): Use code_props in arguments and return
6891 types in place of char const * and location.
6892 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6893 since the locations are now contained in the return of
6894 symbol_destructor_get and symbol_printer_get.
6895 * src/output.c (symbol_destructors_output, symbol_printers_output):
6896 Replace with...
6897 (symbol_code_props_output): ... this to eliminate duplicate code.
6898 (output_skeleton): Update to use symbol_code_props_output.
6899 * src/reader.c (symbol_should_be_used): Update use of
6900 symbol_destructor_get.
6901 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6902 Update uses of the various _destructor_set and _printer_set functions.
6903 * src/symtab.c: (default_tagged_destructor_location,
6904 default_tagless_destructor_location, default_tagged_printer_location,
6905 default_tagless_printer_location): Remove since we...
6906 (default_tagged_destructor, default_tagless_destructor,
6907 default_tagged_printer, default_tagless_printer): ... change the type
6908 of these to code_props.
6909 (symbol_new, semantic_type_new, symbol_destructor_set,
6910 semantic_type_destructor_set, symbol_destructor_get,
6911 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6912 symbol_check_alias_consistency, default_tagged_destructor_set,
6913 default_tagless_destructor_set, default_tagged_printer_set,
6914 default_tagless_printer_set): Update.
6915 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6916 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6917 code_props members.
6918 (symbol_print): Use SYMBOL_CODE_PRINT.
6919
f6857bbf
JD
69202007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6921
6922 Use the new code_props interface for rule actions.
6923 * src/symlist.h (symbol_list): Replace action, action_location, and
6924 used members with a code_props action_props member.
6925 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6926 grammar_midrule_action, grammar_current_rule_merge_set,
6927 grammar_current_rule_symbol_append, packgram): Update.
6928 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6929 * src/scan-code.l (handle_action_dollar): Update.
6930 (translate_rule_action): Remove, no longer used.
6931 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6932
7c0c6181
JD
69332007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6934
6935 Use the new code_props interface in parse-gram.y.
6936 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6937 Update all uses of translate_* functions to use the new code_props
6938 interface and to use gram_scanner_last_string_free and
6939 code_scanner_last_string_free where possible.
6940 (grammar_declaration): symbol_list_destructor_set and
6941 symbol_list_printer_set now perform the translation, so don't do it
6942 here. Use gram_scanner_last_string_free where possible.
6943 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6944 translate_code): Remove, no longer used.
6945 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6946 symbol_list_printer_set): Perform code translation here rather than
6947 depending on the caller to do so.
6948
6949 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6950 * src/scan-gram.h (gram_last_string): Remove declaration.
6951 * src/scan-gram.l (last_string): Declare it static.
6952
28e52c0d
JD
69532007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6954
6955 Encapsulate code properties and related functionality for the various
6956 destructors, printers, and actions into a code_props structure and
6957 interface. This patch merely implements code_props in scan-code.h and
6958 scan-code.l. Future patches will rewrite other modules to use it.
6959 Discussed starting at
6960 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6961 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6962 consistently initialize const structs that have an empty location
6963 field.
6964 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6965 to ensure consistency.
6966 * src/scan-code.h (code_props): New structure.
6967 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6968 function, macro, and const global variable for initializing a
6969 code_props with no code.
6970 (code_props_plain_init, code_props_symbol_action_init,
6971 code_props_rule_action_init, code_props_translate_code): The rest of
6972 the new code_props functional interface. Among other things, the init
6973 functions set the code_props kind field so that
6974 code_props_translate_code will know whether to behave like
6975 translate_symbol_action, translate_rule_action, or translate_code.
6976 These old translate functions must remain until all other modules are
6977 updated to use the new code_props interface.
6978 (code_scanner_last_string_free): New function similar to
6979 gram_scanner_last_string_free.
6980 (code_scanner_free): Add documentation.
6981 * src/scan-code.l: Implement the new interface.
6982 (code_lex): Make it static, add a code_props* argument, and remove the
6983 rule argument.
6984 (last_string): New static global similar to the one in scan-gram.l.
6985 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6986 instead of rule.
6987 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6988 code_props since Bison may one day use this information for destructors
6989 and printers.
6990 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6991 (handle_action_dollar): Use symbol_list_n_get and set used flag
6992 directly since symbol_list_n_used_set is removed.
6993 (translate_action): Add a code_props* argument and remove the rule,
6994 action, and location arguments. Pass the code_props* on to code_lex.
6995 (translate_rule_action, translate_symbol_action, translate_code):
6996 Rewrite as wrappers around the new code_props interface.
6997 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6998 it would eventually need to break the encapsulation of code_props.
6999
96034983
JD
70002007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7001
7002 * etc/.cvsignore: New.
7003
945e396c
JD
70042007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7005
7006 Add maintainer-push-check to run maintainer-check using push parsing in
7007 place of pull parsing where available.
7008 * Makefile.am (maintainer-push-check): New.
7009 * data/bison.m4 (b4_use_push_for_pull_if): New.
7010 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
7011 appropriately based on their existing values.
7012 (yypush_parse): Don't print push-parser-specific diagnostics if push
7013 parsing is being used in place of pull parsing.
7014 * data/yacc.c: If push parsing should replace pull parsing, redirect to
7015 push.c.
7016 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
7017 variable, and insert b4_use_push_for_pull_flag into muscles.
7018 * tests/Makefile.am (maintainer-push-check): New.
7019
7d596384
JD
70202006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7021
7022 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
7023 (whether successful or failed) so that yypush_parse can be invoked
7024 again to start a new parse using the same yypstate.
7025 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7026 check multiple yypull_parse invocations on the same yypstate. For pull
7027 mode, extend to check multiple yyparse invocations.
7028 (Exploding the Stack Size with Alloca): Extend to try with
7029 %push-pull-parser.
7030 (Exploding the Stack Size with Malloc): Likewise.
7031
7032 * tests/calc.at (Simple LALR Calculator): Don't specify
7033 %skeleton "push.c" since %push-pull-parser implies that now.
7034 * tests/headers.at (export YYLTYPE): Don't check for the push
7035 declarations. Otherwise, this test case can't be used to see if push
7036 mode can truly emulate pull mode.
7037 * tests/input.at (Torturing the Scanner): Likewise.
7038 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7039 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7040 AT_YACC_IF, which now includes the case of push mode since %skeleton
7041 need not be used for push mode. This will be more intuitive once
7042 push.c is renamed to yacc.c.
7043
7172e23e
JD
70442006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7045
7046 For push mode, convert yyparse from a macro to a function, invoke yylex
7047 instead of passing a yylexp argument to yypull_parse, and don't
7048 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7049 Discussed starting at
7050 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7051 * data/bison.m4 (b4_pull_if): New.
7052 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7053 * data/push.c: Improve M4 quoting a little.
7054 (b4_generate_macro_args, b4_parenthesize): Remove.
7055 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7056 any time a pull parser is requested.
7057 Don't #define this as a wrapper around yypull_parse. Instead, when
7058 both push and pull are requested, make it a function that does that
7059 same thing.
7060 (yypull_parse): If there's a b4_prefix, #define this to
7061 b4_prefix[pull_parse] when both push and pull are requested.
7062 Don't define this as a function unless both push and pull are
7063 requested.
7064 Remove the yylexp argument and hard-code yylex invocation instead.
7065 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7066 %push-parser.
7067 * src/getargs.c (pull_parser): New global initialized to true.
7068 * getargs.h (pull_parser): extern it.
7069 * src/output.c (prepare): Insert pull_flag muscle.
7070 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7071 (prologue_declaration): Set both push_parser and pull_parser = true for
7072 %push-pull-parser. Set push_parser = true and pull_parser = false for
7073 %push-parser.
7074 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7075 %push-parser since there's no backward-compatibility concern here.
7076 Scan %push-pull-parser.
7077 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7078 instead of %push-parser.
7079 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7080 prototype it in the module that calls yyparse.
7081 * tests/input.at (Torturing the Scanner): Likewise.
7082 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7083
2e7944cb
JD
70842006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7085
7086 Update etc/bench.pl. Optimize push mode a little (the yyn change
7087 deserves most of the credit).
7088 * Makefile.am (SUBDIRS): Add etc subdirectory.
7089 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7090 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7091 yytoken, yyval, and yyloc declarations to...
7092 (yyparse or yypush_parse): ... here to improve performance. For
7093 yypush_parse invocations after the first, be sure to assign yyn its old
7094 value again.
7095 (yypstate_new): Don't bother initializing the yyresult field since the
7096 initial value isn't used.
7097 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
7098 remove the #define that, in push mode, set it to yyps->NAME.
7099 * etc/Makefile.am: New.
7100 * etc/bench.pl: Remove and build it instead from...
7101 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
7102 "tests/bison" from the build directory by default rather than just
7103 invoking "bison" from $PATH.
7104 (calc_grammar): Update push parser code: don't declare yylval globally,
7105 don't define yyparse_wrapper, and don't #define yyparse.
7106 (bench_grammar): Update to check all working combinations of yacc.c,
7107 push.c, impure, pure, pull, and push.
7108
c3d50342
JD
71092006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7110
7111 For push mode, add pull wrappers around yypush_parse.
7112 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7113 (yypull_parse): New function wrapping yypush_parse.
7114 (yyparse): New #define wrapping yypull_parse.
7115 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7116 is declared.
7117 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7118 prototype yylex in the module that calls yyparse, and don't prototype
7119 yyparse there. Otherwise, the yyparse expansion won't compile.
7120 * tests/input.at (Torturing the Scanner): Likewise.
7121
94ebeba5
JD
71222006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7123
7124 Enable push parsers to operate in impure mode. Thus, %push-parser no
7125 longer implies %pure-parser. The point of this change is to move
7126 towards being able to test the push parser code by running the entire
7127 test suite as if %push-parser had been declared.
7128 * data/push.c (yypush_parse): For impure mode, remove the
7129 yypushed_char, yypushed_val, and yypushed_loc arguments.
7130 Instead, declare these as local variables initialized to the global
7131 yychar, yylval, and yylloc.
7132 For the first yypush_parse invocation only, restore the initial values
7133 of these global variables when it's time to read a token since they
7134 have been overwritten.
7135 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7136 %push-parser.
7137 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7138 %pure-parser along with %push-parser since this test case was designed
7139 for pure push parsers.
7140 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7141 (AT_YACC_OR_PUSH_IF): New.
7142 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7143 add a note that it's still wrong for some cases (as it has been for a
7144 while).
7145 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7146 %push-parser no longer implies %pure-parser.
7147
a0633178
JD
71482006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7149
7150 Remove some unnecessary differences between the pull parser code and
7151 the push parser code. This patch enables yynerrs in push mode.
7152 * data/push.c: Reformat M4 a little.
7153 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7154 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7155 because push mode is on. Instead, if pure mode is on, move yynerrs
7156 to...
7157 (b4_declare_parser_state_variables): ... here.
7158 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7159 to yyps->NAME so it can be used in yypush_parse.
7160 (yypush_parse): Don't omit uses of yynerrs in push mode.
7161
8646b6a3
JD
71622006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7163
7164 Fix bug such that the first pushed token's value and location are
7165 sometimes overwritten (sometimes by %initial-action) before being used.
7166 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7167 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7168 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7169 more closely mimic the pull parser logic.
7170 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7171 time to read a token, which is after any initialization of yylval and
7172 yylloc.
7173 (gottoken): Rename label to...
7174 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7175 user namespace.
7176
9baf4d74
JD
71772006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7178
7179 Rearrange initialization of the parser state variables so that the
7180 skeleton doesn't have to have a copy for pull mode and another for push
7181 mode. This patch also fixes at least a bug such that yylloc was not
7182 initialized (with b4_location_initial_line and
7183 b4_location_initial_column) upon calling yypush_parse. However, that
7184 initialization now overwrites the first token's location;
7185 %initial-action assigning @$ already did the same thing, and both bugs
7186 will be fixed in a later patch.
7187 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7188 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7189 yyss, yyvs, yyls, and yystacksize.
7190 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7191 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7192 yylsp.
7193 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7194 yyps->NAME so it can be used in yypush_parse.
7195 (yyparse or yypush_parse): For yypush_parse, don't print the
7196 "Starting parse" diagnostic for invocations after the first.
7197 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7198 yypush_parse, only do it for the first invocation.
7199 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7200 initialization to occur in yypush_parse but only on the first
7201 invocation.
7202
23522164
JD
72032006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7204
7205 * data/push.c: Add CPP guards around push parser declarations in both
7206 the header and the code file.
7207 In the code file, move the push parser declarations to the same place
7208 they appear in the header file.
7209 Clean up the M4 some, especially the inconsistent underquoting in
7210 some b4_c_function_def and b4_c_function_decl uses.
7211
bb010fe5
JD
72122006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7213
7214 Encapsulate the push parser state variables into an M4 macro so the
7215 push skeleton doesn't have to list them again for pull mode's yyparse.
7216 For push mode, remove yypush_parse's local equivalents of these
7217 variables to eliminate unnecessary copying between the two sets at
7218 run-time. This patch also fixes at least a bug related to multiple
7219 %initial-action invocations in push mode.
7220 * data/push.c (b4_declare_parser_variables): Rename to...
7221 (b4_declare_scanner_communication_variables): ... this for clarity and
7222 update both uses.
7223 (b4_declare_yyparse_variables): Remove and move its contents to the one
7224 spot where it was invoked.
7225 (b4_declare_parser_state_variables): New macro containing the parser
7226 state variables required by push mode.
7227 (struct yypstate): Replace all fields but yynew with
7228 b4_declare_parser_state_variables.
7229 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7230 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7231 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7232 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7233 parser state variable declarations with
7234 b4_declare_parser_state_variables.
7235 Don't initialize parser state variables when calling yypush_parse since
7236 yypstate_new already does that.
7237 Invoke the user's initial action only upon the first yypush_parse
7238 invocation.
7239 Remove all code that copies between the local parser state variables
7240 and the yypstate.
7241
2d212f8c
JD
72422006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7243
7244 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7245 prevent a name collision in a future patch where these names will
7246 sometimes be #define'd.
7247 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7248 since it no longer has the same name as the existing argument.
7249 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7250
e6e704dc
JD
72512006-12-19 Paolo Bonzini <bonzini@gnu.org>
7252 and Joel E. Denny <jdenny@ces.clemson.edu>
7253
7254 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7255 that the argument is case-insensitive, and there's no `=' here.
7256 For the %skeleton entry, mention that %language is better.
7257 (Bison Options): Likewise for --language and --skeleton. Move the
7258 --skeleton entry so that the `Tuning the parser' section is sorted
7259 alphabetically on long options.
7260 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7261 %language directive in detail here; cross-reference the %language
7262 documentation instead.
7263 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7264 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 7265 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
7266 * examples/extexi (normalize): Instead of replacing every %require
7267 argument with the current Bison version, just substitute for
7268 `@value{VERSION}'. This guarantees that we're testing what actually
7269 appears in the documentation.
7270 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7271 rather than `@VERSION@'.
7272
0e021770
PE
72732006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7274
fd575f05
PE
7275 * NEWS: Reword the %language news a bit, and put it earlier.
7276
0e021770
PE
7277 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7278 Rewrite to simplify the logic.
7279 (language_argmatch): Likewise.
fd575f05
PE
7280 (program_name): We now own this var.
7281 * src/getargs.h (struct bison_language): Use char[] rather than
7282 const char *.
0e021770
PE
7283
7284 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7285 Java is supported.
7286 * src/complain.c (program_name): Remove decl; no longer needed.
7287 * src/main.c (program_name): Remove; now belongs to getargs.
7288
72892006-12-18 Paolo Bonzini <bonzini@gnu.org>
7290
7291 * NEWS: Document %language.
7292
7293 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7294
7295 * data/c-skel.m4, data/c++-skel.m4: New files.
7296 * data/glr.c: Complain on push parsers.
7297
7298 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7299 over %skeleton.
148d66d8 7300 (Decl Summary): Document %language and %skeleton.
0e021770
PE
7301 (Command line): Document -L.
7302
7303 * examples/extexi: Rewrite %require directive.
7304 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7305
7306 * src/files.c (compute_exts_from_gc): Look in language structure
7307 for .y extension.
7308 (compute_file_name_parts): Check whether .tab should be added.
7309 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7310 (language, skeleton_arg, language_argmatch): New.
7311 (long_options): Add --language.
7312 (getargs): Use skeleton_arg, add -L/--language.
7313 * src/getargs.h: Include location.h.
7314 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7315 * src/output.c (prepare): Pick default skeleton from struct language.
7316 Don't dispatch C skeletons here.
7317 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7318 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7319 * src/scan-gram.l ("%language"): New rule.
7320
7321 * tests/calc.at: Test %skeleton and %language.
7322 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7323 (AT_GLR_IF): Look for %skeleton "glr.cc".
7324 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7325 (AT_YACC_IF): Reject %language.
7326
5691bf57
PE
73272006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7328
db06f0ce
PE
7329 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7330 since it wasn't used; only the typedef name 'semantic_type' is needed.
7331 Also, omit trailing white space.
7332
5691bf57
PE
7333 * bootstrap: Sync from coreutils.
7334 (gnulib_extra_files): Add build-aux/announce.gen.
7335 (slurp): Adjust .gitignore files like .cvsignore files.
7336 * build-aux/announce-gen: Remove from CVS, since bootstrap
7337 now creates this.
7338
791934e4
JD
73392006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7340
7341 Make %push-parser imply %pure-parser. This fixes several bugs; see
7342 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7343 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7344 pure_parser = true.
7345 * data/push.c: Don't bother testing b4_push_if when deciding whether
7346 to expand b4_declare_parser_variables globally.
7347 (yypush_parse): Likewise in here.
7348
7349 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7350 (yy_reduce_print): Reformat M4 for readability.
7351
ee5abb37
JD
73522006-12-15 Bob Rossi <bob@brasko.net>
7353 and Joel Denny <jdenny@ces.clemson.edu>
7354
7355 * data/push.c (yypstate): Add typedef, and update all uses of
7356 struct yypstate to just yypstate.
7357 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7358
16ca01f9
JD
73592006-12-14 Bob Rossi <bob@brasko.net>
7360
7361 * data/push.c (yypush_parse): Declare prototype regardless of
7362 %locations option.
7363
ab8e7e1a
JD
73642006-12-14 Bob Rossi <bob@brasko.net>
7365
7366 * data/push.c (yyparse): Remove the prototype and the #define when in
7367 push-parser mode.
7368
9bf32be3
JD
73692006-12-13 Bob Rossi <bob@brasko.net>
7370
7371 * data/push.c (yypstate_init): Rename to...
7372 (yypstate_new): ... this and use b4_c_function_def.
7373 (yypstate_delete): New.
7374 (yypush_parse): Change parameters yynval and yynlloc to be const.
7375 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7376 yypstate_delete functions.
7377
f02e2948
JD
73782006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7379
7380 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7381 strange test case titles. Reported by Bob Rossi.
7382
38eb7751
PE
73832006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7384
7385 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7386 of potential ambiguities in GLR grammers.
7387
bd9d212b
JD
73882006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7389
7390 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7391 `bison ', use m4_index instead of m4_substr since chopping up a string
7392 containing M4-special characters causes problems here.
7393
7394 Fix a couple of bugs related to special characters in user-specified
7395 file names, and make it easier for skeletons to compute output file
7396 names with the same file name prefix as Bison-computed output file
7397 names.
7398 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7399 b4_parser_file_name and b4_spec_defines_file instead of
7400 @output_parser_name@ and @output_header_name@, which are now redundant.
7401 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7402 b4_parser_file_name, b4_spec_defines_file, and the new
7403 @basename(FILENAME@) instead of @output_parser_name@ and
7404 @output_header_name@, which inappropriately escaped the file names as
7405 C string literals.
7406 * src/files.c (all_but_ext): Remove static qualifier.
7407 (compute_output_file_names): Move `free (all_but_ext)' to...
7408 (output_file_names_free): ... here since all_but_ext is needed later.
7409 * src/files.h (all_but_ext): Extern.
7410 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7411 exactly what MUSCLE_INSERT_STRING used to do.
7412 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7413 characters are escaped properly.
7414 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7415 all_but_ext.
7416 For pkgdatadir muscle, maintain previous functionality by using
7417 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7418 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7419 digraphs would never be expanded. Hopefully no one has M4-special
7420 characters in his Bison installation path.
7421 * src/scan-skel.l: Don't parse @output_header_name@ and
7422 @output_parser_name@ anymore since they're now redundant.
7423 In @output, use decode_at_digraphs.
7424 Parse a new @basename command that invokes last_component.
7425 (decode_at_digraphs): New.
7426 (BASE_QPUTS): Remove unused.
7427 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7428 (Output file name): New tests.
7429
3f7ca628
JD
74302006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7431
7432 Warn about output files that are generated by the skeletons and that
7433 conflict with other output files.
7434 * data/glr.c: Don't generate the header file here when glr.cc does.
7435 * src/files.c (file_names, file_names_count): New static globals.
7436 (compute_output_file_names): Invoke output_file_name_check for files
7437 not generated by the skeletons and remove existing checks.
7438 (output_file_name_check): New function that warns about conflicting
7439 output file names.
7440 (output_file_names_free): Free file_names.
7441 * src/files.h (output_file_name_check): Declare.
7442 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7443 the skeletons.
7444 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7445 (Conflicting output files): New tests.
7446
178e123e
PE
74472006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7448
7449 * doc/bison.texinfo: Fix a couple of typos.
7450
74512006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
7452
7453 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7454 Rename to...
7455 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7456 update all uses.
7457 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7458 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7459 local pv.
7460 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7461 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7462
ea17f233
JD
74632006-12-07 Bob Rossi <bob@brasko.net>
7464 and Joel Denny <jdenny@ces.clemson.edu>
7465
7466 * data/push.c (yypvarsinit): Change return type from void* to struct
7467 yypvars*. No longer cast to void* on return.
7468 (struct yypvars): Remove yylen since it need not be remembered between
7469 yypushparse invocations.
7470 (yypushparse): Don't copy between yylen and pv->yylen.
7471
55a30bda
JD
74722006-12-05 Bob Rossi <bob@brasko.net>
7473
7474 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7475 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7476 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7477 (struct yypvars): Remove b4_declare_parser_variables.
7478 (yypvarsinit): Remove init code for removed variables.
7479 (global scope): Do not declare b4_declare_parser_variables if
7480 push or pure mode.
7481 (yypushparse): Add b4_declare_parser_variables.
7482 Init new local variables, and remove init code for removed
7483 yypvars variables.
7484 (yyparse): Delete.
7485 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7486 and yyparse for other modes.
7487 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7488 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7489 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7490 (AT_PURE_LEX_IF): True if pure or push parser.
7491
85894313
JD
74922006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7493
7494 Document Yacc prologue alternatives and default %destructor's and
7495 %printer's as experimental. Don't mention Java yet. Discussed at
7496 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7497 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7498 (2.3a): Annotate this entry to say the old forms of these features were
7499 also experimental.
7500 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 7501 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
7502 of Java (we'll want this back eventually).
7503
02975b9a
JD
75042006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7505
7506 Support a file name argument to %defines. Deprecate `=' in
7507 %file-prefix, %name-prefix, and %output. Discussed at
7508 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7509 * NEWS (2.3a+): Mention.
148d66d8 7510 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
7511 form of %defines, and remove `=' from entries for %file-prefix,
7512 %name-prefix, and %output.
7513 * src/parse-gram.y (prologue_declaration): Implement.
7514 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7515 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7516 all but one occurrence of %name-prefix.
7517 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7518 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7519 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7520 occurrence of each of %file-prefix and %output. Add check for %defines
7521 with argument.
7522 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7523 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7524 Remove the `=' from %output.
7525
287b314e
JD
75262006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7527
7528 Don't escape $ in test case titles since Autoconf 2.61 now does that
7529 correctly.
7530 * tests/actions.at (Default %printer and %destructor are not for error
7531 or $undefined): Here.
7532 (Default %printer and %destructor are not for $accept): Here.
7533 * tests/input.at (Invalid $n and @n): Here.
7534
3ebecc24
JD
75352006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7536
7537 Rename <!> to <>. Discussed starting at
7538 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7539 * NEWS (2.3a+): Update.
148d66d8 7540 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
7541 Update.
7542 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7543 * src/scan-gram.l (INITIAL): Implement.
7544 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7545 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7546 comment.
7547 * tests/actions.at (Default tagless %printer and %destructor,
7548 Default tagged and per-type %printer and %destructor,
7549 Default %printer and %destructor are not for error or $undefined,
7550 Default %printer and %destructor are not for $accept,
7551 Default %printer and %destructor for mid-rule values): Update.
7552 * tests/input.at (Default %printer and %destructor redeclared,
7553 Unused values with default %destructor): Update.
7554
26b8a438
JD
75552006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7556
7557 Don't let %prec take a nonterminal.
7558 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7559 token.
7560 * tests/input.at (%prec takes a token): New test checking that %prec
7561 won't take a nonterminal.
7562
07c39ae9
JD
75632006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7564
405d53b7
JD
7565 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7566 it was double-quoted.
07c39ae9
JD
7567 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7568 grammar is maintained with Bison's highest standards.
7569 * src/getargs.c: Fix some typos in Doxygen comments.
7570
580b8926
JD
75712006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7572
7573 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7574 later. Reported by Paul Eggert in
7575 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7576 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7577 * src/scan-code.l (translate_action): Don't bother invoking
7578 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7579 (code_scanner_free): Instead of invoking
7580 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7581 which frees more.
7582 * src/scan-gram.l (gram_scanner_free): Likewise.
7583 * src/scan-skel.l (scan_skel): Likewise.
7584
4502eadc
JD
75852006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7586
7587 * src/files.c (tr): Change return type to void.
7588 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7589 has been called previously for the same key.
7590 (muscle_find): Return storage instead of value so that
7591 --enable-gcc-warnings doesn't produce warnings that the return discards
7592 const. aver that the value and storage are the same since storage
7593 could potentially be NULL when value is not.
7594 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7595 same as 0.
7596
7746c8f6
PE
75972006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7598
7599 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7600 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7601 us a slightly cleaner distribution, and also works.
7602 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7603 gnulib changes.
7604
eb095650
PE
76052006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7606 and Paul Eggert <eggert@cs.ucla.edu>
7607
7608 Don't let Bison leak memory except when it complains.
7609 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7610 (spec_defines_file, dir_prefix): Now char *, not const char *,
7611 since they are freed.
7612 * src/files.c: Likewise.
7613 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7614 Likewise.
7615 (tr): Now operates in-place. All uses changed.
7616 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7617 values.
7618 (compute_file_name_parts, compute_output_file_names): Don't store
7619 read-only data in variables that will be freed.
7620 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7621 src_extension, and header_extension.
7622 (output_file_names_free): New public function to free
7623 spec_verbose_file, spec_graph_file, spec_defines_file,
7624 parser_file_name, and dir_prefix.
7625 * src/getargs.c (getargs): Don't store read-only data in variables that
7626 will be freed.
7627 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7628 (which previously existed but was unused), and quotearg_free.
7629 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7630 * src/muscle_tab.c: Likewise.
7631 (muscle_entry): Make the value char const *,
7632 and add a new storage member that is char * and can be freed.
7633 (muscle_entry_free): New private function.
7634 (muscle_init): Use it instead of free.
7635 (muscle_insert, muscle_grow): Update and use new storage member.
7636 (muscle_code_grow): Free the string passed to muscle_grow
7637 since it's not needed anymore.
7638 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7639 add a new `char *code' member.
7640 ("{...}"): Declare semantic type as code.
7641 * src/scan-code.h (translate_rule_action):
7642 (translate_symbol_action, translate_code, translate_action): Return
7643 `char const *' rather than `char *' since external code should not free
7644 these strings.
7645 * src/scan-code.l: Likewise.
7646 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7647 which is "{...}" in the parser.
7648 * tests/Makefile.am (maintainer-check-valgrind): Set
7649 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7650 Valgrind.
7651 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7652 complain.
7653 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7654 expecting a non-zero exit status sets --leak-check=summary and
7655 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7656 this case, and we don't want to hear about it.
7657
ac564be4
PE
76582006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7659
7660 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7661 instead of from the template, to simplify configuration a bit.
7662 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7663 and m4/wint_t.m4, as they are needed with the latest gnulib.
7664
17bd8a73
JD
76652006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7666
7667 Disable unset/unused mid-rule value warnings by default, and recognize
7668 --warnings=midrule-values to enable them. Discussed starting at
7669 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7670 * NEWS (2.3a+): Mention.
7671 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7672 warnings): Add entry for midrule-values subargument.
7673 * src/reader.c (symbol_should_be_used): Don't return true just because
7674 the value is a set/used mid-rule value unless
7675 --warnings=midrule-values was specified.
7676 * tests/input.at (Unused values, Unused values before symbol
7677 declarations): Run tests with and without --warnings=midrule-values.
7678
7679 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7680 than LIST_FREE directly.
7681
89eb3c76
JD
76822006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7683
7684 Finish implementing --warnings=error, which should not be implied by
7685 --warnings=all (or by its synonyms -W and --warnings without
7686 subarguments).
7687 * src/complain.c (set_warning_issued): New function to report that
7688 warnings are being treated as errors and to record an error if so.
7689 Invoke...
7690 (warn_at, warn): ... here.
7691 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7692 "error - warnings are errors" does not appear above "all - all of the
7693 above".
7694 (getargs): For -W and --warnings without subarguments, don't let
7695 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7696 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7697
ba7560e2
JD
76982006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7699
7700 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7701 empty subargument list. For example: `bison --warnings= parser.y'.
7702
31283fc3
JD
77032006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7704
7705 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7706 the parser header file so that gcc doesn't warn.
7707
12e35840
JD
77082006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7709
7710 Split the default %destructor/%printer into two kinds: <*> and <!>.
7711 Discussed starting at
7712 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7713 * NEWS (2.3a+): Mention.
7714 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7715 previous change today related to mid-rules.
148d66d8 7716 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 7717 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
7718 (TYPE_TAG_ANY): Add as <*>.
7719 (TYPE_TAG_NONE): Add as <!>.
7720 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7721 for <*> and <!>.
7722 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7723 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7724 * src/symlist.c (symbol_list_default_new): Split into tagged and
7725 tagless versions.
7726 (symbol_list_destructor_set, symbol_list_printer_set): Split
7727 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7728 SYMLIST_DEFAULT_TAGLESS.
7729 * src/symlist.h: Update symbol_list_default*_new prototypes.
7730 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7731 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7732 * src/symtab.c (default_destructor, default_destructor_location,
7733 default_printer, default_printer_location): Split each into tagged and
7734 tagless versions.
7735 (symbol_destructor_get, symbol_destructor_location_get,
7736 symbol_printer_get, symbol_printer_location_get): Implement tagged
7737 default and tagless default cases.
7738 (default_destructor_set, default_printer_set): Split each into tagged
7739 and tagless versions.
7740 * src/symtab.h: Update prototypes.
7741 * tests/actions.at (Default %printer and %destructor): Rename to...
7742 (Default tagless %printer and %destructor): ... this, and extend.
7743 (Per-type %printer and %destructor): Rename to...
7744 (Default tagged and per-type %printer and %destructor): ... this, and
7745 extend.
7746 (Default %printer and %destructor for user-defined end token): Extend.
7747 (Default %printer and %destructor are not for error or $undefined):
7748 Update.
7749 (Default %printer and %destructor are not for $accept): Update.
7750 (Default %printer and %destructor for mid-rule values): Extend.
7751 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7752 (Unused values with default %destructor): Extend.
7753
f91b1629
JD
77542006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7755
7756 Don't apply the default %destructor/%printer to an unreferenced midrule
7757 value. Mentioned at
7758 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7759 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7760 like $@n instead of just @n so that the default %destructor/%printer
7761 logic doesn't see them as user-defined symbols.
7762 (symbol_is_dummy): Check for both forms of the name.
7763 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7764 name for which the midrule value is referenced in any action.
7765 * tests/actions.at (Default %printer and %destructor for mid-rule
7766 values): New test.
7767 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7768 for change to dummy symbol names.
7769
519d0004
JD
77702006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7771
7772 Warn about unset midrule $$ if the corresponding $n is used.
7773 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7774 $n usage.
7775 (packgram): Before invoking grammar_rule_check on any rule, make sure
7776 all actions have already been scanned in order to set `used' flags.
7777 Otherwise, checking that a midrule's $$ is set will not always work
7778 properly because the midrule check must forward-reference the midrule's
7779 parent rule.
7780 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7781 warning.
7782
a501eca9
JD
77832006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7784
7785 More improvements to the documentation of the prologue alternatives:
7786 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7787 Bison manual.
7788 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7789 some text to clarify the relative importance of the new directives and
7790 to show how these directives may be viewed as code labels.
7791
2cbe6b7f
JD
77922006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7793
7794 Similar to the recently removed %before-header, add %code-top as the
7795 alternative to the pre-prologue. Mentioned at
7796 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7797 Also, let the prologue alternatives appear in the grammar section.
7798 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7799 (prologue_declaration): Move the existing prologue alternatives to...
7800 (grammar_declaration): ... here and add %code-top.
7801 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7802
7803 Clean up and extend documentation for the prologue alternatives.
7804 * NEWS (2.3a+): Describe prologue alternatives.
7805 * doc/bison.texinfo (Prologue): Move discussion of prologue
7806 alternatives to...
7807 (Prologue Alternatives): ... this new section, and extend it to discuss
7808 all 4 directives in detail.
148d66d8
JD
7809 (Table of Symbols): Clean up discussion of prologue alternatives and
7810 add %code-top.
2cbe6b7f 7811
e557d3ea
JMG
78122006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7813
7814 DJGPP specific issues.
7815
7816 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7817 config.bat accordingly.
7818 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7819 * djgpp/config.site: Likewise.
7820
136a0f76
PB
78212006-10-16 Paolo Bonzini <bonzini@gnu.org>
7822
27bd5d67
PB
7823 Replace %*-header with %provides, %requires, %code. See discussion at
7824 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7825
136a0f76
PB
7826 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7827 (b4_user_start_header): Remove.
7828 * data/glr.c: Use new macros instead of b4_*start_header
7829 and b4_*end_header.
7830 * data/glr.cc: Likewise.
7831 * data/lalr1.cc: Likewise.
7832 * data/push.c: Likewise.
7833 * data/yacc.c: Likewise.
7834
7835 * doc/bison.texinfo: Remove %before-header, rename
7836 %{start,end,after}-header to %requires, %provides, %code.
7837
7838 * src/parse-gram.y: Likewise (also rename token names accordingly).
7839 * src/scan-gram.l: Likewise.
7840 * tests/actions.at: Likewise.
7841
10f429ef
PE
78422006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7843
7844 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7845 Problem reported by Joel E. Denny.
7846
78472006-10-14 Jim Meyering <jim@meyering.net>
7848
7849 (Sync from coreutils.)
7850 Work also when the working directory (with e.g. coreutils sources)
7851 is version controlled with git, rather than CVS.
7852 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7853 rather than CVS.
7854 In messages and comments, say e.g., "checked-out sources",
7855 rather than "CVS sources".
7856 (version_controlled_file): New function. Work for git as well as
7857 for CVS. Don't use grep's -q option.
7858 (slurp): Call it here, in place of CVS-specific code.
7859
c4bd5bf7
JD
78602006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7861
7862 Fix testsuite for ./configure --enable-gcc-warnings:
7863 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7864 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7865 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7866 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7867 * test/regression.at (Diagnostic that expects two alternatives):
7868 Likewise.
7869
46356ea4
PE
78702006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7871
231ed89a
PE
7872 * bootstrap.conf (gnulib_modules): Add config-h.
7873 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7874 worry about HAVE_CONFIG_H.
7875 * lib/abitset.c: Likewise.
7876 * lib/bitset.c: Likewise.
7877 * lib/bitset_stats.c: Likewise.
7878 * lib/bitsetv-print.c: Likewise.
7879 * lib/bitsetv.c: Likewise.
7880 * lib/ebitset.c: Likewise.
7881 * lib/get-errno.c: Likewise.
7882 * lib/lbitset.c: Likewise.
7883 * lib/subpipe.c: Likewise.
7884 * lib/timevar.c: Likewise.
7885 * lib/vbitset.c: Likewise.
7886 * lib/bitset.c: Include "bitset.h" first, to test interface.
7887 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7888 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7889 * lib/bitsetv.c: Include "bitsetv.h" first.
7890 * lib/get-errno.c: Include "get-errno.h" first.
7891 * m4/.cvsignore: Add config-h.m4.
7892 * tests/actions.at (Default %printer and %destructor for ...):
7893 Adjust expected line numbers in output to reflect removal of #if
7894 HAVE_CONFIG_H lines.
7895 * tests/glr-regression.at (Missed %merge type warnings when ...):
7896 Likewise.
7897 * tests/regression.at (Braced code in declaration in rules section):
7898 Likewise.
7899 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7900 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7901 Include <config.h> unconditionally.
7902
46356ea4
PE
7903 * bootstrap: Sync from coreutils, as follows:
7904
7905 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7906
7907 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7908 variable was sometimes used without being initialized. This
7909 messed up the installation of the INSTALL file in some cases.
7910
7911 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7912
7913 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7914 --copy. Inspired by a suggestion from Bruno Haible.
7915
7916 2006-10-03 Jim Meyering <jim@meyering.net>
7917
7918 * bootstrap: Undo last change to this file, since now gnulib-tool
7919 sticks with the automake default in generating dependencies.
7920
dd4bf078
PE
79212006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7922
cf2a5f7c
PE
7923 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7924 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7925
7926 * doc/bison.1: Add copyright notice.
7927
7928 * data/glr.c: Don't include <stdarg.h>; not used.
7929
35fe0834
PE
7930 * NEWS: The -g and --graph options now output graphs in Graphviz
7931 DOT format, not VCG format.
7932 * doc/bison.1: Likewise.
7933 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
7934 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7935 of this change in
7936 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
7937 * TODO: Remove Graphviz entry.
7938 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7939 remove vcg.c, vcg.h, vcg_defaults.h.
7940 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7941 * src/graphviz.c, src/graphviz.h: New files.
7942 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7943 * src/files.h: Make comment more generic.
7944 * src/main.c (main): Likewise.
7945 * src/print_graph.h: Likewise.
7946 * src/getargs.c (usage): Make usage description more generic.
7947 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7948 (static_graph, fgraph): Remove. All uses changed to pass
7949 arguments instead of sharing a static var.
7950 (print_core, print_actions, print_state, print_graph):
7951 Output graphviz format rather than VCG format.
7952 * tests/.cvsignore: Remove *.vcg; add *.dot.
7953 * tests/output.at: Expect *.dot files, not *.vcg files.
7954
dd4bf078
PE
7955 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7956 accommodates the 2006-10-08 change.
7957
efdd7421
PE
79582006-10-11 Bob Rossi <bob@brasko.net>
7959
7960 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7961 (b4_yyssa, b4_yyerror_range): New macros.
7962 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7963 (yypvarsinit): Remove init of removed fields.
7964 (yypushparse): Remove use of removed fields; use new macros instead.
7965
96a1981a
PE
79662006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7967
7968 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7969 in a push parser. Reindent slightly to match yacc.c better.
7970
79712006-10-11 Bob Rossi <bob@brasko.net>
7972
46356ea4
PE
7973 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7974 yymsg_alloc fields.
7975 (yypvarsinit, yypushparse): Remove init of removed fields.
7976 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 7977
c1630a8b
PE
79782006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7979
7980 * THANKS: Add Paolo Bonzini and Bob Rossi.
7981
90b9908d
PB
79822006-10-08 Paolo Bonzini <bonzini@gnu.org>
7983
7984 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7985 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7986 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7987 b4_define_user_cde and uses): Remove.
7988 (b4_comment, b4_prefix, b4_sync_start): New.
7989 * data/bison.m4: New file, with most of the content removed from c.m4.
7990 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7991 * src/output.c (output_skeleton): Pass bison.m4.
7992 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7993 only if specified.
7994
cf806753
PE
79952006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7996
7997 Fix test failure reported by Tom Lane in
7998 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7999 and try to make such failures easier to catch in the future.
8000 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
8001 that's now the caller's responsibility.
8002 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
8003 Set yychar = YYEOF if it's negative.
8004 * tests/actions.at (yylex): Abort if asked to read past EOF.
8005 * tests/conflicts.at (yylex): Likewise.
8006 * tests/cxx-type.at (yylex): Likewise.
8007 * tests/glr-regression.at (yylex): Likewise.
8008 * tests/input.at (yylex): Likewise.
8009 * tests/regression.at (yylex): Likewise.
8010 * tests/torture.at (yylex): Likewise.
8011
0e2f006a
PE
80122006-10-01 Paul Eggert <eggert@cs.ucla.edu>
8013
8014 Fix problems with translating English-language diagnostics.
8015 * bootstrap: Fix bug introduced in recent bootstrap changes, with
8016 respect to bison-runtime pot generation. The YY_ stuff
8017 wasn't being captured.
8018 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
8019 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
8020 * runtime-po/POTFILES.in: Add data/push.c.
8021
e3ddc1e3
PE
80222006-09-29 Paul Eggert <eggert@cs.ucla.edu>
8023
8024 Merge bootstrap changes from coreutils.
8025
8026 2006-09-28 Jim Meyering <jim@meyering.net>
8027
8028 Automatically generated dependencies are important even
8029 when all of the sources in a directory come from gnulib.
8030 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8031 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8032
8033 2006-09-23 Jim Meyering <jim@meyering.net>
8034
8035 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8036
8037 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8038
8039 * bootstrap: Add support for --force.
8040 (usage): New function. Describe usage less tersely.
8041 (CVS_only_file): New var.
8042
01e972b3
PE
80432006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8044
8045 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8046 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8047 Adjust white space and comments to match GNU style better.
8048
c63d3e90
PE
80492006-09-20 Bob Rossi <bob@brasko.net>
8050
8051 * data/push.c (yyresult_get): Remove function.
8052 (YYPUSH_MORE): Add #define.
8053 (yypushparse): Modify return value.
8054
e70f46d1
PE
80552006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8056
8057 * stamp-h.in: Remove; no longer needed.
8058 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8059 Remove config.h, config.hin, intl (no longer created).
8060 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8061 stamp-h1.
8062
8063 Sync bootstrap from coreutils, as follows:
8064
8065 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8066
8067 * bootstrap (symlink_to_gnulib): New function.
8068 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8069 to copies-of-gnulib.
8070 (cp_mark_as_generated, slurp, gnulib_files):
8071 Avoid making a copy if it's the same as the old version.
8072 (gnulib_files): Add support for this variable (used by Bison).
8073
a92be413
PE
80742006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8075
8076 * src/getargs.c (usage): Rework to use conventions similar to
8077 coreutils, to make translation a bit easier and the code a bit
8078 smaller. Problem reported by Tim Van Holder.
8079
4f82b42a
PE
80802006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8081
3b2942e6
PE
8082 Use some of gnulib's new modules, taken from coreutils.
8083
8084 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8085 * bootstrap.conf: New file.
8086 (gnulib_modules): Add configmake, inttypes, unistd.
8087 (XGETTEXT_OPTIONS): Add complain, complain_at,
8088 fatal, fatal_at, warn, warn_at, unexpected_end.
8089 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8090 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8091 (gl_EARLY): Add.
8092 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8093 (gl_INIT): Add
8094 (GNULIB_AUTOCONF_SNIPPET): Remove.
8095 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
8096 the pickiest.
8097 * lib/.cvsignore: Add inttypes_.h.
8098 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
8099 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
8100 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
8101 no-longer-necessary initializations.
8102 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
8103 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
8104 use the unistd module.
8105 * src/system.h: Likewise.
8106 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
8107 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
8108 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
8109 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
8110 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8111 * src/system.h: Include inttypes.h unconditionally, now that we
8112 use the inttypes module. Don't bother to include stdint.h, since
8113 inttypes.h now does that for us.
8114 (LOCALEDIR): Remove, now that we use the configmake module.
8115 * src/getargs.c: Include configmake.h.
8116 * src/main.c: Likewise.
8117 * src/output.c: Likewise.
8118 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8119 not from $abs_top_builddir, since config.h moved.
8120
8121
4f82b42a
PE
8122 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8123 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8124
8125 * src/parse-gram.y (symbol_declaration): Don't put statements
8126 before declarations; it's not portable to C89.
8127 * src/scan-code.l (handle_action_at): Likewise.
8128
8129 * src/scan-code.l: Always initialize braces_level; the old code
8130 left it uninitialized and therefore had undefined behavior.
8131
8132 Don't attempt to redefine 'assert', since it runs afoul of
8133 systems where standard headers (mistakenly) include <assert.h>.
8134 Instead, define and use our own alternative, called 'aver'.
8135 * src/reader.c: Don't include assert.h, since we no longer
8136 use assert.
8137 * src/scan-code.l: Likewise.
8138 * src/system.h (assert): Remove, replacing with....
8139 (aver): New function, taking a bool arg. All uses changed.
8140 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8141 not merely an integer.
8142
31c10e38
PE
81432006-09-15 Bob Rossi <bob@brasko.net>
8144
d6bdb90a
JD
8145 Add support for push parsing. Based on the original work of
8146 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
8147 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8148 * data/c.m4 (YYPUSH): New.
8149 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
d6bdb90a 8150 * data/push.c: New file.
31c10e38
PE
8151 * src/getargs.c (push_parser): New var.
8152 * src/getargs.h (push_parser): New declaration.
8153 * src/output.c (prepare): Add macro insertion of `push_flag'.
8154 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8155 (prologue_declaration): Parse %push-parser.
8156 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8157 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8158 list of removed lines from the traces observed.
8159 (AT_CHECK_CALC_LALR): Added push parser tests.
8160
fa7b79c0
PE
81612006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8162
21fe08ca
PE
8163 * NEWS: Version 2.3a.
8164 * configure.ac (AC_INIT): Likewise.
8165
e8ec4d9b
PE
8166 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8167 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8168 due to header ordering dependencies. I don't know why the #define
8169 was there.
8170
fa7b79c0
PE
8171 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8172 runtime cost when YYDEBUG is not defined, and so that some tests
8173 that used to fail now work. Problem and initial suggestion by
8174 Paolo Bonzini.
8175 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8176 * data/glr.cc (b4_parser_class_name):
8177 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8178 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8179 (yydebug_) [YYDEBUG]: New member.
8180 (yycdebug_): Now defined only if YYDEBUG.
8181 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8182 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8183 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8184 if YYYDEBUG.
8185 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8186 Define only if YYDEBUG.
8187 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8188 set_debug_level.
8189 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8190 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8191 AT_CHECK_CALC_GLR_CC that are working now.
8192
4ec13d60
PE
81932006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8194
8195 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8196 We don't need them in glr.cc, and glr.c defines them.
8197 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8198 assumes that defining it to anything is the same as defining
8199 it to 1. Problem reported by Paolo Bonzini.
8200
8e1687ae
PE
82012006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8202
8203 * data/c.m4 (b4_null, b4_case): Define.
8204 * src/output.c (prepare_symbols): Use b4_null.
8205 (user_actions_output): Use b4_case.
8206
3dc5e96b
PE
82072006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8208
aef3da86
PE
8209 * data/glr.c (b4_shared_declarations): Put start-header first,
8210 before any #includes that we generate, so that feature-test
8211 macros work. Problem reported by Michael Deutschmann in
8212 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8213 * data/lalr1.cc: Likewise.
8214 * doc/bison.texinfo (Prologue): Document that feature-test macros
8215 should be defined before any Bison declarations.
8216 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8217 that depend on location.hh after, not before, Bison decls, since
8218 we now include location.hh after the first user prologue.
8219
3dc5e96b
PE
8220 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8221 Sander Brandenburg in
8222 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8223 Also, fix minor white space and comment issues.
aef3da86
PE
8224 (Prologue): Mention that it's better to define feature-test macros
8225 before Bison declarations. Problem reported by Michael Deutschmann.
8226
8227 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8228 by Jim Meyering.
8229 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8230 This adjusts to recent gnulib changes.
3dc5e96b 8231
b2a0b7ca
JD
82322006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8233
8234 Finish implementation of per-type %destructor/%printer. Discussed
8235 starting at
8236 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8237 and
8238 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8239 * NEWS (2.3+): Add a description of this feature to the default
8240 %destructor/%printer description.
8241 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8242 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8243 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8244 list node contains a semantic type.
8245 * src/symtab.c, src/symtab.h: Extend with a table that associates
8246 semantic types with their %destructor's and %printer's.
8247 (semantic_type_from_uniqstr, semantic_type_get,
8248 semantic_type_destructor_set, semantic_type_printer_set): New functions
8249 composing the public interface of that table.
8250 (symbol_destructor_get, symbol_destructor_location_get,
8251 symbol_printer_get, symbol_printer_location_get): If there's no
8252 per-symbol %destructor/%printer, look up the per-type before trying
8253 the default.
8254 * tests/actions.at (Per-type %printer and %destructor): New test case.
8255 * tests/input.at (Default %printer and %destructor redeclared):
8256 Extend to check that multiple occurrences of %symbol-default in a
8257 single %destructor/%printer declaration is an error.
8258 (Per-type %printer and %destructor redeclared, Unused values with
8259 per-type %destructor): New test cases.
8260
3be03b13
JD
82612006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8262
8263 Require default %destructor/%printer to be declared using
8264 %symbol-default instead of an empty symbol list, and start working on
8265 new per-type %destructor/%printer. Discussed at
8266 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8267 * NEWS (2.3+): Add %symbol-default to example.
8268 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 8269 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
8270 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8271 (generic_symlist, generic_symlist_item): New nonterminals for creating
8272 a list in which each item is a symbol, semantic type, or
8273 %symbol-default.
8274 (grammar_declaration): Use generic_symlist in %destructor and %printer
8275 declarations instead of symbols.1 or an empty list.
8276 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8277 for changes to symbol_list.
8278 * src/reader.c: Update for changes to symbol_list.
8279 * src/scan-code.l: Likewise.
8280 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8281 * src/symlist.c, src/symlist.h: Extend such that a list node may
8282 represent a semantic type or a %symbol-default in addition to just an
8283 ordinary symbol. Add switched functions for setting %destructor's and
8284 %printer's.
8285 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8286 %destructor/%printer declarations.
8287
3508ce36
JD
82882006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8289
8290 Whether the default %destructor/%printer applies to a particular symbol
8291 isn't a question of whether the user *declares* that symbol (in %token,
8292 for example). It's a question of whether the user by any means
8293 *defines* the symbol at all (by simply using a char token, for
8294 example). $end is defined by Bison whereas any other token with token
8295 number 0 is defined by the user. The error token is always defined by
8296 Bison regardless of whether the user declares it with %token, but we
8297 may one day let the user define error as a nonterminal instead.
8298 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8299 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8300 the meaning of "user-defined".
8301 * tests/actions.at (Default %printer and %destructor for user-declared
8302 end token): Rename to...
8303 (Default %printer and %destructor for user-defined end token): ...
8304 this.
8305
8306 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8307 computation of whether to apply the default, don't maintain a list of
8308 every Bison-defined symbol. Instead, just check for a first character
8309 of '$', which a user symbol cannot have, and check for the error token.
8310
9350499c
JD
83112006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8312
8313 Don't apply the default %destructor or %printer to the error token,
8314 $undefined, or $accept. This change fits the general rule that the
8315 default %destructor and %printer are only for user-declared symbols,
8316 and it solves several difficulties that are described in the new test
8317 cases listed below.
8318 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8319 * tests/actions.at (Default %printer and %destructor are not for error
8320 or $undefined, Default %printer and %destructor are not for $accept):
8321 New test cases.
8322
4d7370cb
JD
83232006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8324
8325 Allow %start after the first rule.
8326 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8327 when parsing the first rule.
8328 (check_and_convert_grammar): Search for it here after all grammar
8329 declarations have been parsed. Skip midrules, which have dummy LHS
8330 nonterminals.
8331 * src/symtab.c (symbol_is_dummy): New function.
8332 * src/symtab.h (symbol_is_dummy): Declare it.
8333 * tests/input.at (%start after first rule): New test.
8334
6d0ef4ec
JD
83352006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8336
8337 Redo some of the previous commit: add back the ability to use
8338 non-aliased/undeclared string literals since it might be useful to
8339 those declaring %token-table.
8340 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8341 commit: don't worry about complaints from symbols_pack.
8342 * src/symtab.c (symbol_new, symbol_class_set,
8343 symbol_check_alias_consistency): Undo changes in previous commit: count
8344 each string literal as a new symbol and token, assign it a symbol
8345 number, and don't complain about non-aliased string literals.
8346 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8347 and token counts but does still set aliased tokens to the same number,
8348 symbol_pack_processor now leaves empty slots in the symbols array.
8349 Remove those slots.
8350 * tests/regression.at (Undeclared string literal): Remove test case
8351 added in previous commit since non-aliased string literals are allowed
8352 again.
8353 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8354 remove unnecessary string literal declarations.
8355 * tests/sets.at (Firsts): Likewise.
8356
965537bc
JD
83572006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8358
8359 Don't allow an undeclared string literal, but allow a string literal to
8360 be used before its declaration.
8361 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8362 symbols_pack complained.
8363 * src/symtab.c (symbol_new): Don't count a string literal as a new
8364 symbol.
8365 (symbol_class_set): Don't count a string literal as a new token, and
8366 don't assign it a symbol number since symbol_make_alias does that.
8367 (symbol_make_alias): It's not necessary to decrement the symbol and
8368 token counts anymore. Don't assume that an alias declaration occurs
8369 before any uses of the identifier or string, and thus don't assert that
8370 one of them has the highest symbol number so far.
8371 (symbol_check_alias_consistency): Complain if there's a string literal
8372 that wasn't declared as an alias.
8373 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8374 symbol_pack asserts that every token has been assigned a symbol number
8375 although undeclared string literals have not.
8376 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 8377 string literal): New test cases.
965537bc
JD
8378 (Characters Escapes, Web2c Actions): Declare string literals as
8379 aliases.
8380 * tests/sets.at (Firsts): Likewise.
8381
47aee066
JD
83822006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8383
8384 In the grammar scanner, STRING_FINISH unclosed constructs and return
8385 them to the parser in order to improve error messages.
8386 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8387 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8388 * tests/input.at (Unclosed constructs): New test case.
8389 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8390 seen.
8391
8392 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8393 unused global.
8394
1f6b3679
JD
83952006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8396
8397 Handle string aliases for character tokens correctly.
8398 * src/symtab.c (symbol_user_token_number_set): If the token has an
8399 alias, check and set its alias's user token number instead of its own,
8400 which is set to indicate the alias. Previously, every occurrence of
8401 the character token in the grammar overwrote that alias indicator with
8402 the character code.
8403 * tests/input.at (String aliases for character tokens): New test.
8404
219741d8
JD
84052006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8406
8407 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8408
11daa4e7
PE
84092006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8410
8411 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8412 to prevent failures when building on older platforms.
8413 Check for autopoint failure.
8414 Set XGETTEXT_OPTIONS to values that check for C format strings,
8415 so that translators are warned about them (this also helps
8416 prevent core dumps).
8417
8418 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8419 function, since it simplifies our code a bit.
8420
8421 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8422 rather than -W, so we don't get bogus warnings about sign comparisons.
8423 Add -Wpointer-arith, since that warning is useful (it reports code
8424 that does not conform to C89 and that some compilers reject).
8425 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8426 since it's no longer needed.
8427
f9bfc42a
JD
84282006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8429
8430 Clean up scanners a bit.
8431 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8432 definitions so gcc won't warn when obstack_for_string is unused.
8433 * src/scan-code.l: config.h and system.h are already #include'd by
8434 scan-code-c.c, so get rid of them here.
8435 * src/scan-gram.l: Likewise.
8436 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8437 definitions rather than duplicating the rest of it.
8438 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8439
06e8700a
JD
84402006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8441
8442 Suppress signed/unsigned comparison warnings for yycheck.
8443 * data/c.m4 (b4_safest_int_type): New macro.
8444 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8445 a signed int type, cast it to b4_safest_int_type first.
8446 * data/yacc.c: Likewise.
8447 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8448 also overwritten.
8449
9c437126
PE
84502006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8451
8452 * doc/bison.texinfo: Fix some typos.
8453
284d8a13
PE
84542006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8455
8456 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8457 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8458
8459 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8460 the latest gnulib does this a different way.
8461 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8462 translation was patched, so stop omitting it.
8463
ec5479ce
JD
84642006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8465
8466 Enable declaration of default %printer/%destructor. Make the parser
8467 use these for all user-declared grammar symbols for which the user does
8468 not declare a specific %printer/%destructor. Thus, the parser uses it
8469 for token 0 if the user declares it but not if Bison generates it as
8470 $end. Discussed starting at
8471 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8472 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8473 and
8474 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8475 * NEWS (2.3+): Mention.
8476 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8477 declare a %destructor for a mid-rule's semantic value. It's just
8478 impossible to declare one specific to it.
8479 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8480 code. Describe default %destructor form.
8481 * src/parse-gram.y (grammar_declaration): Parse default
8482 %printer/%destructor declarations.
8483 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8484 and symbol_destructor_location_get rather than accessing the destructor
8485 and destructor_location members of struct symbol.
8486 (symbol_printers_output): Likewise but for %printer's.
8487 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8488 again.
8489 * src/symtab.c (default_destructor, default_destructor_location,
8490 default_printer, default_printer_location): New static global
8491 variables to record the default %destructor and %printer.
8492 (symbol_destructor_get, symbol_destructor_location_get,
8493 symbol_printer_get, symbol_printer_location_get): New functions to
8494 compute the appropriate %destructor and %printer for a symbol.
8495 (default_destructor_set, default_printer_set): New functions to set the
8496 default %destructor and %printer.
8497 * src/symtab.h: Prototype all those new functions.
8498 * tests/actions.at (Default %printer and %destructor): New test to
8499 check that the right %printer and %destructor are called, that they're
8500 not called for $end, and that $$ and @$ work correctly.
8501 (Default %printer and %destructor for user-declared end token): New
8502 test to check that the default %printer and %destructor are called for
8503 a user-declared end token.
8504 * tests/input.at (Default %printer and %destructor redeclared, Unused
8505 values with default %destructor): New tests to check related grammar
8506 warnings and errors.
8507
868d2d96
JD
85082006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8509
8510 Clean up handling of %destructor for the end token (token 0).
8511 Discussed starting at
8512 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8513 and
8514 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8515
8516 Make the skeletons consistent in how they pop the end token and invoke
8517 its %destructor.
8518 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8519 state, which has token number 0, since this would invoke the
8520 %destructor for the end token.
8521 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8522 until after shifting the end token, or else it won't be popped.
8523 * data/yacc.c (yyparse): Likewise.
8524
8525 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8526 it's the end token. Upon termination, destroy an unshifted lookahead
8527 even when it's the end token.
8528 * data/lalr1.cc (yy::parser::parse): Likewise.
8529 * data/yacc.c (yyparse): Likewise.
8530
8531 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8532 value warnings for the end token when the user gives the end token a
8533 %destructor.
8534
8535 * tests/actions.at (Printers and Destructors): Test all the above.
8536
62a9592d
PE
85372006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8538
8539 Update to latest gnulib and gettext versions.
8540 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8541 Add fopen-safer.
8542 (gnulib_files): Add m4/warning.m4. Don't worry about files
8543 overwritten by autopoint.
8544 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8545 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8546 rejects them.
8547 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8548 so that we can remove the intl files at a better time.
8549 (intl_files_to_remove): Remove aclocal.m4, since it gets
8550 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8551 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8552 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8553 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8554 Remove datarootdir hack; no longer needed.
8555 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8556 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8557 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8558 strdup.h.
8559 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8560 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8561
10d6970f
PE
85622006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8563
8564 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8565 it with --assume-autoconf='latest-stable'.
8566
50a33993
JD
85672006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8568
8569 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8570 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8571 YYSTYPE' and `{'.
8572 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8573 those from muscle_tab.c since the old ones are misleading.
8574
2ce4ed68
AD
85752006-07-13 Akim Demaille <akim@epita.fr>
8576
8577 Support %define "KEY" {VALUE}.
8578 * src/scan-code.h, src/scan-code.l (translate_action)
8579 (translate_rule_action, translate_symbol_action, translate_code):
8580 Return char *, not const char *.
8581 * src/parse-gram.y (declaration): Rename as...
8582 (prologue_declaration): this.
8583 (string_content): Remove this nonterminal, use STRING.
8584 (braceless, content, content.opt): New nonterminal.
8585 Use them.
8586 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8587 as value.
8588 * src/scan-gram.l (getargs.h): Don't include it.
8589
db7e5eb5
PE
85902006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8591
8592 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8593 rather than a for-loop that declares a local bool variable. This
8594 should work around a compatibility problem with a Cray x1e C++
8595 compiler reported by Hung Nguyen in
8596 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8597 The for-loop was introduced in the 2004-11-17 change but I don't
8598 know why it was needed.
8599
a5d80ba5
AD
86002006-07-12 Akim Demaille <akim@epita.fr>
8601
8602 * data/c.m4: Comment changes.
8603
23eb2a69
AD
86042006-07-10 Akim Demaille <akim@lrde.epita.fr>
8605
8606 * src/complain.c (error_message, ERROR_MESSAGE): New.
8607 To factor...
8608 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8609 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8610
ddc8ede1
PE
86112006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8612
8613 * NEWS: Instead of %union, you can define and use your own union type
8614 YYSTYPE if your grammar contains at least one <type> tag.
8615 Your YYSTYPE need not be a macro; it can be a typedef.
8616 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8617 (Union Decl, Decl Summary): Document this.
8618 * data/glr.c (YYSTYPE): Implement this.
8619 * data/glr.cc (YYSTYPE): Likewise.
8620 * data/lalr1.cc (YYSTYPE): Likewise.
8621 * data/yacc.c (YYSTYPE): Likewise.
8622 * src/output.c (prepare): Output tag_seen_flag.
8623 * src/parse-gram.y (declaration, grammar_declaration):
8624 Use 'union_seen' rather than 'typed' to determine whether
8625 %union has been seen, since grammars can now be typed without
8626 %union.
8627 (symbol_declaration, type.opt, symbol_def):
8628 Keep track of whether a tag has been seen.
8629 * src/reader.c (union_seen, tag_seen): New vars.
8630 (typed): remove.
8631 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8632 * src/scan-code.l (untyped_var_seen): New variable.
8633 (handle_action_dollar): Adjust to above changes.
8634 (handle_action_dollar, handle_action_at):
8635 Improve overflow checking for outlandish numbers.
8636 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8637 avoid new diagnostics generated by above changes.
8638 * tests/regression.at (YYSTYPE typedef): Add test to check
8639 for type tags without %union.
8640
8641 * src/symlist.c (symbol_list_length): Return int, not unsigned
8642 int, since callers expect int. This may need to get revisited
8643 once we have proper integer overflow checking.
8644
8645 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8646 object is now static.
8647
8648 * src/getargs.c (flags_argmatch): Return void, not int,
8649 to pacify ./configure --enable-gcc-warnings.
8650
8651 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8652 since last_string is already defined to FLEX_PREFIX (last_string).
8653
7b42569e
AD
86542006-07-09 Akim Demaille <akim@lrde.epita.fr>
8655
8656 Implement --warnings/-W.
8657 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8658 replaced by...
8659 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8660 Adjust callers.
8661 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8662 (warnings_args, warnings_types): New.
8663 (getargs, short_options, long_options): Accept -W/--warnings.
8664 Sort the options by alphabetical order, upper case letter right
8665 before its lower case.
8666
3b452f4e
JD
86672006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8668
8669 Change %merge result type clash warnings to errors. Discussed at
8670 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8671 * src/reader.c (record_merge_function_type): Use complain_at.
8672 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8673 declared later): Update test case results.
8674
b8a41559
AD
86752006-07-09 Akim Demaille <akim@lrde.epita.fr>
8676
8677 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8678 to be in alphabetical order.
8679 (trace_args): Spelling fixes.
8680
cd9e1ba2
PE
86812006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8682
8683 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8684 so they don't collide with user-defined macros.
8685 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8686 this was never guaranteed, and now that we're using gnulib stdint,
8687 which defines int_fast16_t to long int, the problem is exposed.
8688
cb48f191
PE
86892006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8690
b8445a15
PE
8691 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8692 need the full POSIX semantics (and weren't implementing them
8693 anyway).
8694
cb48f191
PE
8695 Adjust to Autoconf 2.60 and today's gnulib.
8696 * bootstrap (gnulib_modules): Add stdint.
8697 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8698 no longer copies it.
8699 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8700 since stdint needs the former and wcwidth (which is now required
8701 by mbswidth) needs the latter.
8702 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8703 work around a compatibility glitch between gettext 0.14.6 and
8704 Autoconf 2.60.
8705 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8706 Do not check for uintptr_t, since new stdint module does the right
8707 thing.
8708 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8709 Add stdint.h, stdint_.h, wcwidth.h.
8710 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8711 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8712 stdint.m4, wchar_t.m4, wcwidth.m4.
8713 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8714 usual order for ../lib/*.h files.
8715 (file_name_split): Use last_component, not base_name, to adjust
8716 to gnulib changes.
8717 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8718 for ../lib/*.h files.
8719 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8720 Define unconditionally, since we now assume the stdint module.
8721 * src/scan-skel.l: Include <dirname.h>.
8722 (BASE_QPUTS): Use last_component, not base_name.
8723 * src/system.h: Include <unlocked-io.h> in the usual order
8724 for ../lib/*.h files. Include <stdint.h> unconditionally,
8725 since we now use the stdint module.
8726 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8727 HAVE_UINTPTR_T, since we now use the stdint module.
8728 (base_name): Remove decl, since files now include <dirname.h>
8729 to get the decl.
8730
cd48d21d
AD
87312006-07-08 Akim Demaille <akim@lrde.epita.fr>
8732
8733 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8734 New, default to 1.
8735 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8736 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8737 default.
8738 * tests/calc.at: Adjust.
8739
8ec0a172
AD
87402006-07-08 Akim Demaille <akim@lrde.epita.fr>
8741
b8445a15 8742 * data/c.m4 (b4_basename): New.
8ec0a172
AD
8743 (b4_syncline): Also output the location of its invocation (from
8744 the skeleton).
8745 (b4_user_action, b4_define_user_action, b4_user_actions)
8746 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8747 (b4_user_stype): New.
8748 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8749
4a678af8
JD
87502006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8751
8752 In the grammar file, the first column is 1 not 0 on the first line as
8753 on every other line.
8754 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8755 * tests/input.at (Torturing the Scanner): Update output.
8756
8757 * src/scan-gram.l (scanner_cursor): Declare it static.
8758
dd60572a
JD
87592006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8760
8761 In warnings, say "previous declaration" rather than "first
8762 declaration".
8763 * src/symtab.c (redeclaration): Do that here.
8764 * src/reader.c (record_merge_function_type): In the case of a result
8765 type clash, report the previous declaration rather than the very first
8766 one in the grammar file.
8767 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8768 declared later): Add a third declaration to check this behavior.
8769 * tests/input.at (Incompatible Aliases): Update output.
8770
2073e1b6
AD
87712006-06-27 Akim Demaille <akim@epita.fr>
8772
8773 * doc/Doxyfile.in: New.
8774 * doc/Makefile.am: Use it.
8775 * src/lalr.h, src/symtab.h: Initial doxygenation.
8776
8ee5b538
JD
87772006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8778
8779 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
8780 declared after the %merge. This continues the effort of the previous
8781 patch.
8ee5b538
JD
8782 * src/reader.c (get_merge_function): Don't set the merger type yet.
8783 (record_merge_function_type): New function for setting the merger type
8784 and checking for clashes.
8785 (grammar_current_rule_merge_set): Set the location of the %merge for
8786 the current rule.
8787 (packgram): Invoke record_merge_function_type for each rule now that
8788 all symbol type declarations have been parsed.
8789 * src/reader.h (merger_list.type_declaration_location): New member
8790 storing the location of the first %merge from which the type for this
8791 merging function was derived.
8792 * src/symlist.h (symbol_list.merger_declaration_location): New member
8793 storing the location of a rule's %merge, if any.
8794 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8795 declared later): New test to catch the error fixed by the above patch.
8796
ffa4ba3a
JD
87972006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8798
8799 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
8800 declarations appear after the rules. Discussed at
8801 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8802 and
8803 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8804 Don't mistake the type of $$ in a midrule to be that of its parent
8805 rule's $$.
ffa4ba3a
JD
8806 * src/reader.c (grammar_current_rule_end): Don't invoke
8807 grammar_rule_check yet since not all symbol declarations may have been
8808 parsed yet.
8809 (grammar_midrule_action): Likewise.
8810 Don't record whether the midrule's $$ has been used yet since actions
8811 haven't been translated yet.
8812 Record the midrule's parent rule and its RHS index within the parent
8813 rule.
8814 (grammar_current_rule_action_append): Don't translate the action yet
8815 since not all symbol declarations may have been parsed yet and, thus,
8816 warnings about types for $$, $n, @$, and @n can't be reported yet.
8817 (packgram): Translate the action and invoke grammar_rule_check now that
8818 all symbol declarations have been parsed.
8819 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8820 after parsing the entire grammar file, the symbol list here in the case
8821 of a midrule is actually the midrule's empty RHS, so reference its
8822 parent rule's RHS where necessary.
8823 On the other hand, now that you can already know it's a midrule, you
8824 aren't forced to think $$ has the same type as its parent rule's $$.
8825 (handle_action_at): In the case of a midrule, reference the parent rule
8826 where necessary.
8827 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8828 members.
8829 (symbol_list_length): Now that this is invoked after all rules have
8830 been parsed, a NULL symbol (rather than a NULL symbol list node)
8831 terminates a rule. symbol_list_print already does this correctly.
8832 * src/symlist.h (symbol_list.midrule_parent_rule,
8833 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8834 remember their relationships with their parents.
8835 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8836 fixed by the above patch.
8837 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8838 implementing...
8839 (Unused values): ... this old test case and...
8840 (Unused values before symbol declarations): ... this new test case.
8841 This one is the same as `Unused values' except that all symbol
8842 declarations appear after the rules in order to catch the rest of the
8843 errors fixed by the above patch.
8844
e256e17f
JD
88452006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8846
300a1930
JD
8847 More cleanup.
8848 * src/reader.c (current_rule): Declare it static since it's no longer
8849 used outside this file.
8850 (grammar_current_rule_action_append): Remove redundant arguments from
8851 translate_rule_action invocation.
8852 * src/reader.h (current_rule): Remove this unused extern.
8853 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8854 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 8855
381ecb06
JD
88562006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8857
8858 Clean up yesterday's patch.
8859 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8860 to...
8861 * src/reader.c (grammar_current_rule_action_append): ... here for
8862 consistency with grammar_current_rule_symbol_append.
8863 * tests/regression.at (Braced code in declaration in rules section):
8864 Make yyerror and yylex static as usual.
8865
4210cd0b
JD
88662006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8867
8868 Fix bug that mistakes braced code in a declaration in the rules section
8869 to be a rule action. Mentioned at
8870 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8871 * src/scan-gram.l: Move midrule action detection from the start of the
8872 scanning of any braced code to...
8873 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8874 action. For readability, use $2 and @2 rather than the equivalent
8875 global variables.
8876 * tests/regression.at (Braced code in declaration in rules section):
8877 New test to catch the error fixed by the above patch.
8878
8879 Work on code readability some.
8880 * src/scan-code.l (current_rule): Get rid of this misleading and
8881 redundant declaration: it's actually extern'ed in reader.h.
8882 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8883 translate_action): Add a rule argument and use it instead of the global
8884 current_rule.
8885 (translate_rule_action): This already receives current_rule through an
8886 argument, so pass it on to translate_action instead of assigning
8887 current_rule to current_rule.
8888 (translate_symbol_action, translate_code): Pass rule = NULL to
8889 translate_action.
8890
34f98f46
JD
88912006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8892
8893 Rename %before-definitions to %start-header and %after-definitions to
8894 %end-header. Don't use these declarations to separate pre-prologue
8895 blocks from post-prologue blocks. Add new order-independent
8896 declarations %before-header and %after-header as alternatives to the
8897 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8898 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8899 * NEWS (2.3+): Update for these changes.
8900 * data/glr.c (b4_before_definitions): Update to...
8901 (b4_start_header): ... this.
8902 (b4_after_definitions): Update to...
8903 (b4_end_header): ... this.
8904 * data/glr.cc: Likewise.
8905 * data/lalr1.cc: Likewise.
8906 * data/yacc.c: Likewise.
8907 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8908 prologue blocks with %*-header declarations.
8909 (Calc++ Parser): Likewise.
91661ebb 8910 (Decl Summary): Update names.
148d66d8 8911 (Table of Symbols): Update description.
34f98f46
JD
8912 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8913 (PERCENT_END_HEADER): ... this.
8914 (PERCENT_BEFORE_DEFINITIONS): Update to...
8915 (PERCENT_START_HEADER): ... this.
8916 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8917 (declaration): Update token names and m4 macro names.
8918 When parsing %end-header and %start-header, invoke translate_code
8919 before muscle_code_grow, and no longer set global booleans to remember
8920 whether these declarations have been seen.
8921 Parse new %after-header and %before-header.
8922 * src/reader.c (before_definitions, after_definitions): Remove.
8923 (prologue_augment): Accept a new bool argument to specify whether to
8924 augment the pre-prologue or post-prologue.
8925 * src/reader.h (before_definitions, after_definitions): Remove these
8926 extern's.
8927 (prologue_augment): Add new bool argument.
8928 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8929 (PERCENT_END_HEADER): ... this.
8930 (PERCENT_BEFORE_DEFINITIONS): Update to...
8931 (PERCENT_START_HEADER): ... this.
8932 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8933 * tests/actions.at (Printers and Destructors): Update names.
8934
31b2b07e
JD
89352006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8936
8937 Add comparison operators for C++ location classes. Discussed at
8938 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8939 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8940 declaration indicating whether filename_type has an operator==. If
8941 filename_type is `std::string', it defaults to `1', `0' otherwise.
8942 * data/location.cc: Iff b4_define_location_comparison is `1', add
8943 operator== and operator!= for class position and for class location.
8944
8945 Some minor fixes.
8946 * src/scan-action.l: Remove unused file.
8947 * src/symtab.c (symbol_printer_set): Use printer_location not
8948 destructor_location.
8949 * src/symtab.h (struct symbol): Replace incorrect source comment for
8950 printer members.
8951 * tests/input.at (Incompatible Aliases): Update output with correct
8952 printer location.
8953
9bc0dd67
JD
89542006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8955
8956 Don't put the pre-prologue in the header file. For the yacc.c code
8957 file and the glr.c header and code files, move the pre-prologue before
8958 the token definitions. Add new %before-definitions and
8959 %after-definitions to declare code that will go in both the header file
8960 and code file. Discussed at
8961 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8962 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8963 and
8964 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8965 * NEWS (2.3+): Describe these changes.
8966 * data/glr.c (b4_pre_prologue): Move from within to before...
8967 (b4_shared_declarations): ... this.
8968 Add new b4_before_definitions before b4_token_enums.
8969 Add new b4_after_definitions at the end.
8970 * data/glr.cc (b4_pre_prologue): Replace with...
8971 (b4_before_definitions): ... this in the header file.
8972 (b4_after_definitions): New near the end of the header file.
8973 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8974 code file right before including the header file.
8975 (b4_before_definitions): New in the previous position of
8976 b4_pre_prologue in the header file.
8977 (b4_after_definitions): New near the end of the header file.
8978 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8979 (b4_token_enums_defines): In the code file, move to right before
8980 YYSTYPE for consistency with the header file.
8981 (b4_before_definitions): New right before b4_token_enums_defines in
8982 both the header and code file.
8983 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8984 header and code file.
8985 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8986 of prologues for %union dependencies.
91661ebb
JD
8987 (Decl Summary): In %defines description, mention the effect of
8988 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
8989 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8990 than in the pre-prologue so that make check succeeds.
148d66d8 8991 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
8992 %after-definitions.
8993 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8994 %before-definitions.
8995 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8996 (declaration): Parse those declarations and append to
8997 b4_before_definitions and b4_after_definitions, respectively.
8998 * src/reader.c (before_definitions, after_definitions): New bools to
8999 track whether those declarations have been seen.
9000 (prologue_augment): Add to the post-prologue if %union,
9001 %before-definitions, or %after-definitions has been seen.
9002 * src/reader.h (before_definitions, after_definitions): New extern's.
9003 * src/scan-gram.l: Scan the new declarations.
9004 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
9005 prologue block in a %before-definitions or a %after-definitions based
9006 on whether the %union is declared.
9007 * tests/regression.at (Early token definitions with --yacc, Early token
9008 definitions without --yacc): Move tests for token definitions into the
9009 post-prologue since token names are no longer defined in the
9010 pre-prologue.
9011
203b9274
AD
90122006-06-20 Akim Demaille <akim@epita.fr>
9013
9014 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
9015 (symbol_get): Use it.
9016 * src/parse-gram.y: Use it.
9017
a7ee59cf
JD
90182006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
9019
9020 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
9021 build succeeds when configured with --enable-gcc-warnings.
9022
5a2baae7
PE
90232006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9024
33ad1a9c
PE
9025 * src/parse-gram.y (char_name): New function.
9026 (CHAR, STRING, string_content): For %printer, properly escape.
9027 (ID): Prefer fputs to fprintf.
9028 (id): Reindent to be consistent with other rules.
9029 Properly quote char.
9030
5a2baae7
PE
9031 The Translation Project changed its way of publishing translations
9032 to maintainers. I haven't received any responses to my request
9033 for supporting the old way, or for documenting the new way. I
9034 have modified 'bootstrap' to use screen scraping
9035 (in this case, HTML scraping). This is unreliable and inelegant,
9036 but I don't see any better way. Yuck.
9037 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9038 (get_translations): New function, which uses HTML scraping to
9039 deduce locations of latest translations.
9040 Use this function to grab both bison and bison-runtime .po files.
9041 Don't bother priming the pump for the runtime-po domain any more,
9042 as it's now translated better than bison is.
9043
58d7a1a1
AD
90442006-06-19 Akim Demaille <akim@epita.fr>
9045
9046 * src/scan-gram.l: No longer "parse" things after `%union' until
9047 `{'. Rather, return a single "%union" token.
9048 No longer make symbols: return strings, and leave the conversion
9049 to symbols to the parser.
9050 (SC_PRE_CODE, token_type): Remove.
9051 * src/parse-gram.y (%union): New field `character'.
9052 Sort tokens.
9053 (CHAR): New token.
9054 (ID, ID_COLON): Now that the scanner no longer makes them
9055 identifiers, adjust all uses to invoke symbol_get.
9056 (id_colon): New, wraps the conversion from string to symbol.
9057 (%union): Accept a possible union_name.
9058 (symbol): Now can be a char.
9059 * data/c.m4 (b4_union_name): Leave a default value.
9060 * data/glr.c, data/yacc.c: Use it.
9061
b931235e
JD
90622006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9063
9064 For associating token numbers with token names for "yacc.c", don't use
9065 #define statements unless `--yacc' is specified; always use enum
9066 yytokentype. Most important discussions start at:
9067 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9068 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9069 and
9070 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9071 * NEWS (2.3+): Mention.
9072 * data/c.m4 (b4_yacc_if): New.
9073 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9074 token #define's.
9075 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9076 on token name definitions.
9077 * src/getargs.c (usage): Capitalize `Yacc' in English.
9078 * src/output.c (prepare): Define b4_yacc_flag.
9079 * tests/regression.at (Early token definitions): Test that tokens names
9080 are defined before the pre-prologue not just before the post-prologue.
9081 Remove this test case and copy to...
9082 (Early token definitions with --yacc): ... this to test #define's.
9083 (Early token definitions without --yacc): ... and this to test enums.
9084
9e6e7ed2
PE
90852006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9086
9087 * NEWS: Reword the post-2.3 change to not be so optimistic about
9088 removing the old "look-ahead" spelling.
9089 Update previous look-ahead/lookahead change reports.
9090 * REFERENCES: look-ahead -> lookahead (since that's
9091 what he actually wrote).
9092 * doc/refcard.tex: look ahead -> lookahead,
9093 look-ahead -> lookahead
9094
742e4900
JD
90952006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
9096
9097 For consistency, use `lookahead' instead of `look-ahead' or
9098 `look_ahead'. Discussed starting at
9099 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
9100 and then at
9101 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
9102 * NEWS: For the next release, note the change to `--report'.
9103 * TODO, doc/bison.1: Update English.
9104 * doc/bison.texinfo: Update English.
9105 (Understanding Your Parser, Bison Options): Document as
9106 `--report=lookahead' rather than `--report=look-ahead'.
9107 * src/conflicts.c: Update English in comments.
9108 (lookahead_set): Rename from look_ahead_set.
9109 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
9110 (resolve_sr_conflict): Rename local look_ahead_tokens to
9111 lookahead_tokens, and update other uses.
9112 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9113 count_rr_conflicts, conflicts_free): Update uses.
9114 * src/getargs.c (report_args): Move "lookahead" before alternate
9115 spellings.
9116 (report_types): Update uses.
9117 (usage): For `--report' usage description, state `lookahead' spelling
9118 rather than `look-ahead'.
9119 * src/getargs.h (report.report_lookahead_tokens): Rename from
9120 report_look_ahead_tokens.
9121 * src/lalr.c: Update English in comments.
9122 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9123 (state_lookahead_tokens_count): Rename from
9124 state_look_ahead_tokens_count.
9125 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9126 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9127 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9128 Update other uses.
9129 Update English in output.
9130 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9131 * src/print.c: Update English in comments.
9132 (lookahead_set): Rename from look_ahead_set.
9133 (print_reduction): Rename argument lookahead_token from
9134 look_ahead_token.
9135 (print_core, state_default_rule, print_reductions, print_results):
9136 Update uses.
9137 * src/print_graph.c: Update English in comments.
9138 (print_core): Update uses.
9139 * src/state.c: Update English in comments.
9140 (reductions_new): Update uses.
9141 (state_rule_lookahead_tokens_print): Rename from
9142 state_rule_look_ahead_tokens_print, and update other uses.
9143 * src/state.h: Update English in comments.
9144 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9145 (state_rule_lookahead_tokens_print): Rename from
9146 state_rule_look_ahead_tokens_print.
9147 * src/tables.c: Update English in comments.
9148 (conflict_row, action_row): Update uses.
9149 * tests/glr-regression.at
9150 (Incorrect lookahead during deterministic GLR,
9151 Incorrect lookahead during nondeterministic GLR): Rename
9152 print_look_ahead to print_lookahead.
9153 * tests/torture.at: Update English in comments.
9154 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9155 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9156 (Many lookahead tokens): Update uses.
9157 * data/glr.c: Update English in comments.
9158 * lalr1.cc: Likewise.
9159 * yacc.c: Likewise.
9160 * src/conflicts.h: Likewise.
9161 * src/lalr.h: Likewise.
9162 * src/main.c: Likewise.
9163 * src/output.c: Likewise.
9164 * src/parse-gram.c: Likewise.
9165 * src/tables.h: Likewise.
9166 * tests/calc.at: Likewise.
9167
3c40d0b5
JD
91682006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9169
9170 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9171
5d278082
PE
91722006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9173
9174 * TODO: Add request from Nelson H. F. Beebe to be able to install
9175 Bison without installing the yacc script.
9176
9e668899
JD
91772006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9178
9179 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9180 and yytext if they're already #define'd.
9181 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9182 * src/scan-code-c.c: ... here.
9183 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9184 <config.h>.
9185
0c8e079f
JD
91862006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9187
9188 Get Bison to build again when configured with --enable-gcc-warnings.
9189 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9190 missing #include's.
9191 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9192 loc argument as it shadows a global.
9193 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9194 invocation.
9195
9196 * src/.cvsignore: Add scan-code.c.
9197
2346344a
AD
91982006-06-07 Akim Demaille <akim@epita.fr>
9199
9200 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9201 to...
9202 * src/scan-code.l: here.
9203 * tests/input.at (Torturing the Scanner): Fix another location
9204 error.
9205
4862bdfd
AD
92062006-06-07 Akim Demaille <akim@epita.fr>
9207
9208 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9209
e9071366
AD
92102006-06-06 Akim Demaille <akim@epita.fr>
9211
9212 Extract the parsing of user actions from the grammar scanner.
9213 As a consequence, the relation between the grammar scanner and
9214 parser is much simpler. We can also split "composite tokens" back
9215 into simple tokens.
9216 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9217 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9218 rename as...
9219 * src/location.h, src/location.c (add_column_width)
9220 (location_compute): these.
9221 Fix the column count: the initial column is 0.
9222 (location_print): Be robust to ending column being 0.
9223 * src/location.h (boundary_set): New.
9224 * src/main.c: Adjust to scanner_free being renamed as
9225 gram_scanner_free.
9226 * src/output.c: Include scan-code.h.
9227 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9228 Use boundary_set.
9229 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9230 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9231 which is now, again, a separate token.
9232 Adjust all dependencies.
9233 Whereever actions with $ and @ are used, use translate_code.
9234 (action): Remove this nonterminal which is now useless.
9235 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9236 (grammar_current_rule_action_append): Use translate_code.
9237 (packgram): Bound check ruleno, itemno, and rule_length.
9238 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9239 (last_string, last_braced_code_loc, max_left_semantic_context)
9240 (scanner_initialize, scanner_free, scanner_last_string_free)
9241 (gram_out, gram_lineno, YY_DECL_): Move to...
9242 * src/scan-gram.h: this new file.
9243 (YY_DECL): Rename as...
9244 (GRAM_DECL): this.
9245 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9246 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9247 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9248 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9249 Move these declarations, and...
9250 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9251 these to...
9252 * src/flex-scanner.h: this new file.
9253 * src/scan-gram.l (rule_length, rule_length_overflow)
9254 (increment_rule_length): Remove.
9255 (last_braced_code_loc): Rename as...
9256 (gram_last_braced_code_loc): this.
9257 Adjust to the changes of the parser.
9258 Move all the handling of $ and @ into...
9259 * src/scan-code.l: here.
9260 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9261 (handle_action_dollar, handle_action_at): Move to...
9262 * src/scan-code.l: here.
9263 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9264 scan-code.h, scan-code-c.c, scan-gram.h.
9265 (EXTRA_bison_SOURCES): Add scan-code.l.
9266 (BUILT_SOURCES): Add scan-code.c.
9267 (yacc): Be robust to white spaces.
9268
9269 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9270 * tests/regression.at: Adjust the column numbers.
9271 * tests/regression.at: Adjust the error message.
7891a7c4 9272
184e42f0
JD
92732006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9274
9275 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9276 Use Akim's wording from
9277 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9278
7891a7c4
JD
92792006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9280
9281 Between Bison releases, manually append `+' to the previous Bison
9282 release number, and use that as a signal to automatically print the
9283 ChangeLog's CVS Id keyword from --version. Discussed starting at
9284 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9285 * ChangeLog: Add Id header.
9286 * configure.ac (AC_INIT): Append `+' to `2.3'.
9287 * src/.cvsignore: Add revision.c.
9288 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9289 (BUILT_SOURCES): Add revision.c.
9290 (revision.c): New target rule. This file defines a new global variable
9291 named revision. It initializes it with either the Id from ChangeLog
9292 or, if VERSION doesn't contain `+', with the empty string.
9293 * src/getargs.c (version): Print the value of revision.
9294 * src/revision.h: Extern revision.
9295
4ad3ed84
PE
92962006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9297
9298 * NEWS: Version 2.3.
9299 * configure.ac (AC_INIT): Likewise.
9300
02103984
PE
93012006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9302
9303 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9304 with no arguments, not as an object-like macro. This is for
9305 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9306 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9307 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9308 Document this.
9309
2c08afa5
JD
93102006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9311
9312 * src/getargs.c (usage): Back out yesterday's modification of the
9313 --help output so that we don't have to wait for translation before
9314 releasing 2.3.
9315
6077da58
PE
93162006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9317
9318 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9319 Problem reported by Akim Demaille.
9320
2a26b6c2
JD
93212006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9322
9323 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9324
aefef0d6
PE
93252006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9326
9327 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9328 generated source code. Problem reported by Frans Englich in
9329 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9330
fcd8e201
PE
93312006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9332
9333 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9334 shell, not within 'make', so that 'make' by an ordinary builder
9335 (using GNU make) does not worry about configuring gzip. This also
9336 works around a bug reported independently by Keith Thompson and by
9337 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9338 stderr rather than stdout, messing up the build logs.
9339
7b5cdcbd
JD
93402006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9341
9342 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9343 to make sure that YYID will never be unused. This fixes a 'make
9344 maintainer-check' failure caused by the recent changes to the 'Trivial
9345 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9346 not used.
9347 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9348
5ad0a449
JD
93492006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9350
9351 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9352 state before an empty RHS is always resolved here. Only the location
9353 of that state is guaranteed to be resolved, and that's enough. This
9354 fixes the remaining bug reported by Derek M. Jones in
9355 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9356 * tests/glr-regression.at (Uninitialized location when reporting
9357 ambiguity): Test the above case.
9358 Also, the embedded comments in this test case claim it checks the case
9359 of an empty RHS that has inherited the initial location. However, the
9360 corresponding LHS was already resolved, so yyresolveLocations didn't
9361 actually have reason to modify it. Fix this by forcing
9362 nondeterministic operation at the beginning of the parse.
9363
50cce58e
PE
93642006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9365
9366 * data/c.m4 (b4_yy_symbol_print_generate):
9367 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9368 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9369 of the bugs reported today by Derek M Jones in
9370 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9371 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9372 defined to be a type name without parens or brackets.
9373 (Location Type): Similarly for YYLTYPE.
9374 * tests/regression.at (Trivial grammars): Put in a test for this
9375 bug that will be caught by 'make maintainer-check' (though not,
9376 alas, by 'make check' unless your compiler is picky).
9377
ab8d9dc5
PE
93782006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9379
0d2c8934 9380 * NEWS: Version 2.2.
ab8d9dc5
PE
9381 * configure.ac (AC_INIT): Likewise.
9382
9138c575
JD
93832006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9384
9385 * data/glr.c (yyreportTree): Make room in yystates for the state
9386 preceding the RHS. This fixes the segmentation fault reported by Derek
9387 M. Jones in
9388 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9389 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9390 to the user. Reported for yyreportTree by Derek M. Jones later in the
9391 same thread.
9392 * THANKS: Add Derek M. Jones.
9393 Update my email address.
9394 Fix typo in Steve Murphy's name.
9395
276f48df
PE
93962006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9397
d6645148
PE
9398 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9399 checking against YYLAST that caused the parser to miss a potential
9400 alternative in its diagnostic.
9401 Problem reported by Maria Jose Moron Fernandez in
9402 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9403 * data/lalr1.cc (yysyntax_error_): Likewise.
9404 * data/yacc.c (yysyntax_error): Likewise.
9405 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9406 tokens, in case we run into an older C compiler.
9407 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9408 Use them to check for the off-by-one error fixed above.
9409
276f48df
PE
9410 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9411 YYSIZE_T, not size_t.
9412 * tests/regression.at (Trivial grammars): New test, to catch
9413 the error fixed by the above patch.
9414
cd8b5791
AD
94152006-05-14 Akim Demaille <akim@lrde.epita.fr>
9416
9417 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9418 scheme.
9419 Reported by Steve Murphy.
9420
34376418
AD
94212006-05-14 Akim Demaille <akim@lrde.epita.fr>
9422
9423 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9424 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9425
327afc7c
AD
94262006-05-14 Akim Demaille <akim@lrde.epita.fr>
9427
9428 Implement --trace=m4.
9429 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9430 * src/output.c (output_skeleton): When set, pass -dV to m4.
9431
9432 Factor the handling of flags in m4.
9433 * src/output.c (prepare): Rename the muscle names debug, defines,
9434 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9435 * data/c.m4: Adjust.
9436 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9437 Use b4_define_flag_if to define other b4_FLAG_if macros.
9438 (b4_location_if): As a consequence, rename as...
9439 (b4_locations_if): this, for consistency.
9440 Adjust all the skeletons.
9441
ba9ecd19
AD
94422006-05-14 Akim Demaille <akim@lrde.epita.fr>
9443
9444 * etc/bench.pm: Shorten bench names.
9445
4e83ea15
AD
94462006-05-14 Akim Demaille <akim@lrde.epita.fr>
9447
9448 * src/output.h, src/output.c (error_verbose): Move to...
9449 * src/getargs.h, src/getargs.c: here.
9450 Sort the flags.
9451 Adjust dependencies.
9452
6e93d810
PE
94532006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9454
9455 * data/c.m4 (b4_copyright): Put the special exception for Bison
9456 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
9457 uses changed. Suggested by Akim Demaille. Also, wrap the
9458 copyright notice, in case it is longer than 80 columns. Replace
9459 comma by newline after title.
6e93d810 9460
eaea13f5
PE
94612006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9462
9463 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9464 incompatibility, not a bug. Mention that it wasn't fixed as of
9465 flex 2.5.33.
9466
3cf084ec
AD
94672006-05-11 Akim Demaille <akim@lrde.epita.fr>
9468
9469 * examples/extexi: Enforce the precedence of concatenation over
9470 >>.
0a9f1c7d 9471 Reported by Tommy Nordgren.
3cf084ec 9472
32c96bd7
AD
94732006-05-11 Akim Demaille <akim@lrde.epita.fr>
9474
9475 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9476 with the member "token".
f94705b2 9477 Reported by Martin Nylin.
32c96bd7 9478
eaea13f5
PE
94792006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9480
9481 * data/glr.c: Switch to Bison 2.2 special-exception language in
9482 the copyright notice. Use more-regular format for titles and
9483 copyright notices.
9484 * data/glr.cc: Likewise.
9485 * data/location.cc: Likewise.
9486 * data/yacc.cc: Likewise.
9487 * doc/bison.texinfo (Conditions): Document this.
9488 * NEWS: likewise. Upgrade version to 2.2.
9489
6e2d1146
AD
94902006-04-27 Akim Demaille <akim@lrde.epita.fr>
9491
9492 * data/glr.cc: Remove dead code.
9493
47671055
PE
94942006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9495
9496 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9497 that variable and the line breaks the bootstrap. Problem reported
9498 by Juan M. Guerrero.
9499
ed2e6384
AD
95002006-04-24 Akim Demaille <akim@lrde.epita.fr>
9501
9502 * doc/bison.texinfo (Multiple start-symbols): New.
9503
3cedc2dc
AD
95042006-04-24 Akim Demaille <akim@lrde.epita.fr>
9505
9506 * etc/README, etc/bench.pl: New.
9507
b2ddc3f3
AD
95082006-04-03 Akim Demaille <akim@lrde.epita.fr>
9509
9510 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9511 rule.
9512 Reported by Mickael Labau.
9513 * tests/input.at (Torturing the Scanner): Test it.
9514
91e3ac9a
PE
95152006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9516
9517 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9518 Problem reported by Bob Rossi.
9519
95202006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9521
9522 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9523 and didn't really work.
9524 For the index, use @ifnotinfo, not @iftex.
9525 Minor cleanups of spacing and terminology.
9526
5cf61e93
AD
95272006-03-12 Akim Demaille <akim@lrde.epita.fr>
9528
9529 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9530 of AT_NAME_PREFIX when %name-prefix is not used.
9531
aa08666d
AD
95322006-03-12 Akim Demaille <akim@lrde.epita.fr>
9533
9534 Apply --prefix to C++ skeletons too: they change the namespace.
9535 The test suite already exercize these cases.
9536 * data/c++.m4 (b4_namespace): New.
9537 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9538 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9539 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9540 * doc/bison.texinfo: Document it.
9541 (Option Cross Key): Use @multitable in all formats. It looks
9542 nicer, even in TeX outputs.
9543 (Rules): Use the same code whatever the output type is.
9544 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9545 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9546 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 9547
45567173
AD
95482006-03-10 Akim Demaille <akim@lrde.epita.fr>
9549
9550 * TODO: Remove dead items.
9551
e9d8f881 95522006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
9553
9554 * doc/FAQ: Remove, merged into...
9555 * doc/bison.texinfo (FAQ): this.
9556 * doc/Makefile.am (EXTRA_DIST): Adjust.
9557
c095d689
AD
95582006-03-10 Akim Demaille <akim@lrde.epita.fr>
9559
9560 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9561 even if empty.
9562 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9563 * doc/bison.texinfo (Calc++ Scanner): Use it.
9564
6e0f8287
PE
95652006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9566
9567 Fix two nits reported by twlevo, plus one more that I discovered.
9568
9569 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9570 this is the usual Bison style.
9571 * src/location.h (location_print): Likewise.
9572
9573 * src/reader.h (token_name): Likewise.
9574
d6b771c3
PE
95752006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9576
9577 Fix some nits reported by twlevo.
9578 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9579 and "POSIX". Use more-modern syntax for URLs. Mention C++
9580 and ask for Java. Don't hardwire OS version numbers. Add
9581 copyright notice.
9582 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9583 * src/conflicts.c (solved_conflicts_obstack): Now static.
9584
1e137b71
JD
95852006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9586
9587 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9588 page. Say "you can use it" not "you may use it" as on the web page;
9589 we're describing capabilities not granting permission.
9590
73f2e47e
PE
95912006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9592
6d05403d
PE
9593 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9594 shadowing warnings. Use usual patter for iterating through RHS.
9595 * tests/glr-regression.at
9596 (Uninitialized location when reporting ambiguity):
9597 Modify yylex so that it uses its argument, rather than trying
9598 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9599 const char -> char const.
9600
73f2e47e
PE
9601 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9602 Don't use tabs inside commands; it messes up 'ps'.
9603 Problem reported by twlevo.
9604
8710fc41
JD
96052006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9606
9607 * tests/glr-regression.at (Uninitialized location when reporting
9608 ambiguity): New test case.
9609 * data/glr.c (yyresolveLocations): New function, which uses
9610 YYLLOC_DEFAULT.
9611 (yyresolveValue): Invoke yyresolveLocations before reporting an
9612 ambiguity.
9613 * doc/bison.texinfo (Default Action for Locations): Note
9614 YYLLOC_DEFAULT's usage for ambiguity locations.
9615 (GLR Semantic Actions): Cross-reference those notes.
9616
ae952af2
JD
96172006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9618
9619 * tests/glr-regression.at (Leaked semantic values when reporting
9620 ambiguity): Remove unnecessary union and type declarations.
9621 (Leaked lookahead after nondeterministic parse syntax error): New test
9622 case.
9623 * data/glr.c (yyparse): Check for zero stacks remaining before
9624 attempting to shift the lookahead so that you don't lose it.
9625
35ee866a
JD
96262006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9627
9628 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9629 * tests/glr-regression.at (Leaked semantic values when reporting
9630 ambiguity): New test case.
9631 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9632 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9633 now unnecessary yystackp parameter.
9634 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9635 destructors can be called.
9636
9637 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9638 in existing testcases.
9639
520181ab
JD
96402006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9641
9642 Don't leak semantic values for parent RHS when a user action cuts the
9643 parser, and clean up related code a bit.
9644 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
9645 cuts parse): Rename to...
9646 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
9647 for leaked parent RHS values.
9648 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9649 between an unresolved state (non-empty chain of semantic options) and
9650 an incomplete one (signaled by an empty chain).
ae952af2 9651 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
9652 successfully or unsuccessfully resolved yyGLRState to...
9653 (yyresolveValue): ... here so that yyresolveValue always leaves a
9654 yyGLRState with consistent data and thus is easier to understand.
9655 Remove the yyvalp and yylocp parameters since they are always just
9656 taken from the yys parameter. When reporting a discarded merged value
9657 in debugging output, note that it is incompletely merged. Document the
9658 interface.
9659 (yyresolveAction): If resolving any of the RHS states fails, destroy
9660 them all rather than leaking them. Thus, as long as user actions are
9661 written to clean up the RHS correctly, yyresolveAction always cleans up
9662 the RHS of a semantic option. Document the interface.
9663
18d9185c
PE
96642006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9665
9666 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9667 led to a segmentation fault in GNU Pascal. Problem reported
9668 by Waldek Hebisch.
9669
841a7737
JD
96702006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9671
9672 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9673 mid-rule action inside a nonterminal symbol in order to declare a
9674 destructor for its semantic value.
9675
fc3f467f
PE
96762006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9677
9678 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9679 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9680 __cplusplus && ! defined _STDLIB_H && !
9681 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9682 defined free))]: Include <stdlib.h> rather than rolling our own
9683 declarations of malloc and free, to avoid problems with
9684 incompatible declarations (using 'throw') C++'s stdlib.h. This
9685 should fix Debian bug 340012
9686 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9687 reported by Guillaume Melquiond.
9688
a3af26dd
PE
96892006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9690
4d7bc38c
PE
9691 * NEWS: Clarify symbols versus types in unused-value warnings.
9692
a3af26dd
PE
9693 * configure.ac (AC_INIT): Bump version number.
9694
4e26c69e
PE
96952006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9696
9697 * NEWS: Version 2.1a.
9698 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9699 since C99 requires this.
9700
498e897c
PE
97012006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9702
9703 * m4/c-working.m4: New file.
9704 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9705
57bb17ca
PE
97062006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9707
9708 * Makefile.maint: Merge from coreutils.
9709
0be105dc
PE
97102006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9711
9712 More portability fixes for problems summarized by Nelson H. F. Beebe.
9713
9714 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9715 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9716 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9717 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9718 messes up because C++ code is compiled in 32-bit mode but linked
9719 in 64-bit mode.
9720
6fc0c024
PE
97212006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9722
9723 More portability fixes for problems summarized by Nelson H. F. Beebe.
9724
7870f699
PE
9725 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9726 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9727
6fc0c024
PE
9728 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9729 nodist_PROGRAMS, since we don't need to actually compile the
9730 example if we're just doing a plain 'make'. This avoids bothering
9731 the installer unnecessarily about problems due to weird C++
9732 compilers.
9733
fe6c2fde
PE
97342006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9735
9736 More portability fixes for problems summarized by Nelson H. F. Beebe.
9737
9738 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9739 than #include "...", and compile with -I'.'. The old method was
9740 not portable, according to Posix and the C standard, and it does
9741 not work with Sun C 5.7, where previous #line directives affect
9742 the working directory used in later #include "..." directives.
9743
927b425b
JMG
97442006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9745
9746 Various DJGGP specific issues in /djgpp
9747
d9735e9e
PE
97482006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9749
9750 More portability fixes for problems summarized by Nelson H. F. Beebe.
9751
9752 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9753 '#include <map>' works and that you can apply ++ to iterators.
9754
5a6755af
PE
97552006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9756
67a0dc4f
PE
9757 Work around portability problems summarized by Nelson H. F. Beebe in
9758 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9759
8c86f0ef
PE
9760 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9761 that '#include <string>' works.
9762
de35dd59
PE
9763 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9764 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9765 "warning: sorry: semantics of inline function static data `const
9766 unsigned char translate_table[262]' are wrong (you'll wind up with
9767 multiple copies)".
9768
67a0dc4f
PE
9769 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9770 or, xor to not_, and_, or_, and xor_, respectively. This works
9771 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9772 random system header somewhere that includes the equivalent of
9773 <iso646.h>.
9774
5a6755af
PE
9775 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9776 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 9777 Suite Version 2.0.
5a6755af 9778
3f001415
JD
97792006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9780
9781 During deterministic GLR operation, user actions should be able to
9782 influence the parse by changing yychar. To make this easier to fix and
9783 to make glr.c easier to evolve in general, don't maintain yytoken in
9784 parallel with yychar; just compute yytoken when needed.
9785 * tests/glr-regression.at (Incorrect lookahead during deterministic
9786 GLR): Check that setting yychar in a user action has the intended
9787 effect.
9788 * data/glr.c (yyGLRStack): Remove yytokenp member.
9789 (yyclearin): Don't set *yytokenp.
9790 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9791 yychar rather than *yytokenp to determine the current lookahead.
9792 Compute yytoken locally when needed.
9793 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9794 point to.
9795
9796 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9797 after `--report' documentation.
9798
e2a8c0f5
PE
97992006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9800
9801 * src/parse-gram.y (grammar_declaration): Location of printer
9802 symbol is @1, not list->location. Bug reported by twlevo.
9803 * tests/input.at (Incompatible Aliases): Adjust to above change.
9804
6b702268
PE
98052006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9806
27622431
PE
9807 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9808 all the test at once. This makes the output easier to read in the
9809 normal case.
9810
6b702268
PE
9811 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9812 got from <http://bro-ids.org/download.html>. The bug is that
9813 when two actions appeared in succession, the second one was
9814 scanned before the first one was added to the grammar rule
9815 as a midrule action. Bison then output the incorrect warning
9816 "parse.y:905.17-906.36: warning: unused value: $3".
9817 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9818 associated with a value.
9819 (rhs): Don't invoke grammar_current_rule_action_append.
9820 (action): Invoke it here instead.
9821 * src/reader.c (grammar_midrule_action): Now extern.
9822 (grammar_current_rule_action_append): Don't invoke
9823 grammar_midrule_action; that is now the scanner's job.
9824 * src/reader.h (last_string, last_braced_code_loc):
9825 (grammar_midrule_action): New decls.
9826 * src/scan-gram.l (last_string): Now extern, sigh.
9827 (last_braced_code_loc): New extern variable.
9828 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9829 rule already has an action.
9830 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9831 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9832 Add some tests to check that the above changes fixed the bug.
9833
d40ba6c2
PE
98342006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9835
9836 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9837 All used changed. Check whether the symbol has a destructor,
9838 not whether it is typed.
9839 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9840 that the values are still reported as unused. All line numbers
9841 adjusted.
9842
401aace6
PE
98432006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9844
9845 Work around a bug in bro 0.8, which underparenthesizes its
9846 definition of YYLLOC_DEFAULT.
9847 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9848 their arguments.
9849 * data/lalr1.cc: Likewise.
9850 * data/yacc.cc: Likewise.
9851
06f01bc4
PE
98522006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9853
401aace6
PE
9854 Work around a bug in Pike 7.0, and give the Pike folks a
9855 better way to override the usual int widths.
9856 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9857 user can override the types.
9858 (short): #undef, to work around a bug in Pike 7.0.
9859 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9860 (union yyalloc.yyss): Use yytype_int16 rather than short.
9861 All uses changed.
9862 (yysigned_char): Remove.
9863 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9864 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9865 * tests/regression.at (Web2c Actions): Adjust to above changes.
9866
9867 * src/reader.c (check_and_convert_grammar): New function.
9868 (reader): Close the input file even if something went wrong during
9869 parsing. Minor file descriptor leak reported by twlevo.
9870
06f01bc4
PE
9871 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9872 to pacify gcc -Wswitch-default.
9873 * src/scan-gram.l (adjust_location): Use a default: break; case
9874 to pacify gcc -Wswitch-default.
9875 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9876 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9877 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9878 Move these decls to scan-skel.l, since they don't need to be
9879 visible elsewhere.
9880 * src/scan-skel.l: Accept the above decls.
9881 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9882 is used.
9883
02650b7f
PE
98842006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9885
9886 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9887 since we don't want to insist on a version number at the start
9888 of the changelog every time.
9889 * Makefile.maint: Sync from coreutils a bit better.
9890 (sc_trailing_blank): Renamed from sc_trailing_space.
9891 All uses changed.
9892 (sc_no_if_have_config_h, sc_require_config_h):
9893 (sc_prohibit_assert_without_use): New rules.
9894 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9895 (sc_dd_max_sym_length): Fix leading spaces in rule.
9896 (sc_system_h_headers): Prefix with @.
9897 (sc_useless_cpp_parens, m4-check): Output line numbers.
9898 (changelog-check): Allow version only in head.
9899 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9900 satisfy new Makefile.maint rule.
9901 * data/glr.c: Likewise.
9902 * data/glr.cc: Likewise.
9903 * data/lalr1.cc: Likewise.
9904 * data/yacc.c: Likewise.
9905 * lib/ebitsetv.c: Likewise.
9906 * lib/lbitset.c: Likewise.
9907 * lib/subpipe.c: Likewise.
9908 * lib/timevar.c: Likewise.
9909 * src/system.h: Likewise.
9910 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9911 * djgpp/Makefile.maint: Add copyright notice.
9912 * djgpp/README.in: Likewise.
9913 * djgpp/config.bat: Likewise.
9914 * djgpp/config.site: Likewise.
9915 * djgpp/config_h.sed: Likewise.
9916 * djgpp/djunpack.bat: Likewise.
9917 * djgpp/config.sed: Fix copyright notice to match standard format.
9918 * djgpp/subpipe.h: Likewise.
9919 * lib/bitsetv-print.c: Likewise.
9920 * lib/bitsetv.c: Likewise.
9921 * lib/subpipe.h: Likewise.
9922 * lib/timevar.c: Likewise.
9923 * lib/timevar.h: Likewise.
9924 * djgpp/subpipe.c: Use standard recipe for config.h.
9925 * lib/abitset.c: Likewise.
9926 * lib/bitset.c: Likewise.
9927 * lib/bitset_stats.c: Likewise.
9928 * lib/bitsetv-print.c: Likewise.
9929 * lib/bitsetv.c: Likewise.
9930 * lib/ebitsetv.c: Likewise.
9931 * lib/get-errno.c: Likewise.
9932 * lib/lbitset.c: Likewise.
9933 * lib/subpipe.c: Likewise.
9934 * lib/timevar.c: Likewise.
9935 * lib/vbitset.c: Likewise.
9936 * tests/local.at: Likewise.
9937 * src/scan-gram.l: Don't include verify.h, since system.h does
9938 that for us.
9939 * .x-sc_require_config_h: New file.
9940 * .x-sc_unmarked_diagnostics: New file.
9941
287c78f6
PE
99422006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9943
287c78f6
PE
9944 Be a bit more systematic about using 'abort'.
9945 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9946 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9947 Put 'default: abort ();' before some other case, to satisfy older
9948 pedantic compilers.
9949 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9950 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9951 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9952 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
9953 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9954 (get_decision_str, get_orientation_str, get_node_alignment_str):
9955 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9956 (get_linestyle_str, get_arrowstyle_str): Likewise.
9957 * src/conflicts.c (resolve_sr_conflict):
9958 Use a default case rather than one for the one remaining enum
9959 value, to catch invalid enum values as well.
9960 * src/lalr.c (set_goto_map, map_goto):
9961 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9962 * src/nullable.c (nullable_compute, token_definitions_output):
9963 Likewise.
9964 * src/reader.c (packgram, reader): Likewise.
9965 * src/state.c (transitions_to, state_new, state_reduction_find):
9966 Likewise.
9967 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9968 (symbol_pack): Likewise.
9969 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
9970 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9971 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
9972 * src/system.h: Don't include <assert.h>.
9973 (assert): New macro.
9974
9975 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9976 (Destructor Decl, Parser Function, Pure Calling):
9977 Describe rules for braces inside C code more carefully.
287c78f6 9978
c66dfadd
PE
99792006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9980
c21493b8
PE
9981 Fix some porting glitches found by Nelson H. F. Beebe.
9982 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9983 compilers that don't understand that abort () does not return.
9984 * src/state.c (transitions_to): Likewise.
9985 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9986 that '#include <cstdlib>' works.
9987 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9988 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9989 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9990 for the benefit of some pre-C99 compilers.
9991
b6e3facf
PE
9992 * bootstrap: Undo changes to gnulib files that autoreconf made.
9993
c66dfadd
PE
9994 Minor fixups to get 'make maintainer-check' to work.
9995 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9996 with the new verify.h implementation.
9997 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9998 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9999 * data/yacc.c (YYUSE): Likewise.
10000 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
10001 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
10002 * src/parse-gram.y (declaration): Don't pass a string constant
10003 to a function that expects char *, since GCC might complain
10004 about the constant value.
10005 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
10006 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
10007 before #defining them.
10008 * tests/glr-regression.at
10009 (Incorrectly initialized location for empty right-hand side in GLR):
10010 In yyerror, use the msg arg.
10011 (Corrupted semantic options if user action cuts parse):
10012 (Incorrect lookahead during deterministic GLR):
10013 (Incorrect lookahead during nondeterministic GLR):
10014 Don't name a local var 'index'; it shadows string.h's 'index'.
10015
ed94ef2a
AD
100162006-01-19 Akim Demaille <akim@epita.fr>
10017
10018 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
10019 location, not just parts of it.
10020
e9ad4aec
PE
100212006-01-18 Paul Eggert <eggert@cs.ucla.edu>
10022
d6ca7905
PE
10023 * NEWS: Document the fact that multiple %unions are now allowed.
10024 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
10025 * TODO: This feature is now implemented, so remove it from
10026 the wishlist.
d6ca7905 10027
ef1b70e0
PE
10028 * Makefile.maint: Merge with coreutils Makefile.maint.
10029 (CVS_LIST): Use build-aux version if available.
10030 (VERSION_REGEXP): New macro.
10031 (syntax-check-rules): Add sc_no_if_have_config_h,
10032 sc_prohibit_assert_without_use, sc_require_config_h,
10033 sc_useless_cpp_parens.
10034 (sc_obsolete_symbols): Check for O_NDELAY.
10035 (sc_dd_max_sym_length): Track coreutils.
10036 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10037 (sc_useless_cpp_parens): New rule.
10038 (news-date-check): Look for version or today's date.
10039 (changelog-check): Don't require version number near head.
10040 (copyright-check): Use current year instead of hardwiring 2005.
10041 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10042 (announcement): Add --gpg-key-ID.
10043
10044 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10045 with "file system".
10046
2073ce56 10047 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
10048 array. Problem reported by twlevo.
10049 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10050 * src/lalr.c (build_relations): Rely on new sentinel.
10051 * src/gram.c (gram_free): Adjust to new sentinel.
10052
b7691f15
JD
100532006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10054
10055 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10056 yylookaheadNeeds. All uses updated.
10057 (yysplitStack): Rename local yynewLookaheadStatuses to
10058 yynewLookaheadNeeds.
10059 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10060 GLR): In comments, change `lookahead status' to `lookahead need'.
10061
ddee1b06
PH
100622006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10063
10064 * data/glr.c (yysplitStack): A little stylistic rewrite.
10065
12f4614d
PH
100662006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10067
10068 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10069
32c29292
JD
100702006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10071
10072 * doc/bison.texinfo: Fix some typos.
10073 (GLR Semantic Actions): New subsection discussing special
10074 considerations because GLR semantic actions might be deferred.
10075 (Actions): Mention look-ahead usage of yylval.
10076 (Actions and Locations): Mention look-ahead usage of yylloc.
10077 (Special Features for Use in Actions): Add YYEOF entry and mention it
10078 in the yychar entry.
10079 In the yychar entry, remove mention of the local yychar case (pure
10080 parser) since this is irrelevant information when writing semantic
148d66d8 10081 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
10082 yychar is otherwise described as an external variable.
10083 In the yychar entry, don't call it the `current' look-ahead since it
10084 isn't when semantic actions are deferred.
10085 In the yychar and yyclearin entries, add note about deferred semantic
10086 actions.
10087 Add yylloc and yylval entries discussing look-ahead usage.
10088 (Look-Ahead Tokens): When discussing yychar, don't call it the
10089 `current' look-ahead, and do mention yylval and yylloc.
10090 (Error Recovery): Cross-reference `Action Features' when mentioning
10091 yyclearin.
148d66d8 10092 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
10093 look-ahead.
10094 In the yylloc and yylval entries, mention look-ahead usage.
10095
de366a2f 100962006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
10097
10098 * tests/glr-regression.at: Update copyright year to 2006.
10099
bf70fa87
JD
101002006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10101
10102 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
10103 use during nondeterministic operation to track which stacks have
10104 actually needed the current lookahead.
10105 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
10106 Allocate, deallocate, resize, and otherwise shuffle space for
10107 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
10108 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
10109 appropriately during nondeterministic operation.
10110 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10111 members to store the current lookahead to be used by the deferred
10112 user action.
10113 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10114 from which the RHS is taken. Set the lookahead members of the new
10115 yySemanticOption according to the lookahead status for stack yyk.
10116 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10117 yyaddDeferredAction.
10118 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10119 members of yySemanticOption before invoking yyuserAction, and then set
10120 them back to their current values afterward.
10121 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10122 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10123 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10124 titles for consistency.
10125 (Leaked merged semantic value if user action cuts parse): In order to
10126 suppress lint warnings, use arguments in merge function, and assign
10127 char value < 128 in main.
10128 (Incorrect lookahead during deterministic GLR): New test case.
10129 (Incorrect lookahead during nondeterministic GLR): New test case.
10130
05449a2c
JD
101312006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10132
de366a2f 10133 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
10134 !yyvaluep as signal that no semantic value is available to print.
10135 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10136 to print a semantic value.
10137
4158e0a1 101382006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 10139
4158e0a1
JD
10140 * tests/glr-regression.at: For consistency with my newer test cases,
10141 don't thank myself.
10142
d659304d
JD
101432006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10144
10145 * data/glr.c (yyresolveValue): When merging semantic options, if at
10146 least one user action succeeds but a later one cuts the parse, then
10147 destroy the semantic value before returning rather than leaking it.
10148 (yyresolveStates): If a user action cuts the parse and thus
10149 yyresolveValue fails, ignore the (unset) semantic value rather than
10150 corrupting the yyGLRState, and empty the semantic options list since
10151 the user actions should have called all necessary destructors.
10152 Simplify code with YYCHK.
10153 * tests/glr-regression.at (Corrupted semantic options if user action
10154 cuts parse): New test case.
10155 (Undesirable destructors if user action cuts parse): New test case.
10156 Before applying any of this patch, this test case never actually failed
10157 for me... but only because the corrupted semantic options usually
10158 masked this bug.
10159 (Leaked merged semantic value if user action cuts parse): New test
10160 case.
10161
6ec2c0f2
AD
101622006-01-05 Akim Demaille <akim@epita.fr>
10163
10164 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10165
1b9c21fb
PE
101662006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10167
10168 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10169 _MSC_VER. Problem reported by Cenzato Marco.
10170 (b4_c_function_def): Use it.
10171 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10172 b4_c_modern.
10173 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10174 than rolling our own.
10175
84866159
AD
101762006-01-04 Akim Demaille <akim@epita.fr>
10177
10178 Also warn about non-used mid-rule values.
10179 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10180 member.
10181 (symbol_list_new): Adjust.
10182 * src/reader.c (symbol_typed_p): New.
10183 (grammar_rule_check): Use it.
10184 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10185 Check its rule.
10186 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10187 Use it.
10188 * tests/actions.at (Exotic Dollars): Adjust.
10189
378f4bd8
AD
101902006-01-04 Akim Demaille <akim@epita.fr>
10191
10192 * src/reader.c (grammar_midrule_action): If $$ is set in a
10193 mid-rule, move the `used' bit to its lhs.
10194 * tests/input.at (Unused values): New.
10195 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10196
e2a21b6f
PE
101972006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10198
54662697
PE
10199 * doc/bison.texinfo (Bison Options): Say more accurately what
10200 --yacc does.
10201 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10202 about declarations in the grammar when in Yacc mode, as POSIX does
10203 not require a diagnostic when the grammar uses extensions.
10204
10205 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10206
073f9288
PE
10207 Warn about dubious constructions like "%token T T".
10208 Reported by twlevo.
10209 * src/symtab.h (struct symbol.declared): New member.
10210 * src/symtab.c (symbol_new): Initialize it to false.
10211 (symbol_class_set): New arg DECLARING, specifying whether
10212 this is a declaration that we want to warn about, if there
10213 is more than one of them. All uses changed.
10214
1221b78a
PE
10215 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10216 Allow multiple %union directives, whose contents concatenate.
10217 * src/parse-gram.y (grammar_declaration): Likewise.
10218 Use muscle_code_grow, so that we don't need stype_line any more.
10219 All uses changed.
10220
10221 * src/muscle_tab.c (muscle_grow): Fix comment.
10222
e2a21b6f
PE
10223 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10224 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10225 Update copyright year to 2006.
10226
8f7e3cf9
AD
102272006-01-03 Akim Demaille <akim@epita.fr>
10228
10229 Have glr.cc pass (some of) the calc.at tests.
10230 * data/glr.cc (b4_parse_param_orig): New.
10231 (b4_parse_param): Improve its definition, and bound it more
10232 clearly in the skeleton.
10233 (b4_epilogue): Append, instead of prepending, in order to keep
10234 #line consistency.
10235 Simplify the generation of auxiliary functions: locations and
10236 purity are mandated.
10237 (b4_global_tokens_and_yystype): Honor it.
10238 * data/location.cc (c++.m4): Don't include it.
10239 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10240 and AT_SKEL_CC_IF.
10241 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10242 AT_LALR1_CC_IF.
10243 Be sure to initialize the first position's filename.
10244 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10245 mandated anyway.
10246 (AT_CHECK_CALC_GLR_CC): New.
10247 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10248
3953ed88
AD
102492006-01-02 Akim Demaille <akim@epita.fr>
10250
10251 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10252 c.m4.
0a96ba81 10253 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
10254 * data/glr.cc: Do not include stack.hh.
10255
9ecafbbf
AD
102562006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10257
10258 * data/glr.c: Reformat whitespace with tabs.
10259 (b4_lpure_formals): Remove this unused m4 macro.
10260 * tests/cxx-type.at: Reformat whitespace with tabs.
10261 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10262 since it's a member. Rename type to isNterm for clarity.
10263
c4d497a0
AD
102642005-12-29 Akim <akim@sulaco.local>
10265
10266 Let glr.cc catch up with symbol_value_print.
10267 * data/glr.cc (b4_yysymprint_generate): Replace by...
10268 (b4_yy_symbol_print_generate): this.
10269 (yy_symbol_print, yy_symbol_value_print): Declare them.
10270
4517da37
PE
102712005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10272
10273 * src/location.h (boundary): Note that a line or column equal
10274 to INT_MAX indicates an overflow.
10275 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10276 (rule_length_overflow, increment_rule_length, add_column_width):
10277 New functions.
10278 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10279 (<SC_BRACED_CODE>"}"):
10280 Use increment_rule_length rather than incrementing it by hand.
10281 (adjust_location, handle_syncline): Diagnose overflow.
10282 (handle_action_dollar, handle_action_at):
10283 Fix bug with monstrosities like $-2147483648.
10284 Remove now-unnecessary checks.
10285 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10286 (convert_ucn_to_byte): Verify assumptions.
10287 (handle_syncline): New arg LOC. All callers changed.
10288 Don't store through a value derived from char const * pointer.
10289
10290 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10291 GCC warnings.
10292
e3233bf6
PE
102932005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10294
10295 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10296 Remove unnecessary forward static decls.
10297
8f3596a6
AD
102982005-12-27 Akim Demaille <akim@epita.fr>
10299
10300 * src/reader.c (grammar_current_rule_check): Also check that $$
10301 is used.
10302 Take the rule to check as argument, hence rename as...
10303 (grammar_rule_check): this.
10304 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10305 Rename as...
10306 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10307 (grammar_midrule_action, grammar_symbol_append): Now static.
10308 * tests/torture.at (input): Don't rely on the default action
10309 being always performed.
10310 * tests/calc.at: "Set" $$ even when the action is "cut" with
10311 YYERROR or other.
10312 * tests/actions.at (Exotic Dollars): Instead of using unused
10313 values, check that the warning is issued.
10314
721be13c
PE
103152005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10316
10317 * NEWS: Improve wording for unused-value warnings.
10318
a0af42fc
AD
103192005-12-22 Akim Demaille <akim@epita.fr>
10320
10321 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10322 (b4_yysymprint_generate): Rename as...
10323 (b4_yy_symbol_print_generate): this.
10324 Generate yy_symbol_print instead of yysymprint.
10325 Generate also yy_symbol_value_print, and use it.
10326
affac613
AD
103272005-12-22 Akim Demaille <akim@epita.fr>
10328
721be13c 10329 * NEWS: Warn about unused values.
affac613
AD
10330 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10331 a `used' member.
10332 (symbol_list_n_get, symbol_list_n_used_set): New.
10333 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10334 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10335 * src/reader.c (grammar_current_rule_check): Check that values are
10336 used.
10337 * src/symtab.c (symbol_print): Accept 0.
10338 * tests/existing.at: Remove the type information.
10339 Empty the actions.
10340 Remove useless actions (beware of mid-rule actions: perl -000
10341 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10342 * tests/actions.at (Exotic Dollars): Use unused values.
10343 * tests/calc.at: Likewise.
10344 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10345 Likewise.
10346
10347 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10348 rule_useful_p.
10349
9d9b8b70
PE
103502005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10351
8bb4c753
PE
10352 Undo 2005-12-01 tentative license wording change. The wording is
10353 still being reviewed by the lawyers, and we don't want to wait for
10354 them before publishing a test release. For now, revert to the
10355 previous wording.
10356 * NEWS: Undo 2005-12-01 change.
10357 * data/glr.c: Revert to previous license wording.
10358 * data/glr.cc: Likewise.
10359 * data/lalr1.cc: Likewise.
10360 * data/location.cc: Likewise.
10361 * data/yacc.c: Likewise.
10362
9d9b8b70
PE
10363 * NEWS: Reword %destructor vs YYABORT etc.
10364 * data/glr.c: Use American spacing, for consistency.
10365 * data/glr.cc: Likewise.
10366 * data/lalr1.cc: Likewise.
10367 * data/yacc.c: Likewise.
10368 * data/yacc.c: Reformat comments slightly.
10369 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10370 for consistency. Fix some spelling errors and reword recently-included
10371 text slightly.
10372 * tests/cxx-type.at: Cast results of malloc, for C++.
10373
2c3b392a
AD
103742005-12-21 Joel E. Denny <address@hidden>
10375
10376 * tests/cxx-type.at: Construct a tree, count the parents of shared
10377 nodes, and free each node once and only once. Previously, the memory
10378 for semantic values was leaked instead.
10379
d6cff4dc
AD
103802005-12-21 Joel E. Denny <address@hidden>
10381
10382 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10383 (yylval, yylloc): If pure, #define to yystackp->yyval and
10384 yystackp->yyloc similar to yychar and yynerrs.
10385 (yyparse): If pure, remove local yylval and yylloc. Add local
10386 yystackp to accommodate pure definitions of yylval and yylloc.
10387 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10388 yylvalp and yyllocp to &yylval and &yylloc.
10389 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10390 namespace. Previously, nerrs and char were missing, but lval and lloc
10391 weren't necessary.
10392 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10393 yylvalp and yyllocp parameters since, if pure, these are now always
10394 accessible through yystackp. If not pure, they are still accessible
10395 globally.
10396 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10397 `if (YYID (N))' to pacify lint.
10398
a85284cf
AD
103992005-12-21 Akim Demaille <akim@epita.fr>
10400
10401 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10402 destroy the RHS symbols of a rule.
10403 * data/yacc.c (yylen): Initialize to 0.
10404 Keep its value to the number of items to possibly shift.
10405 In particular, a regular successful parse that ends on YYFINAL by
10406 a (internal) YYACCEPT must not have yylen != 0.
10407 (yyerrorlab, yyreturn): Pop the RHS.
10408 Reorder a bit to emphasize the `shifting' bits of code.
10409 (YYPOPSTACK): Now accept a number of items to pop.
10410 * data/lalr1.cc: Likewise.
10411 * data/glr.c: Formatting changes.
10412 Use goto instead of fall through.
10413 * doc/bison.texinfo (Destructor Decl): Complete.
10414
d508c281
JMG
104152005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10416
10417 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10418 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10419 * djgpp/config.bat: Replace every occurence of the file name
10420 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10421 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10422 * djgpp/config.sed: Replace every occurence of the file name
10423 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10424 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10425 * djgpp/djunpack.bat: DJGPP specific file.
10426 * djgpp/fnchange.lst: DJGPP specific file.
10427 * djgpp/README.in: Add new information about how to unpack the bison
10428 source on MSDOS and other systems which have 8.3 file name restrictions
10429 using djunpack.bat and fnchange.lst.
10430
3e7a2cd9
PE
104312005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10432
10433 * bootstrap (build_cvs_prefix): Remove; unused.
10434 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10435 when getting gnulib.
10436
104372005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10438
10439 * data/glr.c: Reorder typedef declarations for structs to match order
10440 of struct declarations.
10441 Rename yystack everywhere to yystackp except in yyparse where it's not
10442 a pointer.
10443 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10444 consistency.
10445 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10446 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10447 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10448 lint.
10449
877519f8
PE
104502005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10451
0eca5a39
PE
10452 * tests/sets.at (Accept): Fix typos in regular expression used to
10453 sed out the final state number.
10454
2cec9080
PE
10455 Work around portability problem on Solaris 10: flex-generated
10456 files include <stdio.h> before <config.h>, which messes up
10457 because the latter defines __EXTENSIONS__. Address the problem
10458 by creating two new little files that include <config.h> first,
10459 then include the flex-generated files. Rewrite everyone else
10460 to include <config.h> first, as well.
10461 * lib/timevar.c: Always include "config.h".
10462 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10463 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10464 (EXTRA_bison_SOURCES): New macro.
10465 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10466 * src/system.h: Don't include config.h.
10467 * src/LR0.c: Include <config.h> first.
10468 * src/assoc.c: Likewise.
10469 * src/closure.c: Likewise.
10470 * src/complain.c: Likewise.
10471 * src/conflicts.c: Likewise.
10472 * src/derives.c: Likewise.
10473 * src/files.c: Likewise.
10474 * src/getargs.c: Likewise.
10475 * src/gram.c: Likewise.
10476 * src/lalr.c: Likewise.
10477 * src/location.c: Likewise.
10478 * src/main.c: Likewise.
10479 * src/muscle_tab.c: Likewise.
10480 * src/nullable.c: Likewise.
10481 * src/output.c: Likewise.
10482 * src/parse-gram.y: Likewise.
10483 * src/print.c: Likewise.
10484 * src/print_graph.c: Likewise.
10485 * src/reader.c: Likewise.
10486 * src/reduce.c: Likewise.
10487 * src/relation.c: Likewise.
10488 * src/state.c: Likewise.
10489 * src/symlist.c: Likewise.
10490 * src/symtab.c: Likewise.
10491 * src/tables.c: Likewise.
10492 * src/uniqstr.c: Likewise.
10493 * src/vcg.c: Likewise.
10494
877519f8
PE
10495 * src/parse-gram.y: Fix minor problems uncovered by lint.
10496 (current_lhs, current_lhs_location): Now static.
10497 (current_assoc): Remove unused variable.
10498
10499 Cleanups so that Bison-generated parsers have less lint.
10500 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10501 Prepend /*ARGSUSED*/, for lint's sake.
10502 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10503 definition if 'lint' is defined.
10504 (YYID): New macro (or function, if lint).
10505 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10506 * data/yacc.c: Likewise.
10507 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10508 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10509 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10510 is C++ only.
10511 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10512 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10513 Use YYID(0) rather than 0, for lint.
10514 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10515 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10516
f5228370
PE
105172005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10518
10519 * tests/glr-regression.at
10520 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10521 Close memory leak reported by twlevo.
10522
69ce078b
PE
105232005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10524
6ff99711
PE
10525 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10526 all stacks.
10527 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
10528 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10529 New test case.
10530 (Duplicated user destructor for lookahead): This test now is expected
10531 to succeed.
10532
af3412cd
PE
105332005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10534
32b5b719 10535 * NEWS: Document the following change.
af3412cd
PE
10536 * data/yacc.c: Say "parser skeleton" rather than "file", since
10537 it's no longer just a file.
10538 * data/glr.c: Grant a special exception for C GLR parsers, that
10539 reads like the already-existing exception for C LALR(1) parsers.
10540 * data/glr.cc: Likewise.
10541 * data/lalr1.cc: Likewise.
10542 * data/location.cc: Likewise.
10543 * data/yacc.c: Reword the "written by" statement to clarify that
10544 it was the parser skeleton, not the entire output file.
10545 * data/glr.c: Written by Paul Hilfinger.
10546 * data/glr.cc: Written by Akim Demaille.
10547 * data/lalr1.cc: Likewise.
10548
035aa4a0
PE
105492005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10550
d9963c85
PE
10551 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10552 Fix typos in previous change that broke 'make check'.
10553 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10554 supported in C.
10555 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10556 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10557 We can revert this once things settle down.
10558
035aa4a0
PE
10559 * src/conflicts.c (conflicts_print): Don't print file name twice
10560 when %expect fails because there were no conflicts.
10561 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10562 change.
10563 * tests/conflicts.at (%expect not enough, %expect too much):
10564 (%expect with reduce conflicts): Adjust to new behavior.
10565
105662005-11-18 Akim Demaille <akim@epita.fr>
10567
10568 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10569 errors.
10570 * NEWS: Document this.
10571 * doc/bison.texinfo (Expect Decl): Likewise.
10572
d1ff7a7c
AD
105732005-11-16 Akim Demaille <akim@epita.fr>
10574
10575 Generalize the display of semantic values and locations in traces.
10576 * data/glr.c (yy_reduce_print): Fix indices (again).
10577 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10578 literal integers.
10579 * data/lalr1.cc (yyreduce_print): Rename as...
10580 (yy_reduce_print): this.
10581 Display values and locations.
10582 * data/yacc.c (yy_reduce_print): Likewise.
10583 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10584 (yysymprint): Move higher to be visible from yy_reduce_print).
10585 (yyparse): Adjust.
10586 * tests/calc.at: Adjust the expected length of the traces.
10587
6de5398d
AD
105882005-11-14 Akim Demaille <akim@epita.fr>
10589
10590 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10591 from 1 to N, while values and location start at 0.
10592 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10593
a1373f55
AD
105942005-11-14 Akim Demaille <akim@epita.fr>
10595
10596 * data/glr.c (yy_reduce_print): Fix the $ number.
10597
613d8952
AD
105982005-11-14 Akim Demaille <akim@epita.fr>
10599
10600 "Use" parse parameters.
10601 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10602 * data/glr.c, data/glr.cc: Use them.
10603 * data/glr.c (YYUSE): Have a C++ definition that supports
10604 non-pointer types.
10605
b2741627
AD
106062005-11-14 Akim Demaille <akim@epita.fr>
10607
10608 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10609
5059b5c8
AD
106102005-11-14 Akim Demaille <akim@epita.fr>
10611
42249483
AD
10612 * data/glr.cc: New.
10613 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 10614
4626a15d
AD
106152005-11-12 Akim Demaille <akim@epita.fr>
10616
10617 Let position and location be PODs.
10618 * data/location.cc (position::initialize, location::initialize): New.
10619 (position::position, location::location): Define only if
10620 b4_location_constructors is defined.
10621 * data/lalr1.cc (b4_location_constructors): Define it for backward
10622 compatibility.
10623 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10624
106252005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
10626
10627 * data/lalr1.cc: Move the body of the ctor and dtor into the
10628 parser file (instead of the header).
10629 Wrap the implementations in a "namespace yy".
10630
106312005-11-12 Akim Demaille <akim@epita.fr>
10632
10633 Have glr.c include its header file when created.
10634 * data/glr.c (b4_shared_declarations): New.
10635 Output them verbatim in the parser if !%defines, otherwise
10636 output then in the header file, and include it instead.
10637
1989d947
AD
106382005-11-11 Akim Demaille <akim@epita.fr>
10639
10640 * data/glr.c: Comment changes.
10641
106422005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
10643
10644 When yydebug, report semantic and location values for reductions.
10645 * data/glr.c (yy_reduce_print): Report the semantic values and the
10646 locations.
10647 (YY_REDUCE_PRINT): Adjust.
10648 (yyglrReduce): Use them.
10649 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10650 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10651 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10652 traces.
10653
02998094
AD
106542005-11-10 Akim Demaille <akim@epita.fr>
10655
10656 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10657 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10658 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10659
5210672f
PE
106602005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10661
10662 * m4/cxx.m4, examples/Makefile.am: Don't build
10663 examples/calc++ if no C++ compiler is available. (trivial change)
10664
a8991a1d
AD
106652005-11-09 Akim Demaille <akim@epita.fr>
10666
10667 * src/scan-skel.l: Use a couple of asserts.
10668
36b5e963
AD
106692005-11-03 Akim Demaille <akim@epita.fr>
10670
10671 In some (weird) cases, the final state number is incorrect.
10672 Reported by Alexandre Duret-Lutz.
10673 * src/LR0.c (state_list_append): Remove the computation of
10674 final_state.
10675 (save_reductions): Do it here.
10676 (get_state): Alpha conversion.
10677 (generate_states): Use a for loop.
10678 * src/gram.h (item_number_is_rule_number)
10679 (item_number_is_symbol_number): New.
10680 * src/state.c: Use assert.
10681 * src/system.h: Include assert.h.
10682 * tests/sets.at (Accept): New.
10683
44e7ead1
PH
106842005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10685
10686 * data/glr.c (yyfill): Adjust comment.
36b5e963 10687 (yyresolveAction): Initialize default location properly
44e7ead1
PH
10688 for empty right-hand sides.
10689 (yydoAction): Ditto.
10690 Add comment explaining apparently dead code.
36b5e963
AD
10691 * tests/glr-regression.at
10692 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 10693 New test.
36b5e963 10694
e10a80ee
PE
106952005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10696
10697 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10698 gnulib when interrupted. This fixes some race conditions and
10699 works around some portability problems (one noted by Paul
10700 Hilfinger).
10701
067b32ee
AD
107022005-10-22 Akim <akim@epita.fr>
10703
10704 * Makefile.cfg: Adjust to config -> build-aux.
10705 Reported by twledo.
10706
4b367315
AD
107072005-10-21 Akim Demaille <akim@epita.fr>
10708
10709 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10710 the %parse-params.
10711 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10712 * data/yacc.c (b4_Pure_if): Rename as...
10713 (b4_yacc_pure_if): this.
10714 (YY_SYMBOL_PRINT, yyparse): Adjust.
10715 * doc/bison.texinfo: Formatting changes.
10716
24cc23d9
AD
107172005-10-21 Akim Demaille <akim@epita.fr>
10718
10719 Finish the transition config -> build-aux.
10720 * configure.ac, Makefile.am: Use build-aux.
10721 * config/prev-version, config/announce-gen, config/Makefile.am:
10722 Move to...
10723 * build-aux/prev-version, build-aux/announce-gen,
10724 * build-aux/Makefile.am: here.
10725
d4476375
AD
107262005-10-14 Akim Demaille <akim@epita.fr>
10727
10728 * examples/calc++/test: Use set -x only when VERBOSE.
10729
302c0aee
PE
107302005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10731
10732 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10733 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10734
7625ec2c
AD
107352005-10-13 Akim Demaille <akim@epita.fr>
10736
10737 * src/scan-skel.l: Output the base name parts of the parser and
10738 header file names.
302c0aee 10739 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
10740 additional checks.
10741 Use this to exercise C++ outputs in subdirs.
10742 Reported by Oleg Smolsky.
10743
ba0fe3c7
PE
107442005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10745
10746 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10747 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10748 Problem reported by John P. Hartmann.
10749 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10750 already defined it.
10751
9b8a5ce0
AD
107522005-10-12 Akim Demaille <akim@epita.fr>
10753
10754 * src/parse-gram.y (version_check): Exit 63 to please missing
10755 (stands for "version mismatch).
10756 * tests/input.at, doc/bison.texinfo: Adjust.
10757
4f6e011e
PE
107582005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10759
10760 Work around portability problems with Visual Age C compiler
10761 (xlc and xlC_r) reported by John P. Hartmann.
10762 * data/location.cc (initial_column, initial_line): Remove.
10763 All uses replaced by 0 and 1.
10764 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10765 that xlc complains about.
10766 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 10767 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 10768 as __STDC__.
4d7aa45e
PE
10769 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10770 __STDC_VERSION__. Use it everywhere instead of looking at
10771 __STDC__ and __cplusplus.
4f6e011e 10772
a1b3bf8c
AD
107732005-10-10 Akim Demaille <akim@epita.fr>
10774
10775 * examples/calc++/test: Be quiet unless VERBOSE.
10776
412e44aa
PE
107772005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10778
2a4647a3
PE
10779 * data/c.m4 (yydestruct, yysymprint):
10780 Use YYUSE instead of casting to void.
10781 * data/glr.c (YYUSE): New macro.
10782 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10783 Use it instead of rolling our own.
10784 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10785 (YYCHK1):
10786 Use /*CONSTCOND*/ to suppress lint warnings.
10787 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10788 (YY_STACK_PRINT): Use 'false' not '0'.
10789 (YYUSE): New macro.
10790 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10791 * data/yacc.c (YYUSE): New macro.
10792 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10793 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10794 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10795
10796
412e44aa
PE
10797 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10798 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10799
88c6637f
PE
108002005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10801
2f4f028d
PE
10802 Undo the parts of the unlocked-I/O change that substituted
10803 putc or puts for printf. This might hurt performance a bit,
10804 but some people prefer the printf style.
10805 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10806 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10807 All uses replaced by YYFPRINTF and YYDPRINTF.
10808 * data/yacc.c: Likewise.
10809 * lib/bitset.c (bitset_print): Likewise.
10810 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10811 putc and puts.
10812 * lib/lbitset.c (debug_lbitset): Likewise.
10813 * src/closure.c (print_firsts, print_fderives): Likewise.
10814 * src/gram.c (grammar_dump): Likewise.
10815 * src/lalr.c (look_ahead_tokens_print): Likewise.
10816 * src/output.c (escaped_output): Likewise.
10817 (user_actions_output): Break apart two printfs.
10818 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10819 * src/reduce.c (reduce_print): Likewise.
10820 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10821 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10822
88c6637f
PE
10823 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10824 Use assignments rather than casts-to-void to suppress
10825 unused-variable warnings. This pacifies 'lint'.
10826 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10827 unused-variable warnings.
10828
fb32e373
JMG
108292005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10830
10831 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10832
edb8f44f
PE
108332005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10834
fb9c0b33
PE
10835 Use unlocked I/O for a minor performance improvement on hosts like
10836 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10837 is to use the gnlib unlocked-io module, and to prefer putc and
10838 puts to printf when either will work (since the latter doesn't
10839 come in an unlocked flavor).
10840 * bootstrap (gnulib_modules): Add unlocked-io.
10841 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10842 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10843 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10844 and similarly for puts and putc and printf.
10845 * data/yacc.c: Likewise.
10846 * lib/bitset.c (bitset_print): Likewise.
10847 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10848 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10849 to printf.
10850 * lib/lbitset.c (debug_lbitset): Likewise.
10851 * src/closure.c (print_firsts, print_fderives): Likewise.
10852 * src/gram.c (grammar_dump): Likewise.
10853 * src/lalr.c (look_ahead_tokens_print): Likewise.
10854 * src/output.c (escaped_output): Likewise.
10855 (user_actions_output): Coalesce two printfs.
2f4f028d 10856 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
10857 * src/reduce.c (reduce_print): Likewise.
10858 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 10859 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 10860
edb8f44f
PE
10861 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10862 this confuses xgettext.
10863
b50d2359
AD
108642005-10-02 Akim Demaille <akim@epita.fr>
10865
10866 * bootstrap (gnulib_modules): Add strverscmp.
10867 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10868 * m4/.cvsignore: Add strverscmp.m4.
10869 * src/parse-gram.y (%require): New token, new rule.
10870 (version_check): New.
10871 * src/scan-gram.l (%require): Adjust.
10872 * tests/input.at (AT_REQUIRE): New.
10873 Use it.
10874 * doc/bison.texinfo (Require Decl): New.
10875 (Calc++ Parser): Use %require.
10876
21667f64
AD
108772005-10-02 Akim Demaille <akim@epita.fr>
10878
10879 * data/location.cc: New.
10880
2b81e969
AD
108812005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10882 Akim Demaille <akim@epita.fr>
10883
10884 Make sure -odir/foo.cc creates dir/location.hh etc.
10885 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10886 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10887 (spec_defines_file): Now const.
10888 (dir_prefix): New.
10889 (short_base_name): Remove.
10890 * src/files.c: Adjust.
10891 (dirname.h): Include.
10892 (base_name): Don't prototype it.
10893 (finput): Remove, duplicates gram_in.
10894 (full_base_name, short_base_name): Replace by...
10895 (all_but_ext, all_but_tab_ext): these.
10896 (compute_base_names): Rename as...
10897 (compute_file_name_parts): this.
10898 Update to compute the new variables, including dir_prefix.
10899 Adjust dependencies.
10900 * src/output.c (prepare): Output them.
10901 * src/reader.c: Adjust to use gram_in, not finput.
10902 * src/scan-skel.l (@dir_prefix@): New.
10903
ad6a9b97
JMG
109042005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10905
10906 * lib/subpipe.c: New function end_of_output_subpipe() added
10907 to allow support for non-posix systems. This is a no-op function
10908 for posix systems.
10909
10910 * lib/subpipe.h: New function end_of_output_subpipe() added
10911 to allow support for non-posix systems. This is a no-op function
10912 for posix systems.
10913
10914 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10915 handle the lack of pipe/fork functionality on non-posix systems.
10916
10917 * djgpp/Makefile.maint: DJGPP specific file.
10918
10919 * djgpp/README.in: DJGPP specific file.
10920
10921 * djgpp/config.bat: DJGPP specific configuration file.
10922
10923 * djgpp/config.sed: DJGPP specific configuration file.
10924
10925 * djgpp/config.site: DJGPP specific configuration file.
10926
10927 * djgpp/config_h.sed: DJGPP specific configuration file.
10928
10929 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10930
10931 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10932
fc695704
AD
109332005-10-02 Akim Demaille <akim@epita.fr>
10934
10935 * data/location.cc: New, extract from...
10936 * data/lalr1.cc: here.
10937 (location.hh): Include it after the user prologue, in case the
10938 filename type is defined by the user.
10939 Forward declation location and position before the pre-prologue.
10940 (yyresult_): Rename as...
10941 (yyresult): this, it's a local variable, not an attribute.
10942 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10943
109442005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
10945
10946 * examples/extexi: Restore the #line generation.
10947
fb9712a9
AD
109482005-09-30 Akim Demaille <akim@epita.fr>,
10949 Alexandre Duret-Lutz <adl@gnu.org>
10950
10951 Move the token type and YYSTYPE in the parser class.
10952 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10953 (parser::token): New, from the moved free definition of tokens.
10954 (parser::semantic_value): Now a full definition instead of an
10955 indirection to YYSTYPE.
10956 (b4_post_prologue): No longer included in the header file, but
10957 in the implementation file.
10958 * doc/bison.texi (C+ Language Interface): Update.
10959 * src/parse-gram.y: Support unary %define.
10960 * tests/actions.at: Define global_tokens_and_yystype for backward
10961 compatibility until we update the tests.
10962 * tests/calc.at: Idem.
10963 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10964 to simplify the code.
10965
55f0c7b1
PE
109662005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10967
10968 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10969 Ah, the good old days! Problem reported by Peter Klein.
10970 * bootstrap (gnulib_modules): Add strerror, strtoul.
10971 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10972 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10973
fb9712a9 109742005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
10975
10976 * data/c.m4 (b4_error_verbose_if): New.
10977 * data/lalr1.cc: Use it.
10978 (YYERROR_VERBOSE_IF): Remove.
10979 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10980 parser members, replaced by...
10981 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10982 local variables.
10983 (yysyntax_error_): Takes the state number as argument.
10984 (yyreduce_print_): Use the argument yyrule, not the former
10985 attribute yyn_.
10986
8a6f72f3
PE
109872005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10988
10989 * bootstrap (gnulib_modules): Add verify.
10990 * lib/.cvsignore: Add verify.h.
10991 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10992 * src/system.h (verify): Remove.
10993 Include verify.h instead.
10994 * src/tables.c (tables_generate): Use new API for 'verify'.
10995
0d50976f
PE
109962005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10997
ebc3737e
PE
10998 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10999 local variables whose names begin with 'yy'.
11000 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11001 Trivial changes from Joel E. Denny.
11002
0d50976f
PE
11003 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
11004 it itself.
11005 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
11006 don't use alloca any more.
11007
11008 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
11009 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 11010 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
11011 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
11012 to match yacc.c, to test more hosts.
11013
a05b79df
PE
110142005-09-20 Paul Eggert <eggert@cs.ucla.edu>
11015
55289366
PE
11016 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
11017 doesn't affect behavior.
11018 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
11019 Solaris, AIX, MSC.
11020 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
11021 This works a bit better with glibc, if user code has already included
11022 stdlib.h.
11023 * doc/bison.texinfo (Bison Parser): Document that users can't
11024 arbitrarily use malloc and free for other purposes. Document
11025 that <alloca.h> and <malloc.h> might be included.
11026 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11027 user must declare alloca.
11028
a05b79df
PE
11029 * HACKING (release): Forwarn the Translation Project about
11030 stable releses.
11031
3ab2ca22
AD
110322005-09-20 Akim Demaille <akim@epita.fr>
11033
11034 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11035
a9739e7c
PE
110362005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11037
a702593e
PE
11038 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11039 (YYSTACK_ALLOC_MAXIMUM): Use it.
11040 (yysyntax_error): New function.
11041 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11042 multiple syntax errors are reported, and alloca is being used.
11043 Instead, reallocate buffers twice as big each time, so that
11044 we waste at most half the allocated memory. Start with a small
11045 (128-byte) buffer that will suffice in most cases anyway.
11046 Use yysyntax_error to do most of the work.
11047
11048 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11049 yynerrs is the number of errors reported, not the number of
11050 errors encountered.
11051
a9739e7c
PE
11052 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11053 Mark it as expected to fail.
11054 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11055 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11056 Don't start user-code symbols with "yy", to avoid name space problems.
11057
f479c6c6
AD
110582005-09-19 Akim Demaille <akim@epita.fr>
11059
11060 Remove the traits, failed experiment.
11061 It never proved useful, and anyway because of the current
11062 definition, it was not possible to have several specialization of
11063 this traits, making it useless.
11064 * data/lalr1.cc (yy:traits): Remove.
11065 Inline its definitions in the parser class.
11066
e2586f82
AD
110672005-09-19 Akim Demaille <akim@epita.fr>
11068
11069 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11070 least Mac OSX with a /usr/local install of gettext.
11071
2e8cf949
AD
110722005-09-19 Akim Demaille <akim@epita.fr>
11073
11074 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11075 and yytoken for similarity with the other skeletons.
11076
c7fb0b90
AD
110772005-09-19 Akim Demaille <akim@epita.fr>
11078
4e26c69e 11079 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 11080
1bd0deda
PE
110812005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11082
11083 * NEWS: Version 2.1.
11084
11085 * NEWS: Remove notice of yytname change, since it was never in an
11086 official release.
11087 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11088 diagnostic.
11089 * src/output.c (prepare): Likewise.
11090 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11091 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11092 is not defined. This is an awful hack, but it's enough for now.
11093 All callers changed.
11094 * tests/glr-regression-at (make_value): Args are const pointers now,
11095 to avoid GCC warning.
11096 (Duplicated user destructor for lookahead): New test. Currently
11097 skipped. It fails on my host but I'm not sure it'll always fail.
11098
110992005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
11100
11101 * src/symtab.h (struct symbol): Declare the printer and destructor
11102 as const, to avoid accidental calls to free.
11103 (symbol_destructor_set, symbol_printer_set): Adjust.
11104 * src/symtab.c: Adjust.
11105
1bd0deda 111062005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
11107
11108 * data/c.m4 (b4_token_enums): New.
11109 (b4_token_defines): Rename as...
11110 (b4_token_enums_defines): this.
11111 (b4_token_defines): New, output only the #defines.
11112 * data/yacc.c, data/glr.c: Adjust.
11113 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11114 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11115 as default values.
11116
dbcdae2d
AD
111172005-09-16 Akim Demaille <akim@epita.fr>
11118
11119 * data/lalr1.cc (yylex_): Remove, inline its code.
11120 (yyreport_syntax_error_): Remove, replaced by...
11121 (yysyntax_error_): this which returns a string and leaves to the
11122 caller the call to the users' error function.
11123 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11124 Move from members of the parser object...
11125 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11126 to local variables of the parse function.
11127
70d8f291
AD
111282005-09-16 Akim Demaille <akim@epita.fr>
11129
11130 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11131 since it's in Bison's name space.
11132
b47dbebe
PE
111332005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11134
ae199bf1
PE
11135 * data/glr.c (yyresolveValue): Add default case to pacify
11136 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11137
b47dbebe
PE
11138 * NEWS: Document when yyparse started to return 2.
11139 * doc/bison.texinfo (Parser Function): Document when yyparse
11140 returns 2.
11141
11142 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11143 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11144 changed.
11145 (class position): file_name -> filename (reverting). All uses changed.
11146
111472005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11148
11149 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11150 do anything if $@ exists. This reverts part of the 2005-07-07
11151 patch.
11152
00292f66
PE
111532005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11154
11155 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11156 contains obsolete information and isn't worth distributing as a
11157 separate file anyway.
11158 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11159 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11160 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11161 (yyparse): Abort if user code uses longjmp to throw an unexpected
11162 value.
11163
a420f962
PE
111642005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11165
00292f66
PE
11166 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11167 Suggested by twlevo@xs4all.nl.
11168
127287e9
PE
11169 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11170 This avoids a diagnostic from gcc -Wswitch-enum.
11171 Problem reported by twlevo@xs4all.nl.
11172
a420f962
PE
11173 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11174 standards. Use "file name" or "file" or "name", depending on
11175 the context.
11176 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11177 not to hack/foo.tab.c.
11178 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
11179 * data/glr.c: b4_filename -> b4_file_name.
11180 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11181 All uses changed.
11182 (class position): filename -> file_name. All uses changed.
11183 * data/yacc.c: b4_filename -> b4_file_name.
11184 * lib/bitset.h: filename -> file_name in local vars.
11185 * lib/bitset_stats.c: Likewise.
11186 * src/files.c: Likewise.
11187 * src/scan-skel.l ("@output ".*\n): Likewise.
11188 * src/files.c (file_name_split): Renamed from filename_split.
11189 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
11190
111912005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11192
11193 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11194 to accommodate latest gnulib.
11195
11196 * tests/glr-regression.at (Duplicate representation of merged trees):
11197 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11198
11199 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11200 needed.
11201
42a6501d
PE
112022005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11203
11204 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11205 All uses changed. Invoke user destructor after an error during a
11206 split parse (trivial change from Joel E. Denny).
11207
11208 * tests/glr-regression.at
11209 (User destructor after an error during a split parse): New test case.
11210 Problem reported by Joel E. Denny in:
11211 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11212
ef9a1faf
PE
112132005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11214
5b4aaf78
PE
11215 * README-cvs: Give URLs for recommended tools.
11216 Mention Gzip version problem, and bootstrapping issues.
11217 Remove troubleshooting section, as it's somewhat obsolete.
11218
b5240ba5
PE
11219 * bootstrap (no_cache): New var, to accommodate different wget
11220 variants. Use it instead of '-C off'. Problem reported by
11221 twlevo@xs4all.nl.
11222
ef9a1faf
PE
11223 * data/glr.c (yydestroyStackItem): New function.
11224 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11225 debugging information. Problem reported by Joel E. Denny.
11226
e6efa9da
AD
112272005-08-25 Akim Demaille <akim@epita.fr>
11228
11229 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11230
adc90f13
PE
112312005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11232
11233 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11234 Don't invoke destructor on unresolved entries.
11235 * tests/glr-regression.at
11236 (User destructor for unresolved GLR semantic value): New test case.
11237 Problem reported by Joel E. Denny in:
11238 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11239
f9315de5
PE
112402005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11241
15d29c1f
PE
11242 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11243 Add strnlen.c.
11244 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11245 lib-prefix.m4, po.m4.
11246
dd5f2af2
PE
11247 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11248 in yydestruct diagnostic, since it might not be an error.
11249 Problem reported by Joel Denny near end of
11250 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 11251 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
11252 * data/yacc.c (yyreturn): Likewise.
11253 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11254
11255 * src/files.c: Remove obsolete FIXME comment.
11256
11257 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11258 with the other templates, and to fix bogus run-on messages such
11259 as the one reported at the end of
11260 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11261 All callers changed to avoid the newline.
11262 (yyprocessOneStack): Output two lines rather than one, to accommodate
11263 the above change. This changes the debug output format slightly.
11264
f9315de5
PE
11265 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11266 reported by Joel E. Denny in
11267 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11268 (trivial change).
11269 * tests/glr-regression.at (Duplicate representation of merged trees):
11270 New test, from Joel E. Denny in:
11271 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11272 * THANKS: Add Joel E. Denny.
11273
11274 * configure.ac (AC_INIT): Bump to 2.0c.
11275
04098407
PE
112762005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11277
11278 * NEWS: Version 2.0b.
11279
ca5d2013
PE
11280 * Makefile.am (SUBDIRS): Put examples before tests, so that
11281 "make check" doesn't finish with "All 1 tests passed".
11282
3d54b576
PE
11283 * tests/regression.at (Token definitions): Don't rely on
11284 AT_PARSER_CHECK for data that contains backslashes. It currently
11285 uses 'echo', and 'echo' isn't portable if its argument contains
11286 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11287 that the byte '\0xff' is not printable in the C locale; it is,
11288 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11289 not printable, so use '\0x81' to test.
11290
d53ae497
PE
11291 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11292 version of GCC, since the macro is used with non-GCC compilers.
11293
fc01665e
PE
11294 Fix core dump reported by Pablo De Napoli in
11295 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11296 * tests/regression.at (Invalid inputs with {}): New test.
11297 * src/parse-gram.y (token_name): Translate type before using
11298 it as an index.
11299
04098407
PE
11300 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11301 the user's name space. All uses changed to __attribute__
11302 ((__unused__)).
11303 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11304 Add __attribute__ ((__noreturn__)).
11305
11306 * etc/clcommit: Remove. We weren't using it, and it failed
11307 "make maintainer-distcheck".
11308 * Makefile.maint: Merge from coreutils.
11309 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11310 (syntax-check-rules): Change list of rules as described below.
11311 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11312 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11313 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11314 (sc_trailing_space): New rules.
11315 (sc_xalloc_h_in_src): Remove.
11316 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11317 (sc_space_tab, sc_error_exit_success, sc_changelog):
11318 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11319 (makefile-check, po-check, author_mark_check):
11320 (makefile_path_separator_check, copyright-check):
11321 Use grep -n, to make it easier to find violations.
11322 Use CVS_LIST and CVS_LIST_EXCEPT.
11323 (header_regexp, h_re): Remove.
11324 (dd_c): New macro.
11325 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11326 (my-distcheck): Use more-modern GCC flags.
11327 (signatures, %.asc): Remove.
11328 (rel-files, announcement): Remove signatures.
11329 Restore old updating code, even though we don't use it, so
11330 that we're the same as coreutils.
11331 (alpha, beta, major): Depend on news-date-check.
11332 Make the upload commands.
11333
11334 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11335 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11336 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11337 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11338 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11339 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11340 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11341 * tests/sets.at: Likewise.
11342
11343 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11344 we comment out the Autoconf version number.
11345 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11346 it's error-prone and "make maintainer-distcheck" rejects it.
11347
11348 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11349 Indent calls to "error" to pacify "make maintainer-distcheck",
11350 when the calls are not intended to be translated.
11351 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11352
11353 * src/Makefile.am (DEFS): Use +=, to pacify
11354 "make maintainer-distcheck".
11355 (bison_SOURCES): Add scan-skel.h.
11356 (sc_tight_scope): New rule, from coreutils.
11357
11358 * src/files.c (src_extension, header_extension):
11359 Now static, not extern.
11360 * src/getargs.c (short_options): Likewise.
11361 * src/muscle_tab.c (muscle_table): Likewise.
11362 * src/parse-gram.y (current_class, current_type, current_prec):
11363 Likewise.
11364 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11365 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11366 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11367 void, to avoid warning when NLS is disabled.
11368 * src/output.c: Include scan-skel.h.
11369 (scan_skel): Remove decl, since scan-skel.h does this.
11370 (output_skeleton):
11371 Indent calls to "error" to pacify "make maintainer-distcheck".
11372 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11373 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11374 "make maintainer-distcheck".
11375 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11376 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11377 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11378 (skel_lex_destroy, scan_skel): Move these decls to...
11379 * src/scan-skel.h: New file.
11380 * src/uniqstr.c (uniqstr_assert):
11381 Indent calls to "error" to pacify "make maintainer-distcheck".
11382
11383 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11384 not @VAR@.
11385
11386 * tests/torture.at: Revamp to avoid misuse of atoi that
11387 "make maintainer-distcheck" complained about.
11388
11389 * examples/extexi (message): Don't print a message more than once,
11390 and omit line-number decoration that makes Emacs compile think
11391 that informative messages are worth worrying about.
11392
113932005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11394
11395 * configure.ac: Update version number.
11396
11397 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11398 accidentally.
11399 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11400 autogenerated by the maintainer.
11401 * examples/calc++/.cvsignore: Add *.yy.
11402
11403 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11404 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11405 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11406
11407 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11408
11409 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11410 from maintainer-distcheck about casting the argument of 'free'.
11411
11412 * NEWS: Mention recent yytname changes.
11413 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11414
11415 * bootstrap: For translations that have not yet been upgraded to
11416 the new runtime-po domain, prime the pump by extracting the
11417 relevant strings from the obsolete translations. This code can be
11418 removed once the bison-runtime domain has been translated by each
11419 team.
11420
11421 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11422 now that token names are already quoted.
11423
11424 Fix problem reported by Anthony Heading.
11425 * data/glr.c (YYTOKEN_TABLE): New macro.
11426 (yytname): Define if YYTOKEN_TABLE.
11427 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11428 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11429 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11430 * src/output.c (prepare_symbols): Output token_table_flag.
11431
0ffda363
PE
114322005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11433
11434 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11435 again if the first call fails.
11436
11437 * data/glr.c (yytnamerr): New function.
11438 (yyreportSyntaxError): Use it to dequote most string literals.
11439 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11440 with other skeletons. All uses changed.
11441 (yytnameerr_): New function.
11442 (yyreport_syntax_error): Use it to dequote most string literals.
11443 * data/yacc.c (yytnamerr): New function.
11444 (yyerrlab): Use it to decode most string literals.
11445 * doc/bison.texinfo (Decl Summary, Calling Convention):
11446 Clarify quoting convention of yytname.
11447 * src/output.c (prepare_symbols): Quote all names. This undoes
11448 the 2005-04-17 change, which is now accomplished (mostly) via
11449 changes in the parsers as described above.
11450 * tests/regression.at (Token definitions, Web2c Actions):
11451 Undo most 2005-04-17 change here, too.
11452
114532005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11454
11455 Fix more problems reported by twlevo@xs4all.nl.
11456 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11457 remove trailing spaces. This loses the exit status of ./types,
11458 and isn't needed since ./types shouldn't be emitting trailing
11459 spaces.
11460 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11461 as the stack isn't valid in that case.
11462
11463 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11464 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11465 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11466 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11467 is used.
11468 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11469 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11470 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11471 Likewise.
11472
11473 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11474 overly-picky compilers that reject 'char *foo = "bar";'.
11475
11476 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11477 to FILE * parameter, not to stderr. This fixes a typo introduced
11478 in the 2005-07-12 change.
11479
11480 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11481 warnings from GCC 4.
11482
11483 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11484 (yyglrShiftDefer, yysplitStack):
11485 Remove unused parameters b4_pure_formals. All uses changed.
11486 (yyglrShift): Remove unused parameters b4_user_formals.
11487 All uses changed.
11488 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11489
6100a9aa
PE
114902005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11491
258b75ca
PE
11492 Destructor cleanups and regularization among the three skeletons.
11493 * NEWS: Document the behavior changes.
11494 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11495 stack before failing, as the cleanup code will do it for us now.
11496 * data/lalr1.cc (yyerrlab): Likewise.
11497 * data/glr.c (yyparse): Pop everything off the stack before
11498 freeing it, so that destructors get called properly.
11499 * data/lalr1.cc (yyreturn): Likewise.
11500 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11501 This is more consistent.
11502 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11503 why destructors might be called. 1.875 -> 2.1.
11504 (Destructor Decl, Decl Summary, Table of Symbols):
11505 Some English-language cleanups for %destructor.
11506 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11507 Add output line for destructor of start symbol.
11508 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11509 because of that same extra output line.
11510
1a059451
PE
11511 * NEWS: Document minor wording changes in diagnostics of
11512 Bison-generated parsers.
11513 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11514 Remove unused formals. All uses changed.
11515 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11516 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11517 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11518 Rename yyoverflowab to yyexhaustedlab.
11519 When memory exhaustion occurs during syntax-error reporting,
11520 report it separately rather than in a single diagnostic; this
11521 eases translation.
11522 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11523 (Memory Exhausted): Renamed from Parser Stack Overflow.
11524 Revamp wording slightly to prefer "memory exhaustion".
11525 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11526
97460c78
PE
11527 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11528
30757c8c
PE
11529 Add i18n support to the GLR skeleton. Partially fix the C++
11530 skeleton; a C++ expert needs to finish this. Remove debugging
11531 msgids; there's little point to having them translated, since they
11532 can be understood only by someone who can read the
11533 (English-language) source code.
11534
11535 Generate runtime-po/bison-runtime.pot automatically, so that we
11536 don't have to worry about garbage getting in that file. We'll
11537 make sure after the next official release that old msgids don't
11538 get lost. See
11539 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11540
11541 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11542 Now auto-generated.
11543 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11544 Fix typos in explanations of the runtime file.
11545 * bootstrap: Change gettext keyword from YYI18N to YY_.
11546 Use standard Makefile.in.in in runtime-po, since we'll arrange
11547 for backward-compatible bison-runtime.po files in a different way.
11548 * data/glr.c (YY_): New macro, from yacc.c.
11549 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11550 Translate messages intended for users.
11551 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11552 the wording in the other skeletons. We don't know that the memory
11553 is virtual.
11554 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11555 Use same method that yacc.c uses.
11556 Don't translate debugging messages.
11557 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11558 it doesn't work (yet), and requires C++ expertise to fix.
11559 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11560 Move defn to a more logical place, to be consistent with other
11561 skeletons.
11562 Don't translate debugging messages.
11563 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11564 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11565 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11566 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11567
ac8c5689
PE
11568 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11569 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11570 void, not int.
11571 * tests/glr-regression.at (Badly Collapsed GLR States):
11572 Likewise.
11573 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11574 yylex should return 0 at EOF rather than aborting.
11575
6100a9aa
PE
11576 Improve tests for stack overflow in GLR parser.
11577 Problem reported by twlevo@xs4all.nl.
11578 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11579 All uses removed.
11580 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11581 can handle the problem.
11582 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11583 (yyparse): New local variable yyresult to record the result.
11584 Use result of setjmp to set it, rather than storing itinto
11585 struct.
11586 (yyDone): Remove label.
11587 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11588 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11589 if YYABORT is used).
11590 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11591 yyparse status; put status > 1 into diagnostic.
11592 Check that status==2 works.
11593 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11594 Use exit status 3 for failure to open (which shouldn't happen).
11595
15f40952
PE
115962005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11597
67fd79c4
PE
11598 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11599 1 on syntax error; just let yyparse do its thing.
11600 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11601 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11602 (Exploding the Stack Size with Alloca):
11603 (Exploding the Stack Size with Malloc):
11604 Expect exit status 2, not 1, since the parser is supposed to blow
11605 its stack. Problem reported by twlevo@xs4all.nl.
11606
15f40952
PE
11607 * data/glr.c (yyparse): Don't assume that the initial calls
11608 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11609 Print a stack-overflow message and fail instead.
11610 Initialize the line-number information before creating the stack,
11611 so that the stack-overflow message can report line zero safely.
11612
f32c66b5
PE
116132005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11614
a22ff96f 11615 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
11616 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11617 (yyuserMerge): Provide a default case if b4_mergers is empty.
11618 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11619 * tests/glr-regression.at
11620 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 11621 Add casts to pacify C++ compilers.
1beb0b24
PE
11622 * tests/glr-regression.at (Improper merging of GLR delayed action
11623 sets): Declare yylex before using it.
f32c66b5 11624 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
11625 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11626 test for valgrind; valgrind is independent of g++.
11627 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11628 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11629 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11630 Use a destructor, so that we can expand the stack. Change
11631 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 11632
d741bd1b
PE
116332005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11634
11635 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11636 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11637
0410a6e0
PE
116382005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11639
11640 * PACKAGING: New file, suggested by Bruno Haible and taken from
11641 similar wording in gettext's PACKAGING file.
11642 * NEWS: Mention PACKAGING.
11643 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11644
f7ab6a50
PE
116452005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11646
baf785db 11647 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
11648 * bootstrap: Get runtime translations into runtime-po.
11649 Create runtime-po files automatically, if possible.
11650 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11651 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11652 does not infringe on the user's name space.
11653 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11654 * doc/bison.texinfo (Internationalization): Revamp the English
11655 and Texinfo syntax a bit, to try to make it clearer.
11656 (Bison Options, Option Cross Key): Mention --print-localedir.
11657 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11658 YYENABLE_NLS. Quote a bit more.
11659 * runtime-po/.cvsignore: New file.
11660 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11661 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11662 * runtime-po/quot.sed: Likewise.
11663 * runtime-po/boldquot.sed: Likewise.
11664 * runtime-po/en@quot.header: Likewise.
11665 * runtime-po/en@boldquot.header: Likewise.
11666 * runtime-po/insert-header.sin: Likewise.
11667 * runtime-po/remove-potcdate.sin: Likewise.
11668 * runtime-po/Makevars: Likewise.
11669 * runtime-po/LINGUAS: Likewise.
11670 * runtime-po/de.po: Likewise; we will rely on the translation project
11671 to maintain this, so "bootstrap" should get it.
0410a6e0 11672 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
11673 its value.
11674 * src/main.c (main): Bind the bison-runtime domain, too.
11675
116762005-07-12 Bruno Haible <bruno@clisp.org>
11677
11678 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11679 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11680 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11681 * runtime-po: New directory.
11682 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11683 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11684 * runtime-po/Rules-quot: New file, copied from po/.
11685 * runtime-po/quot.sed: Likewise.
11686 * runtime-po/boldquot.sed: Likewise.
11687 * runtime-po/en@quot.header: Likewise.
11688 * runtime-po/en@boldquot.header: Likewise.
11689 * runtime-po/insert-header.sin: Likewise.
11690 * runtime-po/remove-potcdate.sin: Likewise.
11691 * runtime-po/Makevars: New file.
11692 * runtime-po/POTFILES.in: New file.
11693 * runtime-po/LINGUAS: New file.
11694 * runtime-po/bison-runtime.pot: New file.
11695 * runtime-po/de.po: New file.
11696 * m4/bison.m4: New file.
11697 * Makefile.am (SUBDIRS): Add runtime-po.
11698 (aclocaldir, aclocal_DATA): New variables.
11699 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11700 Define aclocaldir.
11701 * src/getargs.c (usage): Document --print-localedir option.
11702 (PRINT_LOCALEDIR_OPTION): New enum item.
11703 (long_options): Add --print-localedir option.
11704 (getargs): Handle --print-localedir option.
11705 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11706 (Internationalization): New section.
11707
22dda0f0
AD
117082005-07-12 Akim Demaille <akim@epita.fr>
11709
11710 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11711 for consistency with the rest of the code.
11712 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11713 Add separators.
11714
82b248ad
AD
117152005-07-12 Akim Demaille <akim@epita.fr>
11716
11717 * src/parse-gram.y: Use %printer instead of YYPRINT.
11718
fa0e9314
AD
117192005-07-12 Akim Demaille <akim@epita.fr>
11720
867a3e00
AD
11721 * src/symtab.h, src/symtab.c (symbol_print): New.
11722 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11723 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11724
117252005-07-12 Akim Demaille <akim@epita.fr>
11726
11727 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
11728 b4_at_dollar and b4_dollar_dollar.
11729
e054b190
PE
117302005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11731
11732 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11733 and Pennello's paper.
11734
34160ec4
PE
117352005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11736
407d4a75
PE
11737 * data/yacc.c (yyparse): Undo previous patch. Instead,
11738 set yylsp[0] and yyvsp[0] only if the initial action
11739 sets yylloc and yylval, respectively.
11740
34160ec4
PE
11741 * data/yacc.c (yyparse): In the initial action, set
11742 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11743 This avoids the use of undefined variables if the initial
11744 action does not set yylloc and/or yylval.
11745
c3d5a4a7
PE
117462005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11747
b34d96c1
PE
11748 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11749 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11750 Remove from CVS. These files are automatically generated.
11751 * examples/extexi: Clarify that this file is now part of Bison,
11752 not GNU M4, and that it works with any POSIX-compatible Awk.
11753 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11754 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11755 so that we also get calc++-parser.yy. Geneate it.
11756 Use $(AWK), not gawk, since any conforming Awk will do.
11757 Put comment before action, since older 'make' can't handle comment
11758 in action.
11759 $(BUILT_SOURCES): List all built sources, not just some of them.
11760 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11761 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11762 $($(calc_sources_generated)): Remove unnecessary test for existence
11763 of target. (This had a shell syntax error anyway; a stray "x".)
11764 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11765 calc++-parser.yy.
11766 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11767
c3d5a4a7
PE
11768 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11769 implied by the other modules.
11770
828c373b
AD
117712005-07-06 Akim Demaille <akim@epita.fr>
11772
11773 Bind examples/calc++ to the package.
11774 * examples/calc++/Makefile: Remove, replaced by...
11775 * examples/calc++/Makefile.am: ... this new file.
11776 * examples/calc++/test: Remove input.
11777 * examples/calc++/compile: Remove.
11778 * examples/Makefile.am: New.
11779 * configure.ac, Makefile.am: Adjust.
11780 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11781
63cb01d6
PE
117822005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11783
fd2df2ed
PE
11784 * data/glr.c (yyFail): Drastically simplify; since the format argument
11785 never had any % directives, we can simply pass it to yyerror.
11786 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11787 be modified later, as that is the usual style in glr.c.
11788 Problems reported by Paul Hilfinger.
11789
63cb01d6
PE
11790 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11791 and size overflow errors.
11792 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11793 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11794 (YYSIZEMAX): New macro.
11795 (yystpcpy): New function, taken from yacc.c.
11796 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11797 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11798 so that we don't have to maintain their signatures.
11799 (yyFail): Check for buffer overflow, by using vsnprintf rather
11800 than vsprintf. Allocate a bigger buffer if possible.
11801 Report an error if buffer allocation fails.
11802 (yyStackOverflow): New function.
11803 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11804 the initialization was successful. It might fail if storage was
11805 exhausted.
11806 (yyexpandGLRStack): Add more checks for storage allocation failure.
11807 Use yyStackOverflow to report failures.
11808 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11809 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11810 Don't assume stack number fits in int.
11811 (yysplitStack): Check for storage allocation failure.
11812 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11813 can print diagnostics on storage allocation failure. All callers
11814 changed.
11815 (yyresolveValue): Use yybool for boolean.
11816 (yyreportSyntaxError): Check for size-calculation overflow.
11817 This code is taken from yacc.c.
11818 (yyparse): Check for storage allocation errors when allocating
11819 the initial stack.
11820
1c59e0a1
AD
118212005-07-05 Akim Demaille <akim@epita.fr>
11822
11823 Extract calc++ from the documentation.
11824 * doc/bison.texinfo (Calc++): Add the extraction marks.
11825 * examples/extexi: New, from the aborted GNU Programming 2E.
11826 Separate the different paragraph of a file with empty lines.
11827 * examples/Makefile: Use it to extract the whole calc++ example.
11828
8a0adb01
AD
118292005-06-24 Akim Demaille <akim@epita.fr>
11830
11831 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11832 class typedefs.
11833
12545799
AD
118342005-06-22 Akim Demaille <akim@epita.fr>
11835
11836 * doc/bison.texinfo (C++ Language Interface): First stab.
11837 (C++ Parsers): Remove.
11838
99be0235
AD
118392005-06-22 Akim Demaille <akim@epita.fr>
11840
11841 * data/lalr1.cc (yylex_): Honor %lex-param.
11842
0ffd4fd1
AD
118432005-06-22 Akim Demaille <akim@epita.fr>
11844
11845 Start a set of simple examples.
11846 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11847 * examples/calc++/calc++-driver.hh,
11848 * examples/calc++/calc++-parser.yy,
11849 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11850 * examples/calc++/compile, examples/calc++/test: New.
11851
0925ebb4
PE
118522005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11853
11854 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11855 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11856 which stems from the 2005-05-27 patch.
11857
43d3b664
PH
118582005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11859
11860 * data/glr.c: Modify treatment of unused parameters to permit use
11861 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11862
3062864d
PE
118632005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11864
11865 Fix infringement on user name space reported by Janos Zoltan Szabo.
11866 * data/yacc.c (yyparse): strlen -> yystrlen.
11867
989b5b8e
AD
118682005-05-30 Akim Demaille <akim@epita.fr>
11869
11870 * data/lalr1.cc (_): New.
11871 Translate the various messages.
11872
bedf57f5
PE
118732005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11874
11875 Fix infringement on user name space reported by Bruno Haible.
11876 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11877 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11878 the user's name space.
11879 (alloca): Include <stdlib.h> to get it, if it's not built in.
11880 (YYMALLOC, YYFREE): Define only if needed.
11881 (malloc, free): Declare, but only if needed, as this infringes on
11882 the user name space.
11883
4d1801f1
PE
118842005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11885
11886 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11887 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11888 with %d format.
11889 * lib/ebitset.c (min, max): Undef before defining.
11890 * lib/vbitset.c (min, max): Likewise.
11891 * lib/subpipe.c (create_subpipe): Save local variables in case
11892 vfork clobbers them.
11893
118942005-05-24 Bruno Haible <bruno@clisp.org>
11895
11896 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11897 error message syntax used by gcc-4.0.
11898
b94a9e1e
PE
118992005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11900
85ac3861
PE
11901 * README: Mention m4 1.4.3. Remove obsolete advice about
11902 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11903
b94a9e1e
PE
11904 * bootstrap: Remove workaround for problem I encountered with
11905 gettext 0.14.1; it seems to be fixed now.
11906
51c30d21
PE
119072005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11908
009ce67d
PE
11909 * NEWS: Version 2.0a.
11910
f2a97c62
PE
11911 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11912 the previous change.
11913
c8775f93
PE
11914 Various maintainer cleanups.
11915 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11916 conftest*, for benefit of CVS commands run at the same time as
11917 "configure". Add build-aux, since "bootstrap" now creates it and
11918 its subfiles.
11919 * Makefile.cfg (move_if_change): Remove.
11920 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11921 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11922 (po_repo, do-po-update, po-update, wget_files, get-targets):
11923 (config.guess-url_prefix, config.sub-url_prefix):
11924 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11925 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11926 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11927 Remove.
11928 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11929 this is now the recommended name.
11930 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11931 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11932 ylwrap. These files now go into build-aux.
11933 * config/move-if-change: Remove.
11934 * config/prev-version.txt: Bump from 1.75 to 2.0.
11935
3ea5f0ec
PE
11936 * bootstrap: Add stdio-safer, unistd-safer modules.
11937 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11938 we don't need it).
11939 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11940 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11941 * lib/subpipe.c: Include "unistd-safer.h".
11942 (create_subpipe): Make sure all the newly-created
11943 file descriptors are > 2, so that diagnostics don't
11944 get sent down them (which might cause Bison to hang, in theory).
11945 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11946 * src/files.c (xfopen): Use fopen_safer, not fopen.
11947
51c30d21
PE
11948 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11949 yesterday's yacc.c fix.
11950
cea1469d
PE
119512005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11952
3ea5f0ec
PE
11953 * data/glr.c, data/lalr1.cc: Update copyright date.
11954
cea1469d
PE
11955 Fix a destructor bug reported by Wolfgang Spraul in
11956 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11957 * data/yacc.c (yyabortlab): Don't call destructor, and
11958 don't set yychar to EMPTY.
11959 (yyoverflowlab): Don't call destructor.
11960 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11961 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11962 since we no longer output the message "discarding lookahead token
11963 end of input ()".
11964
5e6f62f2
PH
119652005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11966
11967 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11968 fix a small glitch in debugging output.
11969 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11970 after YY_SYMBOL_PRINT where needed.
11971
11972 (struct yyGLRState): Add some comments.
11973 (struct yySemanticOption): Add some comments.
11974 (union yyGLRStackItem): Add comment.
11975
11976 (yymergeOptionSets): Correct this to properly perform the union,
11977 avoiding infinite reported by Michael Rosien.
11978 Update comment.
11979
11980 * tests/glr-regression.at: Add test for GLR merging error reported
11981 by M. Rosien.
cea1469d 11982
0fb669f9
PE
119832005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11984
11985 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11986 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11987 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11988 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11989 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11990 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11991 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11992 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11993 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11994 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11995 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11996 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11997 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11998 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11999 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
12000 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
12001 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
12002 src/derives.h, src/files.c, src/files.h, src/getargs.c,
12003 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
12004 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
12005 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
12006 src/output.h, src/parse-gram.c, src/parse-gram.h,
12007 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
12008 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
12009 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
12010 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
12011 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
12012 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
12013 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
12014 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
12015 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
12016 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
12017 tests/reduce.at, tests/regression.at, tests/sets.at,
12018 tests/synclines.at, tests/testsuite.at, tests/torture.at:
12019 Update FSF postal mail address.
12020
51f4735e
PE
120212005-05-11 Paul Eggert <eggert@cs.ucla.edu>
12022
12023 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
12024 Problem reported by Ralf Menzel.
12025
80ce3401
PE
120262005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12027
12028 * tests/actions.at: Test that stack overflow invokes destructors.
12029 From Marcus Holland-Moritz.
12030 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12031 from here....
12032 (yyreturn): to here. That way, destructors are called properly
12033 even if the stack overflows, or the user calls YYACCEPT or
12034 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12035 (yyoverflowlab): Destroy the lookahead.
12036
120372005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12038
12039 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12040
72f000b0
PE
120412005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12042
12043 * NEWS: Bison-generated C parsers no longer quote literal strings
12044 associated with tokens.
12045 * src/output.c (prepare_symbols): Don't escape strings,
12046 since users don't want to see C escapes.
12047 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12048 in diagnostics.
c19683bb 12049 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
12050 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12051
1094323f
PE
120522005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12053
12054 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12055 the data size is known to be too small and we can't increase it.
12056 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12057
ca407bdf
PE
120582005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12059
12060 * src/parse-gram.y: Include quotearg.h.
12061 (string_as_id): Quote $1 before using it as a key, since the
12062 lexer no longer quotes it for us.
12063 (string_content): Don't strip quotes, since lexer no longer
12064 quotes it for us.
12065 * src/scan-gram.l: Include quotearg.h.
12066 ("\""): Omit quote.
12067 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12068 a key, since the rest of the lexer doesn't quote it.
12069 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12070 * tests/regression.at (Token definitions): Check for backslashes
12071 in token strings.
12072
12073 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12074 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12075 (yyparse): Revamp code to generate long syntax error message, to
12076 make it easier to translate, and to avoid problems with arithmetic
12077 overflow. Change "virtual memory" to "memory" in diagnostic, since
12078 we don't know whether the memory is virtual.
12079
1ce59070
PE
120802005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12081
12082 * NEWS: Bison-generated C parsers now use the _ macro to
12083 translate strings.
12084 * data/yacc.c (_) [!defined _]: New macro.
12085 All English strings wrapped inside this macro.
12086 * doc/bison.texinfo (Bison Parser): Document _.
12087 * po/POTFILES.in: Include src/parse-gram.c, since it now
12088 includes translateable strings that parse-gram.y doesn't.
12089
a749a695
PE
120902005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12091
12092 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12093 reverting the 2004-10-11 change to this function.
12094 (symbol_check_alias_consistency): Don't call symbol_type_set
12095 if the type name is already correct.
12096 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
12097
8fb1053b
PE
120982005-03-25 Paul Eggert <eggert@cs.ucla.edu>
12099
12100 * tests/regression.at (Token definitions): Don't use a token named
12101 c, as that generates a "#define c ..." that runs afoul of buggy
12102 stdlib.h that uses the identifier c as a member of struct
12103 drand48_data. Problem reported by Horst Wente.
12104
ff498c4a
PE
121052005-03-21 Paul Eggert <eggert@cs.ucla.edu>
12106
12107 * bootstrap: Change translation URL from
12108 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
12109 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
12110 redirection glitches. Problem reported by twlevo@xs4all.nl.
12111
65211d70
PE
121122005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12113
12114 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12115 after operands; POSIX says this isn't portable for the c99 command.
12116
9577fb1f
PE
121172005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12118
12119 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12120 immediately if a data overrun has occurred; this may help us track
12121 down what may be a spurious failure on MacOS.
12122
78b178f7
PE
121232005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12124
a2599d0f
PE
12125 Respond to problems reported by twlevo@xs4all.nl.
12126
12127 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12128
78b178f7
PE
12129 * src/vcg.h: Comment fix.
12130 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12131 (G_CMAX): Change to -1 instead of INT_MAX.
12132
12133 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 12134
7296e729
PE
121352005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12136
12137 * src/tables.c (state_number_to_vector_number): Put it inside an
12138 "#if 0", since it's not currently used. Problem reported by
12139 Roland McGrath.
12140
05ac60f3
PE
121412005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12142
12143 * src/output.c (escaped_output): Renamed from
12144 escaped_file_name_output, since we now use it for symbol tags as
12145 well. All uses changed.
12146 (symbol_destructors_output, symbol_printers_output):
12147 Escape symbol tags too.
12148 Problem reported by Matyas Forstner in
12149 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12150
12151 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12152 not needed.
12153 * src/output.c (user_actions_output, token_definitions_output,
12154 symbol_destructors_output, symbol_printers_output): Likewise.
12155 * src/reader.c (prologue_augment): Likewise.
12156 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12157
12158 * src/vcg.c (output_edge): Don't quote linestyle arg.
12159 Problem reported by twlevo@xs4all.nl.
12160
7eb453ac
PE
121612005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12162
12163 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12164 example, reported by Derek M Jones. Also, make the example even
12165 more outrageous, to better illustrate how bad the problem is.
12166
4c04c52a
PE
121672005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12168
12169 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12170 putsym. Typo reported by Sebastian Piping.
12171
a61e1620
PE
121722005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12173
12174 * doc/bison.texinfo (Language and Grammar): some -> same
12175 (Epilogue): int he -> in the
12176 Typos reported by Sebastian Piping via Justin Pence.
12177
9ec93868
PE
121782005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12179
12180 * tests/glr-regression.at (Improper handling of embedded actions
12181 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12182 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12183 with dollar signs in test names.
12184 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12185 for a similar reason.
12186
73ce7e7e
PE
121872005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12188
12189 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12190 wants to redefine G_VIEW.
12191
2e72b98e
PE
121922005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12193
12194 * src/vcg.c (get_view_str): Remove case for normal_view.
12195 Problem reported by twlevo@xs4all.nl.
12196
e0d634e5
PE
121972005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12198
ccf830a4
PE
12199 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12200 Problem reported by twlevo@xs4all.nl.
12201
e0d634e5
PE
12202 * doc/bison.texinfo: Change @dircategory from "GNU programming
12203 tools" to "Software development". Requested by Richard Stallman
12204 via Karl Berry.
12205
7bbc8cb0
PE
122062005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12207
12208 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12209 Problem reported by twlevo@xs4all.nl.
12210
08b770bc
PE
122112005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12212
12213 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12214 keyword; it's not needed with modern compilers, and it doesn't
12215 affect correctness with older compilers. Suggested by
12216 twlevo@xs4all.nl.
12217
95f22ad2
PE
122182005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12219
12220 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12221 gcc -Wswitch-default.
12222 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12223 * data/yacc.c (yyparse): Likewise.
12224
d229d15c
PE
122252005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12226
12227 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12228 already. Let config.h define any nonstandard values.
12229
ecadd90f
PE
122302005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12231
12232 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12233 for the benefit of slower hosts. Problem reported by
12234 Nelson H. F. Beebe.
12235
213744b5
PE
122362005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12237
12238 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12239 being defined and not used.
12240 * data/lalr1.cc (yyparse): Likewise.
12241 Use "if (false)" rather than "if (0)".
12242
249d3236
PE
122432005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12244
12245 * TODO: Mention that we should allow NUL bytes in tokens.
12246
987cc1fb
PE
122472005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12248
12249 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12250 Problem reported by Hans Aberg.
12251
08fe02d9
PE
122522005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12253
12254 * src/getargs.c (version): Happy new year; update overall
12255 program copyright date from 2004 to 2005.
12256
12257 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12258 Problem reported by Hans Aberg.
12259 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12260 (Output file names.): Add a test for the case when standard output
12261 is closed.
12262
010c0266
PE
122632004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12264
12265 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12266 to fix an oversight in the Bison 2.0 manual.
12267
da12206a
PE
122682004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12269
12270 * NEWS: Version 2.0. Reformat the existing news items since
12271 1.875, so that related items are grouped together.
3a4734aa 12272 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
12273 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12274
c935d934
PE
12275 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12276 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12277 otherwise, we're not testing alloca. Unfortunately there's no
12278 simple way to consult HAVE_ALLOCA here.
12279
da12206a
PE
12280 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12281 for yymsg, too.
12282
12283 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12284 hand. This avoids a warning about comparing int to size_t when
12285 GCC warnings are enabled.
12286
0a2c5137
PE
122872004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12288
d7e14fc0
PE
12289 * NEWS: Bison-generated parsers no longer default to using the
12290 alloca function (when available) to extend the parser stack, due
12291 to widespread problems in unchecked stack-overflow detection.
12292 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12293 responsibility to set it to a positive value. This lets the user
12294 specify a value that is not a preprocessor constant.
12295 * data/yacc.c (YYMAXDEPTH): Likewise.
12296 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12297 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12298 to be a compile-time constant. However, explain the constraints on it.
12299 Also, explain the constraints on YYINITDEPTH.
12300 (Table of Symbols): Explain that alloca is no longer the default.
12301 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12302 to 1.
12303
0a2c5137
PE
12304 * doc/bison.texinfo (Location Default Action): Mention that n must
12305 be zero when k is zero. Suggested by Frank Heckenbach.
12306
e019c247
AD
123072004-12-22 Akim Demaille <akim@epita.fr>
12308
12309 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12310 (parser::state_type, parser::semantic_type, parser::location_type):
12311 Private, not public.
12312 (parser::parse): Return ints, not bool.
12313 Returning a bool introduces a problem: 0 corresponds to false, and
12314 it seems weird to return false on success. Returning true changes
12315 the conventions for yyparse.
12316 Alternatively we could return void and send an exception.
12317 There is no clear consensus (yet?).
12318 (state_stack, semantic_stack, location_stack): Rename as...
12319 (state_stack_type, semantic_stack_type, location_stack_type): these.
12320 Private, not public.
12321 * tests/c++.at: New.
12322 * tests/testsuite.at, tests/Makefile.am: Adjust.
12323
72731bb7
AD
123242004-12-21 Akim Demaille <akim@epita.fr>
12325
12326 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12327
9a0d8bec
AD
123282004-12-21 Akim Demaille <akim@epita.fr>
12329
12330 Don't impose std::string for filenames.
12331
12332 * data/lalr1.cc (b4_filename_type): New.
12333 (position::filename): Use it.
12334 (parser.hh): Move the inclusion of stack.hh and location.hh below
12335 the user code, so that needed headers for the filename type can be
12336 included first.
72731bb7
AD
12337 Forward declare them before the user code.
12338 * tests/Makefile.am (check-local, installcheck-local): Pass
12339 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 12340
99880de5
AD
123412004-12-20 Akim Demaille <akim@epita.fr>
12342
12343 Use more STL like names: my_class instead of MyClass.
12344
12345 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12346 (SemanticStack, SemanticType, StateStack, StateType)
12347 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12348 (Parser::value): Rename as...
12349 (location_stack, location_type, rhs_number_type, semantic_stack)
12350 (semantic_type, state_stack, state_type, token_number_type, stack)
12351 (slice, traits, parser::yylloc, parser::yylval): these.
12352
12353 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12354
9bec482e
PE
123552004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12356
12357 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12358 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12359
f6fbd3da
PE
123602004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12361
12362 Remove uses of 'short int' and 'unsigned short int'. This raises
12363 some arbitrary limits. It uses more memory but nowadays that's
12364 not much of an issue.
12365
12366 This change does not affect the generated parsers; that's a different
12367 task, as some users will want to conserve memory there.
12368
12369 Ideally we should use size_t to represent all object counts, and
12370 something like ptrdiff_t to represent signed differences of object
12371 counts; but that will require more code-cleanup than I have the
12372 time to do right now.
12373
12374 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12375 Use size_t, not int or short int, to count objects.
12376 * src/closure.c (nritemset, closure): Likewise.
12377 * src/closure.h (nritemset, closure): Likewise.
12378 * src/nullable.c (nullable_compute): Likewise.
12379 * src/print.c (print_core): Likewise.
12380 * src/print_graph.c (print_core): Likewise.
12381 * src/state.c (state_compare, state_hash): Likewise.
12382 * src/state.h (struct state): Likewise.
12383 * src/tables.c (default_goto, goto_actions): Likewise.
12384
12385 * src/gram.h (rule_number, rule): Use int, not short int.
12386 * src/output.c (prepare_rules): Likewise.
12387 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12388 errs, reductions): Likewise.
12389 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12390 Likewise.
12391 * src/tables.c (vector_number, tally, action_number,
12392 ACTION_NUMBER_MINIMUM): Likewise.
12393 * src/output.c (muscle_insert_short_int_table): Remove.
12394
efeed023
AD
123952004-12-17 Akim Demaille <akim@epita.fr>
12396
12397 * data/lalr1.cc: Extensive Doxygenation.
12398 (error_): Rename as...
12399 (error): this, since it is visible to the user.
12400 Adjust callers.
12401 (Parser::message): Now an automatic variable from...
12402 (Parser::yyreport_syntax_error_): here.
12403 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12404 Parser::error.
12405 * tests/input.at: Escape $.
12406
bc82c5a5
PE
124072004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12408
12409 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12410 Parenthesize rhs to avoid obscure problems with mistakes like
12411 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12412 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12413 b4_rhs_location): Likewise.
12414 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12415 b4_rhs_location): Likewise.
12416
fd19f271
AD
124172004-12-16 Akim Demaille <akim@epita.fr>
12418
12419 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12420 yacc.c: be sure to stay within yycheck_.
12421 * tests/actions.at: Re-enable C++ tests.
12422
10454ea4
AD
124232004-12-16 Akim Demaille <akim@epita.fr>
12424
12425 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12426 real.
12427
c5b95ccf
AD
124282004-12-16 Akim Demaille <akim@epita.fr>
12429
12430 Use #define to handle the %name-prefix.
12431
12432 * data/glr.c, data/yacc.c: Comment changes.
12433 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12434 so that one can refer to yylex in the parser file, and have it
12435 renamed, as is the case with other skeletons.
12436
617a8f12
AD
124372004-12-16 Akim Demaille <akim@epita.fr>
12438
12439 Move lalr1.cc internals into yy*.
12440
12441 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12442 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12443 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12444 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12445 (empty_, final_, terror_, errcode_, ntokens_)
12446 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12447 (looka_, ilooka_, error_range_, nerrs_):
12448 Rename as...
12449 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12450 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12451 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12452 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12453 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12454 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12455 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12456 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12457 these.
12458
1e547e6e
PE
124592004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12460
12461 Fix some problems reported by twlevo at xs4all.
12462 * src/symtab.c (symbol_new): Report an error if the input grammar
12463 contains too many symbols. This is better than calling abort() later.
12464 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12465 (struct node, struct graph):
12466 Rename member expand to stretch. All uses changed.
12467 (struct graph): Remove member layoutalgorithm. All uses removed.
12468 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12469 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12470 All uses changed.
12471 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12472
735d6bd4
AD
124732004-12-15 Akim Demaille <akim@epita.fr>
12474
12475 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12476 Add more Doxygen comments.
12477 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12478 (report_syntax_error_, translate_): Rename as...
12479 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12480 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12481
2e1f5829
AD
124822004-12-15 Akim Demaille <akim@epita.fr>
12483
12484 * data/lalr1.cc (lex_): Rename as...
12485 (yylex_): this.
12486 Move the trace here.
12487 Take the %name-prefix into account.
12488 Reported by Alexandre Duret-Lutz.
12489
a3cb6248
AD
124902004-12-15 Akim Demaille <akim@epita.fr>
12491
12492 Simplify the C++ parser constructor.
12493
12494 * data/lalr1.cc (debug_): Rename as...
12495 (yydebug_): so that the parser's internals are always in the yy*
12496 pseudo namespace.
12497 Adjust uses.
12498 (b4_parse_param_decl): Remove the leading comma as it is now only
12499 called as unique argument list.
12500 (Parser::Parser): Remove the constructor accepting a location and
12501 an initial debugging level.
12502 Remove from the other ctor the argument for the debugging level.
12503 (debug_level_type, debug_level, set_debug_level): New.
12504
12505 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12506 constructor calls.
12507
07fed891
AD
125082004-12-15 Akim Demaille <akim@epita.fr>
12509
12510 Remove b4_root related material: failure experiment
a3cb6248 12511 (which goal was to allow to derive from a class).
07fed891
AD
12512
12513 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12514 definitions and uses.
12515
e603eaa5
PE
125162004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12517
12518 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12519 not 2, since it's not portable to subtract 1 from the start of an
12520 array. The new item 0 is never set or used. All uses changed.
12521
12522 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12523 the default definition of YYLLOC_DEFAULT. Problem reported
12524 by Frank Heckenbach.
12525
fafb007d
PE
125262004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12527
12528 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12529 the normal case and one for the error case. Just use the
12530 first one uniformly. Problem reported by Frank Heckenbach.
12531 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12532 use exactly the same macro in both places.
12533 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12534 so that the normal-case YYRHSLOC works for the error case too.
12535 All uses changed.
12536 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12537 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12538 * doc/bison.texinfo (Location Default Action): Don't claim that
12539 we have an array of locations. Use the same macro for both glr
12540 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12541 the index is 0.
12542
48814dcd
PE
125432004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12544
a4e1a53b
PE
12545 * HACKING: Update email addresses to send announcements to.
12546
48814dcd
PE
12547 * configure.ac (AC_INIT): Bump version to 1.875f.
12548
337116ba
PE
125492004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12550
12551 * NEWS: Version 1.875e.
12552 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12553
12554 * src/scan-skel.l: Include "complain.h", for "fatal".
12555
12556 * src/relation.h (relation_print, relation_digraph):
12557 Relation sizes are of type relation_node, not size_t (this is
12558 merely a doc fix, since the two types are equivalent).
12559 (relation_transpose): Relation sizes are of type relation_node,
12560 not int.
12561 * src/relation.c: Likewise.
12562 (top, infinity): Now of type relation_node, not int.
12563 (traverse, relation_transpose): Use relation_node, not int.
12564
12565 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12566 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12567 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12568
12569 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 12570 specifying whether the test should be skipped. Use it tp
337116ba 12571 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 12572 fail on some hosts, and should be skipped.
337116ba 12573
da2a7671
PE
125742004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12575
12576 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12577 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12578 unless otherwise specified below.
12579
12580 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12581 to allocate kernel_base, kernel_items, kernel_size, since
12582 they needn't be initialized to 0.
12583 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12584 * src/closure.c (new_closure): Likewise, for itemset.
12585 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12586 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12587 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12588 (build_relations): Likewise for edge, states1, includes.
12589 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12590 * src/reader.c (packgram): Likewise, for ritem, rules.
12591 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12592 * src/relation.c (relation_digraph): Likewise for VERTICES.
12593 (relation_transpose): Likewise for new_R, end_R.
12594 * src/symtab.c (symbols_token_translations_init): Likewise for
12595 token_translations.
12596 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12597 (token_actions): Likewise for yydefact, actrow, conflrow,
12598 conflict_list.
12599 (save_column): Likewise for froms[symno], tos[symno].
12600 (goto_actions): Likewise for state_count.
12601 (pack_table): Likewise for base, pos, check.
12602 (tables_generate): Likewise for width.
12603
12604 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12605 for initial core. Just have a separate core, so we needn't worry
12606 about whether kernel_size and kernel_base are initialized.
12607
12608 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12609 kernel_size, kernel_items): Remove unnecessary initialization.
12610 * src/conflicts.c (conflicts): Likewise.
12611 * src/derives.c (derives): Likewise.
12612 * src/muscle_tablc (muscle_insert): Likewise.
12613 * src/relation.c (relation_digraph): Likewise.
12614 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12615 conflrow, conflict_table, conflict_list, table, check):
12616 Likewise.
12617
12618 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12619 This is because all callers pass unsigned int.
12620 * src/closure.h (new_closure): Likewise.
12621
12622 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12623 (build_relations): Initialize includes[i] in all cases.
12624 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12625 and rules[ruleno].precsym. Initialize members in order.
12626 * src/relation.c (relation_transpose): Always initialize new_R[i]
12627 and end_R[i].
12628 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12629
12630 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12631 conflict_list[0] was always 0, but now it isn't initialized.
12632
12633 * src/table.c (table_grow): When conflict_table grew, the grown
12634 area wasn't cleared. Fix this.
12635
12636 * lib/.cvsignore: Add strdup.c, strdup.h.
12637 * m4/.cvsignore: Add strdup.m4.
12638
00baeeac
PE
126392004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12640
12641 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12642 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12643 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12644 ngotos + 1 without checking for overflow.
12645 (build_relations): Use END_NODE, not -1, to denote end of edges.
12646 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12647 build_relations): Use goto_number, not int, for goto numbers.
12648 * src/tables.c (save_column, default_goto): Likewise.
12649
be3d9d42
AD
126502004-11-23 Akim Demaille <akim@epita.fr>
12651
12652 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12653 of #defining from yystype.
12654 Don't typedef yystype, C++ does not need it.
12655 This lets it possible to forward declare it as union.
12656
78e526d5
PE
126572004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12658
12659 * bootstrap (gnulib_modules): Add extensions.
12660 Problem reported by Jim Meyering.
12661
afbb696d
PE
126622004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12663
12664 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12665 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12666 src/system.h, src/tables.c: XFREE -> free, to accommodate
12667 recent change to gnulib xalloc.h.
78e526d5 12668 Problem reported by Jim Meyering.
afbb696d 12669
c1f8f16a
AD
126702004-11-17 Akim Demaille <akim@epita.fr>
12671
12672 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12673
db7e5eb5 126742004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
12675 Alexandre Duret-Lutz <adl@gnu.org>
12676
12677 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12678 changes.
12679 (YYCDEBUG): Adjust.
12680 Use it instead of cdebug_.
12681 (Parser::debug_stream, Parser::set_debug_stream): New.
12682 (Parser::symprint_): Define cdebug_ for temporary backward
12683 compatibility.
12684 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12685 debug_stream ().
12686
68e11668
AD
126872004-11-17 Akim Demaille <akim@epita.fr>
12688
12689 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12690 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12691 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12692 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12693
97cbc73e
PE
126942004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12695
12696 * data/glr.c (yyloc_default): Remove; not used.
12697 Problem reported by Frank Heckenbach.
12698
e342c3be
AD
126992004-10-25 Akim Demaille <akim@epita.fr>
12700
12701 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12702 Introduce another definition to address simple location arrays.
12703 (yyGLRStack): New member: yyerror_range.
12704 (yyrecoverSyntaxError, yyparse): Update it.
12705 (yyrecoverSyntaxError): Use it when shifting the error token to
12706 have an accurate range, equivalent to the one computed by both
12707 yacc.c and lalr1.cc.
12708 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12709 that column numbers start at column 0, as per GNU Coding
12710 Standards, the others tests, and the doc.
12711 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12712 Adjust to the above change (first column is 0).
12713 And adjust the location of the "<error>", now covering the whole
12714 line.
12715
93602feb 127162004-10-22 Akim Demaille <akim@epita.fr>
04098407 12717 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
12718
12719 Remove some arbitrary limits on goto numbers and relations.
12720 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12721 initial values, since they're never used.
12722 (set_goto_map): ngotos is now unsigned, so test for overflow
12723 by seeing whether it wraps around to zero.
12724 * src/lalr.h (goto_number): Now size_t, not short int.
12725 (GOTO_NUMBER_MAXIMUM): Remove.
12726 * src/relation.c (relation_print, traverse, relation_transpose):
12727 Check for END_NODE rather than looking at sign.
12728 * src/relation.h (END_NODE): New macro.
12729 (relation_node): Now size_t, not short int.
12730
dba08b04
PE
127312004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12732
12733 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12734 keyword, not an identifier. Problem reported by Baron Schwartz in
12735 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12736
df09ef2e
AD
127372004-10-11 Akim Demaille <akim@epita.fr>
12738
12739 * src/symtab.c (symbol_check_alias_consistency): Also check
12740 type names, destructors, and printers.
12741 Reported by Alexandre Duret-Lutz.
12742 Recode the handling of associativity and precedence in terms
12743 of symbol_precedence_set.
12744 Accept no redeclaration at all, not even equal to the previous
12745 value.
12746 (redeclaration): New.
12747 Use it to factor redeclaration complaints.
12748 (symbol_make_alias): Don't set the type of the alias, let
12749 symbol_check_alias_consistency do it as for other features.
12750 * src/symtab.h (symbol): Add new member prec_location, and
12751 type_location.
12752 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12753 * tests/input.at (Incompatible Aliases): New.
12754
146bc99d
PE
127552004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12756
12757 .cvsignore fixes to accommodate gnulib changes,
12758 and the practice of naming build directories "_build".
12759 * .cvsignore: Add "_*". Sort.
12760 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12761 * m4/.cvsignore: Add "*_gl.m4".
12762
e503aa60
AD
127632004-10-06 Akim Demaille <akim@epita.fr>
12764
12765 * src/parse-gram.y (add_param): Fix the truncation of trailing
12766 spaces.
12767
b4a20338
AD
127682004-10-05 Akim Demaille <akim@epita.fr>
12769
12770 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12771 whether the reducion was empty or not. This leaves room to
12772 improve the use of YYLLOC_DEFAULT in such a case.
12773 lalr1.cc is still experimental, so changing this is acceptable.
12774 And finally, there are probably not many users who changed the
12775 handling of locations in GLR, so changing is admissible too.
12776
12777 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12778 empty reduction, set @$ to an empty location ending the previously
12779 stacked symbol.
12780 Adjust uses to make sure the code is triggered on empty
12781 reductions.
12782 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12783 expected output: empty reductions have empty locations.
12784
f85a5e6f
AD
127852004-09-29 Akim Demaille <akim@epita.fr>
12786
12787 * data/lalr1.cc: Move towards a more standard C++ coding style
12788 for templates: Class < T > -> Class<T>.
12789
b203fc2c
AD
127902004-09-29 Akim Demaille <akim@epita.fr>
12791
12792 * data/lalr1.cc: Reinstall the former ctor, for sake of
12793 compatibility, but warn it will be removed.
12794 Move towards a more standard C++ coding style (i.e., type *var ->
12795 type* var).
12796
5b7e1e73
PE
127972004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12798
3fee967f
PE
12799 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12800 since it's less likely to work if NULs are involved in the future.
5b7e1e73 12801
0dcca5c2
AD
128022004-09-27 Akim Demaille <akim@epita.fr>
12803
12804 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12805
6dde1c82
AD
128062004-09-27 Akim Demaille <akim@epita.fr>
12807
12808 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 12809 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
12810 and argument names.
12811 (b4_cc_constructor_call): Likewise.
12812
b233d555
AD
128132004-09-24 Akim Demaille <akim@epita.fr>
12814
12815 * src/parse-gram.y (add_param): Strip the leading and trailing
12816 blanks from a formal argument declaration.
12817 (YY_LOCATION_PRINT): New.
12818
619404e3
AD
128192004-09-24 Akim Demaille <akim@epita.fr>
12820
12821 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12822 after the location.
12823
dd8d9022
AD
128242004-09-24 Akim Demaille <akim@epita.fr>
12825
12826 * doc/bison.texinfo (Table of Symbols): Sort.
12827
0092f063
AD
128282004-09-21 Akim Demaille <akim@epita.fr>
12829
12830 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12831 the useless parentheses.
12832 Suggested by Paul Eggert.
12833
451364ed
AD
128342004-09-20 Akim Demaille <akim@epita.fr>
12835
12836 Let the initial-action act on the look-ahead, and use it for the
12837 "initial push" (corresponding to an hypothetical beginning-of-file).
12838 And let lalr1.cc honor %initial-action.
12839
12840 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12841 example.
12842 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12843 (Parser::Parser): Remove the ctor that used to initialize it.
12844 (Parser::parse): Like in the other skeletons, issue the "starting
12845 parse" message before any action.
12846 Honor %initial-action.
12847 Initialize the stacks with the lookahead.
12848 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12849 look-ahead.
12850 Push them in the stacks.
12851 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12852
18d192f0
AD
128532004-09-20 Akim Demaille <akim@epita.fr>
12854
12855 * doc/bison.texinfo (Initial Action Decl): New.
12856
b8458aa5
AD
128572004-09-20 Akim Demaille <akim@epita.fr>
12858
12859 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12860 clearer criterion to define it.
12861 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12862 When reducing on an empty RHS, use the latest stacked location as
12863 location.
12864 yylloc is not always available.
12865 * data/glr.c: Likewise.
12866 Also, honor initial-actions.
12867
3fc16193
AD
128682004-09-20 Akim Demaille <akim@epita.fr>
12869
12870 * data/yacc.c (YY_LOCATION_PRINT): New.
12871 Define when we know YYLTYPE's structure, i.e., when the default
12872 YYLLOC_DEFAULT is used.
12873 * data/c.m4 (b4_yysymprint_generate): Use it.
12874 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12875 value of the result.
12876 (error_start_): Replace with...
12877 (error_range_): this location array.
12878 This allows to replace code relying on the implementation of
12879 locations by portable code.
12880 * data/yacc.c (yylerrsp): Replace with...
12881 (yyerror_range): this.
12882 Every time a token is popped, update yyerror_range[0], to have an
12883 accurate location for the error token.
12884 * data/glr.c (YY_LOCATION_PRINT): New.
12885 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12886 deference a pointer.
12887 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12888 report the location in %printers.
12889
12890 * src/scan-skel.l: Instead of abort, report error messages to ease
12891 understanding skeleton scanning failures.
12892
ecfe33e7
AD
128932004-09-16 Akim Demaille <akim@epita.fr>
12894
12895 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12896 (iterator, const_iterator): these, to be more in the C++ spirit.
12897 Also, return reverse iterators so that when displaying the stack
12898 we display its bottom first.
12899 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12900 from yacc.c.
12901 We should probably use vector here though.
12902
1576d44d
AD
129032004-09-16 Akim Demaille <akim@epita.fr>
12904
12905 Have more complete shift traces.
12906
12907 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12908 to report Shifts instead of ad hoc YYDPRINTF invocations,
12909 including for the error token.
12910 * data/lalr1.cc (symprint_): Output the location.
12911 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12912 output the location within the %printer.
12913 Activate GLR tests, at least to make sure they compile properly.
12914 They still don't pass though.
12915 * tests/calc.at: Adjust expect verbose output, since now "Entering
12916 state..." is on a different line than the "Shifting" message.
12917
9c66f418
AD
129182004-09-08 Akim Demaille <akim@epita.fr>
12919
12920 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12921 Bison directive from the Bison file to the invocation of this
12922 macro, so that these directives are passed to
12923 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12924 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12925 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12926 the extra Bison directives instead of the whole series.
12927 Change the grammar so that there are recoverable errors, and
12928 unrecoverable errors. Now we can have the parser give up before
12929 consuming the whole input. As a result we now can observe that
12930 the lookahead is freed when needed.
12931 Change the parser source to parse argv[1] instead of a hard coded
12932 string.
12933 Simplify yylex, and give a value and location to EOF.
12934 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12935 passed directives already coded in the file.
12936 Add some tests to check the location of "error".
12937 For some tests, the C++ parser is correct, and not yacc.c.
12938 For other tests, they provide different, but unsatisfying, values,
12939 so keep the C++ value so that at least one parser is "correct"
12940 according to the test suite.
12941 (Actions after errors): Remove, this is subsumed by the
12942 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12943
52d5733f
AD
129442004-09-06 Akim Demaille <akim@epita.fr>
12945
12946 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 12947 (Parser::pop): New.
52d5733f
AD
12948 Use it.
12949
a0e68930
AD
129502004-09-06 Akim Demaille <akim@epita.fr>
12951
12952 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12953 argument, an informative message.
12954 Call YY_SYMBOL_PRINT.
12955 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12956 * data/lalr1.cc (destruct_): Likewise.
12957 In addition, no longer depend on b4_yysymprint_generate and
12958 b4_yydestruct_generate to generate these functions, do it "by
12959 hand".
12960
e757bb10
AD
129612004-09-03 Akim Demaille <akim@epita.fr>
12962
12963 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12964 invoked, yydestruct the lookahead.
12965 * tests/calc.at (Calculator $1): Update the expected lengths of
12966 traces: there is an added line for the discarded lookahead.
12967 * doc/bison.texinfo (Destructor Decl): Some rewording.
12968 Define "discarded" symbols.
12969
0fe1f06d
AD
129702004-09-02 Akim Demaille <akim@epita.fr>
12971
12972 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12973
284acc8b
AD
129742004-09-02 Akim Demaille <akim@epita.fr>
12975
12976 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12977 (YYDSYMPRINTF): Rename as...
12978 (YY_SYMBOL_PRINT): this.
12979 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12980 two.
12981 Use it instead of direct symprint_ calls.
12982 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12983 one.
12984
a5eb1ed2
AD
129852004-09-02 Akim Demaille <akim@epita.fr>
12986
b7c72fe1
AD
12987 * data/lalr1.cc (b4_yysymprint_generate): New.
12988 (symprint_): New member function, defined when YYDEBUG.
12989 Use it consistently instead of token/nterm debugging output by
12990 hand.
a5eb1ed2
AD
12991 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12992 %printer calls to use cdebug_ when using lalr1.cc.
12993
417141dd
AD
129942004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12995
12996 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12997 with #ifdef YYDEBUG.
12998
2fa09258
AD
129992004-08-26 Akim Demaille <akim@epita.fr>
13000
13001 * doc/bison.texinfo (Implementing Loops): Rename as...
13002 (Implementing Gotos/Loops): this.
13003
9378b508
PE
130042004-08-13 Paul Eggert <eggert@cs.ucla.edu>
13005
13006 Adjust to latest gnulib.
13007 * bootstrap (gnulib_modules): Add xalloc-die.
13008 Set LC_ALL=C so that file names sort consistently.
13009 Prefer the gnulib copies of gettext.m4, glibc21.m4,
13010 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
13011 uintmax_t.m4, ulonglong.m4.
13012 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
13013 po.m4 since we are now using _gl.m4 instead.
13014
87a8ad5c
PE
130152004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
13016
13017 * src/scan-action.l: Remove. Scanning of semantic actions is
13018 handled in scan-gram.l.
13019
dca81a78
PE
130202004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
13021
13022 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
13023
13024 * src/location.h (struct): The file member is a uniqstr.
13025 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13026
c9cbf7c5
PE
130272004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13028
13029 Fix bug with non-%union parsers that have printers or destructors,
13030 which led to a Bison core dump. Reported by Peter Fales in
13031 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 13032
c9cbf7c5
PE
13033 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13034 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13035 not to our own type.
13036 * src/output.c (symbol_destructors_output, symbol_printers_output):
13037 Don't assume %union.
13038 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13039 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13040 UNION-FLAG. All callers changed.
13041 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13042 Use type char, not unsigned int, when declaring an array of char;
13043 this lets us remove a cast.
13044 (Printers and Destructors): Add non-%union test cases.
13045
fa7e68c3
PE
130462004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13047
13048 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13049 GLR writeups. E.g., avoid frenchspacing and the future tense,
13050 change "lookahead" to "look-ahead", and change "wrt" to "with
13051 respect to".
2fa09258 13052
fa7e68c3
PE
130532004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13054
13055 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13056 New sections, split off from the GLR Parsers section. Put the new
13057 Simple GLR Parser near the start of the GLR section, for clarity.
13058 Rewrite connective text.
13059
99a9344e
PE
130602004-06-21 Frank Heckenbach <frank@g-n-u.de>
13061
13062 * doc/bison.texinfo (Simple GLR Parsers): New section.
13063
8dd162d3
PE
130642004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13065
13066 * NEWS, TODO, doc/bison.texinfo:
13067 Use "look-ahead" instead of "lookahead", to be consistent.
13068 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13069 while we're fixing "look-ahead".
13070 * src/conflicts.c (shift_set): Renamed from shiftset.
13071 (look_ahead_set): Renamed from lookaheadset.
13072 * src/print.c: Likewise.
13073 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13074 name for "lookahead".
13075 (report_types, usage): Likewise.
13076 * src/getargs.h (report_look_ahead_tokens): Renamed from
13077 report_lookaheads.
13078 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13079 compute_lookaheads.
13080 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13081 (look_ahead_tokens_print): Renamed from lookaheads_print.
13082 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13083 state_rule_lookaheads_print.
13084 * src/state.h: Likewise.
13085 (reductions.look_ahead_tokens): Renamed from lookaheads.
13086 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13087 AT_DATA_LOOKAHEADS_GRAMMAR.
13088
57a90331
PE
130892004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13090
13091 * README: Update location of patched M4 distribution.
13092
8ed3234a
PE
130932004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13094
13095 Don't assume the C++ compiler takes the same arguments as the C compiler
13096 (trivial change).
13097 * configure.ac (O0CXXFLAGS): New var.
13098 * tests/atlocal.in (CXXFLAGS): Use it.
13099
07971983
PE
131002004-05-29 Paul Eggert <eggert@cs.ucla.edu>
13101
13102 Fix some "make check" problems with C++ reported by
13103 Albert Chin-A-Young for Tru64 C++ in this thread:
13104 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
13105
13106 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
13107 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13108 Output to a .cc file for C++, not to a .c file.
13109 * tests/calc.at (AT_CHECK_CALC): Likewise.
13110 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13111 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13112
29058652
PE
131132004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13114
13115 * tests/calc.at, tests/actions.at: Workaround for SGI
13116 C++ compiler. (trivial change)
13117
62cb8a99
PE
131182004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13119
fd418816
PE
13120 Spent a few hours checking out which prerequisite versions the
13121 current sources actually require. I went all the way back to
13122 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13123 a seemingly endless set of combinations of versions more recent
13124 than that. The bottom line is that the current sources require
13125 fairly recent versions of the build tools, and it'll be some work
13126 to change this.
13127 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13128 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13129 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13130 Add comments explaining why those particular versions are
13131 currently needed.
2fa09258 13132
62cb8a99
PE
13133 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13134 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 13135 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
13136
13137 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13138 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13139
caa52c10
PE
131402004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13141
13142 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13143 0.11.5. Suggested by Bruno Haible.
13144 * bootstrap: Remove gettext version checking.
13145
13146 * doc/bison.texinfo (Decl Summary): Also mention that %union
13147 can depend on prerequisite types. Problem reported by Tim
13148 Van Holder.
13149
4bfd5e4e
PE
131502004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13151
2cef3017
PE
13152 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13153 * README-alpha: Don't tell people not to package this.
13154
b9c85d5c
PE
13155 * bootstrap: Don't assume $(...) works; use `...` instead.
13156 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13157 gettext better.
13158
4bfd5e4e
PE
13159 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13160 put into the -d output file, and mention what to do if YYSTYPE is
13161 defined as a macro.
13162
6a36ff94
PE
131632004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13164
6712933e
PE
13165 Undo change made earlier today: it caused autopoint to not bring
13166 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13167 autopoint's.
13168
13169 * bootstrap: Check that gettext version matches what's in
13170 configure.ac. Warn users to ignore robots.txt ERROR 404.
13171 * bootstrap: Undo today's earlier change (logged below).
13172 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 13173
6a36ff94
PE
13174 The gettext version checking is causing more trouble than it's
13175 curing; remove it. Problem reported by Paul Hilfinger.
13176
13177 * bootstrap: Issue a warning that one can expect a message
13178 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13179 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13180
209ea708
PE
131812004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13182
13183 Ensure that the C++ compiler used for testing actually works on a
13184 simple test program; if not, skip the C++-related tests. Problem
13185 reported by Vin Shelton in:
161a71f3 13186 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
13187
13188 * m4/cxx.m4: New file.
13189 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13190 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13191 * tests/local.at (AT_COMPILE_CXX): Use it.
13192
41ca2549
PE
131932004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13194
383e69dc
PE
13195 * data/glr.c (yylloc): Output this macro even if locations are not
13196 being generated, as the GLR parser needs it even in that case.
13197 Problem reported by Troy A. Johnson
13198 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13199
41ca2549
PE
13200 * configure.ac (AC_INIT): Update to 1.875e.
13201
e476c87d
PE
132022004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13203
13204 * NEWS: Version 1.875d.
13205 * configure.ac (AC_INIT): Likewise.
13206 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13207
13208 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13209 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13210 lalr1.cc runs afoul of the first, and the last two are no longer
13211 supported by GCC 3.4.0.
13212 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13213 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13214
233a88ad
PE
132152004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13216
13217 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13218 unsigned int, for compatibility with latest gnulib hash module.
13219 * src/state.c (state_hash, state_hasher): Likewise.
13220 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13221 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 13222
12ffdd28
PE
132232004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13224
13225 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13226
13227 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13228 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13229 character and string literals.
13230 (unexpected_end): New function.
13231 (unexpected_eof): Use it.
13232 (unexpected_newline): New function.
13233 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13234 actions.
e476c87d 13235
12ffdd28
PE
13236 * NEWS: Document %expect-rr.
13237
13238 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13239 Fix typo by replacing $1 with $option.
13240 Remove more 'intl'-related files.
9668e2be 13241 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
13242
13243 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13244 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13245 strtoul.c.
13246 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13247 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13248 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13249 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13250 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13251 * src/.cvsignore: Add *.output.
13252
13253 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13254 gets copied to the output file.
e476c87d 13255
1f65350a
PE
132562004-04-28 Paul Eggert <eggert@twinsun.com>
13257
13258 Get files from the gnulib and po repositories, instead of relying
13259 on them being in our CVS. Upgrade to latest versions of gnulib
13260 and Automake.
13261
13262 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13263 * bootstrap: Bootstrap from gnulib and po repositories.
13264 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13265 * README-cvs: Document these changes. Remove version numbers from
13266 mentions of build tools, since they change so often. Mention Flex.
13267
13268 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13269 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
13270 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13271 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 13272 does this for us.
12ffdd28
PE
13273 (AC_ISC_POSIX): Remove; we no longer support this
13274 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
13275 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13276 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13277 Do not check for C89 headers, except for locale.h which is used
13278 by the Yacc library and must port to K&R hosts.
13279 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13280 Do not check for C89 functions, except for setlocale which is
13281 used by the Yacc library.
13282 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13283 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13284 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13285 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13286 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13287 AM_GNU_GETTEXT): Remove; now done by:
13288 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13289 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13290 for us.
13291
13292 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13293 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13294 Define to empty, as gnulib.mk will do the rest for us.
13295 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13296 for us.
13297 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13298 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13299
13300 * src/files.c: Include gnulib's xstrndup.h.
13301
13302 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13303 (REALLOC): Use xnrealloc, for likewise.
13304 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13305 (strnlen, memrchr): Remove decls; functions no longer used.
13306 Include <stpcpy.h>.
13307
13308 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13309 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13310 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13311 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13312 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13313 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13314 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13315 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13316 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13317 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13318 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13319 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13320 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13321 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13322 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13323 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13324 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13325 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13326 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13327 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13328 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13329 Remove, as these files are now generated automatically
13330 by bootstrap or automake.
13331
13332 * po/ChangeLog: Remove: all but one entry was a duplicate
13333 of this file, and I moved that 2000-11-02 entry here.
13334
13335 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13336 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13337 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13338 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13339 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13340 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13341 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13342 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13343 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13344 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13345 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13346 xstrndup.h.
13347 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13348 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13349 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13350 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13351 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13352 * src/.cvsignore: Remove *_.c.
13353
13354
13355 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13356 support it. (The latest stable gzip doesn't.)
13357
133582004-04-27 Paul Eggert <eggert@twinsun.com>
13359
13360 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13361 case, as stos_ is now used by destructors due to the 2004-02-09
13362 change.
13363
13364 Remove more K&R C support.
13365 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13366 * lib/subpipe.c (errno): Remove decl.
13367 Include <stdlib.h> unconditionally.
13368 (EXIT_FAILURE): Remove macro.
13369 * src/complain.c (vfprintf, strerror): Remove.
13370 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13371 unconditionally.
13372 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13373 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13374 (strchr, strspn, memchr): Remove decls.
13375 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13376 unconditionally. Do not declare perror.
13377 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13378 unconditionally.
13379
13380 * src/complain.c (_): Remove useless defn, as system.h defines this.
13381
13382 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13383 with latest obstack.h.
13384 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13385 to procedure types, as obstack.h now does that for us.
13386 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13387
13388 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13389 so that this include file can stand alone.
13390 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13391 does this now. Include subpipe.h first after config.h, to
13392 test whether it can stand alone.
13393
13394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13395 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13396 unused declaration.
13397
13398 * tests/synclines.at (%union synch line): Put a dummy member in
13399 the union, because empty unions aren't allowed in C. Caught
13400 by GCC 3.4.0.
13401
4f16766c
PE
134022004-04-13 Jim Meyering <jim@meyering.net>
13403
13404 * src/conflicts.c (conflicts_print): Correct format string typo:
13405 use `%%' to produce literal `%'. (trivial change)
13406
779e7ceb
PE
134072004-03-30 Paul Eggert <eggert@twinsun.com>
13408
13409 * src/getargs.c (version): Update copyright year to 2004.
13410
13411 * data/c.m4 (b4_int_type): Use 'short int' rather than
13412 'short', and similarly for 'long', 'unsigned', etc.
13413 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13414 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13415 yy_yypstack, yydumpstack): Likewise.
13416 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13417 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13418 Likewise.
13419 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13420 yy_stack_print, yyparse): Likewise.
13421 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13422 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13423 * lib/bitset.c (bitset_print): Likewise.
13424 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13425 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13426 * lib/bitsetv.c (bitsetv_dump): Likewise.
13427 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13428 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13429 Likewise.
13430 * src/LR0.c (allocate_itemsets): Likewise.
13431 * src/gram.h (rule_number, rule): Likewise.
13432 * src/lalr.h (goto_number): Likewise.
13433 * src/nullable.c (nullable_compute): Likewise.
13434 * src/output.c (prepare_rules): Likewise.
13435 * src/relation.c (relation_print, relation_digraph): Likewise.
13436 * src/relation.h (relation_node): Likewise.
13437 * src/state.h (state_number, transitions, errs, reductions,
13438 struct state): Likewise.
13439 * src/symtab.h (symbol_number, struct symbol): Likewise.
13440 * src/tables.c (vector_number, tally, action_number,
13441 default_goto, goto_actions): Likewise.
13442 * tests/existing.at (GNU Cim Grammar): Likewise.
13443 * tests/regression.at (Web2c Actions): Likewise.
13444
13445 * src/output.c (muscle_insert_short_int_table): Renamed from
13446 muscle_insert_short_table. All uses changed.
13447
d6328241
PH
134482004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13449
13450 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13451 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13452 Add %expect-rr rule.
4f16766c 13453
d6328241
PH
13454 * src/scan-gram.l: Recognize %expect-rr.
13455
4f16766c 13456 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 13457 expected_conflicts.
4f16766c 13458 (expected_rr_conflicts): Declare.
d6328241
PH
13459
13460 * src/conflicts.c (expected_sr_conflicts): Rename from
13461 expected_conflicts.
13462 (expected_rr_conflicts): Define.
13463 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13464 for GLR parsers.
13465 Use expected_sr_conflicts in place of expected_conflicts.
13466 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 13467
d6328241 13468 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 13469
1452af69
PE
134702004-03-08 Paul Eggert <eggert@gnu.org>
13471
13472 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 13473 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
13474
13475 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13476 in lalr1.cc.
13477 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13478 * src/scan-gram.l (scan_integer): New function.
13479 ({int}): Use it.
13480 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13481 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13482 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13483 Say "long int", not "long", for uniformity with GNU style.
13484
006d217d
PE
134852004-02-25 Paul Eggert <eggert@twinsun.com>
13486
13487 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13488 compilers. This fixes a problem with Intel's C++ compiler being
13489 chatty, reported by Guido Trentalancia in
161a71f3 13490 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 13491
c2729758
ADL
134922004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13493
13494 Support %destructor and merge error locations in lalr1.cc.
13495
13496 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13497 (Parser::stos_): Define unconditionally.
13498 (Parser::destruct_): New method. Generate its body with
13499 b4_yydestruct_generate.
13500 (Parser::error_start_): New attribute.
13501 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13502 token which are discarded.
13503 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13504 error_start_ when erroneous token are discarded.
13505 (Parser::parse) <yyerrlab1>: Compute the location of the error
13506 token so that it covers all the discarded tokens.
13507 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13508 it can be called with `%skeleton "lalr1.cc"', and do that.
13509
dd0e0635
PE
135102004-02-02 Paul Eggert <eggert@twinsun.com>
13511
13512 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13513 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13514 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13515 There's no need to mention top_builddir since Automake does that
13516 for us.
13517 (INCLUDES): Remove, as Automake says it's obsolescent.
13518 Contents migrated into AM_CPPFLAGS as described above.
13519 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13520
135212004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13522
13523 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13524 (yyreportSyntaxError): Handle case where lookahead token is
13525 YYEMPTY.
13526
be16239b
PH
135272004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13528
13529 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13530 resulting parsers are compilable with C++.
13531
5fa90832
PE
135322003-12-23 Paul Eggert <eggert@twinsun.com>
13533
13534 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13535 * src/output.c (output_skeleton): Rename local var.
13536 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13537 Bison tokens, as this runs afoul of the 2003-10-07 change that
13538 disallowed NUL bytes in character constants or string literals.
13539
13540 * tests/local.at: Require Autoconf 2.59's Autotest.
13541 * tests/testsuite.at: Don't include local.at, since we now assume
13542 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13543 including it.
13544 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13545 multiple inclusion warnings.
dd0e0635 13546
b165c324
AD
135472003-12-02 Akim Demaille <akim@epita.fr>
13548
13549 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13550 conditions.
13551 From Bruno Haible.
13552
26e06a21
ADL
135532003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13554
13555 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13556
92ac3705
PE
135572003-10-07 Paul Eggert <eggert@twinsun.com>
13558
6a5ecb38
PE
13559 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13560 if testsuite doesn't exist.
13561
92ac3705
PE
13562 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13563 literals, unfortunately.
13564 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13565 Complain about NUL bytes in character constants or string literals.
13566
91d2c560
PE
135672003-10-05 Paul Eggert <eggert@twinsun.com>
13568
13569 * NEWS: Don't document %no-default-prec, as it's still
13570 too experimental.
13571 * doc/bison.texinfo: Document %no-default-prec only if
13572 the defaultprec flag is set. Normally it's not.
13573
0cc3da3a
PE
135742003-10-04 Paul Eggert <eggert@twinsun.com>
13575
13576 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13577 non-modifiable lvalue, instead of a modifiable one.
13578 * doc/bison.texinfo (Actions): Document that $$ can
13579 be assigned to. Do not claim that $$ and $N are
13580 array element references: user code should not rely on this.
13581
22fccf95
PE
135822003-10-01 Paul Eggert <eggert@twinsun.com>
13583
13584 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13585 (grammar_declaration): Use it.
13586 * src/scan-gram.l: New token %no-default-prec.
13587 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13588 * NEWS, doc/bison.texinfo: Document the above.
13589
fc8f2965
AD
135902003-10-01 Akim Demaille <akim@epita.fr>
13591
13592 VCG no longer supports long_straight_phase.
13593
13594 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13595 * src/print_graph.c (print_graph): Adjust.
13596
39a06c25
PE
135972003-09-30 Frank Heckenbach <frank@g-n-u.de>
13598 and Paul Eggert <eggert@twinsun.com>
13599
13600 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13601 Table of Symbols): Document %default-prec.
13602 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13603 (grammar_declaration): Set default_prec on %default-prec.
13604 * src/scan-gram.l (%default-prec): New token.
13605 * src/reader.h (default_prec): New flag.
13606 * src/reader.c: Likewise.
13607 (packgram): Handle it.
13608 * tests/conflicts.at (%default-prec without %prec,
13609 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 13610
39a06c25
PE
136112003-09-30 Paul Eggert <eggert@twinsun.com>
13612
13613 * tests/testsuite.at: Include local.at, not input.at, fixing
13614 a typo in the 2003-08-25 patch.
13615
62b6aef9
AD
136162003-08-27 Akim Demaille <akim@epita.fr>
13617
13618 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13619 GCC warnings.
13620
89e1cc61
AD
136212003-08-26 Akim Demaille <akim@epita.fr>
13622
13623 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13624 "<\#" to avoid magic from Gnus when posting parts of this script.
13625
a08460b0
AD
136262003-08-26 Akim Demaille <akim@epita.fr>
13627
13628 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13629 (Parser::parse): here.
13630 Adjust: nerrs and errstatus is now replaced by...
13631 (Parser::nerrs_, Parser::errstatus_): New.
13632
603f1cfd
AD
136332003-08-25 Akim Demaille <akim@epita.fr>
13634
13635 * config/announce-gen, Makefile.cfg: New.
13636 * Makefile.am: Adjust.
13637 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13638 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13639
cd3684cf
AD
136402003-08-25 Akim Demaille <akim@epita.fr>
13641
13642 When reducing initial empty rules, Bison parser read an initial
13643 location that is not defined. This results in garbage, and that
13644 affects Bison's own parser. Therefore we need (i) to extend Bison
13645 to support a means to initialize this location, and (ii) to use
13646 this CVS Bison to fix CVS Bison's parser.
13647
13648 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13649 with...
13650 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13651 * src/parse-gram.y: Adjust.
13652 (%initial-action): New.
13653 (%error-verbose): Since we require CVS Bison, there is no reason
13654 not to use it.
13655 * src/scan-gram.l: Adjust.
13656 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13657 * data/yacc.c (yyparse): Use b4_initial_action.
13658
4e03e201
AD
136592003-08-25 Akim Demaille <akim@epita.fr>
13660
13661 * doc/bison.texinfo: Don't promote stdout for error messages.
13662
8c182d05
AD
136632003-08-25 Akim Demaille <akim@epita.fr>
13664
13665 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13666 From Alexandre Duret-Lutz.
13667
6a60c4cf
PE
136682003-08-25 Akim Demaille <akim@epita.fr>
13669
13670 Version 1.875c.
13671
25f66e1a
AD
136722003-08-25 Akim Demaille <akim@epita.fr>
13673
13674 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13675 Use them.
13676
5348bfbe
AD
136772003-08-25 Akim Demaille <akim@epita.fr>
13678
13679 * data/lalr1.cc (Parser::reduce_print_): New.
13680 Use it.
13681
47301314
AD
136822003-08-25 Akim Demaille <akim@epita.fr>
13683
13684 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13685 error recovery loops. This patch is based on
161a71f3 13686 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
13687 Also, augment the similarity between lalr1.cc and yacc.c.
13688 Note: the locations of error recovery rules are not correct yet.
13689
13690 * data/lalr1.cc: Comment changes to augment the similarity between
13691 lalr1.cc and yacc.c.
13692 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13693 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13694 yyerrlab), when hitting EOF, pop the whole stack here instead of
13695 merely falling thru the default error handling mechanism.
13696 (yyerrorlab): New label, with the old contents of YYERROR,
13697 plus the following change: pop the stack of rhs corresponding
13698 to the production that invoked YYERROR. That is how Yacc
13699 behaves (required by POSIX).
13700 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13701 fail.
13702
1f7a61ff
AD
137032003-08-25 Akim Demaille <akim@epita.fr>
13704
13705 Tune local.at so that people can "autom4te -l autotest calc.at -o
13706 calc" for instance, to extract a sub test suite.
13707
13708 * tests/testsuite.at: Move the initialization, Autotest version
13709 requirement, and AT_TESTED invocation into...
13710 * tests/local.at: here.
13711 * tests/testsuite.at: Include it for compatibility with Autoconf
13712 2.57.
13713 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13714 be ignore.
13715
327b5b56
PE
137162003-08-04 Paul Eggert <eggert@twinsun.com>
13717
13718 Rework code slightly to avoid gcc -Wtraditional warnings.
13719 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13720 The returned value is now stored in *YY0. All callers changed.
13721 * src/output.c (merge_output): Adjust to the above change.
13722
0051e3ed
PE
137232003-07-26 Paul Eggert <eggert@twinsun.com>
13724
13725 * data/glr.c (YYASSERT): New macro.
13726 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13727 yyresolveStates, yyprocessOneStack):
13728 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13729 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 13730
137437c6
PE
137312003-07-25 Paul Eggert <eggert@twinsun.com>
13732
5b620e06
PE
13733 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13734 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 13735 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
13736 by Frank Heckenbach, though I have omitted the structure-initialization
13737 part of his glr-knr.diff patch since I recall that the Portable
13738 C Compiler didn't require that change.
13739
137437c6
PE
13740 Let the user specify how to allocate and free memory.
13741 Derived from a suggestion by Frank Heckenbach in
161a71f3 13742 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
13743 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13744 All uses of free, malloc, realloc changed to use these macros,
13745 and unnecessary casts removed.
13746 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13747
ddb85ca5
PE
137482003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13749
13750 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13751 use s.empty() rather than s == "" to test for empty string; see
161a71f3 13752 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
13753 (trivial change)
13754
39910e09
AD
137552003-06-25 Akim Demaille <akim@epita.fr>
13756
13757 * config/depcomp, config/install-sh: Update from masters.
13758
0ae99356
PE
137592003-06-20 Paul Eggert <eggert@twinsun.com>
13760
13761 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13762 and return properly parenthesized result.
13763 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13764 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13765 Remove unnecessary parentheses from uses.
13766 * doc/bison.texinfo (Location Default Action): Describe the
13767 conventions for parentheses.
13768
cd05d13c
PE
137692003-06-19 Paul Eggert <eggert@twinsun.com>
13770
81fd08ca
PE
13771 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13772 yyreportTree): Do not assume that size_t is the same width as int,
13773 when printing sizes. Print sizes using an unsigned format.
13774 Problem reported by Frank Heckenbach in
161a71f3 13775 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 13776
cd05d13c
PE
13777 Port to Forte Developer 7 C compiler.
13778 * data/glr.c (struct YYLTYPE): If locations are not being used,
13779 declare a single dummy member, as empty structs do not conform
13780 to the C standard.
13781 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13782 the Forte Developer 7 C compiler complains that end-of-loop
13783 code is not reached.
13784
4dcf140b
PE
137852003-06-17 Paul Eggert <eggert@twinsun.com>
13786
13787 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13788 avoid warnings from picky compilers about redefinition of PARAMS.
13789
8dd76bee
PE
137902003-06-17 Paul Eggert <eggert@twinsun.com>
13791
13792 Version 1.875b.
13793
13794 * NEWS: Document 1.875b.
13795
13796 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13797 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13798 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13799 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13800 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13801 per recent gettext manual's suggestion.
13802 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13803 Use prototypes, not old-style definitions.
13804 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13805 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13806 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13807 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13808 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13809 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13810 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13811 vbitset_or_and_cmp, vbitset_copy): Likewise.
13812
13813 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13814 Do not include <stdlib.h>.
13815 (PARAMS): Define unconditionally for C89.
13816 (ATTRIBUTE_NORETURN): Remove.
13817 (ATTRIBUTE_UNUSED): Define unconditionally.
13818
13819 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 13820 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
13821 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13822 * lib/vbitset.c, lib/vbitset.h: New files.
13823 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13824 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13825 from libbitset.
13826
13827 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13828 `How Can I Reset @code{yyparse}', since texinfo does not allow
13829 arbitrary @ in node names.
13830
13831 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13832 shouldn't be needed according to the gettext 0.12.1 documentation
13833 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 13834 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 13835 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 13836 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 13837
8dd76bee
PE
13838 * lib/.cvsignore: Add stdbool.h.
13839 * m4/.cvsignore: Add nls.m4, po.m4.
13840
13841 Upgrade to CVS gnulib.
13842 * stdbool_.h: File renamed from stdbool.h.in.
13843 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13844 AC_HEADER_STDBOOL.
13845 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13846 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13847 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13848 (MOSTLYCLEANFILES): New var.
13849 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13850 (stdbool.h): New rule.
13851 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13852 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13853 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13854 m4/quote.m4: Upgrade to today's gnulib.
13855
13856 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13857 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13858 the tests right now.
13859 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13860 yyerror are declared before use; C99 requires this.
13861
25005f6a
PH
138622003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13863
13864 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13865 first.
13866 (yyrecoverSyntaxError): Correct the logic for setting and testing
13867 yyerrState.
13868 Correct comment on handling EOF.
13869 Allow states with only a default reduction, rather than failing
8dd76bee 13870 (I can't quite reconstruct why these were not allowed before).
25005f6a 13871
137437c6 13872 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 13873 buffer overruns, corrupting state.
8dd76bee
PE
13874
13875 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
13876 definition.
13877 * src/reader.h (max_left_semantic_context): New variable declaration.
13878 * src/scan-gram.l (max_left_semantic_context): Define.
13879 (handle_action_dollar): Update max_left_semantic_context.
13880 * data/glr.c (YYMAXLEFT): New definition.
13881 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13882 (yyresolveAction): Ditto.
13883
13884 Fixes to problems with location handling in GLR parsers reported by
13885 Frank Heckenbach (2003/06/05).
13886
13887 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13888 (YYRHSLOC): Add parentheses, and define only if locations used.
13889 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13890 locations not used.
13891 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13892 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 13893
25005f6a
PH
13894 * tests/cxx-type.at: Exercise location information; update tests
13895 to differentiate output with and without locations.
8dd76bee 13896 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
13897 because default YYLTYPE not yet defined.
13898 Change semantic actions to compute strings, rather than printing
13899 them directly (to test proper passing of semantics values). Change
13900 output to prefix notation and update test data and expected results.
13901 (yylex): Track locations.
13902 (stmtMerge): Return value rather than printing, and include arguments
13903 in value.
8dd76bee 13904
711f40b7
PE
139052003-06-03 Paul Eggert <eggert@twinsun.com>
13906
13907 Avoid warnings generated by GCC 2.95.4 when Bison is
13908 configured with --enable-gcc-warnings.
13909 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13910 yy::]b4_parser_class_name[::translate_,
13911 yy::Stack::operator[] (unsigned),
13912 yy::Stack::operator[] (unsigned) const,
13913 yy::Slice::operator[] (unsigned),
13914 yy::Slice::operator[] (unsigned) const):
13915 Rename local vars to avoid warnings.
13916 * tests/glr-regression.at (Improper handling of embedded actions
13917 and $-N in GLR parsers): Remove unused local variable from yylex.
13918 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13919 (void) as arg when not pure, since we now assume C89 when building
13920 Bison. Pacify GCC by using parameter.
13921
ac695f7d
PE
139222003-06-02 Paul Eggert <eggert@twinsun.com>
13923
13924 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13925 yy::Location::lines, yy::Location::columns): Rename arguments
13926 to avoid shadowing; this removes a warning generated by GCC 3.3.
13927
26ec81e0
PE
139282003-06-01 Paul Eggert <eggert@twinsun.com>
13929
13930 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13931 to g++, as GCC 3.3 complains if you do it.
13932 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13933 everything that WARNING_CFLAGS has, except omit warnings
13934 not suitable for C++.
13935 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13936 * tests/atlocal.in (CXXFLAGS): New var.
13937 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13938
13939 Fix a GLR parser bug I reported in February; see
161a71f3 13940 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
13941 The problem was that GLR parsers did not conform to the C standard,
13942 because actions like { $1 = $2 + $3; } expanded to expressions
13943 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13944 to a local variable. The C standard says that expressions
13945 like (var = f ()) + (var = f ()) have undefined behavior.
13946 Another problem was that GCC sometimes issues warnings that
13947 yyfill and its parameters are unused.
13948
13949 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13950 as possibly unused.
13951 (yyfill): New function.
13952 (YYFILL): Use it.
13953 (yyuserAction): Change type of yynormal to bool, so that it matches
13954 the new yyfill signature. Mark it as possibly unused.
13955
13956
13957 Follow up on a bug I reported in February, where a Bison-generated
13958 parser can loop. Provide a test case and a fix for yacc.c. I
13959 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13960 The original bug report is in:
161a71f3 13961 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
13962
13963 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13964 macro's size was becoming unwieldy.
13965 (yyerrlab): Do not discard an empty lookahead symbol, as this
13966 might destroy garbage.
13967 (yyerrorlab): New label, with the old contents of YYERROR,
13968 plus the following change: pop the stack of rhs corresponding
13969 to the production that invoked YYERROR. That is how Yacc
13970 behaves, and POSIX requires this behavior.
13971 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13972 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13973 Define 'alarm' to do nothing if unistd.h is not available.
13974 Add a new rule "exp: '-' error;" to test the above change to
13975 data/yacc.c. Use 'alarm' to abort any test taking longer than
13976 10 seconds, as it's probably looping.
13977 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13978 Also, the new yacc.c generates two fewer diagnostics for an
13979 existing test.
13980
d0829076
PE
139812003-05-24 Paul Eggert <eggert@twinsun.com>
13982
c6ae27df
PE
13983 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13984 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13985 This fixes a problem reported by John Bowman when the Compaq/HP
13986 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13987 -ansi -Wall -gall).
13988 * data/yacc.c (union yyalloc): Likewise.
13989 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 13990
d0829076
PE
13991 Switch from 'int' to 'bool' where that makes sense.
13992
13993 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13994 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13995 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13996 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13997 Return or accept bool, not int. All callers changed.
13998 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13999 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
14000 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
14001 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
14002 bitset_or_and_cmp_): Likewise.
14003 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
14004 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
14005 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
14006 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
14007 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
14008 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
14009 bitset_stats_or_and_cmp): Likewise.
14010 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
14011 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
14012 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
14013 ebitset_xor_cmp): Likewise.
14014 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
14015 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
14016 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
14017 lbitset_xor_cmp): Likewise.
14018 * lib/bbitset.h: Include <stdbool.h>.
14019 (struct bitset_vtable): The following members now return bool, not
14020 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
14021 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
14022 or_and_cmp).
14023 * src/conflicts.c (count_rr_conflicts): Likewise.
14024 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14025 All uses changed.
14026 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14027 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14028 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14029 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14030 graph_flag): Likewise.
14031 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14032 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14033 graph_flag): Likewise.
14034 * src/output.c (error_verbose): Likewise.
14035 * src/output.h (error_verbose): Likewise.
14036 * src/reader.c (start_flag, typed): Likewise.
14037 * src/reader.h (typed): Likewise.
14038 * src/getargs.c (LOCATIONS_OPTION): New constant.
14039 (long_options, getargs): Use it.
14040 * src/lalr.c (build_relations): Use bool, not int.
14041 * src/nullable.c (nullable_compute): Likewise.
14042 * src/print.c (print_reductions): Likewise.
14043 * src/tables.c (action_row, pack_vector): Likewise.
14044 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14045 * src/output.c (prepare): Use it.
14046 * src/output.c (token_definitions_output,
14047 symbol_destructors_output, symbol_destructors_output): Use string,
14048 not boolean integer, to keep track of whether to output separator.
14049 * src/print_graph.c (print_core): Likewise.
14050 * src/state.c (state_rule_lookaheads_print): Likewise.
14051
14052 * config/install-sh: Sync from automake 1.7.5.
14053
6b2584b7
PE
140542003-05-14 Paul Eggert <eggert@twinsun.com>
14055
14056 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14057 semicolon after a grammar declaration, in the interest of possible
14058 future changes to the Bison input language.
14059 Do not allow a stray semicolon at the start of the grammar.
14060 (rhses.1): Allow one or more semicolons after any rule, including
14061 just before "|" as required by POSIX.
14062 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14063 grammar.
14064
caf37a36
ADL
140652003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14066
14067 %parse-param support for lalr1.cc.
14068
14069 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14070 b4_cc_constructor_calls, b4_cc_constructor_call,
14071 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14072 definitions.
14073 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14074 parse-param arguments.
14075 (yy::b4_parser_class_name): Declare instance variables to
14076 hold parse-param arguments.
14077 * tests/calc.at: s/value/semantic_value/ because value clashes
14078 with a member of yy::b4_parser_class_name. Adjust C++ code
14079 to handle %parse-param. Enable %parse-param test in C++.
14080
3ab37077
PE
140812003-05-12 Paul Eggert <eggert@twinsun.com>
14082
14083 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14084 English a bit. Fix fclose typo. Change "const char" to "char
14085 const", and use ANSI C rather than K&R for "main". Suggest
14086 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14087 and suggest yy_switch_to_buffer.
14088
140892003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
14090
14091 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14092 C89. This avoids a diagnostic on compilers that define __STDC__
14093 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 14094 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 14095
e743727f
PE
140962003-05-03 Paul Eggert <eggert@twinsun.com>
14097
14098 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
14099 Do not overrun array bounds.
14100 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 14101 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 14102
916708d5
AD
141032003-04-29 Akim Demaille <akim@epita.fr>
14104
14105 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
14106 * src/getargs.c, src/getargs.h: here, as bool, not int.
14107 (nondeterministic_parser): New.
14108 * src/parse-gram.y, src/scan-gram.l: Support
14109 %nondeterministic-parser.
14110 * src/output.c (prepare): Use nondeterministic_parser instead
14111 of glr_parser where appropriate.
14112 * src/tables.c (conflict_row, action_row, save_row)
14113 (token_actions, token_actions, pack_vector): Ditto.
14114
a06ea4aa
AD
141152003-04-29 Akim Demaille <akim@epita.fr>
14116
14117 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14118
211074ca
AD
141192003-04-29 Akim Demaille <akim@epita.fr>
14120
14121 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14122 with %pure-parser and %locations to exercise the patch from Yakov
14123 Markovitch below.
14124
6175ffe3
PE
141252003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14126
14127 * data/yacc.c: (b4_lex_param): Corrected for the case where
14128 %lex-param is provided and %pure-parser isn't.
14129
b1e95857
PE
141302003-04-27 Paul Eggert <eggert@twinsun.com>
14131
14132 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 14133 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
14134 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14135 if it is not defined.
14136 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14137
acda9df6
PE
141382003-04-26 Paul Eggert <eggert@twinsun.com>
14139
3470c57b
PE
14140 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14141 Declare to be of type suitable for the ninf value itself, not of
14142 type suitable for the corresponding table, since the latter might
14143 be unsigned but the ninf value might be negative. This fixes a
14144 bug reported by Alexandre Duret-Lutz in
161a71f3 14145 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 14146
acda9df6
PE
14147 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14148 invokes it. We shouldn't invoke it twice because it will attempt
14149 to put error.o in the archive twice. This fixes a glitch reported
14150 by Martin Mokrejs in
161a71f3 14151 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 14152
b5250f26
PE
141532003-04-21 Paul Eggert <eggert@twinsun.com>
14154
14155 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14156 to gnulib.
14157
089ac0f1
PE
141582003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14159
14160 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14161 Fix obvious typo that results in uncompilable GLR parsers
14162 when both %pure-parser and %locations are used. (trivial change)
14163
5ededac6
PE
141642003-04-17 Paul Eggert <eggert@twinsun.com>
14165
1b8f2fff
PE
14166 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14167 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14168 Do not insert the expected token via unput, as this runs afoul
14169 of a POSIX-compatibility bug in flex 2.5.31.
14170 All uses changed to BEGIN the parent state,
14171 since we no longer insert the expected token via unput.
14172 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14173 that is no longer emitted after the above change.
14174
5ededac6
PE
14175 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14176 the first one. This change is from Paul Hilfinger, and it fixes
14177 regression reported by Werner Lemberg in
161a71f3 14178 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
14179
14180 (resolve_sr_conflict): Don't invoke state_errs_set
14181 unless one or more tokens have been explicitly made errors.
14182 Otherwise, the above change causes Bison to abort.
14183
14184 * tests/existing.at (GNU pic Grammar): New test case, taken from
14185 Lemberg's email.
14186
b8be9132
AD
141872003-03-31 Akim Demaille <akim@epita.fr>
14188
14189 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14190
d423d460
AD
141912003-03-31 Akim Demaille <akim@epita.fr>
14192
14193 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14194 output.
14195
c7e441b4
AD
141962003-03-31 Akim Demaille <akim@epita.fr>
14197
14198 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14199 From Paul Hilfinger.
14200
231897ad
AD
142012003-03-29 Akim Demaille <akim@epita.fr>
14202
14203 * m4/error.m4: Do not put under dynamic conditions some code which
14204 expansion is under static control.
14205
5b066063
AD
142062003-03-29 Akim Demaille <akim@epita.fr>
14207
14208 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14209
22a74fec
AD
142102003-03-29 Akim Demaille <akim@epita.fr>
14211
14212 * doc/bison.texinfo (Strings are Destroyed): New.
14213
0eee27e7
PE
142142003-03-13 Paul Eggert <eggert@twinsun.com>
14215
14216 * .cvsignore: Add configure.lineno.
14217 * src/.cvsignore: Add yacc.
14218 * tests/.cvsignore: Add testsuite.log.
14219 * doc/fdl.texi: Sync with latest FSF version.
14220
f61aad93
PE
142212003-03-12 Paul Eggert <eggert@twinsun.com>
14222
537636c7
PE
14223 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14224 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14225 cursor, instead of leaving it undefined. This fixes a bug
14226 reported by Tim Van Holder in
161a71f3 14227 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
14228 * tests/input.at (Torturing the Scanner): Test the scanner on
14229 an empty input file, which was Tim Van Holder's test case.
14230
14231 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14232 <sys/resource.h> can be included, include sys/time.h and
14233 sys/times.h first, if available. This works around the SunOS
14234 4.1.4 porting bug reported by Bruce Becker in
161a71f3 14235 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
14236
14237 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14238 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14239 AC_HEADER_SYS_WAIT.
14240
f61aad93
PE
14241 Merge changes from gnulib. This was prompted because the CVS
14242 snapshot didn't build on Solaris 7 due to strnlen problems.
14243
14244 These changes need to be merged back into gnulib:
14245 * lib/hash.c: Include <stdbool.h> unconditionally.
14246 * m4/onceonly.m4 (m4_quote): New macro.
14247 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14248 Quote AC_FOREACH variable-expansions properly.
14249 The 2003-01-03 obstack.h change also needs merging.
14250 {end of changes requiring merging}
5b066063 14251
f61aad93
PE
14252 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14253 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14254 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14255 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14256 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14257 New files, imported from gnulib.
14258 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14259 above.
14260
14261 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14262 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14263 gnulib sources.
14264
14265 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14266 Add.
14267 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14268 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14269 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14270 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14271 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14272 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14273 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14274 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14275 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14276 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14277 (jm_PREREQ_ARGMATCH): Remove.
14278 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14279 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14280
14281 * src/system.h: Include <stdbool.h> unconditionally.
14282
14283 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14284 assuming at least C89 in the bitset code for some time now.
14285
d2ffe116
AD
142862003-03-03 Akim Demaille <akim@epita.fr>
14287
14288 * ro.po: New.
14289
052826fd
AD
142902003-03-02 Akim Demaille <akim@epita.fr>
14291
14292 * doc/bison.texinfo (Table of Symbols): Reactivate the
14293 documentation for %lex-param, and %parse-param.
14294
c4749565
AD
142952003-03-02 Akim Demaille <akim@epita.fr>
14296
14297 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14298 generate verbose error messages.
14299 Use the number of tokens as an upper bound in yytname, as it
14300 cannot be a non terminal.
14301
d5286af1
AD
143022003-03-02 Akim Demaille <akim@epita.fr>
14303
14304 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14305 message.
14306
22e304a6
AD
143072003-03-02 Akim Demaille <akim@epita.fr>
14308
22e304a6
AD
14309 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14310 Use them to exercise yycheck overrun.
14311 Based on Andrew Suffield's grammar.
14312
67a25fed
AD
143132003-03-02 Akim Demaille <akim@epita.fr>
14314
14315 Create tests/local.at for Bison generic testing macros.
14316
14317 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14318 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14319 This new file.
14320 * tests/calc.at (AT_CHECK_CALC): Adjust.
14321 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14322 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14323 * tests/local.at: here.
14324 (AT_COMPILE_CXX): Tags the tests using it as c++.
14325 Ignore the test if CXX is not functional.
14326
9c2b381f
PE
143272003-03-01 Paul Eggert <eggert@twinsun.com>
14328
14329 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14330 not loc->end, since loc->end might contain garbage and this leads
14331 to undefined behavior on some platforms.
14332 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14333 depend on *loc, so that the reader doesn't give the the false
14334 impression that *loc is initialized.
14335 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14336 does not survive the return.
14337
0433ba88
AD
143382003-03-01 Akim Demaille <akim@epita.fr>
14339
14340 * src/scan-gram.l (code_start): Always initialize it when entering
14341 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14342 yylex invocation. An alternative would be making it static, but
14343 then it starts with the second %%'s beginning, instead of its end.
14344
b305ea69
PE
143452003-02-28 Paul Eggert <eggert@twinsun.com>
14346
14347 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14348 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 14349 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 14350
c3d25e01
PE
143512003-02-26 Paul Eggert <eggert@twinsun.com>
14352
14353 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14354 Remove Sequent/Pyramid discussion (nobody uses them any more).
14355 Merge VMS and MS-DOS discussion; these ports may well be dead
14356 but let's keep mentioning them for now. Put <> around email
14357 addresses. Add copyright notice.
14358
c267ffbc
PE
143592003-02-24 Paul Eggert <eggert@twinsun.com>
14360
14361 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14362 to avoid collision with flex use of yylineno.
14363 Problem reported by Bruce Lilly in
161a71f3 14364 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
14365 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14366 * data/yacc.c (yy_reduce_print): Likewise.
14367
14368 * config/depcomp: Sync with Automake 1.7.3.
14369
f939fc12
AD
143702003-02-21 Akim Demaille <akim@epita.fr>
14371
14372 * data/lalr1.cc: Use temporary variables instead of casts to
14373 change integer types.
14374 Suggested by Paul Eggert.
14375
95923bd6
AD
143762003-02-21 Akim Demaille <akim@epita.fr>
14377
14378 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14379 to avoid confusions with lalr1.cc's notion of Position.
14380 Suggested by Paul Eggert.
14381
2cdc240e
AD
143822003-02-20 Akim Demaille <akim@epita.fr>
14383
14384 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14385 before initial_columns.
14386 (location.hh): Use consistent variable names when defining the
14387 operator<<.
14388 Use "last" so that we subtract from Positions, not from unsigned.
14389
5d003116
AD
143902003-02-20 Akim Demaille <akim@epita.fr>
14391
14392 * data/lalr1.cc (position.hh): New subfile, including the extended
14393 and Doxygen'ed documentation of class Position.
14394 (location.hh): Use it.
14395 Document a` la Doxygen.
ba1ecc07 14396 With the help of Benoit Perrot.
5d003116 14397
d02b25f9
AD
143982003-02-20 Akim Demaille <akim@epita.fr>
14399
14400 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14401 AT_YACC_IF.
14402 Redefine AT_YYERROR_SEES_LOC_IF using it.
14403 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14404 not defined.
14405 Don't use the location in yy::Parser::error_ and
14406 yy::Parser::print_ when not %locations.
14407 Activate more lalr1.cc tests.
14408
0d1c3a04
AD
144092003-02-19 Akim Demaille <akim@epita.fr>
14410
14411 * data/lalr1.cc: When displaying a line number, be sure to make it
14412 an int.
14413
60a777aa
AD
144142003-02-19 Akim Demaille <akim@epita.fr>
14415
14416 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14417 Remove, useless.
14418 (YYABORT, YYACCEPT, YYERROR): New.
14419 * tests/calc.at: Renable the lalr1.cc test.
14420
0b86fc41
AD
144212003-02-19 Akim Demaille <akim@epita.fr>
14422
14423 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14424 error recovery, mixing with/without pops and discarding of the
14425 lookahead.
14426 Exercise YYERROR.
14427 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14428
da99a5dc
PE
144292003-02-17 Paul Eggert <eggert@twinsun.com>
14430
14431 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14432 * tests/testsuite.at (AT_COMPILE): Use them.
14433 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 14434 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 14435
93b8c255
PE
144362003-02-12 Paul Eggert <eggert@twinsun.com>
14437
14438 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14439 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 14440 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
14441 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14442 Check for malloc failure, for consistency with yacc.c.
14443 (yytname_size): Remove, for consistency with yacc.c.
14444
14445 The bug still remains in data/lalr1.cc, as I didn't have time
14446 to fix it there.
14447
7548fed2
AD
144482003-02-06 Akim Demaille <akim@epita.fr>
14449
14450 * configure.ac (GXX): Rename as...
14451 (CXX): this, to keep the original Autoconf semantics.
14452 Require 2.57.
14453 * data/lalr1.cc: Fix b4_copyright invocations.
14454 If YYDEBUG is not defined, don't depend upon name_ being defined.
14455 (location.hh): Include string and iostream.
14456 (Position::filename): New member.
14457 (Position::Position ()): New.
14458 (operator<< (Position)): New.
14459 (operator- (Position, int)): New.
14460 (Location::first, Location::last): Rename as...
14461 (Location::begin, Location::end): these, to mock the conventional
14462 iterator names.
14463 (operator<< (Location)): New.
14464 * tests/atlocal.in (CXX): New.
14465 * tests/testsuite.at (AT_COMPILE_CXX): New.
14466 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14467 locations in a more synthetic way.
14468 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14469 lalr1.cc is used.
14470 Adjust the C locations to match those from Emacs: first column is
14471 column 0.
14472 Change all the expected results.
14473 Conform to the GCS: simplify the locations when applicable.
14474 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14475 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14476 these CPP macros with the m4 macros new defined by...
14477 (AT_CHECK_PUSHDEFS): this, i.e.:
14478 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 14479 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
14480 New macros.
14481 (AT_CHECK_POPDEFS): Undefine them.
14482 (AT_CHECK_CALC_LALR1_CC): New.
14483 Use it for the first lalr1.cc test.
14484
43a176ef
AD
144852003-02-04 Akim Demaille <akim@epita.fr>
14486
14487 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14488 Location as is defined.
14489
fc049e9c
AD
144902003-02-04 Akim Demaille <akim@epita.fr>
14491
14492 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14493 name_ being defined.
14494
a737b216
PE
144952003-02-03 Paul Eggert <eggert@twinsun.com>
14496
14497 * src/gram.h (start_symbol): Remove unused decl.
14498
14499 Use more-consistent naming conventions for local vars.
14500
14501 * src/derives.c (derives_compute): Change type of local var from
14502 int to rule_number.
14503 * src/gram.c (grammar_rules_partial_print): Likewise.
14504 * src/print.c (print_core): Likewise.
14505 * src/reduce.c (reduce_grammar_tables): Likewise.
14506
14507 * src/gram.c (grammar_dump): Change name of item_number *
14508 local var from r to rp.
14509 * src/nullable.c (nullable_compute): Likewise.
14510
14511 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14512
14513 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14514 for symbol or symbol_number var.
14515 * src/reader.c (grammar_start_symbol_set): Likewise.
14516 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14517 Likewise.
14518 * src/state.c (transitions_to): Likewise.
14519 * src/state.h: Likewise.
14520 * src/tables.c (symbol_number_to_vector_number): Likewise.
14521
14522 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14523 char * var.
14524
14525 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14526 var.
14527
14528 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14529 var.
14530
14531 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14532 Use str, not s, for char * var. Use ch, not c, for character var.
14533 Use size for size var.
14534
14535 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14536 char * var.
14537 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14538 uniqstr var.
14539 * src/uniqstr.h: Likewise.
14540
14541 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14542 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14543 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14544 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14545 param to have same name as that of enum, so that we don't use
14546 "s" to stand for a non-state.
14547
68e93ad5
AD
145482003-02-02 Akim Demaille <akim@epita.fr>
14549
14550 * src/scan-skel.l: Scan more than one inert character per yylex
14551 invocation.
14552
92898986
PE
145532003-02-01 Paul Eggert <eggert@twinsun.com>
14554
14555 Version 1.875a.
14556
1d9d5d71
PE
14557 * po/LINGUAS: Add ms.
14558
0435d061
AD
145592003-01-30 Akim Demaille <akim@epita.fr>
14560
14561 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14562
6029a57f
PH
145632003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14564
14565 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14566 of $1.
0435d061
AD
14567
14568 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 14569 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 14570 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 14571
6029a57f
PH
14572 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14573 (b4_rhs_location): Ditto.
0435d061 14574 (yyfill): New function to copy from stack tree into array
6029a57f 14575 incrementally.
0435d061
AD
14576 (yyuserAction): Modify to allow incremental move of semantic values
14577 to rhs array when in GLR mode.
14578 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
14579 as needed.
14580 Remove dummy use of yystack, as there is now a guaranteed use.
14581 (yydoAction): Modify to allow incremental move of semantic values
14582 to rhs array when in GLR mode.
14583 (yyresolveAction): Ditto.
14584 (yyglrShiftDefer): Update comment.
0435d061 14585 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
14586 (yyglrReduce): Ditto.
14587 (yydoAction): Ditto
0435d061 14588
6029a57f
PH
14589 * tests/glr-regr1.at: Rename to ...
14590 * tests/glr-regression.at: Add new regression test for the problems
14591 described above (adapted from S. Eken).
14592 Update copyright notice.
14593 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14594 * tests/Makefile.am: Ditto.
14595
6cee6297
PE
145962003-01-28 Paul Eggert <eggert@twinsun.com>
14597
14598 * data/lalr1.cc: Do not use @output_header_name@ unless
14599 b4_defines_flag is set. This fixes two bugs reported by
14600 Tim Van Holder in
161a71f3
PE
14601 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14602 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 14603
b2a836b5
PE
146042003-01-21 Paul Eggert <eggert@twinsun.com>
14605
14606 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14607 we don't need to worry about yyerrlab1 being reported as an
14608 "unused label" by non-GCC C compilers. The downside is that if
14609 locations are used then a couple of statements are duplicated each
14610 time YYERROR is invoked, but the upside is that the warnings
14611 should vanish.
14612 (yyerrlab1): Move code to YERROR.
14613 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14614 This reverts some of the 2002-12-27 change.
14615
4196b931
PE
146162003-01-17 Paul Eggert <eggert@twinsun.com>
14617
14618 * src/output.c (symbol_printers_output): Fix typo that led
14619 to core dump. Problem reported by Antonio Rus in
161a71f3 14620 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 14621
3ae831b4
AD
146222003-01-13 Akim Demaille <akim@epita.fr>,
14623 Quoc Peyrot <chojin@lrde.epita.fr>,
14624 Robert Anisko <anisko_r@lrde.epita.fr>
14625
14626 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14627 when the stacks contain one element, as the loop would otherwise
14628 free the last state, and then use the top state (the one we just
14629 popped). This means that the initial elements will not be freed
14630 explicitly, as is the case in yacc.c; it is not a problem, as
14631 these elements have fake values.
14632
e3aa65c5
PE
146332003-01-11 Paul Eggert <eggert@twinsun.com>
14634
14635 * NEWS: %expect-violations are now just warnings, reverting
14636 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14637 bootstrapping problem reported by Matthias Klose; see
161a71f3 14638 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
14639 * src/conflicts.c (conflicts_print): Likewise.
14640 * tests/conflicts.at (%expect not enough, %expect too much,
14641 %expect with reduce conflicts): Likewise.
14642 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14643 that the warning is enabled if the number of conflicts changes
14644 (not necessarily increases).
14645
14646 * src/getargs.c (version): Update copyright year.
14647
f0057011
AD
146482003-01-09 Akim Demaille <akim@epita.fr>
14649
14650 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14651
1ee6d2a0
PE
146522003-01-08 Paul Eggert <eggert@twinsun.com>
14653
14654 * Makefile.maint (WGETFLAGS):
14655 New macro, containing "-C off" to disable proxy caches.
14656 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14657 (rel-check): Use $(WGET) instead of wget.
14658
d4fd77c4
PE
146592003-01-06 Paul Eggert <eggert@twinsun.com>
14660
14661 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14662 the GLR paper of Scott, Johnstone and Hussain.
14663
464c6927
PE
146642003-01-04 Paul Eggert <eggert@twinsun.com>
14665
d600ee67
PE
14666 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14667 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14668 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14669 (EXTRA_LIBRARIES): New var, for liby.a.
14670 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14671 (EXTRA_SCRIPTS): New var, for yacc.
14672
464c6927
PE
14673 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14674 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14675 Problem reported by Nelson H. F. Beebe.
14676
146772003-01-03 Paul Eggert <eggert@twinsun.com>
14678
14679 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14680 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14681 when compiling Bison 1.875's `bitset bset = obstack_alloc
14682 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14683
14684 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14685 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14686 grow to a huge size with typical invocation.
d600ee67 14687
464c6927
PE
14688 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14689 Use the pattern recommended by Autoconf 2.57, except also protect
14690 against double-definition.
14691 * src/system.h: Likewise.
14692 Portability issues reported by Nelson H. F. Beebe.
d600ee67 14693
464c6927
PE
14694 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14695 All uses changed. Provide a definition in both C and C++.
14696 (yytrue, yyfalse): Define even if defined (__cplusplus).
14697
14698 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14699 Reported by Nelson H. F. Beebe.
d600ee67 14700
464c6927
PE
14701 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14702
0f42c7d5
PE
147032003-01-02 Paul Eggert <eggert@twinsun.com>
14704
14705 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14706 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14707 Bug reported by Nelson H. F. Beebe.
14708
dc546b0f
PE
147092003-01-01 Paul Eggert <eggert@twinsun.com>
14710
14711 * Version 1.875.
14712
2c09b6a7
PE
147132002-12-30 Paul Eggert <eggert@twinsun.com>
14714
14715 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14716 Moved here from...
14717 (<INITIAL>","): Here. This causes stray "," to be treated
14718 more uniformly.
14719
dc546b0f 14720 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
14721 last brace in braced code when not in Yacc mode, for compatibility
14722 with Bison 1.35. This resurrects the 2001-12-15 patch to
14723 src/reader.c.
14724
14725 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14726 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14727
535c0f63
PE
147282002-12-28 Paul Eggert <eggert@twinsun.com>
14729
14730 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14731 that of SYM's type. This fixes Debian bug 168069, reported by
14732 Thomas Olsson.
d600ee67 14733
963fcc17
PE
147342002-12-28 Paul Eggert <eggert@twinsun.com>
14735
14736 Version 1.75f.
14737
14738 Switch back to the Yacc style of conflict reports, undoing some
14739 of the 2002-07-30 change.
14740 * doc/bison.texinfo (Understanding): Use Yacc style for
14741 conflict reports. Also, use new way of locating rules.
14742 * src/conflicts.c (conflict_report):
14743 Renamed from conflict_report_yacc, removing the old
14744 'conflict_report'. Translate the entire conflict report at once,
14745 so that we don't assume that "," has the same interpretation in
14746 all languages.
14747 (conflicts_output): Use Yacc-style conflict report for each state,
14748 instead of our more-complicated style.
14749 (conflicts_print): Use Yacc-style conflict report, except print
14750 the input file name when not emulating Yacc.
14751 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14752 Conflicted Reduction, %expect not enough, %expect too much,
14753 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14754 * tests/existing.at (GNU Cim Grammar): Likewise.
14755 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14756
14757 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14758 fatal): Don't invoke fflush; it's not needed and it might even be
14759 harmful for stdout, as stdout might not be open.
14760 * src/reduce.c (reduce_print): Likewise.
14761
b1efe548
PE
147622002-12-27 Paul Eggert <eggert@twinsun.com>
14763
14764 Fix a bug where error locations were not being recorded correctly.
14765 This problem was originally reported by Paul Hilfinger in
161a71f3 14766 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
14767
14768 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14769 top of the location stack's error locations.
14770 (yyerrlab): Set it. When discarding a token, push its location
14771 onto yylerrsp so that we don't lose track of the error's end.
14772 (yyerrlab1): Now is only the target of YYERROR, so that we can
14773 properly record the location of the action that failed. For GCC
14774 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14775 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14776 (yyerrlab2): New label, which yyerrlab now falls through to.
14777 Compute the error's location by applying YYLLOC_DEFAULT to
14778 the locations of all the symbols that went into the error.
14779 * doc/bison.texinfo (Location Default Action): Mention that
14780 YYLLOC_DEFAULT is also invoked for syntax errors.
14781 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14782 Error locations include the locations of all the tokens that were
14783 discarded, not just the last token.
d600ee67 14784
983c5c2c
PE
147852002-12-26 Paul Eggert <eggert@twinsun.com>
14786
b1efe548
PE
14787 * src/files.c: Include quote.h.
14788 (compute_output_file_names): Warn if we detect conflicting
14789 outputs to the same file. This should catch the misunderstanding
14790 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14791
14792 * src/conflicts.c (conflicts_print): If the user specifies
14793 "%expect N", report an error if there are any reduce/reduce
14794 conflicts. This is what the manual says should happen.
14795 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14796 * tests/conflicts.at (%expect with reduce conflicts): New test.
14797
983c5c2c
PE
14798 Don't use m4_include on relative file names, as it doesn't work as
14799 desired if there happens to be a file with that name under ".".
d600ee67 14800
983c5c2c
PE
14801 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14802 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14803 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14804 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14805 * src/output.c (output_skeleton): Use full path names when
14806 specifying a file to include; don't rely on include path, as
14807 it's unreliable when the working file contains a file with
14808 that name.
d600ee67 14809
983c5c2c
PE
148102002-12-25 Paul Eggert <eggert@twinsun.com>
14811
14812 Remove obsolete references to bison.simple and bison.hairy.
14813 Problem mentioned by Aubin Mahe in
161a71f3 14814 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
14815 * data/glr.c: Comment fix.
14816 * doc/bison.1: Remove references. Also, mention "yacc".
14817
14818 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14819 with -g option.
14820
14821 * src/parse-gram.y (declaration): Use enum "report_states" rather
14822 than its numeric value 1.
14823
14824 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14825 opening a new one. This fixes Debian bug 165349, reported by
14826 Bruce Stephens.
14827
23f2d9dc
PE
148282002-12-24 Paul Eggert <eggert@twinsun.com>
14829
14830 Version 1.75e.
14831
14832 * Makefile.maint (cvs-update): Don't assume that the shell
14833 supports $(...), as Solaris sh doesn't.
14834
14835 * src/parse-gram.y (lloc_default): Remove test for empty
14836 nonterminals at the end, since it didn't change the result.
14837
148382002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
14839
14840 If the user does not define YYSTYPE as a macro, Bison now declares it
14841 using typedef instead of defining it as a macro. POSIX requires this.
14842 For consistency, YYLTYPE is also declared instead of defined.
14843
14844 %union directives can now have a tag before the `{', e.g., the
14845 directive `%union foo {...}' now generates the C code
14846 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14847 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14848 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14849 instead of `yyltype'.
14850
14851 `yystype' and `yyltype' are now obsolescent macros instead of being
14852 typedefs or tags; they are no longer documented and will be
14853 withdrawn in a future release.
14854
14855 * data/glr.c (b4_location_type): Remove.
14856 (YYSTYPE): Renamed from yystype.
14857 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14858 (struct YYLTYPE): Renamed from struct yyltype.
14859 (YYLTYPE): Renamed from yyltype.
14860 (yyltype, yystype): New (and obsolescent) macros,
14861 for backward compatibility.
14862 * data/yacc.c: Likewise.
14863
14864 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14865 does not specify a union tag. This is for compatibility with
14866 Solaris 9 yacc.
14867
14868 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14869 const *, since it is now modified by stripping surrounding { }.
14870 (current_braced_code): Remove.
14871 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14872 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14873 trailing " {...}". Now of type <chars>.
14874 (grammar_declaration): Adjust to bundled tokens.
14875 (code_content): Remove; stripping is now done by add_param.
14876 (print_token_value): Print contents of bundled tokens.
14877 (token_name): New function.
14878
14879 * src/reader.h (braced_code, current_braced_code): Remove.
14880 (token_name): New decl.
14881
14882 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14883 token_type, not braced_code code_kind. All uses changed.
14884 (SC_PRE_CODE): New state, for scanning after a keyword that
14885 has (or usually has) an immediately-following braced code.
14886 (token_type): New local var, to keep track of which token type
14887 to return when scanning braced code.
14888 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 14889 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
14890 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14891 instead of returning a token type immediately.
14892 (<INITIAL>"{"): Set token type.
14893 (<SC_BRACED_CODE>"}"): Use it.
14894 (handle_action_dollar, handle_action_at): Now returns bool
14895 indicating success. Fail if ! current_rule; this prevents a core dump.
14896 (handle_symbol_code_dollar, handle_symbol_code_at):
14897 Remove; merge body into caller.
14898 (handle_dollar, handle_at): Complain in invalid contexts.
14899
14900 * NEWS, doc/bison.texinfo: Document the above.
14901 * NEWS: Fix years and program names in copyright notice.
14902
879ca4f8
PE
149032002-12-17 Paul Eggert <eggert@twinsun.com>
14904
14905 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14906 Reporting, Table of Symbols): Omit mentions of %lex-param and
14907 %parse-param from the documentation for now.
14908
1c5fe69d
PE
149092002-12-15 Paul Eggert <eggert@twinsun.com>
14910
14911 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14912 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14913 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
14914 disagreed with the Bison documentation. Bug
14915 reported by Andrew Walrond.
d600ee67 14916
1c5fe69d
PE
14917 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14918 as the caller now does that.
14919 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14920 (YYEMPTY): Parenthesize right hand side, since others use it.
14921 (yyparse): Don't assume that our generated code is the only code
14922 that sets yychar.
14923
d1de5372
PE
149242002-12-13 Paul Eggert <eggert@twinsun.com>
14925
14926 Version 1.75d.
14927
14928 POSIX requires a "yacc" command.
14929 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14930 (MOSTLYCLEANFILES): Add yacc.
14931 (yacc): New rule.
1c5fe69d 14932 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
14933 as an alias for bison y.
14934
14935 * po/LINGUAS: Add da.
d600ee67 14936
d1de5372
PE
14937 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14938 problem with latest <getopt.h>.
14939 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14940
14941 * doc/fdl.texi: Upgrade to 1.2.
14942 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14943 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14944 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14945 gnulib.
14946 * config/install-sh: Sync with autotools.
14947
14948 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 14949 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
14950 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14951 locations are requested.
14952 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14953 locations are requested.
14954
d0f3fe23
PE
149552002-12-12 Paul Eggert <eggert@twinsun.com>
14956
14957 Remove unportable casts and storage allocation tricks.
14958 While we're at it, remove almost all casts, since they
14959 usually aren't needed and are a sign of trouble.
14960
14961 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14962
14963 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14964 the pointer DSET returned by malloc; this isn't portable.
14965 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14966 Similarly for DERIVES.
14967 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14968 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14969 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14970
14971 * src/derives.c (derives_compute): Do not bother invoking
14972 int_of_rule_number, since rule numbers are integers.
14973
14974 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14975 rather than XMALLOC (char, N).
14976
14977 * src/files.c (filename_split): Rewrite to avoid cast.
14978
14979 * src/gram.h (symbol_number_as_item_number,
14980 item_number_as_symbol_number, rule_number_as_item_number,
14981 item_number_as_rule_number):
14982 Now inline functions rather than macros, to avoid casts.
14983 * src/state.h (state_number_as_int): Likewise.
14984 * src/tables.c (state_number_to_vector_number,
14985 symbol_number_to_vector_number): Likewise.
14986
14987 * src/gram.h (int_of_rule_number): Remove; no longer used.
14988
14989 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14990 since the resulting storage is always stored into.
14991
14992 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14993 where it's needed.
14994
14995 * src/muscle_tab.c (muscle_m4_output):
14996 Now inline. Return bool, not int.
14997 * src/state.c (state_compare): Likewise.
14998 * src/symtab.c (symbol_check_defined,
14999 symbol_check_alias_consistency, symbol_pack, symbol_translation,
15000 hash_compare_symbol, hash_symbol):
15001 Likewise.
15002 * src/uniqstr.c (uniqstr_print): Likewise.
15003 * src/muscle_tab.c (muscle_m4_output_processor):
15004 New function, to avoid casts.
15005 * src/state.c (state_comparator, stage_hasher): Likewise.
15006 * src/symtab.c (symbol_check_defined_processor,
15007 symbol_check_alias_consistency_processor, symbol_pack_processor,
15008 symbol_translation_processor, hash_symbol_comparator,
15009 hash_symbol_hasher): Likewise.
15010 * src/uniqstr.c (uniqstr_print_processor): Likewise.
15011 * src/muscle_tab.c (muscles_m4_output):
15012 Use new functions instead of casting old functions unportably.
15013 * src/state.c (state_hash_new): Likewise.
15014 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
15015 symbols_token_translations_init):
15016 Likewise.
15017 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
15018
15019 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
15020 var instead of casting to long, to avoid casts.
15021 (prepare_states): Use MALLOC rather than alloca, so that we don't
15022 have to worry about alloca.
15023 * src/state.c (state_hash_lookup): Likewise.
15024
15025 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15026 local var instead of casting to unsigned char, to avoid casts.
15027
15028 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15029 STATE_ALLOC): Remove.
15030 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15031 rather than calloc, and use offsetof to avoid allocating slightly
15032 too much storage.
15033 (state_new): Initialize all members.
15034
15035 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15036
15037 * src/symtab.c (symbol_free): Remove; unused.
15038 (symbol_get): Remove cast in lhs of assignment.
15039 (symbols_do): Now static. Accept generic arguments, not
15040 hashing-related ones.
15041
15042 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15043 (symbol_processor): Remove.
15044 (symbols_do): Remove decl; now static.
15045
15046 * src/system.h (alloca): Remove; decl no longer needed.
15047 (<stddef.h>): Include, for offsetof.
15048 (<inttypes.>, <stdint.h>): Include if available.
15049 (uintptr_t): New type, if system lacks it.
15050 (CALLOC, MALLOC, REALLOC): New macros.
15051 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15052 new macros.
15053
15054 * src/tables.c (table_size): Now int, to pacify GCC.
15055 (table_grow, table_ninf_remap): Use signed table size.
15056 (save_row): Don't bother initializing locals when not needed.
15057 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15058 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15059
15060 * src/vcg.h: Correct misspellings.
15061
15062 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15063
15064
15065 * src/getargs.c (getargs): Don't assume EOF == -1.
15066
26b4a969
PE
150672002-12-09 Paul Eggert <eggert@twinsun.com>
15068
15069 Change identifier spellings to avoid collisions with names
15070 that are reserved by POSIX.
15071
15072 Don't use names ending in _t, since POSIX reserves them.
15073 For consistency, remove _e and _s endings -- they're weren't
15074 needed to remove ambiguity. All uses changed.
15075 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15076 turn was just renamed from struniq_t.
15077 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15078 which in turn was just renamed from struniq_processor_t.
15079 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15080 in turn was renamed from hash_compare_struniq_t.
15081 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15082 (state_list): Renamed from state_list_t.
15083 * src/assoc.h (assoc): Renamed from assoc_t.
15084 * src/conflicts.c (enum conflict_resolution): Renamed from
15085 enum conflict_resolution_e.
15086 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15087 (rule_list): Renamed from rule_list_t.
15088 * src/getargs.h (enum trace): Renamed from enum trace_e.
15089 (enum report): Renamed from enum report_e.
15090 * src/gram.h (item_number): Renamed from item_number_t.
15091 (rule_number): Renamed from rule_number_t.
15092 (struct rule_s): Remove the "rule_s" part; not used.
15093 (rule): Renamed from rule_t.
15094 (rule_filter): Renamed from rule_filter_t.
15095 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
15096 (goto_list): Renamed from goto_list_t.
15097 * src/lalr.h (goto_number): Renamed from goto_number_t.
15098 * src/location.h (location): Renamed from location_t.
15099 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
15100 and moved here from:
15101 * src/muscle_tab.h (muscle_entry_t): here.
15102 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
15103 (rule_list): Renamed from rule_list_t.
15104 * src/print_graph.c (static_graph): Renamed from graph.
15105 * src/reader.h (braced_code): Renamed from braced_code_t.
15106 Remove brace_code_e tag.
15107 * src/relation.h (relation_node): Renamed from relation_node_t.
15108 (relation_nodes): Renamed from relation_nodes_t.
15109 (relation): Renamed from relation_t.
15110 * src/state.h (state_number): Renamed from state_number_t.
15111 (struct state): Renamed from struct state_s.
15112 (state): Renamed from state_t.
15113 (transitions): Renamed from transitions_t. Unused (and
15114 misspelled) transtion_s tag removed.
15115 (errs): Renamed from errs_t. Unused errs_s tag removed.
15116 (reductions): Renamed from reductions_t. Unused tag
15117 reductions_s removed.
15118 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15119 (struct symbol_list): Renamed from struct symbol_list_s.
15120 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15121 (struct symbol): Renamed from struct symbol_s.
15122 (symbol): Renamed from symbol_t.
15123 * src/tables.c (vector_number): Renamed from vector_number_t.
15124 (action_number): Renamed from action_t.
15125 * src/tables.h (base_number): Renamed from base_t.
15126 * src/vcg.h (enum color): Renamed from enum color_e.
15127 (enum textmode): Renamed from enum textmode_e.
15128 (enum shape): Renamed from enum shape_e.
15129 (struct colorentry): Renamed from struct colorentry_s.
15130 (struct classname): Renamed from struct classname_s.
15131 (struct infoname): Renamed from struct infoname_s.
15132 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15133 (enum decision): Renamed from enum decision_e.
15134 (enum orientation): Renamed from enum orientation_e.
15135 (enum alignment): Renamed from enum alignment_e.
15136 (enum arrow_mode): Renamed from enum arrow_mode_e.
15137 (enum crossing_type): Renamed from enum crossing_type_e.
15138 (enum view): Renamed from enum view_e.
15139 (struct node): Renamed from struct node_s.
15140 (node): Renamed from node_t.
15141 (enum linestyle): Renamed from enum linestyle_e.
15142 (enum arrowstyle): Renamed from enum arrowstyle_e.
15143 (struct edge): Renamed from struct edge.
15144 (edge): Renamed from edge_t.
15145 (struct graph): Renamed from struct graph_s.
15146 (graph): Renamed from graph_t.
15147 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15148 Rename value_t -> value.
15149 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15150 value_t_as_yystype -> value_as_yystype.
15151
15152 Don't include <errno.h> in the mainstream code, since it
15153 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15154 * lib/get-errno.c, lib/get-errno.h: New files.
15155 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15156 get-errno.c.
15157 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15158 * src/output.c (output_skeleton): Likewise.
15159 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15160 instead of errno.
15161 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15162 Likewise.
15163 (handle_action_dollar, handle_action_at): Likewise.
15164 * src/system.h: Do not include <errno.h>.
15165 (TAB_EXT): Renamed from EXT_TAB.
15166 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15167
15168 Avoid str[a-z]*, since <string.h> reserves that name space.
15169 Change all instances of "struniq" in names to "uniqstr", and
15170 likewise for "STRUNIQ" and "UNIQSTR".
15171 * src/uniqstr.c: Renamed from src/struniq.c.
15172 * src/uniqstr.h: Renamed from src/struniq.h.
15173 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15174 * src/files.c (strsuffix): Remove; unused.
15175 (concat2): Renamed from stringappend. Now static.
15176 * src/files.h (strsuffix, stringappend): Remove; unused.
15177 * src/parse-gram.y (<chars>): Renamed from <string>.
15178 (<uniqstr>): Renamed from <struniq>.
15179 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15180 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15181 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15182 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15183 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15184 (N_EXPAND): Renamed from N_STRETCH.
15185
15186 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15187 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15188 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15189 Remove; unused.
15190 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15191 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15192 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15193 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15194 (BASE_MAXIMUM): Renamed from BASE_MAX.
15195 (BASE_MINIMUM): Renamed from BASE_MIN.
15196 (ACTION_MAX): Remove; unused.
15197 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15198 Unnecessary casts removed from above defines.
15199
15200
15201 Fix misspelling in names.
15202 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15203 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15204 G_NODE_ALIGNEMENT.
15205
15206
15207 * lib/timevar.c (timevar_report): Renamed from time_report,
15208 for consistency with other names.
15209 * lib/timevar.h (timevar_report): New decl.
15210 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15211
15212
15213 Sort include-file uses.
15214
15215 Reorder all include files under src to be in the order "system.h".
15216 then the ../lib include files in angle brackets (alphabetized),
15217 then the . include files in double-quotes (alphabetized). Fix
15218 dependency breakages encountered in this process, as follows:
15219 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15220 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15221 * src/state.h: Include "symtab.h".
15222
996b1c7e
PE
152232002-12-08 Paul Eggert <eggert@twinsun.com>
15224
15225 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15226 since this causes problems when __file__ contains character
15227 sequences like "@" that are treated specially by src/scan-skel.l.
15228 Instead, just use the file's basename. This fixes the bug
15229 reported by Martin Mokrejs in
161a71f3 15230 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 15231
e19c4e5d
PE
152322002-12-06 Paul Eggert <eggert@twinsun.com>
15233
15234 Add support for rules that do not have trailing semicolons, as
15235 POSIX requires. Improve the quality of locations in Bison
15236 diagnostics.
26b4a969 15237
e19c4e5d
PE
15238 * src/location.c: Include <quotearg.h>.
15239 (empty_location): Now const.
15240 (location_print): New function. Follow the recommendation of the
15241 GNU Coding Standards for locations that span file boundaries.
15242 * src/location.h: Do not include <quotearg.h>; no longer needed.
15243 (boundary): New type.
15244 (location_t): Use it. This allows locations to span file boundaries.
15245 All member uses changed: file -> start.file or end.file (as needed),
15246 first_line -> start.line, first_column -> start.column,
15247 last_line -> end.line, last_column -> end.column.
15248 (equal_boundaries): New function.
15249 (LOCATION_RESET, LOCATION_STEP): Remove.
15250 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15251 (empty_location): Now const.
15252 (location_print): New decl.
15253 * src/parse-gram.y (lloc_default): New function, which handles
15254 empty locations more accurately.
15255 (YYLLOC_DEFAULT): Use it.
15256 (%token COLON): Remove.
15257 (%token ID_COLON): New token.
26b4a969 15258 (rules): Use it.
e19c4e5d
PE
15259 (declarations, rules): Remove trailing semicolon.
15260 (declaration, rules_or_grammar_declaration):
15261 Allow empty (";") declaration.
15262 (symbol_def): Remove empty actions; no longer needed.
15263 (rules_or_grammar_declaration): Remove trailing semicolon.
15264 (semi_colon.opt): Remove.
15265 * src/reader.h: Include location.h.
15266 (scanner_cursor): New decl.
15267 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15268 rolling our own.
15269 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15270 of *loc.
15271 (STEP): Remove. No longer needed, now that adjust_location does
15272 the work. All uses removed.
15273 (scanner_cursor): New var.
15274 (adjust_location): Renamed from extend_location. It now sets
15275 *loc and adjusts the scanner cursor. All uses changed.
15276 Don't bother testing for CR.
15277 (handle_syncline): Remove location arg; now updates scanner cursor.
15278 All callers changed.
15279 (unexpected_end_of_file): Now accepts start boundary of token or
15280 comment, not location. All callers changed. Update scanner cursor,
15281 not the location.
15282 (SC_AFTER_IDENTIFIER): New state.
15283 (context_state): Renamed from c_context. All uses changed.
15284 (id_loc, code_start, token_start): New local vars.
15285 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15286 processing of Yacc white space and equivalents here.
15287 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15288 instead of returning ID immediately, since we need to search for
15289 a subsequent colon.
15290 (<INITIAL>"'", "\""): Save token_start.
15291 (<INITIAL>"%{", "{", "%%"): Save code_start.
15292 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15293 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15294 BEGIN context_state at end, not INITIAL.
15295 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15296 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15297 Return correct token start.
15298 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15299 the start of a character, string or multiline comment is found.
15300 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15301 Reduction): Adjust reported locations to match the more-precise
15302 results now expected.
15303 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15304 * tests/reduce.at (Useless Rules, Reduced Automaton,
15305 Underivable Rules): Likewise.
15306 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15307 or "|"' now that so many other tokens are allowed by the new grammar.
15308
15309 * src/complain.h (current_file): Remove duplicate decl;
15310 current_file is now owned by files.h.
15311 * src/complain.c, src/scan-gram.l: Include files.h.
15312
153132002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 15314
e19c4e5d
PE
15315 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15316 promotes to int; it might be unsigned int.
15317 * data/yacc.c (yy_reduce_print): Likewise.
15318
15319 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15320 be #defined in the prologue, not in the Bison declarations.
15321 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 15322
b64755e3
PE
153232002-12-02 Paul Eggert <eggert@twinsun.com>
15324
15325 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15326 * lib/strtoul.c: New file, from gnulib.
15327 This fixes a porting bug reported by Peter Klein in
161a71f3 15328 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 15329
6e746484
PE
153302002-11-30 Paul Eggert <eggert@twinsun.com>
15331
b64755e3
PE
15332 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15333 and put only a forward declaration in the prologue. This is for
15334 consistency with the other scanner helper functions.
15335
6ba55592
PE
15336 Type clashes now generate warnings, not errors, since it
15337 appears that POSIX may allow some grammars with type clashes.
15338 * src/reader.c (grammar_current_rule_check): Warn about
15339 type clashes instead of complaining.
15340 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15341
6e746484
PE
15342 Add Yacc library, since POSIX requires it.
15343 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15344 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15345 * lib/main.c, lib/yyerror.c: New files.
15346
15347 gram_error can be static; it need not be extern.
15348 * src/reader.h (gram_error): Remove decl.
15349 * src/parse-gram.y (gram_error): Now static. Add static decl.
15350 (print_token_value): Omit parameter names from forward decl,
15351 for consistency.
15352
88510f9c
PE
153532002-11-29 Paul Eggert <eggert@twinsun.com>
15354
6e746484
PE
15355 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15356 be declared before being used. E.g., one should typically
15357 declare them in the prologue. Use GNU coding style in examples.
15358 Put "const" consistently after the type it modifies. Mention
15359 that C99 supports "inline". Mention that yyerror traditionally
15360 returns "int".
15361
88510f9c
PE
15362 %parse-param and %lex-param now take just one argument, the
15363 declaration; the argument name is deduced from the declaration.
15364
15365 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15366 Reporting, Table of Symbols): Document this.
15367 * src/parse-gram.y (add_param): New function.
15368 (COMMA): Remove.
15369 (declaration): Implement new rule for %parse-param and %lex-param.
15370 * src/scan-gram.l: "," now elicits a warning, rather than being
15371 a token; this is more compatible with byacc.
15372 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15373
bb92250c
PE
153742002-11-27 Paul Eggert <eggert@twinsun.com>
15375
15376 Rename identifiers to avoid real and potential collisions.
15377
15378 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15379 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 15380 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
15381 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15382 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15383 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15384 All uses changed.
15385 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15386 The name "yycontrol" violates the name space rules, and this stuff
15387 wasn't being used anyway.
15388 (input): Remove action; this stuff wasn't being used.
15389 (gram_error): Rename local variable yylloc -> loc.
15390 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15391 (YY_DECL): Don't use "yy" at start of local variables.
15392 All uses changed, e.g., yylloc -> loc.
15393 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15394 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15395 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15396 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15397
15398 * src/parse-gram.y (gram_error): loc is now const *.
15399 * src/reader.h (gram_error): Likewise.
15400
3af4feb2
PE
154012002-11-24 Paul Eggert <eggert@twinsun.com>
15402
15403 Version 1.75c.
15404
15405 * tests/actions.at (Actions after errors): Use an output format
15406 more similar to that of the Printers and Destructors test.
15407 Test the position of the ';' token too.
15408 (Printers and Destructors): Likewise.
15409 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15410 unnecessarily alarming people when the test fails.
15411
15412 * data/yacc.c (yyerrlab1): Move this label down, so that the
15413 parser does not discard the lookahead token if the user code
15414 invokes YYERROR. This change is required for POSIX conformance.
15415
15416 * lib/error.c: Sync with gnulib.
15417
154182002-11-22 Paul Eggert <eggert@twinsun.com>
15419
15420 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15421 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15422 * lib/xmalloc.c: Likewise.
26b4a969 15423
58004308
PE
154242002-11-20 Paul Eggert <eggert@twinsun.com>
15425
15426 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15427
154282002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 15429
58004308
PE
15430 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15431 should use `if (! x) abort ();' rather than `assert (x);', and
15432 anyway it's one less thing to worry about configuring.
15433
15434 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15435 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15436 and replace all instances of assert with abort.
15437 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15438 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15439
15440 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15441 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15442 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15443 hash_find_entry, hash_rehash, hash_insert): Likewise.
15444 * src/conflicts.c (resolve_sr_conflict): Likewise.
15445 * src/lalr.c (set_goto_map, map_goto): Likewise.
15446 * src/nullable.c (nullable_compute): Likewise.
15447 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15448 * src/reader.c (packgram, reader): Likewise.
15449 * src/state.c (state_new, state_free, state_transitions_set,
15450 state_reduction_find): Likewise.
15451 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15452 symbol_pack): Likewise.
15453 * src/tables.c (conflict_row, pack_vector): Likewise.
15454 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15455 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15456 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15457 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15458
15459 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15460 (ARGMATCH_CONSTRAINT): New macro.
15461 (ARGMATCH_ASSERT): Use it.
15462
15463 * src/system.h (verify): New macro.
15464 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15465 rather than assert.
15466 * src/tables.c (tables_generate): Likewise.
15467
15468 * src/struniq.c (struniq_assert): Now returns void, and aborts
15469 if the assertion is false.
15470 (struniq_assert_p): Remove.
15471 * src/struniq.h: Likewise.
15472
76ae8198
PE
154732002-11-18 Paul Eggert <eggert@twinsun.com>
15474
15475 * data/glr.c (yygetLRActions): Replace `yyindex' with
15476 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15477 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 15478 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 15479
d3c4e709
AD
154802002-11-18 Akim Demaille <akim@epita.fr>
15481
15482 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15483 space.
15484 From Tim Van Holder.
15485
8d8a7238
PE
154862002-11-17 Paul Eggert <eggert@twinsun.com>
15487
15488 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15489 to "SyntaxError" for consistency with my 2002-11-15 change.
15490
15491 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15492 not define to {}, since this breaks the common use of `YYDPRINTF
15493 ((...));' if a single statement is desired (e.g. before `else').
15494 Work around GCC warnings by surrounding corresponding calls with
15495 {} if needed.
15496 (yyhasResolvedValue): Remove unused function.
15497 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15498 loop body.
15499 (yyreportSyntaxError): Renamed from yyreportParseError.
15500 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15501 All uses changed.
15502 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15503 extern when possible. Remove unused initializations.
15504
b0937b22
AD
155052002-11-16 Akim Demaille <akim@epita.fr>
15506
15507 Augment the similarity between GLR and LALR traces.
15508
15509 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15510 (YY_REDUCE_PRINT): New.
15511 (yyparse): Use them.
15512 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15513 YYDPRINT here.
15514 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15515 state reached after the reduction/recovery, since...
15516 (yyparse, yyprocessOneStack): Report the state we are entering in.
15517
c5e3e510
AD
155182002-11-16 Akim Demaille <akim@epita.fr>
15519
15520 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15521 Add support for --trace=skeleton.
15522 * src/scan-skel.l: %option debug.
15523 Scan strings of non-@ or \n instead of character by character.
15524 (scan_skel): Handle trace_skeleton.
15525 (QPUTS): New.
15526 (@output_parser_name@, @output_header_name@): ``Restore'' their
15527 support (used to be M4 macros).
15528 * data/yacc.c: Quote larger chunks, a la glr.c.
15529 * data/lalr1.cc: Likewise.
15530 The header guards are no longer available, so use some other
15531 string than `YYLSP_NEEDED'.
15532
4c6cc1db
AD
155332002-11-16 Akim Demaille <akim@epita.fr>
15534
15535 Make the ``Printers and Destructors'' test more verbose, taking
15536 `yacc.c''s behavior as (possibly wrong) reference.
15537
15538 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15539 instead of fprint on stdout.
15540 Set and report the last_line of the symbols.
15541 Consistently display values and locations.
15542
6d9e8019
PE
155432002-11-16 Paul Eggert <eggert@twinsun.com>
15544
15545 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15546
6e649e65
PE
155472002-11-15 Paul Eggert <eggert@twinsun.com>
15548
b25d88f6
PE
15549 * tests/actions.at (Actions after errors): New test case.
15550
6e649e65
PE
15551 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15552 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15553 tests/action.at, tests/calc.at, tests/conflicts.at,
15554 tests/cxx-type.at, tests/regression.at:
15555 "parse error" -> "syntax error" for POSIX compatibility.
15556 "parsing stack overflow..." -> "parser stack overflow" so
15557 that code matches Bison documentation.
15558
0f39aab9
AD
155592002-11-15 Akim Demaille <akim@epita.fr>
15560
15561 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15562 take two BRACED_CODE, not two string_content.
15563 Free the scanner's obstack when we are done.
15564 (code_content): New.
15565 * tests/calc.at: Adjust.
15566 * doc/bison.texinfo: Adjust.
15567 Also, make sure to include the `,' for these declarations.
15568
761c1926
AD
155692002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15570
15571 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15572 definition; avoids potential autoreconf problems.
15573
b0f98b10
AD
155742002-11-15 Akim Demaille <akim@epita.fr>
15575
15576 Always check the value returned by yyparse.
15577
15578 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15579 returned by yyparse.
15580 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15581 Adjust calls.
15582 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15583 returned by yyparse.
15584
970785f1
PH
155852002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15586
15587 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15588 on input.at test.
15589
8fcc7db1
PE
155902002-11-14 Paul Eggert <eggert@twinsun.com>
15591
7ec1b48e
PE
15592 * src/output.c (output_skeleton): Call xfopen instead of
15593 duplicating xfopen's body.
15594
cfff7583 15595 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 15596 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 15597
8fcc7db1
PE
15598 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15599 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15600 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15601 file twice in the grammar, as an extra check.
15602
15603 * tests/input.at (Torturing the Scanner): Surround the
15604 backslash-newline tests with "#if 0", to make it less likely that
15605 we'll run into compiler bugs. Bring back solitary \ inside
15606 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 15607 test backslash-newline in C character constant.
8fcc7db1 15608
4e8d992c
AD
156092002-11-14 Akim Demaille <akim@epita.fr>
15610
15611 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15612 status of the compiler.
f32b346d 15613 Calling `exit 1' is no longer needed.
4e8d992c
AD
15614 Reported by Nelson H. F. Beebe.
15615
9501dc6e
AD
156162002-11-14 Akim Demaille <akim@epita.fr>
15617
15618 * tests/atlocal.in (CPPFLAGS): We have config.h.
15619 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15620 New.
15621 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15622 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15623 * tests/regression.at, tests/torture.at: Use them for all the
15624 grammars that are to be compiled.
15625 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15626 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15627 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15628
18b519c0
AD
156292002-11-14 Akim Demaille <akim@epita.fr>
15630
15631 * doc/bison.texinfo: Various formatting changes (alignments in
15632 samples, additional @group/@end group, GCS in samples.
15633 Use @deffn instead of simple @table to define the directives,
15634 macros, variables etc.
15635
9a86cdb9
PE
156362002-11-13 Paul Eggert <eggert@twinsun.com>
15637
daa33def 15638 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 15639 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 15640
daa33def 15641 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 15642 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
15643 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15644 * tests/headers.at (export YYLTYPE): Likewise.
15645
15646 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 15647 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 15648
9a86cdb9
PE
15649 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15650 comments, since they're not portable. Use GNU coding style.
15651
9c1e26bd
AD
156522002-11-13 Akim Demaille <akim@epita.fr>
15653
15654 * data/yacc.c: Leave bigger chunks of quoted text.
15655 (YYDSYMPRINTF): New.
15656 Use it to report symbol activities.
15657 * data/glr.c (YYDSYMPRINTF): New.
15658 Use it.
15659
87f721cc
PE
156602002-11-12 Paul Eggert <eggert@twinsun.com>
15661
15662 Version 1.75b.
15663
15664 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15665 (yyglrReduce): Return yyok, not 0.
15666 This should avoid the enumerated-type warnings reported
464c6927 15667 by Nelson H. F. Beebe in
161a71f3 15668 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
15669
15670 * lib/bbitset.h (BITSET_INLINE): Remove.
15671 * lib/bitset.h [! BITSET_INLINE]: Remove.
15672 (bitset_set, bitset_reset, bitset_test): Rename local vars
15673 to avoid shadowing warnings by GCC.
15674
15675 * data/glr.c (inline): Remove #define. It's the user's
15676 responsibility to #define it away, just like 'const'.
464c6927 15677 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 15678 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 15679
87f721cc
PE
15680 * Makefile.maint (po-check): Scan .l and .y files instead of the
15681 .c and the .h files that they generate. This fixes the bug
15682 reported by Tim Van Holder in:
161a71f3 15683 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
15684 Look for N_ as well as for _. Try to avoid matching #define for
15685 N_ and _.
15686 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15687 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15688 * src/scan-gram.l: Revamp regular expressions so that " and '
15689 do not confuse xgettext.
15690
15691 * src/struniq.h (struniq_new): Do not declare the return type
15692 to be 'const'; this violates the C standard.
15693 * src/struniq.c (struniq_new): Likewise.
15694
be14ade5
AD
156952002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15696
15697 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15698 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15699 linker.
15700
05291fbc
AD
157012002-11-12 Akim Demaille <akim@epita.fr>
15702
15703 * Makefile.maint: Sync with Autoconf:
15704 (local_updates): New.
15705
1f5fd52e
AD
157062002-11-12 Akim Demaille <akim@epita.fr>
15707
15708 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15709
283f1e64
AD
157102002-11-12 Akim Demaille <akim@epita.fr>
15711
15712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15713 locations.
15714
886b69d1
AD
157152002-11-12 Akim Demaille <akim@epita.fr>
15716
15717 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15718 not yyvalue.
15719
3df37415
AD
157202002-11-12 Akim Demaille <akim@epita.fr>
15721
15722 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15723 Use it to test the GLR parser.
15724
7bd6c77e
AD
157252002-11-12 Akim Demaille <akim@epita.fr>
15726
15727 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15728 defines it.
15729 * data/glr.c (yystos): New.
15730 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15731 (YYDSYMPRINT): New.
15732 (yyval): Don't define it, it is handled via M4.
15733 (yyrecoverParseError): Free verbosely the discarded symbols.
15734 * data/yacc.c (yysymprint): Remove, rather...
15735 (b4_yysymprint_generate): invoke.
15736 * data/c.m4 (b4_yysymprint_generate): New.
15737 Accept pointers as arguments, as opposed to the version from
15738 yacc.c.
15739 (b4_yydestruct_generate): Likewise.
15740 * tests/cations.at (Printers and Destructors): Use Bison directives
15741 instead of CPP macros.
15742 Don't rely on internal details.
15743
b0400cc6
AD
157442002-11-12 Akim Demaille <akim@epita.fr>
15745
15746 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15747 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15748 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15749 it against YYEMPTY and so forth), work on yytoken (i.e., set
15750 it to YYEMPTY etc.).
15751 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15752 (b4_symbol_actions): Remove.
15753 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15754 for 0, end-of-input.
15755
72f889cc
AD
157562002-11-12 Akim Demaille <akim@epita.fr>
15757
15758 * doc/bison.texinfo (Destructor Decl): New.
15759
b1ae9233
AD
157602002-11-12 Akim Demaille <akim@epita.fr>
15761
15762 * src/tables.c (tables_generate): Use free for pointers that
15763 cannot be NULL, not XFREE.
15764 (pack_vector): Use assert, not fatal, for bound violations.
15765 * src/state.c (state_new): Likewise.
15766 * src/reader.c (reader): Likewise.
15767 * src/lalr.c (set_goto_map): Likewise.
72f889cc 15768 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
15769 the file name.
15770
7ec2d4cd
AD
157712002-11-12 Akim Demaille <akim@epita.fr>
15772
15773 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15774 Restore.
15775 * src/scan-gram.l (last_string): Is global to the file, not to
15776 yylex.
15777 * src/parse-gram.y (input): Don't append the epilogue here,
15778 (epilogue.opt): do it here, and free the scanner's obstack.
15779 * src/reader.c (epilogue_set): Rename as...
15780 (epilogue_augment): this.
15781 * data/c.m4 (b4_epilogue): Defaults to empty.
15782
573a6cd3
AD
157832002-11-12 Akim Demaille <akim@epita.fr>
15784
15785 * src/getargs.c (long_options): Remove duplicates.
15786 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15787 Remove.
15788 * doc/bison.rnh: Remove.
15789 * doc/bison.texinfo (VMS Invocation): Remove.
15790
95612cfa
AD
157912002-11-12 Akim Demaille <akim@epita.fr>
15792
15793 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15794 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15795
15796 Use struniq for symbols.
15797
15798 * src/symtab.h (symbol_t): The tag member is a struniq.
15799 (symbol_type_set): Adjust.
15800 * src/symtab.c (symbol_new): Takes a struniq.
15801 (symbol_free): Don't free the tag member.
15802 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15803 (hash_compare_symbol, hash_symbol): these.
15804 Use the fact that tags as struniqs.
15805 (symbol_get): Use struniq_new.
15806 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15807 Returns a strniq.
15808 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15809 and type members are struniqs.
15810 * src/reader.c (get_merge_function)
15811 (grammar_current_rule_merge_set): Adjust.
15812 (TYPE, current_type): Are struniq.
15813
15814 Use struniq for file names.
15815
15816 * src/files.h, src/files.c (infile): Split into...
15817 (grammar_file, current_file): these.
15818 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15819 * src/reduce.c (reduce_print): Likewise.
15820 * src/getargs.c (getargs): Likewise.
15821 * src/complain.h, src/complain.c: Likewise.
15822 * src/main.c (main): Call struniqs_new early enough to use it for
15823 file names.
15824 Don't free the input file name.
15825
3e6656f9
AD
158262002-11-12 Akim Demaille <akim@epita.fr>
15827
15828 * src/symtab.c (symbol_free): Remove dead deactivated code:
15829 type_name are properly removed.
15830 Don't use XFREE to free items that cannot be NULL.
15831 * src/struniq.h, src/struniq.c: New.
15832 * src/main.c (main): Initialize/free struniqs.
15833 * src/parse-gram.y (%union): Add astruniq member.
15834 (yyprint): Adjust.
15835 * src/scan-gram.l (<{tag}>): Return a struniq.
15836 Free the obstack bit that used to store it.
15837 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15838
7672019c
PE
158392002-11-11 Paul Eggert <eggert@twinsun.com>
15840
15841 Revamp to fix many (but not all) of the C- and M4-related quoting
15842 problems. Among other things, this fixes the Bison bug reported
15843 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 15844 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
15845
15846 Use new @ escapes consistently. Represent brackets with @{ and @}
15847 rather than @<:@ and @:>@, since this works a bit better with dumb
15848 editors like vi. Represent @ with @@, since @ is now consistently
15849 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15850 __ofile__, to avoid unexpected expansions. Similarly, use @output
15851 rather than #output.
15852
15853 * data/c.m4 (b4_copyright): Omit file name from comment, since
15854 the file name could contain "*/".
15855 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15856 be quoted. All uses changed.
15857
15858 * data/glr.c: Use new @ escapes consistently.
15859 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15860 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15861 Remove, since they couldn't handle arbitrary characters in file
15862 names.
15863 * data/lalr1.cc: Likewise.
15864 * data/yacc.c: Likewise.
15865
15866 * src/files.c (output_infix): Remove; all uses removed.
15867 * src/files.h: Likewise.
15868
15869 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15870 mishandled funny characters in file names, and anyway it isn't
15871 needed any more.
15872 * data/yacc.c: Likewise.
15873 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15874
15875 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15876 * data/yacc.c: Likewise.
15877
15878 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15879 strings now.
15880 (muscle_init): Quote filename as a C string.
15881 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15882 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15883 * src/output.c (escaped_file_name_output): New function.
15884 (prepare_symbols): Quote tokens for M4.
15885 (prepare): Don't insert output_infix, output_prefix,
15886 output_parser_name, output_header_name; this is now down by scan-skel.
15887 Insert skeleton as a C string.
15888
15889 * src/output.c (user_actions_output, symbol_destructors_output,
15890 symbol_printers_output): Quote filenames for C and M4.
15891 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15892
15893 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15894 escapes other than \\ and \'; this simplifies the code.
15895 (<SC_STRING>): Likewise, for \\ and \".
15896 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15897 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15898 Use new escapes @{ and @} for [ and ].
15899
15900 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15901 them with auto vars.
15902 Switch to new escape scheme, where @ is the escape character uniformly.
15903 Abort if a stray escape character is found. Avoid unbounded input
15904 buffer when parsing non-escaped text.
15905
15906 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15907 __oline__, #output, $@, and @{ do not have unintended meanings.
15908
acea4f3b
PE
159092002-11-09 Paul Eggert <eggert@twinsun.com>
15910
15911 Fix the test failure due to GCC warnings described in
161a71f3 15912 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
15913 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15914 evaluate to 0 if it's impossible for NINF to be in the respective
15915 table.
15916 (yygetLRActions, yyrecoverParseError): Use them.
15917
15918 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15919 counted in the token inserted at end of file. Now takes
15920 location_t *, not location_t, so that the location can be
15921 adjusted. All uses changed.
15922
15923 * tests/regression.at (Invalid inputs): Adjust wording in
15924 diagnostic to match the new behavior.
15925
15926 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15927 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15928 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15929 abort ();'. This reduces the runtime of the "Many lookaheads"
15930 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15931 GCC 3.2.
15932
20ef1ad5
PE
159332002-11-07 Paul Eggert <eggert@twinsun.com>
15934
15935 * src/parse-gram.y (CHARACTER): Remove unused token.
15936 All uses removed.
15937
15938 * src/scan-gram.l: Remove stack option. We no longer use the
15939 stack, since the stack was never deeper than 1; instead, use the
15940 new auto var c_context to record the stacked value.
15941
15942 Remove nounput option. At an unexpected end of file, we now unput
15943 the minimal input necessary to end cleanly; this simplifies the
15944 code.
15945
15946 Avoid unbounded token sizes where this is easy.
15947
15948 (unexpected_end_of_file): New function.
15949 Use it to systematize the error message on unexpected EOF.
15950 (last-string): Now auto, not static.
15951 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15952 (scanner_last_string_free): Remove; not used.
15953 (percent_percent_count): Move decl to just before use.
15954 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15955 not the (never otherwised-used) CHARACTER.
15956
93724f13
AD
159572002-11-07 Akim Demaille <akim@epita.fr>
15958
15959 Let yyerror always receive the msg as last argument, so that
15960 yyerror can be variadic.
15961
15962 * data/yacc.c (b4_yyerror_args): New.
15963 Use it when calling yyerror.
15964 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15965 Use it when calling yyerror.
15966 * doc/bison.texinfo (Error Reporting): Adjust.
15967 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15968 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15969
6e40b4eb
AD
159702002-11-06 Akim Demaille <akim@epita.fr>
15971
15972 #line should have quoted strings.
15973 Ideally, this should be done by m4_quotearg.
15974
15975 * src/scan-skel.l: Include quotearg.h.
15976 Quote __ofile__.
15977 * src/output.c (symbol_printers_output)
15978 (symbol_destructors_output): Quote the file name.
15979
2dfbfc12
AD
159802002-11-06 Akim Demaille <akim@epita.fr>
15981
15982 * tests/regression.at (Invalid inputs): Adjust to the recent
15983 messages.
15984
437c2d80
AD
159852002-11-06 Akim Demaille <akim@epita.fr>
15986
15987 Restore --no-lines.
15988 Reported by Jim Kent.
15989
15990 * data/c.m4 (b4_syncline): New.
15991 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15992 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15993 * src/output.c (user_actions_output): Likewise.
15994 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 15995 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 15996
900c5db5
AD
159972002-11-06 Akim Demaille <akim@epita.fr>
15998
15999 * src/main.c (main): Free `infile'.
16000 * src/scan-gram.l (handle_syncline): New.
16001 Recognize `#line'.
16002 * src/output.c (user_actions_output, symbol_destructors_output)
16003 (symbol_printers_output): Use the location's file name, not
16004 infile.
16005 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16006
e183b123 160072002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 16008
e183b123 16009 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 16010 either has GLR conflict entries.
e183b123 16011
193eb6b7
PE
160122002-11-05 Paul Eggert <eggert@twinsun.com>
16013
e183b123
PE
16014 * src/scan-gram.l: Use more accurate diagnostics, e.g.
16015 "integer out of range" rather than "invalid value".
16016 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
16017 accordingly.
16018
193eb6b7
PE
16019 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
16020 Also, remove one static variable in the scanner.
16021
16022 * src/scan-gram.l (braces_level): Now auto, not static.
16023 Initialize to zero if the compiler is being picky.
16024 (INITIAL): Clear braces_level instead of incrementing it.
16025 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16026 as POSIX 1003.1-2001 requires.
16027 * src/system.h (IF_LINT): New macro, taken from coreutils.
16028 * configure.ac: Define "lint" if --enable-gcc-warnings.
16029
29c01725
AD
160302002-11-05 Akim Demaille <akim@epita.fr>
16031
16032 * src/scan-gram.l: When it starts with `%', complain about the
16033 whole directive, not just that `invalid character: %'.
16034
8aeac3ca
AD
160352002-11-04 Akim Demaille <akim@epita.fr>
16036
16037 * Makefile.maint: Update from Autoconf.
16038 (update, cvs-update, po-update, do-po-update): New.
16039
793a58bb
AD
160402002-11-04 Akim Demaille <akim@epita.fr>
16041
16042 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16043 and yyerror.
16044 Have yyerror `use' its arguments.
16045 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16046 returns true when location & yacc & pure & parse-param.
16047 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16048
c4d720cd
AD
160492002-11-04 Akim Demaille <akim@epita.fr>
16050
16051 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16052 clashes.
16053 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16054 font-lock-mode.
16055 Use complain_at.
16056 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16057 slot 0.
16058
613a0dc5
PE
160592002-11-03 Paul Eggert <eggert@twinsun.com>
16060
16061 * src/reader.c (get_merge_function, grammar_current_rule_check):
16062 Use consistent diagnostics for reporting type name clashes.
16063 Quote the types with <>, for consistency with Yacc.
16064 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16065
2a8d363a
AD
160662002-11-03 Akim Demaille <akim@epita.fr>
16067
16068 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16069 New.
16070 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16071 (b4_parse_param): Remove.
16072 Use b4_identification.
16073 Propagate b4_pure_args where needed to pass them to yyerror.
16074 * data/glr.m4 (b4_parse_param): Remove.
16075 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16076 (b4_lpure_formals): New.
16077 Use b4_identification.
16078 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16079 b4_user_formals and b4_user_args.
16080 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16081 (yyreportAmbiguity): When using a pure parser, also need
16082 the location, and the parse-params.
16083 Adjust callers.
16084 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16085 When using a pure parser, also need the parse-params.
16086 Adjust callers.
16087 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16088 (%pure-parser + %parse-param) LALR and GLR parsers.
16089 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16090 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16091 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16092 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16093 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16094 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
16095 * doc/bison.texinfo: Untabify the whole file.
16096 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
16097 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
16098 (Error Reporting): Adjust to these new directives.
16099 Document %error-verbose, deprecate YYERROR_VERBOSE.
16100
9e32add8
AD
161012002-11-03 Akim Demaille <akim@epita.fr>
16102
16103 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
16104 AT_CHECK_CALC_GLR invocations to use % directives, instead of
16105 command line options.
16106 * tests/cxx-type.at: Formatting changes.
16107
b02d90a5
PE
161082002-11-03 Paul Eggert <eggert@twinsun.com>
16109
16110 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16111 to count columns correctly, and to check for invalid inputs.
9e32add8 16112
b02d90a5
PE
16113 Use mbsnwidth to count columns correctly. Account for tabs, too.
16114 Include mbswidth.h.
16115 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16116 (extend_location): New function.
16117 (YY_LINES): Remove.
16118
16119 Handle CRLF in C code rather than in Lex code.
16120 (YY_INPUT): New macro.
16121 (no_cr_read): New function.
16122
16123 Scan UCNs, even though we don't fully handle them yet.
16124 (convert_ucn_to_byte): New function.
16125
16126 Handle backslash-newline correctly in C code.
16127 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16128 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16129 all uses changed.
16130 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16131 Use {splice} wherever C allows backslash-newline.
16132 YY_STEP after space, newline, vertical-tab.
16133 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 16134
b02d90a5
PE
16135 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16136
16137 ({int}, handle_action_dollar, handle_action_at): Check for integer
16138 overflow.
9e32add8 16139
b02d90a5
PE
16140 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16141
16142 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16143 as well as \000. Check for UCHAR_MAX, not 255.
16144 Allow \x with an arbitrary positive number of digits, as in C.
16145 Check for overflow here.
16146 Allow \? and UCNs, for compatibility with C.
16147
16148 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16149 with quote slot used by complain_at.
16150
16151 * tests/input.at: Add tests for backslash-newline, m4 quotes
16152 in symbols, long literals, and funny escapes in strings.
16153
16154 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16155 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16156 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16157 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16158 * m4/mbswidth.m4: New file, from GNU coreutils.
16159
16160 * doc/bison.texinfo (Grammar Outline): Document // comments.
16161 (Symbols): Document that trigraphs have no special meaning in Bison,
16162 nor is backslash-newline allowed.
16163 (Actions): Document that trigraphs have no special meaning.
16164
16165 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16166 no longer used.
16167
161682002-11-02 Paul Eggert <eggert@twinsun.com>
16169
16170 * src/reader.c: Don't include quote.h; not needed.
16171 (get_merge_function): Reword warning to be consistent with
16172 type clash diagnostic in grammar_current_rule_check.
16173
16174 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16175 bug in trigraph handling.
16176
16177 * src/output.c (prepare_symbols): When printing token names,
16178 escape "[" as "@<:@" and likewise for "]".
16179
16180 * src/system.h (errno): Remove declaration, as we are now
16181 assuming C89 or better, and C89 guarantees errno.
16182
762b212b
PE
161832002-10-30 Paul Eggert <eggert@twinsun.com>
16184
16185 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16186 Check for close failures.
16187 * src/files.h (xfclose): Return void, not int, since it always
16188 returned zero.
16189 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16190 indicates one.
16191 * src/output.c (output_skeleton): Use xfclose rather than fclose
16192 and ferror. xfclose now checks ferror.
16193
16194 * data/glr.c (YYLEFTMOST_STATE): Remove.
16195 (yyreportTree): Use a stack-based leftmost state. This avoids
16196 our continuing battles with bogus warnings about initializers.
16197
56100c60
AD
161982002-10-30 Akim Demaille <akim@epita.fr>
16199
16200 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16201 #if.
16202
51b4a04c
PH
162032002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16204
16205 * tests/glr-regr1.at: New test for reported regressions.
16206 * tests/testsuite.at: Add glr-regr1.at test.
16207 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 16208
bf1ebda2
PE
162092002-10-24 Paul Eggert <eggert@twinsun.com>
16210
5c16c6b1
PE
16211 Version 1.75a.
16212
bf1ebda2
PE
16213 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16214 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16215 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16216 Don't assume strdup exists; POSIX says its an XSI extension.
16217 Check for buffer overflow on input.
16218
b526ee61
AD
162192002-10-24 Akim Demaille <akim@epita.fr>
16220
16221 * src/output.c (output_skeleton): Don't disable M4sugar comments
16222 too soon: it results in comments being expanded.
16223 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16224 first output.
16225
f1886bb2
AD
162262002-10-24 Akim Demaille <akim@epita.fr>
16227
16228 * data/yacc.c (m4_int_type): New.
16229 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16230 char' as only yacc.c wants K&R portability.
16231 * data/glr.c (yysigned_char): Remove.
16232 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16233 Reported by Quoc Peyrot.
16234
c5576256
PE
162352002-10-23 Paul Eggert <eggert@twinsun.com>
16236
16237 * src/main.c (main): With --trace=time, report times even if a
16238 non-fatal error occurs. Formerly, the times were reported in some
16239 such cases but not in others.
16240 * src/reader.c (reader): Just return if a complaint has been issued,
16241 instead of exiting, so that 'main' can report times.
16242
27b0ffea
AD
162432002-10-22 Akim Demaille <akim@epita.fr>
16244
16245 * src/system.h: Include sys/types.
16246 Reported by Bert Deknuydt.
16247
223a7883
PE
162482002-10-23 Paul Eggert <eggert@twinsun.com>
16249
16250 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16251 Suggested by Art Haas.
16252
162532002-10-22 Paul Eggert <eggert@twinsun.com>
16254
16255 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16256 decl; not needed any more.
16257 * src/main.c (main): Use return to exit, undoing yesterday's change.
16258 The last OS that we could find where this wouldn't work is
16259 SunOS 3.5, and that's too old to worry about now.
16260
16261 * data/glr.c (struct yyltype): Define members even when not
16262 doing locations. This is more consistent with yacc.c, and it
16263 works around the following bug reports:
161a71f3
PE
16264 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16265 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 16266
223a7883
PE
16267 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16268 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16269 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16270
8b76775a
AD
162712002-10-22 Akim Demaille <akim@epita.fr>
16272
16273 * data/README: New.
16274
6db10d14
PE
162752002-10-21 Paul Eggert <eggert@twinsun.com>
16276
16277 Be consistent about 'bool'; the old code used an enum in one
16278 module and an int in another, and this violates the C standard.
16279 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16280 * configure.ac (AC_HEADER_STDBOOL): Add.
16281 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16282 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16283 * src/symtab.c (hash_compare_symbol_t): Likewise.
16284 * src/system.h (bool, false, true): Use a definition consistent
16285 with ../lib/hash.c. All uses changed.
16286
16287 * src/complain.c (warning_issued): Renamed from warn_message_count,
16288 so that we needn't worry about integer overflow (!).
16289 Now of type bool. All uses changed.
16290 (complaint_issued): Renamed from complain_message_count; likewise.
16291
16292 * src/main.c (main): Use exit to exit with failure.
27b0ffea 16293
6db10d14
PE
16294 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16295 rather than 1 and 0.
16296 * src/main.c (main): Likewise.
16297 * src/getargs.c (getargs): Likewise.
16298 * src/reader.c (reader): Likewise.
16299
16300 * src/getarg.c (getargs): Remove duplicate code for
16301 "Try `bison --help'".
16302
16303 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16304 What was that "2" for?
16305
16306 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16307 * src/getargs.c (usage): Likewise.
16308
16309 * src/getargs.c (getargs): When there are too few operands, report
16310 the last one. When there are too many, report the first extra
16311 one. This is how diffutils does it.
16312
92a060fd
PE
163132002-10-20 Paul Eggert <eggert@twinsun.com>
16314
16315 Remove K&R vestiges.
16316 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16317 * src/complain.c (VA_START): Remove. Assume prototypes.
16318 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16319 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16320 fatal): Assume prototypes.
16321 * src/complain.h: Assume prototypes.
16322 * src/system.h (PARAMS): Remove.
16323 Include <limits.h> unconditionally, since it's guaranteeed even
16324 for a freestanding C89 compiler.
16325 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16326 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 16327
e7cb57c0
AD
163282002-10-20 Akim Demaille <akim@epita.fr>
16329
16330 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16331 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16332 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16333 (yyresolveStates, yyresolveAction, yyresolveStack)
16334 (yyprocessOneStack): Use them.
16335 (yy_reduce_print): New.
16336 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16337
0245f82d
AD
163382002-10-20 Akim Demaille <akim@epita.fr>
16339
16340 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16341 arguments and output `void'.
16342 (b4_c_function): Rename as...
16343 (b4_c_function_def): this.
16344 (b4_c_function_decl, b4_c_ansi_function_def)
16345 (b4_c_ansi_function_decl): New.
16346 Change the interpretation of the arguments: before `int, foo', now
16347 `int foo, foo'.
16348 * data/yacc.c (yyparse): Prototype and define thanks to these.
16349 Adjust b4_c_function_def uses.
16350 * data/glr.c (yyparse): Likewise, but ANSI only.
16351
39912f52
AD
163522002-10-20 Akim Demaille <akim@epita.fr>
16353
16354 * src/output.c (prepare): Move the definition of `tokens_number',
16355 `nterms_number', `undef_token_number', `user_token_number_max'
16356 to...
16357 (prepare_tokens): Here.
16358 (prepare_tokens): Rename as...
16359 (prepare_symbols): this.
16360 (prepare): Move the definition of `rules_number' to...
16361 (prepare_rules): here.
16362 (prepare): Move the definition of `last', `final_state_number',
16363 `states_number' to...
16364 (prepare_states): here.
16365 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16366
20c1e2ad
AD
163672002-10-20 Akim Demaille <akim@epita.fr>
16368
16369 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16370
21964f43
AD
163712002-10-20 Akim Demaille <akim@epita.fr>
16372
16373 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16374 * data/c.m4: here.
16375
66d30cd4
AD
163762002-10-20 Akim Demaille <akim@epita.fr>
16377
16378 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16379 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16380 `pair'.
16381 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16382 `name' to...
16383 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16384 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16385 These.
16386
95f2c9fe
PE
163872002-10-19 Paul Eggert <eggert@twinsun.com>
16388
16389 Do not create a temporary file, as that involves security and
16390 cleanup headaches. Instead, use a pair of pipes.
16391 Derived from a suggestion by Florian Krohm.
16392 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16393 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16394 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16395 (BISON_PREREQ_SUBPIPE): Add.
16396 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16397 Add subpipe.h, subpipe.c.
16398 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16399 * po/POTFILES.in: Add lib/subpipe.c.
16400 * src/output.c: Include "subpipe.h".
16401 (m4_invoke): Remove decl.
16402 (scan_skel): New decl.
16403 (output_skeleton): Use pipe rather than temporary file for m4 input.
16404 Check that m4sugar.m4 is readable, to avoid deadlock.
16405 Check for pipe I/O error.
16406 * src/scan-skel.l (readpipe): Remove decl.
16407 (scan_skel): New function, to be used in place of m4_invoke.
16408 Read from stream rather than file.
66d30cd4 16409
95f2c9fe
PE
16410 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16411 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16412 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16413 this generates a more-accurate value anyway.
16414
16415 * lib/timevar.c (timervar_accumulate): Rename locals to
16416 avoid confusion with similarly-named more-global.
16417 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16418
16419 * src/output.c (prepare): Use xstrdup to convert char const *
16420 to char *, to avoid GCC warning.
16421
c19988b7
AD
164222002-10-19 Akim Demaille <akim@epita.fr>
16423
16424 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16425 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16426 Use them to have `calc.y' ready for %pure-parser.
16427 * data/yacc.c (YYLEX): Pass a yylex return type to
16428 b4_c_function_call.
16429
ae7453f2
AD
164302002-10-19 Akim Demaille <akim@epita.fr>
16431
16432 Prototype support of %lex-param and %parse-param.
16433
16434 * src/parse-gram.y: Add the definition of the %lex-param and
16435 %parse-param tokens, plus their rules.
16436 Drop the `_' version of %glr-parser.
16437 Add the "," token.
16438 * src/scan-gram.l (INITIAL): Scan them.
16439 * src/muscle_tab.c: Comment changes.
16440 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16441 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16442 (muscle_entry_s): The `value' member is no longer const.
16443 Adjust all dependencies.
16444 * src/muscle_tab.c (muscle_init): Adjust: use
16445 MUSCLE_INSERT_STRING.
16446 Initialize the obstack earlier.
16447 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16448 (muscle_pair_list_grow): New.
16449 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16450 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16451 * tests/calc.at: Use %locations, not --locations.
16452 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16453
0e575721
AD
164542002-10-19 Akim Demaille <akim@epita.fr>
16455
16456 * src/getargs.c (usage): Take status as argument and exit
16457 accordingly.
16458 Report the traditional `Try ... --help' message when status != 0.
16459 (usage, version): Don't take a FILE * as arg, it is pointless.
16460 (getargs): When there is an incorrect number of arguments, make it
16461 an error, and report it GNUlically thanks to `usage ()'.
16462
724ce7f5
PE
164632002-10-18 Paul Eggert <eggert@twinsun.com>
16464
3a781eb2
PE
16465 * data/glr.c (yyreportParseError): Don't assume that sprintf
16466 yields the length of the printed string, as this is not true
16467 on SunOS 4.1.4. Reported by Peter Klein.
16468
724ce7f5
PE
16469 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16470 * tests/conflicts.at (%nonassoc and eof): Likewise.
16471 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16472
473d0a75
AD
164732002-10-17 Akim Demaille <akim@epita.fr>
16474
16475 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16476 * src/getargs.c (trace_types, trace_args): Adjust.
16477 * src/reader.c (grammar_current_rule_prec_set)
16478 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16479 Standardize error messages.
16480 And s/@prec/%prec/!
16481 (reader): Use trace_flag to enable scanner/parser debugging,
16482 instead of an adhoc scheme.
16483 * src/scan-gram.l: Remove trailing debugging code.
16484
e76d2469
PE
164852002-10-16 Paul Eggert <eggert@twinsun.com>
16486
93e2236a
PE
16487 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16488 MUSCLE_TAB_H.
16489
e76d2469
PE
16490 * NEWS: Officially drop support for building Bison with K&R C,
16491 since it didn't work anyway and it's not worth worrying about.
16492 * Makefile.maint (wget_files): Remove ansi2knr.c.
16493 (ansi2knr.c-url_prefix): Remove.
16494 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16495 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16496 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16497
5bd1c419
PE
164982002-10-15 Paul Eggert <eggert@twinsun.com>
16499
16500 Stop using the "enum_" trick for K&R-style function definitions;
16501 it confused me, and I was the author! Instead, assume that people
16502 who want to use K&R C compilers (when using these modules in GCC,
16503 perhaps?) will run ansi2knr.
16504
16505 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16506 All uses of "enum_" changed to "enum ".
16507 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16508 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 16509
5bd1c419
PE
16510 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16511 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16512 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16513 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16514 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16515 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16516 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16517 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16518 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16519 Use function prototypes; this removes the need for declaring
16520 static functions simply to provide their prototypes.
16521 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16522 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16523 bitset_count_, bitset_create, bitset_dump, bitset_first,
16524 bitset_free, bitset_init, bitset_last, bitset_next,
16525 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16526 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16527 bitset_print, bitset_release_memory, bitset_toggle_,
16528 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16529 debug_bitset): Likewise.
16530 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16531 * lib/bitset_stats.c (bitset_log_histogram_print,
16532 bitset_percent_histogram_print, bitset_stats_and,
16533 bitset_stats_and_cmp, bitset_stats_and_or,
16534 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16535 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16536 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16537 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16538 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16539 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16540 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16541 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16542 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16543 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16544 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16545 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16546 bitset_stats_zero): Likewise.
16547 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16548 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16549 bitsetv_dump, debug_bitsetv): Likewise.
16550 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16551 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16552 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16553 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16554 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16555 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16556 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16557 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16558 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16559 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16560 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16561 Likewise.
16562 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16563 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16564 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16565 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16566 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16567 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16568 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16569 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16570 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16571 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16572 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 16573
ae26e1f0
AD
165742002-10-14 Akim Demaille <akim@epita.fr>
16575
16576 Version 1.75.
16577
d43baf71
AD
165782002-10-14 Akim Demaille <akim@epita.fr>
16579
16580 * tests/Makefile.am (maintainer-check-posix): New.
16581
7ebc83e3
AD
165822002-10-14 Akim Demaille <akim@epita.fr>
16583
16584 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16585 member.
16586
05846dae
AD
165872002-10-14 Akim Demaille <akim@epita.fr>
16588
16589 * src/tables.c (table_ninf_remap): base -> tab.
16590 Reported by Matt Rosing.
16591
1318e37d
PE
165922002-10-14 Paul Eggert <eggert@twinsun.com>
16593
447fbb17
PE
16594 * tests/action.at, tests/calc.at, tests/conflicts.at,
16595 tests/cxx-type.at, tests/headers.at, tests/input.at,
16596 tests/regression.at, tests/synclines.at, tests/torture.at:
16597 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16598 so that the tests still work even if POSIXLY_CORRECT is set.
16599 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 16600
1318e37d
PE
16601 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16602 for portability to K&R hosts. Fix typo: signed char is guaranteed
16603 only to 127, not to 128.
16604 * data/glr.c (yysigned_char): New type.
16605 * data/yacc.c (yysigned_char): Likewise.
16606 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16607
cc0f0794
PE
166082002-10-13 Paul Eggert <eggert@twinsun.com>
16609
5038f418
PE
16610 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16611 true due to limited range of data type" warning from GCC.
16612
cc0f0794
PE
16613 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16614 by wrapping enum yytokentype's definition inside #ifndef
16615 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16616
6fed0802
AD
166172002-10-13 Akim Demaille <akim@epita.fr>
16618
16619 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16620 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16621
32f0598d
AD
166222002-10-13 Akim Demaille <akim@epita.fr>
16623
16624 * Makefile.maint: Update from Autoconf 2.54.
16625 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16626
7ea9a33f
AD
166272002-10-13 Akim Demaille <akim@epita.fr>
16628
16629 * src/print.c (print_state): Separate the list of solved conflicts
16630 from the other items.
16631 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16632
ea99527d
AD
166332002-10-13 Akim Demaille <akim@epita.fr>
16634
16635 Let nondeterministic skeletons be usable with deterministic
16636 tables.
16637
16638 With the patch, GAWK compiled by GCC without -O2 passes its test
16639 suite using a GLR parser driven by LALR tables. It fails with -O2
16640 because `struct stat' gives two different answers on my machine:
16641 88 (definition of an auto var) and later 96 (memset on this var).
16642 Hence the stack is badly corrumpted. The headers inclusion is to
16643 blame: if I move the awk.h inclusion before GLR's system header
16644 inclusion, the two struct stat have the same size.
16645
16646 * src/tables.c (pack_table): Always create conflict_table.
16647 (token_actions): Always create conflict_list.
16648 * data/glr.c (YYFLAG): Remove, unused.
16649
f377f69f
AD
166502002-10-13 Akim Demaille <akim@epita.fr>
16651
16652 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16653 (O0FLAGS): New.
16654 (VALGRIND, GXX): New.
16655 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16656 * tests/bison.in: Run $PREBISON a pre-command.
16657 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16658 (maintainer-check-g++): New.
16659 * Makefile.am (maintainer-check): New.
16660
2a1fe6ed
AD
166612002-10-13 Akim Demaille <akim@epita.fr>
16662
16663 * data/glr.c: Formatting changes.
16664 Tweak some trace messages to match yacc.c's.
16665
f50adbbd
AD
166662002-10-13 Akim Demaille <akim@epita.fr>
16667
16668 GLR parsers sometimes raise parse errors instead of performing the
16669 default reduction.
16670 Reported by Charles-Henry de Boysson.
16671
16672 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 16673 check the length of the traces when %glr.
f50adbbd
AD
16674 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16675 GLR's traces.
16676 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16677 Test GLR parsers.
16678 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16679 (yyltype): Remove the yy prefix from the member names.
16680 (yytable): Complete its comment.
16681 (yygetLRActions): Map error action number from YYTABLE from
16682 YYTABLE_NINF to 0.
16683 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16684 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16685 not satisfying as we could compare an YYACTION computed from
16686 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16687 only value for error actions.
16688 (yyreportParseError): In verbose parse error messages, don't issue
16689 `error' in the list of expected tokens.
16690 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16691 next action to perform to match glr.c's decoding.
16692 (yytable): Complete its comment.
16693
bcbad5b9
PE
166942002-10-13 Paul Eggert <eggert@twinsun.com>
16695
16696 Fix problem reported by Henrik Grubbstroem in
161a71f3 16697 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
16698 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16699 because the Bison parser reads the second action before reducing
16700 the first one.
16701 * src/scan-gram.l (rule_length): New static var.
16702 Use it to keep track of the rule length in the scanner, since
16703 we can't expect the parser to be in lock-step sync with the scanner.
16704 (handle_action_dollar, handle_action_at): Use this var.
16705 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 16706
14904b89
PE
167072002-10-12 Paul Eggert <eggert@twinsun.com>
16708
1fe611e5
PE
16709 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16710 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16711 Include <sys/time.h> when checking for clock_t and struct tms.
16712 Use same include order as source.
16713 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 16714 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 16715
1fe611e5
PE
16716 * lib/timevar.c: Update copyright date and clarify comments.
16717 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 16718
1fe611e5
PE
16719 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16720 GCC version as of today, then merge Bison's changes.
16721 Change "GCC" to "Bison" in copyright notice. timevar.def's
16722 author is Akim, so change that too.
16723
98194095
PE
16724 * src/reader.c (grammar_current_rule_check):
16725 Don't worry about the default action if $$ is untyped.
16726 Prevents bogus warnings reported by Jim Gifford in
161a71f3 16727 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 16728
14904b89
PE
16729 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16730 * data/glr.c, data/lalr1.cc, data/yacc.c:
16731 Output token definitions before the first part of user declarations.
16732 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 16733 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 16734
ff6dca18
PE
167352002-10-11 Paul Eggert <eggert@twinsun.com>
16736
16737 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16738 (yyparse): here. This undoes some of the 2002-07-25 change.
16739 Compatibility problem reported by Ralf S. Engelschall with
16740 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16741
eb714592
AD
167422002-10-11 Akim Demaille <akim@epita.fr>
16743
16744 * tests/regression.at Characters Escapes): New.
16745 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16746 characters.
16747 Reported by Jan Nieuwenhuizen.
16748
b7195100
AD
167492002-10-11 Akim Demaille <akim@epita.fr>
16750
16751 * po/id.po: New.
16752
f28a0f2d
PE
167532002-10-10 Paul Eggert <eggert@twinsun.com>
16754
16755 Portability fixes for bitsets; this also avoids several GCC
16756 warnings.
16757
16758 * lib/abitset.c: Include <stddef.h>, for offsetof.
16759 * lib/lbitset.c: Likewise.
16760
16761 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16762 properly for vectors of objects. Do not assume that adding a
16763 header size to a multiple of a word size yields a value that is
16764 properly aligned for the whole union.
16765 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16766
16767 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16768 unique names for structures.
16769 * lib/ebitset.c (ebitset_bytes): Likewise.
16770 * lib/lbitset.c (lbitset_bytes): Likewise.
16771
16772 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16773 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16774 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16775 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16776 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16777 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16778 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16779 to improve the type-checking that GCC can do.
16780 * lib/bitset.c (bitset_op4_cmp): Likewise.
16781 * lib/bitset_stats.c (bitset_stats_count,
16782 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16783 bitset_stats_copy, bitset_stats_disjoint_p,
16784 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16785 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16786 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16787 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16788 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16789 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16790 bitset_stats_or_and_cmp): Likewise.
16791 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16792 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16793 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16794 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16795
16796 * lib/abitset.h: Include bitset.h, not bbitset.h.
16797 * lib/ebitset.h: Likewise.
16798 * lib/lbitset.h: Likewise.
16799
16800 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16801 All instances of parameters of type enum bitset_opts are now of
16802 type enum_bitset_opts, to conform to the C Standard, and similarly
16803 for enum_bitset_type.
16804 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16805 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16806
16807 Do not use "struct bitset_struct" to mean different things in
16808 different modules. Not only is this confusing, it violates
16809 the C Standard, which requires that structure types in different
16810 modules must be compatible if one is to be passed to the other.
16811 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16812 All instances of "struct bitset_struct *" replaced with "bitset".
16813 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16814 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16815 struct lbitset_struct, struct bitset_stats_struct): New types.
16816 All uses of struct bitset_struct changed to union bitset_union,
16817 etc.
ba0fe3c7 16818 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
16819 struct bitset_struct): Remove.
16820 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16821 struct bitset_struct): Remove.
16822 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16823 bitset_struct): Remove.
16824 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16825 Likewise.
16826
16827 Do not call a function of type T using a call that assumes the
16828 function is of a different type U. Standard C requires that a
16829 function must be called with a type that is compatible with its
16830 definition.
16831 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16832 New decls.
16833 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16834 New functions.
16835 * lib/ebitset.c (PFV): Remove.
16836 * lib/lbitset.c (PFV): Likewise.
16837 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16838 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16839 decls.
16840 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16841 (ebitset_vtable): Use them.
16842 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16843 lbitset_xor): New functions.
16844 (lbitset_vtable): Use them.
16845
16846 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16847 Declare.
16848
16849 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16850 GCC warning.
16851 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16852 Use offsetof, for simplicity.
16853
6fbe4984
PE
168542002-10-06 Paul Eggert <eggert@twinsun.com>
16855
16856 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16857 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 16858 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
16859 which was inadvertently undone by the 2002-09-30 patch.
16860 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16861 the same width as int.
16862
420f93c8
PE
168632002-10-04 Paul Eggert <eggert@twinsun.com>
16864
16865 Version 1.50.
16866
16867 * configure.ac (AC_INIT), NEWS: Increment version number.
16868
16869 * doc/bison.texinfo: Minor spelling, grammar, and white space
16870 fixes.
16871 (Symbols): Mention that any negative value returned from yylex
16872 signifies end-of-input. Warn about negative chars. Mention
16873 the portable Standard C character set.
16874
16875 The GNU coding standard says CFLAGS and YFLAGS are reserved
16876 for the installer to set.
16877 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16878 * src/Makefile.am (AM_CFLAGS): Likewise.
16879 (AM_YFLAGS): Renamed from YFLAGS.
16880
16881 Fix some MAX and MIN problems.
16882 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16883 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16884 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16885 * src/reader.c (reader): Use it.
16886
16887 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16888 POSIX 1003.1-2001 has removed fgrep.
16889
168902002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16891
16892 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16893 interpreted as signed.
16894 * lib/ebitset.c (ebitset_list): Fix bug.
16895
ff68026d
PE
168962002-10-01 Paul Eggert <eggert@twinsun.com>
16897
16898 More fixes for 64-bit hosts and large bitsets.
16899
16900 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16901 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16902 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16903 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16904 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16905 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16906 bitset_count_): Likewise.
16907 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16908 bitset_first, bitset_last): Likewise.
16909 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16910 bitset_stats_list_reverse, bitset_stats_size,
16911 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16912 Likewise.
16913 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16914 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16915 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16916 bitsetv_reflexive_transitive_closure): Likewise.
16917 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16918 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16919 Likewise.
16920 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16921 Likewise.
420f93c8 16922
ff68026d
PE
16923 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16924 Use size_t, not unsigned int, to count bytes.
16925 * lib/abitset.h (abitset_bytes): Likewise.
16926 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16927 Likewise.
16928 * lib/bitset.h (bitset_bytes): Likewise.
16929 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16930 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16931 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16932 * lib/ebitset.c (ebitset_bytes): Likewise.
16933 * lib/ebitset.h (ebitset_bytes): Likewise.
16934 * lib/lbitset.c (lbitset_bytes): Likewise.
16935 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 16936
ff68026d
PE
16937 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16938 abitset_subset_p, abitset_disjoint_p, abitset_and,
16939 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16940 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16941 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16942 abitset_or_and, abitset_or_and_cmp):
16943 Use bitset_windex instead of unsigned int.
16944 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16945 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16946 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16947 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16948 Likewise.
16949 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 16950
ff68026d
PE
16951 * lib/bitset.c (bitset_print):
16952 Use proper printf formats for widths of integer types.
16953 * lib/bitset_stats.c (bitset_percent_histogram_print,
16954 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16955 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16956 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16957 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 16958
ff68026d
PE
16959 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16960 BITSET_SIZE_MAX): New macros.
16961 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16962 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16963 to BITSET_WINDEX_MAX.
16964
16965 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16966 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16967 since we now return the bitset_bindex type (not int).
16968
16969 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16970 when computing sizes.
16971 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16972
16973 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16974 and avoid cast to unsigned.
16975
6aa452a6
AD
169762002-09-30 Akim Demaille <akim@epita.fr>
16977
16978 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16979 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16980 Updates from Michael Hayes.
16981
927f7817
AD
169822002-09-30 Art Haas <ahaas@neosoft.com>
16983
16984 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16985 invocations.
16986 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16987 defined.
16988
9738f41e
AD
169892002-09-27 Akim Demaille <akim@epita.fr>
16990
16991 Version 1.49c.
16992
a5c75d7f
AD
169932002-09-27 Akim Demaille <akim@epita.fr>
16994
16995 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16996 (Because of AC_LIBSOURCE).
16997
8280e179
AD
169982002-09-27 Akim Demaille <akim@epita.fr>
16999
17000 Playing with Autoscan.
17001
17002 * configure.ac: Remove the old LIBOBJ tweaks.
17003 (AC_REPLACE_FUNCS): Add strrchr and strtol.
17004 * lib/strrchr.c: New.
17005 * lib/strtol.c: New, from the Coreutils 4.5.1.
17006
ae64af35
AD
170072002-09-27 Akim Demaille <akim@epita.fr>
17008
17009 Playing with Autoscan.
17010
17011 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
17012 * lib/Makefile.am (libbison_a_SOURCES): No longer include
17013 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
17014 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
17015 Coreutils 4.5.1.
17016
d1a1114f
AD
170172002-09-24 Akim Demaille <akim@epita.fr>
17018
17019 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
17020 (Frequently Asked Questions, Parser Stack Overflow): New.
17021
b906441c
AD
170222002-09-13 Akim Demaille <akim@epita.fr>
17023
17024 Playing with autoscan.
17025
17026 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17027 * src/files.c (skeleton_find): Remove, unused.
17028 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17029 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17030
bd701811
AD
170312002-09-13 Akim Demaille <akim@epita.fr>
17032
17033 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17034 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17035
e0a13e7b
AD
170362002-09-13 Akim Demaille <akim@epita.fr>
17037
17038 * configure.ac: Require 2.54.
17039 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17040 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17041 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17042 Remove, provided by Autoconf macros.
17043
c97011bf
AD
170442002-09-12 Akim Demaille <akim@epita.fr>
17045
17046 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17047
d862b1be
AD
170482002-09-12 Akim Demaille <akim@epita.fr>
17049
17050 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17051 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17052 Reported by Martin Mokrejs.
17053
3d38c03a
AD
170542002-09-10 Akim Demaille <akim@epita.fr>
17055
17056 * src/parse-gram.y: Associate a human readable string to each
17057 token type.
17058 * tests/regression.at (Invalid inputs): Adjust.
17059
b6347355
AD
170602002-09-10 Gary V. Vaughan <gary@gnu.org>
17061
17062 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17063 with an Autoconf-2.5x style configure.ac.
17064
09ba4ab2
PE
170652002-09-06 Paul Eggert <eggert@twinsun.com>
17066
17067 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17068 exception applies only to yacc.c. This is a modification of a
17069 patch originally suggested by Akim Demaille.
17070
21846f69
AD
170712002-09-06 Akim Demaille <akim@epita.fr>
17072
09ba4ab2
PE
17073 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17074 here to...
17075 * data/yacc.c: here.
17076
21846f69
AD
17077 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17078 LocationType.
17079 (b4_ltype): Default to yy::Location from location.hh.
17080
c0ad8bf3
AD
170812002-09-04 Jim Meyering <jim@meyering.net>
17082
17083 * data/yacc.c: Guard the declaration of yytoknum also with
17084 `#ifdef YYPRINT', so it is declared only when used.
17085
3a93251e
AD
170862002-09-04 Akim Demaille <akim@epita.fr>
17087
17088 * configure.in: Rename as...
17089 * configure.ac: this.
17090 Bump to 1.49c.
17091
427c0dda
AD
170922002-09-04 Akim Demaille <akim@epita.fr>
17093
17094 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
17095 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
17096 translate maintainer only messages.
17097
6a254321
PE
170982002-08-12 Paul Eggert <eggert@twinsun.com>
17099
645e30d1
PE
17100 Version 1.49b.
17101
6a254321
PE
17102 * Makefile.am (SUBDIRS): Remove intl.
17103 (DISTCLEANFILES): Remove.
17104 * NEWS: Mention that GNU M4 is now required. Clarify what is
17105 meant by "larger grammars". Mention the pt_BR translation.
17106 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
17107 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
17108 Bump version from 0.11.2 to 0.11.5.
17109 (BISON_PREREQ_STAGE): Remove.
17110 (AM_GNU_GETTEXT): Use external gettext.
17111 (AC_OUTPUT): Remove intl/Makefile.
17112
17113 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17114
17115 * data/glr.c: Include string.h, for strlen.
17116 (yyreportParseError): Use size_t for yysize.
17117 (yy_yypstack): No longer nested inside yypstates, as nested
17118 functions are not portable. Do not assume size_t is the
17119 same width as int.
17120 (yypstates): Do not assume that ptrdiff_t is the same width
17121 as int, and similarly for yyposn and YYINDEX.
17122
17123 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17124
17125 * lib/Makefile.am (INCLUDES): Do not include from the intl
17126 directory, which has been removed.
17127 * src/Makefile.am (INCLUDES): Likewise.
17128
17129 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17130 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17131 New vars.
17132
17133 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17134 * tests/Makefile.am (EXTRA_DIST): Likewise.
17135
17136 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17137 Do not assume that bitset_windex is the same width as unsigned.
17138
17139 * lib/abitset.c (abitset_unused_clear): Do not assume that
17140 bitset_word is the same width as int.
17141 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17142 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17143 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17144 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17145 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17146
17147 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17148 portability to one's complement hosts!).
17149 * lib/ebitset.c (ebitset_op1): Likewise.
17150 * lib/lbitset.c (lbitset_op1): Likewise.
17151
17152 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17153 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17154 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17155 Sync with fileutils.
17156 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17157 lib/gettext.h: Sync with diffutils.
17158
17159 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17160 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17161
17162 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17163 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17164 check for void *.
17165
17166 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17167 size_t; the old version tried to do this but casted improperly.
17168 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17169 (bitset_test): Now returns int, not unsigned long.
17170
17171 * lib/bitset_stats.c: Include "gettext.h".
17172 (_): New macro.
17173 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17174 name locals "index", as it generates unnecessary warnings on some
17175 hosts that have an "index" function.
17176
17177 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17178 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17179 they need translation.
17180 * src/LR0.c (state_list_append, new_itemsets, get_state,
17181 append_states, generate_states): Likewise.
17182 * src/assoc.c (assoc_to_string): Likewise.
17183 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17184 * src/gram.c (grammar_dump): Likewise.
17185 * src/injections.c (injections_compute): Likewise.
17186 * src/lalr.c (lookaheads_print): Likewise.
17187 * src/relation.c (relation_transpose): Likewise.
17188 * src/scan-gram.l: Likewise.
17189 * src/tables.c (table_grow, pack_vector): Likewise.
17190
17191 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17192 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17193 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17194 * m4/mbstate_t.m4: Sync with fileutils.
17195 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17196
17197 * po/LINGUAS: Add pt_BR.
17198 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17199 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17200 lib/timevar.c.
17201 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17202 manual recommends.
17203 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17204
17205 * src/complain.c (strerror_r): Remove decl; not needed.
17206 (strerror): Use same pattern as ../lib/error.c.
17207
17208 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17209
17210 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17211
17212 * src/main.c (main): Cast result of bindtextdomain and textdomain
17213 to void, to avoid a GCC warning when --disable-nls is in effect.
17214
17215 * src/scan-gram.l: Use strings rather than escapes when possible,
17216 to minimize the number of warnings from xgettext.
17217 (handle_action_dollar, handle_action_at): Don't use isdigit,
17218 as it mishandles negative chars and it may not work as expected
17219 outside the C locale.
17220
17221 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17222 this is a GCC extension and is not portable to other compilers.
17223
17224 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17225 Do not include <ctype.h>; no longer needed.
17226 Do not include <malloc.h>; no longer needed (and generates
17227 warnings on OpenBSD 3.0).
17228
17229 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17230 it's not portable.
17231
17232 * tests/regression.at: Do not use 'cc -c input.c -o input';
17233 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17234
17235 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17236 exit status as failure, not just exit status 1. Sun C exits
17237 with status 2 sometimes.
17238
17239 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17240 Use it for the two large tests.
17241
c8f002c7
AD
172422002-08-02 Akim Demaille <akim@epita.fr>
17243
17244 * src/conflicts.c (conflicts_output): Don't output rules never
17245 reduced here, since anyway that computation doesn't work.
17246 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17247 (rule_useless_p, rule_never_reduced_p): New.
17248 (grammar_rules_partial_print): Use a filter instead of a range.
17249 Display the title only if needed.
17250 (grammar_rules_print): Adjust.
17251 (grammar_rules_never_reduced_report): New.
17252 * src/tables.c (action_row): Move the computation of rules never
17253 reduced to...
17254 (token_actions): here.
17255 * src/main.c (main): Make the parser before making the report, so
17256 that rules never reduced are computed.
17257 Call grammar_rules_never_reduced_report.
17258 * src/print.c (print_results): Report rules never reduced.
17259 * tests/conflicts.at, tests/reduce.at: Adjust.
17260
cd08e51e
AD
172612002-08-01 Akim Demaille <akim@epita.fr>
17262
17263 Instead of attaching lookaheads and duplicating the rules being
17264 reduced by a state, attach the lookaheads to the reductions.
17265
17266 * src/state.h (state_t): Remove the `lookaheads',
17267 `lookaheads_rule' member.
17268 (reductions_t): Add a `lookaheads' member.
17269 Use a regular array for the `rules'.
17270 * src/state.c (reductions_new): Initialize the lookaheads member
17271 to 0.
17272 (state_rule_lookaheads_print): Adjust.
17273 * src/state.h, src/state.c (state_reductions_find): New.
17274 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17275 (count_rr_conflicts): Adjust.
17276 * src/lalr.c (LArule): Remove.
17277 (add_lookback_edge): Adjust.
17278 (state_lookaheads_count): New.
17279 (states_lookaheads_initialize): Merge into...
17280 (initialize_LA): this.
17281 (lalr_free): Adjust.
17282 * src/main.c (main): Don't free nullable and derives too early: it
17283 is used by --verbose.
17284 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17285
bb0027a9
AD
172862002-08-01 Akim Demaille <akim@epita.fr>
17287
17288 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17289 `rule_number_t**'.
17290 (set_derives, free_derives): Rename as...
17291 (derives_compute, derives_free): this.
17292 Adjust all dependencies.
17293 * src/nullable.c (set_nullable, free_nullable): Rename as...
17294 (nullable_compute, nullable_free): these.
17295 (rule_list_t): Store rule_t *, not rule_number_t.
17296 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17297 pointers, instead of their numbers.
17298 * src/main.c (main): Call nullable_free, and derives_free earlier,
17299 as they were lo longer used.
17300
3325ddc4
AD
173012002-08-01 Akim Demaille <akim@epita.fr>
17302
17303 * lib/timevar.c (get_time): Include children time.
17304 * src/lalr.h (LA, LArule): Don't export them: used with the
17305 state_t.
17306 * src/lalr.c (LA, LArule): Static.
17307 * src/lalr.h, src/lalr.c (lalr_free): New.
17308 * src/main.c (main): Call it.
17309 * src/tables.c (pack_vector): Check whether loc is >= to the
17310 table_size, not >.
17311 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17312 (tables_generate): do it, since that's also it which allocates
17313 them.
17314 Don't free LA and LArule, main does.
17315
c6f1a33c
AD
173162002-07-31 Akim Demaille <akim@epita.fr>
17317
17318 Separate parser tables computation and output.
17319
17320 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17321 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17322 (yydefgoto, yydefact, high): Move to...
17323 * src/tables.h, src/tables.c: here.
17324 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17325 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17326 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17327 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17328 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17329 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17330 (action_row, save_row, token_actions, save_column, default_goto)
17331 (goto_actions, sort_actions, matching_state, pack_vector)
17332 (table_ninf_remap, pack_table, prepare_actions): Move to...
17333 * src/tables.c: here.
17334 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17335 * src/output.c (token_actions, output_base, output_conflicts)
17336 (output_check): Merge into...
17337 (prepare_actions): this.
17338 (actions_output): Rename as...
17339 (user_actions_output): this.
17340 * src/main.c (main): Call tables_generate and tables_free.
17341
1509d42f
AD
173422002-07-31 Akim Demaille <akim@epita.fr>
17343
17344 Steal GCC's --time-report support.
17345
17346 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17347 stolen/adjusted from GCC.
17348 * m4/stage.m4: Remove time related checks.
17349 * m4/timevar.m4: New.
17350 * configure.in: Adjust.
17351 * src/system.h: Adjust to using timevar.h.
17352 * src/getargs.h, src/getargs.c: Support trace_time for
17353 --trace=time.
17354 * src/main.c (stage): Remove.
17355 (main): Replace `stage' invocations with timevar calls.
17356 * src/output.c: Insert pertinent timevar calls.
17357
273a74fa
AD
173582002-07-31 Akim Demaille <akim@epita.fr>
17359
17360 Let --trace have arguments.
17361
17362 * src/getargs.h (enum trace_e): New.
17363 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17364 (long_options, short_options): --trace/-T takes an optional
17365 argument.
17366 Change all the uses of trace_flag to reflect the new flags.
17367 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17368
17369 Strengthen `stage' portability.
17370
17371 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17372 * configure.in: Use it.
17373 Don't check for malloc.h and sys/times.h.
17374 * src/system.h: Include them when appropriate.
17375 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17376 times and struct tms are available.
17377
217598da
AD
173782002-07-30 Akim Demaille <akim@epita.fr>
17379
17380 In verbose parse error message, don't report `error' as an
17381 expected token.
17382 * tests/actions.at (Printers and Destructors): Adjust.
17383 * tests/calc.at (Calculator $1): Adjust.
17384 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17385 error message, do not report the parser accepts the error token in
17386 that state.
17387
52489d44
AD
173882002-07-30 Akim Demaille <akim@epita.fr>
17389
17390 Normalize conflict related messages.
17391
17392 * src/complain.h, src/complain.c (warn, complain): New.
17393 * src/conflicts.c (conflicts_print): Use them.
17394 (conflict_report_yacc): New, extracted from...
17395 (conflicts_print): here.
17396 * tests/conflicts.at, tests/existing.at: Adjust.
17397
e8832397
AD
173982002-07-30 Akim Demaille <akim@epita.fr>
17399
17400 Report rules which are never reduced by the parser: those hidden
17401 by conflicts.
17402
17403 * src/LR0.c (save_reductions): Don't make the final state too
17404 different: save its reduction (accept) instead of having a state
17405 without any action (no shift or goto, no reduce).
17406 Note: the final state is now a ``regular'' state, i.e., the
17407 parsers now contain `reduce 0' as default reduction.
17408 Nevertheless, since they decide to `accept' when yystate =
17409 final_state, they still will not reduce rule 0.
17410 * src/print.c (print_actions, print_reduction): Adjust.
17411 * src/output.c (action_row): Track reduced rules.
17412 (token_actions): Report rules never reduced.
17413 * tests/conflicts.at, tests/regression.at: Adjust.
17414
caf23d24
AD
174152002-07-30 Akim Demaille <akim@epita.fr>
17416
17417 `stage' was accidently included in a previous patch.
17418 Initiate its autoconfiscation.
17419
17420 * configure.in: Look for malloc.h and sys/times.h.
17421 * src/main.c (stage): Adjust.
17422 Report only when trace_flag.
17423
640748ee
AD
174242002-07-29 Akim Demaille <akim@epita.fr>
17425
17426 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17427 state_number_t.
17428 (errs_t): symbol_t*, not symbol_number_t.
17429 (reductions_t): rule_t*, not rule_number_t.
17430 (FOR_EACH_SHIFT): New.
17431 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17432 * src/print.c, src/print_graph.c: Adjust.
17433
88bce5a2
AD
174342002-07-29 Akim Demaille <akim@epita.fr>
17435
17436 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17437
17438 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17439 (endtoken, accept): these.
17440 * src/reader.c (reader): Set endtoken's default tag to "$end".
17441 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17442 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17443 Adjust.
17444
1bfb97db
AD
174452002-07-29 Akim Demaille <akim@epita.fr>
17446
17447 * src/reduce.c (reduce_grammar): When the language is empty,
17448 complain about the start symbol, not the axiom.
17449 Use its location.
17450 * tests/reduce.at (Empty Language): New.
17451
fc5734fe
AD
174522002-07-26 Akim Demaille <akim@epita.fr>
17453
17454 * src/reader.h, src/reader.c (gram_error): ... can't get
17455 yycontrol without making too strong assumptions on the parser
17456 itself.
17457 * src/output.c (prepare_tokens): Use the real 0th value of
17458 token_translations instead of `0'.
17459 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17460 visible here.
17461 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17462 for the time being: %locations ought to provide it to yyerror.
17463
3650b4b8
AD
174642002-07-25 Akim Demaille <akim@epita.fr>
17465
17466 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17467 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17468 * tests/regression.at (Web2c Actions): Adjust.
17469
4b3d3a8e
AD
174702002-07-25 Akim Demaille <akim@epita.fr>
17471
17472 Stop storing rules from 1 to nrules + 1.
17473
17474 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17475 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17476 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17477 Iterate from 0 to nrules.
17478 Use rule_number_as_item_number and item_number_as_rule_number.
17479 Adjust to `derive' now containing possibly 0.
17480 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17481 Handle the `- 1' part in rule numbers from/to item numbers.
17482 * src/conflicts.c (log_resolution): Fix the message which reversed
17483 shift and reduce.
17484 * src/output.c (action_row): Initialize default_rule to -1.
17485 (token_actions): Adjust.
17486 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17487 expected output.
17488 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17489
4a2a22f4
AD
174902002-07-25 Akim Demaille <akim@epita.fr>
17491
17492 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17493 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17494 (b4_c_knr_arg_decl): New.
17495 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17496 yyreport_parse_error.
17497
b8df3223
AD
174982002-07-25 Akim Demaille <akim@epita.fr>
17499
17500 * data/yacc.c (yyreport_parse_error): New, extracted from...
17501 (yyparse): here.
17502 (yydestruct, yysymprint): Move above yyparse.
17503 Be K&R compliant.
17504
a762e609
AD
175052002-07-25 Akim Demaille <akim@epita.fr>
17506
17507 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17508 replace...
17509 (b4_sint_type, b4_uint_type): these.
17510 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17511 * tests/regression.at (Web2c Actions): Adjust.
17512
12b0043a
AD
175132002-07-25 Akim Demaille <akim@epita.fr>
17514
17515 * src/gram.h (TIEM_NUMBER_MAX): New.
17516 (item_number_of_rule_number, rule_number_of_item_number): Rename
17517 as...
17518 (rule_number_as_item_number, item_number_as_rule_number): these.
17519 Adjust dependencies.
17520 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17521 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17522 (symbol_number_to_vector_number): New.
17523 (order): Of vector_number_t* type.
17524 (base_t, BASE_MAX, BASE_MIN): New.
17525 (froms, tos, width, pos, check): Of base_t type.
17526 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17527 (actrow): Of action_number_t type.
17528 (conflrow): Of unsigned int type.
17529 (table_ninf, base_ninf): New.
17530 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17531 (muscle_insert_int_table, muscle_insert_base_table)
17532 (muscle_insert_rule_number_table): New.
17533 (prepare_tokens): Output `toknum' as int_table.
17534 (action_row): Returns a rule_number_t.
17535 Use ACTION_MIN, not SHRT_MIN.
17536 (token_actions): yydefact is rule_number_t*.
17537 (table_ninf_remap): New.
17538 (pack_table): Use it for `base' and `table'.
17539 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17540 replaced with...
17541 (YYPACT_NINF, YYTABLE_NINF): these.
17542 (yypact, yytable): Compute their types instead of hard-coded
17543 `short'.
17544 * tests/regression.at (Web2c Actions): Adjust.
17545
5dde258a
AD
175462002-07-19 Akim Demaille <akim@epita.fr>
17547
17548 * src/scan-gram.l (id): Can start with an underscore.
17549
a945ec39
AD
175502002-07-16 Akim Demaille <akim@epita.fr>
17551
17552 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17553 Adjust all former `associativity' dependencies.
17554 * src/symtab.c (symbol_new): Default associativity is `undef', not
17555 `right'.
17556 (symbol_check_alias_consistence): Adjust.
17557
fae437e8
AD
175582002-07-09 Akim Demaille <akim@epita.fr>
17559
17560 * doc/bison.texinfo: Properly set the ``header'' part.
17561 Use @dircategory ``GNU programming tools'' as per Texinfo's
17562 documentation.
17563 Use @copying.
17564
1a715ef2
AD
175652002-07-09 Akim Demaille <akim@epita.fr>
17566
17567 * lib/quotearg.h: Protect against multiple inclusions.
17568 * src/location.h (location_t): Add a `file' member.
17569 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17570 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17571 `error_one_per_line' support.
17572
a5d50994
AD
175732002-07-09 Akim Demaille <akim@epita.fr>
17574
17575 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17576 * src/reader.c (lineno): Remove.
17577 Adjust all dependencies.
17578 (get_merge_function): Take a location and use complain_at.
17579 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17580 * tests/regression.at (Invalid inputs, Mixing %token styles):
17581 Adjust.
17582
b275314e
AD
175832002-07-09 Akim Demaille <akim@epita.fr>
17584
17585 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17586 recovery rule, and forbid extensions when --yacc.
17587 (gram_error): Use complain_at.
17588 * src/reader.c (reader): Exit if there were parse errors.
17589
865b9df1
AD
175902002-07-09 Akim Demaille <akim@epita.fr>
17591
17592 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17593 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17594 Reported by R Blake <blakers@mac.com>.
17595
c76e14da
AD
175962002-07-09 Akim Demaille <akim@epita.fr>
17597
17598 * data/yacc.c: Output the copyright notive in the header.
17599
7db2ed2d
AD
176002002-07-03 Akim Demaille <akim@epita.fr>
17601
17602 * src/output.c (froms, tos): Are state_number_t.
17603 (save_column): sp, sp1, and sp2 are state_number_t.
17604 (prepare): Rename `final' as `final_state_number', `nnts' as
17605 `nterms_number', `nrules' as `rules_number', `nstates' as
17606 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17607 unused.
17608 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17609 * data/lalr1.cc (nsym_): Remove, unused.
17610
e68e0410
AD
176112002-07-03 Akim Demaille <akim@epita.fr>
17612
17613 * src/lalr.h, src/lalr.c (goto_number_t): New.
17614 * src/lalr.c (goto_list_t): New.
17615 Propagate them.
17616 * src/nullable.c (rule_list_t): New.
17617 Propagate.
17618 * src/types.h: Remove.
17619
e1a4f3a4
AD
176202002-07-03 Akim Demaille <akim@epita.fr>
17621
17622 * src/closure.c (print_fderives): Use rule_rhs_print.
17623 * src/derives.c (print_derives): Use rule_rhs_print.
17624 (rule_list_t): New, replaces `shorts'.
17625 (set_derives): Add comments.
17626 * tests/sets.at (Nullable, Firsts): Adjust.
17627
536545f3
AD
176282002-07-03 Akim Demaille <akim@epita.fr>
17629
17630 * src/output.c (prepare_actions): Free `tally' and `width'.
17631 (prepare_actions): Allocate and free `order'.
17632 * src/symtab.c (symbols_free): Free `symbols'.
17633 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17634 * src/output.c (m4_invoke): Move to...
17635 * src/scan-skel.l: here.
17636 (<<EOF>>): Close yyout, and free its name.
17637
8b752b00
AD
176382002-07-03 Akim Demaille <akim@epita.fr>
17639
17640 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17641
17642 * src/LR0.c (new_state): Merge into...
17643 (state_list_append): this.
17644 (new_states): Merge into...
17645 (generate_states): here.
17646 (set_states): Don't ensure a proper `errs' state member here, do it...
17647 * src/conflicts.c (conflicts_solve): here.
17648 * src/state.h, src/state.c: Comment changes.
17649 (state_t): Rename member `shifts' as `transitions'.
17650 Adjust all dependencies.
17651 (errs_new): For consistency, also take the values as argument.
17652 (errs_dup): Remove.
17653 (state_errs_set): New.
17654 (state_reductions_set, state_transitions_set): Assert that no
17655 previous value was assigned.
17656 (state_free): New.
17657 (states_free): Use it.
17658 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17659 temporary storage: use `errs' and `nerrs' as elsewhere.
17660 (set_conflicts): Allocate and free this `errs'.
17661
613f5e1a
AD
176622002-07-02 Akim Demaille <akim@epita.fr>
17663
17664 * lib/libiberty.h: New.
17665 * lib: Update the bitset implementation from upstream.
17666 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17667 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17668 * src/main.c: Adjust bitset stats calls.
17669
26e0cadc
PE
176702002-07-01 Paul Eggert <eggert@twinsun.com>
17671
17672 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17673 char, so that negative chars don't collide with $.
17674
1154cced
AD
176752002-06-30 Akim Demaille <akim@epita.fr>
17676
17677 Have the GLR tests be `warning' checked, and fix the warnings.
17678
17679 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17680 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17681 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17682 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17683 (yyaddDeferredAction): static.
17684 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17685 (yyreportParseError): yyprefix is const.
17686 yytokenp is used only when verbose.
17687 (yy__GNUC__): Replace with __GNUC__.
17688 (yypdumpstack): yyi is size_t.
17689 (yypreference): Un-yy local variables and arguments, to avoid
17690 clashes with `yyr1'. Anyway, we are not in the user name space.
17691 (yytname_size): be an int, as is compared with ints.
17692 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17693 Use them.
17694 * tests/cxx-gram.at: Use quotation to protect $1.
17695 Use AT_COMPILE to enable warnings hunts.
17696 Prototype yylex and yyerror.
17697 `Use' argc.
17698 Include `string.h', not `strings.h'.
17699 Produce and prototype stmtMerge only when used.
17700 yylex takes a location.
17701
97650f4e
AD
177022002-06-30 Akim Demaille <akim@epita.fr>
17703
17704 We spend a lot of time in quotearg, in particular when --verbose.
17705
17706 * src/symtab.c (symbol_get): Store a quoted version of the key.
17707 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17708 Adjust all callers.
17709
d2576365
AD
177102002-06-30 Akim Demaille <akim@epita.fr>
17711
17712 * src/state.h (reductions_t): Rename member `nreds' as num.
17713 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17714 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17715
ccaf65bc
AD
177162002-06-30 Akim Demaille <akim@epita.fr>
17717
17718 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17719 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17720 (shifts_to): Rename as...
17721 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17722 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17723 (TRANSITION_IS_DISABLED, transitions_to): these.
17724
87675353
AD
177252002-06-30 Akim Demaille <akim@epita.fr>
17726
17727 * src/print.c (print_shifts, print_gotos): Merge into...
17728 (print_transitions): this.
17729 (print_transitions, print_errs, print_reductions): Align the
17730 lookaheads columns.
17731 (print_core, print_transitions, print_errs, print_state,
17732 print_grammar): Output empty lines separator before, not after.
17733 (state_default_rule_compute): Rename as...
17734 (state_default_rule): this.
17735 * tests/conflicts.at (Defaulted Conflicted Reduction),
17736 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17737 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17738
ce4ccb4b
AD
177392002-06-30 Akim Demaille <akim@epita.fr>
17740
17741 Display items as we display rules.
17742
17743 * src/gram.h, src/gram.c (rule_lhs_print): New.
17744 * src/gram.c (grammar_rules_partial_print): Use it.
17745 * src/print.c (print_core): Likewise.
17746 * tests/conflicts.at (Defaulted Conflicted Reduction),
17747 (Unresolved SR Conflicts): Adjust.
17748 (Unresolved SR Conflicts): Adjust and rename as...
17749 (Resolved SR Conflicts): this, as was meant.
17750 * tests/regression.at (Web2c Report): Adjust.
17751
bc933ef1
AD
177522002-06-30 Akim Demaille <akim@epita.fr>
17753
17754 * src/print.c (state_default_rule_compute): New, extracted from...
17755 (print_reductions): here.
17756 Pessimize, but clarify the code.
17757 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17758
53d4308d
AD
177592002-06-30 Akim Demaille <akim@epita.fr>
17760
17761 * src/output.c (action_row): Let default_rule be always a rule
17762 number.
17763
574fb2d5
AD
177642002-06-30 Akim Demaille <akim@epita.fr>
17765
17766 * src/closure.c (print_firsts, print_fderives, closure):
17767 Use BITSET_EXECUTE.
17768 * src/lalr.c (lookaheads_print): Likewise.
17769 * src/state.c (state_rule_lookaheads_print): Likewise.
17770 * src/print_graph.c (print_core): Likewise.
17771 * src/print.c (print_reductions): Likewise.
17772 * src/output.c (action_row): Likewise.
17773 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17774
05811fd7
AD
177752002-06-30 Akim Demaille <akim@epita.fr>
17776
17777 * src/print_graph.c: Use report_flag.
17778
0e4d5753
AD
177792002-06-30 Akim Demaille <akim@epita.fr>
17780
17781 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17782 to...
17783 * src/relation.h, src/relation.c (traverse, relation_digraph)
17784 (relation_print, relation_transpose): New.
17785
24c7d800
AD
177862002-06-30 Akim Demaille <akim@epita.fr>
17787
17788 * src/state.h, src/state.c (shifts_to): New.
17789 * src/lalr.c (build_relations): Use it.
17790
9222837b
AD
177912002-06-30 Akim Demaille <akim@epita.fr>
17792
17793 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17794 (item_number_of_rule_number, rule_number_of_item_number): New.
17795 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17796 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17797 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17798 Propagate their use.
17799 Much remains to be done, in particular wrt `shorts' from types.h.
17800
260008e5
AD
178012002-06-30 Akim Demaille <akim@epita.fr>
17802
17803 * src/symtab.c (symbol_new): Initialize the `printer' member.
17804
8a731ca8
AD
178052002-06-30 Akim Demaille <akim@epita.fr>
17806
17807 * src/LR0.c (save_reductions): Remove, replaced by...
17808 * src/state.h, src/state.c (state_reductions_set): New.
17809 (reductions, errs): Rename as...
17810 (reductions_t, errs_t): these.
17811 Adjust all dependencies.
17812
32e1e0a4
AD
178132002-06-30 Akim Demaille <akim@epita.fr>
17814
17815 * src/LR0.c (state_list_t, state_list_append): New.
17816 (first_state, last_state): Now symbol_list_t.
17817 (this_state): Remove.
17818 (new_itemsets, append_states, save_reductions): Take a state_t as
17819 argument.
17820 (set_states, generate_states): Adjust.
17821 (save_shifts): Remove, replaced by...
17822 * src/state.h, src/state.c (state_shifts_set): New.
17823 (shifts): Rename as...
17824 (shifts_t): this.
17825 Adjust all dependencies.
17826 * src/state.h (state_t): Remove the `next' member.
17827
e5fb6710
AD
178282002-06-30 Akim Demaille <akim@epita.fr>
17829
17830 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17831 escaped in slot 0.
17832
c7ca99d4
AD
178332002-06-30 Akim Demaille <akim@epita.fr>
17834
17835 Use hash.h for the state hash table.
17836
17837 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17838 (allocate_storage): Use state_hash_new.
17839 (free_storage): Use state_hash_free.
17840 (new_state, get_state): Adjust.
17841 * src/lalr.h, src/lalr.c (states): Move to...
17842 * src/states.h (state_t): Remove the `link' member, no longer
17843 used.
17844 * src/states.h, src/states.c: here.
17845 (state_hash_new, state_hash_free, state_hash_lookup)
17846 (state_hash_insert, states_free): New.
17847 * src/states.c (state_table, state_compare, state_hash): New.
17848 * src/output.c (output_actions): Do not free states now, since we
17849 still need to know the final_state number in `prepare', called
17850 afterwards. Do it...
17851 * src/main.c (main): here: call states_free after `output'.
17852
df0e7316
AD
178532002-06-30 Akim Demaille <akim@epita.fr>
17854
17855 * src/state.h, src/state.c (state_new): New, extracted from...
17856 * src/LR0.c (new_state): here.
17857 * src/state.h (STATE_ALLOC): Move to...
17858 * src/state.c: here.
17859 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17860 * src/state.h, src/state.c: here.
17861
39f41916
AD
178622002-06-30 Akim Demaille <akim@epita.fr>
17863
17864 * src/reader.c (gensym): Rename as...
17865 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17866 (getsym): Rename as...
17867 (symbol_get): this.
17868
d57650a5
AD
178692002-06-30 Akim Demaille <akim@epita.fr>
17870
17871 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17872 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17873 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17874 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17875
5a08f1ce
AD
178762002-06-30 Akim Demaille <akim@epita.fr>
17877
17878 Make the test suite pass with warnings checked.
17879
17880 * tests/actions.at (Printers and Destructors): Improve.
17881 Avoid unsigned vs. signed issues.
17882 * tests/calc.at: Don't exercise the scanner here, do it...
17883 * tests/input.at (Torturing the Scanner): here.
17884
720623af
PH
178852002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17886
88e7e941 17887 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
17888 reorganize first lines parallel to yacc.c.
17889
fb8135fa
AD
178902002-06-28 Akim Demaille <akim@epita.fr>
17891
17892 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17893 (b4_token_enum, b4_token_defines): New, factored from...
17894 * data/lalr1.cc, data/yacc.c, glr.c: here.
17895
41442480
AD
178962002-06-28 Akim Demaille <akim@epita.fr>
17897
17898 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17899 unused variables.
17900 * src/output.c (merger_output): static.
17901
e0e5bf84
AD
179022002-06-28 Akim Demaille <akim@epita.fr>
17903
ba0fe3c7 17904 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
17905 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17906 pacify GCC.
17907 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 17908
676385e2
PH
179092002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17910
17911 Accumulated changelog for new GLR parsing features.
17912
6a254321 17913 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
17914 conflicts_total_count.
17915 * src/conflicts.h: Ditto.
17916 * src/output.c (token_actions): Use the new name.
17917 (output_conflicts): Change conflp => conflict_list_heads, and
17918 confl => conflict_list for better readability.
17919 * data/glr.c: Use the new names.
17920 * NEWS: Add self to GLR announcement.
e0e5bf84 17921
676385e2
PH
17922 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17923
17924 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17925 Akim Demaille.
17926
17927 * data/bison.glr: Change name to glr.c
17928 * data/glr.c: Renamed from bison.glr.
17929 * data/Makefile.am: Add glr.c
e0e5bf84
AD
17930
17931 * src/getargs.c:
17932
676385e2 17933 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 17934 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 17935
676385e2
PH
17936 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17937
17938 * data/bison.glr: Be sure to restore the
17939 current #line when returning to the skeleton contents after having
17940 exposed the input file's #line.
17941
17942 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17943
17944 * data/bison.glr: Bring up to date with changes to bison.simple.
17945
17946 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17947
17948 * data/bison.glr: Correct definitions that use b4_prefix.
17949 Various reformatting.
17950 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17951 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17952 yytokenp argument; now part of stack.
17953 (yychar): Define to behave as documented.
17954 (yyclearin): Ditto.
e0e5bf84 17955
676385e2
PH
17956 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17957
17958 * src/reader.h: Add declaration for free_merger_functions.
17959
17960 * src/reader.c (merge_functions): New variable.
17961 (get_merge_function): New function.
17962 (free_merger_functions): New function.
17963 (readgram): Check for %prec that is not followed by a symbol.
17964 Handle %dprec and %merge declarations.
17965 (packgram): Initialize dprec and merger fields in rules array.
17966
17967 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17968 conflict_list_cnt, conflict_list_free): New variables.
17969 (table_grow): Also grow conflict_table.
e0e5bf84 17970 (prepare_rules): Output dprec and merger tables.
676385e2 17971 (conflict_row): New function.
e0e5bf84 17972 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
17973 default reduction in conflicted states for GLR parser so that there
17974 are spaces for the conflict lists.
17975 (save_row): Also save conflict information.
17976 (token_actions): Allocate conflict list.
17977 (merger_output): New function.
17978 (pack_vector): Pack conflict table, too.
17979 (output_conflicts): New function to output yyconflp and yyconfl.
17980 (output_check): Allocate conflict_tos.
17981 (output_actions): Output conflict tables, also.
17982 (output_skeleton): Output b4_mergers definition.
17983 (prepare): Output b4_max_rhs_length definition.
17984 Use 'bison.glr' as default skeleton for GLR parsers.
17985
17986 * src/gram.c (glr_parser): New flag.
17987 (grammar_free): Call free_merger_functions.
17988
17989 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17990 all pairs of conflicting reductions, rather than just all tokens
17991 causing conflicts. Needed to size conflict tables.
e0e5bf84 17992 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
17993 interface.
17994 (conflicts_print): Ditto.
17995 (count_total_conflicts): New function.
17996
17997 * src/reader.h (merger_list): New type.
17998 (merge_functions): New variable.
17999
18000 * src/lex.h (tok_dprec, tok_merge): New token types.
18001
18002 * src/gram.h (rule_s): Add dprec and merger fields.
18003 (glr_parser): New flag.
18004
18005 * src/conflicts.h (count_total_conflicts): New function.
18006
18007 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
18008
18009 * doc/bison.texinfo (Generalized LR Parsing): New section.
18010 (GLR Parsers): New section.
18011 (Language and Grammar): Mention GLR parsing.
18012 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
18013 Correct typo ("tge" -> "the").
18014
18015 * data/bison.glr: New skeleton for GLR parsing.
18016
18017 * tests/cxx-gram.at: New tests for GLR parsing.
18018
18019 * tests/testsuite.at: Include cxx-gram.at.
18020
18021 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 18022
676385e2
PH
18023 * src/parse-gram.y:
18024
18025 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18026
18027 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 18028
b5480d74 180292002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
18030
18031 * src/options.h, src/options.c: Remove.
18032 * src/getargs.c (short_options, long_options): New.
18033
60491a94
AD
180342002-06-27 Akim Demaille <akim@epita.fr>
18035
18036 * data/bison.simple, data/bison.c++: Rename as...
18037 * data/yacc.c, data/lalr1.cc: these.
18038 * doc/bison.texinfo (Environment Variables): Remove.
18039
9be0c25b
AD
180402002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18041
18042 * src/getargs.c (report_argmatch): Initialize strtok().
18043
1ae72863
AD
180442002-06-20 Akim Demaille <akim@epita.fr>
18045
18046 * data/bison.simple (b4_symbol_actions): New, replaces...
18047 (b4_symbol_destructor, b4_symbol_printer): these.
18048 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18049 user token numbers.
18050
87542d29
AD
180512002-06-20 Akim Demaille <akim@epita.fr>
18052
18053 * data/bison.simple (yydestructor): Rename as...
18054 (yydestruct): this.
18055
1a31ed21
AD
180562002-06-20 Akim Demaille <akim@epita.fr>
18057
18058 * src/symtab.h, src/symtab.c (symbol_type_set)
18059 (symbol_destructor_set, symbol_precedence_set): The location is
18060 the last argument.
18061 Adjust all callers.
18062
e776192e
AD
180632002-06-20 Akim Demaille <akim@epita.fr>
18064
18065 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18066 internals.
18067 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18068 Takes a location.
18069 * src/symtab.h, src/symtab.c (symbol_class_set)
18070 (symbol_user_token_number_set): Likewise.
18071 Adjust all callers.
18072 Promote complain_at.
18073 * tests/input.at (Type Clashes): Adjust.
18074
5c1180b3
AD
180752002-06-20 Akim Demaille <akim@epita.fr>
18076
18077 * data/bison.simple (YYLEX): Fix the declaration when
18078 %pure-parser.
18079
e3170060
AD
180802002-06-20 Akim Demaille <akim@epita.fr>
18081
18082 * data/bison.simple (yysymprint): Don't print the token number,
18083 just its name.
18084 * tests/actions.at (Destructors): Rename as...
18085 (Printers and Destructors): this.
18086 Also exercise %printer.
18087
253862fd
AD
180882002-06-20 Akim Demaille <akim@epita.fr>
18089
18090 * data/bison.simple (YYDSYMPRINT): New.
18091 Use it to remove many of the #if YYDEBUG/if (yydebug).
18092
366eea36
AD
180932002-06-20 Akim Demaille <akim@epita.fr>
18094
18095 * src/symtab.h, src/symtab.c (symbol_t): printer and
18096 printer_location are new members.
18097 (symbol_printer_set): New.
18098 * src/parse-gram.y (PERCENT_PRINTER): New token.
18099 Handle its associated rule.
18100 * src/scan-gram.l: Adjust.
18101 (handle_destructor_at, handle_destructor_dollar): Rename as...
18102 (handle_symbol_code_at, handle_symbol_code_dollar): these.
18103 * src/output.c (symbol_printers_output): New.
18104 (output_skeleton): Call it.
18105 * data/bison.simple (yysymprint): New. Cannot be named yyprint
18106 since there are already many grammar files with a user `yyprint'.
18107 Replace the calls to YYPRINT to calls to yysymprint.
18108 * tests/calc.at: Adjust.
18109 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
18110 taking advantage of parser very internal details (stack size!).
18111
4f25ebb0
AD
181122002-06-20 Akim Demaille <akim@epita.fr>
18113
18114 * src/scan-gram.l: Complete the scanner with the missing patterns
18115 to pacify Flex.
18116 Use `quote' and `symbol_tag_get' where appropriate.
18117
93b68a0e
AD
181182002-06-19 Akim Demaille <akim@epita.fr>
18119
18120 * tests/actions.at (Destructors): Augment to test locations.
18121 * data/bison.simple (yydestructor): Pass it the current location
18122 if locations are enabled.
18123 Prototype only when __STDC__ or C++.
18124 Change the argument names to move into the yy name space: there is
18125 user code here.
18126
58612f1d
AD
181272002-06-19 Akim Demaille <akim@epita.fr>
18128
74310291
AD
18129 * data/bison.simple (b4_pure_if): New.
18130 Use it instead of #ifdef YYPURE.
18131
181322002-06-19 Akim Demaille <akim@epita.fr>
18133
18134 * data/bison.simple (b4_location_if): New.
58612f1d
AD
18135 Use it instead of #ifdef YYLSP_NEEDED.
18136
f25bfb75
AD
181372002-06-19 Akim Demaille <akim@epita.fr>
18138
18139 Prepare @$ in %destructor, but currently don't bind it in the
18140 skeleton, as %location use is not cleaned up yet.
18141
18142 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18143 (handle_action_at): New.
18144 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18145 a braced_code_t and a location as additional arguments.
18146 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18147 unquote one when outputting `b4_dollar_dollar'.
18148 Adjust callers.
18149 * data/bison.simple (b4_eval): Remove.
18150 (b4_symbol_destructor): Adjust.
18151 * tests/input.at (Invalid @n): Adjust.
18152
c732d2c6
AD
181532002-06-19 Zack Weinberg <zack@codesourcery.com>
18154
18155 * doc/bison.texinfo: Document ability to have multiple
18156 prologue sections.
18157
8c165d89
AD
181582002-06-18 Akim Demaille <akim@epita.fr>
18159
18160 * src/files.c (compute_base_names): When computing the output file
18161 names from the input file name, strip the directory part.
18162
ca98bf57
AD
181632002-06-18 Akim Demaille <akim@epita.fr>
18164
18165 * data/bison.simple.new: Comment changes.
18166 Reported by Andreas Schwab.
18167
0bfb02ff
AD
181682002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18169
18170 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18171 there are no `label `yyoverflowlab' defined but not used' warnings
18172 when yyoverflow is defined.
18173
24c0aad7
AD
181742002-06-18 Akim Demaille <akim@epita.fr>
18175
18176 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18177 new member.
18178 (symbol_destructor_set): Adjust.
18179 * src/output.c (symbol_destructors_output): Output the destructor
18180 locations.
18181 Output the symbol name.
18182 * data/bison.simple (b4_symbol_destructor): Adjust.
18183
5719c109
AD
181842002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18185 and Akim Demaille <akim@epita.fr>
18186
18187 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18188 what's left on the stack when the error recovery hits EOF.
18189 * tests/actions.at (Destructors): Complete to exercise this case.
18190
9280d3ef
AD
181912002-06-17 Akim Demaille <akim@epita.fr>
18192
18193 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18194 arguments is really empty, not only equal to `[]'.
18195 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18196 member.
18197 (symbol_destructor_set): New.
18198 * src/output.c (symbol_destructors_output): New.
18199 * src/reader.h (brace_code_t, current_braced_code): New.
18200 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18201 (handle_dollar): Rename as...
18202 (handle_action_dollar): this.
18203 (handle_destructor_dollar): New.
18204 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18205 (grammar_declaration): Use it.
18206 * data/bison.simple (yystos): Is always defined.
18207 (yydestructor): New.
18208 * tests/actions.at (Destructors): New.
18209 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18210
dafdc66f
AD
182112002-06-17 Akim Demaille <akim@epita.fr>
18212
18213 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18214 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18215 rule_length only when needed.
18216 * src/output.c (actions_output, token_definitions_output): Output
18217 the full M4 block.
18218 * src/symtab.c: Don't access directly to the symbol tag, use
18219 symbol_tag_get.
18220 * src/parse-gram.y: Use symbol_list_free.
18221
56c47203
AD
182222002-06-17 Akim Demaille <akim@epita.fr>
18223
18224 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18225 (symbol_list_prepend, get_type_name): Move to...
18226 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18227 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18228 Adjust all callers.
18229 (symbol_list_free): New.
18230 * src/scan-gram.l (handle_dollar): Takes a location.
18231 * tests/input.at (Invalid $n): Adjust.
18232
1e0bab92
AD
182332002-06-17 Akim Demaille <akim@epita.fr>
18234
18235 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18236 (symbol_list_prepend): New.
18237 * src/parse-gram.y (%union): `list' is a new member.
18238 (symbols.1): New, replaces...
18239 (terms_to_prec.1, nterms_to_type.1): these.
18240 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18241 Take a location as additional argument.
18242 Adjust all callers.
18243
04e60654
AD
182442002-06-15 Akim Demaille <akim@epita.fr>
18245
18246 * src/parse-gram.y: Move %token in the declaration section so that
18247 we don't depend upon CVS Bison.
18248
10e5b8bd
AD
182492002-06-15 Akim Demaille <akim@epita.fr>
18250
18251 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18252 * src/print.c (print_core): Use it.
18253
9801d40c
AD
182542002-06-15 Akim Demaille <akim@epita.fr>
18255
18256 * src/conflicts.c (log_resolution): Accept the rule involved in
18257 the sr conflicts instead of the lookahead number that points to
18258 that rule.
18259 (flush_reduce): Accept the current lookahead vector as argument,
18260 instead of the index in LA.
18261 (resolve_sr_conflict): Accept the current number of lookahead
18262 bitset to consider for the STATE, instead of the index in LA.
18263 (set_conflicts): Adjust.
18264 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18265
c0263492
AD
182662002-06-15 Akim Demaille <akim@epita.fr>
18267
18268 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18269 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18270 Adjust all dependencies.
18271 * src/lalr.c (initialize_lookaheads): Split into...
18272 (states_lookaheads_count, states_lookaheads_initialize): these.
18273 (lalr): Adjust.
18274
9757c359
AD
182752002-06-15 Akim Demaille <akim@epita.fr>
18276
18277 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18278 out of...
18279 (grammar_rules_print): here.
18280 * src/reduce.c (reduce_output): Use it.
18281 * tests/reduce.at (Useless Rules, Reduced Automaton)
18282 (Underivable Rules): Adjust.
18283
6b98e4b5
AD
182842002-06-15 Akim Demaille <akim@epita.fr>
18285
18286 Copy BYacc's nice way to report the grammar.
18287
18288 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18289 New.
18290 Don't print the rules' location, it is confusing and useless.
18291 (rule_print): Use grammar_rhs_print.
18292 * src/print.c (print_grammar): Use grammar_rules_print.
18293
6b98e4b5
AD
182942002-06-15 Akim Demaille <akim@epita.fr>
18295
18296 Complete and rationalize `useless thing' warnings.
18297
18298 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18299 (symbol_tag_print): New.
18300 Use them everywhere in place of accessing directly the tag member.
18301 * src/gram.h, src/gram.c (rule_print): New.
18302 Use it where a rule used to be printed `by hand'.
18303 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18304 (reduce_grammar_tables): Report the useless rules.
18305 (reduce_print): Useless things are a warning, not an error.
18306 Report it as such.
18307 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18308 (Reduced Automaton, Underivable Rules): Adjust.
18309 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18310 * tests/conflicts.at (Unresolved SR Conflicts)
18311 (Solved SR Conflicts): Adjust.
18312
ee000ba4
AD
183132002-06-15 Akim Demaille <akim@epita.fr>
18314
18315 Let symbols have a location.
18316
18317 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18318 (getsym): Adjust.
18319 Adjust all callers.
18320 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18321 Use location_t, not int.
18322 * src/symtab.c (symbol_check_defined): Take advantage of the
18323 location.
18324 * tests/regression.at (Invalid inputs): Adjust.
18325
8efe435c
AD
183262002-06-15 Akim Demaille <akim@epita.fr>
18327
18328 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18329 (input): Don't try to initialize yylloc here, do it in the
18330 scanner.
18331 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18332 * src/gram.h (rule_t): Change line and action_line into location
18333 and action_location, of location_t type.
18334 Adjust all dependencies.
18335 * src/location.h, src/location.c (empty_location): New.
18336 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18337 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18338 (grammar_current_rule_symbol_append)
18339 (grammar_current_rule_action_append): Expect a location as argument.
18340 * src/reader.c (grammar_midrule_action): Adjust to attach an
18341 action's location as dummy symbol location.
18342 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18343 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18344 the line numbers.
18345
1921f1d7
AD
183462002-06-14 Akim Demaille <akim@epita.fr>
18347
18348 Grammar declarations may be found in the grammar section.
18349
18350 * src/parse-gram.y (rules_or_grammar_declaration): New.
18351 (declarations): Each declaration may end with a semicolon, not
18352 just...
18353 (grammar_declaration): `"%union"'.
18354 (grammar): Branch to rules_or_grammar_declaration.
18355
4515534c
AD
183562002-06-14 Akim Demaille <akim@epita.fr>
18357
18358 * src/main.c (main): Invoke scanner_free.
18359
f958596b
AD
183602002-06-14 Akim Demaille <akim@epita.fr>
18361
18362 * src/output.c (m4_invoke): Extracted from...
18363 (output_skeleton): here.
18364 Free tempfile.
18365
2c569025
AD
183662002-06-14 Akim Demaille <akim@epita.fr>
18367
18368 * src/parse-gram.y (directives, directive, gram)
18369 (grammar_directives, precedence_directives, precedence_directive):
18370 Rename as...
18371 (declarations, declaration, grammar, grammar_declaration)
18372 (precedence_declaration, precedence_declarator): these.
18373 (symbol_declaration): New.
18374
592e8d4d
AD
183752002-06-14 Akim Demaille <akim@epita.fr>
18376
18377 * src/files.c (action_obstack): Remove, unused.
18378 (output_obstack): Remove it, and all its dependencies, as it is no
18379 longer needed.
18380 * src/reader.c (epilogue_set): Build the epilogue in the
18381 muscle_obstack.
18382 * src/output.h, src/output.c (muscle_obstack): Move to...
18383 * src/muscle_tab.h, src/muscle_tab.h: here.
18384 (muscle_init): Initialize muscle_obstack.
18385 (muscle_free): New.
18386 * src/main.c (main): Call it.
18387
0c15323d
AD
183882002-06-14 Akim Demaille <akim@epita.fr>
18389
18390 * src/location.h: New, extracted from...
18391 * src/reader.h: here.
18392 * src/Makefile.am (noinst_HEADERS): Merge into
18393 (bison_SOURCES): this.
18394 Add location.h.
18395 * src/parse-gram.y: Use location_t instead of Bison's.
18396 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18397 Use location_t instead of ints.
18398
e96c9728
AD
183992002-06-14 Akim Demaille <akim@epita.fr>
18400
18401 * data/bison.simple, data/bison.c++: Be sure to restore the
18402 current #line when returning to the skeleton contents after having
18403 exposed the input file's #line.
18404
75d1fe16
AD
184052002-06-12 Akim Demaille <akim@epita.fr>
18406
18407 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18408 eager.
18409 * tests/actions.at (Exotic Dollars): New.
18410
6c35d22c
AD
184112002-06-12 Akim Demaille <akim@epita.fr>
18412
18413 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18414 ['"/] too eagerly.
18415 * tests/input.at (Torturing the Scanner): New.
18416
1d6412ad
AD
184172002-06-11 Akim Demaille <akim@epita.fr>
18418
18419 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18420 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18421 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18422 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18423 * src/reader.c (reader): Use it.
18424
4cdb01db
AD
184252002-06-11 Akim Demaille <akim@epita.fr>
18426
18427 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18428 Adjust all callers.
18429 (scanner_last_string_free): New.
18430
44995b2e
AD
184312002-06-11 Akim Demaille <akim@epita.fr>
18432
18433 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18434 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18435 (last_string, YY_OBS_FREE): New.
18436 Use them when returning an ID.
18437
e9955c83
AD
184382002-06-11 Akim Demaille <akim@epita.fr>
18439
18440 Have Bison grammars parsed by a Bison grammar.
18441
18442 * src/reader.c, src/reader.h (prologue_augment): New.
18443 * src/reader.c (copy_definition): Remove.
18444
18445 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18446 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18447 (grammar_current_rule_prec_set, grammar_current_rule_check)
18448 (grammar_current_rule_symbol_append)
18449 (grammar_current_rule_action_append): Export.
18450 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18451 (symbol_list_action_append): Remove.
18452 Hook the routines from reader.
18453 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18454 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18455
18456 * src/reader.c (read_declarations): Remove, unused.
18457
18458 * src/parse-gram.y: Handle the epilogue.
18459 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18460 (grammar_start_symbol_set): this.
18461 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18462 * src/reader.c (readgram): Remove, unused.
18463 (reader): Adjust to insert eoftoken and axiom where appropriate.
18464
18465 * src/reader.c (copy_dollar): Replace with...
18466 * src/scan-gram.h (handle_dollar): this.
18467 * src/parse-gram.y: Remove `%thong'.
18468
18469 * src/reader.c (copy_at): Replace with...
18470 * src/scan-gram.h (handle_at): this.
18471
18472 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18473 New.
18474
18475 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18476 time being.
18477
18478 * src/reader.h, src/reader.c (grammar_rule_end): New.
18479
18480 * src/parse.y (current_type, current_class): New.
18481 Implement `%nterm', `%token' support.
18482 Merge `%term' into `%token'.
18483 (string_as_id): New.
18484 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18485 type name.
18486
18487 * src/parse-gram.y: Be sure to handle properly the beginning of
18488 rules.
18489
18490 * src/parse-gram.y: Handle %type.
18491 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18492
18493 * src/parse-gram.y: More directives support.
18494 * src/options.c: No longer handle source directives.
18495
18496 * src/parse-gram.y: Fix %output.
18497
18498 * src/parse-gram.y: Handle %union.
18499 Use the prologue locations.
18500 * src/reader.c (parse_union_decl): Remove.
18501
18502 * src/reader.h, src/reader.c (epilogue_set): New.
18503 * src/parse-gram.y: Use it.
18504
18505 * data/bison.simple, data/bison.c++: b4_stype is now either not
18506 defined, then default to int, or to the contents of %union,
18507 without `union' itself.
18508 Adjust.
18509 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18510
18511 * src/output.c (actions_output): Don't output braces, as they are
18512 already handled by the scanner.
18513
18514 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18515 characters to themselves.
18516
18517 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18518 that the epilogue has a proper #line.
18519
18520 * src/parse-gram.y: Handle precedence/associativity.
18521
18522 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18523 a terminal.
18524 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18525 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18526 at all to define terminals that cannot be emitted.
18527
18528 * src/scan-gram.l: Escape M4 characters.
18529
18530 * src/scan-gram.l: Working properly with escapes in user
18531 strings/characters.
18532
18533 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18534 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18535 grammar.
18536 Use more modest sizes, as for the time being the parser does not
18537 release memory, and therefore the process swallows a huge amount
18538 of memory.
18539
18540 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18541 stricter %token grammar.
18542
18543 * src/symtab.h (associativity): Add `undef_assoc'.
18544 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18545 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18546
18547 * tests/regression.at (Invalid %directive): Remove, as it is now
18548 meaningless.
18549 (Invalid inputs): Adjust to the new error messages.
18550 (Token definitions): The new grammar doesn't allow too many
18551 eccentricities.
18552
18553 * src/lex.h, src/lex.c: Remove.
18554 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18555 (copy_character, copy_string2, copy_string, copy_identifier)
18556 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18557 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18558 (parse_action): Remove.
18559 * po/POTFILES.in: Adjust.
18560
2e047461
AD
185612002-06-11 Akim Demaille <akim@epita.fr>
18562
cd05d13c 18563 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
18564 rule's action member: return the action as a string.
18565 Don't require `rule_length' as an argument: compute it.
18566 (grammar_current_rule_symbol_append)
18567 (grammar_current_rule_action_append): New, eved out from
18568 (readgram): here.
18569 Remove `action_flag', `rulelength', unused now.
18570
9af3fbce
AD
185712002-06-11 Akim Demaille <akim@epita.fr>
18572
18573 * src/reader.c (grammar_current_rule_prec_set).
18574 (grammar_current_rule_check): New, eved out from...
18575 (readgram): here.
18576 Remove `xaction', `first_rhs': useless.
18577 * tests/input.at (Type clashes): New.
18578 * tests/existing.at (GNU Cim Grammar): Adjust.
18579
1485e106
AD
185802002-06-11 Akim Demaille <akim@epita.fr>
18581
18582 * src/reader.c (grammar_midrule_action): New, Eved out from
18583 (readgram): here.
18584
da4160c3
AD
185852002-06-11 Akim Demaille <akim@epita.fr>
18586
18587 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18588 New.
18589 (readgram): Use them as replacement of inlined code, crule and
18590 crule1.
18591
f6d0f937
AD
185922002-06-11 Akim Demaille <akim@epita.fr>
18593
18594 * src/reader.c (grammar_end, grammar_symbol_append): New.
18595 (readgram): Use them.
18596 Make the use of `p' as local as possible.
18597
69078d4b
AD
185982002-06-10 Akim Demaille <akim@epita.fr>
18599
18600 GCJ's parser requires the tokens to be defined before the prologue.
18601
18602 * data/bison.simple: Output the token definition before the user's
18603 prologue.
18604 * tests/regression.at (Braces parsing, Duplicate string)
18605 (Mixing %token styles): Check the output from bison.
18606 (Early token definitions): New.
18607
5e424082
AD
186082002-06-10 Akim Demaille <akim@epita.fr>
18609
18610 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18611 assigning twice the same user number to a token, so that we can
18612 use it in...
18613 * src/lex.c (lex): here.
18614 Also use `symbol_class_set' instead of hand written code.
18615 * src/reader.c (parse_assoc_decl): Likewise.
18616
44536b35
AD
186172002-06-10 Akim Demaille <akim@epita.fr>
18618
18619 * src/symtab.c, src/symtab.c (symbol_class_set)
18620 (symbol_user_token_number_set): New.
18621 * src/reader.c (parse_token_decl): Use them.
18622 Use a switch instead of ifs.
18623 Use a single argument.
18624
8b9f2372
AD
186252002-06-10 Akim Demaille <akim@epita.fr>
18626
18627 Remove `%thong' support as it is undocumented, unused, duplicates
18628 `%token's job, and creates useless e-mail traffic with people who
18629 want to know what it is, why it is undocumented, unused, and
18630 duplicates `%token's job.
18631
18632 * src/reader.c (parse_thong_decl): Remove.
18633 * src/options.c (option_table): Remove "thong".
18634 * src/lex.h (tok_thong): Remove.
18635
3ae2b51f
AD
186362002-06-10 Akim Demaille <akim@epita.fr>
18637
18638 * src/symtab.c, src/symtab.c (symbol_type_set)
18639 (symbol_precedence_set): New.
18640 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18641 (value_components_used): Remove, unused.
18642
2f1afb73
AD
186432002-06-09 Akim Demaille <akim@epita.fr>
18644
18645 Move symbols handling code out of the reader.
18646
18647 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18648 (axiom): Move to...
18649 * src/symtab.h, src/symtab.c: here.
18650
18651 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18652 * src/reader.c (startval): Rename as...
18653 * src/symtab.h, src/symtab.c (startsymbol): this.
18654 * src/reader.c: Adjust.
18655
18656 * src/reader.c (symbol_check_defined, symbol_make_alias)
18657 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18658 (token_translations_init)
18659 Move to...
18660 * src/symtab.c: here.
18661 * src/reader.c (packsymbols): Move to...
18662 * src/symtab.h, src/symtab.c (symbols_pack): here.
18663 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18664 argument.
18665
e9bca3ad
AD
186662002-06-03 Akim Demaille <akim@epita.fr>
18667
18668 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18669 then statements.
18670
86eff183
AD
186712002-06-03 Akim Demaille <akim@epita.fr>
18672
18673 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18674 structs with non literals.
18675 * src/scan-skel.l: never-interactive.
18676 * src/conflicts.c (enum conflict_resolution_e): No trailing
18677 comma.
18678 * src/getargs.c (usage): Split long literal strings.
18679 Reported by Hans Aberg.
18680
717be197
AD
186812002-05-28 Akim Demaille <akim@epita.fr>
18682
18683 * data/bison.c++: Use C++ ostreams.
18684 (cdebug_): New member.
18685
670ddffd
AD
186862002-05-28 Akim Demaille <akim@epita.fr>
18687
18688 * src/output.c (output_skeleton): Be sure to allocate enough room
18689 for `/' _and_ for `\0' in full_skeleton.
18690
769b430f
AD
186912002-05-28 Akim Demaille <akim@epita.fr>
18692
18693 * data/bison.c++: Catch up with bison.simple:
18694 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18695 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18696 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18697 and popping traces.
18698
7067cb36
PH
186992002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18700
18701 * src/output.c (output_skeleton): Put an explicit path in front of
18702 the skeleton file name, rather than relying on the -I directory,
18703 to partially alleviate effects of having a skeleton file lying around
18704 in the current directory.
769b430f 18705
4a713ec2
PH
187062002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18707
769b430f 18708 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
18709 obstack_printf should be obstack_fgrow1.
18710
b408954b
AD
187112002-05-26 Akim Demaille <akim@epita.fr>
18712
18713 * src/state.h (state_t): `solved_conflicts' is a new member.
18714 * src/LR0.c (new_state): Set it to 0.
18715 * src/conflicts.h, src/conflicts.c (print_conflicts)
18716 (free_conflicts, solve_conflicts): Rename as...
18717 (conflicts_print, conflicts_free, conflicts_solve): these.
18718 Adjust callers.
18719 * src/conflicts.c (enum conflict_resolution_e)
18720 (solved_conflicts_obstack): New, used by...
18721 (log_resolution): this.
18722 Adjust to attach the conflict resolution to each state.
18723 Complete the description with the precedence/associativity
18724 information.
18725 (resolve_sr_conflict): Adjust.
18726 * src/print.c (print_state): Output its solved_conflicts.
18727 * tests/conflicts.at (Unresolved SR Conflicts)
18728 (Solved SR Conflicts): Exercise --report=all.
18729
a49aecd5
AD
187302002-05-26 Akim Demaille <akim@epita.fr>
18731
18732 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18733 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18734 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18735 (token_number_t, item_number_as_token_number)
18736 (token_number_as_item_number, muscle_insert_token_number_table):
18737 Rename as...
18738 (symbol_number_t, item_number_as_symbol_number)
18739 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18740 these, since it is more appropriate.
18741
5504898e
AD
187422002-05-26 Akim Demaille <akim@epita.fr>
18743
18744 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18745 `Error:' lines.
18746 * data/bison.simple (yystos) [YYDEBUG]: New.
18747 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18748 error recovery.
18749 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18750
ec3bc396
AD
187512002-05-25 Akim Demaille <akim@epita.fr>
18752
18753 * doc/bison.texinfo (Debugging): Split into...
18754 (Tracing): this new section, its former contents, and...
18755 (Understanding): this new section.
18756 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18757 by...
18758 (report_flag): this.
18759 Adjust all dependencies.
18760 (report_args, report_types, report_argmatch): New.
18761 (usage, getargs): Report/support -r, --report.
18762 * src/options.h
18763 (struct option_table_struct): Rename as..,
18764 (struct option_table_s): this.
18765 Rename the `set_flag' member to `flag' to match with getopt_long's
18766 struct.
18767 * src/options.c (option_table): Split verbose into an entry for
18768 %verbose, and another for --verbose.
18769 Support --report/-r, so remove -r from the obsolete --raw.
18770 * src/print.c: Attach full item sets and lookaheads reports to
18771 report_flag instead of trace_flag.
18772 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18773
78df8250
PE
187742002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18775 and Paul Eggert <eggert@twinsun.com>
769b430f 18776
78df8250
PE
18777 * data/bison.simple (yyparse): Correct error handling to conform to
18778 POSIX and yacc. Specifically, after syntax error is discovered,
18779 do not reduce further before shifting the error token.
18780 Clean up the code a bit by removing the labels yyerrdefault,
18781 yyerrhandle, yyerrpop.
18782 * NEWS: Document the above.
18783
c0c9ea05
PH
187842002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18785
18786 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18787 type; it isn't always big enough, since it doesn't necessarily
18788 include non-terminals.
769b430f 18789 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
18790 the latter can be removed.
18791 (yy_token_number_type): Remove, only one use.
18792 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18793 don't use TokenNumberType as element type.
769b430f 18794
c0c9ea05
PH
18795 * tests/regression.at: Modify expected output to agree with change
18796 to yyr1 and yytranslate.
769b430f 18797
6390a83f
FK
187982002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18799
18800 * src/reader.c (parse_action): Use copy_character instead of
18801 obstack_1grow.
18802
db7c8e9a
AD
188032002-05-13 Akim Demaille <akim@epita.fr>
18804
18805 * tests/regression.at (Token definitions): Prototype yylex and
18806 yyerror.
18807
fcc61800
PH
188082002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18809
158c687b 18810 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
18811 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18812 32-bit arithmetic.
18813 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18814
5683e9b2
AD
188152002-05-07 Akim Demaille <akim@epita.fr>
18816
18817 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18818 avoid GCC warnings.
18819
0c2d3f4c
AD
188202002-05-07 Akim Demaille <akim@epita.fr>
18821
18822 Kill GCC warnings.
18823
18824 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18825 over the RHS of each rule.
18826 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18827 * src/state.h (state_t): Member `nitems' is unsigned short.
18828 * src/LR0.c (get_state): Adjust.
18829 * src/reader.c (packgram): Likewise.
18830 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18831 `Type'.
18832 (muscle_insert_int_table): Remove, unused.
18833 (prepare_rules): Remove `max'.
18834
1565b720
AD
188352002-05-06 Akim Demaille <akim@epita.fr>
18836
18837 * src/closure.c (print_firsts): Display of the symbol tags.
18838 (bitmatrix_print): Move to...
18839 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18840 here.
18841 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18842
cfaee611
AD
188432002-05-06 Akim Demaille <akim@epita.fr>
18844
18845 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18846 hash_do_for_each.
18847
458be8e0
AD
188482002-05-06 Akim Demaille <akim@epita.fr>
18849
18850 * src/LR0.c (new_state, get_state): Instead of using the global
18851 `kernel_size' and `kernel_base', have two new arguments:
18852 `core_size' and `core'.
18853 Adjust callers.
18854
a900a624
AD
188552002-05-06 Akim Demaille <akim@epita.fr>
18856
18857 * src/reader.c (packgram): No longer end `ritem' with a 0
18858 sentinel: it is not used.
18859
d4e7d3a1
AD
188602002-05-05 Akim Demaille <akim@epita.fr>
18861
18862 New experimental feature: display the lookaheads in the report and
18863 graph.
18864
18865 * src/print (print_core): When --trace-flag, display the rules
18866 lookaheads.
18867 * src/print_graph.c (print_core): Likewise.
18868 Swap the arguments.
18869 Adjust caller.
18870
39ceb25b
AD
188712002-05-05 Akim Demaille <akim@epita.fr>
18872
18873 * tests/torture.at (Many lookaheads): New test.
18874
5372019f
AD
188752002-05-05 Akim Demaille <akim@epita.fr>
18876
18877 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18878 (GENERATE_MUSCLE_INSERT_TABLE): this.
18879 (output_int_table, output_unsigned_int_table, output_short_table)
18880 (output_token_number_table, output_item_number_table): Replace with...
18881 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18882 (muscle_insert_short_table, muscle_insert_token_number_table)
18883 (muscle_insert_item_number_table): these.
18884 Adjust all callers.
18885 (prepare_tokens): Don't free `translations', since...
18886 * src/reader.h, src/reader.c (grammar_free): do it.
18887 Move to...
18888 * src/gram.h, src/gram.c (grammar_free): here.
18889 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18890 b4_translate_max.
18891
5df5f6d5
AD
188922002-05-05 Akim Demaille <akim@epita.fr>
18893
18894 * src/output.c (output_unsigned_int_table): New.
18895 (prepare_rules): `i' is unsigned.
18896 `prhs', `rline', `r2' are unsigned int.
18897 Rename muscle `rhs_number_max' as `rhs_max'.
18898 Output muscles `prhs_max', `rline_max', and `r2_max'.
18899 Free rline and r1.
18900 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18901 to compute types instead of constant types.
18902 * tests/regression.at (Web2c Actions): Adjust.
18903
b87f8b21
AD
189042002-05-04 Akim Demaille <akim@epita.fr>
18905
18906 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18907 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18908 Adjust dependencies.
18909 * src/output.c (token_definitions_output): Be sure not to output a
18910 `#define 'a'' when fed with `%token 'a' "a"'.
18911 * tests/regression.at (Token definitions): New.
18912
8bb936e4
PE
189132002-05-03 Paul Eggert <eggert@twinsun.com>
18914
18915 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18916 for K&R C.
18917
189182002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18919
18920 * Makefile.am (SUBDIRS): Remove intl.
18921 (EXTRA_DIST): Add config/config.rpath.
18922
53c71a12
AD
189232002-05-03 Akim Demaille <akim@epita.fr>
18924
18925 * data/bison.simple (m4_if): Don't output empty enums.
18926 And actually, output valid enum definitions :(.
18927
289dd0cf
AD
189282002-05-03 Akim Demaille <akim@epita.fr>
18929
18930 * configure.bat: Remove, completely obsolete.
18931 * Makefile.am (EXTRA_DIST): Adjust.
18932 Don't distribute config.rpath...
18933 * config/Makefile.am (EXTRA_DIST): Do it.
18934
db85e524
AD
189352002-05-03 Akim Demaille <akim@epita.fr>
18936
18937 * configure.in (GETTEXT_VERSION): New.
18938 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18939
83ccf991
AD
189402002-05-03 Akim Demaille <akim@epita.fr>
18941
18942 * data/bison.simple (b4_token_enum): New.
18943 (b4_token_defines): Use it to output tokens both as #define and
18944 enums.
18945 Suggested by Paul Eggert.
18946 * src/output.c (token_definitions_output): Don't output spurious
18947 white spaces.
18948
1f418995
AD
189492002-05-03 Akim Demaille <akim@epita.fr>
18950
18951 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18952
45119f04
RA
189532002-05-02 Robert Anisko <robert@lrde.epita.fr>
18954
18955 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18956 Update the stack class, give a try to deque as the default container.
18957
b2d52318
AD
189582002-05-02 Akim Demaille <akim@epita.fr>
18959
18960 * data/bison.simple (yyparse): Do not implement @$ = @1.
18961 (YYLLOC_DEFAULT): Adjust to do it.
18962 * doc/bison.texinfo (Location Default Action): Fix.
18963
3a8b4109
AD
189642002-05-02 Akim Demaille <akim@epita.fr>
18965
18966 * src/reader.c (parse_braces): Merge into...
18967 (parse_action): this.
18968
84614e13
AD
189692002-05-02 Akim Demaille <akim@epita.fr>
18970
18971 * configure.in (ALL_LINGUAS): Remove.
18972 * po/LINGUAS, hr.po: New.
18973
fdbcd8e2
AD
189742002-05-02 Akim Demaille <akim@epita.fr>
18975
18976 Remove the so called hairy (semantic) parsers.
18977
18978 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18979 * src/gram.h, src/gram.c (semantic_parser): Remove.
18980 (rule_t): Remove the guard and guard_line members.
18981 * src/lex.h (token_t): remove tok_guard.
18982 * src/options.c (option_table): Remove %guard and %semantic_parser
18983 support.
18984 * src/output.c, src/output.h (guards_output): Remove.
18985 (prepare): Adjust.
18986 (token_definitions_output): Don't output the `T'
18987 tokens (???).
18988 (output_skeleton): Don't output the guards.
18989 * src/files.c, src/files.c (attrsfile): Remove.
18990 * src/reader.c (symbol_list): Remove the guard and guard_line
18991 members.
18992 Adjust dependencies.
18993 (parse_guard): Remove.
18994 * data/bison.hairy: Remove.
18995 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18996 BISON_HAIRY.
18997
82b6cb3f
AD
189982002-05-02 Akim Demaille <akim@epita.fr>
18999
19000 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
19001 (parse_guard): Rename the formal argument `stack_offset' as
19002 `rule_length', which is more readable.
19003 Adjust callers.
19004 (copy_at, copy_dollar): Instead of outputting the hard coded
19005 values of $$, $n and so forth, output invocation to b4_lhs_value,
19006 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
19007 Note: this patch partially drops `semantic-parser' support: it
19008 always does `rule_length - n', where semantic parsers ought to
19009 always use `-n'.
82b6cb3f
AD
19010 * data/bison.simple, data/bison.c++ (b4_lhs_value)
19011 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
19012
6cbfbcc5
AD
190132002-05-02 Akim Demaille <akim@epita.fr>
19014
19015 * configure.in (AC_INIT): Bump to 1.49b.
19016 (AM_INIT_AUTOMAKE): Short invocation.
19017
b8548114
AD
190182002-05-02 Akim Demaille <akim@epita.fr>
19019
19020 Version 1.49a.
19021
c20cd1fa
AD
190222002-05-01 Akim Demaille <akim@epita.fr>
19023
19024 * src/skeleton.h: Remove.
19025
8a9566d4
AD
190262002-05-01 Akim Demaille <akim@epita.fr>
19027
19028 * src/skeleton.h: Fix the #endif.
19029 Reported by Magnus Fromreide.
19030
8c6d399a
PE
190312002-04-26 Paul Eggert <eggert@twinsun.com>
19032
19033 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19034 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 19035 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 19036
2b7ed18a
RA
190372002-04-25 Robert Anisko <robert@lrde.epita.fr>
19038
19039 * src/scan-skel.l: Postprocess quadrigraphs.
19040
19041 * src/reader.c (copy_character): New function, used to output
19042 single characters while replacing `[' and `]' with quadrigraphs, to
19043 avoid troubles with M4 quotes.
19044 (copy_comment): Output characters with copy_character.
19045 (read_additionnal_code): Likewise.
19046 (copy_string2): Likewise.
19047 (copy_definition): Likewise.
19048
19049 * tests/calc.at: Exercise M4 quoting.
19050
34a89c50
AD
190512002-04-25 Akim Demaille <akim@epita.fr>
19052
19053 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19054 between `!' and the command.
19055 Reported by Paul Eggert.
19056
0dd1580a
RA
190572002-04-24 Robert Anisko <robert@lrde.epita.fr>
19058
19059 * tests/calc.at: Exercise prologue splitting.
19060
19061 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19062 `b4_post_prologue' instead of `b4_prologue'.
19063
19064 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19065 muscles.
19066 (output): Free pre_prologue_obstack and post_prologue_obstack.
19067 * src/files.h, src/files.c (attrs_obstack): Remove.
19068 (pre_prologue_obstack, post_prologue_obstack): New.
19069 * src/reader.c (copy_definition): Add a parameter to specify the
19070 obstack to fill, instead of using attrs_obstack unconditionally.
19071 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19072 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19073
83c1796f
PE
190742002-04-23 Paul Eggert <eggert@twinsun.com>
19075
19076 * data/bison.simple: Remove unnecessary commentary and white
19077 space differences from 1_29-branch.
19078 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19079
19080 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19081 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19082 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19083 constructors or destructors.
19084
19085 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19086
1207eeac
AD
190872002-04-23 Akim Demaille <akim@epita.fr>
19088
19089 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19090 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19091 location with columns.
19092 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19093 All reported by Paul Eggert.
19094
78ab8f67
AD
190952002-04-22 Akim Demaille <akim@epita.fr>
19096
19097 * src/reduce.c (dump_grammar): Move to...
19098 * src/gram.h, src/gram.c (grammar_dump): here.
19099 Be sure to separate long item numbers.
19100 Don't read the members of a rule's prec if its nil.
19101
133c20e2
AD
191022002-04-22 Akim Demaille <akim@epita.fr>
19103
19104 * src/output.c (table_size, table_grow): New.
19105 (MAXTABLE): Remove, replace uses with table_size.
19106 (pack_vector): Instead of dying when the table is too big, grow it.
19107
9515e8a7
AD
191082002-04-22 Akim Demaille <akim@epita.fr>
19109
19110 * data/bison.simple (yyr1): Its type is that of a token number.
19111 * data/bison.c++ (r1_): Likewise.
19112 * tests/regression.at (Web2c Actions): Adjust.
19113
23c5a174
AD
191142002-04-22 Akim Demaille <akim@epita.fr>
19115
19116 * src/reader.c (token_translations_init): 256 is now the default
19117 value for the error token, i.e., it will be assigned another
19118 number if the user assigned 256 to one of her tokens.
19119 (reader): Don't force 256 to error.
19120 * doc/bison.texinfo (Symbols): Adjust.
19121 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19122 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19123 etc. instead of 10, 20, 30 (which was used to `jump' over error
19124 (256) and undefined (2)).
19125
5fbb0954
AD
191262002-04-22 Akim Demaille <akim@epita.fr>
19127
19128 Propagate more token_number_t.
19129
19130 * src/gram.h (token_number_as_item_number)
19131 (item_number_as_token_number): New.
19132 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19133 Use it to create output_item_number_table and
19134 output_token_number_table.
19135 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19136 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19137 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19138 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19139
4f940944
AD
191402002-04-22 Akim Demaille <akim@epita.fr>
19141
19142 * src/output.h, src/output.c (get_lines_number): Remove.
19143
3ded9a63
AD
191442002-04-19 Akim Demaille <akim@epita.fr>
19145
19146 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19147 as Lex/Flex'.
19148 (Debugging): More details about enabling the debugging features.
19149 (Table of Symbols): Describe $$, $n, @$, and @n.
19150 Suggested by Tim Josling.
19151
e0c471a9
AD
191522002-04-19 Akim Demaille <akim@epita.fr>
19153
19154 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19155
fecc10cd
AD
191562002-04-10 Akim Demaille <akim@epita.fr>
19157
19158 * src/system.h: Rely on HAVE_LIMITS_H.
19159 Suggested by Paul Eggert.
19160
51dec47b
AD
191612002-04-09 Akim Demaille <akim@epita.fr>
19162
19163 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19164 full stderr, and strip it according to the bison options, instead
19165 of composing the error message from different bits.
19166 This makes it easier to check for several error messages.
19167 Adjust all the invocations.
19168 Add an invocation exercising the error token.
19169 Add an invocation demonstrating a stupid error message.
19170 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19171 Adjust the tests.
19172 Error message are for stderr, not stdout.
19173
007a50a4
AD
191742002-04-09 Akim Demaille <akim@epita.fr>
19175
19176 * src/gram.h, src/gram.c (error_token_number): Remove, use
19177 errtoken->number.
19178 * src/reader.c (reader): Don't specify the user token number (2)
19179 for $undefined, as it uselessly prevents using it.
19180 * src/gram.h (token_number_t): Move to...
19181 * src/symtab.h: here.
19182 (state_t.number): Is a token_number_t.
19183 * src/print.c, src/reader.c: Use undeftoken->number instead of
19184 hard coded 2.
19185 (Even though this 2 is not the same as above: the number of the
19186 undeftoken remains being 2, it is its user token number which
19187 might not be 2).
19188 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19189 `user_token_number_max'.
19190 Output `undef_token_number'.
19191 * data/bison.simple, data/bison.c++: Use them.
19192 Be sure to map invalid yylex return values to
19193 `undef_token_number'. This saves us from gratuitous SEGV.
19194
19195 * tests/conflicts.at (Solved SR Conflicts)
19196 (Unresolved SR Conflicts): Adjust.
19197 * tests/regression.at (Web2c Actions): Adjust.
19198
06446ccf
AD
191992002-04-08 Akim Demaille <akim@epita.fr>
19200
19201 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19202 Adding #line.
19203 Remove the duplicate `typedefs'.
19204 (RhsNumberType): Fix the declaration and various other typos.
19205 Use __ofile__.
19206 * data/bison.simple: Use __ofile__.
19207 * src/scan-skel.l: Handle __ofile__.
19208
62a3e4f0
AD
192092002-04-08 Akim Demaille <akim@epita.fr>
19210
19211 * src/gram.h (item_number_t): New, the type of item numbers in
19212 RITEM. Note that it must be able to code symbol numbers as
19213 positive number, and the negation of rule numbers as negative
19214 numbers.
19215 Adjust all dependencies (pretty many).
19216 * src/reduce.c (rule): Remove this `short *' pointer: use
19217 item_number_t.
19218 * src/system.h (MINSHORT, MAXSHORT): Remove.
19219 Include `limits.h'.
19220 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19221 (shortcpy): Remove.
19222 (MAXTABLE): Move to...
19223 * src/output.c (MAXTABLE): here.
19224 (prepare_rules): Use output_int_table to output rhs.
19225 * data/bison.simple, data/bison.c++: Adjust.
19226 * tests/torture.at (Big triangle): Move the limit from 254 to
19227 500.
19228 * tests/regression.at (Web2c Actions): Ajust.
19229
19230 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19231 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19232 passes, but produces negative #line number, once fixed, GCC is
19233 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19234 C), it passes.
19235 * src/state.h (state_h): Code input lines on ints, not shorts.
19236
bb88b0fc
AD
192372002-04-08 Akim Demaille <akim@epita.fr>
19238
19239 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19240 and then the grammar.
19241
9a636f47
AD
192422002-04-08 Akim Demaille <akim@epita.fr>
19243
19244 * src/system.h: No longer using strndup.
19245
680e8701
AD
192462002-04-07 Akim Demaille <akim@epita.fr>
19247
19248 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19249 * src/output.c (output_table_data): Return the longest number.
19250 (prepare_tokens): Output `token_number_max').
19251 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19252 New.
19253 Use them to define yy_token_number_type/TokenNumberType.
19254 Use this type for yytranslate.
19255 * tests/torture.at (Big triangle): Push the limit from 124 to
19256 253.
19257 * tests/regression.at (Web2c Actions): Adjust.
19258
817e9f41
AD
192592002-04-07 Akim Demaille <akim@epita.fr>
19260
19261 * tests/torture.at (Big triangle): New.
19262 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19263 * tests/existing.at: here.
19264
5123689b
AD
192652002-04-07 Akim Demaille <akim@epita.fr>
19266
19267 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19268 nritems.
19269 Adjust dependencies.
19270
f3849179
AD
192712002-04-07 Akim Demaille <akim@epita.fr>
19272
19273 * src/reader.c: Normalize increments to prefix form.
19274
bd02036a
AD
192752002-04-07 Akim Demaille <akim@epita.fr>
19276
19277 * src/reader.c, symtab.c: Remove debugging code.
19278
db8837cb
AD
192792002-04-07 Akim Demaille <akim@epita.fr>
19280
19281 Rename all the `bucket's as `symbol_t'.
19282
19283 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19284 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19285 * src/symtab.c, src/symtab.h (bucket): Rename as...
19286 (symbol_t): this.
19287 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19288 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19289 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19290 (buckets_new, buckets_free, buckets_do): Rename as...
19291 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19292 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19293 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19294 (symbols_new, symbols_free, symbols_do): these.
19295
72a23c97
AD
192962002-04-07 Akim Demaille <akim@epita.fr>
19297
19298 Use lib/hash for the symbol table.
19299
19300 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19301 EOF.
19302 * src/lex.c (lex): Set the `number' member of new terminals.
19303 * src/reader.c (bucket_check_defined, bucket_make_alias)
19304 (bucket_check_alias_consistence, bucket_translation): New.
19305 (reader, grammar_free, readgram, token_translations_init)
19306 (packsymbols): Adjust.
19307 (reader): Number the predefined tokens.
19308 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19309 for predefined tokens.
19310 * src/symtab.h (bucket): Remove all the hash table related
19311 members.
19312 * src/symtab.c (symtab): Replace by...
19313 (bucket_table): this.
19314 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19315 (buckets_new, buckets_do): New.
19316
280a38c3
AD
193172002-04-07 Akim Demaille <akim@epita.fr>
19318
19319 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19320 (start_symbol, max_user_token_number, semantic_parser)
19321 (error_token_number): Initialize.
19322 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19323 Initialize.
19324 (reader): Don't.
19325 (errtoken, eoftoken, undeftoken, axiom): Extern.
19326
03b31c0c
AD
193272002-04-07 Akim Demaille <akim@epita.fr>
19328
19329 * src/gram.h (rule_s): prec and precsym are now pointers
19330 to the bucket giving the priority/associativity.
19331 Member `associativity' removed: useless.
19332 * src/reduce.c, src/conflicts.c: Adjust.
19333
8b3df748
AD
193342002-04-07 Akim Demaille <akim@epita.fr>
19335
19336 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19337 Properly escape the symbols' TAG when outputting them.
19338
e601aa1d
AD
193392002-04-07 Akim Demaille <akim@epita.fr>
19340
19341 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19342
b0299a2e
AD
193432002-04-07 Akim Demaille <akim@epita.fr>
19344
19345 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19346 (LArule): this, which is an array to rule_t*.
19347 * src/print.c, src/conflicts.c: Adjust.
19348
d7e1f00c
AD
193492002-04-07 Akim Demaille <akim@epita.fr>
19350
19351 * src/gram.h (rule_t): Rename `number' as `user_number'.
19352 `number' is a new member.
19353 Adjust dependencies.
19354 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19355
cc9305dd
AD
193562002-04-07 Akim Demaille <akim@epita.fr>
19357
19358 As a result of the previous patch, it is no longer needed
19359 to reorder ritem itself.
19360
19361 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19362
b0940840
AD
193632002-04-07 Akim Demaille <akim@epita.fr>
19364
19365 Be sure never to walk through RITEMS, but use only data related to
19366 the rules themselves. RITEMS should be banished.
19367
19368 * src/output.c (output_token_translations): Rename as...
19369 (prepare_tokens): this.
19370 In addition to `translate', prepare the muscles `tname' and
19371 `toknum', which were handled by...
19372 (output_rule_data): this.
19373 Remove, and move the remainder of its outputs into...
19374 (prepare_rules): this new routines, which also merges content from
19375 (output_gram): this.
19376 (prepare_rules): Be sure never to walk through RITEMS.
19377 (output_stos): Rename as...
19378 (prepare_stos): this.
19379 (output): Always invoke prepare_states, after all, just don't use it
19380 in the output if you don't need it.
19381
643a5994
AD
193822002-04-07 Akim Demaille <akim@epita.fr>
19383
19384 * src/LR0.c (new_state): Display `nstates' as the name of the
19385 newly created state.
19386 Adjust to initialize first_state and last_state if needed.
19387 Be sure to distinguish the initial from the final state.
19388 (new_states): Create the itemset of the initial state, and use
19389 new_state.
19390 * src/closure.c (closure): Now that the initial state has its
19391 items properly set, there is no need for a special case when
19392 creating `ruleset'.
19393
19394 As a result, now the rule 0, reducing to $axiom, is visible in the
19395 outputs. Adjust the test suite.
19396
19397 * tests/conflicts.at (Solved SR Conflicts)
19398 (Unresolved SR Conflicts): Adjust.
19399 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19400 * tests/conflicts.at (S/R in initial): New.
19401
b4c4ccc2
AD
194022002-04-07 Akim Demaille <akim@epita.fr>
19403
19404 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19405 the RHS of the rules.
19406 * src/output.c (output_gram): Likewise.
19407
bba97eb2
AD
194082002-04-07 Akim Demaille <akim@epita.fr>
19409
19410 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19411 bucket.
19412 Adjust all dependencies.
19413 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19414 `number' of the buckets too.
19415 * src/gram.h: Include `symtab.h'.
19416 (associativity): Move to...
19417 * src/symtab.h: here.
19418 No longer include `gram.h'.
19419
c3b407f4
AD
194202002-04-07 Akim Demaille <akim@epita.fr>
19421
19422 * src/gram.h, src/gram.c (rules_rhs_length): New.
19423 (ritem_longest_rhs): Use it.
19424 * src/gram.h (rule_t): `number' is a new member.
19425 * src/reader.c (packgram): Set it.
19426 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19427 the end of `rules', and count them out of `nrules'.
19428 (reduce_output, dump_grammar): Adjust.
19429 * src/print.c (print_grammar): It is no longer needed to check for
19430 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19431 * tests/reduce.at (Reduced Automaton): New test.
19432
11652ab3
AD
194332002-04-07 Akim Demaille <akim@epita.fr>
19434
19435 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19436 lacking `+ 1' to nrules, Bison reported as useless a token if it
19437 was used solely to set the precedence of the last rule...
19438
26b23c1a
AD
194392002-04-07 Akim Demaille <akim@epita.fr>
19440
19441 * data/bison.c++, data/bison.simple: Don't output the current file
19442 name in #line, to avoid useless diffs between two identical
19443 outputs under different names.
19444
18bcecb0
AD
194452002-04-07 Akim Demaille <akim@epita.fr>
19446
19447 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19448 Normalize loops to using `< nrules + 1', not `<= nrules'.
19449
fa770c86
AD
194502002-04-07 Akim Demaille <akim@epita.fr>
19451
19452 * TODO: Update.
19453
d9b739c3
AD
194542002-04-07 Akim Demaille <akim@epita.fr>
19455
19456 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19457 bucket.value as bucket.number.
19458
99013900
AD
194592002-04-07 Akim Demaille <akim@epita.fr>
19460
19461 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19462 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19463 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19464 RHS, instead of being an index in RITEMS.
19465
e966383b
PE
194662002-04-04 Paul Eggert <eggert@twinsun.com>
19467
19468 * doc/bison.texinfo: Update copyright date.
19469 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19470 (Symbols): Warn about running Bison in one character set,
19471 but compiling and/or running in an incompatible one.
19472 Warn about character code 256, too.
19473
194742002-04-03 Paul Eggert <eggert@twinsun.com>
19475
19476 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19477 YYERROR_VERBOSE is nonzero, not whether it is defined.
19478
19479 Merge changes from bison-1_29-branch.
c307773e 19480
8d6c48b9
PE
194812002-03-20 Paul Eggert <eggert@twinsun.com>
19482
19483 Merge fixes from Debian bison_1.34-1.diff.
19484
19485 * configure.in (AC_PREREQ): 2.53.
19486
e53c6322
AD
194872002-03-20 Akim Demaille <akim@epita.fr>
19488
19489 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19490
9ffbeca7
PE
194912002-03-19 Paul Eggert <eggert@twinsun.com>
19492
21db0b2a
PE
19493 * src/bison.simple (YYCOPY): New macro.
19494 (YYSTACK_RELOCATE): Use it.
19495 Remove Type arg; no longer needed. All callers changed.
19496 (yymemcpy): Remove; no longer needed.
19497
9ffbeca7
PE
19498 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19499 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19500
642cb8f8
AD
195012002-03-19 Akim Demaille <akim@epita.fr>
19502
19503 Test and fix the #line outputs.
19504
19505 * tests/atlocal.at (GCC): New.
19506 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 19507 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
19508 (Action synch line, Epilogue synch line): New tests.
19509 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19510 * data/bison.simple, data/bison.c++: Use it.
19511
3c31a486
AD
195122002-03-19 Akim Demaille <akim@epita.fr>
19513
19514 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19515 (Solved SR Conflicts, %expect not enough, %expect right)
19516 (%expect too much): Move to...
19517 * tests/conflicts.at: this new file.
19518
0d8bed56
AD
195192002-03-19 Akim Demaille <akim@epita.fr>
19520
19521 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19522 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19523 that we can move to enums for instance.
19524 * src/output.c (token_definitions_output): Output a list of
19525 `token-name, token-number' instead of the #define.
19526 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19527
9208d17f
AD
195282002-03-14 Akim Demaille <akim@epita.fr>
19529
19530 Use Gettext 0.11.1.
19531
af27eacb
RA
195322002-03-09 Robert Anisko <robert@lrde.epita.fr>
19533
19534 * data/bison.c++: Make the user able to add members to the generated
19535 parser by subclassing.
19536
9101a310
RA
195372002-03-05 Robert Anisko <robert@lrde.epita.fr>
19538
19539 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19540 a character.
19541 Reported by Nicolas Tisserand and Nicolas Burrus.
19542
fff9bf0b
RA
195432002-03-04 Robert Anisko <robert@lrde.epita.fr>
19544
19545 * src/reader.c: Warn about lacking semi-colons, do not complain.
19546
64dba31e
RA
195472002-03-04 Robert Anisko <robert@lrde.epita.fr>
19548
19549 * data/bison.c++: Remove a debug line.
19550
374f5a14
RA
195512002-03-04 Robert Anisko <robert@lrde.epita.fr>
19552
19553 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19554 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19555 provide a default implementation.
19556
bfcf1f3a
AD
195572002-03-04 Akim Demaille <akim@epita.fr>
19558
19559 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19560 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19561 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19562 * tests/semantic.at (Parsing Guards): Similarly.
19563 * src/reader.at (readgram): Complain if the last rule is not ended
19564 with a semi-colon.
19565
65ccf9fc
AD
195662002-03-04 Akim Demaille <akim@epita.fr>
19567
19568 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19569 * src/closure.c: here.
19570 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19571 RTC.
19572 * src/warshall.h, src/warshall.c: Remove.
19573 * tests/sets.at (Broken Closure): Adjust.
19574
d0039cbc
AD
195752002-03-04 Akim Demaille <akim@epita.fr>
19576
19577 * src/output.c (output_skeleton): tempdir is const.
19578 bytes_read is unused.
19579
345cea78
AD
195802002-03-04 Akim Demaille <akim@epita.fr>
19581
19582 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19583 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19584 Update.
19585 From Michael Hayes.
19586
564801f7
AD
195872002-03-04 Akim Demaille <akim@epita.fr>
19588
19589 * src/closure.c (closure): `r' is unused.
19590
e5352bc7
AD
195912002-03-04 Akim Demaille <akim@epita.fr>
19592
19593 * tests/sets.at (Broken Closure): Add the ending `;'.
19594 * src/reader.at (readgram): Complain if a rule is not ended with a
19595 semi-colon.
19596
914feea9
AD
195972002-03-04 Akim Demaille <akim@epita.fr>
19598
19599 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19600 (count_sr_conflicts): Use bitset_count.
19601 * src/reduce.c (inaccessable_symbols): Ditto.
19602 (bits_size): Remove.
19603 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19604
f0250de6
AD
196052002-03-04 Akim Demaille <akim@epita.fr>
19606
19607 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19608 * src/reduce.c: Remove the `bitset_zero's following the
19609 `bitset_create's, as now it is performed by the latter.
19610
ef017502
AD
196112002-03-04 Akim Demaille <akim@epita.fr>
19612
19613 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19614 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19615 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19616 latest sources from Michael.
19617
76514394
AD
196182002-03-04 Akim Demaille <akim@epita.fr>
19619
19620 * src/output.c (output): Don't free the grammar.
19621 * src/reader.c (grammar_free): New.
19622 * src/main.c (main): Call it and don't free symtab here.
19623
55024580
AD
196242002-03-04 Akim Demaille <akim@epita.fr>
19625
19626 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19627 before returning.
19628 Reported by Benoit Perrot.
19629
f9abaa2c
AD
196302002-03-04 Akim Demaille <akim@epita.fr>
19631
19632 Use bitset operations when possible, not loops over bits.
19633
19634 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19635 bitset_or.
19636 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19637 * src/reduce.c (useless_nonterminals): Formatting changes.
19638 * src/warshall.c (TC): Use bitset_or.
19639
0e721e75
AD
196402002-03-04 Akim Demaille <akim@epita.fr>
19641
19642 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19643 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19644 Ditto.
19645
0fb1ffb1
AD
196462002-03-04 Akim Demaille <akim@epita.fr>
19647
19648 * src/lalr.c (F): Now a bitset*.
19649 Adjust all dependencies.
19650
b86796bf
AD
196512002-03-04 Akim Demaille <akim@epita.fr>
19652
19653 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19654 Adjust all dependencies.
19655
602bbf31
AD
196562002-03-04 Akim Demaille <akim@epita.fr>
19657
19658 * src/L0.c, src/LR0.h (nstates): Be size_t.
19659 Adjust comparisons (signed vs unsigned).
19660 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19661 bitset*.
19662 Adjust all dependencies.
19663
d8a0245c
AD
196642002-03-04 Akim Demaille <akim@epita.fr>
19665
19666 * src/closure.c (firsts): Now, also a bitset.
19667 Adjust all dependencies.
19668 (varsetsize): Remove, now unused.
19669 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19670
34ba9743
AD
196712002-03-04 Akim Demaille <akim@epita.fr>
19672
19673 * src/print.c: Convert to use bitset.h, not hand coded iterations
19674 over ints.
19675
ed86e78c
AD
196762002-03-04 Akim Demaille <akim@epita.fr>
19677
19678 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19679
dfdb1797
AD
196802002-03-04 Akim Demaille <akim@epita.fr>
19681
19682 * src/closure.c (ruleset): Be a bitset.
19683 (rulesetsize): Remove.
19684
7086e707
AD
196852002-03-04 Akim Demaille <akim@epita.fr>
19686
19687 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19688 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19689 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19690 * src/closure.c (fderives): Be an array of bitsets.
19691
98254360
RA
196922002-02-28 Robert Anisko <robert@lrde.epita.fr>
19693
19694 * data/bison.c++: Merge the two generated headers. Insert a copyright
19695 notice in each output file.
19696
a75c057f
AD
196972002-02-28 Akim Demaille <akim@epita.fr>
19698
19699 * data/bison.c++: Copy the prologue of bison.simple to fetch
19700 useful M4 definitions, such as b4_header_guard.
19701
06b00abc
AD
197022002-02-25 Akim Demaille <akim@epita.fr>
19703
19704 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
19705 translator friendly scheme for the bgr
19706 copyright notice.
06b00abc 19707
70e7d534
AD
197082002-02-25 Akim Demaille <akim@epita.fr>
19709
19710 * src/output.c (header_output): Remove, now handled completely via
19711 M4.
19712
abe017f6
AD
197132002-02-25 Akim Demaille <akim@epita.fr>
19714
19715 * m4/m4.m4: New, from CVS Autoconf.
19716 * configure.in: Invoke it.
19717 * src/output.c (output_skeleton): Use its result instead of the
19718 hard coded name.
19719
381fb12e
AD
197202002-02-25 Akim Demaille <akim@epita.fr>
19721
19722 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19723 Fileutils 4.1.5.
19724 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19725 * src/output.c (output_skeleton): Use mkstemp to create a real
19726 temporary file.
19727 Move the filling of `skeleton' and its muscle to...
19728 (prepare): here.
19729 (output): Move the definition of the prologue muscle to...
19730 (prepare): here.
19731 * src/system.h (DEFAULT_TMPDIR): New.
19732
6f38107f
PE
197332002-02-14 Paul Eggert <eggert@twinsun.com>
19734
19735 Remove the support for C++ namespace cleanliness; it was
19736 causing more problems than it was curing, since it didn't work
19737 properly on some nonstandard C++ compilers. This can wait
19738 for a proper C++ parser.
19739
19740 * NEWS: Document this.
19741 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19742 of C++, as it's treated like C now.
19743 * src/bison.simple (YYSTD): Remove.
19744 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19745 Treat C++ just like Standard C instead of trying to support
19746 namespace cleanliness.
19747
80cce3da
AD
197482002-02-14 Akim Demaille <akim@epita.fr>
19749
19750 * tests/regression.at (else): Adjust to Andreas' change.
19751
842e8679
AD
197522002-02-14 Akim Demaille <akim@epita.fr>
19753
19754 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19755
4bda3f10
AD
197562002-02-13 Andreas Schwab <schwab@suse.de>
19757
19758 * src/output.c (output_rule_data): Don't output NULL, it might
19759 not be defined yet.
19760
4162fa07 197612002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 19762
4162fa07
RA
19763 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19764 (Copyright notice): Update.
b418ecd8 19765
bd16a5dc
AD
197662002-02-11 Akim Demaille <akim@epita.fr>
19767
19768 * tests/regression.at (%nonassoc and eof): Don't include
19769 nonportable headers.
19770
8d69a1a3
RA
197712002-02-08 Robert Anisko <robert@lrde.epita.fr>
19772
19773 * data/bison.c++: Correct error recovery. Make the user able to
19774 initialize the starting location.
19775
9b2d0677
AD
197762002-02-07 Akim Demaille <akim@epita.fr>
19777
19778 * tests/input.at: New.
19779
69e2658b
RA
197802002-02-07 Robert Anisko <robert@lrde.epita.fr>
19781
19782 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 19783 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
19784 directives around tables only needed for debugging.
19785
4aacc3a7
RA
197862002-02-07 Robert Anisko <robert@lrde.epita.fr>
19787
19788 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19789 C++ parsers.
19790 (yy::b4_name::parse): Use print_.
19791
762a801e
RA
197922002-02-07 Robert Anisko <robert@lrde.epita.fr>
19793
19794 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19795
4bb2bc3f
RA
197962002-02-07 Robert Anisko <robert@lrde.epita.fr>
19797
19798 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19799 C++ parsers.
19800 (yy::b4_name::parse): Build verbose error messages, and use error_.
19801
6b45a3ca
RA
198022002-02-06 Robert Anisko <robert@lrde.epita.fr>
19803
19804 * data/bison.c++: Fix m4 quoting in comments.
19805
50997c6e
RA
198062002-02-06 Robert Anisko <robert@lrde.epita.fr>
19807
19808 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19809 not expanded by m4.
19810
3f3eed27
AD
198112002-02-05 Akim Demaille <akim@epita.fr>
19812
19813 * data/bison.c++: Adjust to the M4 back end.
19814 More is certainly needed.
19815
be2a1a68
AD
198162002-02-05 Akim Demaille <akim@epita.fr>
19817
19818 Give a try to M4 as a back end.
19819
19820 * lib/readpipe.c: New, from wdiff.
19821 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19822 BISON_HAIRY.
19823 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19824 specific values. Now it is m4 that performs the lookup.
19825 * src/parse-skel.y: Remove.
19826 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19827 * src/output.c (actions_output, guards_output)
19828 (token_definitions_output): No longer keeps track of the output
19829 line number, hence remove the second argument.
19830 (guards_output): Check against the guard member of a rule, not the
19831 action member.
19832 Adjust callers.
19833 (output_skeleton): Don't look for the skeleton location, let m4 do
19834 that.
19835 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19836 file will be used.
19837 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19838 (prepare): Given that for the time being changesyntax is not
19839 usable in M4, rename the muscles using `-' to `_'.
19840 Define `defines_flag', `output_parser_name' and `output_header_name'.
19841 * src/output.h (actions_output, guards_output)
19842 (token_definitions_output): Adjust prototypes.
19843 * src/scan-skel.l: Instead of scanning the skeletons, it now
19844 processes the output of m4: `__oline__' and `#output'.
19845 * data/bison.simple: Adjust to be used by M4(sugar).
19846 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19847 to date.
19848 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19849 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19850 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19851 shamelessly stolen from CVS Autoconf.
19852
beda758b
AD
198532002-02-05 Akim Demaille <akim@epita.fr>
19854
19855 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19856 * configure.in: Check for the declarations of free and malloc.
19857 * src/muscle_tab.c: Adjust.
19858
5ece6d43
AD
198592002-02-05 Akim Demaille <akim@epita.fr>
19860
19861 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19862 which have no values.
19863
5bb18f9a
AD
198642002-02-05 Akim Demaille <akim@epita.fr>
19865
19866 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19867 * data/: here.
19868
894dd62e
PE
198692002-01-29 Paul Eggert <eggert@twinsun.com>
19870
19871 * src/bison.simple (YYSIZE_T): Do not define merely because
19872 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19873 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19874
82841af7
AD
198752002-01-27 Akim Demaille <akim@epita.fr>
19876
19877 Fix `%nonassoc and eof'.
19878
19879 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19880 which were not properly copied! Replace
19881 memcpy (res->errs, src->errs, src->nerrs);
19882 with
19883 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19884 !!!
19885 * tests/regression.at (%nonassoc and eof): Adjust to newest
19886 Autotest: `.' is not in the PATH.
19887
318b76e9
AD
198882002-01-27 Akim Demaille <akim@epita.fr>
19889
19890 * tests/sets.at (AT_EXTRACT_SETS): New.
19891 (Nullable): Use it.
19892 (Firsts): New.
19893
30d2f3d5
AD
198942002-01-26 Akim Demaille <akim@epita.fr>
19895
19896 * tests/actions.at, tests/calc.at, tests/headers.at,
19897 * tests/torture.at: Adjust to the newest Autotest which no longer
19898 forces `.' in the PATH.
19899
30f8c395
AD
199002002-01-25 Akim Demaille <akim@epita.fr>
19901
19902 * tests/regression.at (%nonassoc and eof): New.
19903 Suggested by Robert Anisko.
19904
29ae55f1
AD
199052002-01-24 Akim Demaille <akim@epita.fr>
19906
19907 Bison dumps core when trying to complain about broken input files.
19908 Reported by Cris van Pelt.
19909
19910 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19911 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19912 into...
19913 (Invalid inputs): Strengthen: exercise parse_percent_token.
19914
2b548aa6
RA
199152002-01-24 Robert Anisko <robert.anisko@epita.fr>
19916
19917 * src/Makefile.am: Add bison.c++.
19918 * src/bison.c++: New skeleton.
19919
bb0146c2
AD
199202002-01-21 Paolo Bonzini <bonzini@gnu.org>
19921
19922 * po/it.po: New.
19923
bec30531
AD
199242002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19925
19926 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19927
fc6edc45
MA
199282002-01-20 Marc Autret <marc@gnu.org>
19929
19930 * src/files.c (compute_output_file_names): Fix
19931
5e5d5415
MA
199322002-01-20 Marc Autret <marc@gnu.org>
19933
19934 * tests/output.at: New test.
19935 * src/files.c (compute_base_names): Don't map extensions when
19936 the YACC flag is set, use defaults.
19937 Reported by Evgeny Stambulchik.
19938
44ea3fbd
MA
199392002-01-20 Marc Autret <marc@gnu.org>
19940
ba0fe3c7
PE
19941 * src/system.h: Need to define __attribute__ away for non-GCC
19942 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
19943 Suggested by Albert Chin-A-Young.
19944
338963d1
TVH
199452002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19946
19947 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19948 canonical definition.
19949 * src/system.h: Use the canonical definition for PARAMS (avoids
19950 a conflict with the macro from lib/hash.h).
19951
c57b2479
AD
199522002-01-11 Akim Demaille <akim@epita.fr>
19953
19954 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 19955 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 19956
b85810ae
AD
199572002-01-09 Akim Demaille <akim@epita.fr>
19958
19959 * src/files.c, src/files.h (output_infix): New.
19960 (tab_extension): Remove.
19961 (compute_base_names): Compute the former, drop the latter.
19962 * src/output.c (prepare): Insert the muscles `output-infix', and
19963 `output-suffix'.
19964 * src/parse-skel.y (string, string.1): New.
19965 (section.header): Use it.
19966 (section.yacc): Remove.
19967 (prefix): Remove too.
19968 * src/scan-skel.l: Adjust.
19969 * src/bison.simple, src/bison.hairy: Adjust.
19970
cae60122
AD
199712002-01-09 Akim Demaille <akim@epita.fr>
19972
19973 * configure.in (WERROR_CFLAGS): Compute it.
19974 * src/Makefile.am (CFLAGS): Pass it.
19975 * tests/atlocal.in (CFLAGS): Idem.
19976 * src/files.c: Fix a few warnings.
19977 (get_extension_index): Remove, unused.
19978
ae404801
AD
199792002-01-08 Akim Demaille <akim@epita.fr>
19980
19981 * src/getargs.c (AS_FILE_NAME): New.
19982 (getargs): Use it to convert DOSish file names.
19983 * src/files.c (base_name): Rename as full_base_name to avoid
19984 clashes with `base_name ()'.
19985 (filename_split): New.
19986 (compute_base_names): N-th rewrite, using filename_split.
19987
22312b71
AD
199882002-01-08 Akim Demaille <akim@epita.fr>
19989
19990 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19991 New, stolen from the Fileutils 4.1.
19992 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19993 * configure.in: Check for the presence of memrchr, and of its
19994 prototype.
19995
a67cef01
TVH
199962002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19997
19998 * lib/hash.h (__P): Added definition for this macro.
19999 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
20000 BUILT_SOURCES, to ensure they are generated first.
20001 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
20002 %error-verbose to allow bootstrapping with bison 1.30x.
20003
2b25d624
AD
200042002-01-06 Akim Demaille <akim@epita.fr>
20005
20006 * src/reader.c (parse_braces): Don't fetch the next char, the
20007 convention is to fetch on entry.
20008 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
20009 'switch' without a following semicolon.
20010 * tests/regression.at (braces parsing): New.
20011
3460813b
AD
200122002-01-06 Akim Demaille <akim@epita.fr>
20013
20014 Bison is dead wrong in its RR conflict reports.
20015
20016 * tests/torture.at (GNU Cim Grammar): New.
20017 * src/conflicts.c (count_rr_conflicts): Fix.
20018
73784c64
AD
200192002-01-06 Akim Demaille <akim@epita.fr>
20020
20021 Creating package.m4 from configure.ac causes too many problems.
20022
20023 * tests/Makefile.am (package.m4): Create it by hand,
20024 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20025
25d81090
AD
200262002-01-06 Akim Demaille <akim@epita.fr>
20027
20028 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20029 skeleton.h.
20030
a9b8959e
PE
200312002-01-04 Paul Eggert <eggert@twinsun.com>
20032
20033 * doc/bison.texinfo (Debugging):
20034 Remove YYSTDERR; it's no longer defined or used.
20035 Also, s/cstdio.h/cstdio/.
20036
25d81090
AD
200372002-01-03 Akim Demaille <akim@epita.fr>
20038
20039 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20040
1109455c
AD
200412002-01-03 Akim Demaille <akim@epita.fr>
20042
20043 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20044 tracing code to --trace, wait for a better --trace option, with
20045 args.
20046
7ea5e977
AD
200472002-01-03 Akim Demaille <akim@epita.fr>
20048
20049 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20050 The ISO C++ standard is extremely clear about it: stderr is
20051 considered a macro, not a regular symbol (see table 94 `Header
20052 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20053 Therefore std:: does not apply to it. It still does with fprintf.
20054 Also, s/cstdio.h/cstdio/.
20055
fab5b110
AD
200562002-01-03 Akim Demaille <akim@epita.fr>
20057
20058 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20059 for non system headers.
20060
aed7fd9b
AD
200612002-01-02 Akim Demaille <akim@epita.fr>
20062
20063 Equip the skeleton chain with location tracking, runtime trace,
20064 pure parser and scanner.
20065
20066 * src/parse-skel.y: Request a pure parser, locations, and prefix
20067 renaming.
20068 (%union): Having several members with the same type does not help
20069 type mismatches, simplify.
20070 (YYPRINT, yyprint): New.
20071 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20072 (skel_error): this.
20073 Handle locations.
20074 * src/scan-skel.l: Adjust to these changes.
20075 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20076 (LOCATION_PRINT, skel_control_t): New.
20077
24fad99e
AD
200782001-12-30 Akim Demaille <akim@epita.fr>
20079
20080 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20081 replace `gb' with BLANKS.
20082 * src/scan-skel.l: Adjust.
20083
a4b36db4
AD
200842001-12-30 Akim Demaille <akim@epita.fr>
20085
20086 * src/system.h: We don't need nor want bcopy.
20087 Throw away MS-DOS crap: we don't need getpid.
20088 * configure.in: We don't need strndup. It was even causing
20089 problems: because Flex includes the headers *before* us,
20090 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20091 not visible.
20092 * lib/xstrndup.c: New.
20093 * src/scan-skel.l: Use it.
20094 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
20095 * src/parse-skel.y: Use %directives instead of #defines.
20096
1239777d
AD
200972001-12-30 Akim Demaille <akim@epita.fr>
20098
20099 * src/skeleton.h: New.
20100 * src/output.c (output_parser, output_master_parser): Remove, dead
20101 code.
20102 * src/output.h (get_lines_number, actions_output, guards_output)
20103 (token_definitions_output): Prototype them.
20104 * src/parse-skel.y: Add the license notice.
20105 Include output.h and skeleton.h.
20106 (process_skeleton): Returns void, and takes a single parameter.
20107 * src/scan-skel.l: Add the license notice.
20108 Include skeleton.h.
20109 Don't use %option yylineno: it seems that then Flex imagines
20110 REJECT has been used, and therefore it won't reallocate its
20111 buffers (which makes no other sense to me than a bug). It results
20112 in warnings for `unused: yy_flex_realloc'.
20113
9b3add5b
RA
201142001-12-30 Robert Anisko <robert.anisko@epita.fr>
20115
20116 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20117 (MUSCLE_INSERT_PREFIX): ...to there.
20118 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20119 (MUSCLE_INSERT_PREFIX): Move from here...
20120
20121 * src/bison.hairy: Add a section directive. Put braces around muscle
20122 names. This parser skeleton is still broken, but Bison should not
20123 choke on a bad muscle 'syntax'.
20124 * src/bison.simple: Add a section directive. Put braces around muscle
20125 names.
20126
20127 * src/files.h (strsuffix, stringappend): Add declarations.
20128 (tab_extension): Add declaration.
20129 (short_base_name): Add declaration.
20130
20131 * src/files.c (strsuffix, stringappend): No longer static. These
20132 functions are used in the skeleton parser.
20133 (tab_extension): New.
20134 (compute_base_names): Use the computations done in this function
fab5b110 20135 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
20136 names.
20137 (short_base_name): No longer static.
20138
20139 * src/output.c (output_skeleton): New.
20140 (output): Disable call to output_master_parser, and give a try to
20141 a new skeleton handling system.
20142 (guards_output, actions_output): No longer static.
20143 (token_definitions_output, get_lines_number): No longer static.
20144
20145 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20146
fab5b110 20147 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
20148 parse-skel.y.
20149
20150 * src/parse-skel.y: New file.
20151 * src/scan-skel.l: New file.
20152
b5b61c61
AD
201532001-12-29 Akim Demaille <akim@epita.fr>
20154
20155 %name-prefix is broken.
20156
20157 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20158 Adjust all dependencies.
20159 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20160 %name-prefix.
20161
20162 Renaming yylval but not yylloc is not consistent. Now we do.
20163
20164 * src/bison.simple: Prefix yylloc if used.
20165 * doc/bison.texinfo (Decl Summary): Document that.
20166
8c9a50be
AD
201672001-12-29 Akim Demaille <akim@epita.fr>
20168
20169 * doc/bison.texinfo: Promote `%long-directive' over
20170 `%long_directive'.
20171 Remove all references to fixed-output-files, yacc is enough.
20172
d99361e6
AD
201732001-12-29 Akim Demaille <akim@epita.fr>
20174
20175 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20176 user prologue. These are defaults.
20177 * tests/actions.at (Mid-rule actions): Make sure the user can
20178 define YYDEBUG and YYERROR_VERBOSE.
20179
b9cecb91
AD
201802001-12-29 Akim Demaille <akim@epita.fr>
20181
20182 * src/output.c (header_output): Don't forget to export YYLTYPE and
20183 yylloc.
20184 * tests/headers.at (export YYLTYPE): New, make sure it does.
20185 * tests/regression.at (%union and --defines, Invalid CPP headers):
20186 Move to...
20187 * tests/headers.at: here.
20188
aea13e97
AD
201892001-12-29 Akim Demaille <akim@epita.fr>
20190
20191 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20192
931394cb
AD
201932001-12-29 Akim Demaille <akim@epita.fr>
20194
20195 * tests/actions.at (Mid-rule actions): Output on a single line
20196 instead of several.
20197
704a47c4
AD
201982001-12-29 Akim Demaille <akim@epita.fr>
20199
20200 * doc/bison.texinfo: Formatting changes.
20201
091e20bb
AD
202022001-12-29 Akim Demaille <akim@epita.fr>
20203
20204 Don't store the token defs in a muscle, just be ready to output it
20205 on command. Now possible via `symbols'. Fixes a memory leak.
20206
20207 * src/output.c (token_definitions_output): New.
20208 (output_parser, header_output): Use it.
20209 * src/reader.c (symbols_save): Remove.
20210
cce71710
AD
202112001-12-29 Akim Demaille <akim@epita.fr>
20212
20213 * src/bison.simple: Do not provide a default for YYSTYPE and
20214 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20215 default.
20216
82c035a8
AD
202172001-12-29 Akim Demaille <akim@epita.fr>
20218
20219 Mid-rule actions are simply... ignored!
20220
20221 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20222 the empty-rule associated to the dummy symbol, not to the host
20223 rule.
20224 * tests/actions.at (Mid-rule actions): New.
20225
8419d367
AD
202262001-12-29 Akim Demaille <akim@epita.fr>
20227
20228 Memory leak.
20229
20230 * src/reader.c (reader): Free grammar.
20231
375d5806
AD
202322001-12-29 Akim Demaille <akim@epita.fr>
20233
20234 Memory leak.
20235
20236 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20237 since it allocates it for each state, although only one is needed.
20238 (allocate_storage): Do it here.
20239
f51cb8ff
AD
202402001-12-29 Akim Demaille <akim@epita.fr>
20241
20242 * src/options.h, src/options.c (create_long_option_table): Rename
20243 as...
20244 (long_option_table_new): this, with a clearer prototype.
20245 (percent_table): Remove, unused,
20246 * src/getargs.c (getargs): Adjust.
20247
29e88316
AD
202482001-12-29 Akim Demaille <akim@epita.fr>
20249
20250 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20251 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20252 as states.
20253
b9f71f19
AD
202542001-12-29 Akim Demaille <akim@epita.fr>
20255
20256 * src/lalr.c (build_relations): Rename `states' as `states1'.
20257 Sorry, I don't understand exactly what it is, no better name...
20258
1a2b5d37
AD
202592001-12-29 Akim Demaille <akim@epita.fr>
20260
20261 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20262 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20263 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20264 as rules.
20265
1cca533e
AD
202662001-12-29 Akim Demaille <akim@epita.fr>
20267
20268 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20269 ago.
20270
c03ae966
AD
202712001-12-29 Akim Demaille <akim@epita.fr>
20272
20273 * src/reader.c, src/reader.h (user_toknums): Remove.
20274 Adjust all users to use symbols[i]->user_token_number.
20275
5a670b1e
AD
202762001-12-29 Akim Demaille <akim@epita.fr>
20277
20278 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20279 Adjust all users to use symbols[i]->prec or ->assoc.
20280
ad949da9
AD
202812001-12-29 Akim Demaille <akim@epita.fr>
20282
20283 * src/reader.c, src/reader.h (tags): Remove.
20284 Adjust all users to use symbols[i]->tag.
20285
0e78e603
AD
202862001-12-29 Akim Demaille <akim@epita.fr>
20287
20288 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20289 and rule_table.
20290 * src/reader.c (packsymbols): Fill this table.
20291 Drop sprec.
20292 * src/conflicts.c (resolve_sr_conflict): Adjust.
20293 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20294 single table.
20295 Use symbols[i]->tag instead of tags[i].
20296
213e640e
AD
202972001-12-29 Akim Demaille <akim@epita.fr>
20298
20299 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20300 In addition, put a comment in there, to replace...
20301 * tests/regression.at (%union and C comments): Remove.
20302
e7b8bef1
AD
203032001-12-29 Akim Demaille <akim@epita.fr>
20304
20305 * tests/regression.at (Web2c Actions): Blindly move the actual
20306 output as expected output. The contents *seem* right to me, but I
20307 can't pretend reading perfectly parser tables... Nonetheless, all
20308 the other tests pass correctly, the table look OK, even though the
20309 presence of `$axiom' is to be noted: AFAICS it is useless (but
20310 harmless).
20311
b68e7744
AD
203122001-12-29 Akim Demaille <akim@epita.fr>
20313
20314 * src/reader.c (readgram): Don't add the rule 0 if there were no
20315 rules read. In other words, add it _after_ having performed
20316 grammar sanity checks.
20317 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20318
78d5bae9
AD
203192001-12-29 Akim Demaille <akim@epita.fr>
20320
20321 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20322 visible, and some states have now a different number.
20323
ff442794
AD
203242001-12-29 Akim Demaille <akim@epita.fr>
20325
20326 * src/reader.c (readgram): Bind the initial rule's lineno to that
20327 of the first rule.
20328 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20329 (Solved SR Conflicts): Adjust rule 0's line number.
20330
610ab194
AD
203312001-12-29 Akim Demaille <akim@epita.fr>
20332
20333 Fix the `GAWK Grammar' failure.
20334
20335 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20336 the reductions of the first state which was mistakenly confused
20337 with the final state because precisely final_state was initialized
20338 to 0.
20339 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20340 now noticed by Bison.
20341 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20342 have a reduction on $default.
20343
29d29c8f
AD
203442001-12-29 Akim Demaille <akim@epita.fr>
20345
20346 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20347 rule line numbers.
20348 * src/closure.c (print_closure): Likewise.
20349 * src/derives.c (print_derives): Likewise.
20350 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20351 now.
20352
7c6b64d0
AD
203532001-12-29 Akim Demaille <akim@epita.fr>
20354
20355 * src/lalr.c (lookaheads_print): New.
20356 (lalr): Call it when --trace-flag.
20357 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20358 are dumped.
20359
3d4daee3
AD
203602001-12-29 Akim Demaille <akim@epita.fr>
20361
20362 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20363 when walking through ritem, even via rule->rhs.
20364 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20365 (useful_production, useless_nonterminals): Likewise.
20366 (reduce_grammar_tables): Likewise, plus update nritems.
20367 * src/nullable.c (set_nullable): Likewise.
20368 * src/lalr.c (build_relations): Likewise.
20369 * tests/sets.at (Nullable): Adjust.
20370 Fortunately, now, the $axiom is no longer nullable.
20371
9e7f6bbd
AD
203722001-12-29 Akim Demaille <akim@epita.fr>
20373
20374 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20375 the 0-sentinel.
20376 * src/gram.c (ritem_longest_rhs): Likewise.
20377 * src/reduce.c (nonterminals_reduce): Likewise.
20378 * src/print_graph.c (print_graph): Likewise.
20379 * src/output.c (output_rule_data): Likewise.
20380 * src/nullable.c (set_nullable): Likewise.
20381
255ef638
AD
203822001-12-29 Akim Demaille <akim@epita.fr>
20383
20384 * src/output.c: Comment changes.
20385
0d8a7363
AD
203862001-12-27 Paul Eggert <eggert@twinsun.com>
20387
20388 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20389 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20390 Sparc, as they were causing more porting problems than the
20391 (minor) performance improvement was worth.
20392
20393 Also, catch up with 1.31's YYSTD.
20394
3db472b9
AD
203952001-12-27 Akim Demaille <akim@epita.fr>
20396
20397 * src/output.c (output_gram): Rely on nritems, not the
20398 0-sentinel. See below.
20399 Use -1 as separator, not 0.
20400 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20401 Rely on -1 as separator in yyrhs, instead of 0.
20402 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20403 twice `Now at end of input', therefore there are two lines less to
20404 expect.
20405
b365aa05
AD
204062001-12-27 Akim Demaille <akim@epita.fr>
20407
20408 * tests/regression.at (Unresolved SR Conflicts):
20409 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20410 below.
20411
30171f79
AD
204122001-12-27 Akim Demaille <akim@epita.fr>
20413
20414 * src/LR0.c (new_state): Recognize the final state by the fact it
20415 is reached by eoftoken.
20416 (insert_start_shifting_state, insert_eof_shifting_state)
20417 (insert_accepting_state, augment_automaton): Remove, since now
20418 these states are automatically computed from the initial state.
20419 (generate_states): Adjust.
20420 * src/print.c: When reporting a rule number to the user, substract
20421 1, so that the axiom rule is rule 0, and the first user rule is 1.
20422 * src/reduce.c: Likewise.
20423 * src/print_graph.c (print_core): For the time being, just as for
20424 the report, depend upon --trace-flags to dump the full set of
20425 items.
20426 * src/reader.c (readgram): Once the grammar read, insert the rule
20427 0: `$axiom: START-SYMBOL $'.
20428 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20429 number of the states has changed (the final state is no longer
20430 necessarily the last), catch up.
20431
75142d45
AD
204322001-12-27 Akim Demaille <akim@epita.fr>
20433
20434 Try to make the use of the eoftoken valid. Given that its value
20435 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20436 is used instead of > 0 where appropriate, (ii), depend upon nritems
20437 instead of the 0-sentinel.
20438
20439 * src/gram.h, src/gram.c (nritems): New.
20440 Expected to be duplication of nitems, but for the time being...
20441 * src/reader.c (packgram): Assert nritems and nitems are equal.
20442 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20443 * src/closure.c (print_closure, print_fderives): Likewise.
20444 * src/gram.c (ritem_print): Likewise.
20445 * src/print.c (print_core, print_grammar): Likewise.
20446 * src/print_graph.c: Likewise.
20447
b7c49edf
AD
204482001-12-27 Akim Demaille <akim@epita.fr>
20449
20450 * src/main.c (main): If there are complains after grammar
20451 reductions, then output the report anyway if requested, then die.
20452 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20453 * src/reader.c (eoftoken): New.
20454 (parse_token_decl): If the token being defined has value `0', it
20455 is the eoftoken.
20456 (packsymbols): No longer hack `tags' to insert `$' by hand.
20457 Be sure to preserve the value of the eoftoken.
20458 (reader): Make sure eoftoken is defined.
20459 Initialize nsyms to 0: now eoftoken is created just like the others.
20460 * src/print.c (print_grammar): Don't special case the eof token.
20461 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20462 lie anyway, albeit pleasant.
20463 * tests/calc.at: Exercise error messages with eoftoken.
20464 Change the grammar so that empty input is invalid.
20465 Adjust expectations.
20466 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20467
ec2da99f
AD
204682001-12-27 Akim Demaille <akim@epita.fr>
20469
20470 * configure.in: Check the protos of strchr ans strspn.
20471 Replace strchr if needed.
20472 * src/system.h: Provide the protos of strchr, strspn and memchr if
20473 missing.
20474 * lib/strchr.c: New.
20475 * src/reader.c (symbols_save): Use strchr.
20476
8adfa272
AD
204772001-12-27 Akim Demaille <akim@epita.fr>
20478
20479 * src/print.c, src/print_graph.c (escape): New.
20480 Use it to quote the TAGS outputs.
20481 * src/print_graph.c (print_state): Now errors are in red, and
20482 reductions in green.
20483 Prefer high to wide: output the state number on a line of its own.
20484
80dac38c
AD
204852001-12-27 Akim Demaille <akim@epita.fr>
20486
20487 * src/state.h, src/state.c (reductions_new): New.
20488 * src/LR0.c (set_state_table): Let all the states have a
20489 `reductions', even if reduced to 0.
20490 (save_reductions): Adjust.
20491 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20492 * src/print.c (print_reductions, print_actions): Adjust.
20493 * src/output.c (action_row): Adjust.
20494
2cec70b9
AD
204952001-12-27 Akim Demaille <akim@epita.fr>
20496
20497 * src/state.h, src/state.c (errs_new, errs_dup): New.
20498 * src/LR0.c (set_state_table): Let all the states have an errs,
20499 even if reduced to 0.
20500 * src/print.c (print_errs, print_reductions): Adjust.
20501 * src/output.c (output_actions, action_row): Adjust.
20502 * src/conflicts.c (resolve_sr_conflict): Adjust.
20503
13ca549a
AD
205042001-12-27 Akim Demaille <akim@epita.fr>
20505
20506 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20507
5092aba5
AD
205082001-12-27 Akim Demaille <akim@epita.fr>
20509
20510 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20511 * src/print.c: here.
20512 (lookaheadset, shiftset): New, used as additional storage by
20513 print_reductions.
20514 (print_results): Adjust.
20515 (print_shifts, print_gotos, print_errs): New, extracted from...
20516 (print_actions): here.
20517 * src/print_graph.c (print_actions): Remove dead code.
20518
11e2beca
AD
205192001-12-27 Akim Demaille <akim@epita.fr>
20520
20521 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20522 `$n' and `@n'.
20523
dac3c910
AD
205242001-12-27 Akim Demaille <akim@epita.fr>
20525
20526 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20527 (build_relations): Adjust.
20528
d0b0fefa
AD
205292001-12-27 Akim Demaille <akim@epita.fr>
20530
20531 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20532 duplication.
20533
adc8c848
AD
205342001-12-27 Akim Demaille <akim@epita.fr>
20535
20536 * src/reader.c (packgram): Catch nitems overflows.
20537
14d293ac
AD
205382001-12-27 Akim Demaille <akim@epita.fr>
20539
20540 * src/files.c, src/files.h (guard_obstack): Remove.
20541 * src/output.c (output): Adjust.
20542 * src/reader.c (parse_braces): New, factoring...
20543 (copy_action, copy_guard): these two which are renamed as...
20544 (parse_action, parse_guard): these.
20545 As a voluntary consequence, using braces around guards is now
20546 mandatory.
20547
f499b062
AD
205482001-12-27 Akim Demaille <akim@epita.fr>
20549
20550 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20551 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20552 members.
20553 (symbol_list_new): Adjust.
20554 (copy_action): action_line is the first line, not the last.
20555 (copy_guard): Just as for actions, store the `action' only, not
20556 the switch/case/break flesh.
20557 Don't parse the user action that might follow the guard, let...
20558 (readgram): do it, i.e., now, there can be an action after a
20559 guard.
20560 In other words the guard is just explicitly optional.
20561 (packgram): Adjust.
20562 * src/output.c (guards_output): New.
20563 (output_parser): Call it when needed.
20564 (output): Also free the guard and attrs obstacks.
20565 * src/files.c, src/files.h (obstack_save): Remove.
20566 (output_files): Remove.
20567 As a result, if one needs the former `.act' file, using an
20568 appropriate skeleton which requires actions and guards is now
20569 required.
20570 * src/main.c (main): Adjust.
20571 * tests/semantic.at: New.
20572 * tests/regression.at: Use `input.y' as input file name.
20573 Avoid 8+3 problems by requiring input.c when the test needs the
20574 parser.
20575
d945f5cd
AD
205762001-12-27 Akim Demaille <akim@epita.fr>
20577
20578 * src/reader.c (symbol_list_new): Be sure to initialize all the
20579 fields.
20580
d200e455
AD
205812001-12-27 Akim Demaille <akim@epita.fr>
20582
20583 All the hacks using a final pseudo state are now useless.
20584
20585 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20586 * src/lalr.c (nLA): New.
20587 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20588 instead of lookaheadsp from the pseudo state (nstate + 1).
20589
f9507c28
AD
205902001-12-27 Akim Demaille <akim@epita.fr>
20591
20592 * src/output.c (action_row, token_actions): Use a state_t instead
20593 of a integer, and nlookaheads instead of the following state's
20594 lookaheadsp.
20595
065fbd27
AD
205962001-12-27 Akim Demaille <akim@epita.fr>
20597
20598 * src/conflicts.c (log_resolution, flush_shift)
20599 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20600 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20601 (conflicts_print, print_reductions): Use a state_t instead of an
20602 integer when referring to a state.
20603 As much as possible, depend upon nlookaheads, instead of the
20604 `lookaheadsp' member of the following state (since lookaheads of
20605 successive states are successive, the difference between state n + 1
20606 and n served as the number of lookaheads for state n).
20607 * src/lalr.c (add_lookback_edge): Likewise.
20608 * src/print.c (print_core, print_actions, print_state)
20609 (print_results): Likewise.
20610 * src/print_graph.c (print_core, print_actions, print_state)
20611 (print_graph): Likewise.
20612 * src/conflicts.h: Adjust.
20613
1b177bd7
AD
206142001-12-27 Akim Demaille <akim@epita.fr>
20615
20616 * src/bison.hairy: Formatting/comment changes.
20617 ANSIfy.
20618 Remove `register' indications.
20619 Add plenty of `static'.
20620
7742ddeb
AD
206212001-12-27 Akim Demaille <akim@epita.fr>
20622
20623 * src/output.c (prepare): Drop the muscle `ntbase' which
20624 duplicates ntokens.
20625 * src/bison.simple: Formatting/comment changes.
20626 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20627 is an undocumented synonym.
20628
1fa14068
AD
206292001-12-22 Akim Demaille <akim@epita.fr>
20630
20631 * src/output.c (output_table_data): Change the prototype to use
20632 `int' for array ranges: some invocations do pass an int, not a
20633 short.
20634 Reported by Wayne Green.
20635
b9752825
AD
206362001-12-22 Akim Demaille <akim@epita.fr>
20637
20638 Some actions of web2c.y are improperly triggered.
20639 Reported by Mike Castle.
20640
20641 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20642 * tests/regression.at (Web2c): Rename as...
20643 (Web2c Report): this.
20644 (Web2c Actions): New.
20645
776209d6
AD
206462001-12-22 Akim Demaille <akim@epita.fr>
20647
20648 Reductions in web2c.y are improperly reported.
20649 Reported by Mike Castle.
20650
20651 * src/conflicts.c (print_reductions): Fix.
20652 * tests/regression.at (Web2c): New.
20653
275fc3ad
AD
206542001-12-18 Akim Demaille <akim@epita.fr>
20655
20656 Some host fail on `assert (!"foo")', which expands to
20657 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20658 Reported by Nelson Beebee.
20659
20660 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20661 `#define it_succeeded 0' and `assert (it_succeeded)'.
20662
897668ee
MA
206632001-12-17 Marc Autret <autret_m@epita.fr>
20664
20665 * src/bison.simple: Don't hard code the skeleton line and filename.
20666 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20667 New line counter 'skeleton_line' (skeleton-line muscle).
20668
ab3399e0
PE
206692001-12-17 Paul Eggert <eggert@twinsun.com>
20670
20671 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20672 YYDEBUG must be defined to a nonzero value.
20673
20674 * src/bison.simple (yytname): Do not assume that the user defines
20675 YYDEBUG to a properly parenthesized expression.
20676
3877f72b
AD
206772001-12-17 Akim Demaille <akim@epita.fr>
20678
20679 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20680 nlookaheads is a new member.
20681 Adjust all users.
20682 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20683 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20684 state.
776209d6 20685
331dbc1b
AD
206862001-12-17 Akim Demaille <akim@epita.fr>
20687
20688 * src/files.h, src/files.c (open_files, close_files): Remove.
20689 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20690 let...
20691 * src/reader.c (reader): Do it.
776209d6 20692
be750e4c
AD
206932001-12-17 Akim Demaille <akim@epita.fr>
20694
20695 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 20696
709ae8c6
AD
206972001-12-17 Akim Demaille <akim@epita.fr>
20698
20699 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20700 (flush_reduce): New.
20701 (resolve_sr_conflict): Adjust.
776209d6 20702
f87685c3
AD
207032001-12-17 Akim Demaille <akim@epita.fr>
20704
20705 * src/output.c (output_obstack): Be static and rename as...
20706 (format_obstack): this, to avoid any confusion with files.c's
20707 output_obstack.
20708 * src/reader.h (muscle_obstack): Move to...
20709 * src/output.h: here, since it's defined in output.c.
20710
837491d8
AD
207112001-12-17 Akim Demaille <akim@epita.fr>
20712
20713 * src/output.c (action_row, save_column, default_goto)
20714 (sort_actions, matching_state, pack_vector): Better variable
20715 locality.
20716
796d61fb
AD
207172001-12-17 Akim Demaille <akim@epita.fr>
20718
20719 * src/output.c: Various formatting changes.
776209d6 20720
64d15509
AD
207212001-12-17 Akim Demaille <akim@epita.fr>
20722
20723 * src/files.c (output_files): Free the output_obstack.
20724 * src/main.c (main): Call print and print_graph conditionally.
20725 * src/print.c (print): Work unconditionally.
20726 * src/print_graph.c (print_graph): Work unconditionally.
20727 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20728
fbc8ecb7
MA
207292001-12-16 Marc Autret <autret_m@epita.fr>
20730
20731 * src/output.c (actions_output): Fix. When we use %no-lines,
20732 there is one less line per action.
20733
f0440388
MA
207342001-12-16 Marc Autret <autret_m@epita.fr>
20735
20736 * src/bison.simple: Remove a useless #line directive.
20737 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20738 * src/output.c (get_lines_number): New.
776209d6 20739 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
20740 output muscles.
20741 Fix line numbering.
20742 (actions_output): Computes the number of lines taken by actions.
20743 (output_master_parser): Insert new skeleton which is the name of
20744 the output parser file name.
20745
a79986b8
MA
207462001-12-15 Marc Autret <autret_m@epita.fr>
20747
20748 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20749
4ec8e00f
MA
207502001-12-15 Marc Autret <autret_m@epita.fr>
20751
20752 * src/output.c (output_gram): Keep track of the hairy one.
20753
1a4648ff
AD
207542001-12-15 Akim Demaille <akim@epita.fr>
20755
20756 Make `make distcheck' work.
20757
20758 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20759 system.h which uses libgettext.h.
20760
9c2c67e6
AD
207612001-12-15 Akim Demaille <akim@epita.fr>
20762
20763 * src/nullable.c (set_nullable): Useless rules must be skipped,
20764 otherwise, since we range over their symbols, we might look at a
20765 nonterminal which no longer ``exists'', i.e., it is not counted in
20766 `nvars', hence we overflow our arrays.
20767
93ede233
AD
207682001-12-15 Akim Demaille <akim@epita.fr>
20769
20770 The header can also be produced directly, without any obstack!
20771 Yahoo!
20772
20773 * src/files.c, src/files.h (defines_obstack): Remove.
20774 (compute_header_macro): Global.
20775 (defines_obstack_save): Remove.
20776 * src/reader.c (parse_union_decl): No longer output to
20777 defines_obstack: its content can be found in the `stype' muscle
20778 anyway.
20779 (output_token_translations): Merge into...
20780 (symbols_output): this.
20781 Rename as...
20782 (symbols_save): this.
20783 (reader): Adjust.
20784 * src/output.c (header_output): New.
20785 (output): Call it.
20786
2666f928
AD
207872001-12-15 Akim Demaille <akim@epita.fr>
20788
20789 * src/reader.c (parse_union_decl): Instead of handling two obstack
20790 simultaneously, use one to define the `stype' muscle, and use the
20791 value of the latter to fill defines_obstack.
20792 (copy_comment): Remove.
20793 (copy_comment2): Work for a single obstack.
20794 Rename as...
20795 (copy_comment): this.
20796
428046f8
AD
207972001-12-15 Akim Demaille <akim@epita.fr>
20798
20799 * src/lex.c, src/lex.h (xgetc): No longer static.
20800 * src/reader.c (parse_union_decl): Revamp.
20801
ea52d706
AD
208022001-12-15 Akim Demaille <akim@epita.fr>
20803
20804 Still making progress in separating Bison into (i) input, (ii)
20805 process, (iii) output: now we can directly output the parser file
20806 without using table_obstack at all.
20807
20808 * src/files.c, src/files.h (table_obstack): Bye bye.
20809 (parser_file_name): New.
20810 * src/files.c (compute_output_file_names): Compute it.
20811 * src/output.c (actions_output, output_parser)
20812 (output_master_parser): To a file instead of an obstack.
20813
3f96f4dc
AD
208142001-12-15 Akim Demaille <akim@epita.fr>
20815
20816 Attach actions to rules, instead of pre-outputting them to
20817 actions_obstack.
20818
20819 * src/gram.h (rule_t): action and action_line are new members.
20820 * src/reader.c (symbol_list): Likewise.
20821 (copy_action): Save the actions within the rule.
20822 (packgram): Save them in rule_table.
20823 * src/output.c (actions_output): New.
20824 (output_parser): Use it on `%%actions'.
20825 (output_rule_data): Don't free rule_table.
20826 (output): Do it.
20827 (prepare): Don't save the `action' muscle.
20828 * src/bison.simple: s/%%action/%%actions/.
20829
51576fb3
AD
208302001-12-15 Akim Demaille <akim@epita.fr>
20831
20832 * src/reader.c (copy_action): When --yacc, don't append a `;'
20833 to the user action: let it fail if lacking.
dee049eb 20834 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 20835
2648a72d
AD
208362001-12-14 Akim Demaille <akim@epita.fr>
20837
20838 * src/lex.c (literalchar): Simply return the char you decoded, non
20839 longer mess around with obstacks and int pointers.
20840 Adjust all callers.
20841
92790e5b
AD
208422001-12-14 Akim Demaille <akim@epita.fr>
20843
20844 * src/lex.c (literalchar): Don't escape the special characters,
20845 just decode them, and keep them as char (before, eol was output as
20846 the 2 char string `\n' etc.).
20847 * src/output.c (output_rule_data): Use quotearg to output the
20848 token strings.
20849
927c1557
PE
208502001-12-13 Paul Eggert <eggert@twinsun.com>
20851
20852 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20853 Do not infringe on the global user namespace when using C++.
20854 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20855 All uses of `fprintf' and `stderr' changed.
20856
20857 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20858
ed8e1f68
AD
208592001-12-13 Akim Demaille <akim@epita.fr>
20860
20861 The computation of nullable is broken: it doesn't handle empty
20862 RHS's properly.
20863
20864 * tests/torture.at (GNU AWK Grammar): New.
20865 * tests/sets.at (Nullable): New.
20866 * src/nullable.c (set_nullable): Instead of blindly looping over
20867 `ritems', loop over the rules, and then over their rhs's.
20868
20869 Work around Autotest bugs.
20870
20871 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20872 frame, because Autotest understand lines starting with a `+' as
20873 traces from the shell. Then, they are not processed properly.
20874 Admittedly an Autotest bug, but we don't have time to wait for
20875 Autotest to catch up.
20876 * tests/regression.at (Broken Closure): Adjust to the new table
20877 frames.
20878 Move to...
20879 * tests/sets.at: here.
20880
cb581495
AD
208812001-12-13 Akim Demaille <akim@epita.fr>
20882
20883 * src/closure.c (closure): Use nrules instead of playing tricks
20884 with BITS_PER_WORD.
20885
2e729273
AD
208862001-12-13 Akim Demaille <akim@epita.fr>
20887
20888 * src/print.c (print_actions): Output the handling of `$' as the
20889 traces do: shifting the token EOF. Before EOF was treated as a
20890 nonterminal.
20891 * tests/regression.at: Adjust some tests.
20892 * src/print_graph.c (print_core): Complete the set of items via
20893 closure. The next-to-final and final states are still unsatisfying,
20894 but that's to be addressed elsewhere.
20895 No longer output the rule numbers, but do output the state number.
20896 A single loop for the shifts + gotos is enough, but picked a
20897 distinct color for each.
20898 (print_graph): Initialize and finalize closure.
20899
107f7dfb
AD
209002001-12-13 Akim Demaille <akim@epita.fr>
20901
20902 * src/reader.c (readgram): Remove dead code, an strip useless
20903 braces.
20904 (get_type): Remove, unused.
20905
9b53a24f
AD
209062001-12-12 Akim Demaille <akim@epita.fr>
20907
20908 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20909 on that of lib/error.c.
20910
dbfb6dcd
AD
209112001-12-12 Akim Demaille <akim@epita.fr>
20912
20913 Some hosts don't like `/' in includes.
20914
20915 * src/system.h: Include libgettext.h without qualifying the path.
20916 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20917 $(top_srcdir).
20918
c25fb648
MA
209192001-12-11 Marc Autret <autret_m@epita.fr>
20920
20921 * src/output.c (output_parser): Remove useless muscle.
20922
710ddc4f
MA
209232001-12-11 Marc Autret <autret_m@epita.fr>
20924
20925 * src/bison.simple: Remove #line just before %%epilogue. It
20926 is now handled in ...
20927 * src/reader.c (read_additionnal_code): Add the output of a
20928 #line for the epilogue.
20929
e83d80b8
MA
209302001-12-10 Marc Autret <autret_m@epita.fr>
20931
927c1557 20932 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
20933 replace precedent remove.
20934 * src/bison.simple: Remove #line before %%prologue because
20935 %%input-line is wrong at this time.
20936
971d5158
MA
209372001-12-10 Marc Autret <autret_m@epita.fr>
20938
20939 * src/reader.c (symbols_output): Clean up.
927c1557 20940 * src/output.c (output_gram, output): Clean up.
971d5158 20941
5edafffd
AD
209422001-12-10 Akim Demaille <akim@epita.fr>
20943
20944 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20945 * src/LR0.c (set_state_table): here.
20946 * src/lalr.c (lalr): Call it.
20947
0279f8e9
AD
209482001-12-10 Akim Demaille <akim@epita.fr>
20949
20950 * src/state.h (shifts): Remove the `number' member: shifts are
20951 attached to state, hence no longer need to be labelled with a
20952 state number.
20953
190c4f5f
AD
209542001-12-10 Akim Demaille <akim@epita.fr>
20955
20956 Now that states have a complete set of members, the linked list of
20957 shifts is useless: just fill directly the state's shifts member.
20958
20959 * src/state.h (shifts): Remove the `next' member.
20960 * src/LR0.c (first_state, last_state): Remove.
20961 Adjust the callers.
20962 (augment_automaton): Don't look for the shifts that must be added
20963 a shift on EOF: it is those of the state we looked for! But now,
20964 since shifts are attached, it is no longer needed to looking
20965 merely by its id: its number.
20966
2a73b93d
AD
209672001-12-10 Akim Demaille <akim@epita.fr>
20968
20969 * src/LR0.c (augment_automaton): Better variable locality.
20970 Remove an impossible branch: if there is a state corresponding to
20971 the start symbol being shifted, then there is shift for the start
20972 symbol from the initial state.
20973
74392f6a
AD
209742001-12-10 Akim Demaille <akim@epita.fr>
20975
20976 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20977 only when appropriate: when insert_start_shifting_state' is not
20978 invoked.
20979 * tests/regression.at (Rule Line Numbers): Adjust.
20980
37c82725
AD
209812001-12-10 Akim Demaille <akim@epita.fr>
20982
20983 * src/LR0.c (augment_automaton): Now that all states have shifts,
20984 merge the two cases addition shifts to the initial state.
20985
6a164e0c
AD
209862001-12-10 Akim Demaille <akim@epita.fr>
20987
20988 * src/lalr.c (set_state_table): Move to...
20989 * src/LR0.c: here.
20990 * src/lalr.c (lalr): Don't call it...
20991 * src/LR0.c (generate_states): do it.
20992 * src/LR0.h (first_state): Remove, only the table is used.
20993
7215de24
AD
209942001-12-10 Akim Demaille <akim@epita.fr>
20995
20996 * src/LR0.h (first_shift, first_reduction): Remove.
20997 * src/lalr.c: Don't use first_shift: find shifts through the
20998 states.
20999
80e25d4d
AD
210002001-12-10 Akim Demaille <akim@epita.fr>
21001
21002 * src/LR0.c: Attach shifts to states as soon as they are
21003 computed.
21004 * src/lalr.c (set_state_table): Instead of assigning shifts to
21005 state, just assert that the mapping was properly done.
21006
0ab3728b
AD
210072001-12-10 Akim Demaille <akim@epita.fr>
21008
21009 * src/LR0.c (insert_start_shift): Rename as...
21010 (insert_start_shifting_state): this.
21011 (insert_eof_shifting_state, insert_accepting_state): New.
21012 (augment_automaton): Adjust.
21013 Better locality of the variables.
21014 When looking if the start_symbol is shifted from the initial
21015 state, using `while (... symbol != start_symbol ...)' sounds
21016 better than `while (... symbol < start_symbol ...)': If fail
21017 to see how the order between symbols could be relevant!
21018
78af9bbc
AD
210192001-12-10 Akim Demaille <akim@epita.fr>
21020
21021 * src/getargs.h: Don't declare `spec_name_prefix' and
21022 `spec_file_prefix', declared by src/files.h.
21023 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
21024 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21025 * src/output.c (prepare): Adjust.
21026 * src/reader.c (symbols_output): Likewise.
21027 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21028
bdef2a41
AD
210292001-12-10 Akim Demaille <akim@epita.fr>
21030
21031 * src/muscle_tab.c (muscle_init): NULL is a better default than
21032 `"0"'.
21033
3735969c
AD
210342001-12-10 Akim Demaille <akim@epita.fr>
21035
21036 * src/reader.c (reader): Calling symbols_output once is enough.
21037
49701457
AD
210382001-12-10 Akim Demaille <akim@epita.fr>
21039
21040 Now that states have a complete set of members, the linked list of
21041 reductions is useless: just fill directly the state's reductions
21042 member.
21043
21044 * src/state.h (struct reductions): Remove member `number' and
21045 `next'.
21046 * src/LR0.c (first_reduction, last_reduction): Remove.
21047 (save_reductions): Don't link the new reductions, store them in
21048 this_state.
21049 * src/lalr.c (set_state_table): No need to attach reductions to
21050 states, it's already done.
21051 * src/output.c (output_actions): No longer free the shifts, then
21052 the reductions, then the states: free all the states and their
21053 members.
21054
0edad749
AD
210552001-12-10 Akim Demaille <akim@epita.fr>
21056
21057 * src/options.c (OPTN, DRTV, BOTH): New.
21058 (option_table): Use them.
21059
0edad749
AD
21060 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21061 the job of system.h.
21062 * src/options.c: Don't include stdio.h and xalloc.h for the same
21063 reasons.
21064
5449dd0f
AD
210652001-12-10 Akim Demaille <akim@epita.fr>
21066
21067 * src/output.c (output, prepare): Make sure the values of the
21068 muscles `action' and `prologue' are 0-terminated.
21069
a870c567
AD
210702001-12-10 Akim Demaille <akim@epita.fr>
21071
21072 Clean up GCC warnings.
21073
21074 * src/reader.c (copy_action): `buf' is not used.
21075 (parse_skel_decl): Be static.
21076 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21077 * src/options.h (create_long_option_table): Have a real prototype.
21078 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21079 (hash_delete_at): Return const void *.
21080 Adjust casts to preserve the const.
21081
80df8768
AD
210822001-12-10 Akim Demaille <akim@epita.fr>
21083
21084 * configure.in: Require 2.52g.
21085 M4 is not needed, but AUTOM4TE is.
21086 * m4/m4.m4: Remove.
21087 * tests/Makefile.am: Adjust.
21088
f693ad14
AD
210892001-12-10 Akim Demaille <akim@epita.fr>
21090
21091 One structure for states is enough, even though theoretically
21092 there are LR(0) states and LALR(1) states.
21093
21094 * src/lalr.h (state_t): Remove.
21095 (state_table): Be state_t **, not state_t *.
21096 * src/state.h (core, CORE_ALLOC): Rename as...
21097 (state_t, STATE_ALLOC): this.
21098 Add the LALR(1) members: shifts, reductions, errs.
21099 * src/LR0.c (state_table): Rename as...
21100 (state_hash): this, to avoid name clashes with the global
21101 `state_table'.
21102 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
21103 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
21104
74ffbcb6
AD
211052001-12-10 Akim Demaille <akim@epita.fr>
21106
21107 Bison dumps core on bash.y.
21108 Reported by Pascal Bart.
21109
21110 * src/warshall.c (bitmatrix_print): New.
21111 (TC): Use it.
ba0fe3c7 21112 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
21113 j must be the outer loop.
21114 * tests/regression.at (Broken Closure): New.
21115
07708e19
AD
211162001-12-05 Akim Demaille <akim@epita.fr>
21117
21118 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21119 its argument.
ba1ecc07 21120 Reported by Peter Hamorsky.
07708e19 21121
92b16366
AD
211222001-12-05 Akim Demaille <akim@epita.fr>
21123
21124 * src/conflicts.c (err_table): Remove.
21125 (resolve_sr_conflict): Adjust.
21126 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21127 Rename as...
21128 (state_t.reductions, state_t.shifts): this.
21129
076ab033
AD
211302001-12-05 Akim Demaille <akim@epita.fr>
21131
21132 * src/reduce.c (reduce_grammar_tables): No longer disable the
21133 removal of useless rules via CPP but via `if (0)', so that the
21134 compiler still check the code is valid.
21135 For instance, it should have noticed `rline' no longer exists: use
21136 the `line' member of rule_t.
21137 * src/gram.c (dummy, rline): Remove, unused.
21138
3843c413
AD
211392001-12-05 Akim Demaille <akim@epita.fr>
21140
21141 * src/output.c (pack_vector): Use assert, not berror.
21142 * src/main.c (berror): Remove, unused.
21143
43168960
AD
211442001-12-05 Akim Demaille <akim@epita.fr>
21145
21146 New experimental feature: if --verbose --trace output all the
21147 items of a state, not only its kernel.
21148
21149 * src/print.c (print_core): If `trace_flag', then invoke closure
21150 before outputting the items of the state (print_core is no longer
21151 a correct name them).
21152 (print_results): Invoke new_closure/free_closure if needed.
21153
b2872512
AD
211542001-12-05 Akim Demaille <akim@epita.fr>
21155
21156 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21157 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21158 (nitemset): for consistency with the rest of the project.
21159
23cbcc6c
AD
211602001-12-05 Akim Demaille <akim@epita.fr>
21161
21162 * src/closure.c (print_closure): Improve.
21163 (closure): Use it for printing input and output.
21164
03ec521c
AD
211652001-12-05 Akim Demaille <akim@epita.fr>
21166
21167 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21168 indexed by nonterminals.
21169
3a7456dd
AD
211702001-12-05 Akim Demaille <akim@epita.fr>
21171
21172 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21173 what it was!).
21174 * src/warshall.h: Remove accidental duplication of the content.
21175
1cbcf2e7
AD
211762001-12-05 Akim Demaille <akim@epita.fr>
21177
21178 * src/closure.c (set_fderives): De-obfuscate.
21179
84182270
AD
211802001-12-05 Akim Demaille <akim@epita.fr>
21181
21182 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21183
3f6f053c
AD
211842001-12-05 Akim Demaille <akim@epita.fr>
21185
21186 * src/closure.c (set_firsts): De-obfuscate.
21187
7a5350ba
AD
211882001-12-05 Akim Demaille <akim@epita.fr>
21189
21190 * src/output.c (action_row): De-obfuscate
21191 using the good o' techniques: arrays not pointers, variable
21192 locality, BITISSET, RESETBIT etc.
21193
d954473d
AD
211942001-12-05 Akim Demaille <akim@epita.fr>
21195
21196 Pessimize the code to simplify it: from now on, all the states
21197 have a valid SHIFTS, which NSHIFTS is possibly 0.
21198
21199 * src/LR0.c (shifts_new): Be global and move to..
21200 * src/state.c, src/state.h: here.
21201 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21202 * src/print_graph: Adjust.
21203
9839bbe5
AD
212042001-12-05 Akim Demaille <akim@epita.fr>
21205
21206 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21207 * src/conflicts.c: Use it.
21208 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21209 incorrectly ``simplified''.
21210
9f136c07
AD
212112001-12-05 Akim Demaille <akim@epita.fr>
21212
21213 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21214 using the good o' techniques: arrays not pointers, variable
21215 locality, BITISSET, RESETBIT etc.
21216
b608206e
AD
212172001-12-05 Akim Demaille <akim@epita.fr>
21218
21219 * src/state.h (SHIFT_SYMBOL): New.
21220 * src/conflicts.c: Use it to deobfuscate.
21221
52afa962
AD
212222001-12-05 Akim Demaille <akim@epita.fr>
21223
21224 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21225 (print_reductions): De-obfuscate using the good o' techniques:
21226 arrays not pointers, variable locality, BITISSET.
21227
e74dc321
AD
212282001-12-05 Akim Demaille <akim@epita.fr>
21229
21230 * src/conflicts.c (print_reductions): Arrays, not pointers.
21231 Use BITISSET.
21232
768fca83
AD
212332001-12-05 Akim Demaille <akim@epita.fr>
21234
21235 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21236
a17e599f
AD
212372001-12-05 Akim Demaille <akim@epita.fr>
21238
21239 * src/conflicts.c (print_reductions): Improve variable locality.
21240
a04bc341
AD
212412001-12-05 Akim Demaille <akim@epita.fr>
21242
21243 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21244
c8ea038e
AD
212452001-12-05 Akim Demaille <akim@epita.fr>
21246
21247 * src/conflicts.c (print_reductions): Improve variable locality.
21248
aa2aab3c
AD
212492001-12-05 Akim Demaille <akim@epita.fr>
21250
21251 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21252 * src/lalr.c: Use them.
21253
b178c8cc
AD
212542001-12-05 Akim Demaille <akim@epita.fr>
21255
21256 * src/LR0.c (augment_automaton): Formatting changes.
21257 Better variable locality.
21258
f67d13aa
AD
212592001-12-05 Akim Demaille <akim@epita.fr>
21260
21261 * src/lalr.c (matrix_print): New.
21262 (transpose): Use it.
21263 Use arrays instead of pointers.
21264
c2713865
AD
212652001-12-05 Akim Demaille <akim@epita.fr>
21266
21267 * src/lalr.c (maxrhs): Move to...
21268 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21269 * src/lalr.c (build_relations): Adjust.
21270
9887c18a
AD
212712001-12-05 Akim Demaille <akim@epita.fr>
21272
21273 * src/lalr.c (transpose): Free the memory allocated to the
21274 argument, as it is replaced by the results by the unique caller.
21275 (build_relations): Merely invoke transpose: it handles the memory
21276 deallocation.
21277 Improve variable locality.
21278 Avoid variables used as mere abbreviations.
21279 (compute_lookaheads): Use arrays instead of pointers.
21280
4d4f699c
AD
212812001-12-05 Akim Demaille <akim@epita.fr>
21282
21283 * src/lalr.c (initialize_F): Improve variable locality.
21284 Avoid variables used as mere abbreviations.
21285
80a69750
AD
212862001-12-05 Akim Demaille <akim@epita.fr>
21287
21288 * src/derives.c (print_derives): Display the ruleno.
21289 * src/lalr.c (initialize_F, transpose): Better variable locality
21290 to improve readability.
21291 Avoid variables used as mere abbreviations.
21292
fe961097
AD
212932001-12-05 Akim Demaille <akim@epita.fr>
21294
21295 * src/lalr.c (traverse): Use arrays instead of pointers.
21296
e3e4e814
AD
212972001-12-05 Akim Demaille <akim@epita.fr>
21298
21299 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21300 the handling of squeue.
21301 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21302
630e182b
AD
213032001-12-05 Akim Demaille <akim@epita.fr>
21304
21305 Because useless nonterminals are now kept alive (instead of being
21306 `destroyed'), we now sometimes examine them, and store information
21307 related to them. Hence we need to know their number, and adjust
21308 memory allocations.
21309
21310 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21311 static.
21312 * src/LR0.c (allocate_itemsets): The memory allocated to
21313 `symbol_count' was used for two different purpose: once to count
21314 the number of occurrences of each symbol, and later reassigned to
21315 `shift_symbol', containing the symbol that can be shifted from a
21316 given state.
21317 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21318 only, and...
21319 (new_itemsets): Allocate `shift_symbol' here.
21320 (allocate_itemsets): symbol_count includes useless nonterminals.
21321 Make room for them.
21322 (free_storage): Use `free', not `XFREE', for pointers that cannot
21323 be null.
21324
81b51460
AD
213252001-12-05 Akim Demaille <akim@epita.fr>
21326
21327 * src/nullable.c (set_nullable): Deobfuscate the handling of
21328 ritem.
21329 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21330
3067fbef
AD
213312001-12-05 Akim Demaille <akim@epita.fr>
21332
21333 * src/gram.c, src/gram.h (ritem_print): New.
21334 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21335 (This useless function was defined only to work around VMS linkers
21336 that can't handle compilation units with variables only).
21337 * src/reduce.c (dump_grammar): Use it to trace the construction of
21338 ritem.
21339
c2bea5f9
PE
213402001-12-04 Paul Eggert <eggert@twinsun.com>
21341
7d27c823
PE
21342 * src/bison.simple (union yyalloc): Change member names
21343 to be the same as the stack names.
21344 (yyparse): yyptr is now union yyalloc *, not char *.
21345 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21346 and may generate better code on some machines.
c2bea5f9
PE
21347 (yystpcpy): Use prototype if __STDC__ is defined, not just
21348 if __cplusplus is defined.
35687a9d 21349
2c8a9dfa
AD
213502001-11-30 Akim Demaille <akim@epita.fr>
21351
21352 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21353 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21354 Gettext doesn't compile cleanly, and dies with -Werror.
21355 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21356 Include WARNING_CFLAGS here.
21357 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21358 before being defined.
21359
f4e421e6
AD
213602001-11-27 Paul Eggert <eggert@twinsun.com>
21361
21362 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21363 First arg is int, not unsigned.
21364 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21365 (SIZE_MAX, UINT_MAX): New macros.
21366 (quotearg_n_options): Abort if N is negative.
21367 Avoid overflow check on hosts where size_t is 64 bits and int
21368 is 32 bits, as overflow is impossible there.
21369 Fix off-by-one typo that caused unnecessary reallocation.
21370
7093d0f5
AD
213712001-11-29 Paul Eggert <eggert@twinsun.com>
21372
21373 Name space cleanup in generated parser.
21374
21375 * doc/bison.texinfo (Bison Parser): Discuss system headers
21376 and their effect on the user name space.
21377
21378 * src/bison.simple:
21379 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21380 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21381 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21382
21383 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21384 on user names when possible.
21385
21386 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21387 Simplify test for whather <alloca.h> exists.
21388
21389 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21390
21391 (<stdio.h>): Include if YYDEBUG.
21392
21393 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21394 ! defined (yyoverflow) && ! defined (yymemcpy).
21395
21396 (yymemcpy, yyparse): Rename local variables as needed so that
21397 they all begin with 'yy'.
21398
21399 (yystrlen, yystpcpy): New functions.
21400
21401 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21402 All uses changed.
21403
21404 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21405 instead of relying on string.h functions. Use YYSTACK_ALLOC
21406 and YYSTACK_FREE instead of malloc and free.
21407
fd51e5ff
AD
214082001-11-30 Akim Demaille <akim@epita.fr>
21409
21410 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21411 before their first uses.
21412 (YYBISON, YYPURE): Move to the top of the output.
21413
7d13ff5f
AD
214142001-11-30 Akim Demaille <akim@epita.fr>
21415
21416 * tests/reduce.at (Useless Nonterminals): Fix.
21417
892a3995
AD
214182001-11-30 Akim Demaille <akim@epita.fr>
21419
21420 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21421 if body instead of `;' to pacify GCC's warnings.
21422
68f1e3ed
AD
214232001-11-30 Akim Demaille <akim@epita.fr>
21424
21425 Instead of mapping the LHS of unused rules to -1, keep the LHS
21426 valid, but flag the rules as invalid.
21427
21428 * src/gram.h (rule_t): `useful' is a new member.
21429 * src/print.c (print_grammar): Adjust.
21430 * src/derives.c (set_derives): Likewise.
21431 * src/reader.c (packgram, reduce_output): Likewise.
21432 * src/reduce.c (reduce_grammar_tables): Likewise.
21433 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21434
d2d1b42b
AD
214352001-11-30 Akim Demaille <akim@epita.fr>
21436
21437 * src/reduce.c (reduce_output): Formatting changes.
21438 * src/print.c (print_results, print_grammar): Likewise.
21439 * tests/regression.at (Rule Line Numbers)
21440 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21441
760b53a8
AD
214422001-11-30 Akim Demaille <akim@epita.fr>
21443
21444 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21445 useless nonterminals, move them at the end of the symbol arrays.
21446 (reduce_output): Adjust.
21447 * tests/reduce.at (Useless Nonterminals): Adjust.
21448
00238958
AD
214492001-11-30 Akim Demaille <akim@epita.fr>
21450
21451 * src/reduce.c: Various comment/formatting changes.
21452 (nonterminals_reduce): New, extracted from...
21453 (reduce_grammar_tables): here.
21454 (reduce_grammar): Call nonterminals_reduce.
21455
396452de
PE
214562001-11-29 Paul Eggert <eggert@twinsun.com>
21457
21458 * src/bison.simple (YYSTACK_REALLOC): Remove.
21459 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21460 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21461 New macros.
21462 (union yyalloc): New type.
21463 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21464 an arbitrary restriction on hosts where size_t is wider than int.
21465
21466 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21467 a parser stack overflow. Allocate just one block of memory for all
21468 three stacks, instead of allocating three blocks; this typically is
21469 faster and reduces fragmentation.
21470
21471 Do not limit the number of items in the stack to a value that fits
21472 in 'int', as this is an arbitrary limit on hosts with 64-bit
21473 size_t and 32-bit int.
21474
147e184c
MA
214752001-11-29 Marc Autret <autret_m@epita.fr>
21476
21477 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21478 of defining YYERROR_VERBOSE.
21479 [AT_DATA]: $4 is now out of C declarations in the prologue.
21480
426cf563
MA
214812001-11-28 Marc Autret <autret_m@epita.fr>
21482
21483 * src/reader.c (parse_dquoted_param): New.
21484 (parse_skel_decl): Use it.
21485 * src/lex.h: Add its prototype.
21486 * src/lex.c (literalchar): Become not static.
21487
c7925b99
MA
214882001-11-28 Marc Autret <autret_m@epita.fr>
21489
21490 * src/output.h: And put its extern declaration here.
21491 * src/output.c (error_verbose): Define here.
21492 (prepare): Echo name modification.
21493 * src/getargs.h: Clean its extern declaration.
21494 * src/getargs.c (error_verbose_flag): Remove.
21495 (getargs): Remove case 'e'.
21496 * src/options.c (option_table): 'error-verbose' is now seen as simple
21497 percent option.
21498 Include output.h.
21499
21500 * src/reader.c (read_declarations): Remove case tok_include.
21501 (parse_include_decl): Remove.
21502 * src/lex.h (token_t): Remove tok_include.
21503 * src/options.c (option_table): 'include' is now a simple command line
21504 option.
21505
5b5d1929
MA
215062001-11-28 Marc Autret <autret_m@epita.fr>
21507
21508 * src/bison.simple: Adjust muscle names.
21509 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21510 * src/output.c (prepare): s/_/-/ for the muscles names.
21511 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21512
8850be4b
MA
215132001-11-28 Marc Autret <autret_m@epita.fr>
21514
21515 * src/bison.simple: Fix debug.
21516 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21517
4a38e613
AD
215182001-11-28 Akim Demaille <akim@epita.fr>
21519
21520 * src/LR0.c (shifts_new): New.
21521 (save_shifts, insert_start_shift, augment_automaton): Use it.
21522
4b35e1c1
AD
215232001-11-28 Akim Demaille <akim@epita.fr>
21524
21525 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21526 keep ruleno only.
21527
d2b04478
AD
215282001-11-28 Akim Demaille <akim@epita.fr>
21529
21530 * src/closure.c (closure): Instead of looping over word in array
21531 then bits in words, loop over bits in array.
21532
2c4c30aa
AD
215332001-11-28 Akim Demaille <akim@epita.fr>
21534
21535 * src/closure.c (closure): No longer optimize the special case
21536 where all the bits of `ruleset[r]' are set to 0, to make the code
21537 clearer.
21538
576890b7
AD
215392001-11-28 Akim Demaille <akim@epita.fr>
21540
21541 * src/closure.c (closure): `r' and `c' are new variables, used to
21542 de-obfuscate accesses to RULESET and CORE.
21543
cb487d7d
AD
215442001-11-28 Akim Demaille <akim@epita.fr>
21545
21546 * src/reduce.c (reduce_print): Use ngettext.
21547 (dump_grammar): Improve the trace accuracy.
21548
6013d43f
AD
215492001-11-28 Akim Demaille <akim@epita.fr>
21550
21551 * src/reduce.c (dump_grammar): Don't translate trace messages.
21552
cb4956ee
AD
215532001-11-28 Akim Demaille <akim@epita.fr>
21554
21555 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21556 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21557 as all tags are free'ed afterwards.
21558 From Enrico Scholz.
21559
648185ab
PE
215602001-11-27 Paul Eggert <eggert@twinsun.com>
21561
21562 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21563 use alloca when we didn't want to, and vice versa.
21564
68254a03
MA
215652001-11-27 Marc Autret <autret_m@epita.fr>
21566
9113b58f
AD
21567 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21568 initialization.
68254a03
MA
21569 * src/output.c (prepare): Remove its update.
21570
04d843a2
MA
215712001-11-27 Marc Autret <autret_m@epita.fr>
21572
21573 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21574 Use %error-verbose.
21575
d2079671 215762001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
21577
21578 * src/bison.simple: Remove YYERROR_VERBOSE using.
21579 Use %%error_verbose.
21580 (yyparse): Likewise.
21581 * src/output.c (prepare): Give its final value.
21582 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21583 * src/getargs.h: Add its extern declaration.
21584 * src/getargs.c (error_verbose_flag): New int.
21585 (getargs): Update to catch new case.
21586 * src/options.c (option_table): 'error-verbose' is a new option.
21587 (shortopts): Update.
21588
e0327bc8
AD
215892001-11-27 Akim Demaille <akim@epita.fr>
21590
21591 * src/system.h: Use intl/libgettext.h.
21592 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21593
000f1a3c
AD
215942001-11-27 Akim Demaille <akim@epita.fr>
21595
21596 * tests/torture.at (Exploding the Stack Size with Malloc):
21597 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21598
26cfe0be
AD
215992001-11-27 Akim Demaille <akim@epita.fr>
21600
21601 * src/files.c: Include error.h.
21602 Reported by Hans Aberg.
21603
f6bd5427
MA
216042001-11-26 Marc Autret <autret_m@epita.fr>
21605
d2079671 21606 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
21607 (read_declarations): Add case tok_include.
21608 * src/getargs.h (include): Add its extern definition.
21609 * src/getargs.c (include): New const char *.
21610 (getargs): Add case '-I'.
21611 * src/options.c (option_table): Add include as command line and
21612 percent option.
21613 * src/lex.h (token_t): Add tok_include.
21614
2ca209c1
AD
216152001-11-26 Akim Demaille <akim@epita.fr>
21616
21617 * src/reader.c (readgram): Make sure rules for mid-rule actions
21618 have a lineno equal to that of their host rule.
21619 Reported by Hans Aberg.
21620 * tests/regression.at (Rule Line Numbers): New.
21621
0e41b407
AD
216222001-11-26 Akim Demaille <akim@epita.fr>
21623
21624 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21625 size_ts.
21626
216272001-11-26 Akim Demaille <akim@epita.fr>
21628
21629 * src/complain.c, src/complain.h (error): Remove, provided by
21630 lib/error.[ch].
21631
e0c40012
AD
216322001-11-26 Akim Demaille <akim@epita.fr>
21633
21634 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21635 issue an error message.
21636 * tests/regression.at (Invalid %directive): New.
21637 Reported by Hans Aberg.
21638
5e147124
AD
216392001-11-26 Akim Demaille <akim@epita.fr>
21640
21641 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21642 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21643
a034c8b8
AD
216442001-11-26 Akim Demaille <akim@epita.fr>
21645
21646 * src/conflicts.c (conflicts_print): Don't complain at all when
21647 there are no reduce/reduce conflicts, and as many shift/reduce
21648 conflicts as expected.
21649 * tests/regression.at (%expect right): Adjust.
21650
c64a20f3
AD
216512001-11-23 Akim Demaille <akim@epita.fr>
21652
21653 * lib/alloca.c: Update, from fileutils.
21654
5b0d29bb
AD
216552001-11-23 Akim Demaille <akim@epita.fr>
21656
21657 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21658
722c4bfe
AD
216592001-11-23 Akim Demaille <akim@epita.fr>
21660
21661 * src/system.h: Include alloca.h.
21662 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21663
6255b435
AD
216642001-11-23 Akim Demaille <akim@epita.fr>
21665
21666 * src/print_graph.c (print_actions): Remove `rule', unused.
21667 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21668 pacify GCC's signed < unsigned warnings.
21669 * src/closure.c (itemsetsize): Likewise.
21670 * src/reader.c (symbol_list_new): Static.
21671
b29b2ed5
AD
216722001-11-23 Akim Demaille <akim@epita.fr>
21673
21674 Attaching lineno to buckets is stupid, since only one copy of each
21675 symbol is kept, only the line of the first occurrence is kept too.
21676
21677 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21678 * src/reader.c (rline_allocated): Remove, unused.
21679 (symbol_list): Have a `line' member.
21680 (symbol_list_new): New.
21681 (readgram): Use it.
21682 * src/print.c (print_grammar): Output the rule line numbers.
21683 * tests/regression.at (Solved SR Conflicts)
21684 (Unresolved SR Conflicts): Adjust.
21685 Reported by Hans Aberg.
21686
a81b1d4a
MA
216872001-11-22 Marc Autret <autret_m@epita.fr>
21688
21689 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21690
c1ecb3c1
MA
216912001-11-22 Marc Autret <autret_m@epita.fr>
21692
21693 * src/muscle_tab.c (muscle_init): Remove initialization of
21694 skeleton muscle.
21695 * src/output.c (output_master_parser): Do it here.
21696
fbe01355
AD
216972001-11-20 Akim Demaille <akim@epita.fr>
21698
21699 * po/sv.po: New.
21700 * configure.in (ALL_LINGUAS): Adjust.
21701 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21702 longer contains strings to translate.
21703
81e895c0
AD
217042001-11-19 Akim Demaille <akim@epita.fr>
21705
21706 * src/conflicts.c (conflicts_print): Add a missing \n.
21707
6bb1878b
AD
217082001-11-19 Akim Demaille <akim@epita.fr>
21709
21710 * src/nullable.c (nullable_print): New.
21711 (set_nullable): Call it when tracing.
21712 Better locality of variables.
21713
d9ec2d07
AD
217142001-11-19 Akim Demaille <akim@epita.fr>
21715
21716 * src/print.c (print_actions): Better locality of variables.
21717
720e5c1b
AD
217182001-11-19 Akim Demaille <akim@epita.fr>
21719
21720 * src/derives.c (print_derives): Fix and enrich.
21721 * src/closure.c (print_fderives): Likewise.
21722
fb908786
AD
217232001-11-19 Akim Demaille <akim@epita.fr>
21724
21725 * src/closure.c (itemsetend): Remove, replaced with...
21726 (itemsetsize): new.
21727
125ecb56
AD
217282001-11-19 Akim Demaille <akim@epita.fr>
21729
21730 * src/LR0.c (kernel_end): Remove, replaced with...
21731 (kernel_size): new.
21732
d8cf039f
AD
217332001-11-19 Akim Demaille <akim@epita.fr>
21734
21735 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21736 to clarify.
21737
7bec0760
AD
217382001-11-19 Akim Demaille <akim@epita.fr>
21739
21740 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21741
c87d4863
AD
217422001-11-19 Akim Demaille <akim@epita.fr>
21743
21744 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21745 trace messages.
21746 * src/LR0.c: Likewise.
21747 (allocate_itemsets): Use arrays instead of pointers to clarify.
21748
9bfe901c
AD
217492001-11-19 Akim Demaille <akim@epita.fr>
21750
21751 * src/getargs.c (statistics_flag): Replace with...
21752 (trace_flag): New.
21753 (longopts): Accept --trace instead of --statistics.
21754 * src/getargs.h, src/options.c: Adjust.
21755 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21756 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21757
97db7bd4
AD
217582001-11-19 Akim Demaille <akim@epita.fr>
21759
cc72668c 21760 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
21761 pointers to clarify the code.
21762 (save_reductions, save_shifts): Factor common parts of alternatives.
21763
2c5f66ed
AD
217642001-11-19 Akim Demaille <akim@epita.fr>
21765
21766 * src/LR0.c (new_state, get_state): Complete TRACE code.
21767 * src/closure.c: Include `reader.h' to get `tags', needed by the
21768 trace code.
21769 Rename the conditional DEBUG as TRACE.
21770 Output consistently TRACEs to stderr, not stdout.
21771 * src/derives.c: Likewise.
21772 * src/reduce.c: (inaccessable_symbols): Using if is better style
21773 than goto.
21774 Use `#if TRACE' instead of `#if 0' for tracing code.
21775
300f275f
AD
217762001-11-19 Akim Demaille <akim@epita.fr>
21777
21778 * src/system.h (LIST_FREE, shortcpy): New.
21779 * src/LR0.c: Use them.
21780 * src/output.c (free_itemsets, free_reductions, free_shifts):
21781 Remove, replaced by LIST_FREE.
21782
f59c437a
AD
217832001-11-19 Akim Demaille <akim@epita.fr>
21784
21785 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21786 (REDUCTIONS_ALLOC): New.
21787 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21788 allocation.
21789
6986fd9e
AD
217902001-11-19 Akim Demaille <akim@epita.fr>
21791
21792 * src/LR0.c (new_state): Complete trace code.
21793 * src/nullable.c (set_nullable): Don't translate traces.
21794
4bc30f78
AD
217952001-11-19 Akim Demaille <akim@epita.fr>
21796
21797 * src/print_graph.c (print_core): Better locality of variables.
21798 * src/print.c (print_core): Likewise.
21799
08a946e0
AD
218002001-11-19 Akim Demaille <akim@epita.fr>
21801
21802 * src/vcg.c: You do the output, so you are responsible of the
21803 handling of VCG syntax, in particular: use quotearg.
21804 * src/print_graph.c: Don't.
21805 (print_actions): Don't output the actions as part of the nodes,
21806 since that's the job of the edges.
21807 (print_state): Don't output by hand: fill the node description,
9bfe901c 21808 and ask for its output.
08a946e0 21809
f0473484
AD
218102001-11-19 Akim Demaille <akim@epita.fr>
21811
cc72668c
AD
21812 * src/bison.simple (yyparse): When verbosely reporting an error,
21813 no longer put additional quotes around token names.
f0473484
AD
21814 * tests/calc.at: Adjust.
21815
e41dc700
AD
218162001-11-19 Akim Demaille <akim@epita.fr>
21817
21818 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21819 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21820 * src/output.c: Adjust.
21821
652a871c
AD
218222001-11-19 Akim Demaille <akim@epita.fr>
21823
21824 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21825 (rule_t): this.
21826 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21827
b2ed6e58
AD
218282001-11-19 Akim Demaille <akim@epita.fr>
21829
21830 * src/gram.h (rule_t): New.
21831 (rule_table): New.
21832 (rrhs, rlhs): Remove, part of state_t.
21833 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21834 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21835 * src/reader.c, src/reduce.c: Adjust.
21836
edad7067
AD
218372001-11-19 Akim Demaille <akim@epita.fr>
21838
21839 * src/reader.c (symbols_output): New, extracted from...
21840 (packsymbols): Here.
21841 (reader): Call it.
21842
3feec034
AD
218432001-11-19 Akim Demaille <akim@epita.fr>
21844
21845 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21846 (maxrhs): this new function.
21847
ddcd5fdf
AD
218482001-11-19 Akim Demaille <akim@epita.fr>
21849
cc72668c 21850 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
21851 Adjust.
21852
bb527fc2
AD
218532001-11-19 Akim Demaille <akim@epita.fr>
21854
cc72668c 21855 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
21856 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21857 * src/lalr.c: Adjust.
21858
a845a697
AD
218592001-11-19 Akim Demaille <akim@epita.fr>
21860
21861 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21862 (set_state_table): handle the `lookaheads' members.
21863
f004bf6a
AD
218642001-11-19 Akim Demaille <akim@epita.fr>
21865
cc72668c
AD
21866 * src/lalr.h (lookaheads): Removed array, whose contents is now
21867 a member of...
f004bf6a
AD
21868 (state_t): this structure.
21869 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21870 Adjust.
21871
de326cc0
AD
218722001-11-19 Akim Demaille <akim@epita.fr>
21873
cc72668c
AD
21874 * src/lalr.h (consistent): Removed array, whose contents is now
21875 a member of...
de326cc0
AD
21876 (state_t): this structure.
21877 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21878 Adjust.
21879
90b4416b
AD
218802001-11-19 Akim Demaille <akim@epita.fr>
21881
cc72668c
AD
21882 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21883 contents are now members of...
90b4416b
AD
21884 (state_t): this structure.
21885 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21886 Adjust.
21887
9703cc49
AD
218882001-11-19 Akim Demaille <akim@epita.fr>
21889
21890 * src/lalr.h (state_t): New.
21891 (state_table): Be a state_t * instead of a core **.
21892 (accessing_symbol): Remove, part of state_t.
21893 * src/lalr.c: Adjust.
21894 (set_accessing_symbol): Merge into...
21895 (set_state_table): this.
21896 * src/print_graph.c, src/conflicts.c: Adjust.
21897
d803322e
AD
218982001-11-14 Akim Demaille <akim@epita.fr>
21899
21900 * tests/calc.at, tests/output.at, tests/regression.at,
21901 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21902 now the tests are run in private dirs, therefore AC_CLEANUP and
21903 family can be simplified to 0-ary.
21904 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21905 use abs. path to find config.h.
21906 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21907 stderr, there can be way too much random noise.
21908 Instead pass -Werror to GCC and rely on the exit status.
21909 Reported by Wolfram Wagner.
21910
3d76b07d
AD
219112001-11-14 Akim Demaille <akim@epita.fr>
21912
21913 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21914 defined only if yyoverflow is defined, to avoid `warning: unused
21915 variable `yyvs1''.
21916 Reported by The Test Suite.
21917
09b503c8
AD
219182001-11-14 Akim Demaille <akim@epita.fr>
21919
21920 * src/print.c: Include reduce.h.
21921 Reported by Hans Aberg.
21922
219232001-11-14 Akim Demaille <akim@epita.fr>
21924
21925 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21926 Revert a previous patch: these are really const.
21927 * src/conflicts.c (conflict_report): Additional useless pair of
21928 braces to pacify GCC's warnings for `if () if () {} else {}'.
21929 * src/lex.c (parse_percent_token): Replace equal_offset with
21930 arg_offset.
21931 arg is const.
21932 Be sure to strdup `arg' when used, since there is no reason for
21933 token_buffer not to change.
21934
0f37a994
AD
219352001-11-14 Akim Demaille <akim@epita.fr>
21936
21937 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21938 definition.
21939 * src/main.c (main): Use them.
21940 Suggested by Hans Aberg.
21941
d39d93b8
AD
219422001-11-12 Akim Demaille <akim@epita.fr>
21943
21944 * src/system.h (ngettext): Now that we use ngettext, be sure to
21945 provide a default definition when NLS are not used.
21946
9edcd895
AD
219472001-11-12 Akim Demaille <akim@epita.fr>
21948
21949 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21950 Use @kbd to denote user input.
21951 (Language and Grammar): ANSIfy the example.
21952 Adjust its layout for info/notinfo.
21953 (Location Tracking Calc): Output error messages to stderr.
21954 Output locations in a more GNUtically correct way.
21955 Fix a couple of Englishos.
21956 Adjust @group/@end group pairs.
21957
7da99ede
AD
219582001-11-12 Akim Demaille <akim@epita.fr>
21959
e3aa65c5 21960 %expect was not functioning at all.
7da99ede
AD
21961
21962 * src/conflicts.c (expected_conflicts): Set to -1.
21963 (conflict_report): Use ngettext.
21964 (conflicts_print): Check %expect and make its violation an error.
21965 * doc/bison.texinfo (Expect Decl): Adjust.
21966 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21967 * tests/regression.at (%expect not enough, %expect right)
21968 (%expect too much): New.
21969
ba9dda1a
AD
219702001-11-12 Akim Demaille <akim@epita.fr>
21971
21972 * tests/regression.at (Conflicts): Rename as...
21973 (Unresolved SR Conflicts): this.
21974 (Solved SR Conflicts): New.
21975
337c5bd1
AD
219762001-11-12 Akim Demaille <akim@epita.fr>
21977
21978 * src/reduce.c (print_results): Rename as...
21979 (reduce_output): This.
21980 Output to OUT, passed as argument, instead of output_obstack.
21981 (dump_grammar): Likewise.
21982 (reduce_free): New.
21983 Also free V1.
21984 (reduce_grammar): No longer call reduce_output, since...
21985 * src/print.c (print_results): do it.
21986 * src/main.c (main): Call reduce_free;
21987
c73a41af
AD
219882001-11-12 Akim Demaille <akim@epita.fr>
21989
21990 * src/conflicts.c (print_reductions): Accept OUT as argument.
21991 Output to it, not to output_obstack.
21992 * src/print.c (print_actions): Adjust.
21993
0df87bb6
AD
219942001-11-12 Akim Demaille <akim@epita.fr>
21995
21996 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21997 the result instead of using...
21998 (src_total, rrc_total, src_count, rrc_count): Remove.
21999 (any_conflicts): Remove.
22000 (print_conflicts): Split into...
22001 (conflicts_print, conflicts_output): New.
22002 * src/conflicts.h: Adjust.
22003 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 22004 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
22005 * tests/regression.at (Conflicts): New.
22006 Reported by Tom Lane.
22007
e4d3d4de
AD
220082001-11-12 Akim Demaille <akim@epita.fr>
22009
22010 * tests/regression.at (Invalid input): Remove, duplicate with
22011 ``Invalid input: 1''.
22012
6d7d248e
AD
220132001-11-12 Akim Demaille <akim@epita.fr>
22014
22015 * tests/torture.at (AT_DATA_STACK_TORTURE)
22016 (Exploding the Stack Size with Alloca)
22017 (Exploding the Stack Size with Malloc): New.
22018
e9e4c321
AD
220192001-11-12 Akim Demaille <akim@epita.fr>
22020
22021 * src/bison.simple (YYSTACK_REALLOC): New.
22022 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 22023 Reported by Per Allansson.
e9e4c321 22024
5f7e0832
AD
220252001-11-12 Pascal Bart <pascal.bart@epita.fr>
22026
22027 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22028 define CPP macro, which substitute YYSTYPE by yystype.
22029 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22030 with yyltype/YYLTYPE. This allows inclusion of the generated
22031 header within the parser if the compiler, such as GGC, accepts
22032 multiple equivalent #defines.
22033 From Akim.
22034
e3f1699f
AD
220352001-11-05 Akim Demaille <akim@epita.fr>
22036
22037 * src/reader.c (symbols_output): New, extracted from...
22038 (packsymbols): here.
22039 (reader): Adjust.
22040
65be0866
AD
220412001-11-05 Akim Demaille <akim@epita.fr>
22042
22043 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22044
e4d910bf
AD
220452001-11-05 Akim Demaille <akim@epita.fr>
22046
22047 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22048 pattern.
22049
951366c1
AD
220502001-11-05 Akim Demaille <akim@epita.fr>
22051
22052 * src/options.h (struct option_table_struct): set_flags is void*.
22053 * src/options.c (longopts): Support `--output' and `%output'.
22054 (usage): Adjust.
22055 * src/lex.h (tok_setopt): Remove, replaced with...
22056 (tok_intopt, tok_stropt): these new guys.
22057 * src/lex.c (getopt.h): Not needed.
22058 (token_buffer, unlexed_token_buffer): Not const.
22059 (percent_table): Promote `-' over `_' in directive names.
22060 Active `%name-prefix', `file-prefix', and `output'.
22061 (parse_percent_token): Accept possible arguments to directives.
22062 Promote `-' over `_' in directive names.
22063
d8988b2f
AD
220642001-11-04 Akim Demaille <akim@epita.fr>
22065
22066 * doc/bison.texinfo (Decl Summary): Split the list into
22067 `directives for grammars' and `directives for bison'.
22068 Sort'em.
22069 Add description of `%name-prefix', `file-prefix', and `output'.
22070 Promote `-' over `_' in directive names.
22071 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22072 Simplify the description of `--name-prefix'.
22073 Promote `-' over `_' in directive names.
22074 Promote `--output' over `--output-file'.
22075 Fix the description of `--defines'.
22076 * tests/output.at: Exercise %file-prefix and %output.
22077
6468d18e
AD
220782001-11-02 Akim Demaille <akim@epita.fr>
22079
22080 * doc/refcard.tex: Update.
22081
6b7e85b9
AD
220822001-11-02 Akim Demaille <akim@epita.fr>
22083
22084 * src/symtab.h (SUNDEF): New.
22085 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22086 stand for `uninitialized', instead of 0.
22087 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22088 * src/lex.c (lex): Adjust.
22089
22090 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22091 Number it 0.
22092 Let yylex return it instead of a plain 0.
22093 Reported by Dick Streefland.
22094
cd5aafcf
AD
220952001-11-02 Akim Demaille <akim@epita.fr>
22096
22097 * tests/regression.at (Mixing %token styles): New test.
22098
037ca2f1
AD
220992001-11-02 Akim Demaille <akim@epita.fr>
22100
22101 * src/reader.c (parse_thong_decl): Formatting changes.
22102 (token_translations_init): New, extracted from...
22103 (packsymbols): Here.
22104 Adjust.
22105
270a173c
AD
221062001-11-01 Akim Demaille <akim@epita.fr>
22107
22108 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
22109 Check that `9foo.y' produces correct cpp guards.
22110 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22111 guards.
22112 Reported by Wwp.
22113
561f9a30
AD
221142001-11-01 Akim Demaille <akim@epita.fr>
22115
22116 * tests/regression.at (Invalid input: 2): New.
22117 * src/lex.c (unlexed_token_buffer): New.
22118 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22119 too.
22120 Reported by Wwp.
22121
f987e9d2
AD
221222001-11-01 Akim Demaille <akim@epita.fr>
22123
22124 * tests/calc.at: Catch up with 1.30.
22125 * configure.in: Bump to 1.49a.
22126 Adjust to newer Autotest.
22127
0846f581
PB
221282001-10-19 Pascal Bart <pascal.bart@epita.fr>
22129
22130 * src/conflicts.c: Move global variables rrc_total and src_total ...
22131 (print_conflicts): here.
22132 * src/output.c (output): Free global variable user_toknums.
22133 * src/lex.c (token_obstack): Become static.
22134
3c1a79b3
AD
221352001-10-18 Akim Demaille <akim@epita.fr>
22136
22137 * tests/atlocal.in (GCC): Add.
22138 * tests/calc.at: s/m4_match/m4_bmatch/.
22139 s/m4_patsubst/m4_bpatsubst/.
22140 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22141 * configure.in: AC_SUBST(GCC).
22142
5d52e7d0
MA
221432001-10-14 Marc Autret <autret_m@epita.fr>
22144
22145 * src/options.c (create_long_option_table): Fix.
22146
631aa1d3
AD
221472001-10-10 Akim Demaille <akim@epita.fr>
22148
22149 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22150
f6ec6d13
AD
221512001-10-04 Akim Demaille <akim@epita.fr>
22152
22153 * src/reader.c (parse_union_decl): Push the caracters in
22154 union_obstack, not attrs_obstack.
22155
342b8b6e
AD
221562001-10-04 Akim Demaille <akim@epita.fr>
22157
22158 Merge in the branch 1.29.
22159
22160 * src/reader.c (packsymbols): Use a temporary obstack for
22161 `%%tokendef', since output_stack is already used elsewhere.
22162
22163 2001-10-02 Akim Demaille <akim@epita.fr>
22164
22165 Bump 1.29d.
22166
22167 2001-10-02 Akim Demaille <akim@epita.fr>
22168
22169 Version 1.29c.
22170
22171 2001-10-02 Akim Demaille <akim@epita.fr>
22172
22173 * tests/regression.at (Invalid CPP headers): New.
22174 From Alexander Belopolsky.
22175 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22176
22177 2001-10-02 Akim Demaille <akim@epita.fr>
22178
22179 * tests/regression.at (Invalid input): New.
22180 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22181 Reported by Shura.
22182
22183 2001-10-02 Akim Demaille <akim@epita.fr>
22184
22185 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22186
22187 2001-10-02 Akim Demaille <akim@epita.fr>
22188
22189 * src/output.c (output_parser): Assert `skeleton'.
22190 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22191 systems.
22192 From Shura.
22193
22194 2001-10-01 Marc Autret <autret_m@epita.fr>
22195
22196 * src/lex.h: Echo modifications.
22197 * src/lex.c (unlex): Parameter is now token_t.
22198 From Hans Aberg.
22199
22200 2001-10-01 Marc Autret <autret_m@epita.fr>
22201
22202 * src/main.c: Include lex.h.
22203 From Hans Aberg.
22204
22205 2001-09-29 Akim Demaille <akim@epita.fr>
22206
22207 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22208
22209 2001-09-28 Akim Demaille <akim@epita.fr>
22210
22211 * tests/testsuite.at: Update to newer Autotest.
22212 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22213
22214 2001-09-27 Akim Demaille <akim@epita.fr>
22215
22216 Position independent wrapper.
22217
22218 * tests/bison: Remove.
22219 * tests/bison.in: New.
22220 * configure.in: Adjust.
22221
22222 2001-09-27 Paul Eggert <eggert@twinsun.com>
22223
22224 Port quotearg fixes from tar 1.13.24.
22225
22226 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22227 tm to be declared.
22228 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22229 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22230
22231 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22232 * m4/mbrtowc.m4: New file.
22233 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22234 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22235
22236 2001-09-27 Akim Demaille <akim@epita.fr>
22237
22238 Bump to 1.29c.
22239
22240 2001-09-27 Akim Demaille <akim@epita.fr>
22241
22242 Version 1.29b.
22243
22244 2001-09-25 Akim Demaille <akim@epita.fr>
22245
22246 * src/system.h: Include `xalloc.h'.
22247 Remove it from the C files.
22248 * src/files.c (output_files): Free the obstacks.
22249 * src/lex.c (init_lex): Rename as...
22250 (lex_init): this.
22251 (lex_free): New.
22252 * src/main.c (main): Use it.
22253
22254 2001-09-24 Marc Autret <autret_m@epita.fr>
22255
22256 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22257 to output informations in fout (FILE*).
22258 (open_graph, close_graph): Likewise.
22259 (output_graph, output_edge, output_node): Likewise.
22260 * src/vcg.h: Update function prototypes.
22261 * src/print_graph.c (print_graph): Open output graph file.
22262 (print_actions): Adjust.
22263 * src/files.h: Remove extern declaration.
22264 * src/files.c: Remove graph_obstack declaration.
22265 (open_files): Remove graph_obstack initialization.
22266 (output_files): Remove graph_obstack saving.
22267
22268 2001-09-24 Marc Autret <autret_m@epita.fr>
22269
22270 * src/files.c (compute_output_file_names): Fix.
22271
22272 2001-09-24 Marc Autret <autret_m@epita.fr>,
22273 Akim Demaille <akim@epita.fr>
22274
22275 * src/reader.c (reader): Remove call to free_symtab ().
22276 * src/main.c (main): Call it here.
22277 Include symtab.h.
22278 * src/conflicts.c (initialize_conflicts): Rename as...
22279 (solve_conflicts): this.
22280 * src/print.c (print_core, print_actions, print_state)
22281 (print_grammar): Dump to a file instead a `output_obstack'.
22282 (print_results): Dump `output_obstack', and then proceed with the
22283 FILE *.
22284 * src/files.c (compute_output_file_names, close_files): New.
22285 (output_files): Adjust.
22286 * src/main.c (main): Adjust.
22287
22288 2001-09-23 Marc Autret <autret_m@epita.fr>
22289
22290 * src/files.c (compute_header_macro): Computes header macro name
22291 from spec_defines_file when given.
22292
22293 2001-09-23 Marc Autret <autret_m@epita.fr>
22294
22295 * src/files.c (output_files): Add default extensions.
22296
22297 2001-09-22 Akim Demaille <akim@epita.fr>
22298
22299 * src/conflicts.c (finalize_conflicts): Rename as...
22300 (free_conflicts): this.
22301
22302 2001-09-22 Akim Demaille <akim@epita.fr>
22303
22304 * src/gram.c (gram_free): Rename back as...
22305 (dummy): this.
22306 (output_token_translations): Free `token_translations'.
22307 * src/symtab.c (free_symtab): Free the tag field.
22308
22309 2001-09-22 Akim Demaille <akim@epita.fr>
22310
22311 Remove `translations' as it is always set to true.
22312
22313 * src/gram.h: Adjust.
22314 * src/reader.c (packsymbols, parse_token_decl): Adjust
22315 * src/print.c (print_grammar): Adjust.
22316 * src/output.c (output_token_translations): Adjust.
22317 * src/lex.c (lex): Adjust.
22318 * src/gram.c: Be sure the set pointers to NULL.
22319 (dummy): Rename as...
22320 (gram_free): this.
22321
22322 2001-09-22 Akim Demaille <akim@epita.fr>
22323
22324 * configure.in: Invoke AM_LIB_DMALLOC.
22325 * src/system.h: Use dmalloc.
22326 * src/LR0.c: Be sure to have pointers initialized to NULL.
22327 (allocate_itemsets): Allocate kernel_items only if needed.
22328
22329 2001-09-22 Akim Demaille <akim@epita.fr>
22330
22331 * configure.in: Bump to 1.29b.
22332 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22333 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22334 need xmalloc.c in calc.y.
22335 From Pascal Bart.
22336
22337 2001-09-21 Akim Demaille <akim@epita.fr>
22338
22339 Version 1.29a.
22340 * Makefile.maint, config/config.guess, config/config.sub,
22341 * config/missing: Update from masters.
22342 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22343 upon package.m4.
22344 * configure.in (ALL_LINGUAS): Add `tr'.
22345
22346 2001-09-21 Akim Demaille <akim@epita.fr>
22347
22348 * tests/Makefile.am (package.m4): Move to...
22349 ($(srcdir)/$(TESTSUITE)): here.
22350
22351 2001-09-20 Akim Demaille <akim@epita.fr>
22352
22353 * src/complain.c: No longer try to be standalone: use system.h.
22354 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22355 * src/complain.h: Likewise.
22356 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22357 Remove the unused variable `n'.
22358 From Albert Chin-A-Young.
22359
22360 2001-09-18 Marc Autret <autret_m@epita.fr>
22361
22362 * doc/bison.1: Update.
22363 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22364 descriptions.
22365 (Option Cross Key): Update.
22366 Add --graph.
22367
22368 2001-09-18 Marc Autret <autret_m@epita.fr>
22369
22370 * tests/regression.at: New test (comment in %union).
22371
22372 2001-09-18 Marc Autret <autret_m@epita.fr>
22373
22374 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22375 do that.
22376 Reported by Keith Browne.
22377
22378 2001-09-18 Marc Autret <autret_m@epita.fr>
22379
22380 * tests/output.at: Add tests for --defines and --graph.
22381
22382 2001-09-18 Marc Autret <autret_m@epita.fr>
22383
22384 * tests/output.at: Removes tests of %{header,src}_extension features.
22385
22386 2001-09-18 Akim Demaille <akim@epita.fr>
22387
22388 * tests/Makefile.am (package.m4): New.
22389 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22390 (_AT_CHECK_CALC_ERROR): Likewise.
22391 Factor the `, ' part of verbose error messages.
22392
22393 2001-09-18 Marc Autret <autret_m@epita.fr>
22394
22395 * src/getargs.c (longopts): Declare --defines and --graph as options
22396 with optional arguments.
22397 * src/files.h: Add extern declarations.
22398 * src/files.c (spec_graph_file, spec_defines_file): New.
22399 (output_files): Update.
22400 Remove CPP-outed code.
22401
22402 2001-09-18 Marc Autret <autret_m@epita.fr>
22403
22404 Turn off %{source,header}_extension feature.
22405
22406 * src/files.c (compute_exts_from_gf): Update.
22407 (compute_exts_from_src): Update.
22408 (output_files): CPP-out useless code.
22409 * src/files.h: Remove {header,source}_extension extern declarations.
22410 * src/reader.c (parse_dquoted_param): CPP-out.
22411 (parse_header_extension_decl): Remove.
22412 (parse_source_extension_decl): Remove.
22413 (read_declarations): Remove cases tok_{hdrext,srcext}.
22414 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22415 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22416
22417 2001-09-10 Akim Demaille <akim@epita.fr>
22418
22419 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22420 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22421 (AT_CHECK_OUTPUT): this.
22422 Merely check ls' exit status, its output is useless.
22423
22424 2001-09-10 Akim Demaille <akim@epita.fr>
22425
22426 * tests/calc.at: Use m4_match.
22427 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22428
22429 2001-09-10 Marc Autret <autret_m@epita.fr>,
22430 Akim Demaille <akim@epita.fr>
22431
22432 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22433 enum color_e.
22434 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22435 to `normal'.
22436 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22437 * src/lex.h: Adjust prototype.
22438 (token_t): Add `tok_undef'.
22439 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22440 (parse_percent_token): Now returns token_t.
22441 Add default statement in switch.
22442 (lex): Separate `c' as an input variable, from the token_t result
22443 part.
22444 (unlexed): Is a token_t.
22445
22446 2001-09-10 Akim Demaille <akim@epita.fr>
22447
22448 * configure.in: Bump to 1.29a.
22449
22450 2001-09-07 Akim Demaille <akim@epita.fr>
22451
22452 Version 1.29.
22453
22454 2001-08-30 Akim Demaille <akim@epita.fr>
22455
22456 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22457 * m4/atconfig.m4: Remove.
22458 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22459 * tests/bison: New.
22460 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22461 m4_if, m4_patsubst, and m4_regexp.
22462 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22463 `input' file instead of echo.
22464
22465 2001-08-29 Akim Demaille <akim@epita.fr>
22466
22467 Bump to 1.28e.
22468
22469 2001-08-29 Akim Demaille <akim@epita.fr>
22470
22471 Version 1.28d.
22472
22473 2001-08-29 Paul Eggert <eggert@twinsun.com>
22474
22475 * src/bison.simple (yyparse): Don't take the address of an
22476 item before the start of an array, as that doesn't conform to
22477 the C Standard.
22478
22479 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22480
22481 * doc/bison.texinfo (Location Tracking Calc): New node.
22482
22483 2001-08-29 Paul Eggert <eggert@twinsun.com>
22484
22485 * src/output.c (output): Do not define const, as this now
22486 causes more problems than it cures.
22487
22488 2001-08-29 Akim Demaille <akim@epita.fr>
22489
22490 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22491 the nodes.
22492 Be sure to tag the `detailmenu'.
22493
22494 2001-08-29 Akim Demaille <akim@epita.fr>
22495
22496 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22497 download in a tmp dir.
22498
22499 2001-08-28 Marc Autret <autret_m@epita.fr>
22500
22501 * config/depcomp: New file.
22502
22503 2001-08-28 Marc Autret <autret_m@epita.fr>
22504
22505 * doc/bison.1 (mandoc): Adjust.
22506 From Juan Manuel Guerrero.
22507
22508 2001-08-28 Marc Autret <autret_m@epita.fr>
22509
22510 * src/print_graph.c (print_state): Fix.
22511
22512 2001-08-27 Marc Autret <autret_m@epita.fr>
22513
22514 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22515 char * members.
22516 Echo modifications to the functions prototypes.
22517 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22518
22519 2001-08-27 Marc Autret <autret_m@epita.fr>
22520
22521 * src/vcg.c: Include `xalloc.h'.
22522 (add_colorentry): New.
22523 (add_classname): New.
22524 (add_infoname): New.
22525 * src/vcg.h: Add new prototypes.
22526
22527 2001-08-27 Akim Demaille <akim@epita.fr>
22528
22529 * Makefile.maint: Sync. again with CVS Autoconf.
22530
22531 2001-08-27 Akim Demaille <akim@epita.fr>
22532
22533 * Makefile.maint: Formatting changes.
22534 (po-update, cvs-update, update): New targets.
22535 (AMTAR): Remove.
22536
22537 2001-08-27 Akim Demaille <akim@epita.fr>
22538
22539 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22540 * Makefile.maint: Sync. with CVS Autoconf.
22541
22542 2001-08-27 Marc Autret <autret_m@epita.fr>
22543
22544 * src/vcg.h (struct infoname_s): New.
22545 (struct colorentry_s): New.
22546 (graph_s): New fields {vertical,horizontal}_order in structure.
22547 Add `infoname' field.
22548 Add `colorentry' field;
22549 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22550 (G_HORIZONTAL_ORDER): New.
22551 (G_INFONAME): New.
22552 (G_COLORENTRY): New.
22553 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22554 Add output of `infoname'.
22555 Add output of `colorentry'.
22556
22557 2001-08-27 Marc Autret <autret_m@epita.fr>
22558
22559 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22560 This one shadowed a global parameter.
22561
22562 2001-08-24 Marc Autret <autret_m@epita.fr>
22563
22564 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22565 instead of `unsigned'.
22566 (print_state): Do not call obstack_object_size () in obstack_grow ()
22567 to avoid macro variables shadowing.
22568
22569 2001-08-23 Marc Autret <autret_m@epita.fr>
22570
22571 * src/lex.c (percent_table): Typo: s/naem/name/.
22572 Add graph option.
22573 Normalize new options declarations.
22574
22575 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22576
22577 * tests/suite.at: Exercise %header_extension and %source_extension.
22578
22579 2001-08-16 Marc Autret <autret_m@epita.fr>
22580
22581 * src/reader.c (parse_dquoted_param): New.
22582 (parse_header_extension_decl): Use it.
22583 (parse_source_extension_decl): Likewise.
22584
22585 2001-08-16 Marc Autret <autret_m@epita.fr>
22586
22587 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22588 (get_xxxx_str): Use assert () instead of complain ().
22589 Remove return invokations in default cases.
22590 (get_decision_str): Modify default behaviour. Remove second argument.
22591 Echo modifications on calls.
22592 (output_graph): Fix.
22593
22594 2001-08-16 Marc Autret <autret_m@epita.fr>
22595
22596 * src/getargs.c (usage): Update with ``-g, --graph''.
22597
22598 2001-08-16 Marc Autret <autret_m@epita.fr>
22599
22600 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22601 (Option Cross Key): Likewise.
22602 * doc/bison.1: Update.
22603
1c8c2190
PB
226042001-09-25 Pascal Bart <pascal.bart@epita.fr>
22605
22606 * src/output.c (output_master_parser): Don't finish action_obstack.
22607 (output_parser): Don't care about the muscle action, here.
22608 (prepare): Copy the action_obstack in the action muscle.
22609 (output): Free action_obstack.
22610
180d45ba
PB
226112001-09-23 Pascal Bart <pascal.bart@epita.fr>
22612
22613 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22614 will contain `%union' declaration.
22615 (parse_union_decl): Delete #line directive output.
22616 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22617 informations about %union.
22618 (parse_union_decl): Copy the union_obstack in the muscle stype.
22619 * src/bison.simple: Add new #line directive.
22620 Add typdef %%stype YYSTYPE.
22621
c51d1a19
PB
226222001-09-23 Pascal Bart <pascal.bart@epita.fr>
22623
22624 * src/bison.simple: Add new `#line' directive.
22625
6f9344da
PB
226262001-09-22 Pascal Bart <pascal.bart@epita.fr>
22627
22628 * src/bison.simple: New `#line' directive.
22629 * src/output.c (output_parser): Support new dynamic muscle input_line.
22630
652def80
MA
226312001-09-22 Marc Autret <autret_m@epita.fr>
22632
22633 * src/output.c (output_master_parser): New.
22634 (output_parser): Be more re-entrant.
22635
25b222fa
MA
226362001-09-21 Marc Autret <autret_m@epita.fr>
22637
22638 * src/reader.c (copy_definition, parse_union_decl): Update and use
22639 `linef' muscle.
22640 (copy_action): Likewise.
22641 Use obstack_1grow ().
22642 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22643
6bc35ae5
MA
226442001-09-21 Marc Autret <autret_m@epita.fr>
22645
22646 * src/options.c (option_table): Adjust.
22647 * src/lex.c (parse_percent_token): Fix.
22648
c0629aa1
PB
226492001-09-20 Pascal Bart <pascal.bart@epita.fr>
22650
22651 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 22652
82b6d266
PB
226532001-09-20 Pascal Bart <pascal.bart@epita.fr>
22654
22655 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22656 is now an option_table_struct*.
22657 (option_strcmp): New function option_strcmp.
22658 (parse_percent_token): Call option_strcmp.
22659 * src/getargs.c (xalloc.h, options.h): Include it.
22660 (getargs): Call create_long_option_table.
22661 (getargs): Free longopts at the end of the function.
22662 (shortopts): Move in options.c.
22663 * src/options.c (create_long_option_table): New function. Convert
22664 information from option_table to option structure.
22665 * src/reader.c (options.h): Include it.
22666
22667 * src/Makefile.am: Adjust.
22668 * src/options.c (option_table): Create from longopts and percent_table.
22669 * src/getargs.c (longopts): Delete.
22670 * src/lex.c (struct percent_table_struct): Delete.
22671 (percent_table): Delete.
22672 (options.h): Include it.
22673 * src/options.c: Create.
22674 * src/options.h: Create.
22675 Declare enum opt_access_e.
22676 Define struct option_table_struct.
22677
75f5aaea
MA
226782001-09-20 Marc Autret <autret_m@epita.fr>
22679
22680 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22681 sections of Bison.
22682
f508cb0a
PB
226832001-09-19 Pascal Bart <pascal.bart@epita.fr>
22684
22685 * src/bison.simple: s/%%filename/%%skeleton.
22686 * src/muscle_tab.c (getargs.h): Include it.
22687 (muscle_init): Insert new muscle skeleton.
22688
13105fc1
PB
226892001-09-18 Pascal Bart <pascal.bart@epita.fr>
22690
22691 * src/output.c (output_parser): Delete unused variable actions_dumped.
22692
b0c4483e
PB
226932001-09-07 Pascal Bart <pascal.bart@epita.fr>
22694
22695 * src/output.c (output): Delete call to reader_output_yylsp.
22696 * src/reader.c (reader): Likewise.
ba0fe3c7 22697 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 22698
11d82f03
MA
226992001-09-02 Marc Autret <autret_m@epita.fr>
22700
22701 * src/reader.c: Include muscle_tab.h.
22702 (parse_union_decl): Update.
22703 (parse_macro_decl): Rename parse_muscle_decl.
22704 Update to use renamed functions and variable.
22705 (read_declarations, copy_action, read_additionnal_code, : Updated
22706 with correct variables and functions names.
22707 (packsymbols, reader): Likewise.
342b8b6e 22708
11d82f03 22709 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 22710
11d82f03
MA
22711 * src/output.c: Include muscle_tab.h
22712 In all functions using macro_insert, change by using muscle_insert ().
22713 (macro_obstack): Rename muscle_obstack.
22714 Echo modifications in the whole file.
22715 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22716 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22717 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22718
22719 * src/muscle_tab.h: Update double inclusion macros.
22720 (macro_entry_s): Rename muscle_entry_s.
22721 Update prototypes.
342b8b6e 22722
11d82f03
MA
22723 * src/muscle_tab.c: Include muscle_tab.h.
22724 Rename macro_tabble to muscle_table.
22725 (mhash1, mhash2, mcmp): Use muscle_entry.
22726 (macro_init): Rename muscle_init. Update.
22727 (macro_insert): Rename muscle_insert. Update.
22728 (macro_find): Rename muscle_find. Update.
22729
22730 * src/main.c: Include muscle_tab.h.
22731 (main): Call muscle_init ().
22732 * src/Makefile.am (bison_SOURCES): Echo modifications.
22733
93a37297
MA
227342001-09-02 Marc Autret <autret_m@epita.fr>
22735
f753cd62 22736 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 22737
f753cd62
MA
22738 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22739
227402001-09-02 Marc Autret <autret_m@epita.fr>
22741
22742 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 22743
682d48cd
PB
227442001-09-01 Pascal Bart <pascal.bart@epita.fr>
22745
342b8b6e 22746 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
22747 filename.
22748
087c8fda
MA
227492001-09-01 Marc Autret <autret_m@epita.fr>
22750
22751 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22752 to an explicit value to activate the feature. We do it here.
22753
dda680cb
PB
227542001-08-31 Pascal Bart <pascal.bart@epita.fr>
22755
22756 * src/output.c (prepare): Delete the `filename' muscule insertion.
22757 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22758 (parse_union_decl): Likewise.
22759 * src/macrotab.c (macro_init): Initialize filename by infile.
22760
9e644e64
MA
227612001-08-31 Marc Autret <autret_m@epita.fr>
22762
22763 * src/bison.simple (YYLSP_NEEDED): New definition.
22764 * src/output.c (prepare): Add macro insertion of `locations_flag'
22765
17da6427
PB
227662001-08-31 Pascal Bart <pascal.bart@epita.fr>
22767
22768 * src/output.c (prepare): Delete insertion of previous muscles,
22769 and insert the `prefix' muscles.
22770 * src/macrotab.c (macro_init): Likewise.
22771 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 22772 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
22773 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22774 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 22775 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
22776 name_prefix.
22777
e8cb70b9
PB
227782001-08-31 Pascal Bart <pascal.bart@epita.fr>
22779
22780 * src/main.c (main): Standardize.
22781 * src/output.c (output_table_data, output_parser): Likewise.
22782 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22783
63c2d5de
MA
227842001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22785
342b8b6e 22786 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
22787 %%epilogue.
22788 * src/output.c (output): Rename %%declarations to %%prologue.
22789 * src/bison.simple: Echo modifications.
342b8b6e 22790
d8cb5183
MA
227912001-08-31 Marc Autret <autret_m@epita.fr>
22792
22793 * src/reader.c (readgram): CleanUp.
22794 (output_token_defines): Likewise.
22795 (packsymbols): Likewise.
22796 (reader): Likewise.
22797 * src/output.c (output): CPP-out useless code.
22798
6c686258
PB
227992001-08-31 Pascal Bart <pascal.bart@epita.fr>
22800
342b8b6e 22801 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
22802 output_trailers and output_headers.
22803 * src/output.h: Remove obsolete functions prototypes of output_headers
22804 and output_trailers.
22805
8f451ef7
PB
228062001-08-30 Pascal Bart <pascal.bart@epita.fr>
22807
22808 * src/main.c: Include macrotab.h.
342b8b6e 22809 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
22810 Adjust functions prototypes.
22811 * src/macrotab.c (macro_insert): Constify key and value.
22812 (macro_find): Constify key.
22813 (macro_insert): Include 'xalloc.h'
22814 (macro_insert): Use XMALLOC.
22815 (macro_find): Constify return value.
22816 * src/output.c (output_table_data): Rename table to table_data.
22817 (output_parser): Constify macro_key, macro_value.
22818
997b6fd0 228192001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
22820
22821 * src/reader.c (parse_skel_decl): New.
342b8b6e 22822 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
22823 * src/lex.h (token_t): New token `tok_skel'.
22824 * src/lex.c (percent_table): Add skeleton option entry.
22825 Standardize.
22826
ff48177d
MA
228272001-08-29 Marc Autret <autret_m@epita.fr>
22828
22829 * src/bison.simple: Add %%user_code directive at the end.
22830 * src/reader.c (read_additionnal_code): New.
22831 (reader): Use it.
22832 * src/output.c (output_program): Remove.
22833 (output): Update.
22834
b33160bf
MA
228352001-08-28 Marc Autret <autret_m@epita.fr>
22836
22837 * src/output.c (output_actions): Clean up.
4e5caae2 22838 (output_gram): CPP-out useless code.
b33160bf
MA
22839 * src/reader.c (reader): Clean up, CPP-out useless code.
22840
d1a2daf7
PB
228412001-08-28 Pascal Bart <pascal.bart@epita.fr>
22842
342b8b6e 22843 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 22844 directive.
d1a2daf7
PB
22845 * src/bison.simple: Add `%%definitions'.
22846
2b763dfe
MA
228472001-08-28 Marc Autret <autret_m@epita.fr>
22848
22849 * config/depcomp: New file.
22850
f1a87ef6
PE
228512001-08-27 Paul Eggert <eggert@twinsun.com>
22852
22853 * src/bison.simple (yyparse): Don't take the address of an
22854 item before the start of an array, as that doesn't conform to
22855 the C Standard.
22856
82e236e2
RA
228572001-08-27 Robert Anisko <robert.anisko@epita.fr>
22858
f1a87ef6 22859 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
22860 obstack. It was done too late here.
22861
22862 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22863 completely wrong.
22864 (reader): Initialize the macro obstack here, since we need it to grow
22865 '%define' directives.
22866
22867 * src/reader.h: Declare the macro obstack as extern.
22868
b0cfa28a
RA
228692001-08-27 Robert Anisko <robert.anisko@epita.fr>
22870
22871 * src/output.c (output_parser): Fix. Store single '%' characters in
22872 the output obstack instead of throwing them away.
22873
6fc74234
AD
228742001-08-27 Akim Demaille <akim@epita.fr>
22875
22876 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22877
9c76d118
RA
228782001-08-25 Robert Anisko <robert.anisko@epita.fr>
22879
22880 * lib/Makefile.am: Adjust.
22881
a8289c62
RA
228822001-08-25 Robert Anisko <robert.anisko@epita.fr>
22883
22884 * src/bison.simple: Update and add '%%' directives.
22885
b6610515
RA
228862001-08-25 Robert Anisko <robert.anisko@epita.fr>
22887
22888 * src/reader.c (reader): Remove calls to 'output_headers' and
22889 'output_trailers'. Remove some C output.
22890 (readgram): Disable a piece of code that was writing a default
22891 definition for 'YYSTYPE'.
22892 (reader_output_yylsp): Remove.
22893 (packsymbols): Output token defintions to a macro.
22894 (copy_definition): Disable C output.
6fc74234 22895
b6610515
RA
22896 * src/reader.c (parse_macro_decl): New function used to parse macro
22897 declarations.
22898 (copy_string2): Put the body of copy_string into this new function.
22899 Add a parameter to let the caller choose whether he wants to copy the
22900 string delimiters or not.
22901 (copy_string): Be a simple call to copy_string2 with the last argument
22902 bound to true.
22903 (read_declarations): Add case for macro definition.
22904 (copy_identifier): New.
6fc74234 22905 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
22906 rather than lex.
22907
26f609ff
RA
229082001-08-25 Robert Anisko <robert.anisko@epita.fr>
22909
22910 * src/output.c (prepare): Add prefixed names.
22911 (output_parser): Output semantic actions.
22912 (output_parser): Fix bug on '%%line' directives.
6fc74234 22913
26f609ff
RA
22914 * src/output.c (output_headers): Remove. The C code printed by this
22915 function should now be in the skeletons.
22916 (output_trailers): Remove.
22917 (output): Disable call to 'reader_output_yylsp'.
22918 (output_rule_data): Do not output tables to the table obstack.
22919
22920 * src/output.c: Remove some C dedicated output.
22921 Improve the use of macro and output obstacks.
22922 (output_defines): Remove.
6fc74234 22923
26f609ff
RA
22924 * src/output.c (output_token_translations): Associate 'translate'
22925 table with a macro. No output to the table obstack.
22926 (output_gram): Same for 'rhs' and 'prhs'.
22927 (output_stos): Same for 'stos'.
22928 (output_rule_data): Same for 'r1' and 'r2'.
22929 (token_actions): Same for 'defact'.
22930 (goto_actions): Same for 'defgoto'.
22931 (output_base): Same for 'pact' and 'pgoto'.
22932 (output_table): Same for 'table'.
22933 (output_check): Same for 'check'.
6fc74234 22934
26f609ff
RA
22935 * src/output.c (output_table_data): New function.
22936 (output_short_table): Remove.
22937 (output_short_or_char_table): Remove.
6fc74234 22938
26f609ff
RA
22939 * src/output.c (output_parser): Replace most of the skeleton copy code
22940 with something new. Skeletons are now processed character by character
22941 rather than line by line, and Bison looks for '%%' macros. This is the
22942 first step in making Bison's output process (a lot) more flexible.
22943 (output_parser): Use the macro table.
22944
6f43b113
RA
229452001-08-25 Robert Anisko <robert.anisko@epita.fr>
22946
22947 * src/main.c (main): Initialize the macro table.
22948
dd3127cf
RA
229492001-08-25 Robert Anisko <robert.anisko@epita.fr>
22950
22951 * src/lex.c (percent_table): Add tok_define.
22952 * src/lex.h: Add tok_define.
22953
aa321494
RA
229542001-08-25 Robert Anisko <robert.anisko@epita.fr>
22955
22956 * src/macrotab.c: New file.
22957 * src/macrotab.h: New file.
22958 * src/Makefile.am: Update.
22959
68bd3b6b
RA
229602001-08-25 Robert Anisko <robert.anisko@epita.fr>
22961
22962 * lib/hash.c: New file.
22963 * lib/hash.h: New file.
22964 * lib/Makefile.am: Update.
22965
45f8dd1e
AD
229662001-08-15 Akim Demaille <akim@epita.fr>
22967
22968 Version 1.28c.
22969
40a64a7a 229702001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
22971
22972 * src/reader.c (readgram): Indent output macro YYSTYPE.
22973 (packsymbols): Likewise.
22974 (output_token_defines): Likewise.
22975 * src/files.c: Standardize.
22976 (compute_header_macro): New.
22977 (defines_obstack_save): New. Use compute_header_macro.
22978 (output_files): Update. Use defines_obstack_save.
22979
f9a8293a
AD
229802001-08-15 Akim Demaille <akim@epita.fr>
22981
22982 * doc/bison.texinfo (Table of Symbols): Document
22983 YYSTACK_USE_ALLOCA.
22984
150ca7a7
AD
229852001-08-15 Akim Demaille <akim@epita.fr>
22986
22987 * missing: Update from CVS Automake.
22988 * config/config.guess, config/config.sub, config/texinfo.tex:
22989 Update from gnu.org.
22990
69b5cec4
AD
229912001-08-15 Akim Demaille <akim@epita.fr>
22992
22993 * Makefile.maint: Sync with CVS Autoconf.
22994
f2b5126e
PB
229952001-08-14 Pascal Bart <pascal.bart@epita.fr>
22996
69b5cec4 22997 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
22998 `fdl.texi'.
22999 * doc/fdl.texi: Add to package.
23000
4ecbf796
MA
230012001-08-14 Marc Autret <autret_m@epita.fr>
23002
23003 Turn on %{source,header}_extension features.
23004
69b5cec4 23005 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
23006 source_extension.
23007 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 23008 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
23009 between options.
23010
95fb5662
MA
230112001-08-14 Marc Autret <autret_m@epita.fr>
23012
23013 * src/files.c (compute_base_names): Add extensions computing when
23014 `--file-prefix' used.
23015 Standardize function calls.
23016
78d09da9
MA
230172001-08-13 Marc Autret <autret_m@epita.fr>
23018
69b5cec4 23019 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
23020 defining it (defined but null disables alloca).
23021
5a009f2c
MA
230222001-08-13 Marc Autret <autret_m@epita.fr>
23023
23024 * src/bison.simple (_yy_memcpy): CPP reformat.
23025
1e41465a
PB
230262001-08-13 Pascal Bart <pascal.bart@epita.fr>
23027
23028 * tests/atconfig.in (CPPFLAGS): Fix.
23029
c67a198d
PB
230302001-08-10 Pascal Bart <pascal.bart@epita.fr>
23031
79282c6c 23032 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
23033 `gpl.texi'.
23034 * doc/gpl.texi: Add to package.
23035
09a6de7e
MA
230362001-08-10 Marc Autret <autret_m@epita.fr>
23037
23038 * src/print_graph.h: Fix.
23039 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23040
b77b9ee0
AD
230412001-08-10 Akim Demaille <akim@epita.fr>
23042
23043 * src/system.h: Provide default declarations for stpcpy, strndup,
23044 and strnlen.
23045
3e259915
MA
230462001-08-10 Robert Anisko <anisko_r@epita.fr>
23047
23048 * doc/bison.texinfo (Locations): Update @$ stuff.
23049
ca96bc2d
MA
230502001-08-09 Robert Anisko <anisko_r@epita.fr>
23051
23052 * src/bison.simple (YYLLOC_DEFAULT): Update.
23053 (yyparse): Adjust.
23054
fdc6758b
MA
230552001-08-08 Marc Autret <autret_m@epita.fr>
23056
b77b9ee0 23057 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
23058 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23059 Reported by Fabrice Bauzac.
957d4dbf 23060
600cad3b
MA
230612001-08-08 Marc Autret <autret_m@epita.fr>
23062
23063 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23064 * src/vcg.c (output_node): Fix.
23065 * src/vcg.h: Cleanup.
23066 * src/print_graph.c: Add comments.
b77b9ee0 23067 (node_output_size): New global variable. Simplify the formatting of
600cad3b 23068 the VCG graph output.
b77b9ee0 23069 (print_actions): Unused code is now used. It notifies the final state
600cad3b 23070 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 23071 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
23072 blue.
23073 Get the current node name and node_obstack by argument.
23074 (node_obstack): New variable.
23075 (print_state): Manage node_obstack.
23076 (print_core): Use node_obstack given by argument.
23077 A node is not only computed here but in print_actions also.
23078 (print_graph): CPP out useless code instead of commenting it.
23079
976e528f
AD
230802001-08-07 Pascal Bart <pascal.bart@epita.fr>
23081
23082 * tests/atconfig.in (CPPFLAGS): Fix.
23083
20e8e5ca
AD
230842001-08-07 Akim Demaille <akim@epita.fr>
23085
23086 * src/print_graph.c (quote): New.
23087 (print_core): Use it.
23088
957d4dbf 230892001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 23090
3e3da797
AD
23091 * src/vcg.c (complain.h): Include it.
23092 Unepitaize `return' invocations.
c4b66126 23093 [NDEBUG] (main): Remove.
79282c6c 23094 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
23095 * src/files.c (open_files): Initialize graph_obstack.
23096 * src/print_graph.c (print_actions): CPP out useless code.
23097 (print_core): Don't output the last `\n' in labels.
23098 Use `quote'.
23099 * src/files.c (output_files): Output the VCG file.
23100 * src/main.c (main): Invoke print_graph ();
3e3da797 23101
957d4dbf 231022001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
23103
23104 Automaton VCG graph output.
23105 Using option ``-g'' or long option ``--graph'', you can generate
23106 a gram_filename.vcg file containing a VCG description of the LALR (1)
23107 automaton of your grammar.
23108
23109 * src/main.c: Call to print_graph() function.
23110 * src/getargs.h: Update.
23111 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23112 (graph_flag): New flag.
23113 (longopts): Update.
23114 (getargs): Add case `g'.
23115 * src/files.c (graph_obstack): New obstack struct.
23116 (open_files): Initialize new obstack.
23117 (output_files): Saves graph_obstack if required.
23118 * src/files.h (graph_obstack): New extern declaration.
23119 * src/Makefile.am: Add new source files.
23120
927c1557 231212001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
23122
23123 * src/print_graph.c, src/print_graph.h (graph): New.
23124 * src/vcg.h: New file.
23125 * src/vcg.c: New file, VCG graph handling.
23126
7333d403
AD
231272001-08-06 Marc Autret <autret_m@epita.fr>
23128
23129 Add of %source_extension and %header_extension which specify
23130 the source or/and the header output file extension.
23131
23132 * src/files.c (compute_base_names): Remove initialisation of
23133 src_extension and header_extension.
23134 (compute_exts_from_gf): Update.
23135 (compute_exts_from_src): Update.
23136 (output_files): Update.
23137 * src/reader.c (parse_header_extension_decl): New.
23138 (parse_source_extension_decl): New.
23139 (read_declarations): New case statements for the new tokens.
23140 * src/lex.c (percent_table): Add entries for %source_extension
23141 and %header_extension.
23142 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23143
84163231
AD
231442001-08-06 Marc Autret <autret_m@epita.fr>
23145
23146 * configure.in: Bump to 1.28c.
23147 * doc/bison.texinfo: Texinfo thingies.
23148
8303fc42
AD
231492001-08-04 Pascal Bart <pascal.bart@epita.fr>
23150
23151 * tests/atconfig.in (CPPFLAGS): Add.
23152 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23153
70a84437
AD
231542001-08-03 Akim Demaille <akim@epita.fr>
23155
23156 Version 1.28b.
23157
2ce10144
AD
231582001-08-03 Akim Demaille <akim@epita.fr>
23159
23160 * tests/Makefile.am (check-local): Ship testsuite.
23161 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23162 Include `string.h'.
23163
1e3e4bc1
AD
231642001-08-03 Akim Demaille <akim@epita.fr>
23165
23166 * configure.in: Try using -Wformat when compiling.
23167
42b45b7f
AD
231682001-08-03 Akim Demaille <akim@epita.fr>
23169
23170 * configure.in: Bump to 1.28b.
23171
8f13fe33
AD
231722001-08-03 Akim Demaille <akim@epita.fr>
23173
23174 * src/complain.c: Adjust strerror_r portability issues.
23175
b37ba92c
AD
231762001-08-03 Akim Demaille <akim@epita.fr>
23177
23178 Version 1.28a.
23179
b0ce6046
AD
231802001-08-03 Akim Demaille <akim@epita.fr>
23181
23182 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23183 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23184 * src/getargs.c: Include complain.h.
23185 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23186 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23187
d01c415b
AD
231882001-08-03 Akim Demaille <akim@epita.fr>
23189
23190 * src/reader.c (readgram): Display hidden chars in error messages.
23191
459dd1a6
AD
231922001-08-03 Akim Demaille <akim@epita.fr>
23193
23194 Update to gettext 0.10.39.
23195
53b74c0c
AD
231962001-08-03 Akim Demaille <akim@epita.fr>
23197
23198 * lib/strspn.c: New.
23199
234a3be3
AD
232002001-08-01 Marc Autret <autret_m@epita.fr>
23201
23202 * doc/bison.texinfo: Update.
23203 * doc/bison.1 (mandoc): Update.
23204 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23205 * src/files.c: Support output files extensions computing.
23206 (src_extension): New static variable.
23207 (header_extension): New static variable.
23208 (tr): New function.
23209 (get_extension_index): New function, gets the index of an extension
23210 filename in a string.
23211 (compute_exts_from_gf): New function, computes extensions from the
23212 grammar file extension.
23213 (compute_exts_from_src): New functions, computes extensions from the
23214 C source file extension, file given by ``-o'' option.
23215 (compute_base_names): Update.
23216 (output_files): Update.
23217
847bf1f5
AD
232182001-08-01 Robert Anisko <anisko_r@epita.fr>
23219
d995fee7 23220 * doc/bison.texi: Document @$.
847bf1f5
AD
23221 (Locations): New section.
23222
d074a105
AD
232232001-07-18 Akim Demaille <akim@epita.fr>
23224
23225 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23226 * config/prev-version.txt, config/move-if-change: New.
23227 * Makefile.am: Adjust.
23228
3419715d
AD
232292001-07-08 Pascal Bart <pascal.bart@epita.fr>
23230
23231 * src/bison.simple (yyparse): Suppress warning `comparaison
23232 between signed and unsigned'.
23233
62ab6972
AD
232342001-07-05 Pascal Bart <pascal.bart@epita.fr>
23235
23236 * src/getargs.h (raw_flag): Remove.
23237 * src/getargs.c: Die on `-r'/`--raw'.
23238 * src/lex.c (parse_percent_token): Die on `%raw'.
23239 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23240 * tests/calc.at: Suppress test with option `--raw'.
23241
1e24cc5b
AD
232422001-07-14 Akim Demaille <akim@epita.fr>
23243
23244 * config/: New.
23245 * configure.in: Require Autoconf 2.50.
23246 Update to gettext 0.10.38.
23247
32dfccf8
AD
232482001-03-16 Akim Demaille <akim@epita.fr>
23249
23250 * doc/bison.texinfo: ANSIfy the examples.
23251
cd5bd6ac
AD
232522001-03-16 Akim Demaille <akim@epita.fr>
23253
23254 * getargs.c (skeleton): New variable.
23255 (longopts): --skeleton is a new option.
23256 (shortopts, getargs): -S is a new option.
23257 * getargs.h: Declare skeleton.
23258 * output.c (output_parser): Use it.
23259
5141b016
AD
232602001-03-16 Akim Demaille <akim@epita.fr>
23261
23262 * m4/strerror_r.m4: New.
23263 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23264 * lib/error.h, lib/error.c: Update.
23265
447992b9
AD
232662001-03-16 Akim Demaille <akim@epita.fr>
23267
23268 * src/getargs.c (longopts): Clean up.
23269
274d42ce
AD
232702001-02-21 Akim Demaille <akim@epita.fr>
23271
23272 * src/reader.c (gensym): `gensym_count' is your own.
23273 Use a static buf to create the symbol name, as token_buffer is no
23274 longer a buffer.
23275
22c821f3
AD
232762001-02-08 Akim Demaille <akim@epita.fr>
23277
23278 * src/conflicts.c (conflict_report): Be sure not to append to res
23279 between two calls, which could happen if both first sprintf were
23280 skipped, but not the first cp += strlen.
23281
18569462
AD
232822001-02-08 Akim Demaille <akim@epita.fr>
23283
23284 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23285 New, from fileutils 4.0.37.
23286 * configure.in: Require Autoconf 2.49c. I took some time before
23287 making this decision. This is the only way out for portability
23288 issues in Bison, it would mean way too much duplicate effort to
23289 import in Bison features implemented in 2.49c since 2.13.
23290 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23291
0d8f3c8a
AD
232922001-02-02 Akim Demaille <akim@epita.fr>
23293
23294 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 23295 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 23296
f17bcd1f
AD
232972001-01-19 Akim Demaille <akim@epita.fr>
23298
23299 Get rid of the ad hoc handling of token_buffer in the scanner: use
23300 the obstacks.
23301
23302 * src/lex.c (token_obstack): New.
23303 (init_lex): Initialize it. No longer call...
23304 (grow_token_buffer): this. Remove it.
23305 Adjust all the places which used it to use the obstack.
23306
511e79b3
AD
233072001-01-19 Akim Demaille <akim@epita.fr>
23308
23309 * src/lex.h: Rename all the tokens:
23310 s/\bENDFILE\b/tok_eof/g;
23311 s/\bIDENTIFIER\b/tok_identifier/g;
23312 etc.
23313 Let them be enums, not #define, to ease debugging.
23314 Adjust all the code.
23315
0d6508ef
AD
233162001-01-18 Akim Demaille <akim@epita.fr>
23317
23318 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23319 * src/lex.c (maxtoken, grow_token_buffer): Static.
23320
6deb4447
AD
233212001-01-18 Akim Demaille <akim@epita.fr>
23322
23323 Since we now use obstacks, more % directives can be enabled.
23324
23325 * src/lex.c (percent_table): Also accept `%yacc',
23326 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23327 `%debug'.
23328 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23329 instead of returning a token.
23330 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23331 * src/reader.c (read_declarations): Adjust.
23332 * src/files.c (open_files): Don't call `compute_base_names', don't
23333 compute `attrsfile' since they depend upon data which might be
23334 *in* the input file now.
23335 (output_files): Do it here.
23336 * src/output.c (output_headers): Document the fact that this patch
23337 introduces a guaranteed SEGV for semantic parsers.
23338 * doc/bison.texinfo: Document them.
23339 * tests/suite.at: Exercise these %options.
23340
ff4423cc
AD
233412000-12-20 Akim Demaille <akim@epita.fr>
23342
23343 Also handle the output file (--verbose) with obstacks.
23344
23345 * files.c (foutput): Remove.
23346 (output_obstack): New.
23347 Adjust all dependencies.
23348 * src/conflicts.c: Return a string.
23349 * src/system.h (obstack_grow_string): Rename as...
23350 (obstack_sgrow): this. Be ready to work with non literals.
23351 (obstack_fgrow4): New.
23352
956dba3a
AD
233532000-12-20 Akim Demaille <akim@epita.fr>
23354
23355 * src/files.c (open_files): Fix the computation of short_base_name
23356 in the case of `-o foo.tab.c'.
23357
337bab46
AD
233582000-12-20 Akim Demaille <akim@epita.fr>
23359
23360 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23361 (copy_dollar): Now that everything uses obstacks, get rid of the
23362 FILE * parameters.
23363
5d3214b8
AD
233642000-12-20 Akim Demaille <akim@epita.fr>
23365
23366 * src/files.c (open_files): Actually the `.output' file is based
23367 on the short_base_name, not base_name.
23368 * tests/suite.at (Checking output file names): Adjust.
23369
29092a57
AD
233702000-12-20 Akim Demaille <akim@epita.fr>
23371
23372 * src/bison.s1: Remove, we now use directly...
23373 * src/bison.simple: this.
23374 * src/Makefile.am: Use pkgdata instead of data.
23375
ea5607fd
AD
233762000-12-20 Akim Demaille <akim@epita.fr>
23377
23378 * src/files.c (guard_obstack): New.
23379 (open_files): Initialize it.
23380 (output_files): Dump it...
23381 * src/files.h: Export it.
23382 * src/reader.c (copy_guard): Use it.
23383
27110317
AD
233842000-12-19 Akim Demaille <akim@epita.fr>
23385
23386 * src/files.c (outfile, defsfile, actfile): Removed as global
23387 vars.
23388 (open_files): Don't compute them.
23389 (output_files): Adjust.
23390 (base_name, short_base_name): Be global.
23391 Adjust dependencies.
23392
19c50364
AD
233932000-12-19 Akim Demaille <akim@epita.fr>
23394
23395 * src/files.c (strsuffix): New.
23396 (stringappend): Be just like strcat but allocate.
23397 (base_names): Eve out from open_files.
23398 Try to simplify the rather hairy computation of base_name and
23399 short_base_name.
23400 (open_files): Use it.
23401 * tests/suite.at (Checking output file names): New test.
23402
573c1d9f
AD
234032000-12-19 Akim Demaille <akim@epita.fr>
23404
23405 * src/system.h (obstack_grow_literal_string): Rename as...
23406 (obstack_grow_string): this.
23407 * src/output.c (output_parser): Recognize `%% actions' instead of
23408 `$'.
23409 * src/bison.s1: s/$/%% actions/.
23410 * src/bison.hairy: Likewise.
23411
ef7ddedd
AD
234122000-12-19 Akim Demaille <akim@epita.fr>
23413
23414 * src/output.c (output_parser): Compute the `#line' lines when
23415 there are.
23416 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23417 Suggested by Hans Aberg.
23418
ff61dabd
AD
234192000-12-19 Akim Demaille <akim@epita.fr>
23420
23421 Let the handling of the skeleton files be local to the procedures
23422 that use it.
23423
23424 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23425 longer static.
23426 (fparser, open_extra_files): Remove.
23427 (open_files, output_files): Don't take care of fparser.
23428 * src/files.h: Adjust.
23429 * src/output.c (output_parser): Open and close the file to the
23430 skeleton.
23431 * src/reader.c (read_declarations): When %semantic_parser, open
23432 fguard.
23433
55b96341
AD
234342000-12-19 Akim Demaille <akim@epita.fr>
23435
23436 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23437 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23438
358c15b7
AD
234392000-12-19 Akim Demaille <akim@epita.fr>
23440
23441 * src/files.c (open_files): Yipee! We no longer need all the code
23442 looking for `/tmp' since we have no tmp file.
23443
7de3329e
AD
234442000-12-19 Akim Demaille <akim@epita.fr>
23445
23446 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23447 New macros.
23448 * src/files.c (open_files): Less dependency on MSDOS etc.
23449
3abcd459
AD
234502000-12-14 Akim Demaille <akim@epita.fr>
23451
23452 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23453 Provide a default definition.
23454 Use it when executing the default @ action.
23455 * src/reader.c (reader_output_yylsp): No longer include
23456 `timestamp' and `text' in the default YYLTYPE.
23457
2a91a95e
AD
234582000-12-12 Akim Demaille <akim@epita.fr>
23459
23460 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23461 (copy_guard): Quote the file names.
23462 Reported by Laurent Mascherpa.
23463
14d3eb9b
AD
234642000-12-12 Akim Demaille <akim@epita.fr>
23465
23466 * src/output.c (output_headers, output_program, output): Be sure
23467 to escape special characters when outputting filenames.
23468 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23469 (output_headers): Don't depend on them, Use ACTSTR.
23470
d7045ec6
AD
234712000-11-17 Akim Demaille <akim@epita.fr>
23472
23473 * lib/obstack.h: Formatting changes.
23474 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23475 prevents type checking.
23476 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23477 cast the value to (void *): assigning a `foo *' to a `void *'
23478 variable is valid.
23479 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23480 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23481 append characters.
23482
6fd54b73
AD
234832000-11-17 Akim Demaille <akim@epita.fr>
23484
23485 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23486 as...
23487 (suite.m4, regression.m4, calc.m4): these.
23488 * tests/atgeneral.m4: Update from CVS Autoconf.
23489
4c50eae6
AD
234902000-11-17 Akim Demaille <akim@epita.fr>
23491
23492 * tests/regression.m4 (%union and --defines): New test,
23493 demonstrating a current bug in the obstack implementation.
23494
a35f64ea
AD
234952000-11-17 Akim Demaille <akim@epita.fr>
23496
23497 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23498 macros.
23499 Use them to declare the variables which are global or local to
23500 `yyparse'.
23501
7de23534
AD
235022000-11-17 Akim Demaille <akim@epita.fr>
23503
23504 * acconfig.h: Remove, no longer used.
23505
aa7815f5
AD
235062000-11-07 Akim Demaille <akim@epita.fr>
23507
23508 * src: s/Copyright (C)/Copyright/g.
23509
5af1f549
AD
235102000-11-07 Akim Demaille <akim@epita.fr>
23511
23512 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23513 defining.
23514 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23515
553e2b22
AD
235162000-11-07 Akim Demaille <akim@epita.fr>
23517
23518 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23519 Merge in a single CPP if/else.
23520
8a4f41d6
AD
235212000-11-07 Akim Demaille <akim@epita.fr>
23522
23523 * src/output.c (output): Remove useless variables.
23524 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23525 argument `data' for consistency with the prototypes.
23526 Qualify it `const'.
23527 (obstack_copy, obstack_copy0): Rename the second argument as
23528 `address' for consistency. Qualify it `const'.
23529 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23530 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23531 `const' their input argument (`data' or `address').
23532 Adjust the corresponding macros to include `const' in casts.
23533
095a3fb5
AD
235342000-11-03 Akim Demaille <akim@epita.fr>
23535
23536 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23537 s/PFILE1/BISON_HAIRY/.
23538 Adjust dependencies.
23539
d1cdce7c
AD
235402000-11-03 Akim Demaille <akim@epita.fr>
23541
090c5ebf 23542 For some reason, this was not applied.
d1cdce7c
AD
23543
23544 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23545 `unlink': it's no longer used.
23546
9311529b
AD
235472000-11-03 Akim Demaille <akim@epita.fr>
23548
23549 * src/files.c (skeleton_find): New function, eved out of...
23550 (open_files, open_extra_files): here.
23551
d8880f69
AD
235522000-11-03 Akim Demaille <akim@epita.fr>
23553
23554 Don't use `atexit'.
23555
23556 * src/files.c (obstack_save): New function.
23557 (done): Rename as...
23558 (output_files): this.
23559 Use `obstack_save'.
23560 * src/main.c (main): Don't use `atexit' to register `done', since
23561 it no longer has to remove tmp files, just call `output_files'
23562 when there are no errors.
23563
0dbb648e
AD
235642000-11-02 Akim Demaille <akim@epita.fr>
23565
23566 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23567 `unlink': it's no longer used.
23568 * src/files.h: Formatting changes.
23569
896fe5c1
AD
235702000-11-02 Akim Demaille <akim@epita.fr>
23571
23572 Remove the last uses of mktemp and unlink/delete.
23573
23574 * src/files.c (fdefines, ftable): Removed.
23575 (defines_ostack, table_obstack): New.
23576 Adjust dependencies of the former into uses of the latter.
23577 * src/output.c (output_short_or_char_table, output_short_table):
23578 Convert to using obstacks.
23579 * src/reader.c (copy_comment2): Accept one FILE * and two
23580 obstacks.
23581 (output_token_defines, reader_output_yylsp): Use obstacks.
23582 * src/system.h (obstack_fgrow3): New.
1f65350a 23583 * po/POTFILES.in: Adjust.
896fe5c1 23584
dd60faec
AD
235852000-11-01 Akim Demaille <akim@epita.fr>
23586
23587 Change each use of `fattrs' into a use of `attrs_obstack'.
23588
23589 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23590 * src/files.c (fattrs): Remove.
23591 (attrs_obstack): New.
23592 Adjust all dependencies.
23593 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23594
8c7ebe49
AD
235952000-11-01 Akim Demaille <akim@epita.fr>
23596
23597 Introduce obstacks.
23598 Change each use of `faction' into a use of `action_obstack'.
23599
23600 * lib/obstack.h, lib/obstack.c: New files.
23601 * src/files.c (faction): Remove.
23602 (action_obstack): New.
23603 Adjust all dependencies.
23604
77aee789
AD
236052000-10-20 Akim Demaille <akim@epita.fr>
23606
23607 * lib/quote.h (PARAMS): New macro. Use it.
23608
43591cec
AD
236092000-10-16 Akim Demaille <akim@epita.fr>
23610
23611 * src/output.c (output_short_or_char_table): New function.
23612 (output_short_table, output_token_translations): Use it.
23613 (goto_actions): Use output_short_table.
23614
1e9798d5
AD
236152000-10-16 Akim Demaille <akim@epita.fr>
23616
23617 * src/symtab.c (bucket_new): New function.
23618 (getsym): Use it.
23619
23620 * src/output.c (output_short_table): New argument to display the
23621 comment associated with the table.
23622 Adjust dependencies.
23623 (output_gram): Use it.
23624 (output_rule_data): Nicer output layout for YYTNAME.
23625
f282676b
AD
236262000-10-16 Akim Demaille <akim@epita.fr>
23627
23628 * src/lex.c (read_typename): New function.
23629 (lex): Use it.
23630 * src/reader.c (copy_dollar): Likewise.
23631
550a72a3
AD
236322000-10-16 Akim Demaille <akim@epita.fr>
23633
23634 * src/reader.c (copy_comment2): Expect the input stream to be on
23635 the `/' which is suspected to open a comment, instead of being
23636 called after `//' or `/*' was read.
23637 (copy_comment, copy_definition, parse_union_decl, copy_action)
23638 (copy_guard): Adjust.
23639
131e2fef
AD
236402000-10-16 Akim Demaille <akim@epita.fr>
23641
23642 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23643 `read_signed_integer'.
23644
79282c5a
AD
236452000-10-16 Akim Demaille <akim@epita.fr>
23646
23647 * src/reader.c (copy_dollar): New function.
23648 (copy_guard, copy_action): Use it.
23649
ff4a34be
AD
236502000-10-16 Akim Demaille <akim@epita.fr>
23651
23652 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23653 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23654 New files, from Fileutils 4.0.27.
23655 * src/main.c (printable_version): Remove.
23656 * src/lex.c, src/reader.c: Use `quote'.
23657
236582000-10-04 Akim Demaille <akim@epita.fr>
23659
23660 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23661
14ded682
AD
236622000-10-04 Akim Demaille <akim@epita.fr>
23663
23664 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23665
8e03724b
AD
236662000-10-04 Akim Demaille <akim@epita.fr>
23667
23668 When a literal string is used to define two different tokens,
23669 `bison -v' segfaults.
23670 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23671
23672 * tests/regression.m4: New file.
23673 Include the core of the sample provided by Piotr Gackiewicz.
23674 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23675 properly.
23676
a9e64249
AD
236772000-10-04 Akim Demaille <akim@epita.fr>
23678
23679 * src/reader.c (parse_expect_decl): Keep `count' within the size
23680 of `buffer'.
23681 From Neil Booth.
23682
da9abf43
AD
236832000-10-02 Paul Eggert <eggert@twinsun.com>
23684
23685 * bison.s1 (yyparse): Assign the default value
23686 unconditionally, to avoid a GCC warning and make the parser a
23687 tad smaller.
23688
c33638bb
AD
236892000-10-02 Akim Demaille <akim@epita.fr>
23690
23691 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23692 options.
23693
444c570a
AD
236942000-10-02 Akim Demaille <akim@epita.fr>
23695
23696 * src/derives.c, src/print.c, src/reduce.c: To ease the
23697 translation, move some `\n' out of the translated strings.
23698
89cab50d
AD
236992000-10-02 Akim Demaille <akim@epita.fr>
23700
23701 The location tracking mechanism is precious for parse error
23702 messages. Nevertheless, it is enabled only when `@n' is used in
23703 the grammar, which is a different issue (you can use it in error
23704 message, but not in the grammar per se). Therefore, there should
23705 be another means to enable it.
23706
23707 * src/getargs.c (getargs): Support `--locations'.
23708 (usage): Report it.
23709 * src/getargs.h (locationsflag): Export it.
23710 * src/lex.c (percent_table): Support `%locations'.
23711 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23712 with `locationsflag'.
23713 * doc/bison.texinfo: Document `--locations' and `%locations'.
23714 Sort the options.
23715 * tests/calc.m4: Test it.
23716
23717 For regularity of the names, replace each
23718 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23719 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23720 In addition replace each `flag' with `_flag'.
23721
d6c2cba0
AD
237222000-10-02 Akim Demaille <akim@epita.fr>
23723
23724 Also test parse error messages, including with YYERROR_VERBOSE.
23725
23726 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23727 associative).
23728 Use it to check the computations.
23729 Use it to check `nonassoc' is honored.
23730 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23731 `--yyerror-verbose'.
23732 (_AT_CHECK_CALC): Adjust to this option.
23733 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23734
5a35a6cb
AD
237352000-10-02 Akim Demaille <akim@epita.fr>
23736
23737 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23738 the latter demonstrates a flaw in the handling of non debugging
23739 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23740 was used in order to simplify:
23741
23742 #if YYDEBUG
23743 if (yydebug)
23744 {
23745 ...
23746 }
23747 #endif
23748
23749 into
23750
23751 if (yydebug)
23752 {
23753 ...
23754 }
23755
23756 unfortunately this leads to a CPP conflict when
23757 `--name-prefix=foo' is used since it produces `#define yydebug
23758 foodebug'.
23759
23760 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23761 (YYDPRINTF): New macro.
23762 Spread its use.
23763 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23764 the bison options.
23765 Also test `--verbose', `--defines' and `--name-prefix'.
23766
71da9eea
AD
237672000-10-02 Akim Demaille <akim@epita.fr>
23768
23769 Improve the readability of the produced parsers.
23770
23771 * src/bison.s1: Formatting changes.
23772 Improve the comment related to the `$' mark.
23773 (yydefault): Don't fall through to `yyresume': `goto' there.
23774 * src/output.c (output_parser): When the `$' is met, skip the end
23775 of its line.
23776 New variable, `number_of_dollar_signs', to check there's exactly
23777 one `$' in the parser skeleton.
23778
95e36146
AD
237792000-10-02 Akim Demaille <akim@epita.fr>
23780
23781 * lib/xstrdup.c: New file, from the fileutils.
23782 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23783 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23784 instead of strlen + xmalloc + strcpy.
23785 * src/symtab.c (copys): Remove, use xstrdup instead.
23786
d7020c20
AD
237872000-10-02 Akim Demaille <akim@epita.fr>
23788
23789 * src/gram.h (associativity): New enum type which replaces the
23790 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23791 `right_assoc', `left_assoc' and `non_assoc'.
23792 Adjust all dependencies.
23793 * src/reader.c: Formatting changes.
23794 (LTYPESTR): Don't define it, use it as a literal in
23795 `reader_output_yylsp'.
23796 * src/symtab.h (symbol_class): New enum type which replaces the
23797 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23798 `sunknown', `stoken and `snterm'.
23799
1916f98e
AD
238002000-10-02 Akim Demaille <akim@epita.fr>
23801
23802 * src/getargs.c (fixed_outfiles): Rename as...
23803 (yaccflag): for consistency and accuracy.
23804 Adjust dependencies.
23805
d7913476
AD
238062000-10-02 Akim Demaille <akim@epita.fr>
23807
23808 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23809 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23810 difficult and introduced a lot of core dump. It turns out that
23811 Bison used an implementation of `xmalloc' based on `calloc', and
23812 at various places it does depend upon the initialization to 0. I
23813 have not tried to isolate the pertinent places, and all the former
23814 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23815 someone should address this issue.
23816
23817 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23818 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23819 files.
23820 Adjust dependencies.
23821 * src/warshall.h: New file.
23822 Propagate.
23823
340ef489
AD
238242000-10-02 Akim Demaille <akim@epita.fr>
23825
23826 Various anti-`extern in *.c' changes.
23827
23828 * src/system.h: Include `assert.h'.
23829
b2ca4022
AD
238302000-10-02 Akim Demaille <akim@epita.fr>
23831
23832 * src/state.h (nstates, final_state, first_state, first_shift)
23833 (first_reduction): Move their exportation from here...
23834 * src/LR0.h: to here.
23835 Adjust dependencies.
23836 * src/getargs.c (statisticsflag): New variable.
23837 Add support for `--statistics'.
23838 Adjust dependencies.
23839
23840 Remove a lot of now useless `extern' statements in most files.
23841
403b315b
AD
238422000-10-02 Akim Demaille <akim@epita.fr>
23843
23844 * src/LR0.h: New file.
23845 Propagate its use.
23846
07a58c13
AD
238472000-10-02 Akim Demaille <akim@epita.fr>
23848
23849 * src/print.h: New file.
23850 Propagate its use.
23851 * src/print.c: Formatting and ordering changes.
23852 (verbose, terse): Replace with...
23853 (print_results): this new function.
23854 Adjust dependencies.
23855
0619caf0
AD
238562000-10-02 Akim Demaille <akim@epita.fr>
23857
23858 * src/conflicts.c (conflict_report): New function.
23859 (conflict_log, verbose_conflict_log): Replace with...
23860 (print_conflicts): this function.
23861 Adjust dependencies.
23862 * src/conflicts.h: New file.
23863 Propagate its inclusion.
23864
3519ec76
AD
238652000-10-02 Akim Demaille <akim@epita.fr>
23866
23867 * src/nullable.h: New file.
23868 Propagate its inclusion.
23869 * src/nullable.c: Formatting changes.
23870
015acc48
AD
238712000-10-02 Akim Demaille <akim@epita.fr>
23872
23873 * src/reduce.h: New file.
23874 Propagate its inclusion.
23875 * src/reduce.c: Topological sort and other formatting changes.
23876 (bool, TRUE, FALSE): Move their definition to...
23877 * src/system.h: here.
23878
8963a27b
AD
238792000-10-02 Akim Demaille <akim@epita.fr>
23880
23881 * src/files.c: Formatting changes.
23882 (tryopen, tryclose, openfiles): Rename as...
23883 (xfopen, xfclose, open_files): this.
23884 (stringappend): static.
23885 * src/files.h: Complete the list of exported symbols.
23886 Propagate its use.
23887
a70083a3
AD
238882000-10-02 Akim Demaille <akim@epita.fr>
23889
23890 * src/reader.h: New file.
23891 Propagate its use instead of tedious list of `extern' and
23892 prototypes.
23893 * src/reader.c: Formatting changes, topological sort,
23894 s/register//.
23895
abadc117
AD
238962000-10-02 Akim Demaille <akim@epita.fr>
23897
23898 * src/lex.h: Prototype `lex.c' exported functions.
23899 * src/reader.c: Adjust.
23900 * src/lex.c: Formatting changes.
23901 (safegetc): Rename as...
23902 (xgetc): this.
23903
720d742f
AD
239042000-10-02 Akim Demaille <akim@epita.fr>
23905
23906 * src/lalr.h: New file.
23907 Propagate its inclusion instead of prototypes and `extern'.
23908 * src/lalr.c: Formatting changes, topological sorting etc.
23909
f2acea59
AD
239102000-10-02 Akim Demaille <akim@epita.fr>
23911
23912 * src/output.c (token_actions): Introduce a temporary array,
23913 YYDEFACT, that makes it possible for this function to use
23914 output_short_table.
23915
d019d655
AD
239162000-10-02 Akim Demaille <akim@epita.fr>
23917
23918 `user_toknums' is output as a `short[]' in `output.c', while it is
23919 defined as a `int[]' in `reader.c'. For consistency with the
23920 other output tables, `user_toknums' is now defined as a table of
23921 shorts.
23922
23923 * src/reader.c (user_toknums): Be a short table instead of an int
23924 table.
23925 Adjust dependencies.
23926
23927 Factor the short table outputs.
23928
23929 * src/output.c (output_short_table): New function.
23930 * src/output.c (output_gram, output_stos, output_rule_data)
23931 (output_base, output_table, output_check): Use it.
23932
6c89f1c1
AD
239332000-10-02 Akim Demaille <akim@epita.fr>
23934
23935 * src/output.c (output): Topological sort of the functions, in
23936 order to get rid of the `static' prototypes.
23937 No longer use `register'.
23938 * src/output.h: New file.
23939 Propagate its inclusion in files explicitly prototyping functions
23940 from output.c.
23941
d9efd181
AD
239422000-09-21 Akim Demaille <akim@epita.fr>
23943
23944 * src/atgeneral.m4: Update from Autoconf.
23945
c29240e7 239462000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
23947
23948 * src/closure.h: New file.
23949 * src/closure.c: Formatting changes, topological sort over the
23950 functions, use of closure.h.
23951 (initialize_closure, finalize_closure): Rename as...
23952 (new_closure, free_closure): these. Adjust dependencies.
23953 * src/LR0.c: Formatting changes, topological sort, use of
23954 cloture.h.
23955 (initialize_states): Rename as...
23956 (new_states): this.
23957 * src/Makefile.am (noinst_HEADERS): Adjust.
23958
499daa50
AD
239592000-09-20 Akim Demaille <akim@epita.fr>
23960
23961 * src/acconfig.h: Don't protect config.h against multiple
23962 inclusion.
23963 Don't define PARAMS.
23964 * src/system.h: Define PARAMS.
23965 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23966 purpose of config.h. system.h must not try to fix wrong
23967 definitions in config.h.
23968
cc84fd5d
AD
239692000-09-20 Akim Demaille <akim@epita.fr>
23970
23971 * src/derives.h: New file.
23972 * src/main.c, src/derives.h: Use it.
23973 Formatting changes.
23974 * src/Makefile.am (noinst_HEADERS): Adjust.
23975
db5b3a89
AD
239762000-09-20 Akim Demaille <akim@epita.fr>
23977
23978 * tests/atgeneral.m4: Update from Autoconf.
23979 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23980 (AT_CHECK_CALC): New macros.
23981 Use these macros to test bison with options `', `--raw',
23982 `--debug', `--yacc', `--yacc --debug'.
23983
ceed8467
AD
239842000-09-19 Akim Demaille <akim@epita.fr>
23985
23986 * src/output.c: Formatting changes.
23987 * src/machine.h: Remove, leaving its contents in...
23988 * src/system.h: here.
23989 Include stdio.h.
23990 Adjust all dependencies on stdio.h and machine.h.
23991 * src/getargs.h: New file.
23992 Let all `extern' declarations about getargs.c be replaced with
23993 inclusion of `getargs.h'.
23994 * src/Makefile.am (noinst_HEADERS): Adjust.
23995
23996 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23997 scope.
23998 (yyerror): Returns void, not int.
23999 * doc/bison.texinfo: Formatting changes.
24000
05a1d24b
AD
240012000-09-19 Akim Demaille <akim@epita.fr>
24002
24003 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
24004 portable.
24005
cbd25751
AD
240062000-09-18 Akim Demaille <akim@epita.fr>
24007
24008 * configure.in: Append WARNING_CFLAGS to CFLAGS.
24009 * src/Makefile.am (INCLUDES): Don't.
24010 Be ready to fetch headers in lib/.
24011
13863333
AD
240122000-09-18 Akim Demaille <akim@epita.fr>
24013
24014 * doc/bison.texinfo: Update the copyright.
24015 ANSIfy and GNUify the examples.
24016 Remove the old menu.
24017
0d533154
AD
240182000-09-18 Akim Demaille <akim@epita.fr>
24019
24020 First set of tests: use the `calc' example from the documentation.
24021
24022 * src/bison.s1 (yyparse): Condition the code using `yytname' which
24023 is defined only when YYDEBUG is.
24024 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24025 * src/files.c (tryopen, tryclose): Formatting changes.
24026 Move to the top and be static.
24027 * src/reader.c (read_signed_integer): Likewise.
24028 * tests/calc.m4: New file.
24029 * Makefile.am, suite.m4: Adjust.
24030 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24031
e79137ac
AD
240322000-09-18 Akim Demaille <akim@epita.fr>
24033
24034 Add support for an Autotest test suite for Bison.
24035
24036 * m4/m4.m4, m4/atconfig.m4: New files.
24037 * m4/Makefile.am (EXTRA_DIST): Adjust.
24038 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24039 files.
24040 * src/getargs.c: Display a more standard --version message.
24041 * src/reader.c (reader): Formatting changes.
24042 No longer depend upon VERSION_STRING.
24043 * configure.in: No longer use `dnl'.
24044 Set up the test suite and the new directory `tests/.
24045 (VERSION_STRING): Remove.
24046
27821bff
AD
240472000-04-14 Akim Demaille <akim@epita.fr>
24048
24049 * src/reader.c (copy_comment2): New function, same as former
24050 `copy_comment', but outputs into two FILE *.
24051 (copy_comment): Use it.
24052 (parse_union_decl): Use it.
24053 (get_type, parse_start_decl): Use the same `invalid' message.
24054 (parse_start_decl, parse_union_decl): Use the same `multiple'
24055 message.
24056 (parse_union_decl, copy_guard, copy_action): Use the same
24057 `unmatched' message.
24058 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24059
cfe5fbc0
AD
240602000-03-31 Akim Demaille <akim@epita.fr>
24061
24062 * src/files.c (tryopen, tryclose): Move to the top.
24063 Be static.
24064
cb7db13e
AD
240652000-03-31 Akim Demaille <akim@epita.fr>
24066
24067 * src/main.c (main): Don't call `done', exit does it.
24068
a0f6b076
AD
240692000-03-31 Akim Demaille <akim@epita.fr>
24070
36281465
AD
24071 * allocate.c: s/return (foo)/return foo/.
24072 * lalr.c: Likewise.
24073 * LR0.c: Likewise.
24074 * output.c: Likewise.
24075 * reader.c: Likewise.
24076 * symtab.c: Likewise.
24077 * vmsgetargs.c: Likewise.
24078
240792000-03-31 Akim Demaille <akim@epita.fr>
24080
24081 Clean up the error reporting functions.
a0f6b076
AD
24082
24083 * src/report.c: New file.
24084 * src/report.h: Likewise.
24085 * src/Makefile.am: Adjust.
24086 * m4/error.m4: New file.
24087 * m4/Makefile.am: Adjust.
24088 * configure.in (jm_PREREQ_ERROR): Call it.
24089 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24090 Remove.
24091 (fatal, fatals): Remove. All callers use complain.c::fatal.
24092 (warn, warni, warns, warnss, warnss): Remove. All callers use
24093 complain.c::complain.
24094 (toomany): Remove, use fatal instead.
24095 * src/files.c (done): No argument, use complain_message_count.
24096 * src/main.c (main): Register `done' to `atexit'.
24097
24098 * src/getargs.c (usage): More `fputs', less `fprintf'.
24099
18539825
AD
241002000-03-28 Akim Demaille <akim@epita.fr>
24101
24102 * lib/: New directory.
24103 * Makefile.am (SUBDIRS): Adjust.
24104 * configure.in: Adjust.
24105 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
24106 useless.
24107 * src/alloca.c: Moved to lib/.
24108 * src/getopt.c: Likewise.
24109 * src/getopt1.c: Likewise.
24110 * src/getopt.h: Likewise.
24111 * src/ansi2knr.c: Likewise.
24112 * src/ansi2knr.1: Likewise.
24113 * src/Makefile.am: Adjust.
24114 * lib/Makefile.am: New file.
24115
9f306f2a
AD
241162000-03-28 Akim Demaille <akim@epita.fr>
24117
24118 * src/getargs.c (usage): Refresh the help message.
24119
0ba347b6
AD
241202000-03-17 Akim Demaille <akim@epita.fr>
24121
24122 * src/getopt1.c: Updated from textutils 2.0e
24123 * src/getopt.c: Likewise.
24124 * src/getopt.h: Likewise.
24125
dbe7f271
AD
241262000-03-17 Akim Demaille <akim@epita.fr>
24127
24128 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24129 the file name, not the whole `#line LINE FILE'.
24130
75bbe78d
AD
241312000-03-17 Akim Demaille <akim@epita.fr>
24132
24133 On syntax errors, report the token on which we choked.
24134
aa5fd0ee
AD
24135 * src/bison.s1 (yyparse): In the label yyerrlab, when
24136 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 24137
7b306f52
AD
241382000-03-17 Akim Demaille <akim@epita.fr>
24139
aa5fd0ee 24140 * src/reader.c (copy_at): New function.
7b306f52
AD
24141 (copy_guard): Use it.
24142 (copy_action): Use it.
24143
e87b5700
AD
241442000-03-17 Akim Demaille <akim@epita.fr>
24145
24146 Be kind to translators, save some useless translations.
24147
aa5fd0ee 24148 * src/main.c (banner): New function.
e87b5700
AD
24149 (fatal_banner): Use it.
24150 (warn_banner): Use it.
24151
ae3c3164
AD
241522000-03-17 Akim Demaille <akim@epita.fr>
24153
aa5fd0ee
AD
24154 * src/reader.c (copy_definition): Use copy_string and
24155 copy_comment. Removed now unused `match', `ended',
24156 `cplus_comment'.
ae3c3164
AD
24157 (copy_comment, copy_string): Moved, to be visible from
24158 copy_definition.
24159
4dc58e7c
AD
241602000-03-17 Akim Demaille <akim@epita.fr>
24161
aa5fd0ee
AD
24162 * src/reader.c (copy_string): Declare `static inline'. No
24163 problems with inline, since it is checked by configure.
4dc58e7c
AD
24164 (copy_comment): Likewise.
24165
0a6384c4
AD
241662000-03-17 Akim Demaille <akim@epita.fr>
24167
aa5fd0ee 24168 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 24169
3cef001a
AD
241702000-03-17 Akim Demaille <akim@epita.fr>
24171
aa5fd0ee 24172 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
24173 (copy_action): Use it. Removed now unused `match', `ended',
24174 `cplus_comment'.
24175 (copy_guard): Likewise.
24176
ca36d2ef
AD
241772000-03-17 Akim Demaille <akim@epita.fr>
24178
aa5fd0ee 24179 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
24180 (copy_action): Use it.
24181 (copy_guard): Likewise.
24182
6666f98f
AD
241832000-03-17 Akim Demaille <akim@epita.fr>
24184
24185 Change the handling of @s so that they behave exactly like $s.
24186 There is now a pseudo variable @$ (readble and writable), location
24187 of the lhs of the rule (by default ranging from the location of
24188 the first symbol of the rhs, to the location of the last symbol,
24189 or, if the rhs is empty, YYLLOC).
24190
24191 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24192 yyval.
24193 (yyparse): When providing a default semantic action, provide a
24194 default location action.
24195 (after the $): No longer change `*YYLSP', just stack YYLOC the
24196 same way you stack YYVAL.
24197 * src/reader.c (read_declarations): Use warns.
24198 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24199 (copy_action, case '@'): Likewise.
24200 Use a standard error message, to save useless work from
24201 translators.
24202
41aca2e0
AD
242032000-03-17 Akim Demaille <akim@epita.fr>
24204
aa5fd0ee
AD
24205 * src/bison.s1: Formatting and cosmetics changes.
24206 * src/reader.c: Likewise.
41aca2e0
AD
24207 Update the Copyright notice.
24208
dc08c1d5
AD
242092000-03-17 Akim Demaille <akim@epita.fr>
24210
aa5fd0ee
AD
24211 * src/bison.s1 (#line): All set to `#line' only, since the
24212 Makefile now handles them.
dc08c1d5 24213
9ee3c97b
AD
242142000-03-16 Akim Demaille <akim@epita.fr>
24215
24216 * src/output.c (output_rule_data): Output the documentation of
24217 some of the tables.
24218 (Copyright notice): Update.
24219 Formatting changes.
24220
0de741ca
AD
242212000-03-16 Akim Demaille <akim@epita.fr>
24222
24223 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24224 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24225 One `#if YYDEBUG' remains, since it uses variables which are
24226 defined only if `YYDEBUG != 0'.
24227
bb10be54
AD
242282000-03-16 Akim Demaille <akim@epita.fr>
24229
24230 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24231 and related variables so that the similarities are highlighted.
24232
b07b484a
AD
242332000-03-16 Akim Demaille <akim@epita.fr>
24234
24235 * src/bison.s1: Properly indent CPP directives.
24236
361f60b3
AD
242372000-03-16 Akim Demaille <akim@epita.fr>
24238
24239 * src/bison.s1: Properly indent the `alloca' CPP section.
24240
8c44d3ec
AD
242412000-03-16 Akim Demaille <akim@epita.fr>
24242
24243 Do not hard code values of directories in `configure.in'.
24244 Update the `configure' tool chain.
24245
24246 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24247 src/makefile.am.
24248 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24249 (AC_OUTPUT): Add m4/Makefile.
24250 Bump to bison 1.28a, 1.29 has never been released.
24251 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24252 handled via src/Makefile.am.
24253 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24254 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24255 autoheader.
24256 * Makefile.am (SUBDIRS): Add m4.
24257 (ACLOCAL_AM_FLAGS): New variable.
24258 (AUTOMAKE_OPTIONS): Add check-news.
24259 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24260 the proper line number and file name.
24261 (DEFS): Propagate the location of bison library files and of the
24262 locale files.
24263 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24264 builddir.
24265 * acinclude.m4: Remove, replaced by the directory m4.
24266 * m4/Makefile.am (EXTRA_DIST): New variable.
24267 * m4/gettext.m4: New file, from the fileutils.
24268 * m4/lcmessage.m4: Likewise
24269 * m4/progtest.m4: Likewise.
24270 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24271
f95997e7
AD
242722000-03-10 Akim Demaille <akim@epita.fr>
24273
24274 * src/closure.c:
24275 Formatting changes of various comments.
24276 Respect the GNU coding standards at various places.
24277 Don't use `_()' when no translation is needed.
24278
242791999-12-13 Jesse Thilo <jthilo@gnu.org>
24280
24281 * src/files.c:
24282 OS/2 honors TMPDIR environment variable.
24283
242841999-12-13 Jesse Thilo <jthilo@gnu.org>
24285
24286 * doc/bison.texinfo: Tweaked spelling and grammar.
24287 Updated ISBN.
24288 Removed reference to price of printed copy.
24289 Mention BISON_SIMPLE and BISON_HAIRY.
24290
242911999-12-13 Jesse Thilo <jthilo@gnu.org>
24292
24293 * configure.in, NEWS:
24294 Bison 1.29 released.
24295
242961999-10-27 Jesse Thilo <jthilo@gnu.org>
24297
24298 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24299 Added reference card.
24300
243011999-07-26 Jesse Thilo <jthilo@gnu.org>
24302
24303 * po/ru.po: Added Russian translation.
24304
243051999-07-26 Jesse Thilo <jthilo@gnu.org>
24306
24307 * configure.in: Added Russian translation.
24308
243091999-07-06 Jesse Thilo <jthilo@gnu.org>
24310
24311 * configure.in, NEWS, README:
24312 Released version 1.28.
24313
243141999-06-14 Jesse Thilo <jthilo@gnu.org>
24315
24316 * src/system.h:
24317 Squashed redefinition warning on some systems.
24318
24319 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24320 Have configure build version string instead of relying on ANSI string
24321 concatentation.
24322
243231999-06-14 Jesse Thilo <jthilo@gnu.org>
24324
24325 * po/POTFILES.in: Got rid of version.c.
24326
243271999-06-14 Jesse Thilo <jthilo@gnu.org>
24328
24329 * acconfig.h, configure.in:
24330 Have configure build version string instead of relying on ANSI string
24331 concatentation.
24332
243331999-06-08 Jesse Thilo <jthilo@gnu.org>
24334
24335 * doc/bison.1:
24336 Dropped mention of `+' for long-named options.
24337
243381999-05-30 Jesse Thilo <jthilo@gnu.org>
24339
24340 * src/files.c: Added <unistd.h> for unlink().
24341
24342 * src/Makefile.am, src/system.h:
24343 I18n fixes.
24344
243451999-05-30 Jesse Thilo <jthilo@gnu.org>
24346
24347 * README: Added a FAQ list.
24348
24349 * configure.in, acconfig.h:
24350 I18n fixes.
24351
243521999-05-30 Jesse Thilo <jthilo@gnu.org>
24353
24354 * doc/FAQ, doc/Makefile.am:
24355 Added a FAQ list.
24356
243571999-05-19 Jesse Thilo <jthilo@gnu.org>
24358
24359 * src/alloc.h, src/symtab.h, src/version.c:
24360 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24361
243621999-04-18 Jesse Thilo <jthilo@gnu.org>
24363
24364 * src/.cvsignore, src/Makefile.am:
24365 Reorganized: sources in `src', documentation in `doc'.
24366
24367 * src/lex.c (literalchar):
24368 fixed the code for escaping double quotes (thanks
24369 Jonathan Czisny.)
24370
243711999-04-18 Jesse Thilo <jthilo@gnu.org>
24372
24373 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24374 Adjusted paths to reflect directory reorganization.
24375
243761999-04-18 Jesse Thilo <jthilo@gnu.org>
24377
24378 * doc/.cvsignore, doc/Makefile.am:
24379 Reorganized: sources in `src', documentation in `doc'.
24380
243811999-04-18 Jesse Thilo <jthilo@gnu.org>
24382
24383 * configure.in:
24384 Updated AC_INIT file to reflect directory reorganization.
24385
24386 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24387 Reorganized: sources in `src', documentation in `doc'.
24388
243891999-04-13 Jesse Thilo <jthilo@gnu.org>
24390
24391 * src/allocate.c:
24392 Don't declare calloc() and realloc() if not necessary.
24393
243941999-04-13 Jesse Thilo <jthilo@gnu.org>
24395
24396 * configure.in, acconfig.h, acinclude.m4:
24397 Don't declare calloc() and realloc() if not necessary.
24398
243991999-03-23 Jesse Thilo <jthilo@gnu.org>
24400
24401 * po/.cvsignore: Added i18n support.
24402
244031999-03-23 Jesse Thilo <jthilo@gnu.org>
24404
24405 * acconfig.h, configure.in, Makefile.am:
24406 Added i18n support.
24407
244081999-03-22 Jesse Thilo <jthilo@gnu.org>
24409
24410 * src/bison.s1: Fixed #line numbers.
24411
244121999-03-15 Jesse Thilo <jthilo@gnu.org>
24413
24414 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24415 Added PO files from Translation Project.
24416
244171999-03-03 Jesse Thilo <jthilo@gnu.org>
24418
24419 * Makefile.am:
24420 Added support for non-ANSI compilers (ansi2knr).
24421
244221999-02-16 Jesse Thilo <jthilo@gnu.org>
24423
24424 * configure.in: Bumped version number to 1.27.
24425
24426 * Makefile.am:
24427 Added `bison.simple' to list of files removed by `make distclean'.
24428
244291999-02-12 Jesse Thilo <jthilo@gnu.org>
24430
24431 * src/files.c, src/files.h:
24432 Defined locations of parser files in config.h instead of Makefile.
24433
244341999-02-12 Jesse Thilo <jthilo@gnu.org>
24435
24436 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24437 Defined locations of parser files in config.h instead of Makefile.
24438
244391999-02-09 Jesse Thilo <jthilo@gnu.org>
24440
24441 * Makefile.am:
24442 Removed inappropriate use of $< macro.
24443
244441999-02-05 Jesse Thilo <jthilo@gnu.org>
24445
24446 * po/Makefile.in.in, po/POTFILES.in:
24447 Add `po' directory skeleton.
24448
244491999-01-27 Jesse Thilo <jthilo@gnu.org>
24450
24451 * README: Document help-bison list.
24452
24453 * configure.in: Add check for mkstemp().
24454
244551999-01-20 Jesse Thilo <jthilo@gnu.org>
24456
24457 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24458 Hush a few compiler warnings.
24459
24460 * src/files.c:
24461 Add tryclose(), which verifies that fclose was successful.
24462 Hush a couple of compiler warnings.
24463
244641999-01-20 Jesse Thilo <jthilo@gnu.org>
24465
24466 * Makefile.am, OChangeLog:
24467 ChangeLog is now automatically generated. Include the old version as
24468 OChangeLog.
24469
244701999-01-14 Jesse Thilo <jthilo@gnu.org>
24471
24472 * 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:
24473 Update FSF address.
24474
244751999-01-14 Jesse Thilo <jthilo@gnu.org>
24476
24477 * doc/bison.texinfo: Fix formatting glitch.
24478
24479 * doc/bison.texinfo: Update FSF address.
24480
244811999-01-14 Jesse Thilo <jthilo@gnu.org>
24482
24483 * acconfig.h: Update FSF address.
24484
244851999-01-08 Jesse Thilo <jthilo@gnu.org>
24486
24487 * src/system.h:
24488 Don't define PACKAGE here, since config.h defines it.
24489
244901998-12-30 Jesse Thilo <jthilo@gnu.org>
24491
24492 * src/reader.c: Update copyright date.
24493
24494 * src/main.c:
24495 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24496 favor of output directly to stderr (avoids buffer overruns).
24497
24498 * src/reader.c: Some checks for premature EOF.
24499
24500 * 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:
24501 Use prototypes if the compiler understands them.
24502
24503 * src/files.c: Honor TMPDIR on Unix hosts.
24504 Use prototypes if the compiler understands them.
24505
24506 * src/reader.c:
24507 Fix a couple of buffer overrun bugs.
24508 Use prototypes if the compiler understands them.
24509
24510 * src/system.h: Include unistd.h and ctype.h.
24511 Use #ifdef instead of #if for NLS symbols.
24512
245131998-12-30 Jesse Thilo <jthilo@gnu.org>
24514
24515 * doc/bison.texinfo:
24516 Delete comment "consider using @set for edition number, etc..." since
24517 we now are doing so.
24518
245191998-12-30 Jesse Thilo <jthilo@gnu.org>
24520
24521 * configure.in:
24522 Use prototypes if the compiler understands them.
24523
24524 * NEWS: Document 1.26 highlights.
24525
24526 * Makefile.am: Require Automake 1.3 or later.
24527
24528 * acconfig.h:
24529 Use prototypes if the compiler understands them.
24530
245311998-12-29 Jesse Thilo <jthilo@gnu.org>
24532
24533 * src/version.c:
24534 Use VERSION symbol from automake for version number.
24535
245361998-12-29 Jesse Thilo <jthilo@gnu.org>
24537
24538 * acconfig.h, configure.in, version.cin:
24539 Use VERSION symbol from automake for version number.
24540
245411998-11-28 Jesse Thilo <jthilo@gnu.org>
24542
24543 * Makefile.am:
24544 Distribute original version of simple parser (bison.s1), not built
24545 version (bison.simple).
24546
245471998-11-28 Jesse Thilo <jthilo@gnu.org>
24548
24549 * doc/bison.texinfo: Add info dir entry.
24550
24551 * doc/bison.texinfo:
24552 Let automake put version number into documentation.
24553
245541998-11-26 Jesse Thilo <jthilo@gnu.org>
24555
24556 * src/bison.cld, src/build.com, src/vmshlp.mar:
24557 Add non-RCS files from /gd/gnu/bison.
24558
245591998-11-26 Jesse Thilo <jthilo@gnu.org>
24560
24561 * doc/bison.1:
24562 Document the BISON_HAIRY and BISON_SIMPLE variables.
24563
245641998-11-25 Jesse Thilo <jthilo@gnu.org>
24565
24566 * src/version.c: Build version.c automatically.
24567
24568 * src/reader.c:
24569 Fix token numbering (used to start at 258, not 257).
24570
24571 * src/system.h: Include config.h.
24572
24573 * src/getargs.c: Update bug report address.
24574
24575 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24576 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24577
245781998-11-25 Jesse Thilo <jthilo@gnu.org>
24579
24580 * Makefile.am:
24581 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24582
24583 * configure.in, version.cin:
24584 Build version.c automatically.
24585
24586 * AUTHORS: Add AUTHORS file.
24587
24588 * README: Update bug report address.
24589
24590 * bison.simple:
24591 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24592
24593 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24594 Add automake stuff.
24595
245961998-11-25 Jesse Thilo <jthilo@gnu.org>
24597
24598 * doc/bison.texinfo: Clean up some formatting.
24599
246001998-05-05 Richard Stallman <rms@gnu.org>
24601
24602 * doc/bison.texinfo:
24603 Explain better why to make a pure parser.
24604
246051998-01-05 Richard Stallman <rms@gnu.org>
24606
24607 * src/files.c (openfiles):
24608 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24609 find a temporary directory, if possible. Do not unlink files while
24610 they are open.
24611
246121997-08-25 Richard Stallman <rms@gnu.org>
24613
24614 * src/reader.c (stack_offset;):
24615 Change some warni to warns.
24616
24617 * src/lex.c (literalchar): Use warns, not warni.
24618
246191997-06-28 Richard Stallman <rms@gnu.org>
24620
24621 * src/bison.s1: Add a Bison version comment.
24622
24623 * src/main.c (fatal, warn, berror):
24624 Use program_name.
24625
246261997-06-28 Richard Stallman <rms@gnu.org>
24627
24628 * Makefile.in (bison_version): New variable.
24629 (dist): Use that variable.
24630 (bison.s1): Substitute the Bison version into bison.simple.
24631
24632 * bison.simple: Add a Bison version comment.
24633
246341997-06-18 Richard Stallman <rms@gnu.org>
24635
24636 * src/main.c (fatal, warn, berror):
24637 Make error messages standard.
24638 (toomany): Improve error message text.
24639
24640 * 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:
24641 new.h renamed to alloc.h.
24642
246431997-06-18 Richard Stallman <rms@gnu.org>
24644
24645 * Makefile.in: new.h renamed to alloc.h.
24646
246471997-05-24 Richard Stallman <rms@gnu.org>
24648
24649 * src/lex.c (literalchar):
24650 Fix the code for escaping \, " and '.
24651
24652 (lex): Avoid trouble when there are many chars
24653 to discard in a char literal with just several chars in it.
24654
246551997-05-17 Richard Stallman <rms@gnu.org>
24656
24657 * src/bison.s1:
24658 Use malloc, if using alloca is troublesome.
24659 (YYSTACK_USE_ALLOCA): New flag macro.
24660 Define it for some systems and compilers.
24661 (YYSTACK_ALLOC): New macro.
24662 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24663 If it was malloc'd, free it.
24664
246651997-05-17 Richard Stallman <rms@gnu.org>
24666
24667 * bison.simple:
24668 Use malloc, if using alloca is troublesome.
24669 (YYSTACK_USE_ALLOCA): New flag macro.
24670 Define it for some systems and compilers.
24671 (YYSTACK_ALLOC): New macro.
24672 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24673 If it was malloc'd, free it.
24674
246751997-04-23 Richard Stallman <rms@gnu.org>
24676
24677 * src/bison.s1:
24678 (alloca) [__hpux]: Always define as __builtin_alloca.
24679
246801997-04-23 Richard Stallman <rms@gnu.org>
24681
24682 * bison.simple:
24683 (alloca) [__hpux]: Always define as __builtin_alloca.
24684
246851997-04-22 Richard Stallman <rms@gnu.org>
24686
24687 * src/bison.s1:
24688 [__hpux]: Include alloca.h (right for HPUX 10)
24689 instead of declaring alloca (right for HPUX 9).
24690
24691 * src/bison.s1 (__yy_memcpy):
24692 Declare arg `count' as unsigned int.
24693 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24694
246951997-04-22 Richard Stallman <rms@gnu.org>
24696
24697 * bison.simple:
24698 [__hpux]: Include alloca.h (right for HPUX 10)
24699 instead of declaring alloca (right for HPUX 9).
24700
24701 * bison.simple (__yy_memcpy):
24702 Declare arg `count' as unsigned int.
24703 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24704
247051997-01-03 Richard Stallman <rms@gnu.org>
24706
24707 * src/allocate.c: [__STDC__ or _MSC_VER]:
24708 Declare calloc and realloc to return void *.
24709
247101997-01-02 Richard Stallman <rms@gnu.org>
24711
24712 * src/system.h:
24713 [_MSC_VER]: Include stdlib.h and process.h.
24714 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24715
24716 * src/main.c (main): Return FAILURE as a value.
24717 (printable_version): Declare arg as int, not char.
24718
247191997-01-02 Richard Stallman <rms@gnu.org>
24720
24721 * Makefile.in (dist):
24722 Explicitly check for symlinks, and copy them.
24723
247241996-12-19 Richard Stallman <rms@gnu.org>
24725
24726 * src/files.c:
24727 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24728
247291996-12-18 Paul Eggert <eggert@gnu.org>
24730
24731 * src/bison.s1 (yyparse):
24732 If __GNUC__ and YYPARSE_PARAM are both defined,
24733 declare yyparse to have a void * argument.
24734
247351996-12-18 Paul Eggert <eggert@gnu.org>
24736
24737 * bison.simple (yyparse):
24738 If __GNUC__ and YYPARSE_PARAM are both defined,
24739 declare yyparse to have a void * argument.
24740
247411996-12-17 Richard Stallman <rms@gnu.org>
24742
24743 * src/reduce.c (nbits): Add some casts.
24744
247451996-08-12 Richard Stallman <rms@gnu.org>
24746
24747 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24748
247491996-08-12 Richard Stallman <rms@gnu.org>
24750
24751 * bison.simple: Test _MSDOS as well as _MSDOS_.
24752
247531996-07-31 Richard Stallman <rms@gnu.org>
24754
24755 * src/bison.s1:
24756 [__sun && __i386]: Include alloca.h.
24757
247581996-07-31 Richard Stallman <rms@gnu.org>
24759
24760 * bison.simple:
24761 [__sun && __i386]: Include alloca.h.
24762
247631996-07-30 Richard Stallman <rms@gnu.org>
24764
24765 * src/bison.s1: Comment change.
24766
24767 * src/bison.s1: Test _MSDOS_, not MSDOS.
24768
247691996-07-30 Richard Stallman <rms@gnu.org>
24770
24771 * bison.simple: Comment change.
24772
24773 * bison.simple: Test _MSDOS_, not MSDOS.
24774
247751996-06-01 Richard Stallman <rms@gnu.org>
24776
24777 * 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:
24778 Insert `_' macro around many string constants.
24779
24780 * src/main.c:
24781 Insert `_' macro around many string constants.
24782
24783 (main): Call setlocale, bindtextdomain and textdomain.
24784
24785 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24786 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24787 [ENABLE_NLS]: Include libintl.h.
24788 [ENABLE_NLS] (gettext): Define.
24789 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24790 (N_, PACKAGE, LOCALEDIR): New macros.
24791
247921996-06-01 Richard Stallman <rms@gnu.org>
24793
24794 * POTFILES.in: New file.
24795
24796 * Makefile.in (allocate.o):
24797 Define target explicitly.
24798
24799 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24800 (LDFLAGS): Set to @LDFLAGS@.
24801 (configure): Run autoconf only if preceding `cd' succeeds.
24802 (bison.s1): Redirect output to temporary file then move the
24803 temporary to the target, rather than redirecting directly to bison.s1.
24804 (clean): Remove config.status and config.log.
24805 (distclean): Don't remove config.status here.
24806
248071996-05-12 Richard Stallman <rms@gnu.org>
24808
24809 * src/bison.s1:
24810 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24811
248121996-05-12 Richard Stallman <rms@gnu.org>
24813
24814 * bison.simple:
24815 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24816
248171996-05-11 Richard Stallman <rms@gnu.org>
24818
24819 * src/bison.s1 (__yy_memcpy):
24820 Really reorder the args, as was supposedly done on Feb 14 1995.
24821 (yyparse): Calls changed accordingly.
24822
248231996-05-11 Richard Stallman <rms@gnu.org>
24824
24825 * Makefile.in (dist): Don't use $(srcdir).
24826
24827 * bison.simple (__yy_memcpy):
24828 Really reorder the args, as was supposedly done on Feb 14 1995.
24829 (yyparse): Calls changed accordingly.
24830
248311996-01-27 Richard Stallman <rms@gnu.org>
24832
24833 * src/output.c (output_rule_data):
24834 Test YYERROR_VERBOSE in the conditional
24835 around the definition of ttyname.
24836
248371995-12-29 Richard Stallman <rms@gnu.org>
24838
24839 * src/bison.s1:
24840 Fix line numbers in #line commands.
24841
248421995-12-29 Richard Stallman <rms@gnu.org>
24843
24844 * bison.simple:
24845 Fix line numbers in #line commands.
24846
248471995-12-27 Richard Stallman <rms@gnu.org>
24848
24849 * src/bison.s1 (YYPARSE_PARAM_DECL):
24850 In C++, make it always null.
24851 (YYPARSE_PARAM_ARG): New macro.
24852 (yyparse): Use YYPARSE_PARAM_ARG.
24853
248541995-12-27 Richard Stallman <rms@gnu.org>
24855
24856 * bison.simple (YYPARSE_PARAM_DECL):
24857 In C++, make it always null.
24858 (YYPARSE_PARAM_ARG): New macro.
24859 (yyparse): Use YYPARSE_PARAM_ARG.
24860
248611995-11-29 Richard Stallman <rms@gnu.org>
24862
24863 * doc/bison.texinfo:
24864 Describe literal string tokens, %raw, %no_lines, %token_table.
24865
248661995-11-29 Daniel Hagerty <hag@gnu.org>
24867
24868 * doc/bison.texinfo: Fixed update date
24869
248701995-10-16 Richard Stallman <rms@gnu.org>
24871
24872 * src/version.c: Version 1.25.
24873
248741995-10-16 Richard Stallman <rms@gnu.org>
24875
24876 * NEWS: *** empty log message ***
24877
248781995-10-16 Richard Stallman <rms@gnu.org>
24879
24880 * doc/bison.1, doc/bison.rnh:
24881 Add new options.
24882
248831995-10-15 Richard Stallman <rms@gnu.org>
24884
24885 * src/vmsgetargs.c, src/getargs.c:
24886 Added -n, -k, and -raw switches.
24887 (noparserflag, toknumflag, rawtoknumflag): New variables.
24888
24889 * src/symtab.h (SALIAS):
24890 New #define for adding aliases to %token.
24891 (struct bucket): Added `alias' field.
24892
24893 * src/reduce.c (reduce_grammar):
24894 Revise error message.
24895 (print_notices): Remove final `.' from error message.
24896
24897 * src/reader.c (reader_output_yylsp):
24898 New function.
24899 (readgram): Use `#if 0' around code that accepted %command
24900 inside grammar rules: The documentation doesn't allow it,
24901 and it will fail since the %command processors scan for the next %.
24902 (parse_token_decl): Extended the %token
24903 declaration to allow a multi-character symbol as an alias.
24904 (parse_thong_decl): New function.
24905 (read_declarations): Added %thong declarations.
24906 (read_declarations): Handle NOOP to deal with allowing
24907 % declarations as another means to specify the flags.
24908 (readgram): Allow %prec prior to semantics embedded in a rule.
24909 (skip_to_char, read_declarations, copy_definition)
24910 (parse_token_decl, parse_start_decl, parse_type_decl)
24911 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24912 (get_type_name, copy_guard, copy_action, readgram)
24913 (get_type, packsymbols): Revised most error messages.
24914 Changed `fatal' to `warnxxx' to avoid aborting for error.
24915 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24916 (read_declarations): Improve the error message for
24917 an invalid character. Do not abort.
24918 (read_declarations, copy_guard, copy_action): Use
24919 printable_version to avoid unprintable characters in printed output.
24920 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24921 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24922 Allow the type of a non-terminal can be given
24923 more than once, as long as all specifications give the same type.
24924
24925 * src/output.c:
24926 (output_headers, output_trailers, output, output_gram)
24927 (output_rule_data): Implement noparserflag variable.
24928 Implement toknumflag variable.
24929 (output): Call reader_output_yylsp to output LTYPESTR.
24930
24931 * src/main.c (main):
24932 If reader sees an error, don't process the grammar.
24933 (fatals): Updated to not use VARARGS1.
24934 (printable_version, int_to_string, warn, warni, warns, warnss)
24935 (warnsss): New error reporting functions. Avoid abort for error.
24936
24937 * src/lex.h:
24938 Added THONG and NOOP for alias processing.
24939 Added SETOPT for the new code that allows setting options with %flags.
24940
24941 * src/lex.c:
24942 Include getopt.h. Add some extern decls.
24943 (safegetc): New function to deal with EOF gracefully.
24944 (literalchar); new function to deal with reading \ escapes.
24945 (lex): Use literalchar.
24946 (lex): Implemented "..." tokens.
24947 (literalchar, lex, parse_percent_token): Made tokenbuffer
24948 always contain the token. This includes growing the token
24949 buffer while reading an integer.
24950 (parse_percent_token): Replaced if-else statement with percent_table.
24951 (parse_percent_token): Added % declarations as another
24952 way to specify the flags -n, -l, and -r. Also added hooks for
24953 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24954 major changes to files.c.
24955 (lex) Retain in the incoming stream a character following
24956 an incorrect '/'.
24957 (skip_white_space, lex): Revised most error messages
24958 and changed fatal to warn to avoid aborting.
24959 (percent_table): Added %thong declarations.
24960
24961 * src/gram.h: Comment changes.
24962
24963 * src/files.c (openfiles, open_extra_files, done):
24964 Add faction flag
24965 and actfile file. Handle noparserflag. Both for -n switch.
24966
24967 * src/conflicts.c (resolve_sr_conflict):
24968 Remove use of alloca.
24969
249701995-06-01 Jim Meyering <meyering@gnu.org>
24971
24972 * doc/bison.texinfo: *** empty log message ***
24973
249741995-05-06 Richard Stallman <rms@gnu.org>
24975
24976 * src/bison.s1: Comment change.
24977
249781995-05-06 Richard Stallman <rms@gnu.org>
24979
24980 * bison.simple: Comment change.
24981
249821995-05-03 Richard Stallman <rms@gnu.org>
24983
24984 * src/version.c: Version now 1.24.
24985
24986 * src/bison.s1: Change distribution terms.
24987
24988 * src/version.c: Version now 1.23.
24989
249901995-05-03 Richard Stallman <rms@gnu.org>
24991
24992 * doc/bison.texinfo:
24993 Rewrite "Conditions for Using Bison".
24994 Update version to 1.24.
24995
249961995-05-03 Richard Stallman <rms@gnu.org>
24997
24998 * bison.simple: Change distribution terms.
24999
250001995-02-23 Richard Stallman <rms@gnu.org>
25001
25002 * src/files.c: Test __VMS_POSIX as well as VMS.
25003
250041995-02-14 Jim Meyering <meyering@gnu.org>
25005
25006 * src/bison.s1 (__yy_memcpy):
25007 Renamed from __yy_bcopy to avoid
25008 confusion. Reverse FROM and TO arguments to be consistent with
25009 those of memcpy.
25010
250111995-02-14 Jim Meyering <meyering@gnu.org>
25012
25013 * bison.simple (__yy_memcpy):
25014 Renamed from __yy_bcopy to avoid
25015 confusion. Reverse FROM and TO arguments to be consistent with
25016 those of memcpy.
25017
250181994-11-10 David J. MacKenzie <djm@gnu.org>
25019
25020 * NEWS: reformat
25021
25022 * NEWS: New file.
25023
25024 * Makefile.in (DISTFILES): Include NEWS.
25025
25026 * Makefile.in (DISTFILES):
25027 Include install-sh, not install.sh.
25028
25029 * configure.in: Update to Autoconf v2 macro names.
25030
250311994-10-05 David J. MacKenzie <djm@gnu.org>
25032
25033 * Makefile.in: fix typo
25034
25035 * Makefile.in (prefix, exec_prefix):
25036 Let configure set them.
25037
250381994-09-28 David J. MacKenzie <djm@gnu.org>
25039
25040 * Makefile.in: Set datadir to $(prefix)/share.
25041
250421994-09-15 Richard Stallman <rms@gnu.org>
25043
25044 * src/bison.s1:
25045 Update copyright notice and GPL version.
25046
250471994-09-15 Richard Stallman <rms@gnu.org>
25048
25049 * bison.simple:
25050 Update copyright notice and GPL version.
25051
250521994-07-12 Richard Stallman <rms@gnu.org>
25053
25054 * src/reduce.c, src/reader.c:
25055 entered into RCS
25056
250571994-05-05 David J. MacKenzie <djm@gnu.org>
25058
25059 * Makefile.in: entered into RCS
25060
250611994-03-26 Richard Stallman <rms@gnu.org>
25062
25063 * src/bison.s1: entered into RCS
25064
250651994-03-26 Richard Stallman <rms@gnu.org>
25066
25067 * bison.simple: entered into RCS
25068
250691994-03-25 Richard Stallman <rms@gnu.org>
25070
25071 * src/main.c: entered into RCS
25072
250731994-03-24 Richard Stallman <rms@gnu.org>
25074
25075 * src/conflicts.c: entered into RCS
25076
250771994-01-02 Richard Stallman <rms@gnu.org>
25078
25079 * Makefile.in: *** empty log message ***
25080
250811993-11-21 Richard Stallman <rms@gnu.org>
25082
25083 * src/bison.s1: *** empty log message ***
25084
250851993-11-21 Richard Stallman <rms@gnu.org>
25086
25087 * doc/bison.texinfo: entered into RCS
25088
25089 * doc/bison.texinfo: *** empty log message ***
25090
250911993-11-21 Richard Stallman <rms@gnu.org>
25092
25093 * bison.simple: *** empty log message ***
25094
250951993-10-25 David J. MacKenzie <djm@gnu.org>
25096
25097 * doc/bison.texinfo: *** empty log message ***
25098
250991993-10-19 Richard Stallman <rms@gnu.org>
25100
25101 * src/bison.s1: *** empty log message ***
25102
251031993-10-19 Richard Stallman <rms@gnu.org>
25104
25105 * bison.simple: *** empty log message ***
25106
251071993-10-14 Richard Stallman <rms@gnu.org>
25108
25109 * src/bison.s1: *** empty log message ***
25110
251111993-10-14 Richard Stallman <rms@gnu.org>
25112
25113 * bison.simple: *** empty log message ***
25114
251151993-09-14 David J. MacKenzie <djm@gnu.org>
25116
25117 * doc/bison.texinfo: *** empty log message ***
25118
251191993-09-13 Noah Friedman <friedman@gnu.org>
25120
25121 * Makefile.in: *** empty log message ***
25122
251231993-09-10 Richard Stallman <rms@gnu.org>
25124
25125 * src/conflicts.c: *** empty log message ***
25126
25127 * src/system.h: entered into RCS
25128
251291993-09-10 Richard Stallman <rms@gnu.org>
25130
25131 * doc/bison.1: entered into RCS
25132
251331993-09-06 Noah Friedman <friedman@gnu.org>
25134
25135 * src/version.c: entered into RCS
25136
251371993-09-06 Noah Friedman <friedman@gnu.org>
25138
25139 * Makefile.in: *** empty log message ***
25140
251411993-07-30 David J. MacKenzie <djm@gnu.org>
25142
25143 * Makefile.in: *** empty log message ***
25144
251451993-07-24 Richard Stallman <rms@gnu.org>
25146
25147 * src/bison.s1: *** empty log message ***
25148
251491993-07-24 Richard Stallman <rms@gnu.org>
25150
25151 * bison.simple: *** empty log message ***
25152
251531993-07-08 David J. MacKenzie <djm@gnu.org>
25154
25155 * Makefile.in: *** empty log message ***
25156
251571993-07-04 Richard Stallman <rms@gnu.org>
25158
25159 * src/bison.s1: *** empty log message ***
25160
251611993-07-04 Richard Stallman <rms@gnu.org>
25162
25163 * bison.simple: *** empty log message ***
25164
251651993-06-26 David J. MacKenzie <djm@gnu.org>
25166
25167 * src/getargs.c: entered into RCS
25168
251691993-06-26 David J. MacKenzie <djm@gnu.org>
25170
25171 * doc/bison.texinfo: *** empty log message ***
25172
25173 * doc/bison.1: New file.
25174
251751993-06-25 Richard Stallman <rms@gnu.org>
25176
25177 * src/getargs.c: New file.
25178
251791993-06-16 Richard Stallman <rms@gnu.org>
25180
25181 * src/bison.s1: *** empty log message ***
25182
251831993-06-16 Richard Stallman <rms@gnu.org>
25184
25185 * bison.simple: *** empty log message ***
25186
251871993-06-03 Richard Stallman <rms@gnu.org>
25188
25189 * src/bison.s1: New file.
25190
251911993-06-03 Richard Stallman <rms@gnu.org>
25192
25193 * doc/bison.texinfo: *** empty log message ***
25194
251951993-06-03 Richard Stallman <rms@gnu.org>
25196
25197 * bison.simple: New file.
25198
251991993-05-19 Richard Stallman <rms@gnu.org>
25200
25201 * doc/bison.texinfo: New file.
25202
252031993-05-07 Noah Friedman <friedman@gnu.org>
25204
25205 * Makefile.in: *** empty log message ***
25206
252071993-04-28 Noah Friedman <friedman@gnu.org>
25208
25209 * src/reader.c: *** empty log message ***
25210
252111993-04-23 Noah Friedman <friedman@gnu.org>
25212
25213 * src/alloc.h: entered into RCS
25214
252151993-04-20 David J. MacKenzie <djm@gnu.org>
25216
25217 * src/version.c: *** empty log message ***
25218
25219 * src/files.c, src/allocate.c:
25220 entered into RCS
25221
25222 * src/reader.c: *** empty log message ***
25223
25224 * src/lex.c: entered into RCS
25225
25226 * src/conflicts.c: New file.
25227
25228 * src/symtab.c: entered into RCS
25229
25230 * src/alloc.h: New file.
25231
25232 * src/LR0.c: entered into RCS
25233
252341993-04-18 Noah Friedman <friedman@gnu.org>
25235
25236 * src/reader.c: New file.
25237
25238 * src/version.c: *** empty log message ***
25239
252401993-04-18 Noah Friedman <friedman@gnu.org>
25241
25242 * Makefile.in: *** empty log message ***
25243
252441993-04-17 Noah Friedman <friedman@gnu.org>
25245
25246 * Makefile.in: *** empty log message ***
25247
252481993-04-15 Richard Stallman <rms@gnu.org>
25249
25250 * src/main.c, src/files.c:
25251 New file.
25252
252531993-04-15 Noah Friedman <friedman@gnu.org>
25254
25255 * configure.in: entered into RCS
25256
25257 * configure.in: *** empty log message ***
25258
25259 * configure.in: New file.
25260
252611993-04-14 Richard Stallman <rms@gnu.org>
25262
25263 * Makefile.in: New file.
25264
252651993-04-13 Richard Stallman <rms@gnu.org>
25266
25267 * src/version.c: New file.
25268
252691993-03-25 Richard Stallman <rms@gnu.org>
25270
25271 * src/output.c: entered into RCS
25272
252731992-09-25 Richard Stallman <rms@gnu.org>
25274
25275 * configure.bat: entered into RCS
25276
252771992-06-22 Richard Stallman <rms@gnu.org>
25278
25279 * src/vmsgetargs.c: entered into RCS
25280
252811992-06-22 Richard Stallman <rms@gnu.org>
25282
25283 * doc/bison.rnh: entered into RCS
25284
252851992-04-20 David J. MacKenzie <djm@gnu.org>
25286
25287 * README: entered into RCS
25288
252891992-01-22 Richard Stallman <rms@gnu.org>
25290
25291 * src/machine.h: entered into RCS
25292
252931991-12-21 Richard Stallman <rms@gnu.org>
25294
25295 * src/lalr.c, src/closure.c:
25296 entered into RCS
25297
252981991-12-20 Richard Stallman <rms@gnu.org>
25299
25300 * src/state.h: entered into RCS
25301
253021991-12-18 Richard Stallman <rms@gnu.org>
25303
25304 * src/print.c, src/nullable.c, src/derives.c:
25305 entered into RCS
25306
253071991-11-03 David J. MacKenzie <djm@gnu.org>
25308
25309 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25310 entered into RCS
25311
253121988-09-09 Richard Stallman <rms@gnu.org>
25313
25314 * src/bison.hairy: entered into RCS
25315
253161987-12-16 Richard Stallman <rms@gnu.org>
25317
25318 * REFERENCES: entered into RCS
dc546b0f 25319
f294a2c2 25320
04098407 25321 -----
f294a2c2 25322
e141f4d4
JD
25323 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
25324 Inc.
f294a2c2 25325
04098407
PE
25326 Copying and distribution of this file, with or without
25327 modification, are permitted provided the copyright notice and this
25328 notice are preserved.